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

38375 строки
964 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound", "demon"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["mammal"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "T Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. }
  1643. //species
  1644. function getSpeciesInfo(speciesList) {
  1645. let result = new Set();
  1646. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1647. result.add(entry)
  1648. });
  1649. return Array.from(result);
  1650. };
  1651. function getSpeciesInfoHelper(species) {
  1652. if (!speciesData[species]) {
  1653. console.warn(species + " doesn't exist");
  1654. return [];
  1655. }
  1656. if (speciesData[species].parents) {
  1657. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1658. } else {
  1659. return [species];
  1660. }
  1661. }
  1662. characterMakers.push(() => makeCharacter(
  1663. {
  1664. name: "Fen",
  1665. species: ["crux"],
  1666. description: {
  1667. title: "Bio",
  1668. text: "Very furry. Sheds on everything."
  1669. },
  1670. tags: [
  1671. "anthro",
  1672. "goo"
  1673. ]
  1674. },
  1675. {
  1676. back: {
  1677. height: math.unit(2.2428, "meter"),
  1678. weight: math.unit(124.738, "kg"),
  1679. name: "Back",
  1680. image: {
  1681. source: "./media/characters/fen/back.svg",
  1682. extra: 2024 / 1867,
  1683. bottom: 13 / 2037
  1684. },
  1685. info: {
  1686. description: {
  1687. mode: "append",
  1688. text: "\n\nHe is not currently looking at you."
  1689. }
  1690. }
  1691. },
  1692. full: {
  1693. height: math.unit(1.34, "meter"),
  1694. weight: math.unit(225, "kg"),
  1695. name: "Full",
  1696. image: {
  1697. source: "./media/characters/fen/full.svg"
  1698. },
  1699. info: {
  1700. description: {
  1701. mode: "append",
  1702. text: "\n\nMunch."
  1703. }
  1704. }
  1705. },
  1706. kneeling: {
  1707. height: math.unit(5.4, "feet"),
  1708. weight: math.unit(124.738, "kg"),
  1709. name: "Kneeling",
  1710. image: {
  1711. source: "./media/characters/fen/kneeling.svg",
  1712. extra: 563 / 507
  1713. }
  1714. },
  1715. goo: {
  1716. height: math.unit(2.8, "feet"),
  1717. weight: math.unit(125, "kg"),
  1718. capacity: math.unit(1, "people"),
  1719. name: "Goo",
  1720. image: {
  1721. source: "./media/characters/fen/goo.svg",
  1722. bottom: 116 / 613
  1723. }
  1724. },
  1725. lounging: {
  1726. height: math.unit(6.5, "feet"),
  1727. weight: math.unit(125, "kg"),
  1728. name: "Lounging",
  1729. image: {
  1730. source: "./media/characters/fen/lounging.svg"
  1731. }
  1732. },
  1733. },
  1734. [
  1735. {
  1736. name: "Normal",
  1737. height: math.unit(2.2428, "meter")
  1738. },
  1739. {
  1740. name: "Big",
  1741. height: math.unit(12, "feet")
  1742. },
  1743. {
  1744. name: "Minimacro",
  1745. height: math.unit(40, "feet"),
  1746. default: true,
  1747. info: {
  1748. description: {
  1749. mode: "append",
  1750. text: "\n\nTOO DAMN BIG"
  1751. }
  1752. }
  1753. },
  1754. {
  1755. name: "Macro",
  1756. height: math.unit(100, "feet"),
  1757. info: {
  1758. description: {
  1759. mode: "append",
  1760. text: "\n\nTOO DAMN BIG"
  1761. }
  1762. }
  1763. },
  1764. {
  1765. name: "Macro+",
  1766. height: math.unit(300, "feet")
  1767. },
  1768. {
  1769. name: "Megamacro",
  1770. height: math.unit(2, "miles")
  1771. }
  1772. ]
  1773. ))
  1774. characterMakers.push(() => makeCharacter(
  1775. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1776. {
  1777. front: {
  1778. height: math.unit(183, "cm"),
  1779. weight: math.unit(80, "kg"),
  1780. name: "Front",
  1781. image: {
  1782. source: "./media/characters/sofia-fluttertail/front.svg",
  1783. bottom: 0.01,
  1784. extra: 2154 / 2081
  1785. }
  1786. },
  1787. frontAlt: {
  1788. height: math.unit(183, "cm"),
  1789. weight: math.unit(80, "kg"),
  1790. name: "Front (alt)",
  1791. image: {
  1792. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1793. }
  1794. },
  1795. back: {
  1796. height: math.unit(183, "cm"),
  1797. weight: math.unit(80, "kg"),
  1798. name: "Back",
  1799. image: {
  1800. source: "./media/characters/sofia-fluttertail/back.svg"
  1801. }
  1802. },
  1803. kneeling: {
  1804. height: math.unit(125, "cm"),
  1805. weight: math.unit(80, "kg"),
  1806. name: "Kneeling",
  1807. image: {
  1808. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1809. extra: 1033 / 977,
  1810. bottom: 23.7 / 1057
  1811. }
  1812. },
  1813. maw: {
  1814. height: math.unit(183 / 5, "cm"),
  1815. name: "Maw",
  1816. image: {
  1817. source: "./media/characters/sofia-fluttertail/maw.svg"
  1818. }
  1819. },
  1820. mawcloseup: {
  1821. height: math.unit(183 / 5 * 0.41, "cm"),
  1822. name: "Maw (Closeup)",
  1823. image: {
  1824. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1825. }
  1826. },
  1827. paws: {
  1828. height: math.unit(1.17, "feet"),
  1829. name: "Paws",
  1830. image: {
  1831. source: "./media/characters/sofia-fluttertail/paws.svg",
  1832. extra: 851 / 851,
  1833. bottom: 17 / 868
  1834. }
  1835. },
  1836. },
  1837. [
  1838. {
  1839. name: "Normal",
  1840. height: math.unit(1.83, "meter")
  1841. },
  1842. {
  1843. name: "Size Thief",
  1844. height: math.unit(18, "feet")
  1845. },
  1846. {
  1847. name: "50 Foot Collie",
  1848. height: math.unit(50, "feet")
  1849. },
  1850. {
  1851. name: "Macro",
  1852. height: math.unit(96, "feet"),
  1853. default: true
  1854. },
  1855. {
  1856. name: "Megamerger",
  1857. height: math.unit(650, "feet")
  1858. },
  1859. ]
  1860. ))
  1861. characterMakers.push(() => makeCharacter(
  1862. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1863. {
  1864. front: {
  1865. height: math.unit(7, "feet"),
  1866. weight: math.unit(100, "kg"),
  1867. name: "Front",
  1868. image: {
  1869. source: "./media/characters/march/front.svg",
  1870. extra: 1,
  1871. bottom: 0.015
  1872. }
  1873. },
  1874. foot: {
  1875. height: math.unit(0.9, "feet"),
  1876. name: "Foot",
  1877. image: {
  1878. source: "./media/characters/march/foot.svg"
  1879. }
  1880. },
  1881. },
  1882. [
  1883. {
  1884. name: "Normal",
  1885. height: math.unit(7.9, "feet")
  1886. },
  1887. {
  1888. name: "Macro",
  1889. height: math.unit(220, "meters")
  1890. },
  1891. {
  1892. name: "Megamacro",
  1893. height: math.unit(2.98, "km"),
  1894. default: true
  1895. },
  1896. {
  1897. name: "Gigamacro",
  1898. height: math.unit(15963, "km")
  1899. },
  1900. {
  1901. name: "Teramacro",
  1902. height: math.unit(2980000000, "km")
  1903. },
  1904. {
  1905. name: "Examacro",
  1906. height: math.unit(250, "parsecs")
  1907. },
  1908. ]
  1909. ))
  1910. characterMakers.push(() => makeCharacter(
  1911. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1912. {
  1913. front: {
  1914. height: math.unit(6, "feet"),
  1915. weight: math.unit(60, "kg"),
  1916. name: "Front",
  1917. image: {
  1918. source: "./media/characters/noir/front.svg",
  1919. extra: 1,
  1920. bottom: 0.032
  1921. }
  1922. },
  1923. },
  1924. [
  1925. {
  1926. name: "Normal",
  1927. height: math.unit(6.6, "feet")
  1928. },
  1929. {
  1930. name: "Macro",
  1931. height: math.unit(500, "feet")
  1932. },
  1933. {
  1934. name: "Megamacro",
  1935. height: math.unit(2.5, "km"),
  1936. default: true
  1937. },
  1938. {
  1939. name: "Gigamacro",
  1940. height: math.unit(22500, "km")
  1941. },
  1942. {
  1943. name: "Teramacro",
  1944. height: math.unit(2500000000, "km")
  1945. },
  1946. {
  1947. name: "Examacro",
  1948. height: math.unit(200, "parsecs")
  1949. },
  1950. ]
  1951. ))
  1952. characterMakers.push(() => makeCharacter(
  1953. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1954. {
  1955. front: {
  1956. height: math.unit(7, "feet"),
  1957. weight: math.unit(100, "kg"),
  1958. name: "Front",
  1959. image: {
  1960. source: "./media/characters/okuri/front.svg",
  1961. extra: 1,
  1962. bottom: 0.037
  1963. }
  1964. },
  1965. back: {
  1966. height: math.unit(7, "feet"),
  1967. weight: math.unit(100, "kg"),
  1968. name: "Back",
  1969. image: {
  1970. source: "./media/characters/okuri/back.svg",
  1971. extra: 1,
  1972. bottom: 0.007
  1973. }
  1974. },
  1975. },
  1976. [
  1977. {
  1978. name: "Megamacro",
  1979. height: math.unit(100, "miles"),
  1980. default: true
  1981. },
  1982. ]
  1983. ))
  1984. characterMakers.push(() => makeCharacter(
  1985. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1986. {
  1987. front: {
  1988. height: math.unit(7, "feet"),
  1989. weight: math.unit(100, "kg"),
  1990. name: "Front",
  1991. image: {
  1992. source: "./media/characters/manny/front.svg",
  1993. extra: 1,
  1994. bottom: 0.06
  1995. }
  1996. },
  1997. back: {
  1998. height: math.unit(7, "feet"),
  1999. weight: math.unit(100, "kg"),
  2000. name: "Back",
  2001. image: {
  2002. source: "./media/characters/manny/back.svg",
  2003. extra: 1,
  2004. bottom: 0.014
  2005. }
  2006. },
  2007. },
  2008. [
  2009. {
  2010. name: "Normal",
  2011. height: math.unit(7, "feet"),
  2012. },
  2013. {
  2014. name: "Macro",
  2015. height: math.unit(78, "feet"),
  2016. default: true
  2017. },
  2018. {
  2019. name: "Macro+",
  2020. height: math.unit(300, "meters")
  2021. },
  2022. {
  2023. name: "Macro++",
  2024. height: math.unit(2400, "meters")
  2025. },
  2026. {
  2027. name: "Megamacro",
  2028. height: math.unit(5167, "meters")
  2029. },
  2030. {
  2031. name: "Gigamacro",
  2032. height: math.unit(41769, "miles")
  2033. },
  2034. ]
  2035. ))
  2036. characterMakers.push(() => makeCharacter(
  2037. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2038. {
  2039. front: {
  2040. height: math.unit(7, "feet"),
  2041. weight: math.unit(100, "kg"),
  2042. name: "Front",
  2043. image: {
  2044. source: "./media/characters/adake/front-1.svg"
  2045. }
  2046. },
  2047. frontAlt: {
  2048. height: math.unit(7, "feet"),
  2049. weight: math.unit(100, "kg"),
  2050. name: "Front (Alt)",
  2051. image: {
  2052. source: "./media/characters/adake/front-2.svg",
  2053. extra: 1,
  2054. bottom: 0.01
  2055. }
  2056. },
  2057. back: {
  2058. height: math.unit(7, "feet"),
  2059. weight: math.unit(100, "kg"),
  2060. name: "Back",
  2061. image: {
  2062. source: "./media/characters/adake/back.svg",
  2063. }
  2064. },
  2065. kneel: {
  2066. height: math.unit(5.385, "feet"),
  2067. weight: math.unit(100, "kg"),
  2068. name: "Kneeling",
  2069. image: {
  2070. source: "./media/characters/adake/kneel.svg",
  2071. bottom: 0.052
  2072. }
  2073. },
  2074. },
  2075. [
  2076. {
  2077. name: "Normal",
  2078. height: math.unit(7, "feet"),
  2079. },
  2080. {
  2081. name: "Macro",
  2082. height: math.unit(78, "feet"),
  2083. default: true
  2084. },
  2085. {
  2086. name: "Macro+",
  2087. height: math.unit(300, "meters")
  2088. },
  2089. {
  2090. name: "Macro++",
  2091. height: math.unit(2400, "meters")
  2092. },
  2093. {
  2094. name: "Megamacro",
  2095. height: math.unit(5167, "meters")
  2096. },
  2097. {
  2098. name: "Gigamacro",
  2099. height: math.unit(41769, "miles")
  2100. },
  2101. ]
  2102. ))
  2103. characterMakers.push(() => makeCharacter(
  2104. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2105. {
  2106. front: {
  2107. height: math.unit(1.65, "meters"),
  2108. weight: math.unit(50, "kg"),
  2109. name: "Front",
  2110. image: {
  2111. source: "./media/characters/elijah/front.svg",
  2112. extra: 858 / 830,
  2113. bottom: 95.5 / 953.8559
  2114. }
  2115. },
  2116. back: {
  2117. height: math.unit(1.65, "meters"),
  2118. weight: math.unit(50, "kg"),
  2119. name: "Back",
  2120. image: {
  2121. source: "./media/characters/elijah/back.svg",
  2122. extra: 895 / 850,
  2123. bottom: 5.3 / 897.956
  2124. }
  2125. },
  2126. frontNsfw: {
  2127. height: math.unit(1.65, "meters"),
  2128. weight: math.unit(50, "kg"),
  2129. name: "Front (NSFW)",
  2130. image: {
  2131. source: "./media/characters/elijah/front-nsfw.svg",
  2132. extra: 858 / 830,
  2133. bottom: 95.5 / 953.8559
  2134. }
  2135. },
  2136. backNsfw: {
  2137. height: math.unit(1.65, "meters"),
  2138. weight: math.unit(50, "kg"),
  2139. name: "Back (NSFW)",
  2140. image: {
  2141. source: "./media/characters/elijah/back-nsfw.svg",
  2142. extra: 895 / 850,
  2143. bottom: 5.3 / 897.956
  2144. }
  2145. },
  2146. dick: {
  2147. height: math.unit(1, "feet"),
  2148. name: "Dick",
  2149. image: {
  2150. source: "./media/characters/elijah/dick.svg"
  2151. }
  2152. },
  2153. beakOpen: {
  2154. height: math.unit(1.25, "feet"),
  2155. name: "Beak (Open)",
  2156. image: {
  2157. source: "./media/characters/elijah/beak-open.svg"
  2158. }
  2159. },
  2160. beakShut: {
  2161. height: math.unit(1.25, "feet"),
  2162. name: "Beak (Shut)",
  2163. image: {
  2164. source: "./media/characters/elijah/beak-shut.svg"
  2165. }
  2166. },
  2167. footFlexing: {
  2168. height: math.unit(1.61, "feet"),
  2169. name: "Foot (Flexing)",
  2170. image: {
  2171. source: "./media/characters/elijah/foot-flexing.svg"
  2172. }
  2173. },
  2174. footStepping: {
  2175. height: math.unit(1.44, "feet"),
  2176. name: "Foot (Stepping)",
  2177. image: {
  2178. source: "./media/characters/elijah/foot-stepping.svg"
  2179. }
  2180. },
  2181. plantigradeLeg: {
  2182. height: math.unit(2.34, "feet"),
  2183. name: "Plantigrade Leg",
  2184. image: {
  2185. source: "./media/characters/elijah/plantigrade-leg.svg"
  2186. }
  2187. },
  2188. plantigradeFootLeft: {
  2189. height: math.unit(0.9, "feet"),
  2190. name: "Plantigrade Foot (Left)",
  2191. image: {
  2192. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2193. }
  2194. },
  2195. plantigradeFootRight: {
  2196. height: math.unit(0.9, "feet"),
  2197. name: "Plantigrade Foot (Right)",
  2198. image: {
  2199. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2200. }
  2201. },
  2202. },
  2203. [
  2204. {
  2205. name: "Normal",
  2206. height: math.unit(1.65, "meters")
  2207. },
  2208. {
  2209. name: "Macro",
  2210. height: math.unit(55, "meters"),
  2211. default: true
  2212. },
  2213. {
  2214. name: "Macro+",
  2215. height: math.unit(105, "meters")
  2216. },
  2217. ]
  2218. ))
  2219. characterMakers.push(() => makeCharacter(
  2220. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2221. {
  2222. front: {
  2223. height: math.unit(11, "feet"),
  2224. weight: math.unit(320, "kg"),
  2225. name: "Front",
  2226. image: {
  2227. source: "./media/characters/rai/front.svg",
  2228. extra: 1802/1696,
  2229. bottom: 68/1870
  2230. }
  2231. },
  2232. frontDressed: {
  2233. height: math.unit(11, "feet"),
  2234. weight: math.unit(320, "kg"),
  2235. name: "Front (Dressed)",
  2236. image: {
  2237. source: "./media/characters/rai/front-dressed.svg",
  2238. extra: 1802/1696,
  2239. bottom: 68/1870
  2240. }
  2241. },
  2242. side: {
  2243. height: math.unit(11, "feet"),
  2244. weight: math.unit(320, "kg"),
  2245. name: "Side",
  2246. image: {
  2247. source: "./media/characters/rai/side.svg",
  2248. extra: 1789/1710,
  2249. bottom: 115/1904
  2250. }
  2251. },
  2252. back: {
  2253. height: math.unit(11, "feet"),
  2254. weight: math.unit(320, "kg"),
  2255. name: "Back",
  2256. image: {
  2257. source: "./media/characters/rai/back.svg",
  2258. extra: 1770/1707,
  2259. bottom: 28/1798
  2260. }
  2261. },
  2262. feral: {
  2263. height: math.unit(11, "feet"),
  2264. weight: math.unit(640, "kg"),
  2265. name: "Feral",
  2266. image: {
  2267. source: "./media/characters/rai/feral.svg",
  2268. extra: 1035/642,
  2269. bottom: 86/1121
  2270. }
  2271. },
  2272. dragon: {
  2273. height: math.unit(23, "feet"),
  2274. weight: math.unit(50000, "lb"),
  2275. name: "Dragon",
  2276. image: {
  2277. source: "./media/characters/rai/dragon.svg",
  2278. extra: 2498 / 2030,
  2279. bottom: 85.2 / 2584
  2280. }
  2281. },
  2282. maw: {
  2283. height: math.unit(6 / 3.81416, "feet"),
  2284. name: "Maw",
  2285. image: {
  2286. source: "./media/characters/rai/maw.svg"
  2287. }
  2288. },
  2289. },
  2290. [
  2291. {
  2292. name: "Normal",
  2293. height: math.unit(11, "feet")
  2294. },
  2295. {
  2296. name: "Macro",
  2297. height: math.unit(302, "feet"),
  2298. default: true
  2299. },
  2300. ]
  2301. ))
  2302. characterMakers.push(() => makeCharacter(
  2303. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2304. {
  2305. frontDressed: {
  2306. height: math.unit(216, "feet"),
  2307. weight: math.unit(7000000, "lb"),
  2308. name: "Front (Dressed)",
  2309. image: {
  2310. source: "./media/characters/jazzy/front-dressed.svg",
  2311. extra: 2738 / 2651,
  2312. bottom: 41.8 / 2786
  2313. }
  2314. },
  2315. backDressed: {
  2316. height: math.unit(216, "feet"),
  2317. weight: math.unit(7000000, "lb"),
  2318. name: "Back (Dressed)",
  2319. image: {
  2320. source: "./media/characters/jazzy/back-dressed.svg",
  2321. extra: 2775 / 2673,
  2322. bottom: 36.8 / 2817
  2323. }
  2324. },
  2325. front: {
  2326. height: math.unit(216, "feet"),
  2327. weight: math.unit(7000000, "lb"),
  2328. name: "Front",
  2329. image: {
  2330. source: "./media/characters/jazzy/front.svg",
  2331. extra: 2738 / 2651,
  2332. bottom: 41.8 / 2786
  2333. }
  2334. },
  2335. back: {
  2336. height: math.unit(216, "feet"),
  2337. weight: math.unit(7000000, "lb"),
  2338. name: "Back",
  2339. image: {
  2340. source: "./media/characters/jazzy/back.svg",
  2341. extra: 2775 / 2673,
  2342. bottom: 36.8 / 2817
  2343. }
  2344. },
  2345. maw: {
  2346. height: math.unit(20, "feet"),
  2347. name: "Maw",
  2348. image: {
  2349. source: "./media/characters/jazzy/maw.svg"
  2350. }
  2351. },
  2352. paws: {
  2353. height: math.unit(27.5, "feet"),
  2354. name: "Paws",
  2355. image: {
  2356. source: "./media/characters/jazzy/paws.svg"
  2357. }
  2358. },
  2359. eye: {
  2360. height: math.unit(4.4, "feet"),
  2361. name: "Eye",
  2362. image: {
  2363. source: "./media/characters/jazzy/eye.svg"
  2364. }
  2365. },
  2366. droneOffense: {
  2367. height: math.unit(9.5, "inches"),
  2368. name: "Drone (Offense)",
  2369. image: {
  2370. source: "./media/characters/jazzy/drone-offense.svg"
  2371. }
  2372. },
  2373. droneRecon: {
  2374. height: math.unit(9.5, "inches"),
  2375. name: "Drone (Recon)",
  2376. image: {
  2377. source: "./media/characters/jazzy/drone-recon.svg"
  2378. }
  2379. },
  2380. droneDefense: {
  2381. height: math.unit(9.5, "inches"),
  2382. name: "Drone (Defense)",
  2383. image: {
  2384. source: "./media/characters/jazzy/drone-defense.svg"
  2385. }
  2386. },
  2387. },
  2388. [
  2389. {
  2390. name: "Macro",
  2391. height: math.unit(216, "feet"),
  2392. default: true
  2393. },
  2394. ]
  2395. ))
  2396. characterMakers.push(() => makeCharacter(
  2397. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2398. {
  2399. front: {
  2400. height: math.unit(9 + 6/12, "feet"),
  2401. weight: math.unit(700, "lb"),
  2402. name: "Front",
  2403. image: {
  2404. source: "./media/characters/flamm/front.svg",
  2405. extra: 1751/1632,
  2406. bottom: 46/1797
  2407. }
  2408. },
  2409. buff: {
  2410. height: math.unit(9 + 6/12, "feet"),
  2411. weight: math.unit(950, "lb"),
  2412. name: "Buff",
  2413. image: {
  2414. source: "./media/characters/flamm/buff.svg",
  2415. extra: 3018/2874,
  2416. bottom: 221/3239
  2417. }
  2418. },
  2419. },
  2420. [
  2421. {
  2422. name: "Normal",
  2423. height: math.unit(9.5, "feet")
  2424. },
  2425. {
  2426. name: "Macro",
  2427. height: math.unit(200, "feet"),
  2428. default: true
  2429. },
  2430. ]
  2431. ))
  2432. characterMakers.push(() => makeCharacter(
  2433. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2434. {
  2435. front: {
  2436. height: math.unit(5 + 3/12, "feet"),
  2437. weight: math.unit(60, "kg"),
  2438. name: "Front",
  2439. image: {
  2440. source: "./media/characters/zephiro/front.svg",
  2441. extra: 2309 / 2162,
  2442. bottom: 0.069
  2443. }
  2444. },
  2445. side: {
  2446. height: math.unit(5 + 3/12, "feet"),
  2447. weight: math.unit(60, "kg"),
  2448. name: "Side",
  2449. image: {
  2450. source: "./media/characters/zephiro/side.svg",
  2451. extra: 2403 / 2279,
  2452. bottom: 0.015
  2453. }
  2454. },
  2455. back: {
  2456. height: math.unit(5 + 3/12, "feet"),
  2457. weight: math.unit(60, "kg"),
  2458. name: "Back",
  2459. image: {
  2460. source: "./media/characters/zephiro/back.svg",
  2461. extra: 2373 / 2244,
  2462. bottom: 0.013
  2463. }
  2464. },
  2465. hand: {
  2466. height: math.unit(0.68, "feet"),
  2467. name: "Hand",
  2468. image: {
  2469. source: "./media/characters/zephiro/hand.svg"
  2470. }
  2471. },
  2472. paw: {
  2473. height: math.unit(1, "feet"),
  2474. name: "Paw",
  2475. image: {
  2476. source: "./media/characters/zephiro/paw.svg"
  2477. }
  2478. },
  2479. beans: {
  2480. height: math.unit(0.93, "feet"),
  2481. name: "Beans",
  2482. image: {
  2483. source: "./media/characters/zephiro/beans.svg"
  2484. }
  2485. },
  2486. },
  2487. [
  2488. {
  2489. name: "Micro",
  2490. height: math.unit(3, "inches")
  2491. },
  2492. {
  2493. name: "Normal",
  2494. height: math.unit(5 + 3 / 12, "feet"),
  2495. default: true
  2496. },
  2497. {
  2498. name: "Macro",
  2499. height: math.unit(118, "feet")
  2500. },
  2501. ]
  2502. ))
  2503. characterMakers.push(() => makeCharacter(
  2504. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2505. {
  2506. front: {
  2507. height: math.unit(5, "feet"),
  2508. weight: math.unit(90, "kg"),
  2509. name: "Front",
  2510. image: {
  2511. source: "./media/characters/fory/front.svg",
  2512. extra: 2862 / 2674,
  2513. bottom: 180 / 3043.8
  2514. }
  2515. },
  2516. back: {
  2517. height: math.unit(5, "feet"),
  2518. weight: math.unit(90, "kg"),
  2519. name: "Back",
  2520. image: {
  2521. source: "./media/characters/fory/back.svg",
  2522. extra: 2962 / 2791,
  2523. bottom: 106 / 3071.8
  2524. }
  2525. },
  2526. foot: {
  2527. height: math.unit(2.14, "feet"),
  2528. name: "Foot",
  2529. image: {
  2530. source: "./media/characters/fory/foot.svg"
  2531. }
  2532. },
  2533. },
  2534. [
  2535. {
  2536. name: "Normal",
  2537. height: math.unit(5, "feet")
  2538. },
  2539. {
  2540. name: "Macro",
  2541. height: math.unit(50, "feet"),
  2542. default: true
  2543. },
  2544. {
  2545. name: "Megamacro",
  2546. height: math.unit(10, "miles")
  2547. },
  2548. {
  2549. name: "Gigamacro",
  2550. height: math.unit(5, "earths")
  2551. },
  2552. ]
  2553. ))
  2554. characterMakers.push(() => makeCharacter(
  2555. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2556. {
  2557. front: {
  2558. height: math.unit(7, "feet"),
  2559. weight: math.unit(90, "kg"),
  2560. name: "Front",
  2561. image: {
  2562. source: "./media/characters/kurrikage/front.svg",
  2563. extra: 1,
  2564. bottom: 0.035
  2565. }
  2566. },
  2567. back: {
  2568. height: math.unit(7, "feet"),
  2569. weight: math.unit(90, "lb"),
  2570. name: "Back",
  2571. image: {
  2572. source: "./media/characters/kurrikage/back.svg"
  2573. }
  2574. },
  2575. paw: {
  2576. height: math.unit(1.5, "feet"),
  2577. name: "Paw",
  2578. image: {
  2579. source: "./media/characters/kurrikage/paw.svg"
  2580. }
  2581. },
  2582. staff: {
  2583. height: math.unit(6.7, "feet"),
  2584. name: "Staff",
  2585. image: {
  2586. source: "./media/characters/kurrikage/staff.svg"
  2587. }
  2588. },
  2589. peek: {
  2590. height: math.unit(1.05, "feet"),
  2591. name: "Peeking",
  2592. image: {
  2593. source: "./media/characters/kurrikage/peek.svg",
  2594. bottom: 0.08
  2595. }
  2596. },
  2597. },
  2598. [
  2599. {
  2600. name: "Normal",
  2601. height: math.unit(12, "feet"),
  2602. default: true
  2603. },
  2604. {
  2605. name: "Big",
  2606. height: math.unit(20, "feet")
  2607. },
  2608. {
  2609. name: "Macro",
  2610. height: math.unit(500, "feet")
  2611. },
  2612. {
  2613. name: "Megamacro",
  2614. height: math.unit(20, "miles")
  2615. },
  2616. ]
  2617. ))
  2618. characterMakers.push(() => makeCharacter(
  2619. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2620. {
  2621. front: {
  2622. height: math.unit(6, "feet"),
  2623. weight: math.unit(75, "kg"),
  2624. name: "Front",
  2625. image: {
  2626. source: "./media/characters/shingo/front.svg",
  2627. extra: 706/681,
  2628. bottom: 11/717
  2629. }
  2630. },
  2631. frontAlt: {
  2632. height: math.unit(6, "feet"),
  2633. weight: math.unit(75, "kg"),
  2634. name: "Front (Alt)",
  2635. image: {
  2636. source: "./media/characters/shingo/front-alt.svg",
  2637. extra: 3511 / 3338,
  2638. bottom: 0.005
  2639. }
  2640. },
  2641. paw: {
  2642. height: math.unit(1, "feet"),
  2643. name: "Paw",
  2644. image: {
  2645. source: "./media/characters/shingo/paw.svg"
  2646. }
  2647. },
  2648. },
  2649. [
  2650. {
  2651. name: "Micro",
  2652. height: math.unit(4, "inches")
  2653. },
  2654. {
  2655. name: "Normal",
  2656. height: math.unit(6, "feet"),
  2657. default: true
  2658. },
  2659. {
  2660. name: "Macro",
  2661. height: math.unit(108, "feet")
  2662. },
  2663. {
  2664. name: "Macro+",
  2665. height: math.unit(1500, "feet")
  2666. },
  2667. ]
  2668. ))
  2669. characterMakers.push(() => makeCharacter(
  2670. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2671. {
  2672. side: {
  2673. height: math.unit(6, "feet"),
  2674. weight: math.unit(75, "kg"),
  2675. name: "Side",
  2676. image: {
  2677. source: "./media/characters/aigey/side.svg"
  2678. }
  2679. },
  2680. },
  2681. [
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(200, "feet"),
  2685. default: true
  2686. },
  2687. {
  2688. name: "Megamacro",
  2689. height: math.unit(100, "miles")
  2690. },
  2691. ]
  2692. )
  2693. )
  2694. characterMakers.push(() => makeCharacter(
  2695. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2696. {
  2697. front: {
  2698. height: math.unit(5 + 5 / 12, "feet"),
  2699. weight: math.unit(75, "kg"),
  2700. name: "Front",
  2701. image: {
  2702. source: "./media/characters/natasha/front.svg",
  2703. extra: 859 / 824,
  2704. bottom: 23 / 879.6
  2705. }
  2706. },
  2707. frontNsfw: {
  2708. height: math.unit(5 + 5 / 12, "feet"),
  2709. weight: math.unit(75, "kg"),
  2710. name: "Front (NSFW)",
  2711. image: {
  2712. source: "./media/characters/natasha/front-nsfw.svg",
  2713. extra: 859 / 824,
  2714. bottom: 23 / 879.6
  2715. }
  2716. },
  2717. frontErect: {
  2718. height: math.unit(5 + 5 / 12, "feet"),
  2719. weight: math.unit(75, "kg"),
  2720. name: "Front (Erect)",
  2721. image: {
  2722. source: "./media/characters/natasha/front-erect.svg",
  2723. extra: 859 / 824,
  2724. bottom: 23 / 879.6
  2725. }
  2726. },
  2727. back: {
  2728. height: math.unit(5 + 5 / 12, "feet"),
  2729. weight: math.unit(75, "kg"),
  2730. name: "Back",
  2731. image: {
  2732. source: "./media/characters/natasha/back.svg",
  2733. extra: 887.9 / 852.6,
  2734. bottom: 9.7 / 896.4
  2735. }
  2736. },
  2737. backAlt: {
  2738. height: math.unit(5 + 5 / 12, "feet"),
  2739. weight: math.unit(75, "kg"),
  2740. name: "Back (Alt)",
  2741. image: {
  2742. source: "./media/characters/natasha/back-alt.svg",
  2743. extra: 1236.7 / 1192,
  2744. bottom: 22.3 / 1258.2
  2745. }
  2746. },
  2747. dick: {
  2748. height: math.unit(1.772, "feet"),
  2749. name: "Dick",
  2750. image: {
  2751. source: "./media/characters/natasha/dick.svg"
  2752. }
  2753. },
  2754. paw: {
  2755. height: math.unit(0.250, "meters"),
  2756. name: "Paw",
  2757. image: {
  2758. source: "./media/characters/natasha/paw.svg"
  2759. }
  2760. },
  2761. },
  2762. [
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(5 + 5 / 12, "feet")
  2766. },
  2767. {
  2768. name: "Large",
  2769. height: math.unit(12, "feet")
  2770. },
  2771. {
  2772. name: "Macro",
  2773. height: math.unit(100, "feet"),
  2774. default: true
  2775. },
  2776. {
  2777. name: "Macro+",
  2778. height: math.unit(260, "feet")
  2779. },
  2780. {
  2781. name: "Macro++",
  2782. height: math.unit(1, "mile")
  2783. },
  2784. ]
  2785. ))
  2786. characterMakers.push(() => makeCharacter(
  2787. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2788. {
  2789. front: {
  2790. height: math.unit(6, "feet"),
  2791. weight: math.unit(75, "kg"),
  2792. name: "Front",
  2793. image: {
  2794. source: "./media/characters/malik/front.svg"
  2795. }
  2796. },
  2797. side: {
  2798. height: math.unit(6, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Side",
  2801. image: {
  2802. source: "./media/characters/malik/side.svg",
  2803. extra: 1.1539
  2804. }
  2805. },
  2806. back: {
  2807. height: math.unit(6, "feet"),
  2808. weight: math.unit(75, "kg"),
  2809. name: "Back",
  2810. image: {
  2811. source: "./media/characters/malik/back.svg"
  2812. }
  2813. },
  2814. },
  2815. [
  2816. {
  2817. name: "Macro",
  2818. height: math.unit(156, "feet"),
  2819. default: true
  2820. },
  2821. {
  2822. name: "Macro+",
  2823. height: math.unit(1188, "feet")
  2824. },
  2825. ]
  2826. ))
  2827. characterMakers.push(() => makeCharacter(
  2828. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2829. {
  2830. front: {
  2831. height: math.unit(6, "feet"),
  2832. weight: math.unit(75, "kg"),
  2833. name: "Front",
  2834. image: {
  2835. source: "./media/characters/sefer/front.svg",
  2836. extra: 848 / 659,
  2837. bottom: 28.3 / 876.442
  2838. }
  2839. },
  2840. back: {
  2841. height: math.unit(6, "feet"),
  2842. weight: math.unit(75, "kg"),
  2843. name: "Back",
  2844. image: {
  2845. source: "./media/characters/sefer/back.svg",
  2846. extra: 864 / 695,
  2847. bottom: 10 / 871
  2848. }
  2849. },
  2850. frontDressed: {
  2851. height: math.unit(6, "feet"),
  2852. weight: math.unit(75, "kg"),
  2853. name: "Front (Dressed)",
  2854. image: {
  2855. source: "./media/characters/sefer/front-dressed.svg",
  2856. extra: 839 / 653,
  2857. bottom: 37.6 / 878
  2858. }
  2859. },
  2860. },
  2861. [
  2862. {
  2863. name: "Normal",
  2864. height: math.unit(6, "feet"),
  2865. default: true
  2866. },
  2867. ]
  2868. ))
  2869. characterMakers.push(() => makeCharacter(
  2870. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2871. {
  2872. body: {
  2873. height: math.unit(2.2428, "meter"),
  2874. weight: math.unit(124.738, "kg"),
  2875. name: "Body",
  2876. image: {
  2877. extra: 1225 / 1050,
  2878. source: "./media/characters/north/front.svg"
  2879. }
  2880. }
  2881. },
  2882. [
  2883. {
  2884. name: "Micro",
  2885. height: math.unit(4, "inches")
  2886. },
  2887. {
  2888. name: "Macro",
  2889. height: math.unit(63, "meters")
  2890. },
  2891. {
  2892. name: "Megamacro",
  2893. height: math.unit(101, "miles"),
  2894. default: true
  2895. }
  2896. ]
  2897. ))
  2898. characterMakers.push(() => makeCharacter(
  2899. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2900. {
  2901. angled: {
  2902. height: math.unit(4, "meter"),
  2903. weight: math.unit(150, "kg"),
  2904. name: "Angled",
  2905. image: {
  2906. source: "./media/characters/talan/angled-sfw.svg",
  2907. bottom: 29 / 3734
  2908. }
  2909. },
  2910. angledNsfw: {
  2911. height: math.unit(4, "meter"),
  2912. weight: math.unit(150, "kg"),
  2913. name: "Angled (NSFW)",
  2914. image: {
  2915. source: "./media/characters/talan/angled-nsfw.svg",
  2916. bottom: 29 / 3734
  2917. }
  2918. },
  2919. frontNsfw: {
  2920. height: math.unit(4, "meter"),
  2921. weight: math.unit(150, "kg"),
  2922. name: "Front (NSFW)",
  2923. image: {
  2924. source: "./media/characters/talan/front-nsfw.svg",
  2925. bottom: 29 / 3734
  2926. }
  2927. },
  2928. sideNsfw: {
  2929. height: math.unit(4, "meter"),
  2930. weight: math.unit(150, "kg"),
  2931. name: "Side (NSFW)",
  2932. image: {
  2933. source: "./media/characters/talan/side-nsfw.svg",
  2934. bottom: 29 / 3734
  2935. }
  2936. },
  2937. back: {
  2938. height: math.unit(4, "meter"),
  2939. weight: math.unit(150, "kg"),
  2940. name: "Back",
  2941. image: {
  2942. source: "./media/characters/talan/back.svg"
  2943. }
  2944. },
  2945. dickBottom: {
  2946. height: math.unit(0.621, "meter"),
  2947. name: "Dick (Bottom)",
  2948. image: {
  2949. source: "./media/characters/talan/dick-bottom.svg"
  2950. }
  2951. },
  2952. dickTop: {
  2953. height: math.unit(0.621, "meter"),
  2954. name: "Dick (Top)",
  2955. image: {
  2956. source: "./media/characters/talan/dick-top.svg"
  2957. }
  2958. },
  2959. dickSide: {
  2960. height: math.unit(0.305, "meter"),
  2961. name: "Dick (Side)",
  2962. image: {
  2963. source: "./media/characters/talan/dick-side.svg"
  2964. }
  2965. },
  2966. dickFront: {
  2967. height: math.unit(0.305, "meter"),
  2968. name: "Dick (Front)",
  2969. image: {
  2970. source: "./media/characters/talan/dick-front.svg"
  2971. }
  2972. },
  2973. },
  2974. [
  2975. {
  2976. name: "Normal",
  2977. height: math.unit(4, "meters")
  2978. },
  2979. {
  2980. name: "Macro",
  2981. height: math.unit(100, "meters")
  2982. },
  2983. {
  2984. name: "Megamacro",
  2985. height: math.unit(2, "miles"),
  2986. default: true
  2987. },
  2988. {
  2989. name: "Gigamacro",
  2990. height: math.unit(5000, "miles")
  2991. },
  2992. {
  2993. name: "Teramacro",
  2994. height: math.unit(100, "parsecs")
  2995. }
  2996. ]
  2997. ))
  2998. characterMakers.push(() => makeCharacter(
  2999. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3000. {
  3001. front: {
  3002. height: math.unit(2, "meter"),
  3003. weight: math.unit(90, "kg"),
  3004. name: "Front",
  3005. image: {
  3006. source: "./media/characters/gael'rathus/front.svg"
  3007. }
  3008. },
  3009. frontAlt: {
  3010. height: math.unit(2, "meter"),
  3011. weight: math.unit(90, "kg"),
  3012. name: "Front (alt)",
  3013. image: {
  3014. source: "./media/characters/gael'rathus/front-alt.svg"
  3015. }
  3016. },
  3017. frontAlt2: {
  3018. height: math.unit(2, "meter"),
  3019. weight: math.unit(90, "kg"),
  3020. name: "Front (alt 2)",
  3021. image: {
  3022. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3023. }
  3024. }
  3025. },
  3026. [
  3027. {
  3028. name: "Normal",
  3029. height: math.unit(9, "feet"),
  3030. default: true
  3031. },
  3032. {
  3033. name: "Large",
  3034. height: math.unit(25, "feet")
  3035. },
  3036. {
  3037. name: "Macro",
  3038. height: math.unit(0.25, "miles")
  3039. },
  3040. {
  3041. name: "Megamacro",
  3042. height: math.unit(10, "miles")
  3043. }
  3044. ]
  3045. ))
  3046. characterMakers.push(() => makeCharacter(
  3047. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3048. {
  3049. side: {
  3050. height: math.unit(2, "meter"),
  3051. weight: math.unit(140, "kg"),
  3052. name: "Side",
  3053. image: {
  3054. source: "./media/characters/sosha/side.svg",
  3055. bottom: 0.042
  3056. }
  3057. },
  3058. },
  3059. [
  3060. {
  3061. name: "Normal",
  3062. height: math.unit(12, "feet"),
  3063. default: true
  3064. }
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3069. {
  3070. side: {
  3071. height: math.unit(5 + 5 / 12, "feet"),
  3072. weight: math.unit(170, "kg"),
  3073. name: "Side",
  3074. image: {
  3075. source: "./media/characters/runnola/side.svg",
  3076. extra: 741 / 448,
  3077. bottom: 0.05
  3078. }
  3079. },
  3080. },
  3081. [
  3082. {
  3083. name: "Small",
  3084. height: math.unit(3, "feet")
  3085. },
  3086. {
  3087. name: "Normal",
  3088. height: math.unit(5 + 5 / 12, "feet"),
  3089. default: true
  3090. },
  3091. {
  3092. name: "Big",
  3093. height: math.unit(10, "feet")
  3094. },
  3095. ]
  3096. ))
  3097. characterMakers.push(() => makeCharacter(
  3098. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3099. {
  3100. front: {
  3101. height: math.unit(2, "meter"),
  3102. weight: math.unit(50, "kg"),
  3103. name: "Front",
  3104. image: {
  3105. source: "./media/characters/kurribird/front.svg",
  3106. bottom: 0.015
  3107. }
  3108. },
  3109. frontAlt: {
  3110. height: math.unit(1.5, "meter"),
  3111. weight: math.unit(50, "kg"),
  3112. name: "Front (Alt)",
  3113. image: {
  3114. source: "./media/characters/kurribird/front-alt.svg",
  3115. extra: 1.45
  3116. }
  3117. },
  3118. },
  3119. [
  3120. {
  3121. name: "Normal",
  3122. height: math.unit(7, "feet")
  3123. },
  3124. {
  3125. name: "Big",
  3126. height: math.unit(12, "feet"),
  3127. default: true
  3128. },
  3129. {
  3130. name: "Macro",
  3131. height: math.unit(1500, "feet")
  3132. },
  3133. {
  3134. name: "Megamacro",
  3135. height: math.unit(2, "miles")
  3136. }
  3137. ]
  3138. ))
  3139. characterMakers.push(() => makeCharacter(
  3140. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3141. {
  3142. front: {
  3143. height: math.unit(2, "meter"),
  3144. weight: math.unit(80, "kg"),
  3145. name: "Front",
  3146. image: {
  3147. source: "./media/characters/elbial/front.svg",
  3148. extra: 1643 / 1556,
  3149. bottom: 60.2 / 1696
  3150. }
  3151. },
  3152. side: {
  3153. height: math.unit(2, "meter"),
  3154. weight: math.unit(80, "kg"),
  3155. name: "Side",
  3156. image: {
  3157. source: "./media/characters/elbial/side.svg",
  3158. extra: 1630 / 1565,
  3159. bottom: 71.5 / 1697
  3160. }
  3161. },
  3162. back: {
  3163. height: math.unit(2, "meter"),
  3164. weight: math.unit(80, "kg"),
  3165. name: "Back",
  3166. image: {
  3167. source: "./media/characters/elbial/back.svg",
  3168. extra: 1668 / 1595,
  3169. bottom: 5.6 / 1672
  3170. }
  3171. },
  3172. frontDressed: {
  3173. height: math.unit(2, "meter"),
  3174. weight: math.unit(80, "kg"),
  3175. name: "Front (Dressed)",
  3176. image: {
  3177. source: "./media/characters/elbial/front-dressed.svg",
  3178. extra: 1653 / 1584,
  3179. bottom: 57 / 1708
  3180. }
  3181. },
  3182. genitals: {
  3183. height: math.unit(2 / 3.367, "meter"),
  3184. name: "Genitals",
  3185. image: {
  3186. source: "./media/characters/elbial/genitals.svg"
  3187. }
  3188. },
  3189. },
  3190. [
  3191. {
  3192. name: "Large",
  3193. height: math.unit(100, "feet")
  3194. },
  3195. {
  3196. name: "Macro",
  3197. height: math.unit(500, "feet"),
  3198. default: true
  3199. },
  3200. {
  3201. name: "Megamacro",
  3202. height: math.unit(10, "miles")
  3203. },
  3204. {
  3205. name: "Gigamacro",
  3206. height: math.unit(25000, "miles")
  3207. },
  3208. {
  3209. name: "Full-Size",
  3210. height: math.unit(8000000, "gigaparsecs")
  3211. }
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3216. {
  3217. front: {
  3218. height: math.unit(2, "meter"),
  3219. weight: math.unit(60, "kg"),
  3220. name: "Front",
  3221. image: {
  3222. source: "./media/characters/noah/front.svg"
  3223. }
  3224. },
  3225. talons: {
  3226. height: math.unit(0.315, "meter"),
  3227. name: "Talons",
  3228. image: {
  3229. source: "./media/characters/noah/talons.svg"
  3230. }
  3231. }
  3232. },
  3233. [
  3234. {
  3235. name: "Large",
  3236. height: math.unit(50, "feet")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(750, "feet"),
  3241. default: true
  3242. },
  3243. {
  3244. name: "Megamacro",
  3245. height: math.unit(50, "miles")
  3246. },
  3247. {
  3248. name: "Gigamacro",
  3249. height: math.unit(100000, "miles")
  3250. },
  3251. {
  3252. name: "Full-Size",
  3253. height: math.unit(3000000000, "miles")
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(2, "meter"),
  3262. weight: math.unit(80, "kg"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/natalya/front.svg"
  3266. }
  3267. },
  3268. back: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(80, "kg"),
  3271. name: "Back",
  3272. image: {
  3273. source: "./media/characters/natalya/back.svg"
  3274. }
  3275. }
  3276. },
  3277. [
  3278. {
  3279. name: "Normal",
  3280. height: math.unit(150, "feet"),
  3281. default: true
  3282. },
  3283. {
  3284. name: "Megamacro",
  3285. height: math.unit(5, "miles")
  3286. },
  3287. {
  3288. name: "Full-Size",
  3289. height: math.unit(600, "kiloparsecs")
  3290. }
  3291. ]
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3295. {
  3296. front: {
  3297. height: math.unit(2, "meter"),
  3298. weight: math.unit(50, "kg"),
  3299. name: "Front",
  3300. image: {
  3301. source: "./media/characters/erestrebah/front.svg",
  3302. extra: 208 / 193,
  3303. bottom: 0.055
  3304. }
  3305. },
  3306. back: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(50, "kg"),
  3309. name: "Back",
  3310. image: {
  3311. source: "./media/characters/erestrebah/back.svg",
  3312. extra: 1.3
  3313. }
  3314. }
  3315. },
  3316. [
  3317. {
  3318. name: "Normal",
  3319. height: math.unit(10, "feet")
  3320. },
  3321. {
  3322. name: "Large",
  3323. height: math.unit(50, "feet"),
  3324. default: true
  3325. },
  3326. {
  3327. name: "Macro",
  3328. height: math.unit(300, "feet")
  3329. },
  3330. {
  3331. name: "Macro+",
  3332. height: math.unit(750, "feet")
  3333. },
  3334. {
  3335. name: "Megamacro",
  3336. height: math.unit(3, "miles")
  3337. }
  3338. ]
  3339. ))
  3340. characterMakers.push(() => makeCharacter(
  3341. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3342. {
  3343. front: {
  3344. height: math.unit(2, "meter"),
  3345. weight: math.unit(80, "kg"),
  3346. name: "Front",
  3347. image: {
  3348. source: "./media/characters/jennifer/front.svg",
  3349. bottom: 0.11,
  3350. extra: 1.16
  3351. }
  3352. },
  3353. frontAlt: {
  3354. height: math.unit(2, "meter"),
  3355. weight: math.unit(80, "kg"),
  3356. name: "Front (Alt)",
  3357. image: {
  3358. source: "./media/characters/jennifer/front-alt.svg"
  3359. }
  3360. }
  3361. },
  3362. [
  3363. {
  3364. name: "Canon Height",
  3365. height: math.unit(120, "feet"),
  3366. default: true
  3367. },
  3368. {
  3369. name: "Macro+",
  3370. height: math.unit(300, "feet")
  3371. },
  3372. {
  3373. name: "Megamacro",
  3374. height: math.unit(20000, "feet")
  3375. }
  3376. ]
  3377. ))
  3378. characterMakers.push(() => makeCharacter(
  3379. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3380. {
  3381. front: {
  3382. height: math.unit(2, "meter"),
  3383. weight: math.unit(50, "kg"),
  3384. name: "Front",
  3385. image: {
  3386. source: "./media/characters/kalista/front.svg",
  3387. extra: 1947 / 1700,
  3388. bottom: 76.6 / 1412.98
  3389. }
  3390. },
  3391. back: {
  3392. height: math.unit(2, "meter"),
  3393. weight: math.unit(50, "kg"),
  3394. name: "Back",
  3395. image: {
  3396. source: "./media/characters/kalista/back.svg",
  3397. extra: 1366 / 1156,
  3398. bottom: 33.9 / 1362.78
  3399. }
  3400. }
  3401. },
  3402. [
  3403. {
  3404. name: "Uncomfortably Small",
  3405. height: math.unit(10, "feet")
  3406. },
  3407. {
  3408. name: "Small",
  3409. height: math.unit(30, "feet")
  3410. },
  3411. {
  3412. name: "Macro",
  3413. height: math.unit(100, "feet"),
  3414. default: true
  3415. },
  3416. {
  3417. name: "Macro+",
  3418. height: math.unit(2000, "feet")
  3419. },
  3420. {
  3421. name: "True Form",
  3422. height: math.unit(8924, "miles")
  3423. }
  3424. ]
  3425. ))
  3426. characterMakers.push(() => makeCharacter(
  3427. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3428. {
  3429. front: {
  3430. height: math.unit(2, "meter"),
  3431. weight: math.unit(120, "kg"),
  3432. name: "Front",
  3433. image: {
  3434. source: "./media/characters/ggv/front.svg"
  3435. }
  3436. },
  3437. side: {
  3438. height: math.unit(2, "meter"),
  3439. weight: math.unit(120, "kg"),
  3440. name: "Side",
  3441. image: {
  3442. source: "./media/characters/ggv/side.svg"
  3443. }
  3444. }
  3445. },
  3446. [
  3447. {
  3448. name: "Extremely Puny",
  3449. height: math.unit(9 + 5 / 12, "feet")
  3450. },
  3451. {
  3452. name: "Horribly Small",
  3453. height: math.unit(47.7, "miles"),
  3454. default: true
  3455. },
  3456. {
  3457. name: "Reasonably Sized",
  3458. height: math.unit(25000, "parsecs")
  3459. },
  3460. {
  3461. name: "Slightly Uncompressed",
  3462. height: math.unit(7.77e31, "parsecs")
  3463. },
  3464. {
  3465. name: "Omniversal",
  3466. height: math.unit(1e300, "meters")
  3467. },
  3468. ]
  3469. ))
  3470. characterMakers.push(() => makeCharacter(
  3471. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3472. {
  3473. front: {
  3474. height: math.unit(2, "meter"),
  3475. weight: math.unit(75, "lb"),
  3476. name: "Front",
  3477. image: {
  3478. source: "./media/characters/napalm/front.svg"
  3479. }
  3480. },
  3481. back: {
  3482. height: math.unit(2, "meter"),
  3483. weight: math.unit(75, "lb"),
  3484. name: "Back",
  3485. image: {
  3486. source: "./media/characters/napalm/back.svg"
  3487. }
  3488. }
  3489. },
  3490. [
  3491. {
  3492. name: "Standard",
  3493. height: math.unit(55, "feet"),
  3494. default: true
  3495. }
  3496. ]
  3497. ))
  3498. characterMakers.push(() => makeCharacter(
  3499. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3500. {
  3501. front: {
  3502. height: math.unit(7 + 5 / 6, "feet"),
  3503. weight: math.unit(325, "lb"),
  3504. name: "Front",
  3505. image: {
  3506. source: "./media/characters/asana/front.svg",
  3507. extra: 1133 / 1060,
  3508. bottom: 15.2 / 1148.6
  3509. }
  3510. },
  3511. back: {
  3512. height: math.unit(7 + 5 / 6, "feet"),
  3513. weight: math.unit(325, "lb"),
  3514. name: "Back",
  3515. image: {
  3516. source: "./media/characters/asana/back.svg",
  3517. extra: 1114 / 1043,
  3518. bottom: 5 / 1120
  3519. }
  3520. },
  3521. dressedDark: {
  3522. height: math.unit(7 + 5 / 6, "feet"),
  3523. weight: math.unit(325, "lb"),
  3524. name: "Dressed (Dark)",
  3525. image: {
  3526. source: "./media/characters/asana/dressed-dark.svg",
  3527. extra: 1133 / 1060,
  3528. bottom: 15.2 / 1148.6
  3529. }
  3530. },
  3531. dressedLight: {
  3532. height: math.unit(7 + 5 / 6, "feet"),
  3533. weight: math.unit(325, "lb"),
  3534. name: "Dressed (Light)",
  3535. image: {
  3536. source: "./media/characters/asana/dressed-light.svg",
  3537. extra: 1133 / 1060,
  3538. bottom: 15.2 / 1148.6
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Standard",
  3545. height: math.unit(7 + 5 / 6, "feet"),
  3546. default: true
  3547. },
  3548. {
  3549. name: "Large",
  3550. height: math.unit(10, "meters")
  3551. },
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(2500, "meters")
  3555. },
  3556. {
  3557. name: "Megamacro",
  3558. height: math.unit(5e6, "meters")
  3559. },
  3560. {
  3561. name: "Examacro",
  3562. height: math.unit(5e12, "lightyears")
  3563. },
  3564. {
  3565. name: "Max Size",
  3566. height: math.unit(1e31, "lightyears")
  3567. }
  3568. ]
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3572. {
  3573. front: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(60, "kg"),
  3576. name: "Front",
  3577. image: {
  3578. source: "./media/characters/ebony/front.svg",
  3579. bottom: 0.03,
  3580. extra: 1045 / 810 + 0.03
  3581. }
  3582. },
  3583. side: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(60, "kg"),
  3586. name: "Side",
  3587. image: {
  3588. source: "./media/characters/ebony/side.svg",
  3589. bottom: 0.03,
  3590. extra: 1045 / 810 + 0.03
  3591. }
  3592. },
  3593. back: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(60, "kg"),
  3596. name: "Back",
  3597. image: {
  3598. source: "./media/characters/ebony/back.svg",
  3599. bottom: 0.01,
  3600. extra: 1045 / 810 + 0.01
  3601. }
  3602. },
  3603. },
  3604. [
  3605. // TODO check why I did this lol
  3606. {
  3607. name: "Standard",
  3608. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3609. default: true
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(200, "feet")
  3614. },
  3615. {
  3616. name: "Gigamacro",
  3617. height: math.unit(13000, "km")
  3618. }
  3619. ]
  3620. ))
  3621. characterMakers.push(() => makeCharacter(
  3622. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3623. {
  3624. front: {
  3625. height: math.unit(6, "feet"),
  3626. weight: math.unit(175, "lb"),
  3627. name: "Front",
  3628. image: {
  3629. source: "./media/characters/mountain/front.svg",
  3630. extra: 972 / 955,
  3631. bottom: 64 / 1036.6
  3632. }
  3633. },
  3634. back: {
  3635. height: math.unit(6, "feet"),
  3636. weight: math.unit(175, "lb"),
  3637. name: "Back",
  3638. image: {
  3639. source: "./media/characters/mountain/back.svg",
  3640. extra: 970 / 950,
  3641. bottom: 28.25 / 999
  3642. }
  3643. },
  3644. },
  3645. [
  3646. {
  3647. name: "Large",
  3648. height: math.unit(20, "meters")
  3649. },
  3650. {
  3651. name: "Macro",
  3652. height: math.unit(300, "meters")
  3653. },
  3654. {
  3655. name: "Gigamacro",
  3656. height: math.unit(10000, "km"),
  3657. default: true
  3658. },
  3659. {
  3660. name: "Examacro",
  3661. height: math.unit(10e9, "lightyears")
  3662. }
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3667. {
  3668. front: {
  3669. height: math.unit(8, "feet"),
  3670. weight: math.unit(500, "lb"),
  3671. name: "Front",
  3672. image: {
  3673. source: "./media/characters/rick/front.svg"
  3674. }
  3675. }
  3676. },
  3677. [
  3678. {
  3679. name: "Normal",
  3680. height: math.unit(8, "feet"),
  3681. default: true
  3682. },
  3683. {
  3684. name: "Macro",
  3685. height: math.unit(5, "km")
  3686. }
  3687. ]
  3688. ))
  3689. characterMakers.push(() => makeCharacter(
  3690. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3691. {
  3692. front: {
  3693. height: math.unit(8, "feet"),
  3694. weight: math.unit(120, "lb"),
  3695. name: "Front",
  3696. image: {
  3697. source: "./media/characters/ona/front.svg"
  3698. }
  3699. },
  3700. frontAlt: {
  3701. height: math.unit(8, "feet"),
  3702. weight: math.unit(120, "lb"),
  3703. name: "Front (Alt)",
  3704. image: {
  3705. source: "./media/characters/ona/front-alt.svg"
  3706. }
  3707. },
  3708. back: {
  3709. height: math.unit(8, "feet"),
  3710. weight: math.unit(120, "lb"),
  3711. name: "Back",
  3712. image: {
  3713. source: "./media/characters/ona/back.svg"
  3714. }
  3715. },
  3716. foot: {
  3717. height: math.unit(1.1, "feet"),
  3718. name: "Foot",
  3719. image: {
  3720. source: "./media/characters/ona/foot.svg"
  3721. }
  3722. }
  3723. },
  3724. [
  3725. {
  3726. name: "Megamacro",
  3727. height: math.unit(70, "km"),
  3728. default: true
  3729. },
  3730. {
  3731. name: "Gigamacro",
  3732. height: math.unit(681818, "miles")
  3733. },
  3734. {
  3735. name: "Examacro",
  3736. height: math.unit(3800000, "lightyears")
  3737. },
  3738. ]
  3739. ))
  3740. characterMakers.push(() => makeCharacter(
  3741. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3742. {
  3743. front: {
  3744. height: math.unit(12, "feet"),
  3745. weight: math.unit(3000, "lb"),
  3746. name: "Front",
  3747. image: {
  3748. source: "./media/characters/mech/front.svg",
  3749. extra: 2900 / 2770,
  3750. bottom: 110 / 3010
  3751. }
  3752. },
  3753. back: {
  3754. height: math.unit(12, "feet"),
  3755. weight: math.unit(3000, "lb"),
  3756. name: "Back",
  3757. image: {
  3758. source: "./media/characters/mech/back.svg",
  3759. extra: 3011 / 2890,
  3760. bottom: 94 / 3105
  3761. }
  3762. },
  3763. maw: {
  3764. height: math.unit(3.07, "feet"),
  3765. name: "Maw",
  3766. image: {
  3767. source: "./media/characters/mech/maw.svg"
  3768. }
  3769. },
  3770. head: {
  3771. height: math.unit(2.82, "feet"),
  3772. name: "Head",
  3773. image: {
  3774. source: "./media/characters/mech/head.svg"
  3775. }
  3776. },
  3777. dick: {
  3778. height: math.unit(1.43, "feet"),
  3779. name: "Dick",
  3780. image: {
  3781. source: "./media/characters/mech/dick.svg"
  3782. }
  3783. },
  3784. },
  3785. [
  3786. {
  3787. name: "Normal",
  3788. height: math.unit(12, "feet")
  3789. },
  3790. {
  3791. name: "Macro",
  3792. height: math.unit(300, "feet"),
  3793. default: true
  3794. },
  3795. {
  3796. name: "Macro+",
  3797. height: math.unit(1500, "feet")
  3798. },
  3799. ]
  3800. ))
  3801. characterMakers.push(() => makeCharacter(
  3802. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3803. {
  3804. front: {
  3805. height: math.unit(1.3, "meter"),
  3806. weight: math.unit(30, "kg"),
  3807. name: "Front",
  3808. image: {
  3809. source: "./media/characters/gregory/front.svg",
  3810. }
  3811. }
  3812. },
  3813. [
  3814. {
  3815. name: "Normal",
  3816. height: math.unit(1.3, "meter"),
  3817. default: true
  3818. },
  3819. {
  3820. name: "Macro",
  3821. height: math.unit(20, "meter")
  3822. }
  3823. ]
  3824. ))
  3825. characterMakers.push(() => makeCharacter(
  3826. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3827. {
  3828. front: {
  3829. height: math.unit(2.8, "meter"),
  3830. weight: math.unit(200, "kg"),
  3831. name: "Front",
  3832. image: {
  3833. source: "./media/characters/elory/front.svg",
  3834. }
  3835. }
  3836. },
  3837. [
  3838. {
  3839. name: "Normal",
  3840. height: math.unit(2.8, "meter"),
  3841. default: true
  3842. },
  3843. {
  3844. name: "Macro",
  3845. height: math.unit(38, "meter")
  3846. }
  3847. ]
  3848. ))
  3849. characterMakers.push(() => makeCharacter(
  3850. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3851. {
  3852. front: {
  3853. height: math.unit(470, "feet"),
  3854. weight: math.unit(924, "tons"),
  3855. name: "Front",
  3856. image: {
  3857. source: "./media/characters/angelpatamon/front.svg",
  3858. }
  3859. }
  3860. },
  3861. [
  3862. {
  3863. name: "Normal",
  3864. height: math.unit(470, "feet"),
  3865. default: true
  3866. },
  3867. {
  3868. name: "Deity Size I",
  3869. height: math.unit(28651.2, "km")
  3870. },
  3871. {
  3872. name: "Deity Size II",
  3873. height: math.unit(171907.2, "km")
  3874. }
  3875. ]
  3876. ))
  3877. characterMakers.push(() => makeCharacter(
  3878. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3879. {
  3880. side: {
  3881. height: math.unit(7.2, "meter"),
  3882. weight: math.unit(8.2, "tons"),
  3883. name: "Side",
  3884. image: {
  3885. source: "./media/characters/cryae/side.svg",
  3886. extra: 3500 / 1500
  3887. }
  3888. }
  3889. },
  3890. [
  3891. {
  3892. name: "Normal",
  3893. height: math.unit(7.2, "meter"),
  3894. default: true
  3895. }
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3900. {
  3901. front: {
  3902. height: math.unit(6, "feet"),
  3903. weight: math.unit(175, "lb"),
  3904. name: "Front",
  3905. image: {
  3906. source: "./media/characters/xera/front.svg",
  3907. extra: 2377 / 1972,
  3908. bottom: 75.5 / 2452
  3909. }
  3910. },
  3911. side: {
  3912. height: math.unit(6, "feet"),
  3913. weight: math.unit(175, "lb"),
  3914. name: "Side",
  3915. image: {
  3916. source: "./media/characters/xera/side.svg",
  3917. extra: 2345 / 2019,
  3918. bottom: 39.7 / 2384
  3919. }
  3920. },
  3921. back: {
  3922. height: math.unit(6, "feet"),
  3923. weight: math.unit(175, "lb"),
  3924. name: "Back",
  3925. image: {
  3926. source: "./media/characters/xera/back.svg",
  3927. extra: 2095 / 1984,
  3928. bottom: 67 / 2166
  3929. }
  3930. },
  3931. },
  3932. [
  3933. {
  3934. name: "Small",
  3935. height: math.unit(10, "feet")
  3936. },
  3937. {
  3938. name: "Macro",
  3939. height: math.unit(500, "meters"),
  3940. default: true
  3941. },
  3942. {
  3943. name: "Macro+",
  3944. height: math.unit(10, "km")
  3945. },
  3946. {
  3947. name: "Gigamacro",
  3948. height: math.unit(25000, "km")
  3949. },
  3950. {
  3951. name: "Teramacro",
  3952. height: math.unit(3e6, "km")
  3953. }
  3954. ]
  3955. ))
  3956. characterMakers.push(() => makeCharacter(
  3957. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3958. {
  3959. front: {
  3960. height: math.unit(6, "feet"),
  3961. weight: math.unit(175, "lb"),
  3962. name: "Front",
  3963. image: {
  3964. source: "./media/characters/nebula/front.svg",
  3965. extra: 2566 / 2362,
  3966. bottom: 81 / 2644
  3967. }
  3968. }
  3969. },
  3970. [
  3971. {
  3972. name: "Small",
  3973. height: math.unit(4.5, "meters")
  3974. },
  3975. {
  3976. name: "Macro",
  3977. height: math.unit(1500, "meters"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Megamacro",
  3982. height: math.unit(150, "km")
  3983. },
  3984. {
  3985. name: "Gigamacro",
  3986. height: math.unit(27000, "km")
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(6, "feet"),
  3995. weight: math.unit(225, "lb"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/abysgar/front.svg"
  3999. }
  4000. }
  4001. },
  4002. [
  4003. {
  4004. name: "Small",
  4005. height: math.unit(4.5, "meters")
  4006. },
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(1250, "meters"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Megamacro",
  4014. height: math.unit(125, "km")
  4015. },
  4016. {
  4017. name: "Gigamacro",
  4018. height: math.unit(26000, "km")
  4019. }
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4024. {
  4025. front: {
  4026. height: math.unit(6, "feet"),
  4027. weight: math.unit(180, "lb"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/yakuz/front.svg"
  4031. }
  4032. }
  4033. },
  4034. [
  4035. {
  4036. name: "Small",
  4037. height: math.unit(5, "meters")
  4038. },
  4039. {
  4040. name: "Macro",
  4041. height: math.unit(1500, "meters"),
  4042. default: true
  4043. },
  4044. {
  4045. name: "Megamacro",
  4046. height: math.unit(200, "km")
  4047. },
  4048. {
  4049. name: "Gigamacro",
  4050. height: math.unit(100000, "km")
  4051. }
  4052. ]
  4053. ))
  4054. characterMakers.push(() => makeCharacter(
  4055. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4056. {
  4057. front: {
  4058. height: math.unit(6, "feet"),
  4059. weight: math.unit(175, "lb"),
  4060. name: "Front",
  4061. image: {
  4062. source: "./media/characters/mirova/front.svg",
  4063. extra: 3334 / 3071,
  4064. bottom: 42 / 3375.6
  4065. }
  4066. }
  4067. },
  4068. [
  4069. {
  4070. name: "Small",
  4071. height: math.unit(5, "meters")
  4072. },
  4073. {
  4074. name: "Macro",
  4075. height: math.unit(900, "meters"),
  4076. default: true
  4077. },
  4078. {
  4079. name: "Megamacro",
  4080. height: math.unit(135, "km")
  4081. },
  4082. {
  4083. name: "Gigamacro",
  4084. height: math.unit(20000, "km")
  4085. }
  4086. ]
  4087. ))
  4088. characterMakers.push(() => makeCharacter(
  4089. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4090. {
  4091. side: {
  4092. height: math.unit(28.35, "feet"),
  4093. weight: math.unit(99.75, "tons"),
  4094. name: "Side",
  4095. image: {
  4096. source: "./media/characters/asana-mech/side.svg",
  4097. extra: 923 / 699,
  4098. bottom: 50 / 975
  4099. }
  4100. },
  4101. chaingun: {
  4102. height: math.unit(7, "feet"),
  4103. weight: math.unit(2400, "lb"),
  4104. name: "Chaingun",
  4105. image: {
  4106. source: "./media/characters/asana-mech/chaingun.svg"
  4107. }
  4108. },
  4109. laser: {
  4110. height: math.unit(7.12, "feet"),
  4111. weight: math.unit(2000, "lb"),
  4112. name: "Laser",
  4113. image: {
  4114. source: "./media/characters/asana-mech/laser.svg"
  4115. }
  4116. },
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(28.35, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(2500, "feet")
  4127. },
  4128. {
  4129. name: "Megamacro",
  4130. height: math.unit(25, "miles")
  4131. },
  4132. {
  4133. name: "Examacro",
  4134. height: math.unit(6e8, "lightyears")
  4135. },
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4140. {
  4141. front: {
  4142. height: math.unit(5, "meters"),
  4143. weight: math.unit(1000, "kg"),
  4144. name: "Front",
  4145. image: {
  4146. source: "./media/characters/asche/front.svg",
  4147. extra: 1258 / 1190,
  4148. bottom: 47 / 1305
  4149. }
  4150. },
  4151. frontUnderwear: {
  4152. height: math.unit(5, "meters"),
  4153. weight: math.unit(1000, "kg"),
  4154. name: "Front (Underwear)",
  4155. image: {
  4156. source: "./media/characters/asche/front-underwear.svg",
  4157. extra: 1258 / 1190,
  4158. bottom: 47 / 1305
  4159. }
  4160. },
  4161. frontDressed: {
  4162. height: math.unit(5, "meters"),
  4163. weight: math.unit(1000, "kg"),
  4164. name: "Front (Dressed)",
  4165. image: {
  4166. source: "./media/characters/asche/front-dressed.svg",
  4167. extra: 1258 / 1190,
  4168. bottom: 47 / 1305
  4169. }
  4170. },
  4171. frontArmor: {
  4172. height: math.unit(5, "meters"),
  4173. weight: math.unit(1000, "kg"),
  4174. name: "Front (Armored)",
  4175. image: {
  4176. source: "./media/characters/asche/front-armored.svg",
  4177. extra: 1374 / 1308,
  4178. bottom: 23 / 1397
  4179. }
  4180. },
  4181. mp724: {
  4182. height: math.unit(0.96, "meters"),
  4183. weight: math.unit(38, "kg"),
  4184. name: "H&K MP724",
  4185. image: {
  4186. source: "./media/characters/asche/h&k-mp724.svg"
  4187. }
  4188. },
  4189. side: {
  4190. height: math.unit(5, "meters"),
  4191. weight: math.unit(1000, "kg"),
  4192. name: "Side",
  4193. image: {
  4194. source: "./media/characters/asche/side.svg",
  4195. extra: 1717 / 1609,
  4196. bottom: 0.005
  4197. }
  4198. },
  4199. back: {
  4200. height: math.unit(5, "meters"),
  4201. weight: math.unit(1000, "kg"),
  4202. name: "Back",
  4203. image: {
  4204. source: "./media/characters/asche/back.svg",
  4205. extra: 1570 / 1501
  4206. }
  4207. },
  4208. },
  4209. [
  4210. {
  4211. name: "DEFCON 5",
  4212. height: math.unit(5, "meters")
  4213. },
  4214. {
  4215. name: "DEFCON 4",
  4216. height: math.unit(500, "meters"),
  4217. default: true
  4218. },
  4219. {
  4220. name: "DEFCON 3",
  4221. height: math.unit(5, "km")
  4222. },
  4223. {
  4224. name: "DEFCON 2",
  4225. height: math.unit(500, "km")
  4226. },
  4227. {
  4228. name: "DEFCON 1",
  4229. height: math.unit(500000, "km")
  4230. },
  4231. {
  4232. name: "DEFCON 0",
  4233. height: math.unit(3, "gigaparsecs")
  4234. },
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4239. {
  4240. front: {
  4241. height: math.unit(2, "meters"),
  4242. weight: math.unit(76, "kg"),
  4243. name: "Front",
  4244. image: {
  4245. source: "./media/characters/gale/front.svg"
  4246. }
  4247. },
  4248. frontAlt1: {
  4249. height: math.unit(2, "meters"),
  4250. weight: math.unit(76, "kg"),
  4251. name: "Front (Alt 1)",
  4252. image: {
  4253. source: "./media/characters/gale/front-alt-1.svg"
  4254. }
  4255. },
  4256. frontAlt2: {
  4257. height: math.unit(2, "meters"),
  4258. weight: math.unit(76, "kg"),
  4259. name: "Front (Alt 2)",
  4260. image: {
  4261. source: "./media/characters/gale/front-alt-2.svg"
  4262. }
  4263. },
  4264. },
  4265. [
  4266. {
  4267. name: "Normal",
  4268. height: math.unit(7, "feet")
  4269. },
  4270. {
  4271. name: "Macro",
  4272. height: math.unit(150, "feet"),
  4273. default: true
  4274. },
  4275. {
  4276. name: "Macro+",
  4277. height: math.unit(300, "feet")
  4278. },
  4279. ]
  4280. ))
  4281. characterMakers.push(() => makeCharacter(
  4282. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4283. {
  4284. front: {
  4285. height: math.unit(2, "meters"),
  4286. weight: math.unit(76, "kg"),
  4287. name: "Front",
  4288. image: {
  4289. source: "./media/characters/draylen/front.svg"
  4290. }
  4291. }
  4292. },
  4293. [
  4294. {
  4295. name: "Macro",
  4296. height: math.unit(150, "feet"),
  4297. default: true
  4298. }
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4303. {
  4304. front: {
  4305. height: math.unit(7 + 9 / 12, "feet"),
  4306. weight: math.unit(379, "lbs"),
  4307. name: "Front",
  4308. image: {
  4309. source: "./media/characters/chez/front.svg"
  4310. }
  4311. },
  4312. side: {
  4313. height: math.unit(7 + 9 / 12, "feet"),
  4314. weight: math.unit(379, "lbs"),
  4315. name: "Side",
  4316. image: {
  4317. source: "./media/characters/chez/side.svg"
  4318. }
  4319. }
  4320. },
  4321. [
  4322. {
  4323. name: "Normal",
  4324. height: math.unit(7 + 9 / 12, "feet"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "God King",
  4329. height: math.unit(9750000, "meters")
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4335. {
  4336. front: {
  4337. height: math.unit(6, "feet"),
  4338. weight: math.unit(275, "lbs"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/kaylum/front.svg",
  4342. bottom: 0.01,
  4343. extra: 1166 / 1031
  4344. }
  4345. },
  4346. frontWingless: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(275, "lbs"),
  4349. name: "Front (Wingless)",
  4350. image: {
  4351. source: "./media/characters/kaylum/front-wingless.svg",
  4352. bottom: 0.01,
  4353. extra: 1117 / 1031
  4354. }
  4355. }
  4356. },
  4357. [
  4358. {
  4359. name: "Normal",
  4360. height: math.unit(3.05, "meters")
  4361. },
  4362. {
  4363. name: "Master",
  4364. height: math.unit(5.5, "meters")
  4365. },
  4366. {
  4367. name: "Rampage",
  4368. height: math.unit(19, "meters")
  4369. },
  4370. {
  4371. name: "Macro Lite",
  4372. height: math.unit(37, "meters")
  4373. },
  4374. {
  4375. name: "Hyper Predator",
  4376. height: math.unit(61, "meters")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(138, "meters"),
  4381. default: true
  4382. }
  4383. ]
  4384. ))
  4385. characterMakers.push(() => makeCharacter(
  4386. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4387. {
  4388. front: {
  4389. height: math.unit(6, "feet"),
  4390. weight: math.unit(150, "lbs"),
  4391. name: "Front",
  4392. image: {
  4393. source: "./media/characters/geta/front.svg"
  4394. }
  4395. }
  4396. },
  4397. [
  4398. {
  4399. name: "Micro",
  4400. height: math.unit(3, "inches"),
  4401. default: true
  4402. },
  4403. {
  4404. name: "Normal",
  4405. height: math.unit(5 + 5 / 12, "feet")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4411. {
  4412. front: {
  4413. height: math.unit(6, "feet"),
  4414. weight: math.unit(300, "lbs"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/tyrnn/front.svg"
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Main Height",
  4424. height: math.unit(355, "feet"),
  4425. default: true
  4426. },
  4427. {
  4428. name: "Fave. Height",
  4429. height: math.unit(2400, "feet")
  4430. }
  4431. ]
  4432. ))
  4433. characterMakers.push(() => makeCharacter(
  4434. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4435. {
  4436. front: {
  4437. height: math.unit(6, "feet"),
  4438. weight: math.unit(300, "lbs"),
  4439. name: "Front",
  4440. image: {
  4441. source: "./media/characters/appledectomy/front.svg"
  4442. }
  4443. }
  4444. },
  4445. [
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(2500, "feet")
  4449. },
  4450. {
  4451. name: "Megamacro",
  4452. height: math.unit(50, "miles"),
  4453. default: true
  4454. },
  4455. {
  4456. name: "Gigamacro",
  4457. height: math.unit(5000, "miles")
  4458. },
  4459. {
  4460. name: "Teramacro",
  4461. height: math.unit(250000, "miles")
  4462. },
  4463. ]
  4464. ))
  4465. characterMakers.push(() => makeCharacter(
  4466. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4467. {
  4468. front: {
  4469. height: math.unit(6, "feet"),
  4470. weight: math.unit(200, "lbs"),
  4471. name: "Front",
  4472. image: {
  4473. source: "./media/characters/vulpes/front.svg",
  4474. extra: 573 / 543,
  4475. bottom: 0.033
  4476. }
  4477. },
  4478. side: {
  4479. height: math.unit(6, "feet"),
  4480. weight: math.unit(200, "lbs"),
  4481. name: "Side",
  4482. image: {
  4483. source: "./media/characters/vulpes/side.svg",
  4484. extra: 577 / 549,
  4485. bottom: 11 / 588
  4486. }
  4487. },
  4488. back: {
  4489. height: math.unit(6, "feet"),
  4490. weight: math.unit(200, "lbs"),
  4491. name: "Back",
  4492. image: {
  4493. source: "./media/characters/vulpes/back.svg",
  4494. extra: 573 / 549,
  4495. bottom: 20 / 593
  4496. }
  4497. },
  4498. feet: {
  4499. height: math.unit(1.276, "feet"),
  4500. name: "Feet",
  4501. image: {
  4502. source: "./media/characters/vulpes/feet.svg"
  4503. }
  4504. },
  4505. maw: {
  4506. height: math.unit(1.18, "feet"),
  4507. name: "Maw",
  4508. image: {
  4509. source: "./media/characters/vulpes/maw.svg"
  4510. }
  4511. },
  4512. },
  4513. [
  4514. {
  4515. name: "Micro",
  4516. height: math.unit(2, "inches")
  4517. },
  4518. {
  4519. name: "Normal",
  4520. height: math.unit(6.3, "feet")
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(850, "feet")
  4525. },
  4526. {
  4527. name: "Megamacro",
  4528. height: math.unit(7500, "feet"),
  4529. default: true
  4530. },
  4531. {
  4532. name: "Gigamacro",
  4533. height: math.unit(570000, "miles")
  4534. }
  4535. ]
  4536. ))
  4537. characterMakers.push(() => makeCharacter(
  4538. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4539. {
  4540. front: {
  4541. height: math.unit(6, "feet"),
  4542. weight: math.unit(210, "lbs"),
  4543. name: "Front",
  4544. image: {
  4545. source: "./media/characters/rain-fallen/front.svg"
  4546. }
  4547. },
  4548. side: {
  4549. height: math.unit(6, "feet"),
  4550. weight: math.unit(210, "lbs"),
  4551. name: "Side",
  4552. image: {
  4553. source: "./media/characters/rain-fallen/side.svg"
  4554. }
  4555. },
  4556. back: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(210, "lbs"),
  4559. name: "Back",
  4560. image: {
  4561. source: "./media/characters/rain-fallen/back.svg"
  4562. }
  4563. },
  4564. feral: {
  4565. height: math.unit(9, "feet"),
  4566. weight: math.unit(700, "lbs"),
  4567. name: "Feral",
  4568. image: {
  4569. source: "./media/characters/rain-fallen/feral.svg"
  4570. }
  4571. },
  4572. },
  4573. [
  4574. {
  4575. name: "Meddling with Mortals",
  4576. height: math.unit(8 + 8/12, "feet")
  4577. },
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(5, "meter")
  4581. },
  4582. {
  4583. name: "Macro",
  4584. height: math.unit(150, "meter"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(278e6, "meter")
  4590. },
  4591. {
  4592. name: "Gigamacro",
  4593. height: math.unit(2e9, "meter")
  4594. },
  4595. {
  4596. name: "Teramacro",
  4597. height: math.unit(8e12, "meter")
  4598. },
  4599. {
  4600. name: "Devourer",
  4601. height: math.unit(14, "zettameters")
  4602. },
  4603. {
  4604. name: "Scarlet King",
  4605. height: math.unit(18, "yottameters")
  4606. },
  4607. {
  4608. name: "Void",
  4609. height: math.unit(1e88, "yottameters")
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4615. {
  4616. standing: {
  4617. height: math.unit(6, "feet"),
  4618. weight: math.unit(180, "lbs"),
  4619. name: "Standing",
  4620. image: {
  4621. source: "./media/characters/zaakira/standing.svg",
  4622. extra: 1599/1504,
  4623. bottom: 39/1638
  4624. }
  4625. },
  4626. laying: {
  4627. height: math.unit(3, "feet"),
  4628. weight: math.unit(180, "lbs"),
  4629. name: "Laying",
  4630. image: {
  4631. source: "./media/characters/zaakira/laying.svg"
  4632. }
  4633. },
  4634. },
  4635. [
  4636. {
  4637. name: "Normal",
  4638. height: math.unit(12, "feet")
  4639. },
  4640. {
  4641. name: "Macro",
  4642. height: math.unit(279, "feet"),
  4643. default: true
  4644. }
  4645. ]
  4646. ))
  4647. characterMakers.push(() => makeCharacter(
  4648. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4649. {
  4650. femSfw: {
  4651. height: math.unit(8, "feet"),
  4652. weight: math.unit(350, "lb"),
  4653. name: "Fem",
  4654. image: {
  4655. source: "./media/characters/sigvald/fem-sfw.svg",
  4656. extra: 182 / 164,
  4657. bottom: 8.7 / 190.5
  4658. }
  4659. },
  4660. femNsfw: {
  4661. height: math.unit(8, "feet"),
  4662. weight: math.unit(350, "lb"),
  4663. name: "Fem (NSFW)",
  4664. image: {
  4665. source: "./media/characters/sigvald/fem-nsfw.svg",
  4666. extra: 182 / 164,
  4667. bottom: 8.7 / 190.5
  4668. }
  4669. },
  4670. maleNsfw: {
  4671. height: math.unit(8, "feet"),
  4672. weight: math.unit(350, "lb"),
  4673. name: "Male (NSFW)",
  4674. image: {
  4675. source: "./media/characters/sigvald/male-nsfw.svg",
  4676. extra: 182 / 164,
  4677. bottom: 8.7 / 190.5
  4678. }
  4679. },
  4680. hermNsfw: {
  4681. height: math.unit(8, "feet"),
  4682. weight: math.unit(350, "lb"),
  4683. name: "Herm (NSFW)",
  4684. image: {
  4685. source: "./media/characters/sigvald/herm-nsfw.svg",
  4686. extra: 182 / 164,
  4687. bottom: 8.7 / 190.5
  4688. }
  4689. },
  4690. dick: {
  4691. height: math.unit(2.36, "feet"),
  4692. name: "Dick",
  4693. image: {
  4694. source: "./media/characters/sigvald/dick.svg"
  4695. }
  4696. },
  4697. eye: {
  4698. height: math.unit(0.31, "feet"),
  4699. name: "Eye",
  4700. image: {
  4701. source: "./media/characters/sigvald/eye.svg"
  4702. }
  4703. },
  4704. mouth: {
  4705. height: math.unit(0.92, "feet"),
  4706. name: "Mouth",
  4707. image: {
  4708. source: "./media/characters/sigvald/mouth.svg"
  4709. }
  4710. },
  4711. paws: {
  4712. height: math.unit(2.2, "feet"),
  4713. name: "Paws",
  4714. image: {
  4715. source: "./media/characters/sigvald/paws.svg"
  4716. }
  4717. }
  4718. },
  4719. [
  4720. {
  4721. name: "Normal",
  4722. height: math.unit(8, "feet")
  4723. },
  4724. {
  4725. name: "Large",
  4726. height: math.unit(12, "feet")
  4727. },
  4728. {
  4729. name: "Larger",
  4730. height: math.unit(20, "feet")
  4731. },
  4732. {
  4733. name: "Macro",
  4734. height: math.unit(150, "feet")
  4735. },
  4736. {
  4737. name: "Macro+",
  4738. height: math.unit(200, "feet"),
  4739. default: true
  4740. },
  4741. ]
  4742. ))
  4743. characterMakers.push(() => makeCharacter(
  4744. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4745. {
  4746. side: {
  4747. height: math.unit(12, "feet"),
  4748. weight: math.unit(2000, "kg"),
  4749. name: "Side",
  4750. image: {
  4751. source: "./media/characters/scott/side.svg",
  4752. extra: 754 / 724,
  4753. bottom: 0.069
  4754. }
  4755. },
  4756. upright: {
  4757. height: math.unit(12, "feet"),
  4758. weight: math.unit(2000, "kg"),
  4759. name: "Upright",
  4760. image: {
  4761. source: "./media/characters/scott/upright.svg",
  4762. extra: 3881 / 3722,
  4763. bottom: 0.05
  4764. }
  4765. },
  4766. },
  4767. [
  4768. {
  4769. name: "Normal",
  4770. height: math.unit(12, "feet"),
  4771. default: true
  4772. },
  4773. ]
  4774. ))
  4775. characterMakers.push(() => makeCharacter(
  4776. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4777. {
  4778. side: {
  4779. height: math.unit(8, "meters"),
  4780. weight: math.unit(84755, "lbs"),
  4781. name: "Side",
  4782. image: {
  4783. source: "./media/characters/tobias/side.svg",
  4784. extra: 1474 / 1096,
  4785. bottom: 38.9 / 1513.1235
  4786. }
  4787. },
  4788. },
  4789. [
  4790. {
  4791. name: "Normal",
  4792. height: math.unit(8, "meters"),
  4793. default: true
  4794. },
  4795. ]
  4796. ))
  4797. characterMakers.push(() => makeCharacter(
  4798. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4799. {
  4800. front: {
  4801. height: math.unit(5.5, "feet"),
  4802. weight: math.unit(400, "lbs"),
  4803. name: "Front",
  4804. image: {
  4805. source: "./media/characters/kieran/front.svg",
  4806. extra: 2694 / 2364,
  4807. bottom: 217 / 2908
  4808. }
  4809. },
  4810. side: {
  4811. height: math.unit(5.5, "feet"),
  4812. weight: math.unit(400, "lbs"),
  4813. name: "Side",
  4814. image: {
  4815. source: "./media/characters/kieran/side.svg",
  4816. extra: 875 / 777,
  4817. bottom: 84.6 / 959
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Normal",
  4824. height: math.unit(5.5, "feet"),
  4825. default: true
  4826. },
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4831. {
  4832. side: {
  4833. height: math.unit(2, "meters"),
  4834. weight: math.unit(70, "kg"),
  4835. name: "Side",
  4836. image: {
  4837. source: "./media/characters/sanya/side.svg",
  4838. bottom: 0.02,
  4839. extra: 1.02
  4840. }
  4841. },
  4842. },
  4843. [
  4844. {
  4845. name: "Small",
  4846. height: math.unit(2, "meters")
  4847. },
  4848. {
  4849. name: "Normal",
  4850. height: math.unit(3, "meters")
  4851. },
  4852. {
  4853. name: "Macro",
  4854. height: math.unit(16, "meters"),
  4855. default: true
  4856. },
  4857. ]
  4858. ))
  4859. characterMakers.push(() => makeCharacter(
  4860. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4861. {
  4862. front: {
  4863. height: math.unit(2, "meters"),
  4864. weight: math.unit(120, "kg"),
  4865. name: "Front",
  4866. image: {
  4867. source: "./media/characters/miranda/front.svg",
  4868. extra: 195 / 185,
  4869. bottom: 10.9 / 206.5
  4870. }
  4871. },
  4872. back: {
  4873. height: math.unit(2, "meters"),
  4874. weight: math.unit(120, "kg"),
  4875. name: "Back",
  4876. image: {
  4877. source: "./media/characters/miranda/back.svg",
  4878. extra: 201 / 193,
  4879. bottom: 2.3 / 203.7
  4880. }
  4881. },
  4882. },
  4883. [
  4884. {
  4885. name: "Normal",
  4886. height: math.unit(10, "feet"),
  4887. default: true
  4888. }
  4889. ]
  4890. ))
  4891. characterMakers.push(() => makeCharacter(
  4892. { name: "James", species: ["deer"], tags: ["anthro"] },
  4893. {
  4894. side: {
  4895. height: math.unit(2, "meters"),
  4896. weight: math.unit(100, "kg"),
  4897. name: "Front",
  4898. image: {
  4899. source: "./media/characters/james/front.svg",
  4900. extra: 10 / 8.5
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(8.5, "feet"),
  4908. default: true
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4914. {
  4915. side: {
  4916. height: math.unit(9.5, "feet"),
  4917. weight: math.unit(2500, "lbs"),
  4918. name: "Side",
  4919. image: {
  4920. source: "./media/characters/heather/side.svg"
  4921. }
  4922. },
  4923. },
  4924. [
  4925. {
  4926. name: "Normal",
  4927. height: math.unit(9.5, "feet"),
  4928. default: true
  4929. }
  4930. ]
  4931. ))
  4932. characterMakers.push(() => makeCharacter(
  4933. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4934. {
  4935. side: {
  4936. height: math.unit(6.5, "feet"),
  4937. weight: math.unit(400, "lbs"),
  4938. name: "Side",
  4939. image: {
  4940. source: "./media/characters/lukas/side.svg",
  4941. extra: 7.25 / 6.5
  4942. }
  4943. },
  4944. },
  4945. [
  4946. {
  4947. name: "Normal",
  4948. height: math.unit(6.5, "feet"),
  4949. default: true
  4950. }
  4951. ]
  4952. ))
  4953. characterMakers.push(() => makeCharacter(
  4954. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4955. {
  4956. side: {
  4957. height: math.unit(5, "feet"),
  4958. weight: math.unit(3000, "lbs"),
  4959. name: "Side",
  4960. image: {
  4961. source: "./media/characters/louise/side.svg"
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(5, "feet"),
  4969. default: true
  4970. }
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4975. {
  4976. side: {
  4977. height: math.unit(6, "feet"),
  4978. weight: math.unit(150, "lbs"),
  4979. name: "Side",
  4980. image: {
  4981. source: "./media/characters/ramona/side.svg"
  4982. }
  4983. },
  4984. },
  4985. [
  4986. {
  4987. name: "Normal",
  4988. height: math.unit(5.3, "meters"),
  4989. default: true
  4990. },
  4991. {
  4992. name: "Macro",
  4993. height: math.unit(20, "stories")
  4994. },
  4995. {
  4996. name: "Macro+",
  4997. height: math.unit(50, "stories")
  4998. },
  4999. ]
  5000. ))
  5001. characterMakers.push(() => makeCharacter(
  5002. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5003. {
  5004. standing: {
  5005. height: math.unit(5.75, "feet"),
  5006. weight: math.unit(160, "lbs"),
  5007. name: "Standing",
  5008. image: {
  5009. source: "./media/characters/deerpuff/standing.svg",
  5010. extra: 682 / 624
  5011. }
  5012. },
  5013. sitting: {
  5014. height: math.unit(5.75 / 1.79, "feet"),
  5015. weight: math.unit(160, "lbs"),
  5016. name: "Sitting",
  5017. image: {
  5018. source: "./media/characters/deerpuff/sitting.svg",
  5019. bottom: 44 / 400,
  5020. extra: 1
  5021. }
  5022. },
  5023. taurLaying: {
  5024. height: math.unit(6, "feet"),
  5025. weight: math.unit(400, "lbs"),
  5026. name: "Taur (Laying)",
  5027. image: {
  5028. source: "./media/characters/deerpuff/taur-laying.svg"
  5029. }
  5030. },
  5031. },
  5032. [
  5033. {
  5034. name: "Puffball",
  5035. height: math.unit(6, "inches")
  5036. },
  5037. {
  5038. name: "Normalpuff",
  5039. height: math.unit(5.75, "feet")
  5040. },
  5041. {
  5042. name: "Macropuff",
  5043. height: math.unit(1500, "feet"),
  5044. default: true
  5045. },
  5046. {
  5047. name: "Megapuff",
  5048. height: math.unit(500, "miles")
  5049. },
  5050. {
  5051. name: "Gigapuff",
  5052. height: math.unit(250000, "miles")
  5053. },
  5054. {
  5055. name: "Omegapuff",
  5056. height: math.unit(1000, "lightyears")
  5057. },
  5058. ]
  5059. ))
  5060. characterMakers.push(() => makeCharacter(
  5061. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5062. {
  5063. stomping: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(170, "lbs"),
  5066. name: "Stomping",
  5067. image: {
  5068. source: "./media/characters/vivian/stomping.svg"
  5069. }
  5070. },
  5071. sitting: {
  5072. height: math.unit(6 / 1.75, "feet"),
  5073. weight: math.unit(170, "lbs"),
  5074. name: "Sitting",
  5075. image: {
  5076. source: "./media/characters/vivian/sitting.svg",
  5077. bottom: 1 / 6.4,
  5078. extra: 1,
  5079. }
  5080. },
  5081. },
  5082. [
  5083. {
  5084. name: "Normal",
  5085. height: math.unit(7, "feet"),
  5086. default: true
  5087. },
  5088. {
  5089. name: "Macro",
  5090. height: math.unit(10, "stories")
  5091. },
  5092. {
  5093. name: "Macro+",
  5094. height: math.unit(30, "stories")
  5095. },
  5096. {
  5097. name: "Megamacro",
  5098. height: math.unit(10, "miles")
  5099. },
  5100. {
  5101. name: "Megamacro+",
  5102. height: math.unit(2750000, "meters")
  5103. },
  5104. ]
  5105. ))
  5106. characterMakers.push(() => makeCharacter(
  5107. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5108. {
  5109. front: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(160, "lbs"),
  5112. name: "Front",
  5113. image: {
  5114. source: "./media/characters/prince/front.svg",
  5115. extra: 3400 / 3000
  5116. }
  5117. },
  5118. jumping: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(160, "lbs"),
  5121. name: "Jumping",
  5122. image: {
  5123. source: "./media/characters/prince/jump.svg",
  5124. extra: 2555 / 2134
  5125. }
  5126. },
  5127. },
  5128. [
  5129. {
  5130. name: "Normal",
  5131. height: math.unit(7.75, "feet"),
  5132. default: true
  5133. },
  5134. {
  5135. name: "Not cute",
  5136. height: math.unit(17, "feet")
  5137. },
  5138. {
  5139. name: "I said NOT",
  5140. height: math.unit(91, "feet")
  5141. },
  5142. {
  5143. name: "Please stop",
  5144. height: math.unit(560, "feet")
  5145. },
  5146. {
  5147. name: "What have you done",
  5148. height: math.unit(2200, "feet")
  5149. },
  5150. {
  5151. name: "Deer God",
  5152. height: math.unit(3.6, "miles")
  5153. },
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5158. {
  5159. standing: {
  5160. height: math.unit(6, "feet"),
  5161. weight: math.unit(300, "lbs"),
  5162. name: "Standing",
  5163. image: {
  5164. source: "./media/characters/psymon/standing.svg",
  5165. extra: 1888 / 1810,
  5166. bottom: 0.05
  5167. }
  5168. },
  5169. slithering: {
  5170. height: math.unit(6, "feet"),
  5171. weight: math.unit(300, "lbs"),
  5172. name: "Slithering",
  5173. image: {
  5174. source: "./media/characters/psymon/slithering.svg",
  5175. extra: 1330 / 1224
  5176. }
  5177. },
  5178. slitheringAlt: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(300, "lbs"),
  5181. name: "Slithering (Alt)",
  5182. image: {
  5183. source: "./media/characters/psymon/slithering-alt.svg",
  5184. extra: 1330 / 1224
  5185. }
  5186. },
  5187. },
  5188. [
  5189. {
  5190. name: "Normal",
  5191. height: math.unit(11.25, "feet"),
  5192. default: true
  5193. },
  5194. {
  5195. name: "Large",
  5196. height: math.unit(27, "feet")
  5197. },
  5198. {
  5199. name: "Giant",
  5200. height: math.unit(87, "feet")
  5201. },
  5202. {
  5203. name: "Macro",
  5204. height: math.unit(365, "feet")
  5205. },
  5206. {
  5207. name: "Megamacro",
  5208. height: math.unit(3, "miles")
  5209. },
  5210. {
  5211. name: "World Serpent",
  5212. height: math.unit(8000, "miles")
  5213. },
  5214. ]
  5215. ))
  5216. characterMakers.push(() => makeCharacter(
  5217. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5218. {
  5219. front: {
  5220. height: math.unit(6, "feet"),
  5221. weight: math.unit(180, "lbs"),
  5222. name: "Front",
  5223. image: {
  5224. source: "./media/characters/daimos/front.svg",
  5225. extra: 4160 / 3897,
  5226. bottom: 0.021
  5227. }
  5228. }
  5229. },
  5230. [
  5231. {
  5232. name: "Normal",
  5233. height: math.unit(8, "feet"),
  5234. default: true
  5235. },
  5236. {
  5237. name: "Big Dog",
  5238. height: math.unit(22, "feet")
  5239. },
  5240. {
  5241. name: "Macro",
  5242. height: math.unit(127, "feet")
  5243. },
  5244. {
  5245. name: "Megamacro",
  5246. height: math.unit(3600, "feet")
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5252. {
  5253. side: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(180, "lbs"),
  5256. name: "Side",
  5257. image: {
  5258. source: "./media/characters/blake/side.svg",
  5259. extra: 1212 / 1120,
  5260. bottom: 0.05
  5261. }
  5262. },
  5263. crouched: {
  5264. height: math.unit(6 * 0.57, "feet"),
  5265. weight: math.unit(180, "lbs"),
  5266. name: "Crouched",
  5267. image: {
  5268. source: "./media/characters/blake/crouched.svg",
  5269. extra: 840 / 587,
  5270. bottom: 0.04
  5271. }
  5272. },
  5273. bent: {
  5274. height: math.unit(6 * 0.75, "feet"),
  5275. weight: math.unit(180, "lbs"),
  5276. name: "Bent",
  5277. image: {
  5278. source: "./media/characters/blake/bent.svg",
  5279. extra: 592 / 544,
  5280. bottom: 0.035
  5281. }
  5282. },
  5283. },
  5284. [
  5285. {
  5286. name: "Normal",
  5287. height: math.unit(8 + 1 / 6, "feet"),
  5288. default: true
  5289. },
  5290. {
  5291. name: "Big Backside",
  5292. height: math.unit(37, "feet")
  5293. },
  5294. {
  5295. name: "Subway Shredder",
  5296. height: math.unit(72, "feet")
  5297. },
  5298. {
  5299. name: "City Carver",
  5300. height: math.unit(1675, "feet")
  5301. },
  5302. {
  5303. name: "Tectonic Tweaker",
  5304. height: math.unit(2300, "miles")
  5305. },
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5310. {
  5311. front: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(180, "lbs"),
  5314. name: "Front",
  5315. image: {
  5316. source: "./media/characters/guisetto/front.svg",
  5317. extra: 856 / 817,
  5318. bottom: 0.06
  5319. }
  5320. },
  5321. airborne: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(180, "lbs"),
  5324. name: "Airborne",
  5325. image: {
  5326. source: "./media/characters/guisetto/airborne.svg",
  5327. extra: 584 / 525
  5328. }
  5329. },
  5330. },
  5331. [
  5332. {
  5333. name: "Normal",
  5334. height: math.unit(10 + 11 / 12, "feet"),
  5335. default: true
  5336. },
  5337. {
  5338. name: "Large",
  5339. height: math.unit(35, "feet")
  5340. },
  5341. {
  5342. name: "Macro",
  5343. height: math.unit(475, "feet")
  5344. },
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5349. {
  5350. front: {
  5351. height: math.unit(6, "feet"),
  5352. weight: math.unit(180, "lbs"),
  5353. name: "Front",
  5354. image: {
  5355. source: "./media/characters/luxor/front.svg",
  5356. extra: 2940 / 2152
  5357. }
  5358. },
  5359. back: {
  5360. height: math.unit(6, "feet"),
  5361. weight: math.unit(180, "lbs"),
  5362. name: "Back",
  5363. image: {
  5364. source: "./media/characters/luxor/back.svg",
  5365. extra: 1083 / 960
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(5 + 5 / 6, "feet"),
  5373. default: true
  5374. },
  5375. {
  5376. name: "Lamp",
  5377. height: math.unit(50, "feet")
  5378. },
  5379. {
  5380. name: "Lämp",
  5381. height: math.unit(300, "feet")
  5382. },
  5383. {
  5384. name: "The sun is a lamp",
  5385. height: math.unit(250000, "miles")
  5386. },
  5387. ]
  5388. ))
  5389. characterMakers.push(() => makeCharacter(
  5390. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5391. {
  5392. front: {
  5393. height: math.unit(6, "feet"),
  5394. weight: math.unit(50, "lbs"),
  5395. name: "Front",
  5396. image: {
  5397. source: "./media/characters/huoyan/front.svg"
  5398. }
  5399. },
  5400. side: {
  5401. height: math.unit(6, "feet"),
  5402. weight: math.unit(180, "lbs"),
  5403. name: "Side",
  5404. image: {
  5405. source: "./media/characters/huoyan/side.svg"
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Chef",
  5412. height: math.unit(9, "feet")
  5413. },
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(65, "feet"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "Macro",
  5421. height: math.unit(780, "feet")
  5422. },
  5423. {
  5424. name: "Flaming Mountain",
  5425. height: math.unit(4.8, "miles")
  5426. },
  5427. {
  5428. name: "Celestial",
  5429. height: math.unit(765000, "miles")
  5430. },
  5431. ]
  5432. ))
  5433. characterMakers.push(() => makeCharacter(
  5434. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5435. {
  5436. front: {
  5437. height: math.unit(5 + 3 / 4, "feet"),
  5438. weight: math.unit(120, "lbs"),
  5439. name: "Front",
  5440. image: {
  5441. source: "./media/characters/tails/front.svg"
  5442. }
  5443. }
  5444. },
  5445. [
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(5 + 3 / 4, "feet"),
  5449. default: true
  5450. }
  5451. ]
  5452. ))
  5453. characterMakers.push(() => makeCharacter(
  5454. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5455. {
  5456. front: {
  5457. height: math.unit(4, "feet"),
  5458. weight: math.unit(50, "lbs"),
  5459. name: "Front",
  5460. image: {
  5461. source: "./media/characters/rainy/front.svg"
  5462. }
  5463. }
  5464. },
  5465. [
  5466. {
  5467. name: "Macro",
  5468. height: math.unit(800, "feet"),
  5469. default: true
  5470. }
  5471. ]
  5472. ))
  5473. characterMakers.push(() => makeCharacter(
  5474. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5475. {
  5476. front: {
  5477. height: math.unit(6, "feet"),
  5478. weight: math.unit(150, "lbs"),
  5479. name: "Front",
  5480. image: {
  5481. source: "./media/characters/rainier/front.svg"
  5482. }
  5483. }
  5484. },
  5485. [
  5486. {
  5487. name: "Micro",
  5488. height: math.unit(2, "mm"),
  5489. default: true
  5490. }
  5491. ]
  5492. ))
  5493. characterMakers.push(() => makeCharacter(
  5494. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5495. {
  5496. front: {
  5497. height: math.unit(8 + 4/12, "feet"),
  5498. name: "Front",
  5499. image: {
  5500. source: "./media/characters/andy-renard/front.svg",
  5501. extra: 1839/1726,
  5502. bottom: 134/1973
  5503. }
  5504. },
  5505. back: {
  5506. height: math.unit(8 + 4/12, "feet"),
  5507. name: "Back",
  5508. image: {
  5509. source: "./media/characters/andy-renard/back.svg",
  5510. extra: 1838/1710,
  5511. bottom: 105/1943
  5512. }
  5513. },
  5514. },
  5515. [
  5516. {
  5517. name: "Tall",
  5518. height: math.unit(8 + 4/12, "feet")
  5519. },
  5520. {
  5521. name: "Mini Macro",
  5522. height: math.unit(15, "feet"),
  5523. default: true
  5524. },
  5525. {
  5526. name: "Macro",
  5527. height: math.unit(100, "feet")
  5528. },
  5529. {
  5530. name: "Mega Macro",
  5531. height: math.unit(1000, "feet")
  5532. },
  5533. {
  5534. name: "Giga Macro",
  5535. height: math.unit(10, "miles")
  5536. },
  5537. {
  5538. name: "God Macro",
  5539. height: math.unit(1, "multiverse")
  5540. },
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(210, "lbs"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/cimmaron/front-sfw.svg",
  5552. extra: 701 / 676,
  5553. bottom: 0.046
  5554. }
  5555. },
  5556. back: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(210, "lbs"),
  5559. name: "Back",
  5560. image: {
  5561. source: "./media/characters/cimmaron/back-sfw.svg",
  5562. extra: 701 / 676,
  5563. bottom: 0.046
  5564. }
  5565. },
  5566. frontNsfw: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(210, "lbs"),
  5569. name: "Front (NSFW)",
  5570. image: {
  5571. source: "./media/characters/cimmaron/front-nsfw.svg",
  5572. extra: 701 / 676,
  5573. bottom: 0.046
  5574. }
  5575. },
  5576. backNsfw: {
  5577. height: math.unit(6, "feet"),
  5578. weight: math.unit(210, "lbs"),
  5579. name: "Back (NSFW)",
  5580. image: {
  5581. source: "./media/characters/cimmaron/back-nsfw.svg",
  5582. extra: 701 / 676,
  5583. bottom: 0.046
  5584. }
  5585. },
  5586. dick: {
  5587. height: math.unit(1.714, "feet"),
  5588. name: "Dick",
  5589. image: {
  5590. source: "./media/characters/cimmaron/dick.svg"
  5591. }
  5592. },
  5593. },
  5594. [
  5595. {
  5596. name: "Normal",
  5597. height: math.unit(6, "feet"),
  5598. default: true
  5599. },
  5600. {
  5601. name: "Macro Mayor",
  5602. height: math.unit(350, "meters")
  5603. },
  5604. ]
  5605. ))
  5606. characterMakers.push(() => makeCharacter(
  5607. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5608. {
  5609. front: {
  5610. height: math.unit(6, "feet"),
  5611. weight: math.unit(200, "lbs"),
  5612. name: "Front",
  5613. image: {
  5614. source: "./media/characters/akari/front.svg",
  5615. extra: 962 / 901,
  5616. bottom: 0.04
  5617. }
  5618. }
  5619. },
  5620. [
  5621. {
  5622. name: "Micro",
  5623. height: math.unit(5, "inches"),
  5624. default: true
  5625. },
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(7, "feet")
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5634. {
  5635. front: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(140, "lbs"),
  5638. name: "Front",
  5639. image: {
  5640. source: "./media/characters/cynosura/front.svg",
  5641. extra: 896 / 847
  5642. }
  5643. },
  5644. back: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(140, "lbs"),
  5647. name: "Back",
  5648. image: {
  5649. source: "./media/characters/cynosura/back.svg",
  5650. extra: 1365 / 1250
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Micro",
  5657. height: math.unit(4, "inches")
  5658. },
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(5.75, "feet"),
  5662. default: true
  5663. },
  5664. {
  5665. name: "Tall",
  5666. height: math.unit(10, "feet")
  5667. },
  5668. {
  5669. name: "Big",
  5670. height: math.unit(20, "feet")
  5671. },
  5672. {
  5673. name: "Macro",
  5674. height: math.unit(50, "feet")
  5675. },
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(13 + 2/12, "feet"),
  5683. weight: math.unit(800, "kg"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/gin/front.svg",
  5687. extra: 1312/1191,
  5688. bottom: 45/1357
  5689. }
  5690. },
  5691. mouth: {
  5692. height: math.unit(2.39 * 1.8, "feet"),
  5693. name: "Mouth",
  5694. image: {
  5695. source: "./media/characters/gin/mouth.svg"
  5696. }
  5697. },
  5698. hand: {
  5699. height: math.unit(1.57 * 2.19, "feet"),
  5700. name: "Hand",
  5701. image: {
  5702. source: "./media/characters/gin/hand.svg"
  5703. }
  5704. },
  5705. foot: {
  5706. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5707. name: "Foot",
  5708. image: {
  5709. source: "./media/characters/gin/foot.svg"
  5710. }
  5711. },
  5712. sole: {
  5713. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5714. name: "Sole",
  5715. image: {
  5716. source: "./media/characters/gin/sole.svg"
  5717. }
  5718. },
  5719. },
  5720. [
  5721. {
  5722. name: "Very Small",
  5723. height: math.unit(13 + 2 / 12, "feet")
  5724. },
  5725. {
  5726. name: "Micro",
  5727. height: math.unit(600, "miles")
  5728. },
  5729. {
  5730. name: "Regular",
  5731. height: math.unit(20, "earths"),
  5732. default: true
  5733. },
  5734. {
  5735. name: "Macro",
  5736. height: math.unit(2.2, "solarradii")
  5737. },
  5738. {
  5739. name: "Teramacro",
  5740. height: math.unit(1.2, "galaxies")
  5741. },
  5742. {
  5743. name: "Omegamacro",
  5744. height: math.unit(200, "universes")
  5745. },
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5750. {
  5751. front: {
  5752. height: math.unit(6 + 1 / 6, "feet"),
  5753. weight: math.unit(178, "lbs"),
  5754. name: "Front",
  5755. image: {
  5756. source: "./media/characters/guy/front.svg"
  5757. }
  5758. }
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(6 + 1 / 6, "feet"),
  5764. default: true
  5765. },
  5766. {
  5767. name: "Large",
  5768. height: math.unit(25 + 7 / 12, "feet")
  5769. },
  5770. {
  5771. name: "Macro",
  5772. height: math.unit(60 + 9 / 12, "feet")
  5773. },
  5774. {
  5775. name: "Macro+",
  5776. height: math.unit(246, "feet")
  5777. },
  5778. {
  5779. name: "Macro++",
  5780. height: math.unit(878, "feet")
  5781. }
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5786. {
  5787. front: {
  5788. height: math.unit(9, "feet"),
  5789. weight: math.unit(800, "lbs"),
  5790. name: "Front",
  5791. image: {
  5792. source: "./media/characters/tiberius/front.svg",
  5793. extra: 2295 / 2071
  5794. }
  5795. },
  5796. back: {
  5797. height: math.unit(9, "feet"),
  5798. weight: math.unit(800, "lbs"),
  5799. name: "Back",
  5800. image: {
  5801. source: "./media/characters/tiberius/back.svg",
  5802. extra: 2373 / 2160
  5803. }
  5804. },
  5805. },
  5806. [
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(9, "feet"),
  5810. default: true
  5811. }
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5816. {
  5817. front: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(600, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/surgo/front.svg",
  5823. extra: 3591 / 2227
  5824. }
  5825. },
  5826. back: {
  5827. height: math.unit(6, "feet"),
  5828. weight: math.unit(600, "lbs"),
  5829. name: "Back",
  5830. image: {
  5831. source: "./media/characters/surgo/back.svg",
  5832. extra: 3557 / 2228
  5833. }
  5834. },
  5835. laying: {
  5836. height: math.unit(6 * 0.85, "feet"),
  5837. weight: math.unit(600, "lbs"),
  5838. name: "Laying",
  5839. image: {
  5840. source: "./media/characters/surgo/laying.svg"
  5841. }
  5842. },
  5843. },
  5844. [
  5845. {
  5846. name: "Normal",
  5847. height: math.unit(6, "feet"),
  5848. default: true
  5849. }
  5850. ]
  5851. ))
  5852. characterMakers.push(() => makeCharacter(
  5853. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5854. {
  5855. side: {
  5856. height: math.unit(6, "feet"),
  5857. weight: math.unit(150, "lbs"),
  5858. name: "Side",
  5859. image: {
  5860. source: "./media/characters/cibus/side.svg",
  5861. extra: 800 / 400
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Normal",
  5868. height: math.unit(6, "feet"),
  5869. default: true
  5870. }
  5871. ]
  5872. ))
  5873. characterMakers.push(() => makeCharacter(
  5874. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5875. {
  5876. front: {
  5877. height: math.unit(6, "feet"),
  5878. weight: math.unit(240, "lbs"),
  5879. name: "Front",
  5880. image: {
  5881. source: "./media/characters/nibbles/front.svg"
  5882. }
  5883. },
  5884. side: {
  5885. height: math.unit(6, "feet"),
  5886. weight: math.unit(240, "lbs"),
  5887. name: "Side",
  5888. image: {
  5889. source: "./media/characters/nibbles/side.svg"
  5890. }
  5891. },
  5892. },
  5893. [
  5894. {
  5895. name: "Normal",
  5896. height: math.unit(9, "feet"),
  5897. default: true
  5898. }
  5899. ]
  5900. ))
  5901. characterMakers.push(() => makeCharacter(
  5902. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5903. {
  5904. side: {
  5905. height: math.unit(5 + 1 / 6, "feet"),
  5906. weight: math.unit(130, "lbs"),
  5907. name: "Side",
  5908. image: {
  5909. source: "./media/characters/rikky/side.svg",
  5910. extra: 851 / 801
  5911. }
  5912. },
  5913. },
  5914. [
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(5 + 1 / 6, "feet")
  5918. },
  5919. {
  5920. name: "Macro",
  5921. height: math.unit(152, "feet"),
  5922. default: true
  5923. },
  5924. {
  5925. name: "Megamacro",
  5926. height: math.unit(7, "miles")
  5927. }
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5932. {
  5933. side: {
  5934. height: math.unit(370, "cm"),
  5935. weight: math.unit(350, "lbs"),
  5936. name: "Side",
  5937. image: {
  5938. source: "./media/characters/malfressa/side.svg"
  5939. }
  5940. },
  5941. walking: {
  5942. height: math.unit(370, "cm"),
  5943. weight: math.unit(350, "lbs"),
  5944. name: "Walking",
  5945. image: {
  5946. source: "./media/characters/malfressa/walking.svg"
  5947. }
  5948. },
  5949. feral: {
  5950. height: math.unit(2500, "cm"),
  5951. weight: math.unit(100000, "lbs"),
  5952. name: "Feral",
  5953. image: {
  5954. source: "./media/characters/malfressa/feral.svg",
  5955. extra: 2108 / 837,
  5956. bottom: 0.02
  5957. }
  5958. },
  5959. },
  5960. [
  5961. {
  5962. name: "Normal",
  5963. height: math.unit(370, "cm")
  5964. },
  5965. {
  5966. name: "Macro",
  5967. height: math.unit(300, "meters"),
  5968. default: true
  5969. }
  5970. ]
  5971. ))
  5972. characterMakers.push(() => makeCharacter(
  5973. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5974. {
  5975. front: {
  5976. height: math.unit(6, "feet"),
  5977. weight: math.unit(60, "kg"),
  5978. name: "Front",
  5979. image: {
  5980. source: "./media/characters/jaro/front.svg"
  5981. }
  5982. },
  5983. back: {
  5984. height: math.unit(6, "feet"),
  5985. weight: math.unit(60, "kg"),
  5986. name: "Back",
  5987. image: {
  5988. source: "./media/characters/jaro/back.svg"
  5989. }
  5990. },
  5991. },
  5992. [
  5993. {
  5994. name: "Micro",
  5995. height: math.unit(7, "inches")
  5996. },
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(5.5, "feet"),
  6000. default: true
  6001. },
  6002. {
  6003. name: "Minimacro",
  6004. height: math.unit(20, "feet")
  6005. },
  6006. {
  6007. name: "Macro",
  6008. height: math.unit(200, "meters")
  6009. }
  6010. ]
  6011. ))
  6012. characterMakers.push(() => makeCharacter(
  6013. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6014. {
  6015. front: {
  6016. height: math.unit(6, "feet"),
  6017. weight: math.unit(195, "lb"),
  6018. name: "Front",
  6019. image: {
  6020. source: "./media/characters/rogue/front.svg"
  6021. }
  6022. },
  6023. },
  6024. [
  6025. {
  6026. name: "Macro",
  6027. height: math.unit(90, "feet"),
  6028. default: true
  6029. },
  6030. ]
  6031. ))
  6032. characterMakers.push(() => makeCharacter(
  6033. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6034. {
  6035. front: {
  6036. height: math.unit(5 + 8 / 12, "feet"),
  6037. weight: math.unit(140, "lb"),
  6038. name: "Front",
  6039. image: {
  6040. source: "./media/characters/piper/front.svg",
  6041. extra: 3948/3655,
  6042. bottom: 0/3948
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Micro",
  6049. height: math.unit(2, "inches")
  6050. },
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(5 + 8 / 12, "feet")
  6054. },
  6055. {
  6056. name: "Macro",
  6057. height: math.unit(250, "feet"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Megamacro",
  6062. height: math.unit(7, "miles")
  6063. },
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(6, "feet"),
  6071. weight: math.unit(220, "lb"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/gemini/front.svg"
  6075. }
  6076. },
  6077. back: {
  6078. height: math.unit(6, "feet"),
  6079. weight: math.unit(220, "lb"),
  6080. name: "Back",
  6081. image: {
  6082. source: "./media/characters/gemini/back.svg"
  6083. }
  6084. },
  6085. kneeling: {
  6086. height: math.unit(6 / 1.5, "feet"),
  6087. weight: math.unit(220, "lb"),
  6088. name: "Kneeling",
  6089. image: {
  6090. source: "./media/characters/gemini/kneeling.svg",
  6091. bottom: 0.02
  6092. }
  6093. },
  6094. },
  6095. [
  6096. {
  6097. name: "Macro",
  6098. height: math.unit(300, "meters"),
  6099. default: true
  6100. },
  6101. {
  6102. name: "Megamacro",
  6103. height: math.unit(6900, "meters")
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6109. {
  6110. anthro: {
  6111. height: math.unit(2.35, "meters"),
  6112. weight: math.unit(73, "kg"),
  6113. name: "Anthro",
  6114. image: {
  6115. source: "./media/characters/alicia/anthro.svg",
  6116. extra: 2571 / 2385,
  6117. bottom: 75 / 2648
  6118. }
  6119. },
  6120. paw: {
  6121. height: math.unit(1.32, "feet"),
  6122. name: "Paw",
  6123. image: {
  6124. source: "./media/characters/alicia/paw.svg"
  6125. }
  6126. },
  6127. feral: {
  6128. height: math.unit(1.69, "meters"),
  6129. weight: math.unit(73, "kg"),
  6130. name: "Feral",
  6131. image: {
  6132. source: "./media/characters/alicia/feral.svg",
  6133. extra: 2123 / 1715,
  6134. bottom: 222 / 2349
  6135. }
  6136. },
  6137. },
  6138. [
  6139. {
  6140. name: "Normal",
  6141. height: math.unit(2.35, "meters")
  6142. },
  6143. {
  6144. name: "Macro",
  6145. height: math.unit(60, "meters"),
  6146. default: true
  6147. },
  6148. {
  6149. name: "Megamacro",
  6150. height: math.unit(10000, "kilometers")
  6151. },
  6152. ]
  6153. ))
  6154. characterMakers.push(() => makeCharacter(
  6155. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6156. {
  6157. front: {
  6158. height: math.unit(7, "feet"),
  6159. weight: math.unit(250, "lbs"),
  6160. name: "Front",
  6161. image: {
  6162. source: "./media/characters/archy/front.svg"
  6163. }
  6164. }
  6165. },
  6166. [
  6167. {
  6168. name: "Micro",
  6169. height: math.unit(1, "inch")
  6170. },
  6171. {
  6172. name: "Shorty",
  6173. height: math.unit(5, "feet")
  6174. },
  6175. {
  6176. name: "Normal",
  6177. height: math.unit(7, "feet")
  6178. },
  6179. {
  6180. name: "Macro",
  6181. height: math.unit(600, "meters"),
  6182. default: true
  6183. },
  6184. {
  6185. name: "Megamacro",
  6186. height: math.unit(1, "mile")
  6187. },
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6192. {
  6193. front: {
  6194. height: math.unit(1.65, "meters"),
  6195. weight: math.unit(74, "kg"),
  6196. name: "Front",
  6197. image: {
  6198. source: "./media/characters/berri/front.svg",
  6199. extra: 857 / 837,
  6200. bottom: 18 / 877
  6201. }
  6202. },
  6203. bum: {
  6204. height: math.unit(1.46, "feet"),
  6205. name: "Bum",
  6206. image: {
  6207. source: "./media/characters/berri/bum.svg"
  6208. }
  6209. },
  6210. mouth: {
  6211. height: math.unit(0.44, "feet"),
  6212. name: "Mouth",
  6213. image: {
  6214. source: "./media/characters/berri/mouth.svg"
  6215. }
  6216. },
  6217. paw: {
  6218. height: math.unit(0.826, "feet"),
  6219. name: "Paw",
  6220. image: {
  6221. source: "./media/characters/berri/paw.svg"
  6222. }
  6223. },
  6224. },
  6225. [
  6226. {
  6227. name: "Normal",
  6228. height: math.unit(1.65, "meters")
  6229. },
  6230. {
  6231. name: "Macro",
  6232. height: math.unit(60, "m"),
  6233. default: true
  6234. },
  6235. {
  6236. name: "Megamacro",
  6237. height: math.unit(9.213, "km")
  6238. },
  6239. {
  6240. name: "Planet Eater",
  6241. height: math.unit(489, "megameters")
  6242. },
  6243. {
  6244. name: "Teramacro",
  6245. height: math.unit(2471635000000, "meters")
  6246. },
  6247. {
  6248. name: "Examacro",
  6249. height: math.unit(8.0624e+26, "meters")
  6250. }
  6251. ]
  6252. ))
  6253. characterMakers.push(() => makeCharacter(
  6254. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6255. {
  6256. front: {
  6257. height: math.unit(1.72, "meters"),
  6258. weight: math.unit(68, "kg"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/lexi/front.svg"
  6262. }
  6263. }
  6264. },
  6265. [
  6266. {
  6267. name: "Very Smol",
  6268. height: math.unit(10, "mm")
  6269. },
  6270. {
  6271. name: "Micro",
  6272. height: math.unit(6.8, "cm"),
  6273. default: true
  6274. },
  6275. {
  6276. name: "Normal",
  6277. height: math.unit(1.72, "m")
  6278. }
  6279. ]
  6280. ))
  6281. characterMakers.push(() => makeCharacter(
  6282. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6283. {
  6284. front: {
  6285. height: math.unit(1.69, "meters"),
  6286. weight: math.unit(68, "kg"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/martin/front.svg",
  6290. extra: 596 / 581
  6291. }
  6292. }
  6293. },
  6294. [
  6295. {
  6296. name: "Micro",
  6297. height: math.unit(6.85, "cm"),
  6298. default: true
  6299. },
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(1.69, "m")
  6303. }
  6304. ]
  6305. ))
  6306. characterMakers.push(() => makeCharacter(
  6307. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6308. {
  6309. front: {
  6310. height: math.unit(1.69, "meters"),
  6311. weight: math.unit(68, "kg"),
  6312. name: "Front",
  6313. image: {
  6314. source: "./media/characters/juno/front.svg"
  6315. }
  6316. }
  6317. },
  6318. [
  6319. {
  6320. name: "Micro",
  6321. height: math.unit(7, "cm")
  6322. },
  6323. {
  6324. name: "Normal",
  6325. height: math.unit(1.89, "m")
  6326. },
  6327. {
  6328. name: "Macro",
  6329. height: math.unit(353, "meters"),
  6330. default: true
  6331. }
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(1.93, "meters"),
  6339. weight: math.unit(83, "kg"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/samantha/front.svg"
  6343. }
  6344. },
  6345. frontClothed: {
  6346. height: math.unit(1.93, "meters"),
  6347. weight: math.unit(83, "kg"),
  6348. name: "Front (Clothed)",
  6349. image: {
  6350. source: "./media/characters/samantha/front-clothed.svg"
  6351. }
  6352. },
  6353. back: {
  6354. height: math.unit(1.93, "meters"),
  6355. weight: math.unit(83, "kg"),
  6356. name: "Back",
  6357. image: {
  6358. source: "./media/characters/samantha/back.svg"
  6359. }
  6360. },
  6361. },
  6362. [
  6363. {
  6364. name: "Normal",
  6365. height: math.unit(1.93, "m")
  6366. },
  6367. {
  6368. name: "Macro",
  6369. height: math.unit(74, "meters"),
  6370. default: true
  6371. },
  6372. {
  6373. name: "Macro+",
  6374. height: math.unit(223, "meters"),
  6375. },
  6376. {
  6377. name: "Megamacro",
  6378. height: math.unit(8381, "meters"),
  6379. },
  6380. {
  6381. name: "Megamacro+",
  6382. height: math.unit(12000, "kilometers")
  6383. },
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6388. {
  6389. front: {
  6390. height: math.unit(1.92, "meters"),
  6391. weight: math.unit(80, "kg"),
  6392. name: "Front",
  6393. image: {
  6394. source: "./media/characters/dr-clay/front.svg"
  6395. }
  6396. },
  6397. frontClothed: {
  6398. height: math.unit(1.92, "meters"),
  6399. weight: math.unit(80, "kg"),
  6400. name: "Front (Clothed)",
  6401. image: {
  6402. source: "./media/characters/dr-clay/front-clothed.svg"
  6403. }
  6404. }
  6405. },
  6406. [
  6407. {
  6408. name: "Normal",
  6409. height: math.unit(1.92, "m")
  6410. },
  6411. {
  6412. name: "Macro",
  6413. height: math.unit(214, "meters"),
  6414. default: true
  6415. },
  6416. {
  6417. name: "Macro+",
  6418. height: math.unit(12.237, "meters"),
  6419. },
  6420. {
  6421. name: "Megamacro",
  6422. height: math.unit(557, "megameters"),
  6423. },
  6424. {
  6425. name: "Unimaginable",
  6426. height: math.unit(120e9, "lightyears")
  6427. },
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(2, "meters"),
  6435. weight: math.unit(80, "kg"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6439. }
  6440. }
  6441. },
  6442. [
  6443. {
  6444. name: "Teramacro",
  6445. height: math.unit(500000, "lightyears"),
  6446. default: true
  6447. },
  6448. ]
  6449. ))
  6450. characterMakers.push(() => makeCharacter(
  6451. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6452. {
  6453. front: {
  6454. height: math.unit(2, "meters"),
  6455. weight: math.unit(150, "kg"),
  6456. name: "Front",
  6457. image: {
  6458. source: "./media/characters/vemus/front.svg",
  6459. extra: 1074/936,
  6460. bottom: 23/1097
  6461. }
  6462. }
  6463. },
  6464. [
  6465. {
  6466. name: "Normal",
  6467. height: math.unit(3.75, "meters"),
  6468. default: true
  6469. },
  6470. {
  6471. name: "Big",
  6472. height: math.unit(8, "meters")
  6473. },
  6474. {
  6475. name: "Macro",
  6476. height: math.unit(100, "meters")
  6477. },
  6478. {
  6479. name: "Macro+",
  6480. height: math.unit(1500, "meters")
  6481. },
  6482. {
  6483. name: "Stellar",
  6484. height: math.unit(14e8, "meters")
  6485. },
  6486. ]
  6487. ))
  6488. characterMakers.push(() => makeCharacter(
  6489. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6490. {
  6491. front: {
  6492. height: math.unit(2, "meters"),
  6493. weight: math.unit(70, "kg"),
  6494. name: "Front",
  6495. image: {
  6496. source: "./media/characters/beherit/front.svg",
  6497. extra: 1408 / 1242
  6498. }
  6499. }
  6500. },
  6501. [
  6502. {
  6503. name: "Normal",
  6504. height: math.unit(6, "feet")
  6505. },
  6506. {
  6507. name: "Lorg",
  6508. height: math.unit(25, "feet"),
  6509. default: true
  6510. },
  6511. {
  6512. name: "Lorger",
  6513. height: math.unit(75, "feet")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(200, "meters")
  6518. },
  6519. ]
  6520. ))
  6521. characterMakers.push(() => makeCharacter(
  6522. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6523. {
  6524. front: {
  6525. height: math.unit(2, "meters"),
  6526. weight: math.unit(150, "kg"),
  6527. name: "Front",
  6528. image: {
  6529. source: "./media/characters/everett/front.svg",
  6530. extra: 2038 / 1737,
  6531. bottom: 0.03
  6532. }
  6533. },
  6534. paw: {
  6535. height: math.unit(2 / 3.6, "meters"),
  6536. name: "Paw",
  6537. image: {
  6538. source: "./media/characters/everett/paw.svg"
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(15, "feet"),
  6546. default: true
  6547. },
  6548. {
  6549. name: "Lorg",
  6550. height: math.unit(70, "feet"),
  6551. default: true
  6552. },
  6553. {
  6554. name: "Lorger",
  6555. height: math.unit(250, "feet")
  6556. },
  6557. {
  6558. name: "Macro",
  6559. height: math.unit(500, "meters")
  6560. },
  6561. ]
  6562. ))
  6563. characterMakers.push(() => makeCharacter(
  6564. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6565. {
  6566. front: {
  6567. height: math.unit(2, "meters"),
  6568. weight: math.unit(86, "kg"),
  6569. name: "Front",
  6570. image: {
  6571. source: "./media/characters/rose/front.svg",
  6572. extra: 1785/1636,
  6573. bottom: 30/1815
  6574. }
  6575. },
  6576. frontSporty: {
  6577. height: math.unit(2, "meters"),
  6578. weight: math.unit(86, "kg"),
  6579. name: "Front (Sporty)",
  6580. image: {
  6581. source: "./media/characters/rose/front-sporty.svg",
  6582. extra: 350/335,
  6583. bottom: 10/360
  6584. }
  6585. },
  6586. frontAlt: {
  6587. height: math.unit(1.6, "meters"),
  6588. weight: math.unit(86, "kg"),
  6589. name: "Front (Alt)",
  6590. image: {
  6591. source: "./media/characters/rose/front-alt.svg",
  6592. extra: 299/283,
  6593. bottom: 3/302
  6594. }
  6595. },
  6596. plush: {
  6597. height: math.unit(2, "meters"),
  6598. weight: math.unit(86/3, "kg"),
  6599. name: "Plush",
  6600. image: {
  6601. source: "./media/characters/rose/plush.svg",
  6602. extra: 361/337,
  6603. bottom: 11/372
  6604. }
  6605. },
  6606. },
  6607. [
  6608. {
  6609. name: "True Micro",
  6610. height: math.unit(9, "cm")
  6611. },
  6612. {
  6613. name: "Micro",
  6614. height: math.unit(16, "cm")
  6615. },
  6616. {
  6617. name: "Normal",
  6618. height: math.unit(1.85, "meters"),
  6619. default: true
  6620. },
  6621. {
  6622. name: "Mini-Macro",
  6623. height: math.unit(5, "meters")
  6624. },
  6625. {
  6626. name: "Macro",
  6627. height: math.unit(15, "meters")
  6628. },
  6629. {
  6630. name: "True Macro",
  6631. height: math.unit(40, "meters")
  6632. },
  6633. {
  6634. name: "City Scale",
  6635. height: math.unit(1, "km")
  6636. },
  6637. ]
  6638. ))
  6639. characterMakers.push(() => makeCharacter(
  6640. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6641. {
  6642. front: {
  6643. height: math.unit(2, "meters"),
  6644. weight: math.unit(350, "lbs"),
  6645. name: "Front",
  6646. image: {
  6647. source: "./media/characters/regal/front.svg"
  6648. }
  6649. },
  6650. back: {
  6651. height: math.unit(2, "meters"),
  6652. weight: math.unit(350, "lbs"),
  6653. name: "Back",
  6654. image: {
  6655. source: "./media/characters/regal/back.svg"
  6656. }
  6657. },
  6658. },
  6659. [
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(350, "feet"),
  6663. default: true
  6664. }
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(4 + 11 / 12, "feet"),
  6672. weight: math.unit(100, "lbs"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/opal/front.svg"
  6676. }
  6677. },
  6678. frontAlt: {
  6679. height: math.unit(4 + 11 / 12, "feet"),
  6680. weight: math.unit(100, "lbs"),
  6681. name: "Front (Alt)",
  6682. image: {
  6683. source: "./media/characters/opal/front-alt.svg"
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Small",
  6690. height: math.unit(4 + 11 / 12, "feet")
  6691. },
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(20, "feet"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Macro",
  6699. height: math.unit(120, "feet")
  6700. },
  6701. {
  6702. name: "Megamacro",
  6703. height: math.unit(80, "miles")
  6704. },
  6705. {
  6706. name: "True Size",
  6707. height: math.unit(100000, "lightyears")
  6708. },
  6709. ]
  6710. ))
  6711. characterMakers.push(() => makeCharacter(
  6712. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6713. {
  6714. front: {
  6715. height: math.unit(6, "feet"),
  6716. weight: math.unit(200, "lbs"),
  6717. name: "Front",
  6718. image: {
  6719. source: "./media/characters/vector-wuff/front.svg"
  6720. }
  6721. }
  6722. },
  6723. [
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(2.8, "meters")
  6727. },
  6728. {
  6729. name: "Macro",
  6730. height: math.unit(450, "meters"),
  6731. default: true
  6732. },
  6733. {
  6734. name: "Megamacro",
  6735. height: math.unit(15, "kilometers")
  6736. }
  6737. ]
  6738. ))
  6739. characterMakers.push(() => makeCharacter(
  6740. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6741. {
  6742. front: {
  6743. height: math.unit(6, "feet"),
  6744. weight: math.unit(256, "lbs"),
  6745. name: "Front",
  6746. image: {
  6747. source: "./media/characters/dannik/front.svg"
  6748. }
  6749. }
  6750. },
  6751. [
  6752. {
  6753. name: "Macro",
  6754. height: math.unit(69.57, "meters"),
  6755. default: true
  6756. },
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(6, "feet"),
  6764. weight: math.unit(120, "lbs"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/azura-saharah/front.svg"
  6768. }
  6769. },
  6770. back: {
  6771. height: math.unit(6, "feet"),
  6772. weight: math.unit(120, "lbs"),
  6773. name: "Back",
  6774. image: {
  6775. source: "./media/characters/azura-saharah/back.svg"
  6776. }
  6777. },
  6778. },
  6779. [
  6780. {
  6781. name: "Macro",
  6782. height: math.unit(100, "feet"),
  6783. default: true
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6789. {
  6790. side: {
  6791. height: math.unit(5 + 4 / 12, "feet"),
  6792. weight: math.unit(163, "lbs"),
  6793. name: "Side",
  6794. image: {
  6795. source: "./media/characters/kennedy/side.svg"
  6796. }
  6797. }
  6798. },
  6799. [
  6800. {
  6801. name: "Standard Doggo",
  6802. height: math.unit(5 + 4 / 12, "feet")
  6803. },
  6804. {
  6805. name: "Big Doggo",
  6806. height: math.unit(25 + 3 / 12, "feet"),
  6807. default: true
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6813. {
  6814. front: {
  6815. height: math.unit(6, "feet"),
  6816. weight: math.unit(90, "lbs"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/odi-lunar/front.svg"
  6820. }
  6821. }
  6822. },
  6823. [
  6824. {
  6825. name: "Micro",
  6826. height: math.unit(3, "inches"),
  6827. default: true
  6828. },
  6829. {
  6830. name: "Normal",
  6831. height: math.unit(5.5, "feet")
  6832. }
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6837. {
  6838. back: {
  6839. height: math.unit(6, "feet"),
  6840. weight: math.unit(220, "lbs"),
  6841. name: "Back",
  6842. image: {
  6843. source: "./media/characters/mandake/back.svg"
  6844. }
  6845. }
  6846. },
  6847. [
  6848. {
  6849. name: "Normal",
  6850. height: math.unit(7, "feet"),
  6851. default: true
  6852. },
  6853. {
  6854. name: "Macro",
  6855. height: math.unit(78, "feet")
  6856. },
  6857. {
  6858. name: "Macro+",
  6859. height: math.unit(300, "meters")
  6860. },
  6861. {
  6862. name: "Macro++",
  6863. height: math.unit(2400, "feet")
  6864. },
  6865. {
  6866. name: "Megamacro",
  6867. height: math.unit(5167, "meters")
  6868. },
  6869. {
  6870. name: "Gigamacro",
  6871. height: math.unit(41769, "miles")
  6872. },
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6877. {
  6878. front: {
  6879. height: math.unit(6, "feet"),
  6880. weight: math.unit(120, "lbs"),
  6881. name: "Front",
  6882. image: {
  6883. source: "./media/characters/yozey/front.svg"
  6884. }
  6885. },
  6886. frontAlt: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(120, "lbs"),
  6889. name: "Front (Alt)",
  6890. image: {
  6891. source: "./media/characters/yozey/front-alt.svg"
  6892. }
  6893. },
  6894. side: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(120, "lbs"),
  6897. name: "Side",
  6898. image: {
  6899. source: "./media/characters/yozey/side.svg"
  6900. }
  6901. },
  6902. },
  6903. [
  6904. {
  6905. name: "Micro",
  6906. height: math.unit(3, "inches"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Normal",
  6911. height: math.unit(6, "feet")
  6912. }
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6917. {
  6918. front: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(103, "lbs"),
  6921. name: "Front",
  6922. image: {
  6923. source: "./media/characters/valeska-voss/front.svg"
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Mini-Sized Sub",
  6930. height: math.unit(3.1, "inches")
  6931. },
  6932. {
  6933. name: "Mid-Sized Sub",
  6934. height: math.unit(6.2, "inches")
  6935. },
  6936. {
  6937. name: "Full-Sized Sub",
  6938. height: math.unit(9.3, "inches")
  6939. },
  6940. {
  6941. name: "Normal",
  6942. height: math.unit(5 + 2 / 12, "foot"),
  6943. default: true
  6944. },
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(6, "feet"),
  6952. weight: math.unit(160, "lbs"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/gene-zeta/front.svg",
  6956. extra: 3006 / 2826,
  6957. bottom: 182 / 3188
  6958. }
  6959. }
  6960. },
  6961. [
  6962. {
  6963. name: "Micro",
  6964. height: math.unit(6, "inches")
  6965. },
  6966. {
  6967. name: "Normal",
  6968. height: math.unit(5 + 11 / 12, "foot"),
  6969. default: true
  6970. },
  6971. {
  6972. name: "Macro",
  6973. height: math.unit(140, "feet")
  6974. },
  6975. {
  6976. name: "Supercharged",
  6977. height: math.unit(2500, "feet")
  6978. },
  6979. ]
  6980. ))
  6981. characterMakers.push(() => makeCharacter(
  6982. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6983. {
  6984. front: {
  6985. height: math.unit(6, "feet"),
  6986. weight: math.unit(350, "lbs"),
  6987. name: "Front",
  6988. image: {
  6989. source: "./media/characters/razinox/front.svg",
  6990. extra: 1686 / 1548,
  6991. bottom: 28.2 / 1868
  6992. }
  6993. },
  6994. back: {
  6995. height: math.unit(6, "feet"),
  6996. weight: math.unit(350, "lbs"),
  6997. name: "Back",
  6998. image: {
  6999. source: "./media/characters/razinox/back.svg",
  7000. extra: 1660 / 1590,
  7001. bottom: 15 / 1665
  7002. }
  7003. },
  7004. },
  7005. [
  7006. {
  7007. name: "Normal",
  7008. height: math.unit(10 + 8 / 12, "foot")
  7009. },
  7010. {
  7011. name: "Minimacro",
  7012. height: math.unit(15, "foot")
  7013. },
  7014. {
  7015. name: "Macro",
  7016. height: math.unit(60, "foot"),
  7017. default: true
  7018. },
  7019. {
  7020. name: "Megamacro",
  7021. height: math.unit(5, "miles")
  7022. },
  7023. {
  7024. name: "Gigamacro",
  7025. height: math.unit(6000, "miles")
  7026. },
  7027. ]
  7028. ))
  7029. characterMakers.push(() => makeCharacter(
  7030. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7031. {
  7032. front: {
  7033. height: math.unit(6, "feet"),
  7034. weight: math.unit(150, "lbs"),
  7035. name: "Front",
  7036. image: {
  7037. source: "./media/characters/cobalt/front.svg"
  7038. }
  7039. }
  7040. },
  7041. [
  7042. {
  7043. name: "Normal",
  7044. height: math.unit(8 + 1 / 12, "foot")
  7045. },
  7046. {
  7047. name: "Macro",
  7048. height: math.unit(111, "foot"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Supracosmic",
  7053. height: math.unit(1e42, "feet")
  7054. },
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7059. {
  7060. front: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(140, "lbs"),
  7063. name: "Front",
  7064. image: {
  7065. source: "./media/characters/amanda/front.svg"
  7066. }
  7067. }
  7068. },
  7069. [
  7070. {
  7071. name: "Micro",
  7072. height: math.unit(5, "inches"),
  7073. default: true
  7074. },
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(2.75, "meters"),
  7082. weight: math.unit(1200, "lb"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/teal/front.svg",
  7086. extra: 2463 / 2320,
  7087. bottom: 166 / 2629
  7088. }
  7089. },
  7090. back: {
  7091. height: math.unit(2.75, "meters"),
  7092. weight: math.unit(1200, "lb"),
  7093. name: "Back",
  7094. image: {
  7095. source: "./media/characters/teal/back.svg",
  7096. extra: 2580 / 2489,
  7097. bottom: 151 / 2731
  7098. }
  7099. },
  7100. sitting: {
  7101. height: math.unit(1.9, "meters"),
  7102. weight: math.unit(1200, "lb"),
  7103. name: "Sitting",
  7104. image: {
  7105. source: "./media/characters/teal/sitting.svg",
  7106. extra: 623 / 590,
  7107. bottom: 121 / 744
  7108. }
  7109. },
  7110. standing: {
  7111. height: math.unit(2.75, "meters"),
  7112. weight: math.unit(1200, "lb"),
  7113. name: "Standing",
  7114. image: {
  7115. source: "./media/characters/teal/standing.svg",
  7116. extra: 923 / 893,
  7117. bottom: 60 / 983
  7118. }
  7119. },
  7120. stretching: {
  7121. height: math.unit(3.65, "meters"),
  7122. weight: math.unit(1200, "lb"),
  7123. name: "Stretching",
  7124. image: {
  7125. source: "./media/characters/teal/stretching.svg",
  7126. extra: 1276 / 1244,
  7127. bottom: 0 / 1276
  7128. }
  7129. },
  7130. legged: {
  7131. height: math.unit(1.3, "meters"),
  7132. weight: math.unit(100, "lb"),
  7133. name: "Legged",
  7134. image: {
  7135. source: "./media/characters/teal/legged.svg",
  7136. extra: 462 / 437,
  7137. bottom: 24 / 486
  7138. }
  7139. },
  7140. naga: {
  7141. height: math.unit(5.4, "meters"),
  7142. weight: math.unit(4000, "lb"),
  7143. name: "Naga",
  7144. image: {
  7145. source: "./media/characters/teal/naga.svg",
  7146. extra: 1902 / 1858,
  7147. bottom: 0 / 1902
  7148. }
  7149. },
  7150. hand: {
  7151. height: math.unit(0.52, "meters"),
  7152. name: "Hand",
  7153. image: {
  7154. source: "./media/characters/teal/hand.svg"
  7155. }
  7156. },
  7157. maw: {
  7158. height: math.unit(0.43, "meters"),
  7159. name: "Maw",
  7160. image: {
  7161. source: "./media/characters/teal/maw.svg"
  7162. }
  7163. },
  7164. slit: {
  7165. height: math.unit(0.25, "meters"),
  7166. name: "Slit",
  7167. image: {
  7168. source: "./media/characters/teal/slit.svg"
  7169. }
  7170. },
  7171. },
  7172. [
  7173. {
  7174. name: "Normal",
  7175. height: math.unit(2.75, "meters"),
  7176. default: true
  7177. },
  7178. {
  7179. name: "Macro",
  7180. height: math.unit(300, "feet")
  7181. },
  7182. {
  7183. name: "Macro+",
  7184. height: math.unit(2000, "feet")
  7185. },
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7190. {
  7191. frontCat: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(180, "lbs"),
  7194. name: "Front (Cat)",
  7195. image: {
  7196. source: "./media/characters/ravin-amulet/front-cat.svg"
  7197. }
  7198. },
  7199. frontCatAlt: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(180, "lbs"),
  7202. name: "Front (Alt, Cat)",
  7203. image: {
  7204. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7205. }
  7206. },
  7207. frontWerewolf: {
  7208. height: math.unit(6 * 1.2, "feet"),
  7209. weight: math.unit(225, "lbs"),
  7210. name: "Front (Werewolf)",
  7211. image: {
  7212. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7213. }
  7214. },
  7215. backWerewolf: {
  7216. height: math.unit(6 * 1.2, "feet"),
  7217. weight: math.unit(225, "lbs"),
  7218. name: "Back (Werewolf)",
  7219. image: {
  7220. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7221. }
  7222. },
  7223. },
  7224. [
  7225. {
  7226. name: "Nano",
  7227. height: math.unit(1, "micrometer")
  7228. },
  7229. {
  7230. name: "Micro",
  7231. height: math.unit(1, "inch")
  7232. },
  7233. {
  7234. name: "Normal",
  7235. height: math.unit(6, "feet"),
  7236. default: true
  7237. },
  7238. {
  7239. name: "Macro",
  7240. height: math.unit(60, "feet")
  7241. }
  7242. ]
  7243. ))
  7244. characterMakers.push(() => makeCharacter(
  7245. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7246. {
  7247. front: {
  7248. height: math.unit(6, "feet"),
  7249. weight: math.unit(165, "lbs"),
  7250. name: "Front",
  7251. image: {
  7252. source: "./media/characters/fluoresce/front.svg"
  7253. }
  7254. }
  7255. },
  7256. [
  7257. {
  7258. name: "Micro",
  7259. height: math.unit(6, "cm")
  7260. },
  7261. {
  7262. name: "Normal",
  7263. height: math.unit(5 + 7 / 12, "feet"),
  7264. default: true
  7265. },
  7266. {
  7267. name: "Macro",
  7268. height: math.unit(56, "feet")
  7269. },
  7270. {
  7271. name: "Megamacro",
  7272. height: math.unit(1.9, "miles")
  7273. },
  7274. ]
  7275. ))
  7276. characterMakers.push(() => makeCharacter(
  7277. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7278. {
  7279. front: {
  7280. height: math.unit(9 + 6 / 12, "feet"),
  7281. weight: math.unit(523, "lbs"),
  7282. name: "Side",
  7283. image: {
  7284. source: "./media/characters/aurora/side.svg"
  7285. }
  7286. }
  7287. },
  7288. [
  7289. {
  7290. name: "Normal",
  7291. height: math.unit(9 + 6 / 12, "feet")
  7292. },
  7293. {
  7294. name: "Macro",
  7295. height: math.unit(96, "feet"),
  7296. default: true
  7297. },
  7298. {
  7299. name: "Macro+",
  7300. height: math.unit(243, "feet")
  7301. },
  7302. ]
  7303. ))
  7304. characterMakers.push(() => makeCharacter(
  7305. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7306. {
  7307. front: {
  7308. height: math.unit(194, "cm"),
  7309. weight: math.unit(90, "kg"),
  7310. name: "Front",
  7311. image: {
  7312. source: "./media/characters/ranek/front.svg"
  7313. }
  7314. },
  7315. side: {
  7316. height: math.unit(194, "cm"),
  7317. weight: math.unit(90, "kg"),
  7318. name: "Side",
  7319. image: {
  7320. source: "./media/characters/ranek/side.svg"
  7321. }
  7322. },
  7323. back: {
  7324. height: math.unit(194, "cm"),
  7325. weight: math.unit(90, "kg"),
  7326. name: "Back",
  7327. image: {
  7328. source: "./media/characters/ranek/back.svg"
  7329. }
  7330. },
  7331. feral: {
  7332. height: math.unit(30, "cm"),
  7333. weight: math.unit(1.6, "lbs"),
  7334. name: "Feral",
  7335. image: {
  7336. source: "./media/characters/ranek/feral.svg"
  7337. }
  7338. },
  7339. },
  7340. [
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(194, "cm"),
  7344. default: true
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(100, "meters")
  7349. },
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7354. {
  7355. front: {
  7356. height: math.unit(5 + 6 / 12, "feet"),
  7357. weight: math.unit(153, "lbs"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/andrew-cooper/front.svg"
  7361. }
  7362. },
  7363. },
  7364. [
  7365. {
  7366. name: "Nano",
  7367. height: math.unit(1, "mm")
  7368. },
  7369. {
  7370. name: "Micro",
  7371. height: math.unit(2, "inches")
  7372. },
  7373. {
  7374. name: "Normal",
  7375. height: math.unit(5 + 6 / 12, "feet"),
  7376. default: true
  7377. }
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(180, "lbs"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/akane-sato/front.svg",
  7389. extra: 1219 / 1140
  7390. }
  7391. },
  7392. back: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(180, "lbs"),
  7395. name: "Back",
  7396. image: {
  7397. source: "./media/characters/akane-sato/back.svg",
  7398. extra: 1219 / 1170
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Normal",
  7405. height: math.unit(2.5, "meters")
  7406. },
  7407. {
  7408. name: "Macro",
  7409. height: math.unit(250, "meters"),
  7410. default: true
  7411. },
  7412. {
  7413. name: "Megamacro",
  7414. height: math.unit(25, "km")
  7415. },
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7420. {
  7421. front: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(65, "kg"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/rook/front.svg",
  7427. extra: 960 / 950
  7428. }
  7429. }
  7430. },
  7431. [
  7432. {
  7433. name: "Normal",
  7434. height: math.unit(8.8, "feet")
  7435. },
  7436. {
  7437. name: "Macro",
  7438. height: math.unit(88, "feet"),
  7439. default: true
  7440. },
  7441. {
  7442. name: "Megamacro",
  7443. height: math.unit(8, "miles")
  7444. },
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(12 + 2 / 12, "feet"),
  7452. weight: math.unit(808, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/prodigy/front.svg"
  7456. }
  7457. }
  7458. },
  7459. [
  7460. {
  7461. name: "Normal",
  7462. height: math.unit(12 + 2 / 12, "feet"),
  7463. default: true
  7464. },
  7465. {
  7466. name: "Macro",
  7467. height: math.unit(143, "feet")
  7468. },
  7469. {
  7470. name: "Macro+",
  7471. height: math.unit(400, "feet")
  7472. },
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7477. {
  7478. front: {
  7479. height: math.unit(6, "feet"),
  7480. weight: math.unit(225, "lbs"),
  7481. name: "Front",
  7482. image: {
  7483. source: "./media/characters/daniel/front.svg"
  7484. }
  7485. },
  7486. leaning: {
  7487. height: math.unit(6, "feet"),
  7488. weight: math.unit(225, "lbs"),
  7489. name: "Leaning",
  7490. image: {
  7491. source: "./media/characters/daniel/leaning.svg"
  7492. }
  7493. },
  7494. },
  7495. [
  7496. {
  7497. name: "Macro",
  7498. height: math.unit(1000, "feet"),
  7499. default: true
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7505. {
  7506. front: {
  7507. height: math.unit(6, "feet"),
  7508. weight: math.unit(88, "lbs"),
  7509. name: "Front",
  7510. image: {
  7511. source: "./media/characters/chiros/front.svg",
  7512. extra: 306 / 226
  7513. }
  7514. },
  7515. side: {
  7516. height: math.unit(6, "feet"),
  7517. weight: math.unit(88, "lbs"),
  7518. name: "Side",
  7519. image: {
  7520. source: "./media/characters/chiros/side.svg",
  7521. extra: 306 / 226
  7522. }
  7523. },
  7524. },
  7525. [
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(6, "cm"),
  7529. default: true
  7530. },
  7531. ]
  7532. ))
  7533. characterMakers.push(() => makeCharacter(
  7534. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7535. {
  7536. front: {
  7537. height: math.unit(6, "feet"),
  7538. weight: math.unit(100, "lbs"),
  7539. name: "Front",
  7540. image: {
  7541. source: "./media/characters/selka/front.svg",
  7542. extra: 947 / 887
  7543. }
  7544. }
  7545. },
  7546. [
  7547. {
  7548. name: "Normal",
  7549. height: math.unit(5, "cm"),
  7550. default: true
  7551. },
  7552. ]
  7553. ))
  7554. characterMakers.push(() => makeCharacter(
  7555. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7556. {
  7557. front: {
  7558. height: math.unit(8 + 3 / 12, "feet"),
  7559. weight: math.unit(424, "lbs"),
  7560. name: "Front",
  7561. image: {
  7562. source: "./media/characters/verin/front.svg",
  7563. extra: 1845 / 1550
  7564. }
  7565. },
  7566. frontArmored: {
  7567. height: math.unit(8 + 3 / 12, "feet"),
  7568. weight: math.unit(424, "lbs"),
  7569. name: "Front (Armored)",
  7570. image: {
  7571. source: "./media/characters/verin/front-armor.svg",
  7572. extra: 1845 / 1550,
  7573. bottom: 0.01
  7574. }
  7575. },
  7576. back: {
  7577. height: math.unit(8 + 3 / 12, "feet"),
  7578. weight: math.unit(424, "lbs"),
  7579. name: "Back",
  7580. image: {
  7581. source: "./media/characters/verin/back.svg",
  7582. bottom: 0.1,
  7583. extra: 1
  7584. }
  7585. },
  7586. foot: {
  7587. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7588. name: "Foot",
  7589. image: {
  7590. source: "./media/characters/verin/foot.svg"
  7591. }
  7592. },
  7593. },
  7594. [
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(8 + 3 / 12, "feet")
  7598. },
  7599. {
  7600. name: "Minimacro",
  7601. height: math.unit(21, "feet"),
  7602. default: true
  7603. },
  7604. {
  7605. name: "Macro",
  7606. height: math.unit(626, "feet")
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(2.718, "meters"),
  7615. weight: math.unit(150, "lbs"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/sovrim-terraquian/front.svg"
  7619. }
  7620. },
  7621. back: {
  7622. height: math.unit(2.718, "meters"),
  7623. weight: math.unit(150, "lbs"),
  7624. name: "Back",
  7625. image: {
  7626. source: "./media/characters/sovrim-terraquian/back.svg"
  7627. }
  7628. }
  7629. },
  7630. [
  7631. {
  7632. name: "Micro",
  7633. height: math.unit(2, "inches")
  7634. },
  7635. {
  7636. name: "Small",
  7637. height: math.unit(1, "meter")
  7638. },
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(Math.E, "meters"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Macro",
  7646. height: math.unit(20, "meters")
  7647. },
  7648. {
  7649. name: "Macro+",
  7650. height: math.unit(400, "meters")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(7, "feet"),
  7659. weight: math.unit(489, "lbs"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/reece-silvermane/front.svg",
  7663. bottom: 0.02,
  7664. extra: 1
  7665. }
  7666. },
  7667. },
  7668. [
  7669. {
  7670. name: "Macro",
  7671. height: math.unit(1.5, "miles"),
  7672. default: true
  7673. },
  7674. ]
  7675. ))
  7676. characterMakers.push(() => makeCharacter(
  7677. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7678. {
  7679. front: {
  7680. height: math.unit(6, "feet"),
  7681. weight: math.unit(78, "kg"),
  7682. name: "Front",
  7683. image: {
  7684. source: "./media/characters/kane/front.svg",
  7685. extra: 978 / 899
  7686. }
  7687. },
  7688. },
  7689. [
  7690. {
  7691. name: "Normal",
  7692. height: math.unit(2.1, "m"),
  7693. },
  7694. {
  7695. name: "Macro",
  7696. height: math.unit(1, "km"),
  7697. default: true
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(6, "feet"),
  7706. weight: math.unit(200, "kg"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/tegon/front.svg",
  7710. bottom: 0.01,
  7711. extra: 1
  7712. }
  7713. },
  7714. },
  7715. [
  7716. {
  7717. name: "Micro",
  7718. height: math.unit(1, "inch")
  7719. },
  7720. {
  7721. name: "Normal",
  7722. height: math.unit(6 + 3 / 12, "feet"),
  7723. default: true
  7724. },
  7725. {
  7726. name: "Macro",
  7727. height: math.unit(300, "feet")
  7728. },
  7729. {
  7730. name: "Megamacro",
  7731. height: math.unit(69, "miles")
  7732. },
  7733. ]
  7734. ))
  7735. characterMakers.push(() => makeCharacter(
  7736. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7737. {
  7738. side: {
  7739. height: math.unit(6, "feet"),
  7740. weight: math.unit(2304, "lbs"),
  7741. name: "Side",
  7742. image: {
  7743. source: "./media/characters/arcturax/side.svg",
  7744. extra: 790 / 376,
  7745. bottom: 0.01
  7746. }
  7747. },
  7748. },
  7749. [
  7750. {
  7751. name: "Micro",
  7752. height: math.unit(2, "inch")
  7753. },
  7754. {
  7755. name: "Normal",
  7756. height: math.unit(6, "feet")
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(39, "feet"),
  7761. default: true
  7762. },
  7763. {
  7764. name: "Megamacro",
  7765. height: math.unit(7, "miles")
  7766. },
  7767. ]
  7768. ))
  7769. characterMakers.push(() => makeCharacter(
  7770. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7771. {
  7772. front: {
  7773. height: math.unit(6, "feet"),
  7774. weight: math.unit(50, "lbs"),
  7775. name: "Front",
  7776. image: {
  7777. source: "./media/characters/sentri/front.svg",
  7778. extra: 1750 / 1570,
  7779. bottom: 0.025
  7780. }
  7781. },
  7782. frontAlt: {
  7783. height: math.unit(6, "feet"),
  7784. weight: math.unit(50, "lbs"),
  7785. name: "Front (Alt)",
  7786. image: {
  7787. source: "./media/characters/sentri/front-alt.svg",
  7788. extra: 1750 / 1570,
  7789. bottom: 0.025
  7790. }
  7791. },
  7792. },
  7793. [
  7794. {
  7795. name: "Normal",
  7796. height: math.unit(15, "feet"),
  7797. default: true
  7798. },
  7799. {
  7800. name: "Macro",
  7801. height: math.unit(2500, "feet")
  7802. }
  7803. ]
  7804. ))
  7805. characterMakers.push(() => makeCharacter(
  7806. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7807. {
  7808. front: {
  7809. height: math.unit(5 + 8 / 12, "feet"),
  7810. weight: math.unit(130, "lbs"),
  7811. name: "Front",
  7812. image: {
  7813. source: "./media/characters/corvin/front.svg",
  7814. extra: 1803 / 1629
  7815. }
  7816. },
  7817. frontShirt: {
  7818. height: math.unit(5 + 8 / 12, "feet"),
  7819. weight: math.unit(130, "lbs"),
  7820. name: "Front (Shirt)",
  7821. image: {
  7822. source: "./media/characters/corvin/front-shirt.svg",
  7823. extra: 1803 / 1629
  7824. }
  7825. },
  7826. frontPoncho: {
  7827. height: math.unit(5 + 8 / 12, "feet"),
  7828. weight: math.unit(130, "lbs"),
  7829. name: "Front (Poncho)",
  7830. image: {
  7831. source: "./media/characters/corvin/front-poncho.svg",
  7832. extra: 1803 / 1629
  7833. }
  7834. },
  7835. side: {
  7836. height: math.unit(5 + 8 / 12, "feet"),
  7837. weight: math.unit(130, "lbs"),
  7838. name: "Side",
  7839. image: {
  7840. source: "./media/characters/corvin/side.svg",
  7841. extra: 1012 / 945
  7842. }
  7843. },
  7844. back: {
  7845. height: math.unit(5 + 8 / 12, "feet"),
  7846. weight: math.unit(130, "lbs"),
  7847. name: "Back",
  7848. image: {
  7849. source: "./media/characters/corvin/back.svg",
  7850. extra: 1803 / 1629
  7851. }
  7852. },
  7853. },
  7854. [
  7855. {
  7856. name: "Micro",
  7857. height: math.unit(3, "inches")
  7858. },
  7859. {
  7860. name: "Normal",
  7861. height: math.unit(5 + 8 / 12, "feet")
  7862. },
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(300, "feet"),
  7866. default: true
  7867. },
  7868. {
  7869. name: "Megamacro",
  7870. height: math.unit(500, "miles")
  7871. }
  7872. ]
  7873. ))
  7874. characterMakers.push(() => makeCharacter(
  7875. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7876. {
  7877. front: {
  7878. height: math.unit(6, "feet"),
  7879. weight: math.unit(135, "lbs"),
  7880. name: "Front",
  7881. image: {
  7882. source: "./media/characters/q/front.svg",
  7883. extra: 854 / 752,
  7884. bottom: 0.005
  7885. }
  7886. },
  7887. back: {
  7888. height: math.unit(6, "feet"),
  7889. weight: math.unit(130, "lbs"),
  7890. name: "Back",
  7891. image: {
  7892. source: "./media/characters/q/back.svg",
  7893. extra: 854 / 752
  7894. }
  7895. },
  7896. },
  7897. [
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(90, "feet"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Extra Macro",
  7905. height: math.unit(300, "feet"),
  7906. },
  7907. {
  7908. name: "BIG WALF",
  7909. height: math.unit(750, "feet"),
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(6, "feet"),
  7918. weight: math.unit(150, "lbs"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/carley/front.svg",
  7922. extra: 3927 / 3540,
  7923. bottom: 29.2 / 735
  7924. }
  7925. }
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(6 + 3 / 12, "feet")
  7931. },
  7932. {
  7933. name: "Macro",
  7934. height: math.unit(185, "feet"),
  7935. default: true
  7936. },
  7937. {
  7938. name: "Megamacro",
  7939. height: math.unit(8, "miles"),
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(3, "feet"),
  7948. weight: math.unit(28, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/citrine/front.svg"
  7952. }
  7953. }
  7954. },
  7955. [
  7956. {
  7957. name: "Normal",
  7958. height: math.unit(3, "feet"),
  7959. default: true
  7960. }
  7961. ]
  7962. ))
  7963. characterMakers.push(() => makeCharacter(
  7964. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7965. {
  7966. front: {
  7967. height: math.unit(14, "feet"),
  7968. weight: math.unit(1450, "kg"),
  7969. capacity: math.unit(15, "people"),
  7970. name: "Front",
  7971. image: {
  7972. source: "./media/characters/aura-starwind/front.svg",
  7973. extra: 1455 / 1335
  7974. }
  7975. },
  7976. side: {
  7977. height: math.unit(14, "feet"),
  7978. weight: math.unit(1450, "kg"),
  7979. capacity: math.unit(15, "people"),
  7980. name: "Side",
  7981. image: {
  7982. source: "./media/characters/aura-starwind/side.svg",
  7983. extra: 1654 / 1497
  7984. }
  7985. },
  7986. taur: {
  7987. height: math.unit(18, "feet"),
  7988. weight: math.unit(5500, "kg"),
  7989. capacity: math.unit(50, "people"),
  7990. name: "Taur",
  7991. image: {
  7992. source: "./media/characters/aura-starwind/taur.svg",
  7993. extra: 1760 / 1650
  7994. }
  7995. },
  7996. feral: {
  7997. height: math.unit(46, "feet"),
  7998. weight: math.unit(25000, "kg"),
  7999. capacity: math.unit(120, "people"),
  8000. name: "Feral",
  8001. image: {
  8002. source: "./media/characters/aura-starwind/feral.svg"
  8003. }
  8004. },
  8005. },
  8006. [
  8007. {
  8008. name: "Normal",
  8009. height: math.unit(14, "feet"),
  8010. default: true
  8011. },
  8012. {
  8013. name: "Macro",
  8014. height: math.unit(50, "meters")
  8015. },
  8016. {
  8017. name: "Megamacro",
  8018. height: math.unit(5000, "meters")
  8019. },
  8020. {
  8021. name: "Gigamacro",
  8022. height: math.unit(100000, "kilometers")
  8023. },
  8024. ]
  8025. ))
  8026. characterMakers.push(() => makeCharacter(
  8027. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8028. {
  8029. front: {
  8030. height: math.unit(2 + 7 / 12, "feet"),
  8031. weight: math.unit(32, "lbs"),
  8032. name: "Front",
  8033. image: {
  8034. source: "./media/characters/rivet/front.svg",
  8035. extra: 1716 / 1658,
  8036. bottom: 0.03
  8037. }
  8038. },
  8039. foot: {
  8040. height: math.unit(0.551, "feet"),
  8041. name: "Rivet's Foot",
  8042. image: {
  8043. source: "./media/characters/rivet/foot.svg"
  8044. },
  8045. rename: true
  8046. }
  8047. },
  8048. [
  8049. {
  8050. name: "Micro",
  8051. height: math.unit(1.5, "inches"),
  8052. },
  8053. {
  8054. name: "Normal",
  8055. height: math.unit(2 + 7 / 12, "feet"),
  8056. default: true
  8057. },
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(85, "feet")
  8061. },
  8062. {
  8063. name: "Megamacro",
  8064. height: math.unit(2.2, "km")
  8065. }
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8070. {
  8071. front: {
  8072. height: math.unit(5 + 9 / 12, "feet"),
  8073. weight: math.unit(150, "lbs"),
  8074. name: "Front",
  8075. image: {
  8076. source: "./media/characters/coffee/front.svg",
  8077. extra: 3666 / 3032,
  8078. bottom: 0.04
  8079. }
  8080. },
  8081. foot: {
  8082. height: math.unit(1.29, "feet"),
  8083. name: "Foot",
  8084. image: {
  8085. source: "./media/characters/coffee/foot.svg"
  8086. }
  8087. },
  8088. },
  8089. [
  8090. {
  8091. name: "Micro",
  8092. height: math.unit(2, "inches"),
  8093. },
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(5 + 9 / 12, "feet"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(800, "feet")
  8102. },
  8103. {
  8104. name: "Megamacro",
  8105. height: math.unit(25, "miles")
  8106. }
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(6, "feet"),
  8114. weight: math.unit(200, "lbs"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/chari-gal/front.svg",
  8118. extra: 1568 / 1385,
  8119. bottom: 0.047
  8120. }
  8121. },
  8122. gigantamax: {
  8123. height: math.unit(6 * 16, "feet"),
  8124. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8125. name: "Gigantamax",
  8126. image: {
  8127. source: "./media/characters/chari-gal/gigantamax.svg",
  8128. extra: 1124 / 888,
  8129. bottom: 0.03
  8130. }
  8131. },
  8132. },
  8133. [
  8134. {
  8135. name: "Normal",
  8136. height: math.unit(5 + 7 / 12, "feet")
  8137. },
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(200, "feet"),
  8141. default: true
  8142. }
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8147. {
  8148. front: {
  8149. height: math.unit(6, "feet"),
  8150. weight: math.unit(150, "lbs"),
  8151. name: "Front",
  8152. image: {
  8153. source: "./media/characters/nova/front.svg",
  8154. extra: 5000 / 4722,
  8155. bottom: 0.02
  8156. }
  8157. }
  8158. },
  8159. [
  8160. {
  8161. name: "Micro-",
  8162. height: math.unit(0.8, "inches")
  8163. },
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(2, "inches"),
  8167. default: true
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(3 + 1 / 12, "feet"),
  8176. weight: math.unit(21.7, "lbs"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/argent/front.svg",
  8180. extra: 1471 / 1331,
  8181. bottom: 100.8 / 1575.5
  8182. }
  8183. }
  8184. },
  8185. [
  8186. {
  8187. name: "Micro",
  8188. height: math.unit(2, "inches")
  8189. },
  8190. {
  8191. name: "Normal",
  8192. height: math.unit(3 + 1 / 12, "feet"),
  8193. default: true
  8194. },
  8195. {
  8196. name: "Macro",
  8197. height: math.unit(120, "feet")
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8203. {
  8204. lamp: {
  8205. height: math.unit(7 * 1559 / 989, "feet"),
  8206. name: "Magic Lamp",
  8207. image: {
  8208. source: "./media/characters/mira-al-cul/lamp.svg",
  8209. extra: 1617 / 1559
  8210. }
  8211. },
  8212. front: {
  8213. height: math.unit(7, "feet"),
  8214. name: "Front",
  8215. image: {
  8216. source: "./media/characters/mira-al-cul/front.svg",
  8217. extra: 1044 / 990
  8218. }
  8219. },
  8220. },
  8221. [
  8222. {
  8223. name: "Heavily Restricted",
  8224. height: math.unit(7 * 1559 / 989, "feet")
  8225. },
  8226. {
  8227. name: "Freshly Freed",
  8228. height: math.unit(50 * 1559 / 989, "feet")
  8229. },
  8230. {
  8231. name: "World Encompassing",
  8232. height: math.unit(10000 * 1559 / 989, "miles")
  8233. },
  8234. {
  8235. name: "Galactic",
  8236. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8237. },
  8238. {
  8239. name: "Palmed Universe",
  8240. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8241. default: true
  8242. },
  8243. {
  8244. name: "Multiversal Matriarch",
  8245. height: math.unit(8.87e10, "yottameters")
  8246. },
  8247. {
  8248. name: "Void Mother",
  8249. height: math.unit(3.14e110, "yottaparsecs")
  8250. },
  8251. {
  8252. name: "Toying with Transcendence",
  8253. height: math.unit(1e307, "meters")
  8254. },
  8255. ]
  8256. ))
  8257. characterMakers.push(() => makeCharacter(
  8258. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8259. {
  8260. front: {
  8261. height: math.unit(17 + 1 / 12, "feet"),
  8262. weight: math.unit(476.2 * 5, "lbs"),
  8263. name: "Front",
  8264. image: {
  8265. source: "./media/characters/kuro-shi-uchū/front.svg",
  8266. extra: 2329 / 1835,
  8267. bottom: 0.02
  8268. }
  8269. },
  8270. },
  8271. [
  8272. {
  8273. name: "Micro",
  8274. height: math.unit(2, "inches")
  8275. },
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(12, "meters")
  8279. },
  8280. {
  8281. name: "Planetary",
  8282. height: math.unit(0.00929, "AU"),
  8283. default: true
  8284. },
  8285. {
  8286. name: "Universal",
  8287. height: math.unit(20, "gigaparsecs")
  8288. },
  8289. ]
  8290. ))
  8291. characterMakers.push(() => makeCharacter(
  8292. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8293. {
  8294. front: {
  8295. height: math.unit(5 + 2 / 12, "feet"),
  8296. weight: math.unit(120, "lbs"),
  8297. name: "Front",
  8298. image: {
  8299. source: "./media/characters/katherine/front.svg",
  8300. extra: 2075 / 1969
  8301. }
  8302. },
  8303. dress: {
  8304. height: math.unit(5 + 2 / 12, "feet"),
  8305. weight: math.unit(120, "lbs"),
  8306. name: "Dress",
  8307. image: {
  8308. source: "./media/characters/katherine/dress.svg",
  8309. extra: 2258 / 2064
  8310. }
  8311. },
  8312. },
  8313. [
  8314. {
  8315. name: "Micro",
  8316. height: math.unit(1, "inches"),
  8317. default: true
  8318. },
  8319. {
  8320. name: "Normal",
  8321. height: math.unit(5 + 2 / 12, "feet")
  8322. },
  8323. {
  8324. name: "Macro",
  8325. height: math.unit(100, "meters")
  8326. },
  8327. {
  8328. name: "Megamacro",
  8329. height: math.unit(80, "miles")
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8335. {
  8336. front: {
  8337. height: math.unit(7 + 8 / 12, "feet"),
  8338. weight: math.unit(250, "lbs"),
  8339. name: "Front",
  8340. image: {
  8341. source: "./media/characters/yevis/front.svg",
  8342. extra: 1938 / 1755
  8343. }
  8344. }
  8345. },
  8346. [
  8347. {
  8348. name: "Mortal",
  8349. height: math.unit(7 + 8 / 12, "feet")
  8350. },
  8351. {
  8352. name: "Battle",
  8353. height: math.unit(25 + 11 / 12, "feet")
  8354. },
  8355. {
  8356. name: "Wrath",
  8357. height: math.unit(1654 + 11 / 12, "feet")
  8358. },
  8359. {
  8360. name: "Planet Destroyer",
  8361. height: math.unit(12000, "miles")
  8362. },
  8363. {
  8364. name: "Galaxy Conqueror",
  8365. height: math.unit(1.45, "zettameters"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "Universal War",
  8370. height: math.unit(184, "gigaparsecs")
  8371. },
  8372. {
  8373. name: "Eternity War",
  8374. height: math.unit(1.98e55, "yottaparsecs")
  8375. },
  8376. ]
  8377. ))
  8378. characterMakers.push(() => makeCharacter(
  8379. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8380. {
  8381. front: {
  8382. height: math.unit(5 + 8 / 12, "feet"),
  8383. weight: math.unit(63, "kg"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/xavier/front.svg",
  8387. extra: 944 / 883
  8388. }
  8389. },
  8390. frontStretch: {
  8391. height: math.unit(5 + 8 / 12, "feet"),
  8392. weight: math.unit(63, "kg"),
  8393. name: "Stretching",
  8394. image: {
  8395. source: "./media/characters/xavier/front-stretch.svg",
  8396. extra: 962 / 820
  8397. }
  8398. },
  8399. },
  8400. [
  8401. {
  8402. name: "Normal",
  8403. height: math.unit(5 + 8 / 12, "feet")
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(100, "meters"),
  8408. default: true
  8409. },
  8410. {
  8411. name: "McLargeHuge",
  8412. height: math.unit(10, "miles")
  8413. },
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(5 + 5 / 12, "feet"),
  8421. weight: math.unit(150, "lb"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/joshii/front.svg",
  8425. extra: 765 / 653,
  8426. bottom: 51 / 816
  8427. }
  8428. },
  8429. foot: {
  8430. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8431. name: "Foot",
  8432. image: {
  8433. source: "./media/characters/joshii/foot.svg"
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Micro",
  8440. height: math.unit(2, "inches"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Normal",
  8445. height: math.unit(5 + 5 / 12, "feet")
  8446. },
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(785, "feet")
  8450. },
  8451. {
  8452. name: "Megamacro",
  8453. height: math.unit(24.5, "miles")
  8454. },
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8459. {
  8460. front: {
  8461. height: math.unit(6, "feet"),
  8462. weight: math.unit(150, "lb"),
  8463. name: "Front",
  8464. image: {
  8465. source: "./media/characters/goddess-elizabeth/front.svg",
  8466. extra: 1800 / 1525,
  8467. bottom: 0.005
  8468. }
  8469. },
  8470. foot: {
  8471. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8472. name: "Foot",
  8473. image: {
  8474. source: "./media/characters/goddess-elizabeth/foot.svg"
  8475. }
  8476. },
  8477. mouth: {
  8478. height: math.unit(6, "feet"),
  8479. name: "Mouth",
  8480. image: {
  8481. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8482. }
  8483. },
  8484. },
  8485. [
  8486. {
  8487. name: "Micro",
  8488. height: math.unit(12, "feet")
  8489. },
  8490. {
  8491. name: "Normal",
  8492. height: math.unit(80, "miles"),
  8493. default: true
  8494. },
  8495. {
  8496. name: "Macro",
  8497. height: math.unit(15000, "parsecs")
  8498. },
  8499. ]
  8500. ))
  8501. characterMakers.push(() => makeCharacter(
  8502. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8503. {
  8504. front: {
  8505. height: math.unit(5 + 9 / 12, "feet"),
  8506. weight: math.unit(144, "lb"),
  8507. name: "Front",
  8508. image: {
  8509. source: "./media/characters/kara/front.svg"
  8510. }
  8511. },
  8512. feet: {
  8513. height: math.unit(6 / 6.765, "feet"),
  8514. name: "Kara's Feet",
  8515. rename: true,
  8516. image: {
  8517. source: "./media/characters/kara/feet.svg"
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Normal",
  8524. height: math.unit(5 + 9 / 12, "feet")
  8525. },
  8526. {
  8527. name: "Macro",
  8528. height: math.unit(174, "feet"),
  8529. default: true
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(18, "feet"),
  8538. weight: math.unit(4050, "lb"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/tyrone/front.svg",
  8542. extra: 2405 / 2270,
  8543. bottom: 182 / 2587
  8544. }
  8545. },
  8546. },
  8547. [
  8548. {
  8549. name: "Normal",
  8550. height: math.unit(18, "feet"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "Macro",
  8555. height: math.unit(300, "feet")
  8556. },
  8557. {
  8558. name: "Megamacro",
  8559. height: math.unit(15, "km")
  8560. },
  8561. {
  8562. name: "Gigamacro",
  8563. height: math.unit(500, "km")
  8564. },
  8565. {
  8566. name: "Teramacro",
  8567. height: math.unit(0.5, "gigameters")
  8568. },
  8569. {
  8570. name: "Omnimacro",
  8571. height: math.unit(1e252, "yottauniverse")
  8572. },
  8573. ]
  8574. ))
  8575. characterMakers.push(() => makeCharacter(
  8576. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8577. {
  8578. front: {
  8579. height: math.unit(7 + 8 / 12, "feet"),
  8580. weight: math.unit(120, "lb"),
  8581. name: "Front",
  8582. image: {
  8583. source: "./media/characters/danny/front.svg",
  8584. extra: 1490 / 1350
  8585. }
  8586. },
  8587. back: {
  8588. height: math.unit(7 + 8 / 12, "feet"),
  8589. weight: math.unit(120, "lb"),
  8590. name: "Back",
  8591. image: {
  8592. source: "./media/characters/danny/back.svg",
  8593. extra: 1490 / 1350
  8594. }
  8595. },
  8596. },
  8597. [
  8598. {
  8599. name: "Normal",
  8600. height: math.unit(7 + 8 / 12, "feet"),
  8601. default: true
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8607. {
  8608. front: {
  8609. height: math.unit(3.5, "inches"),
  8610. weight: math.unit(19, "grams"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/mallow/front.svg",
  8614. extra: 471 / 431
  8615. }
  8616. },
  8617. back: {
  8618. height: math.unit(3.5, "inches"),
  8619. weight: math.unit(19, "grams"),
  8620. name: "Back",
  8621. image: {
  8622. source: "./media/characters/mallow/back.svg",
  8623. extra: 471 / 431
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(3.5, "inches"),
  8631. default: true
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(9, "feet"),
  8640. weight: math.unit(230, "kg"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/starry-aqua/front.svg"
  8644. }
  8645. },
  8646. back: {
  8647. height: math.unit(9, "feet"),
  8648. weight: math.unit(230, "kg"),
  8649. name: "Back",
  8650. image: {
  8651. source: "./media/characters/starry-aqua/back.svg"
  8652. }
  8653. },
  8654. hand: {
  8655. height: math.unit(9 * 0.1168, "feet"),
  8656. name: "Hand",
  8657. image: {
  8658. source: "./media/characters/starry-aqua/hand.svg"
  8659. }
  8660. },
  8661. foot: {
  8662. height: math.unit(9 * 0.18, "feet"),
  8663. name: "Foot",
  8664. image: {
  8665. source: "./media/characters/starry-aqua/foot.svg"
  8666. }
  8667. }
  8668. },
  8669. [
  8670. {
  8671. name: "Micro",
  8672. height: math.unit(3, "inches")
  8673. },
  8674. {
  8675. name: "Normal",
  8676. height: math.unit(9, "feet")
  8677. },
  8678. {
  8679. name: "Macro",
  8680. height: math.unit(300, "feet"),
  8681. default: true
  8682. },
  8683. {
  8684. name: "Megamacro",
  8685. height: math.unit(3200, "feet")
  8686. }
  8687. ]
  8688. ))
  8689. characterMakers.push(() => makeCharacter(
  8690. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8691. {
  8692. front: {
  8693. height: math.unit(6, "feet"),
  8694. weight: math.unit(230, "lb"),
  8695. name: "Front",
  8696. image: {
  8697. source: "./media/characters/luka/front.svg",
  8698. extra: 1,
  8699. bottom: 0.025
  8700. }
  8701. },
  8702. },
  8703. [
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(12 + 8 / 12, "feet"),
  8707. default: true
  8708. },
  8709. {
  8710. name: "Minimacro",
  8711. height: math.unit(20, "feet")
  8712. },
  8713. {
  8714. name: "Macro",
  8715. height: math.unit(250, "feet")
  8716. },
  8717. {
  8718. name: "Megamacro",
  8719. height: math.unit(5, "miles")
  8720. },
  8721. {
  8722. name: "Gigamacro",
  8723. height: math.unit(8000, "miles")
  8724. },
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(6, "feet"),
  8732. weight: math.unit(150, "lb"),
  8733. name: "Front",
  8734. image: {
  8735. source: "./media/characters/natalie-nightring/front.svg",
  8736. extra: 1,
  8737. bottom: 0.06
  8738. }
  8739. },
  8740. },
  8741. [
  8742. {
  8743. name: "Uh Oh",
  8744. height: math.unit(0.1, "mm")
  8745. },
  8746. {
  8747. name: "Small",
  8748. height: math.unit(3, "inches")
  8749. },
  8750. {
  8751. name: "Human Scale",
  8752. height: math.unit(6, "feet")
  8753. },
  8754. {
  8755. name: "Librarian",
  8756. height: math.unit(50, "feet"),
  8757. default: true
  8758. },
  8759. {
  8760. name: "Immense",
  8761. height: math.unit(200, "miles")
  8762. },
  8763. ]
  8764. ))
  8765. characterMakers.push(() => makeCharacter(
  8766. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8767. {
  8768. front: {
  8769. height: math.unit(6, "feet"),
  8770. weight: math.unit(180, "lbs"),
  8771. name: "Front",
  8772. image: {
  8773. source: "./media/characters/danni-rosie/front.svg",
  8774. extra: 1260 / 1128,
  8775. bottom: 0.022
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Micro",
  8782. height: math.unit(2, "inches"),
  8783. default: true
  8784. },
  8785. ]
  8786. ))
  8787. characterMakers.push(() => makeCharacter(
  8788. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8789. {
  8790. front: {
  8791. height: math.unit(5 + 9 / 12, "feet"),
  8792. weight: math.unit(220, "lb"),
  8793. name: "Front",
  8794. image: {
  8795. source: "./media/characters/samantha-kruse/front.svg",
  8796. extra: (985 / 935),
  8797. bottom: 0.03
  8798. }
  8799. },
  8800. frontUndressed: {
  8801. height: math.unit(5 + 9 / 12, "feet"),
  8802. weight: math.unit(220, "lb"),
  8803. name: "Front (Undressed)",
  8804. image: {
  8805. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8806. extra: (973 / 923),
  8807. bottom: 0.025
  8808. }
  8809. },
  8810. fat: {
  8811. height: math.unit(5 + 9 / 12, "feet"),
  8812. weight: math.unit(900, "lb"),
  8813. name: "Front (Fat)",
  8814. image: {
  8815. source: "./media/characters/samantha-kruse/fat.svg",
  8816. extra: 2688 / 2561
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(5 + 9 / 12, "feet"),
  8824. default: true
  8825. }
  8826. ]
  8827. ))
  8828. characterMakers.push(() => makeCharacter(
  8829. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8830. {
  8831. back: {
  8832. height: math.unit(5 + 4 / 12, "feet"),
  8833. weight: math.unit(4963, "lb"),
  8834. name: "Back",
  8835. image: {
  8836. source: "./media/characters/amelia-rosie/back.svg",
  8837. extra: 1113 / 963,
  8838. bottom: 0.01
  8839. }
  8840. },
  8841. },
  8842. [
  8843. {
  8844. name: "Level 0",
  8845. height: math.unit(5 + 4 / 12, "feet")
  8846. },
  8847. {
  8848. name: "Level 1",
  8849. height: math.unit(164597, "feet"),
  8850. default: true
  8851. },
  8852. {
  8853. name: "Level 2",
  8854. height: math.unit(956243, "miles")
  8855. },
  8856. {
  8857. name: "Level 3",
  8858. height: math.unit(29421709423, "miles")
  8859. },
  8860. {
  8861. name: "Level 4",
  8862. height: math.unit(154, "lightyears")
  8863. },
  8864. {
  8865. name: "Level 5",
  8866. height: math.unit(4738272, "lightyears")
  8867. },
  8868. {
  8869. name: "Level 6",
  8870. height: math.unit(145787152896, "lightyears")
  8871. },
  8872. ]
  8873. ))
  8874. characterMakers.push(() => makeCharacter(
  8875. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8876. {
  8877. front: {
  8878. height: math.unit(5 + 11 / 12, "feet"),
  8879. weight: math.unit(65, "kg"),
  8880. name: "Front",
  8881. image: {
  8882. source: "./media/characters/rook-kitara/front.svg",
  8883. extra: 1347 / 1274,
  8884. bottom: 0.005
  8885. }
  8886. },
  8887. },
  8888. [
  8889. {
  8890. name: "Totally Unfair",
  8891. height: math.unit(1.8, "mm")
  8892. },
  8893. {
  8894. name: "Lap Rookie",
  8895. height: math.unit(1.4, "feet")
  8896. },
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(5 + 11 / 12, "feet"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "How Did This Happen",
  8904. height: math.unit(80, "miles")
  8905. }
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8910. {
  8911. front: {
  8912. height: math.unit(7, "feet"),
  8913. weight: math.unit(300, "lb"),
  8914. name: "Front",
  8915. image: {
  8916. source: "./media/characters/pisces/front.svg",
  8917. extra: 2255 / 2115,
  8918. bottom: 0.03
  8919. }
  8920. },
  8921. back: {
  8922. height: math.unit(7, "feet"),
  8923. weight: math.unit(300, "lb"),
  8924. name: "Back",
  8925. image: {
  8926. source: "./media/characters/pisces/back.svg",
  8927. extra: 2146 / 2055,
  8928. bottom: 0.04
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(7, "feet"),
  8936. default: true
  8937. },
  8938. {
  8939. name: "Swimming Pool",
  8940. height: math.unit(12.2, "meters")
  8941. },
  8942. {
  8943. name: "Olympic Swimming Pool",
  8944. height: math.unit(56.3, "meters")
  8945. },
  8946. {
  8947. name: "Lake Superior",
  8948. height: math.unit(93900, "meters")
  8949. },
  8950. {
  8951. name: "Mediterranean Sea",
  8952. height: math.unit(644457, "meters")
  8953. },
  8954. {
  8955. name: "World's Oceans",
  8956. height: math.unit(4567491, "meters")
  8957. },
  8958. ]
  8959. ))
  8960. characterMakers.push(() => makeCharacter(
  8961. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8962. {
  8963. front: {
  8964. height: math.unit(2.3, "meters"),
  8965. weight: math.unit(120, "kg"),
  8966. name: "Front",
  8967. image: {
  8968. source: "./media/characters/zelas/front.svg"
  8969. }
  8970. },
  8971. side: {
  8972. height: math.unit(2.3, "meters"),
  8973. weight: math.unit(120, "kg"),
  8974. name: "Side",
  8975. image: {
  8976. source: "./media/characters/zelas/side.svg"
  8977. }
  8978. },
  8979. back: {
  8980. height: math.unit(2.3, "meters"),
  8981. weight: math.unit(120, "kg"),
  8982. name: "Back",
  8983. image: {
  8984. source: "./media/characters/zelas/back.svg"
  8985. }
  8986. },
  8987. foot: {
  8988. height: math.unit(1.116, "feet"),
  8989. name: "Foot",
  8990. image: {
  8991. source: "./media/characters/zelas/foot.svg"
  8992. }
  8993. },
  8994. },
  8995. [
  8996. {
  8997. name: "Normal",
  8998. height: math.unit(2.3, "meters")
  8999. },
  9000. {
  9001. name: "Macro",
  9002. height: math.unit(30, "meters"),
  9003. default: true
  9004. },
  9005. ]
  9006. ))
  9007. characterMakers.push(() => makeCharacter(
  9008. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9009. {
  9010. front: {
  9011. height: math.unit(1, "inch"),
  9012. weight: math.unit(0.21, "grams"),
  9013. name: "Front",
  9014. image: {
  9015. source: "./media/characters/talbot/front.svg",
  9016. extra: 594 / 544
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Micro",
  9023. height: math.unit(1, "inch"),
  9024. default: true
  9025. },
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9030. {
  9031. front: {
  9032. height: math.unit(3 + 3 / 12, "feet"),
  9033. weight: math.unit(51.8, "lb"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/fliss/front.svg",
  9037. extra: 840 / 640
  9038. }
  9039. },
  9040. },
  9041. [
  9042. {
  9043. name: "Teeny Tiny",
  9044. height: math.unit(1, "mm")
  9045. },
  9046. {
  9047. name: "Small",
  9048. height: math.unit(1, "inch"),
  9049. default: true
  9050. },
  9051. {
  9052. name: "Standard Sylveon",
  9053. height: math.unit(3 + 3 / 12, "feet")
  9054. },
  9055. {
  9056. name: "Large Nuisance",
  9057. height: math.unit(33, "feet")
  9058. },
  9059. {
  9060. name: "City Filler",
  9061. height: math.unit(3000, "feet")
  9062. },
  9063. {
  9064. name: "New Horizon",
  9065. height: math.unit(6000, "miles")
  9066. },
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(5, "cm"),
  9074. weight: math.unit(1.94, "g"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/fleta/front.svg",
  9078. extra: 835 / 803
  9079. }
  9080. },
  9081. back: {
  9082. height: math.unit(5, "cm"),
  9083. weight: math.unit(1.94, "g"),
  9084. name: "Back",
  9085. image: {
  9086. source: "./media/characters/fleta/back.svg",
  9087. extra: 835 / 803
  9088. }
  9089. },
  9090. },
  9091. [
  9092. {
  9093. name: "Micro",
  9094. height: math.unit(5, "cm"),
  9095. default: true
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9101. {
  9102. front: {
  9103. height: math.unit(6, "feet"),
  9104. weight: math.unit(225, "lb"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/dominic/front.svg",
  9108. extra: 1770 / 1620,
  9109. bottom: 0.025
  9110. }
  9111. },
  9112. back: {
  9113. height: math.unit(6, "feet"),
  9114. weight: math.unit(225, "lb"),
  9115. name: "Back",
  9116. image: {
  9117. source: "./media/characters/dominic/back.svg",
  9118. extra: 1745 / 1620,
  9119. bottom: 0.065
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Nano",
  9126. height: math.unit(0.1, "mm")
  9127. },
  9128. {
  9129. name: "Micro-",
  9130. height: math.unit(1, "mm")
  9131. },
  9132. {
  9133. name: "Micro",
  9134. height: math.unit(4, "inches")
  9135. },
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(6 + 4 / 12, "feet"),
  9139. default: true
  9140. },
  9141. {
  9142. name: "Macro",
  9143. height: math.unit(115, "feet")
  9144. },
  9145. {
  9146. name: "Macro+",
  9147. height: math.unit(955, "feet")
  9148. },
  9149. {
  9150. name: "Megamacro",
  9151. height: math.unit(8990, "feet")
  9152. },
  9153. {
  9154. name: "Gigmacro",
  9155. height: math.unit(9310, "miles")
  9156. },
  9157. {
  9158. name: "Teramacro",
  9159. height: math.unit(1567005010, "miles")
  9160. },
  9161. {
  9162. name: "Examacro",
  9163. height: math.unit(1425, "parsecs")
  9164. },
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9169. {
  9170. front: {
  9171. height: math.unit(400, "feet"),
  9172. weight: math.unit(44444444, "lb"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/major-colonel/front.svg"
  9176. }
  9177. },
  9178. back: {
  9179. height: math.unit(400, "feet"),
  9180. weight: math.unit(44444444, "lb"),
  9181. name: "Back",
  9182. image: {
  9183. source: "./media/characters/major-colonel/back.svg"
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Macro",
  9190. height: math.unit(400, "feet"),
  9191. default: true
  9192. },
  9193. ]
  9194. ))
  9195. characterMakers.push(() => makeCharacter(
  9196. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9197. {
  9198. catFront: {
  9199. height: math.unit(6, "feet"),
  9200. weight: math.unit(120, "lb"),
  9201. name: "Front (Cat Side)",
  9202. image: {
  9203. source: "./media/characters/axel-lycan/cat-front.svg",
  9204. extra: 430 / 402,
  9205. bottom: 43 / 472.35
  9206. }
  9207. },
  9208. catBack: {
  9209. height: math.unit(6, "feet"),
  9210. weight: math.unit(120, "lb"),
  9211. name: "Back (Cat Side)",
  9212. image: {
  9213. source: "./media/characters/axel-lycan/cat-back.svg",
  9214. extra: 447 / 419,
  9215. bottom: 23.3 / 469
  9216. }
  9217. },
  9218. wolfFront: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(120, "lb"),
  9221. name: "Front (Wolf Side)",
  9222. image: {
  9223. source: "./media/characters/axel-lycan/wolf-front.svg",
  9224. extra: 485 / 456,
  9225. bottom: 19 / 504
  9226. }
  9227. },
  9228. wolfBack: {
  9229. height: math.unit(6, "feet"),
  9230. weight: math.unit(120, "lb"),
  9231. name: "Back (Wolf Side)",
  9232. image: {
  9233. source: "./media/characters/axel-lycan/wolf-back.svg",
  9234. extra: 475 / 438,
  9235. bottom: 39.2 / 514
  9236. }
  9237. },
  9238. },
  9239. [
  9240. {
  9241. name: "Macro",
  9242. height: math.unit(1, "km"),
  9243. default: true
  9244. },
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9249. {
  9250. front: {
  9251. height: math.unit(5 + 9 / 12, "feet"),
  9252. weight: math.unit(175, "lb"),
  9253. name: "Front",
  9254. image: {
  9255. source: "./media/characters/vanrel-hyena/front.svg",
  9256. extra: 1086 / 1010,
  9257. bottom: 0.04
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(5 + 9 / 12, "feet"),
  9265. default: true
  9266. },
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9271. {
  9272. front: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(103, "lb"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/abbott-absol/front.svg",
  9278. extra: 2010 / 1842
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Megamicro",
  9285. height: math.unit(0.1, "mm")
  9286. },
  9287. {
  9288. name: "Micro",
  9289. height: math.unit(1, "inch")
  9290. },
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(6, "feet"),
  9294. default: true
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(6, "feet"),
  9303. weight: math.unit(264, "lb"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/hector/front.svg",
  9307. extra: 2280 / 2130,
  9308. bottom: 0.07
  9309. }
  9310. },
  9311. },
  9312. [
  9313. {
  9314. name: "Normal",
  9315. height: math.unit(12.25, "foot"),
  9316. default: true
  9317. },
  9318. {
  9319. name: "Macro",
  9320. height: math.unit(160, "feet")
  9321. },
  9322. ]
  9323. ))
  9324. characterMakers.push(() => makeCharacter(
  9325. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9326. {
  9327. front: {
  9328. height: math.unit(6, "feet"),
  9329. weight: math.unit(150, "lb"),
  9330. name: "Front",
  9331. image: {
  9332. source: "./media/characters/sal/front.svg",
  9333. extra: 1846 / 1699,
  9334. bottom: 0.04
  9335. }
  9336. },
  9337. },
  9338. [
  9339. {
  9340. name: "Megamacro",
  9341. height: math.unit(10, "miles"),
  9342. default: true
  9343. },
  9344. ]
  9345. ))
  9346. characterMakers.push(() => makeCharacter(
  9347. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9348. {
  9349. front: {
  9350. height: math.unit(3, "meters"),
  9351. weight: math.unit(450, "kg"),
  9352. name: "front",
  9353. image: {
  9354. source: "./media/characters/ranger/front.svg",
  9355. extra: 2401 / 2243,
  9356. bottom: 0.05
  9357. }
  9358. },
  9359. },
  9360. [
  9361. {
  9362. name: "Normal",
  9363. height: math.unit(3, "meters"),
  9364. default: true
  9365. },
  9366. ]
  9367. ))
  9368. characterMakers.push(() => makeCharacter(
  9369. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9370. {
  9371. front: {
  9372. height: math.unit(14, "feet"),
  9373. weight: math.unit(800, "kg"),
  9374. name: "Front",
  9375. image: {
  9376. source: "./media/characters/theresa/front.svg",
  9377. extra: 3575 / 3346,
  9378. bottom: 0.03
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(14, "feet"),
  9386. default: true
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9392. {
  9393. front: {
  9394. height: math.unit(6, "feet"),
  9395. weight: math.unit(3, "kg"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/ine/front.svg",
  9399. extra: 678 / 539,
  9400. bottom: 0.023
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Normal",
  9407. height: math.unit(2.265, "feet"),
  9408. default: true
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9414. {
  9415. front: {
  9416. height: math.unit(5, "feet"),
  9417. weight: math.unit(30, "kg"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/vial/front.svg",
  9421. extra: 1365 / 1277,
  9422. bottom: 0.04
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(5, "feet"),
  9430. default: true
  9431. },
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9436. {
  9437. side: {
  9438. height: math.unit(3.4, "meters"),
  9439. weight: math.unit(1000, "lb"),
  9440. name: "Side",
  9441. image: {
  9442. source: "./media/characters/rovoska/side.svg",
  9443. extra: 4403 / 1515
  9444. }
  9445. },
  9446. },
  9447. [
  9448. {
  9449. name: "Normal",
  9450. height: math.unit(3.4, "meters"),
  9451. default: true
  9452. },
  9453. ]
  9454. ))
  9455. characterMakers.push(() => makeCharacter(
  9456. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9457. {
  9458. front: {
  9459. height: math.unit(8, "feet"),
  9460. weight: math.unit(315, "lb"),
  9461. name: "Front",
  9462. image: {
  9463. source: "./media/characters/gunner-rotthbauer/front.svg"
  9464. }
  9465. },
  9466. back: {
  9467. height: math.unit(8, "feet"),
  9468. weight: math.unit(315, "lb"),
  9469. name: "Back",
  9470. image: {
  9471. source: "./media/characters/gunner-rotthbauer/back.svg"
  9472. }
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Micro",
  9478. height: math.unit(3.5, "inches")
  9479. },
  9480. {
  9481. name: "Normal",
  9482. height: math.unit(8, "feet"),
  9483. default: true
  9484. },
  9485. {
  9486. name: "Macro",
  9487. height: math.unit(250, "feet")
  9488. },
  9489. {
  9490. name: "Megamacro",
  9491. height: math.unit(1, "AU")
  9492. },
  9493. ]
  9494. ))
  9495. characterMakers.push(() => makeCharacter(
  9496. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9497. {
  9498. front: {
  9499. height: math.unit(5 + 5 / 12, "feet"),
  9500. weight: math.unit(140, "lb"),
  9501. name: "Front",
  9502. image: {
  9503. source: "./media/characters/allatia/front.svg",
  9504. extra: 1227 / 1180,
  9505. bottom: 0.027
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Normal",
  9512. height: math.unit(5 + 5 / 12, "feet")
  9513. },
  9514. {
  9515. name: "Macro",
  9516. height: math.unit(250, "feet"),
  9517. default: true
  9518. },
  9519. {
  9520. name: "Megamacro",
  9521. height: math.unit(8, "miles")
  9522. }
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(6, "feet"),
  9530. weight: math.unit(120, "lb"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/tene/front.svg",
  9534. extra: 1728 / 1578,
  9535. bottom: 0.022
  9536. }
  9537. },
  9538. stomping: {
  9539. height: math.unit(2.025, "meters"),
  9540. weight: math.unit(120, "lb"),
  9541. name: "Stomping",
  9542. image: {
  9543. source: "./media/characters/tene/stomping.svg",
  9544. extra: 938 / 873,
  9545. bottom: 0.01
  9546. }
  9547. },
  9548. sitting: {
  9549. height: math.unit(1, "meter"),
  9550. weight: math.unit(120, "lb"),
  9551. name: "Sitting",
  9552. image: {
  9553. source: "./media/characters/tene/sitting.svg",
  9554. extra: 437 / 415,
  9555. bottom: 0.1
  9556. }
  9557. },
  9558. feral: {
  9559. height: math.unit(3.9, "feet"),
  9560. weight: math.unit(250, "lb"),
  9561. name: "Feral",
  9562. image: {
  9563. source: "./media/characters/tene/feral.svg",
  9564. extra: 717 / 458,
  9565. bottom: 0.179
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(6, "feet")
  9573. },
  9574. {
  9575. name: "Macro",
  9576. height: math.unit(300, "feet"),
  9577. default: true
  9578. },
  9579. {
  9580. name: "Megamacro",
  9581. height: math.unit(5, "miles")
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9587. {
  9588. side: {
  9589. height: math.unit(6, "feet"),
  9590. name: "Side",
  9591. image: {
  9592. source: "./media/characters/evander/side.svg",
  9593. extra: 877 / 477
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(0.83, "meters"),
  9601. default: true
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(12, "feet"),
  9610. weight: math.unit(1000, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9614. extra: 1762 / 1611
  9615. }
  9616. },
  9617. back: {
  9618. height: math.unit(12, "feet"),
  9619. weight: math.unit(1000, "lb"),
  9620. name: "Back",
  9621. image: {
  9622. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9623. extra: 1762 / 1611
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(12, "feet"),
  9631. default: true
  9632. },
  9633. {
  9634. name: "Kaiju",
  9635. height: math.unit(150, "feet")
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9641. {
  9642. front: {
  9643. height: math.unit(6, "feet"),
  9644. weight: math.unit(150, "lb"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/zero-alurus/front.svg"
  9648. }
  9649. },
  9650. back: {
  9651. height: math.unit(6, "feet"),
  9652. weight: math.unit(150, "lb"),
  9653. name: "Back",
  9654. image: {
  9655. source: "./media/characters/zero-alurus/back.svg"
  9656. }
  9657. },
  9658. },
  9659. [
  9660. {
  9661. name: "Normal",
  9662. height: math.unit(5 + 10 / 12, "feet")
  9663. },
  9664. {
  9665. name: "Macro",
  9666. height: math.unit(60, "feet"),
  9667. default: true
  9668. },
  9669. {
  9670. name: "Macro+",
  9671. height: math.unit(450, "feet")
  9672. },
  9673. ]
  9674. ))
  9675. characterMakers.push(() => makeCharacter(
  9676. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9677. {
  9678. front: {
  9679. height: math.unit(6, "feet"),
  9680. weight: math.unit(200, "lb"),
  9681. name: "Front",
  9682. image: {
  9683. source: "./media/characters/mega-shi/front.svg",
  9684. extra: 1279 / 1250,
  9685. bottom: 0.02
  9686. }
  9687. },
  9688. back: {
  9689. height: math.unit(6, "feet"),
  9690. weight: math.unit(200, "lb"),
  9691. name: "Back",
  9692. image: {
  9693. source: "./media/characters/mega-shi/back.svg",
  9694. extra: 1279 / 1250,
  9695. bottom: 0.02
  9696. }
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Micro",
  9702. height: math.unit(16 + 6 / 12, "feet")
  9703. },
  9704. {
  9705. name: "Third Dimension",
  9706. height: math.unit(40, "meters")
  9707. },
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(660, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Megamacro",
  9715. height: math.unit(10, "miles")
  9716. },
  9717. {
  9718. name: "Planetary Launch",
  9719. height: math.unit(500, "miles")
  9720. },
  9721. {
  9722. name: "Interstellar",
  9723. height: math.unit(1e9, "miles")
  9724. },
  9725. {
  9726. name: "Leaving the Universe",
  9727. height: math.unit(1, "gigaparsec")
  9728. },
  9729. {
  9730. name: "Travelling Universes",
  9731. height: math.unit(30e15, "parsecs")
  9732. },
  9733. ]
  9734. ))
  9735. characterMakers.push(() => makeCharacter(
  9736. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9737. {
  9738. front: {
  9739. height: math.unit(6, "feet"),
  9740. weight: math.unit(150, "lb"),
  9741. name: "Front",
  9742. image: {
  9743. source: "./media/characters/odyssey/front.svg",
  9744. extra: 1782 / 1582,
  9745. bottom: 0.01
  9746. }
  9747. },
  9748. side: {
  9749. height: math.unit(5.7, "feet"),
  9750. weight: math.unit(140, "lb"),
  9751. name: "Side",
  9752. image: {
  9753. source: "./media/characters/odyssey/side.svg",
  9754. extra: 6462 / 5700
  9755. }
  9756. },
  9757. },
  9758. [
  9759. {
  9760. name: "Normal",
  9761. height: math.unit(5 + 4 / 12, "feet")
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(1, "km")
  9766. },
  9767. {
  9768. name: "Megamacro",
  9769. height: math.unit(3000, "km")
  9770. },
  9771. {
  9772. name: "Gigamacro",
  9773. height: math.unit(1, "AU"),
  9774. default: true
  9775. },
  9776. {
  9777. name: "Omniversal",
  9778. height: math.unit(100e14, "lightyears")
  9779. },
  9780. ]
  9781. ))
  9782. characterMakers.push(() => makeCharacter(
  9783. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9784. {
  9785. front: {
  9786. height: math.unit(6, "feet"),
  9787. weight: math.unit(300, "lb"),
  9788. name: "Front",
  9789. image: {
  9790. source: "./media/characters/mekuto/front.svg",
  9791. extra: 921 / 832,
  9792. bottom: 0.03
  9793. }
  9794. },
  9795. hand: {
  9796. height: math.unit(6 / 10.24, "feet"),
  9797. name: "Hand",
  9798. image: {
  9799. source: "./media/characters/mekuto/hand.svg"
  9800. }
  9801. },
  9802. foot: {
  9803. height: math.unit(6 / 5.05, "feet"),
  9804. name: "Foot",
  9805. image: {
  9806. source: "./media/characters/mekuto/foot.svg"
  9807. }
  9808. },
  9809. },
  9810. [
  9811. {
  9812. name: "Minimicro",
  9813. height: math.unit(0.2, "inches")
  9814. },
  9815. {
  9816. name: "Micro",
  9817. height: math.unit(1.5, "inches")
  9818. },
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(5 + 11 / 12, "feet"),
  9822. default: true
  9823. },
  9824. {
  9825. name: "Minimacro",
  9826. height: math.unit(17 + 9 / 12, "feet")
  9827. },
  9828. {
  9829. name: "Macro",
  9830. height: math.unit(177.5, "feet")
  9831. },
  9832. {
  9833. name: "Megamacro",
  9834. height: math.unit(152, "miles")
  9835. },
  9836. ]
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9840. {
  9841. front: {
  9842. height: math.unit(6.5, "inches"),
  9843. weight: math.unit(13, "oz"),
  9844. name: "Front",
  9845. image: {
  9846. source: "./media/characters/dafydd-tomos/front.svg",
  9847. extra: 2990 / 2603,
  9848. bottom: 0.03
  9849. }
  9850. },
  9851. },
  9852. [
  9853. {
  9854. name: "Micro",
  9855. height: math.unit(6.5, "inches"),
  9856. default: true
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9862. {
  9863. front: {
  9864. height: math.unit(6, "feet"),
  9865. weight: math.unit(150, "lb"),
  9866. name: "Front",
  9867. image: {
  9868. source: "./media/characters/splinter/front.svg",
  9869. extra: 2990 / 2882,
  9870. bottom: 0.04
  9871. }
  9872. },
  9873. back: {
  9874. height: math.unit(6, "feet"),
  9875. weight: math.unit(150, "lb"),
  9876. name: "Back",
  9877. image: {
  9878. source: "./media/characters/splinter/back.svg",
  9879. extra: 2990 / 2882,
  9880. bottom: 0.04
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(6, "feet")
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(230, "meters"),
  9892. default: true
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9898. {
  9899. front: {
  9900. height: math.unit(4 + 10 / 12, "feet"),
  9901. weight: math.unit(480, "lb"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/snow-gabumon/front.svg",
  9905. extra: 1140 / 963,
  9906. bottom: 0.058
  9907. }
  9908. },
  9909. back: {
  9910. height: math.unit(4 + 10 / 12, "feet"),
  9911. weight: math.unit(480, "lb"),
  9912. name: "Back",
  9913. image: {
  9914. source: "./media/characters/snow-gabumon/back.svg",
  9915. extra: 1115 / 962,
  9916. bottom: 0.041
  9917. }
  9918. },
  9919. frontUndresed: {
  9920. height: math.unit(4 + 10 / 12, "feet"),
  9921. weight: math.unit(480, "lb"),
  9922. name: "Front (Undressed)",
  9923. image: {
  9924. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9925. extra: 1061 / 960,
  9926. bottom: 0.045
  9927. }
  9928. },
  9929. },
  9930. [
  9931. {
  9932. name: "Micro",
  9933. height: math.unit(1, "inch")
  9934. },
  9935. {
  9936. name: "Normal",
  9937. height: math.unit(4 + 10 / 12, "feet"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Macro",
  9942. height: math.unit(200, "feet")
  9943. },
  9944. {
  9945. name: "Megamacro",
  9946. height: math.unit(120, "miles")
  9947. },
  9948. {
  9949. name: "Gigamacro",
  9950. height: math.unit(9800, "miles")
  9951. },
  9952. ]
  9953. ))
  9954. characterMakers.push(() => makeCharacter(
  9955. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9956. {
  9957. front: {
  9958. height: math.unit(1.7, "meters"),
  9959. weight: math.unit(140, "lb"),
  9960. name: "Front",
  9961. image: {
  9962. source: "./media/characters/moody/front.svg",
  9963. extra: 3226 / 3007,
  9964. bottom: 0.087
  9965. }
  9966. },
  9967. },
  9968. [
  9969. {
  9970. name: "Micro",
  9971. height: math.unit(1, "mm")
  9972. },
  9973. {
  9974. name: "Normal",
  9975. height: math.unit(1.7, "meters"),
  9976. default: true
  9977. },
  9978. {
  9979. name: "Macro",
  9980. height: math.unit(80, "meters")
  9981. },
  9982. {
  9983. name: "Macro+",
  9984. height: math.unit(500, "meters")
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(6, "feet"),
  9993. weight: math.unit(150, "lb"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/zyas/front.svg",
  9997. extra: 1180 / 1120,
  9998. bottom: 0.045
  9999. }
  10000. },
  10001. },
  10002. [
  10003. {
  10004. name: "Normal",
  10005. height: math.unit(10, "feet"),
  10006. default: true
  10007. },
  10008. {
  10009. name: "Macro",
  10010. height: math.unit(500, "feet")
  10011. },
  10012. {
  10013. name: "Megamacro",
  10014. height: math.unit(5, "miles")
  10015. },
  10016. {
  10017. name: "Teramacro",
  10018. height: math.unit(150000, "miles")
  10019. },
  10020. ]
  10021. ))
  10022. characterMakers.push(() => makeCharacter(
  10023. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10024. {
  10025. front: {
  10026. height: math.unit(6, "feet"),
  10027. weight: math.unit(150, "lb"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/cuon/front.svg",
  10031. extra: 1390 / 1320,
  10032. bottom: 0.008
  10033. }
  10034. },
  10035. },
  10036. [
  10037. {
  10038. name: "Micro",
  10039. height: math.unit(3, "inches")
  10040. },
  10041. {
  10042. name: "Normal",
  10043. height: math.unit(18 + 9 / 12, "feet"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Macro",
  10048. height: math.unit(360, "feet")
  10049. },
  10050. {
  10051. name: "Megamacro",
  10052. height: math.unit(360, "miles")
  10053. },
  10054. ]
  10055. ))
  10056. characterMakers.push(() => makeCharacter(
  10057. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10058. {
  10059. front: {
  10060. height: math.unit(2.4, "meters"),
  10061. weight: math.unit(70, "kg"),
  10062. name: "Front",
  10063. image: {
  10064. source: "./media/characters/nyanuxk/front.svg",
  10065. extra: 1172 / 1084,
  10066. bottom: 0.065
  10067. }
  10068. },
  10069. side: {
  10070. height: math.unit(2.4, "meters"),
  10071. weight: math.unit(70, "kg"),
  10072. name: "Side",
  10073. image: {
  10074. source: "./media/characters/nyanuxk/side.svg",
  10075. extra: 1190 / 1132,
  10076. bottom: 0.007
  10077. }
  10078. },
  10079. back: {
  10080. height: math.unit(2.4, "meters"),
  10081. weight: math.unit(70, "kg"),
  10082. name: "Back",
  10083. image: {
  10084. source: "./media/characters/nyanuxk/back.svg",
  10085. extra: 1200 / 1141,
  10086. bottom: 0.015
  10087. }
  10088. },
  10089. foot: {
  10090. height: math.unit(0.52, "meters"),
  10091. name: "Foot",
  10092. image: {
  10093. source: "./media/characters/nyanuxk/foot.svg"
  10094. }
  10095. },
  10096. },
  10097. [
  10098. {
  10099. name: "Micro",
  10100. height: math.unit(2, "cm")
  10101. },
  10102. {
  10103. name: "Normal",
  10104. height: math.unit(2.4, "meters"),
  10105. default: true
  10106. },
  10107. {
  10108. name: "Smaller Macro",
  10109. height: math.unit(120, "meters")
  10110. },
  10111. {
  10112. name: "Bigger Macro",
  10113. height: math.unit(1.2, "km")
  10114. },
  10115. {
  10116. name: "Megamacro",
  10117. height: math.unit(15, "kilometers")
  10118. },
  10119. {
  10120. name: "Gigamacro",
  10121. height: math.unit(2000, "km")
  10122. },
  10123. {
  10124. name: "Teramacro",
  10125. height: math.unit(500000, "km")
  10126. },
  10127. ]
  10128. ))
  10129. characterMakers.push(() => makeCharacter(
  10130. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10131. {
  10132. side: {
  10133. height: math.unit(6, "feet"),
  10134. name: "Side",
  10135. image: {
  10136. source: "./media/characters/ailbhe/side.svg",
  10137. extra: 757 / 464,
  10138. bottom: 0.041
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(1.07, "meters"),
  10146. default: true
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10152. {
  10153. front: {
  10154. height: math.unit(6, "feet"),
  10155. weight: math.unit(120, "kg"),
  10156. name: "Front",
  10157. image: {
  10158. source: "./media/characters/zevulfius/front.svg",
  10159. extra: 965 / 903
  10160. }
  10161. },
  10162. side: {
  10163. height: math.unit(6, "feet"),
  10164. weight: math.unit(120, "kg"),
  10165. name: "Side",
  10166. image: {
  10167. source: "./media/characters/zevulfius/side.svg",
  10168. extra: 939 / 900
  10169. }
  10170. },
  10171. back: {
  10172. height: math.unit(6, "feet"),
  10173. weight: math.unit(120, "kg"),
  10174. name: "Back",
  10175. image: {
  10176. source: "./media/characters/zevulfius/back.svg",
  10177. extra: 918 / 854,
  10178. bottom: 0.005
  10179. }
  10180. },
  10181. foot: {
  10182. height: math.unit(6 / 3.72, "feet"),
  10183. name: "Foot",
  10184. image: {
  10185. source: "./media/characters/zevulfius/foot.svg"
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Macro",
  10192. height: math.unit(750, "meters")
  10193. },
  10194. {
  10195. name: "Megamacro",
  10196. height: math.unit(20, "km"),
  10197. default: true
  10198. },
  10199. {
  10200. name: "Gigamacro",
  10201. height: math.unit(2000, "km")
  10202. },
  10203. {
  10204. name: "Teramacro",
  10205. height: math.unit(250000, "km")
  10206. },
  10207. ]
  10208. ))
  10209. characterMakers.push(() => makeCharacter(
  10210. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10211. {
  10212. front: {
  10213. height: math.unit(100, "feet"),
  10214. weight: math.unit(350, "kg"),
  10215. name: "Front",
  10216. image: {
  10217. source: "./media/characters/rikes/front.svg",
  10218. extra: 1565 / 1483,
  10219. bottom: 0.017
  10220. }
  10221. },
  10222. },
  10223. [
  10224. {
  10225. name: "Macro",
  10226. height: math.unit(100, "feet"),
  10227. default: true
  10228. },
  10229. ]
  10230. ))
  10231. characterMakers.push(() => makeCharacter(
  10232. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10233. {
  10234. anthro: {
  10235. height: math.unit(8, "feet"),
  10236. weight: math.unit(120, "kg"),
  10237. name: "Anthro",
  10238. image: {
  10239. source: "./media/characters/adam-silver-mane/anthro.svg",
  10240. extra: 5743 / 5339,
  10241. bottom: 0.07
  10242. }
  10243. },
  10244. taur: {
  10245. height: math.unit(16, "feet"),
  10246. weight: math.unit(1500, "kg"),
  10247. name: "Taur",
  10248. image: {
  10249. source: "./media/characters/adam-silver-mane/taur.svg",
  10250. extra: 1713 / 1571,
  10251. bottom: 0.01
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Normal",
  10258. height: math.unit(8, "feet")
  10259. },
  10260. {
  10261. name: "Minimacro",
  10262. height: math.unit(80, "feet")
  10263. },
  10264. {
  10265. name: "Macro",
  10266. height: math.unit(800, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Megamacro",
  10271. height: math.unit(8000, "feet")
  10272. },
  10273. {
  10274. name: "Gigamacro",
  10275. height: math.unit(800, "miles")
  10276. },
  10277. {
  10278. name: "Teramacro",
  10279. height: math.unit(80000, "miles")
  10280. },
  10281. {
  10282. name: "Celestial",
  10283. height: math.unit(8e6, "miles")
  10284. },
  10285. {
  10286. name: "Star Dragon",
  10287. height: math.unit(800000, "parsecs")
  10288. },
  10289. {
  10290. name: "Godly",
  10291. height: math.unit(800, "teraparsecs")
  10292. },
  10293. ]
  10294. ))
  10295. characterMakers.push(() => makeCharacter(
  10296. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10297. {
  10298. front: {
  10299. height: math.unit(6, "feet"),
  10300. weight: math.unit(150, "lb"),
  10301. name: "Front",
  10302. image: {
  10303. source: "./media/characters/ky'owin/front.svg",
  10304. extra: 3888 / 3068,
  10305. bottom: 0.015
  10306. }
  10307. },
  10308. },
  10309. [
  10310. {
  10311. name: "Normal",
  10312. height: math.unit(6 + 8 / 12, "feet")
  10313. },
  10314. {
  10315. name: "Large",
  10316. height: math.unit(68, "feet")
  10317. },
  10318. {
  10319. name: "Macro",
  10320. height: math.unit(132, "feet")
  10321. },
  10322. {
  10323. name: "Macro+",
  10324. height: math.unit(340, "feet")
  10325. },
  10326. {
  10327. name: "Macro++",
  10328. height: math.unit(680, "feet"),
  10329. default: true
  10330. },
  10331. {
  10332. name: "Megamacro",
  10333. height: math.unit(1, "mile")
  10334. },
  10335. {
  10336. name: "Megamacro+",
  10337. height: math.unit(10, "miles")
  10338. },
  10339. ]
  10340. ))
  10341. characterMakers.push(() => makeCharacter(
  10342. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10343. {
  10344. front: {
  10345. height: math.unit(4, "feet"),
  10346. weight: math.unit(50, "lb"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/mal/front.svg",
  10350. extra: 785 / 724,
  10351. bottom: 0.07
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Micro",
  10358. height: math.unit(4, "inches")
  10359. },
  10360. {
  10361. name: "Normal",
  10362. height: math.unit(4, "feet"),
  10363. default: true
  10364. },
  10365. {
  10366. name: "Macro",
  10367. height: math.unit(200, "feet")
  10368. },
  10369. ]
  10370. ))
  10371. characterMakers.push(() => makeCharacter(
  10372. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10373. {
  10374. front: {
  10375. height: math.unit(6, "feet"),
  10376. weight: math.unit(150, "lb"),
  10377. name: "Front",
  10378. image: {
  10379. source: "./media/characters/jordan-deware/front.svg",
  10380. extra: 1191 / 1012
  10381. }
  10382. },
  10383. },
  10384. [
  10385. {
  10386. name: "Nano",
  10387. height: math.unit(0.01, "mm")
  10388. },
  10389. {
  10390. name: "Minimicro",
  10391. height: math.unit(1, "mm")
  10392. },
  10393. {
  10394. name: "Micro",
  10395. height: math.unit(0.5, "inches")
  10396. },
  10397. {
  10398. name: "Normal",
  10399. height: math.unit(4, "feet"),
  10400. default: true
  10401. },
  10402. {
  10403. name: "Minimacro",
  10404. height: math.unit(40, "meters")
  10405. },
  10406. {
  10407. name: "Small Macro",
  10408. height: math.unit(400, "meters")
  10409. },
  10410. {
  10411. name: "Macro",
  10412. height: math.unit(4, "miles")
  10413. },
  10414. {
  10415. name: "Megamacro",
  10416. height: math.unit(40, "miles")
  10417. },
  10418. {
  10419. name: "Megamacro+",
  10420. height: math.unit(400, "miles")
  10421. },
  10422. {
  10423. name: "Gigamacro",
  10424. height: math.unit(400000, "miles")
  10425. },
  10426. ]
  10427. ))
  10428. characterMakers.push(() => makeCharacter(
  10429. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10430. {
  10431. side: {
  10432. height: math.unit(6, "feet"),
  10433. weight: math.unit(150, "lb"),
  10434. name: "Side",
  10435. image: {
  10436. source: "./media/characters/kimiko/side.svg",
  10437. extra: 600 / 358
  10438. }
  10439. },
  10440. },
  10441. [
  10442. {
  10443. name: "Normal",
  10444. height: math.unit(15, "feet"),
  10445. default: true
  10446. },
  10447. {
  10448. name: "Macro",
  10449. height: math.unit(220, "feet")
  10450. },
  10451. {
  10452. name: "Macro+",
  10453. height: math.unit(1450, "feet")
  10454. },
  10455. {
  10456. name: "Megamacro",
  10457. height: math.unit(11500, "feet")
  10458. },
  10459. {
  10460. name: "Gigamacro",
  10461. height: math.unit(9500, "miles")
  10462. },
  10463. {
  10464. name: "Teramacro",
  10465. height: math.unit(2208005005, "miles")
  10466. },
  10467. {
  10468. name: "Examacro",
  10469. height: math.unit(2750, "parsecs")
  10470. },
  10471. {
  10472. name: "Zettamacro",
  10473. height: math.unit(101500, "parsecs")
  10474. },
  10475. ]
  10476. ))
  10477. characterMakers.push(() => makeCharacter(
  10478. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10479. {
  10480. front: {
  10481. height: math.unit(6, "feet"),
  10482. weight: math.unit(70, "kg"),
  10483. name: "Front",
  10484. image: {
  10485. source: "./media/characters/andrew-sleepy/front.svg"
  10486. }
  10487. },
  10488. side: {
  10489. height: math.unit(6, "feet"),
  10490. weight: math.unit(70, "kg"),
  10491. name: "Side",
  10492. image: {
  10493. source: "./media/characters/andrew-sleepy/side.svg"
  10494. }
  10495. },
  10496. },
  10497. [
  10498. {
  10499. name: "Micro",
  10500. height: math.unit(1, "mm"),
  10501. default: true
  10502. },
  10503. ]
  10504. ))
  10505. characterMakers.push(() => makeCharacter(
  10506. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10507. {
  10508. front: {
  10509. height: math.unit(6, "feet"),
  10510. weight: math.unit(150, "lb"),
  10511. name: "Front",
  10512. image: {
  10513. source: "./media/characters/judio/front.svg",
  10514. extra: 1258 / 1110
  10515. }
  10516. },
  10517. },
  10518. [
  10519. {
  10520. name: "Normal",
  10521. height: math.unit(5 + 6 / 12, "feet")
  10522. },
  10523. {
  10524. name: "Macro",
  10525. height: math.unit(1000, "feet"),
  10526. default: true
  10527. },
  10528. {
  10529. name: "Megamacro",
  10530. height: math.unit(10, "miles")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(6, "feet"),
  10539. weight: math.unit(68, "kg"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/nomaxice/front.svg",
  10543. extra: 1498 / 1073,
  10544. bottom: 0.075
  10545. }
  10546. },
  10547. foot: {
  10548. height: math.unit(1.1, "feet"),
  10549. name: "Foot",
  10550. image: {
  10551. source: "./media/characters/nomaxice/foot.svg"
  10552. }
  10553. },
  10554. },
  10555. [
  10556. {
  10557. name: "Micro",
  10558. height: math.unit(8, "cm")
  10559. },
  10560. {
  10561. name: "Norm",
  10562. height: math.unit(1.82, "m")
  10563. },
  10564. {
  10565. name: "Norm+",
  10566. height: math.unit(8.8, "feet")
  10567. },
  10568. {
  10569. name: "Big",
  10570. height: math.unit(8, "meters"),
  10571. default: true
  10572. },
  10573. {
  10574. name: "Macro",
  10575. height: math.unit(18, "meters")
  10576. },
  10577. {
  10578. name: "Macro+",
  10579. height: math.unit(88, "meters")
  10580. },
  10581. ]
  10582. ))
  10583. characterMakers.push(() => makeCharacter(
  10584. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10585. {
  10586. front: {
  10587. height: math.unit(12, "feet"),
  10588. weight: math.unit(1.5, "tons"),
  10589. name: "Front",
  10590. image: {
  10591. source: "./media/characters/dydros/front.svg",
  10592. extra: 863 / 800,
  10593. bottom: 0.015
  10594. }
  10595. },
  10596. back: {
  10597. height: math.unit(12, "feet"),
  10598. weight: math.unit(1.5, "tons"),
  10599. name: "Back",
  10600. image: {
  10601. source: "./media/characters/dydros/back.svg",
  10602. extra: 900 / 843,
  10603. bottom: 0.005
  10604. }
  10605. },
  10606. },
  10607. [
  10608. {
  10609. name: "Normal",
  10610. height: math.unit(12, "feet"),
  10611. default: true
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10617. {
  10618. front: {
  10619. height: math.unit(6, "feet"),
  10620. weight: math.unit(100, "kg"),
  10621. name: "Front",
  10622. image: {
  10623. source: "./media/characters/riggi/front.svg",
  10624. extra: 5787 / 5303
  10625. }
  10626. },
  10627. hyper: {
  10628. height: math.unit(6 * 5 / 3, "feet"),
  10629. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10630. name: "Hyper",
  10631. image: {
  10632. source: "./media/characters/riggi/hyper.svg",
  10633. extra: 3595 / 3485
  10634. }
  10635. },
  10636. },
  10637. [
  10638. {
  10639. name: "Small Macro",
  10640. height: math.unit(50, "feet")
  10641. },
  10642. {
  10643. name: "Default",
  10644. height: math.unit(200, "feet"),
  10645. default: true
  10646. },
  10647. {
  10648. name: "Loom",
  10649. height: math.unit(10000, "feet")
  10650. },
  10651. {
  10652. name: "Cruising Altitude",
  10653. height: math.unit(30000, "feet")
  10654. },
  10655. {
  10656. name: "Megamacro",
  10657. height: math.unit(100, "miles")
  10658. },
  10659. {
  10660. name: "Continent Sized",
  10661. height: math.unit(2800, "miles")
  10662. },
  10663. {
  10664. name: "Earth Sized",
  10665. height: math.unit(8000, "miles")
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10671. {
  10672. front: {
  10673. height: math.unit(6, "feet"),
  10674. weight: math.unit(250, "lb"),
  10675. name: "Front",
  10676. image: {
  10677. source: "./media/characters/alexi/front.svg",
  10678. extra: 3483 / 3291,
  10679. bottom: 0.04
  10680. }
  10681. },
  10682. back: {
  10683. height: math.unit(6, "feet"),
  10684. weight: math.unit(250, "lb"),
  10685. name: "Back",
  10686. image: {
  10687. source: "./media/characters/alexi/back.svg",
  10688. extra: 3533 / 3356,
  10689. bottom: 0.021
  10690. }
  10691. },
  10692. frontTransforming: {
  10693. height: math.unit(8.58, "feet"),
  10694. weight: math.unit(1300, "lb"),
  10695. name: "Transforming",
  10696. image: {
  10697. source: "./media/characters/alexi/front-transforming.svg",
  10698. extra: 437 / 409,
  10699. bottom: 19 / 458.66
  10700. }
  10701. },
  10702. frontTransformed: {
  10703. height: math.unit(12.5, "feet"),
  10704. weight: math.unit(4000, "lb"),
  10705. name: "Transformed",
  10706. image: {
  10707. source: "./media/characters/alexi/front-transformed.svg",
  10708. extra: 639 / 614,
  10709. bottom: 30.55 / 671
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Normal",
  10716. height: math.unit(14, "feet"),
  10717. default: true
  10718. },
  10719. {
  10720. name: "Minimacro",
  10721. height: math.unit(30, "meters")
  10722. },
  10723. {
  10724. name: "Macro",
  10725. height: math.unit(500, "meters")
  10726. },
  10727. {
  10728. name: "Megamacro",
  10729. height: math.unit(9000, "km")
  10730. },
  10731. {
  10732. name: "Teramacro",
  10733. height: math.unit(384000, "km")
  10734. },
  10735. ]
  10736. ))
  10737. characterMakers.push(() => makeCharacter(
  10738. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10739. {
  10740. front: {
  10741. height: math.unit(6, "feet"),
  10742. weight: math.unit(150, "lb"),
  10743. name: "Front",
  10744. image: {
  10745. source: "./media/characters/kayroo/front.svg",
  10746. extra: 1153 / 1038,
  10747. bottom: 0.06
  10748. }
  10749. },
  10750. foot: {
  10751. height: math.unit(6, "feet"),
  10752. weight: math.unit(150, "lb"),
  10753. name: "Foot",
  10754. image: {
  10755. source: "./media/characters/kayroo/foot.svg"
  10756. }
  10757. },
  10758. },
  10759. [
  10760. {
  10761. name: "Normal",
  10762. height: math.unit(8, "feet"),
  10763. default: true
  10764. },
  10765. {
  10766. name: "Minimacro",
  10767. height: math.unit(250, "feet")
  10768. },
  10769. {
  10770. name: "Macro",
  10771. height: math.unit(2800, "feet")
  10772. },
  10773. {
  10774. name: "Megamacro",
  10775. height: math.unit(5200, "feet")
  10776. },
  10777. {
  10778. name: "Gigamacro",
  10779. height: math.unit(27000, "feet")
  10780. },
  10781. {
  10782. name: "Omega",
  10783. height: math.unit(45000, "feet")
  10784. },
  10785. ]
  10786. ))
  10787. characterMakers.push(() => makeCharacter(
  10788. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10789. {
  10790. front: {
  10791. height: math.unit(18, "feet"),
  10792. weight: math.unit(5800, "lb"),
  10793. name: "Front",
  10794. image: {
  10795. source: "./media/characters/rhys/front.svg",
  10796. extra: 3386 / 3090,
  10797. bottom: 0.07
  10798. }
  10799. },
  10800. },
  10801. [
  10802. {
  10803. name: "Normal",
  10804. height: math.unit(18, "feet"),
  10805. default: true
  10806. },
  10807. {
  10808. name: "Working Size",
  10809. height: math.unit(200, "feet")
  10810. },
  10811. {
  10812. name: "Demolition Size",
  10813. height: math.unit(2000, "feet")
  10814. },
  10815. {
  10816. name: "Maximum Licensed Size",
  10817. height: math.unit(5, "miles")
  10818. },
  10819. {
  10820. name: "Maximum Observed Size",
  10821. height: math.unit(10, "yottameters")
  10822. },
  10823. ]
  10824. ))
  10825. characterMakers.push(() => makeCharacter(
  10826. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10827. {
  10828. front: {
  10829. height: math.unit(6, "feet"),
  10830. weight: math.unit(250, "lb"),
  10831. name: "Front",
  10832. image: {
  10833. source: "./media/characters/toto/front.svg",
  10834. extra: 527 / 479,
  10835. bottom: 0.05
  10836. }
  10837. },
  10838. },
  10839. [
  10840. {
  10841. name: "Micro",
  10842. height: math.unit(3, "feet")
  10843. },
  10844. {
  10845. name: "Normal",
  10846. height: math.unit(10, "feet")
  10847. },
  10848. {
  10849. name: "Macro",
  10850. height: math.unit(150, "feet"),
  10851. default: true
  10852. },
  10853. {
  10854. name: "Megamacro",
  10855. height: math.unit(1200, "feet")
  10856. },
  10857. ]
  10858. ))
  10859. characterMakers.push(() => makeCharacter(
  10860. { name: "King", species: ["lion"], tags: ["anthro"] },
  10861. {
  10862. back: {
  10863. height: math.unit(6, "feet"),
  10864. weight: math.unit(150, "lb"),
  10865. name: "Back",
  10866. image: {
  10867. source: "./media/characters/king/back.svg"
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Micro",
  10874. height: math.unit(2, "inches")
  10875. },
  10876. {
  10877. name: "Normal",
  10878. height: math.unit(8, "feet")
  10879. },
  10880. {
  10881. name: "Macro",
  10882. height: math.unit(200, "feet"),
  10883. default: true
  10884. },
  10885. {
  10886. name: "Megamacro",
  10887. height: math.unit(50, "miles")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10893. {
  10894. anthro: {
  10895. height: math.unit(6 + 5 / 12, "feet"),
  10896. weight: math.unit(280, "lb"),
  10897. name: "Anthro",
  10898. image: {
  10899. source: "./media/characters/cordite/anthro.svg",
  10900. extra: 1986 / 1905,
  10901. bottom: 0.025
  10902. }
  10903. },
  10904. feral: {
  10905. height: math.unit(2, "feet"),
  10906. weight: math.unit(90, "lb"),
  10907. name: "Feral",
  10908. image: {
  10909. source: "./media/characters/cordite/feral.svg",
  10910. extra: 1260 / 755,
  10911. bottom: 0.05
  10912. }
  10913. },
  10914. },
  10915. [
  10916. {
  10917. name: "Normal",
  10918. height: math.unit(6 + 5 / 12, "feet"),
  10919. default: true
  10920. },
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10925. {
  10926. front: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(150, "lb"),
  10929. name: "Front",
  10930. image: {
  10931. source: "./media/characters/pianostrong/front.svg",
  10932. extra: 6577 / 6254,
  10933. bottom: 0.02
  10934. }
  10935. },
  10936. side: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(150, "lb"),
  10939. name: "Side",
  10940. image: {
  10941. source: "./media/characters/pianostrong/side.svg",
  10942. extra: 6106 / 5730
  10943. }
  10944. },
  10945. back: {
  10946. height: math.unit(6, "feet"),
  10947. weight: math.unit(150, "lb"),
  10948. name: "Back",
  10949. image: {
  10950. source: "./media/characters/pianostrong/back.svg",
  10951. extra: 6085 / 5733,
  10952. bottom: 0.01
  10953. }
  10954. },
  10955. },
  10956. [
  10957. {
  10958. name: "Macro",
  10959. height: math.unit(100, "feet")
  10960. },
  10961. {
  10962. name: "Macro+",
  10963. height: math.unit(300, "feet"),
  10964. default: true
  10965. },
  10966. {
  10967. name: "Macro++",
  10968. height: math.unit(1000, "feet")
  10969. },
  10970. ]
  10971. ))
  10972. characterMakers.push(() => makeCharacter(
  10973. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10974. {
  10975. front: {
  10976. height: math.unit(6, "feet"),
  10977. weight: math.unit(150, "lb"),
  10978. name: "Front",
  10979. image: {
  10980. source: "./media/characters/kona/front.svg",
  10981. extra: 2960 / 2629,
  10982. bottom: 0.005
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Normal",
  10989. height: math.unit(11 + 8 / 12, "feet")
  10990. },
  10991. {
  10992. name: "Macro",
  10993. height: math.unit(850, "feet"),
  10994. default: true
  10995. },
  10996. {
  10997. name: "Macro+",
  10998. height: math.unit(1.5, "km"),
  10999. default: true
  11000. },
  11001. {
  11002. name: "Megamacro",
  11003. height: math.unit(80, "miles")
  11004. },
  11005. {
  11006. name: "Gigamacro",
  11007. height: math.unit(3500, "miles")
  11008. },
  11009. ]
  11010. ))
  11011. characterMakers.push(() => makeCharacter(
  11012. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11013. {
  11014. side: {
  11015. height: math.unit(1.9, "meters"),
  11016. weight: math.unit(326, "kg"),
  11017. name: "Side",
  11018. image: {
  11019. source: "./media/characters/levi/side.svg",
  11020. extra: 1704 / 1334,
  11021. bottom: 0.02
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(1.9, "meters"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Macro",
  11033. height: math.unit(20, "meters")
  11034. },
  11035. {
  11036. name: "Macro+",
  11037. height: math.unit(200, "meters")
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(2, "km")
  11042. },
  11043. {
  11044. name: "Megamacro+",
  11045. height: math.unit(20, "km")
  11046. },
  11047. {
  11048. name: "Gigamacro",
  11049. height: math.unit(2500, "km")
  11050. },
  11051. {
  11052. name: "Gigamacro+",
  11053. height: math.unit(120000, "km")
  11054. },
  11055. {
  11056. name: "Teramacro",
  11057. height: math.unit(7.77e6, "km")
  11058. },
  11059. ]
  11060. ))
  11061. characterMakers.push(() => makeCharacter(
  11062. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11063. {
  11064. front: {
  11065. height: math.unit(6 + 4 / 12, "feet"),
  11066. weight: math.unit(188, "lb"),
  11067. name: "Front",
  11068. image: {
  11069. source: "./media/characters/bmc/front.svg",
  11070. extra: 1067 / 1022,
  11071. bottom: 0.047
  11072. }
  11073. },
  11074. },
  11075. [
  11076. {
  11077. name: "Human-sized",
  11078. height: math.unit(6 + 4 / 12, "feet")
  11079. },
  11080. {
  11081. name: "Small",
  11082. height: math.unit(250, "feet")
  11083. },
  11084. {
  11085. name: "Normal",
  11086. height: math.unit(1250, "feet"),
  11087. default: true
  11088. },
  11089. {
  11090. name: "Good Day",
  11091. height: math.unit(88, "miles")
  11092. },
  11093. {
  11094. name: "Largest Measured Size",
  11095. height: math.unit(11.2e6, "lightyears")
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11101. {
  11102. front: {
  11103. height: math.unit(20, "feet"),
  11104. weight: math.unit(2016, "kg"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/sven-the-kaiju/front.svg",
  11108. extra: 1277/1250,
  11109. bottom: 35/1312
  11110. }
  11111. },
  11112. mouth: {
  11113. height: math.unit(1.85, "feet"),
  11114. name: "Mouth",
  11115. image: {
  11116. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Fairy",
  11123. height: math.unit(6, "inches")
  11124. },
  11125. {
  11126. name: "Normal",
  11127. height: math.unit(20, "feet"),
  11128. default: true
  11129. },
  11130. {
  11131. name: "Rampage",
  11132. height: math.unit(200, "feet")
  11133. },
  11134. {
  11135. name: "Archfey Forest Guardian",
  11136. height: math.unit(1, "mile")
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11142. {
  11143. front: {
  11144. height: math.unit(4, "meters"),
  11145. weight: math.unit(2, "tons"),
  11146. name: "Front",
  11147. image: {
  11148. source: "./media/characters/marik/front.svg",
  11149. extra: 1057 / 1003,
  11150. bottom: 0.08
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(4, "meters"),
  11158. default: true
  11159. },
  11160. {
  11161. name: "Macro",
  11162. height: math.unit(20, "meters")
  11163. },
  11164. {
  11165. name: "Megamacro",
  11166. height: math.unit(50, "km")
  11167. },
  11168. {
  11169. name: "Gigamacro",
  11170. height: math.unit(100, "km")
  11171. },
  11172. {
  11173. name: "Alpha Macro",
  11174. height: math.unit(7.88e7, "yottameters")
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11180. {
  11181. front: {
  11182. height: math.unit(6, "feet"),
  11183. weight: math.unit(110, "lb"),
  11184. name: "Front",
  11185. image: {
  11186. source: "./media/characters/mel/front.svg",
  11187. extra: 736 / 617,
  11188. bottom: 0.017
  11189. }
  11190. },
  11191. },
  11192. [
  11193. {
  11194. name: "Pico",
  11195. height: math.unit(3, "pm")
  11196. },
  11197. {
  11198. name: "Nano",
  11199. height: math.unit(3, "nm")
  11200. },
  11201. {
  11202. name: "Micro",
  11203. height: math.unit(0.3, "mm"),
  11204. default: true
  11205. },
  11206. {
  11207. name: "Micro+",
  11208. height: math.unit(3, "mm")
  11209. },
  11210. {
  11211. name: "Normal",
  11212. height: math.unit(5 + 10.5 / 12, "feet")
  11213. },
  11214. ]
  11215. ))
  11216. characterMakers.push(() => makeCharacter(
  11217. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11218. {
  11219. kaiju: {
  11220. height: math.unit(1.75, "meters"),
  11221. weight: math.unit(55, "kg"),
  11222. name: "Kaiju",
  11223. image: {
  11224. source: "./media/characters/lykonous/kaiju.svg",
  11225. extra: 1055 / 946,
  11226. bottom: 0.135
  11227. }
  11228. },
  11229. },
  11230. [
  11231. {
  11232. name: "Normal",
  11233. height: math.unit(2.5, "meters"),
  11234. default: true
  11235. },
  11236. {
  11237. name: "Kaiju Dragon",
  11238. height: math.unit(60, "meters")
  11239. },
  11240. {
  11241. name: "Mega Kaiju",
  11242. height: math.unit(120, "km")
  11243. },
  11244. {
  11245. name: "Giga Kaiju",
  11246. height: math.unit(200, "megameters")
  11247. },
  11248. {
  11249. name: "Terra Kaiju",
  11250. height: math.unit(400, "gigameters")
  11251. },
  11252. {
  11253. name: "Kaiju Dragon God",
  11254. height: math.unit(13000, "exaparsecs")
  11255. },
  11256. ]
  11257. ))
  11258. characterMakers.push(() => makeCharacter(
  11259. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11260. {
  11261. front: {
  11262. height: math.unit(6, "feet"),
  11263. weight: math.unit(150, "lb"),
  11264. name: "Front",
  11265. image: {
  11266. source: "./media/characters/blü/front.svg",
  11267. extra: 1883 / 1564,
  11268. bottom: 0.031
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Normal",
  11275. height: math.unit(13, "feet"),
  11276. default: true
  11277. },
  11278. {
  11279. name: "Big Boi",
  11280. height: math.unit(150, "meters")
  11281. },
  11282. {
  11283. name: "Mini Stomper",
  11284. height: math.unit(300, "meters")
  11285. },
  11286. {
  11287. name: "Macro",
  11288. height: math.unit(1000, "meters")
  11289. },
  11290. {
  11291. name: "Megamacro",
  11292. height: math.unit(11000, "meters")
  11293. },
  11294. {
  11295. name: "Gigamacro",
  11296. height: math.unit(11000, "km")
  11297. },
  11298. {
  11299. name: "Teramacro",
  11300. height: math.unit(420000, "km")
  11301. },
  11302. {
  11303. name: "Examacro",
  11304. height: math.unit(120, "parsecs")
  11305. },
  11306. {
  11307. name: "God Tho",
  11308. height: math.unit(98000000000, "parsecs")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11314. {
  11315. taurFront: {
  11316. height: math.unit(6, "feet"),
  11317. weight: math.unit(200, "lb"),
  11318. name: "Taur (Front)",
  11319. image: {
  11320. source: "./media/characters/scales/taur-front.svg",
  11321. extra: 1,
  11322. bottom: 0.05
  11323. }
  11324. },
  11325. taurBack: {
  11326. height: math.unit(6, "feet"),
  11327. weight: math.unit(200, "lb"),
  11328. name: "Taur (Back)",
  11329. image: {
  11330. source: "./media/characters/scales/taur-back.svg",
  11331. extra: 1,
  11332. bottom: 0.08
  11333. }
  11334. },
  11335. anthro: {
  11336. height: math.unit(6 * 7 / 12, "feet"),
  11337. weight: math.unit(100, "lb"),
  11338. name: "Anthro",
  11339. image: {
  11340. source: "./media/characters/scales/anthro.svg",
  11341. extra: 1,
  11342. bottom: 0.06
  11343. }
  11344. },
  11345. },
  11346. [
  11347. {
  11348. name: "Normal",
  11349. height: math.unit(12, "feet"),
  11350. default: true
  11351. },
  11352. ]
  11353. ))
  11354. characterMakers.push(() => makeCharacter(
  11355. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11356. {
  11357. front: {
  11358. height: math.unit(6, "feet"),
  11359. weight: math.unit(150, "lb"),
  11360. name: "Front",
  11361. image: {
  11362. source: "./media/characters/koragos/front.svg",
  11363. extra: 841 / 794,
  11364. bottom: 0.035
  11365. }
  11366. },
  11367. back: {
  11368. height: math.unit(6, "feet"),
  11369. weight: math.unit(150, "lb"),
  11370. name: "Back",
  11371. image: {
  11372. source: "./media/characters/koragos/back.svg",
  11373. extra: 841 / 810,
  11374. bottom: 0.022
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Normal",
  11381. height: math.unit(6 + 11 / 12, "feet"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Macro",
  11386. height: math.unit(490, "feet")
  11387. },
  11388. {
  11389. name: "Megamacro",
  11390. height: math.unit(10, "miles")
  11391. },
  11392. {
  11393. name: "Gigamacro",
  11394. height: math.unit(50, "miles")
  11395. },
  11396. ]
  11397. ))
  11398. characterMakers.push(() => makeCharacter(
  11399. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11400. {
  11401. front: {
  11402. height: math.unit(6, "feet"),
  11403. weight: math.unit(250, "lb"),
  11404. name: "Front",
  11405. image: {
  11406. source: "./media/characters/xylrem/front.svg",
  11407. extra: 3323 / 3050,
  11408. bottom: 0.065
  11409. }
  11410. },
  11411. },
  11412. [
  11413. {
  11414. name: "Micro",
  11415. height: math.unit(4, "feet")
  11416. },
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(16, "feet"),
  11420. default: true
  11421. },
  11422. {
  11423. name: "Macro",
  11424. height: math.unit(2720, "feet")
  11425. },
  11426. {
  11427. name: "Megamacro",
  11428. height: math.unit(25000, "miles")
  11429. },
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11434. {
  11435. front: {
  11436. height: math.unit(8, "feet"),
  11437. weight: math.unit(250, "kg"),
  11438. name: "Front",
  11439. image: {
  11440. source: "./media/characters/ikideru/front.svg",
  11441. extra: 930 / 870,
  11442. bottom: 0.087
  11443. }
  11444. },
  11445. back: {
  11446. height: math.unit(8, "feet"),
  11447. weight: math.unit(250, "kg"),
  11448. name: "Back",
  11449. image: {
  11450. source: "./media/characters/ikideru/back.svg",
  11451. extra: 919 / 852,
  11452. bottom: 0.055
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Rare",
  11459. height: math.unit(8, "feet"),
  11460. default: true
  11461. },
  11462. {
  11463. name: "Playful Loom",
  11464. height: math.unit(80, "feet")
  11465. },
  11466. {
  11467. name: "City Leaner",
  11468. height: math.unit(230, "feet")
  11469. },
  11470. {
  11471. name: "Megamacro",
  11472. height: math.unit(2500, "feet")
  11473. },
  11474. {
  11475. name: "Gigamacro",
  11476. height: math.unit(26400, "feet")
  11477. },
  11478. {
  11479. name: "Tectonic Shifter",
  11480. height: math.unit(1.7, "megameters")
  11481. },
  11482. {
  11483. name: "Planet Carer",
  11484. height: math.unit(21, "megameters")
  11485. },
  11486. {
  11487. name: "God",
  11488. height: math.unit(11157.22, "parsecs")
  11489. },
  11490. ]
  11491. ))
  11492. characterMakers.push(() => makeCharacter(
  11493. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11494. {
  11495. front: {
  11496. height: math.unit(6, "feet"),
  11497. weight: math.unit(120, "lb"),
  11498. name: "Front",
  11499. image: {
  11500. source: "./media/characters/neo/front.svg"
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Micro",
  11507. height: math.unit(2, "inches"),
  11508. default: true
  11509. },
  11510. {
  11511. name: "Human Size",
  11512. height: math.unit(5 + 8 / 12, "feet")
  11513. },
  11514. ]
  11515. ))
  11516. characterMakers.push(() => makeCharacter(
  11517. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11518. {
  11519. front: {
  11520. height: math.unit(13 + 10 / 12, "feet"),
  11521. weight: math.unit(5320, "lb"),
  11522. name: "Front",
  11523. image: {
  11524. source: "./media/characters/chauncey-chantz/front.svg",
  11525. extra: 1587 / 1435,
  11526. bottom: 0.02
  11527. }
  11528. },
  11529. },
  11530. [
  11531. {
  11532. name: "Normal",
  11533. height: math.unit(13 + 10 / 12, "feet"),
  11534. default: true
  11535. },
  11536. {
  11537. name: "Macro",
  11538. height: math.unit(45, "feet")
  11539. },
  11540. {
  11541. name: "Megamacro",
  11542. height: math.unit(250, "miles")
  11543. },
  11544. {
  11545. name: "Planetary",
  11546. height: math.unit(10000, "miles")
  11547. },
  11548. {
  11549. name: "Galactic",
  11550. height: math.unit(40000, "parsecs")
  11551. },
  11552. {
  11553. name: "Universal",
  11554. height: math.unit(1, "yottameter")
  11555. },
  11556. ]
  11557. ))
  11558. characterMakers.push(() => makeCharacter(
  11559. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11560. {
  11561. front: {
  11562. height: math.unit(6, "feet"),
  11563. weight: math.unit(150, "lb"),
  11564. name: "Front",
  11565. image: {
  11566. source: "./media/characters/epifox/front.svg",
  11567. extra: 1,
  11568. bottom: 0.075
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Micro",
  11575. height: math.unit(6, "inches")
  11576. },
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(12, "feet"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Macro",
  11584. height: math.unit(3810, "feet")
  11585. },
  11586. {
  11587. name: "Megamacro",
  11588. height: math.unit(500, "miles")
  11589. },
  11590. ]
  11591. ))
  11592. characterMakers.push(() => makeCharacter(
  11593. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11594. {
  11595. front: {
  11596. height: math.unit(1.8796, "m"),
  11597. weight: math.unit(230, "lb"),
  11598. name: "Front",
  11599. image: {
  11600. source: "./media/characters/colin-t/front.svg",
  11601. extra: 1272 / 1193,
  11602. bottom: 0.07
  11603. }
  11604. },
  11605. },
  11606. [
  11607. {
  11608. name: "Micro",
  11609. height: math.unit(0.571, "meters")
  11610. },
  11611. {
  11612. name: "Normal",
  11613. height: math.unit(1.8796, "meters"),
  11614. default: true
  11615. },
  11616. {
  11617. name: "Tall",
  11618. height: math.unit(4, "meters")
  11619. },
  11620. {
  11621. name: "Macro",
  11622. height: math.unit(67.241, "meters")
  11623. },
  11624. {
  11625. name: "Megamacro",
  11626. height: math.unit(371.856, "meters")
  11627. },
  11628. {
  11629. name: "Planetary",
  11630. height: math.unit(12631.5689, "km")
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11636. {
  11637. front: {
  11638. height: math.unit(1.85, "meters"),
  11639. weight: math.unit(80, "kg"),
  11640. name: "Front",
  11641. image: {
  11642. source: "./media/characters/matvei/front.svg",
  11643. extra: 614 / 594,
  11644. bottom: 0.01
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(1.85, "meters"),
  11652. default: true
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(5 + 9 / 12, "feet"),
  11661. weight: math.unit(70, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/quincy/front.svg",
  11665. extra: 3041 / 2751
  11666. }
  11667. },
  11668. back: {
  11669. height: math.unit(5 + 9 / 12, "feet"),
  11670. weight: math.unit(70, "lb"),
  11671. name: "Back",
  11672. image: {
  11673. source: "./media/characters/quincy/back.svg",
  11674. extra: 3041 / 2751
  11675. }
  11676. },
  11677. flying: {
  11678. height: math.unit(5 + 4 / 12, "feet"),
  11679. weight: math.unit(70, "lb"),
  11680. name: "Flying",
  11681. image: {
  11682. source: "./media/characters/quincy/flying.svg",
  11683. extra: 1044 / 930
  11684. }
  11685. },
  11686. },
  11687. [
  11688. {
  11689. name: "Micro",
  11690. height: math.unit(3, "cm")
  11691. },
  11692. {
  11693. name: "Normal",
  11694. height: math.unit(5 + 9 / 12, "feet")
  11695. },
  11696. {
  11697. name: "Macro",
  11698. height: math.unit(200, "meters"),
  11699. default: true
  11700. },
  11701. {
  11702. name: "Megamacro",
  11703. height: math.unit(1000, "meters")
  11704. },
  11705. ]
  11706. ))
  11707. characterMakers.push(() => makeCharacter(
  11708. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11709. {
  11710. front: {
  11711. height: math.unit(4 + 7 / 12, "feet"),
  11712. weight: math.unit(50, "lb"),
  11713. name: "Front",
  11714. image: {
  11715. source: "./media/characters/vanrel/front.svg",
  11716. extra: 1,
  11717. bottom: 0.02
  11718. }
  11719. },
  11720. frontAlt: {
  11721. height: math.unit(4 + 7 / 12, "feet"),
  11722. weight: math.unit(50, "lb"),
  11723. name: "Front-alt",
  11724. image: {
  11725. source: "./media/characters/vanrel/front-alt.svg",
  11726. extra: 1,
  11727. bottom: 15 / 1511
  11728. }
  11729. },
  11730. elemental: {
  11731. height: math.unit(3, "feet"),
  11732. weight: math.unit(50, "lb"),
  11733. name: "Elemental",
  11734. image: {
  11735. source: "./media/characters/vanrel/elemental.svg",
  11736. extra: 192.3 / 162.8,
  11737. bottom: 1.79 / 194.17
  11738. }
  11739. },
  11740. side: {
  11741. height: math.unit(4 + 7 / 12, "feet"),
  11742. weight: math.unit(50, "lb"),
  11743. name: "Side",
  11744. image: {
  11745. source: "./media/characters/vanrel/side.svg",
  11746. extra: 1,
  11747. bottom: 0.025
  11748. }
  11749. },
  11750. tome: {
  11751. height: math.unit(1.35, "feet"),
  11752. weight: math.unit(10, "lb"),
  11753. name: "Vanrel's Tome",
  11754. rename: true,
  11755. image: {
  11756. source: "./media/characters/vanrel/tome.svg"
  11757. }
  11758. },
  11759. beans: {
  11760. height: math.unit(0.89, "feet"),
  11761. name: "Beans",
  11762. image: {
  11763. source: "./media/characters/vanrel/beans.svg"
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Normal",
  11770. height: math.unit(4 + 7 / 12, "feet"),
  11771. default: true
  11772. },
  11773. ]
  11774. ))
  11775. characterMakers.push(() => makeCharacter(
  11776. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11777. {
  11778. front: {
  11779. height: math.unit(7 + 5 / 12, "feet"),
  11780. weight: math.unit(150, "lb"),
  11781. name: "Front",
  11782. image: {
  11783. source: "./media/characters/kuiper-vanrel/front.svg",
  11784. extra: 1118 / 1068,
  11785. bottom: 0.09
  11786. }
  11787. },
  11788. foot: {
  11789. height: math.unit(0.55, "meters"),
  11790. name: "Foot",
  11791. image: {
  11792. source: "./media/characters/kuiper-vanrel/foot.svg",
  11793. }
  11794. },
  11795. battle: {
  11796. height: math.unit(6.824, "feet"),
  11797. weight: math.unit(150, "lb"),
  11798. name: "Battle",
  11799. image: {
  11800. source: "./media/characters/kuiper-vanrel/battle.svg",
  11801. extra: 1466 / 1327,
  11802. bottom: 29 / 1492.5
  11803. }
  11804. },
  11805. battleAlt: {
  11806. height: math.unit(6.824, "feet"),
  11807. weight: math.unit(150, "lb"),
  11808. name: "Battle (Alt)",
  11809. image: {
  11810. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11811. extra: 2081 / 1965,
  11812. bottom: 40 / 2121
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Normal",
  11819. height: math.unit(7 + 5 / 12, "feet"),
  11820. default: true
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(8 + 5 / 12, "feet"),
  11829. weight: math.unit(150, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/keset-vanrel/front.svg",
  11833. extra: 1150 / 1084,
  11834. bottom: 0.05
  11835. }
  11836. },
  11837. hand: {
  11838. height: math.unit(0.6, "meters"),
  11839. name: "Hand",
  11840. image: {
  11841. source: "./media/characters/keset-vanrel/hand.svg"
  11842. }
  11843. },
  11844. foot: {
  11845. height: math.unit(0.94978, "meters"),
  11846. name: "Foot",
  11847. image: {
  11848. source: "./media/characters/keset-vanrel/foot.svg"
  11849. }
  11850. },
  11851. battle: {
  11852. height: math.unit(7.408, "feet"),
  11853. weight: math.unit(150, "lb"),
  11854. name: "Battle",
  11855. image: {
  11856. source: "./media/characters/keset-vanrel/battle.svg",
  11857. extra: 1890 / 1386,
  11858. bottom: 73.28 / 1970
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Normal",
  11865. height: math.unit(8 + 5 / 12, "feet"),
  11866. default: true
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(6, "feet"),
  11875. weight: math.unit(150, "lb"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/neos/front.svg",
  11879. extra: 1696 / 992,
  11880. bottom: 0.14
  11881. }
  11882. },
  11883. },
  11884. [
  11885. {
  11886. name: "Normal",
  11887. height: math.unit(54, "cm"),
  11888. default: true
  11889. },
  11890. {
  11891. name: "Macro",
  11892. height: math.unit(100, "m")
  11893. },
  11894. {
  11895. name: "Megamacro",
  11896. height: math.unit(10, "km")
  11897. },
  11898. {
  11899. name: "Megamacro+",
  11900. height: math.unit(100, "km")
  11901. },
  11902. {
  11903. name: "Gigamacro",
  11904. height: math.unit(100, "Mm")
  11905. },
  11906. {
  11907. name: "Teramacro",
  11908. height: math.unit(100, "Gm")
  11909. },
  11910. {
  11911. name: "Examacro",
  11912. height: math.unit(100, "Em")
  11913. },
  11914. {
  11915. name: "Godly",
  11916. height: math.unit(10000, "Ym")
  11917. },
  11918. {
  11919. name: "Beyond Godly",
  11920. height: math.unit(25, "multiverses")
  11921. },
  11922. ]
  11923. ))
  11924. characterMakers.push(() => makeCharacter(
  11925. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11926. {
  11927. feminine: {
  11928. height: math.unit(5, "feet"),
  11929. weight: math.unit(100, "lb"),
  11930. name: "Feminine",
  11931. image: {
  11932. source: "./media/characters/sammy-mouse/feminine.svg",
  11933. extra: 2526 / 2425,
  11934. bottom: 0.123
  11935. }
  11936. },
  11937. masculine: {
  11938. height: math.unit(5, "feet"),
  11939. weight: math.unit(100, "lb"),
  11940. name: "Masculine",
  11941. image: {
  11942. source: "./media/characters/sammy-mouse/masculine.svg",
  11943. extra: 2526 / 2425,
  11944. bottom: 0.123
  11945. }
  11946. },
  11947. },
  11948. [
  11949. {
  11950. name: "Micro",
  11951. height: math.unit(5, "inches")
  11952. },
  11953. {
  11954. name: "Normal",
  11955. height: math.unit(5, "feet"),
  11956. default: true
  11957. },
  11958. {
  11959. name: "Macro",
  11960. height: math.unit(60, "feet")
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(4, "feet"),
  11969. weight: math.unit(50, "lb"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/kole/front.svg",
  11973. extra: 1423 / 1303,
  11974. bottom: 0.025
  11975. }
  11976. },
  11977. back: {
  11978. height: math.unit(4, "feet"),
  11979. weight: math.unit(50, "lb"),
  11980. name: "Back",
  11981. image: {
  11982. source: "./media/characters/kole/back.svg",
  11983. extra: 1426 / 1280,
  11984. bottom: 0.02
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Normal",
  11991. height: math.unit(4, "feet"),
  11992. default: true
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(2 + 6 / 12, "feet"),
  12001. weight: math.unit(20, "lb"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/rufran/front.svg",
  12005. extra: 2041 / 1839,
  12006. bottom: 0.055
  12007. }
  12008. },
  12009. back: {
  12010. height: math.unit(2 + 6 / 12, "feet"),
  12011. weight: math.unit(20, "lb"),
  12012. name: "Back",
  12013. image: {
  12014. source: "./media/characters/rufran/back.svg",
  12015. extra: 2054 / 1839,
  12016. bottom: 0.01
  12017. }
  12018. },
  12019. hand: {
  12020. height: math.unit(0.2166, "meters"),
  12021. name: "Hand",
  12022. image: {
  12023. source: "./media/characters/rufran/hand.svg"
  12024. }
  12025. },
  12026. foot: {
  12027. height: math.unit(0.185, "meters"),
  12028. name: "Foot",
  12029. image: {
  12030. source: "./media/characters/rufran/foot.svg"
  12031. }
  12032. },
  12033. },
  12034. [
  12035. {
  12036. name: "Micro",
  12037. height: math.unit(1, "inch")
  12038. },
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(2 + 6 / 12, "feet"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Big",
  12046. height: math.unit(60, "feet")
  12047. },
  12048. {
  12049. name: "Macro",
  12050. height: math.unit(325, "feet")
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12056. {
  12057. front: {
  12058. height: math.unit(0.3, "meters"),
  12059. weight: math.unit(3.5, "kg"),
  12060. name: "Front",
  12061. image: {
  12062. source: "./media/characters/chip/front.svg",
  12063. extra: 748 / 674
  12064. }
  12065. },
  12066. },
  12067. [
  12068. {
  12069. name: "Micro",
  12070. height: math.unit(1, "inch"),
  12071. default: true
  12072. },
  12073. ]
  12074. ))
  12075. characterMakers.push(() => makeCharacter(
  12076. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12077. {
  12078. side: {
  12079. height: math.unit(2.3, "meters"),
  12080. weight: math.unit(3500, "lb"),
  12081. name: "Side",
  12082. image: {
  12083. source: "./media/characters/torvid/side.svg",
  12084. extra: 1972 / 722,
  12085. bottom: 0.035
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Normal",
  12092. height: math.unit(2.3, "meters"),
  12093. default: true
  12094. },
  12095. ]
  12096. ))
  12097. characterMakers.push(() => makeCharacter(
  12098. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12099. {
  12100. front: {
  12101. height: math.unit(2, "meters"),
  12102. weight: math.unit(150.5, "kg"),
  12103. name: "Front",
  12104. image: {
  12105. source: "./media/characters/susan/front.svg",
  12106. extra: 693 / 635,
  12107. bottom: 0.05
  12108. }
  12109. },
  12110. },
  12111. [
  12112. {
  12113. name: "Megamacro",
  12114. height: math.unit(505, "miles"),
  12115. default: true
  12116. },
  12117. ]
  12118. ))
  12119. characterMakers.push(() => makeCharacter(
  12120. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12121. {
  12122. front: {
  12123. height: math.unit(6, "feet"),
  12124. weight: math.unit(150, "lb"),
  12125. name: "Front",
  12126. image: {
  12127. source: "./media/characters/raindrops/front.svg",
  12128. extra: 2655 / 2461,
  12129. bottom: 49 / 2705
  12130. }
  12131. },
  12132. back: {
  12133. height: math.unit(6, "feet"),
  12134. weight: math.unit(150, "lb"),
  12135. name: "Back",
  12136. image: {
  12137. source: "./media/characters/raindrops/back.svg",
  12138. extra: 2574 / 2400,
  12139. bottom: 65 / 2634
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Micro",
  12146. height: math.unit(6, "inches")
  12147. },
  12148. {
  12149. name: "Normal",
  12150. height: math.unit(6 + 2 / 12, "feet")
  12151. },
  12152. {
  12153. name: "Macro",
  12154. height: math.unit(131, "feet"),
  12155. default: true
  12156. },
  12157. {
  12158. name: "Megamacro",
  12159. height: math.unit(15, "miles")
  12160. },
  12161. {
  12162. name: "Gigamacro",
  12163. height: math.unit(4000, "miles")
  12164. },
  12165. {
  12166. name: "Teramacro",
  12167. height: math.unit(315000, "miles")
  12168. },
  12169. ]
  12170. ))
  12171. characterMakers.push(() => makeCharacter(
  12172. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12173. {
  12174. front: {
  12175. height: math.unit(2.794, "meters"),
  12176. weight: math.unit(325, "kg"),
  12177. name: "Front",
  12178. image: {
  12179. source: "./media/characters/tezwa/front.svg",
  12180. extra: 2083 / 1906,
  12181. bottom: 0.031
  12182. }
  12183. },
  12184. foot: {
  12185. height: math.unit(0.687, "meters"),
  12186. name: "Foot",
  12187. image: {
  12188. source: "./media/characters/tezwa/foot.svg"
  12189. }
  12190. },
  12191. },
  12192. [
  12193. {
  12194. name: "Normal",
  12195. height: math.unit(9 + 2 / 12, "feet"),
  12196. default: true
  12197. },
  12198. ]
  12199. ))
  12200. characterMakers.push(() => makeCharacter(
  12201. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12202. {
  12203. front: {
  12204. height: math.unit(58, "feet"),
  12205. weight: math.unit(89000, "lb"),
  12206. name: "Front",
  12207. image: {
  12208. source: "./media/characters/typhus/front.svg",
  12209. extra: 816 / 800,
  12210. bottom: 0.065
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Macro",
  12217. height: math.unit(58, "feet"),
  12218. default: true
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12224. {
  12225. front: {
  12226. height: math.unit(12, "feet"),
  12227. weight: math.unit(6, "tonnes"),
  12228. name: "Front",
  12229. image: {
  12230. source: "./media/characters/lyra-von-wulf/front.svg",
  12231. extra: 1,
  12232. bottom: 0.10
  12233. }
  12234. },
  12235. frontMecha: {
  12236. height: math.unit(12, "feet"),
  12237. weight: math.unit(12, "tonnes"),
  12238. name: "Front (Mecha)",
  12239. image: {
  12240. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12241. extra: 1,
  12242. bottom: 0.042
  12243. }
  12244. },
  12245. maw: {
  12246. height: math.unit(2.2, "feet"),
  12247. name: "Maw",
  12248. image: {
  12249. source: "./media/characters/lyra-von-wulf/maw.svg"
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Normal",
  12256. height: math.unit(12, "feet"),
  12257. default: true
  12258. },
  12259. {
  12260. name: "Classic",
  12261. height: math.unit(50, "feet")
  12262. },
  12263. {
  12264. name: "Macro",
  12265. height: math.unit(500, "feet")
  12266. },
  12267. {
  12268. name: "Megamacro",
  12269. height: math.unit(1, "mile")
  12270. },
  12271. {
  12272. name: "Gigamacro",
  12273. height: math.unit(400, "miles")
  12274. },
  12275. {
  12276. name: "Teramacro",
  12277. height: math.unit(22000, "miles")
  12278. },
  12279. {
  12280. name: "Solarmacro",
  12281. height: math.unit(8600000, "miles")
  12282. },
  12283. {
  12284. name: "Galactic",
  12285. height: math.unit(1057000, "lightyears")
  12286. },
  12287. ]
  12288. ))
  12289. characterMakers.push(() => makeCharacter(
  12290. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12291. {
  12292. front: {
  12293. height: math.unit(6 + 10 / 12, "feet"),
  12294. weight: math.unit(150, "lb"),
  12295. name: "Front",
  12296. image: {
  12297. source: "./media/characters/dixon/front.svg",
  12298. extra: 3361 / 3209,
  12299. bottom: 0.01
  12300. }
  12301. },
  12302. },
  12303. [
  12304. {
  12305. name: "Normal",
  12306. height: math.unit(6 + 10 / 12, "feet"),
  12307. default: true
  12308. },
  12309. {
  12310. name: "Big",
  12311. height: math.unit(12, "meters")
  12312. },
  12313. {
  12314. name: "Macro",
  12315. height: math.unit(500, "meters")
  12316. },
  12317. {
  12318. name: "Megamacro",
  12319. height: math.unit(2, "km")
  12320. },
  12321. ]
  12322. ))
  12323. characterMakers.push(() => makeCharacter(
  12324. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12325. {
  12326. front: {
  12327. height: math.unit(185, "cm"),
  12328. weight: math.unit(68, "kg"),
  12329. name: "Front",
  12330. image: {
  12331. source: "./media/characters/kauko/front.svg",
  12332. extra: 1455 / 1421,
  12333. bottom: 0.03
  12334. }
  12335. },
  12336. back: {
  12337. height: math.unit(185, "cm"),
  12338. weight: math.unit(68, "kg"),
  12339. name: "Back",
  12340. image: {
  12341. source: "./media/characters/kauko/back.svg",
  12342. extra: 1455 / 1421,
  12343. bottom: 0.004
  12344. }
  12345. },
  12346. },
  12347. [
  12348. {
  12349. name: "Normal",
  12350. height: math.unit(185, "cm"),
  12351. default: true
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12357. {
  12358. front: {
  12359. height: math.unit(6, "feet"),
  12360. weight: math.unit(150, "kg"),
  12361. name: "Front",
  12362. image: {
  12363. source: "./media/characters/varg/front.svg",
  12364. extra: 1108 / 1018,
  12365. bottom: 0.0375
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Normal",
  12372. height: math.unit(5, "meters")
  12373. },
  12374. {
  12375. name: "Macro",
  12376. height: math.unit(200, "meters")
  12377. },
  12378. {
  12379. name: "Megamacro",
  12380. height: math.unit(20, "kilometers")
  12381. },
  12382. {
  12383. name: "True Size",
  12384. height: math.unit(211, "km"),
  12385. default: true
  12386. },
  12387. {
  12388. name: "Gigamacro",
  12389. height: math.unit(1000, "km")
  12390. },
  12391. {
  12392. name: "Gigamacro+",
  12393. height: math.unit(8000, "km")
  12394. },
  12395. {
  12396. name: "Teramacro",
  12397. height: math.unit(1000000, "km")
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(7 + 7 / 12, "feet"),
  12406. weight: math.unit(267, "lb"),
  12407. name: "Front",
  12408. image: {
  12409. source: "./media/characters/dayza/front.svg",
  12410. extra: 1262 / 1200,
  12411. bottom: 0.035
  12412. }
  12413. },
  12414. side: {
  12415. height: math.unit(7 + 7 / 12, "feet"),
  12416. weight: math.unit(267, "lb"),
  12417. name: "Side",
  12418. image: {
  12419. source: "./media/characters/dayza/side.svg",
  12420. extra: 1295 / 1245,
  12421. bottom: 0.05
  12422. }
  12423. },
  12424. back: {
  12425. height: math.unit(7 + 7 / 12, "feet"),
  12426. weight: math.unit(267, "lb"),
  12427. name: "Back",
  12428. image: {
  12429. source: "./media/characters/dayza/back.svg",
  12430. extra: 1241 / 1170
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Normal",
  12437. height: math.unit(7 + 7 / 12, "feet"),
  12438. default: true
  12439. },
  12440. {
  12441. name: "Macro",
  12442. height: math.unit(155, "feet")
  12443. },
  12444. ]
  12445. ))
  12446. characterMakers.push(() => makeCharacter(
  12447. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12448. {
  12449. front: {
  12450. height: math.unit(6 + 5 / 12, "feet"),
  12451. weight: math.unit(160, "lb"),
  12452. name: "Front",
  12453. image: {
  12454. source: "./media/characters/xanthos/front.svg",
  12455. extra: 1,
  12456. bottom: 0.04
  12457. }
  12458. },
  12459. back: {
  12460. height: math.unit(6 + 5 / 12, "feet"),
  12461. weight: math.unit(160, "lb"),
  12462. name: "Back",
  12463. image: {
  12464. source: "./media/characters/xanthos/back.svg",
  12465. extra: 1,
  12466. bottom: 0.03
  12467. }
  12468. },
  12469. hand: {
  12470. height: math.unit(0.928, "feet"),
  12471. name: "Hand",
  12472. image: {
  12473. source: "./media/characters/xanthos/hand.svg"
  12474. }
  12475. },
  12476. foot: {
  12477. height: math.unit(1.286, "feet"),
  12478. name: "Foot",
  12479. image: {
  12480. source: "./media/characters/xanthos/foot.svg"
  12481. }
  12482. },
  12483. },
  12484. [
  12485. {
  12486. name: "Normal",
  12487. height: math.unit(6 + 5 / 12, "feet"),
  12488. default: true
  12489. },
  12490. {
  12491. name: "Normal+",
  12492. height: math.unit(6, "meters")
  12493. },
  12494. {
  12495. name: "Macro",
  12496. height: math.unit(40, "feet")
  12497. },
  12498. {
  12499. name: "Macro+",
  12500. height: math.unit(200, "meters")
  12501. },
  12502. {
  12503. name: "Megamacro",
  12504. height: math.unit(20, "km")
  12505. },
  12506. {
  12507. name: "Megamacro+",
  12508. height: math.unit(100, "km")
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12514. {
  12515. front: {
  12516. height: math.unit(6 + 3 / 12, "feet"),
  12517. weight: math.unit(215, "lb"),
  12518. name: "Front",
  12519. image: {
  12520. source: "./media/characters/grynn/front.svg",
  12521. extra: 4627 / 4209,
  12522. bottom: 0.047
  12523. }
  12524. },
  12525. },
  12526. [
  12527. {
  12528. name: "Micro",
  12529. height: math.unit(6, "inches")
  12530. },
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(6 + 3 / 12, "feet"),
  12534. default: true
  12535. },
  12536. {
  12537. name: "Big",
  12538. height: math.unit(104, "feet")
  12539. },
  12540. {
  12541. name: "Macro",
  12542. height: math.unit(944, "feet")
  12543. },
  12544. {
  12545. name: "Macro+",
  12546. height: math.unit(9480, "feet")
  12547. },
  12548. {
  12549. name: "Megamacro",
  12550. height: math.unit(78752, "feet")
  12551. },
  12552. {
  12553. name: "Megamacro+",
  12554. height: math.unit(630128, "feet")
  12555. },
  12556. {
  12557. name: "Megamacro++",
  12558. height: math.unit(3150695, "feet")
  12559. },
  12560. ]
  12561. ))
  12562. characterMakers.push(() => makeCharacter(
  12563. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12564. {
  12565. front: {
  12566. height: math.unit(7 + 5 / 12, "feet"),
  12567. weight: math.unit(450, "lb"),
  12568. name: "Front",
  12569. image: {
  12570. source: "./media/characters/mocha-aura/front.svg",
  12571. extra: 1907 / 1817,
  12572. bottom: 0.04
  12573. }
  12574. },
  12575. back: {
  12576. height: math.unit(7 + 5 / 12, "feet"),
  12577. weight: math.unit(450, "lb"),
  12578. name: "Back",
  12579. image: {
  12580. source: "./media/characters/mocha-aura/back.svg",
  12581. extra: 1900 / 1825,
  12582. bottom: 0.045
  12583. }
  12584. },
  12585. },
  12586. [
  12587. {
  12588. name: "Nano",
  12589. height: math.unit(1, "nm")
  12590. },
  12591. {
  12592. name: "Megamicro",
  12593. height: math.unit(1, "mm")
  12594. },
  12595. {
  12596. name: "Micro",
  12597. height: math.unit(3, "inches")
  12598. },
  12599. {
  12600. name: "Normal",
  12601. height: math.unit(7 + 5 / 12, "feet"),
  12602. default: true
  12603. },
  12604. {
  12605. name: "Macro",
  12606. height: math.unit(30, "feet")
  12607. },
  12608. {
  12609. name: "Megamacro",
  12610. height: math.unit(3500, "feet")
  12611. },
  12612. {
  12613. name: "Teramacro",
  12614. height: math.unit(500000, "miles")
  12615. },
  12616. {
  12617. name: "Petamacro",
  12618. height: math.unit(50000000000000000, "parsecs")
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(6, "feet"),
  12627. weight: math.unit(150, "lb"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/ilisha-devya/front.svg",
  12631. extra: 1,
  12632. bottom: 0.175
  12633. }
  12634. },
  12635. back: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(150, "lb"),
  12638. name: "Back",
  12639. image: {
  12640. source: "./media/characters/ilisha-devya/back.svg",
  12641. extra: 1,
  12642. bottom: 0.015
  12643. }
  12644. },
  12645. },
  12646. [
  12647. {
  12648. name: "Macro",
  12649. height: math.unit(500, "feet"),
  12650. default: true
  12651. },
  12652. {
  12653. name: "Megamacro",
  12654. height: math.unit(10, "miles")
  12655. },
  12656. {
  12657. name: "Gigamacro",
  12658. height: math.unit(100000, "miles")
  12659. },
  12660. {
  12661. name: "Examacro",
  12662. height: math.unit(1e9, "lightyears")
  12663. },
  12664. {
  12665. name: "Omniversal",
  12666. height: math.unit(1e33, "lightyears")
  12667. },
  12668. {
  12669. name: "Beyond Infinite",
  12670. height: math.unit(1e100, "lightyears")
  12671. },
  12672. ]
  12673. ))
  12674. characterMakers.push(() => makeCharacter(
  12675. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12676. {
  12677. Side: {
  12678. height: math.unit(6, "feet"),
  12679. weight: math.unit(150, "lb"),
  12680. name: "Side",
  12681. image: {
  12682. source: "./media/characters/mira/side.svg",
  12683. extra: 900 / 799,
  12684. bottom: 0.02
  12685. }
  12686. },
  12687. },
  12688. [
  12689. {
  12690. name: "Human Size",
  12691. height: math.unit(6, "feet")
  12692. },
  12693. {
  12694. name: "Macro",
  12695. height: math.unit(100, "feet"),
  12696. default: true
  12697. },
  12698. {
  12699. name: "Megamacro",
  12700. height: math.unit(10, "miles")
  12701. },
  12702. {
  12703. name: "Gigamacro",
  12704. height: math.unit(25000, "miles")
  12705. },
  12706. {
  12707. name: "Teramacro",
  12708. height: math.unit(300, "AU")
  12709. },
  12710. {
  12711. name: "Full Size",
  12712. height: math.unit(4.5e10, "lightyears")
  12713. },
  12714. ]
  12715. ))
  12716. characterMakers.push(() => makeCharacter(
  12717. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12718. {
  12719. front: {
  12720. height: math.unit(6, "feet"),
  12721. weight: math.unit(150, "lb"),
  12722. name: "Front",
  12723. image: {
  12724. source: "./media/characters/holly/front.svg",
  12725. extra: 639 / 606
  12726. }
  12727. },
  12728. back: {
  12729. height: math.unit(6, "feet"),
  12730. weight: math.unit(150, "lb"),
  12731. name: "Back",
  12732. image: {
  12733. source: "./media/characters/holly/back.svg",
  12734. extra: 623 / 598
  12735. }
  12736. },
  12737. frontWorking: {
  12738. height: math.unit(6, "feet"),
  12739. weight: math.unit(150, "lb"),
  12740. name: "Front (Working)",
  12741. image: {
  12742. source: "./media/characters/holly/front-working.svg",
  12743. extra: 607 / 577,
  12744. bottom: 0.048
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Normal",
  12751. height: math.unit(12 + 3 / 12, "feet"),
  12752. default: true
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12758. {
  12759. front: {
  12760. height: math.unit(6, "feet"),
  12761. weight: math.unit(150, "lb"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/porter/front.svg",
  12765. extra: 1,
  12766. bottom: 0.01
  12767. }
  12768. },
  12769. frontRobes: {
  12770. height: math.unit(6, "feet"),
  12771. weight: math.unit(150, "lb"),
  12772. name: "Front (Robes)",
  12773. image: {
  12774. source: "./media/characters/porter/front-robes.svg",
  12775. extra: 1.01,
  12776. bottom: 0.01
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(11 + 9 / 12, "feet"),
  12784. default: true
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12790. {
  12791. legendary: {
  12792. height: math.unit(6, "feet"),
  12793. weight: math.unit(150, "lb"),
  12794. name: "Legendary",
  12795. image: {
  12796. source: "./media/characters/lucy/legendary.svg",
  12797. extra: 1355 / 1100,
  12798. bottom: 0.045
  12799. }
  12800. },
  12801. },
  12802. [
  12803. {
  12804. name: "Legendary",
  12805. height: math.unit(86882 * 2, "miles"),
  12806. default: true
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12812. {
  12813. front: {
  12814. height: math.unit(6, "feet"),
  12815. weight: math.unit(150, "lb"),
  12816. name: "Front",
  12817. image: {
  12818. source: "./media/characters/drusilla/front.svg",
  12819. extra: 678 / 635,
  12820. bottom: 0.03
  12821. }
  12822. },
  12823. back: {
  12824. height: math.unit(6, "feet"),
  12825. weight: math.unit(150, "lb"),
  12826. name: "Back",
  12827. image: {
  12828. source: "./media/characters/drusilla/back.svg",
  12829. extra: 678 / 635,
  12830. bottom: 0.005
  12831. }
  12832. },
  12833. },
  12834. [
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(100, "feet")
  12838. },
  12839. {
  12840. name: "Canon Height",
  12841. height: math.unit(2000, "feet"),
  12842. default: true
  12843. },
  12844. ]
  12845. ))
  12846. characterMakers.push(() => makeCharacter(
  12847. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12848. {
  12849. front: {
  12850. height: math.unit(6, "feet"),
  12851. weight: math.unit(180, "lb"),
  12852. name: "Front",
  12853. image: {
  12854. source: "./media/characters/renard-thatch/front.svg",
  12855. extra: 2411 / 2275,
  12856. bottom: 0.01
  12857. }
  12858. },
  12859. frontPosing: {
  12860. height: math.unit(6, "feet"),
  12861. weight: math.unit(180, "lb"),
  12862. name: "Front (Posing)",
  12863. image: {
  12864. source: "./media/characters/renard-thatch/front-posing.svg",
  12865. extra: 2381 / 2261,
  12866. bottom: 0.01
  12867. }
  12868. },
  12869. back: {
  12870. height: math.unit(6, "feet"),
  12871. weight: math.unit(180, "lb"),
  12872. name: "Back",
  12873. image: {
  12874. source: "./media/characters/renard-thatch/back.svg",
  12875. extra: 2428 / 2288
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Micro",
  12882. height: math.unit(3, "inches")
  12883. },
  12884. {
  12885. name: "Default",
  12886. height: math.unit(6, "feet"),
  12887. default: true
  12888. },
  12889. {
  12890. name: "Macro",
  12891. height: math.unit(75, "feet")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(1450, "feet"),
  12900. weight: math.unit(1.21e6, "tons"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/sekvra/front.svg",
  12904. extra: 1,
  12905. bottom: 0.03
  12906. }
  12907. },
  12908. frontClothed: {
  12909. height: math.unit(1450, "feet"),
  12910. weight: math.unit(1.21e6, "tons"),
  12911. name: "Front (Clothed)",
  12912. image: {
  12913. source: "./media/characters/sekvra/front-clothed.svg",
  12914. extra: 1,
  12915. bottom: 0.03
  12916. }
  12917. },
  12918. side: {
  12919. height: math.unit(1450, "feet"),
  12920. weight: math.unit(1.21e6, "tons"),
  12921. name: "Side",
  12922. image: {
  12923. source: "./media/characters/sekvra/side.svg",
  12924. extra: 1,
  12925. bottom: 0.025
  12926. }
  12927. },
  12928. back: {
  12929. height: math.unit(1450, "feet"),
  12930. weight: math.unit(1.21e6, "tons"),
  12931. name: "Back",
  12932. image: {
  12933. source: "./media/characters/sekvra/back.svg",
  12934. extra: 1,
  12935. bottom: 0.005
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Macro",
  12942. height: math.unit(1450, "feet"),
  12943. default: true
  12944. },
  12945. {
  12946. name: "Megamacro",
  12947. height: math.unit(15000, "feet")
  12948. },
  12949. ]
  12950. ))
  12951. characterMakers.push(() => makeCharacter(
  12952. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12953. {
  12954. front: {
  12955. height: math.unit(6, "feet"),
  12956. weight: math.unit(150, "lb"),
  12957. name: "Front",
  12958. image: {
  12959. source: "./media/characters/carmine/front.svg",
  12960. extra: 1,
  12961. bottom: 0.035
  12962. }
  12963. },
  12964. frontArmor: {
  12965. height: math.unit(6, "feet"),
  12966. weight: math.unit(150, "lb"),
  12967. name: "Front (Armor)",
  12968. image: {
  12969. source: "./media/characters/carmine/front-armor.svg",
  12970. extra: 1,
  12971. bottom: 0.035
  12972. }
  12973. },
  12974. },
  12975. [
  12976. {
  12977. name: "Large",
  12978. height: math.unit(1, "mile")
  12979. },
  12980. {
  12981. name: "Huge",
  12982. height: math.unit(40, "miles"),
  12983. default: true
  12984. },
  12985. {
  12986. name: "Colossal",
  12987. height: math.unit(2500, "miles")
  12988. },
  12989. ]
  12990. ))
  12991. characterMakers.push(() => makeCharacter(
  12992. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12993. {
  12994. front: {
  12995. height: math.unit(6, "feet"),
  12996. weight: math.unit(150, "lb"),
  12997. name: "Front",
  12998. image: {
  12999. source: "./media/characters/elyssia/front.svg",
  13000. extra: 2201 / 2035,
  13001. bottom: 0.05
  13002. }
  13003. },
  13004. frontClothed: {
  13005. height: math.unit(6, "feet"),
  13006. weight: math.unit(150, "lb"),
  13007. name: "Front (Clothed)",
  13008. image: {
  13009. source: "./media/characters/elyssia/front-clothed.svg",
  13010. extra: 2201 / 2035,
  13011. bottom: 0.05
  13012. }
  13013. },
  13014. back: {
  13015. height: math.unit(6, "feet"),
  13016. weight: math.unit(150, "lb"),
  13017. name: "Back",
  13018. image: {
  13019. source: "./media/characters/elyssia/back.svg",
  13020. extra: 2201 / 2035,
  13021. bottom: 0.013
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Smaller",
  13028. height: math.unit(150, "feet")
  13029. },
  13030. {
  13031. name: "Standard",
  13032. height: math.unit(1400, "feet"),
  13033. default: true
  13034. },
  13035. {
  13036. name: "Distracted",
  13037. height: math.unit(15000, "feet")
  13038. },
  13039. ]
  13040. ))
  13041. characterMakers.push(() => makeCharacter(
  13042. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13043. {
  13044. front: {
  13045. height: math.unit(7 + 4 / 12, "feet"),
  13046. weight: math.unit(500, "lb"),
  13047. name: "Front",
  13048. image: {
  13049. source: "./media/characters/geno-maxwell/front.svg",
  13050. extra: 2207 / 2040,
  13051. bottom: 0.015
  13052. }
  13053. },
  13054. },
  13055. [
  13056. {
  13057. name: "Micro",
  13058. height: math.unit(3, "inches")
  13059. },
  13060. {
  13061. name: "Normal",
  13062. height: math.unit(7 + 4 / 12, "feet"),
  13063. default: true
  13064. },
  13065. {
  13066. name: "Macro",
  13067. height: math.unit(220, "feet")
  13068. },
  13069. {
  13070. name: "Megamacro",
  13071. height: math.unit(11, "miles")
  13072. },
  13073. ]
  13074. ))
  13075. characterMakers.push(() => makeCharacter(
  13076. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13077. {
  13078. front: {
  13079. height: math.unit(7 + 4 / 12, "feet"),
  13080. weight: math.unit(500, "lb"),
  13081. name: "Front",
  13082. image: {
  13083. source: "./media/characters/regena-maxwell/front.svg",
  13084. extra: 3115 / 2770,
  13085. bottom: 0.02
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Normal",
  13092. height: math.unit(7 + 4 / 12, "feet"),
  13093. default: true
  13094. },
  13095. {
  13096. name: "Macro",
  13097. height: math.unit(220, "feet")
  13098. },
  13099. {
  13100. name: "Megamacro",
  13101. height: math.unit(11, "miles")
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(6, "feet"),
  13110. weight: math.unit(150, "lb"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13114. extra: 860 / 690,
  13115. bottom: 0.03
  13116. }
  13117. },
  13118. },
  13119. [
  13120. {
  13121. name: "Normal",
  13122. height: math.unit(1.7, "meters"),
  13123. default: true
  13124. },
  13125. ]
  13126. ))
  13127. characterMakers.push(() => makeCharacter(
  13128. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13129. {
  13130. front: {
  13131. height: math.unit(6, "feet"),
  13132. weight: math.unit(150, "lb"),
  13133. name: "Front",
  13134. image: {
  13135. source: "./media/characters/quilly/front.svg",
  13136. extra: 890 / 776
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Gigamacro",
  13143. height: math.unit(404090, "miles"),
  13144. default: true
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13150. {
  13151. front: {
  13152. height: math.unit(7 + 8 / 12, "feet"),
  13153. weight: math.unit(350, "lb"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/tempest/front.svg",
  13157. extra: 1175 / 1086,
  13158. bottom: 0.02
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Normal",
  13165. height: math.unit(7 + 8 / 12, "feet"),
  13166. default: true
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13172. {
  13173. side: {
  13174. height: math.unit(4 + 5 / 12, "feet"),
  13175. weight: math.unit(80, "lb"),
  13176. name: "Side",
  13177. image: {
  13178. source: "./media/characters/rodger/side.svg",
  13179. extra: 1235 / 1118
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Micro",
  13186. height: math.unit(1, "inch")
  13187. },
  13188. {
  13189. name: "Normal",
  13190. height: math.unit(4 + 5 / 12, "feet"),
  13191. default: true
  13192. },
  13193. {
  13194. name: "Macro",
  13195. height: math.unit(120, "feet")
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(6, "feet"),
  13204. weight: math.unit(150, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/danyel/front.svg",
  13208. extra: 1185 / 1123,
  13209. bottom: 0.05
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Shrunken",
  13216. height: math.unit(0.5, "mm")
  13217. },
  13218. {
  13219. name: "Micro",
  13220. height: math.unit(1, "mm"),
  13221. default: true
  13222. },
  13223. {
  13224. name: "Upsized",
  13225. height: math.unit(5 + 5 / 12, "feet")
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13231. {
  13232. front: {
  13233. height: math.unit(5 + 6 / 12, "feet"),
  13234. weight: math.unit(200, "lb"),
  13235. name: "Front",
  13236. image: {
  13237. source: "./media/characters/vivian-bijoux/front.svg",
  13238. extra: 1,
  13239. bottom: 0.072
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "Normal",
  13246. height: math.unit(5 + 6 / 12, "feet"),
  13247. default: true
  13248. },
  13249. {
  13250. name: "Bad Dream",
  13251. height: math.unit(500, "feet")
  13252. },
  13253. {
  13254. name: "Nightmare",
  13255. height: math.unit(500, "miles")
  13256. },
  13257. ]
  13258. ))
  13259. characterMakers.push(() => makeCharacter(
  13260. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13261. {
  13262. front: {
  13263. height: math.unit(6 + 1 / 12, "feet"),
  13264. weight: math.unit(260, "lb"),
  13265. name: "Front",
  13266. image: {
  13267. source: "./media/characters/zeta/front.svg",
  13268. extra: 1968 / 1889,
  13269. bottom: 0.06
  13270. }
  13271. },
  13272. back: {
  13273. height: math.unit(6 + 1 / 12, "feet"),
  13274. weight: math.unit(260, "lb"),
  13275. name: "Back",
  13276. image: {
  13277. source: "./media/characters/zeta/back.svg",
  13278. extra: 1944 / 1858,
  13279. bottom: 0.03
  13280. }
  13281. },
  13282. hand: {
  13283. height: math.unit(1.112, "feet"),
  13284. name: "Hand",
  13285. image: {
  13286. source: "./media/characters/zeta/hand.svg"
  13287. }
  13288. },
  13289. foot: {
  13290. height: math.unit(1.48, "feet"),
  13291. name: "Foot",
  13292. image: {
  13293. source: "./media/characters/zeta/foot.svg"
  13294. }
  13295. },
  13296. },
  13297. [
  13298. {
  13299. name: "Micro",
  13300. height: math.unit(6, "inches")
  13301. },
  13302. {
  13303. name: "Normal",
  13304. height: math.unit(6 + 1 / 12, "feet"),
  13305. default: true
  13306. },
  13307. {
  13308. name: "Macro",
  13309. height: math.unit(20, "feet")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(6, "feet"),
  13318. weight: math.unit(150, "lb"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/jamie-larsen/front.svg",
  13322. extra: 962 / 933,
  13323. bottom: 0.02
  13324. }
  13325. },
  13326. back: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Back",
  13330. image: {
  13331. source: "./media/characters/jamie-larsen/back.svg",
  13332. extra: 997 / 946
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Macro",
  13339. height: math.unit(28 + 7 / 12, "feet"),
  13340. default: true
  13341. },
  13342. {
  13343. name: "Macro+",
  13344. height: math.unit(180, "feet")
  13345. },
  13346. {
  13347. name: "Megamacro",
  13348. height: math.unit(10, "miles")
  13349. },
  13350. {
  13351. name: "Gigamacro",
  13352. height: math.unit(200000, "miles")
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13358. {
  13359. front: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(120, "lb"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/vance/front.svg",
  13365. extra: 1980 / 1890,
  13366. bottom: 0.09
  13367. }
  13368. },
  13369. back: {
  13370. height: math.unit(6, "feet"),
  13371. weight: math.unit(120, "lb"),
  13372. name: "Back",
  13373. image: {
  13374. source: "./media/characters/vance/back.svg",
  13375. extra: 2081 / 1994,
  13376. bottom: 0.014
  13377. }
  13378. },
  13379. hand: {
  13380. height: math.unit(0.88, "feet"),
  13381. name: "Hand",
  13382. image: {
  13383. source: "./media/characters/vance/hand.svg"
  13384. }
  13385. },
  13386. foot: {
  13387. height: math.unit(0.64, "feet"),
  13388. name: "Foot",
  13389. image: {
  13390. source: "./media/characters/vance/foot.svg"
  13391. }
  13392. },
  13393. },
  13394. [
  13395. {
  13396. name: "Small",
  13397. height: math.unit(90, "feet"),
  13398. default: true
  13399. },
  13400. {
  13401. name: "Macro",
  13402. height: math.unit(100, "meters")
  13403. },
  13404. {
  13405. name: "Megamacro",
  13406. height: math.unit(15, "miles")
  13407. },
  13408. ]
  13409. ))
  13410. characterMakers.push(() => makeCharacter(
  13411. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13412. {
  13413. front: {
  13414. height: math.unit(6, "feet"),
  13415. weight: math.unit(180, "lb"),
  13416. name: "Front",
  13417. image: {
  13418. source: "./media/characters/xochitl/front.svg",
  13419. extra: 2297 / 2261,
  13420. bottom: 0.065
  13421. }
  13422. },
  13423. back: {
  13424. height: math.unit(6, "feet"),
  13425. weight: math.unit(180, "lb"),
  13426. name: "Back",
  13427. image: {
  13428. source: "./media/characters/xochitl/back.svg",
  13429. extra: 2386 / 2354,
  13430. bottom: 0.01
  13431. }
  13432. },
  13433. foot: {
  13434. height: math.unit(6 / 5 * 1.15, "feet"),
  13435. weight: math.unit(150, "lb"),
  13436. name: "Foot",
  13437. image: {
  13438. source: "./media/characters/xochitl/foot.svg"
  13439. }
  13440. },
  13441. },
  13442. [
  13443. {
  13444. name: "Macro",
  13445. height: math.unit(80, "feet")
  13446. },
  13447. {
  13448. name: "Macro+",
  13449. height: math.unit(400, "feet"),
  13450. default: true
  13451. },
  13452. {
  13453. name: "Gigamacro",
  13454. height: math.unit(80000, "miles")
  13455. },
  13456. {
  13457. name: "Gigamacro+",
  13458. height: math.unit(400000, "miles")
  13459. },
  13460. {
  13461. name: "Teramacro",
  13462. height: math.unit(300, "AU")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(6, "feet"),
  13471. weight: math.unit(150, "lb"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/vincent/front.svg",
  13475. extra: 1130 / 1080,
  13476. bottom: 0.055
  13477. }
  13478. },
  13479. beak: {
  13480. height: math.unit(6 * 0.1, "feet"),
  13481. name: "Beak",
  13482. image: {
  13483. source: "./media/characters/vincent/beak.svg"
  13484. }
  13485. },
  13486. hand: {
  13487. height: math.unit(6 * 0.85, "feet"),
  13488. weight: math.unit(150, "lb"),
  13489. name: "Hand",
  13490. image: {
  13491. source: "./media/characters/vincent/hand.svg"
  13492. }
  13493. },
  13494. foot: {
  13495. height: math.unit(6 * 0.19, "feet"),
  13496. weight: math.unit(150, "lb"),
  13497. name: "Foot",
  13498. image: {
  13499. source: "./media/characters/vincent/foot.svg"
  13500. }
  13501. },
  13502. },
  13503. [
  13504. {
  13505. name: "Base",
  13506. height: math.unit(6 + 5 / 12, "feet"),
  13507. default: true
  13508. },
  13509. {
  13510. name: "Macro",
  13511. height: math.unit(300, "feet")
  13512. },
  13513. {
  13514. name: "Megamacro",
  13515. height: math.unit(2, "miles")
  13516. },
  13517. {
  13518. name: "Gigamacro",
  13519. height: math.unit(1000, "miles")
  13520. },
  13521. ]
  13522. ))
  13523. characterMakers.push(() => makeCharacter(
  13524. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13525. {
  13526. front: {
  13527. height: math.unit(2, "meters"),
  13528. weight: math.unit(500, "kg"),
  13529. name: "Front",
  13530. image: {
  13531. source: "./media/characters/coatl/front.svg",
  13532. extra: 3948 / 3500,
  13533. bottom: 0.082
  13534. }
  13535. },
  13536. },
  13537. [
  13538. {
  13539. name: "Normal",
  13540. height: math.unit(4, "meters")
  13541. },
  13542. {
  13543. name: "Macro",
  13544. height: math.unit(100, "meters"),
  13545. default: true
  13546. },
  13547. {
  13548. name: "Macro+",
  13549. height: math.unit(300, "meters")
  13550. },
  13551. {
  13552. name: "Megamacro",
  13553. height: math.unit(3, "gigameters")
  13554. },
  13555. {
  13556. name: "Megamacro+",
  13557. height: math.unit(300, "terameters")
  13558. },
  13559. {
  13560. name: "Megamacro++",
  13561. height: math.unit(3, "lightyears")
  13562. },
  13563. ]
  13564. ))
  13565. characterMakers.push(() => makeCharacter(
  13566. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13567. {
  13568. front: {
  13569. height: math.unit(6, "feet"),
  13570. weight: math.unit(50, "kg"),
  13571. name: "front",
  13572. image: {
  13573. source: "./media/characters/shiroryu/front.svg",
  13574. extra: 1990 / 1935
  13575. }
  13576. },
  13577. },
  13578. [
  13579. {
  13580. name: "Mortal Mingling",
  13581. height: math.unit(3, "meters")
  13582. },
  13583. {
  13584. name: "Kaiju-ish",
  13585. height: math.unit(250, "meters")
  13586. },
  13587. {
  13588. name: "Somewhat Godly",
  13589. height: math.unit(400, "km"),
  13590. default: true
  13591. },
  13592. {
  13593. name: "Planetary",
  13594. height: math.unit(300, "megameters")
  13595. },
  13596. {
  13597. name: "Galaxy-dwarfing",
  13598. height: math.unit(450, "kiloparsecs")
  13599. },
  13600. {
  13601. name: "Universe Eater",
  13602. height: math.unit(150, "gigaparsecs")
  13603. },
  13604. {
  13605. name: "Almost Immeasurable",
  13606. height: math.unit(1.3e266, "yottaparsecs")
  13607. },
  13608. ]
  13609. ))
  13610. characterMakers.push(() => makeCharacter(
  13611. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13612. {
  13613. front: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(150, "lb"),
  13616. name: "Front",
  13617. image: {
  13618. source: "./media/characters/umeko/front.svg",
  13619. extra: 1,
  13620. bottom: 0.019
  13621. }
  13622. },
  13623. frontArmored: {
  13624. height: math.unit(6, "feet"),
  13625. weight: math.unit(150, "lb"),
  13626. name: "Front (Armored)",
  13627. image: {
  13628. source: "./media/characters/umeko/front-armored.svg",
  13629. extra: 1,
  13630. bottom: 0.021
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Macro",
  13637. height: math.unit(220, "feet"),
  13638. default: true
  13639. },
  13640. {
  13641. name: "Guardian Dragon",
  13642. height: math.unit(50, "miles")
  13643. },
  13644. {
  13645. name: "Cosmic",
  13646. height: math.unit(800000, "miles")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(6, "feet"),
  13655. weight: math.unit(150, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/cassidy/front.svg",
  13659. extra: 1,
  13660. bottom: 0.043
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Canon Height",
  13667. height: math.unit(120, "feet"),
  13668. default: true
  13669. },
  13670. {
  13671. name: "Macro+",
  13672. height: math.unit(400, "feet")
  13673. },
  13674. {
  13675. name: "Macro++",
  13676. height: math.unit(4000, "feet")
  13677. },
  13678. {
  13679. name: "Megamacro",
  13680. height: math.unit(3, "miles")
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(150, "lb"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/isaac/front.svg",
  13693. extra: 896 / 815,
  13694. bottom: 0.11
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Human Size",
  13701. height: math.unit(8, "feet"),
  13702. default: true
  13703. },
  13704. {
  13705. name: "Macro",
  13706. height: math.unit(400, "feet")
  13707. },
  13708. {
  13709. name: "Megamacro",
  13710. height: math.unit(50, "miles")
  13711. },
  13712. {
  13713. name: "Canon Height",
  13714. height: math.unit(200, "AU")
  13715. },
  13716. ]
  13717. ))
  13718. characterMakers.push(() => makeCharacter(
  13719. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13720. {
  13721. front: {
  13722. height: math.unit(6, "feet"),
  13723. weight: math.unit(72, "kg"),
  13724. name: "Front",
  13725. image: {
  13726. source: "./media/characters/sleekit/front.svg",
  13727. extra: 4693 / 4487,
  13728. bottom: 0.012
  13729. }
  13730. },
  13731. },
  13732. [
  13733. {
  13734. name: "Minimum Height",
  13735. height: math.unit(10, "meters")
  13736. },
  13737. {
  13738. name: "Smaller",
  13739. height: math.unit(25, "meters")
  13740. },
  13741. {
  13742. name: "Larger",
  13743. height: math.unit(38, "meters"),
  13744. default: true
  13745. },
  13746. {
  13747. name: "Maximum height",
  13748. height: math.unit(100, "meters")
  13749. },
  13750. ]
  13751. ))
  13752. characterMakers.push(() => makeCharacter(
  13753. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13754. {
  13755. front: {
  13756. height: math.unit(6, "feet"),
  13757. weight: math.unit(150, "lb"),
  13758. name: "Front",
  13759. image: {
  13760. source: "./media/characters/nillia/front.svg",
  13761. extra: 2195 / 2037,
  13762. bottom: 0.005
  13763. }
  13764. },
  13765. back: {
  13766. height: math.unit(6, "feet"),
  13767. weight: math.unit(150, "lb"),
  13768. name: "Back",
  13769. image: {
  13770. source: "./media/characters/nillia/back.svg",
  13771. extra: 2195 / 2037,
  13772. bottom: 0.005
  13773. }
  13774. },
  13775. },
  13776. [
  13777. {
  13778. name: "Canon Height",
  13779. height: math.unit(489, "feet"),
  13780. default: true
  13781. }
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13786. {
  13787. front: {
  13788. height: math.unit(6, "feet"),
  13789. weight: math.unit(150, "lb"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/mesmyriza/front.svg",
  13793. extra: 2067 / 1784,
  13794. bottom: 0.035
  13795. }
  13796. },
  13797. foot: {
  13798. height: math.unit(6 / (250 / 35), "feet"),
  13799. name: "Foot",
  13800. image: {
  13801. source: "./media/characters/mesmyriza/foot.svg"
  13802. }
  13803. },
  13804. },
  13805. [
  13806. {
  13807. name: "Macro",
  13808. height: math.unit(457, "meters"),
  13809. default: true
  13810. },
  13811. {
  13812. name: "Megamacro",
  13813. height: math.unit(8, "megameters")
  13814. },
  13815. ]
  13816. ))
  13817. characterMakers.push(() => makeCharacter(
  13818. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13819. {
  13820. front: {
  13821. height: math.unit(6, "feet"),
  13822. weight: math.unit(250, "lb"),
  13823. name: "Front",
  13824. image: {
  13825. source: "./media/characters/saudade/front.svg",
  13826. extra: 1172 / 1139,
  13827. bottom: 0.035
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Micro",
  13834. height: math.unit(3, "inches")
  13835. },
  13836. {
  13837. name: "Normal",
  13838. height: math.unit(6, "feet"),
  13839. default: true
  13840. },
  13841. {
  13842. name: "Macro",
  13843. height: math.unit(50, "feet")
  13844. },
  13845. {
  13846. name: "Megamacro",
  13847. height: math.unit(2800, "feet")
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13853. {
  13854. front: {
  13855. height: math.unit(5 + 4 / 12, "feet"),
  13856. weight: math.unit(100, "lb"),
  13857. name: "Front",
  13858. image: {
  13859. source: "./media/characters/keireer/front.svg",
  13860. extra: 716 / 666,
  13861. bottom: 0.05
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Normal",
  13868. height: math.unit(5 + 4 / 12, "feet"),
  13869. default: true
  13870. },
  13871. ]
  13872. ))
  13873. characterMakers.push(() => makeCharacter(
  13874. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13875. {
  13876. front: {
  13877. height: math.unit(6, "feet"),
  13878. weight: math.unit(90, "kg"),
  13879. name: "Front",
  13880. image: {
  13881. source: "./media/characters/mirja/front.svg",
  13882. extra: 1789 / 1683,
  13883. bottom: 0.05
  13884. }
  13885. },
  13886. frontDressed: {
  13887. height: math.unit(6, "feet"),
  13888. weight: math.unit(90, "lb"),
  13889. name: "Front (Dressed)",
  13890. image: {
  13891. source: "./media/characters/mirja/front-dressed.svg",
  13892. extra: 1789 / 1683,
  13893. bottom: 0.05
  13894. }
  13895. },
  13896. back: {
  13897. height: math.unit(6, "feet"),
  13898. weight: math.unit(90, "lb"),
  13899. name: "Back",
  13900. image: {
  13901. source: "./media/characters/mirja/back.svg",
  13902. extra: 953 / 917,
  13903. bottom: 0.017
  13904. }
  13905. },
  13906. },
  13907. [
  13908. {
  13909. name: "\"Incognito\"",
  13910. height: math.unit(3, "meters")
  13911. },
  13912. {
  13913. name: "Strolling Size",
  13914. height: math.unit(15, "km")
  13915. },
  13916. {
  13917. name: "Larger Strolling Size",
  13918. height: math.unit(400, "km")
  13919. },
  13920. {
  13921. name: "Preferred Size",
  13922. height: math.unit(5000, "km")
  13923. },
  13924. {
  13925. name: "True Size",
  13926. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13927. default: true
  13928. },
  13929. ]
  13930. ))
  13931. characterMakers.push(() => makeCharacter(
  13932. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13933. {
  13934. front: {
  13935. height: math.unit(15, "feet"),
  13936. weight: math.unit(880, "kg"),
  13937. name: "Front",
  13938. image: {
  13939. source: "./media/characters/nightraver/front.svg",
  13940. extra: 2444 / 2160,
  13941. bottom: 0.027
  13942. }
  13943. },
  13944. back: {
  13945. height: math.unit(15, "feet"),
  13946. weight: math.unit(880, "kg"),
  13947. name: "Back",
  13948. image: {
  13949. source: "./media/characters/nightraver/back.svg",
  13950. extra: 2309 / 2180,
  13951. bottom: 0.005
  13952. }
  13953. },
  13954. sole: {
  13955. height: math.unit(2.878, "feet"),
  13956. name: "Sole",
  13957. image: {
  13958. source: "./media/characters/nightraver/sole.svg"
  13959. }
  13960. },
  13961. foot: {
  13962. height: math.unit(2.285, "feet"),
  13963. name: "Foot",
  13964. image: {
  13965. source: "./media/characters/nightraver/foot.svg"
  13966. }
  13967. },
  13968. maw: {
  13969. height: math.unit(2.67, "feet"),
  13970. name: "Maw",
  13971. image: {
  13972. source: "./media/characters/nightraver/maw.svg"
  13973. }
  13974. },
  13975. },
  13976. [
  13977. {
  13978. name: "Micro",
  13979. height: math.unit(1, "cm")
  13980. },
  13981. {
  13982. name: "Normal",
  13983. height: math.unit(15, "feet"),
  13984. default: true
  13985. },
  13986. {
  13987. name: "Macro",
  13988. height: math.unit(300, "feet")
  13989. },
  13990. {
  13991. name: "Megamacro",
  13992. height: math.unit(300, "miles")
  13993. },
  13994. {
  13995. name: "Gigamacro",
  13996. height: math.unit(10000, "miles")
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14002. {
  14003. side: {
  14004. height: math.unit(2, "inches"),
  14005. weight: math.unit(5, "grams"),
  14006. name: "Side",
  14007. image: {
  14008. source: "./media/characters/arc/side.svg"
  14009. }
  14010. },
  14011. },
  14012. [
  14013. {
  14014. name: "Micro",
  14015. height: math.unit(2, "inches"),
  14016. default: true
  14017. },
  14018. ]
  14019. ))
  14020. characterMakers.push(() => makeCharacter(
  14021. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14022. {
  14023. front: {
  14024. height: math.unit(1.1938, "meters"),
  14025. weight: math.unit(54, "kg"),
  14026. name: "Front",
  14027. image: {
  14028. source: "./media/characters/nebula-shahar/front.svg",
  14029. extra: 1642 / 1436,
  14030. bottom: 0.06
  14031. }
  14032. },
  14033. },
  14034. [
  14035. {
  14036. name: "Megamicro",
  14037. height: math.unit(0.3, "mm")
  14038. },
  14039. {
  14040. name: "Micro",
  14041. height: math.unit(3, "cm")
  14042. },
  14043. {
  14044. name: "Normal",
  14045. height: math.unit(138, "cm"),
  14046. default: true
  14047. },
  14048. {
  14049. name: "Macro",
  14050. height: math.unit(30, "m")
  14051. },
  14052. ]
  14053. ))
  14054. characterMakers.push(() => makeCharacter(
  14055. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14056. {
  14057. front: {
  14058. height: math.unit(5.24, "feet"),
  14059. weight: math.unit(150, "lb"),
  14060. name: "Front",
  14061. image: {
  14062. source: "./media/characters/shayla/front.svg",
  14063. extra: 1512 / 1414,
  14064. bottom: 0.01
  14065. }
  14066. },
  14067. back: {
  14068. height: math.unit(5.24, "feet"),
  14069. weight: math.unit(150, "lb"),
  14070. name: "Back",
  14071. image: {
  14072. source: "./media/characters/shayla/back.svg",
  14073. extra: 1512 / 1414
  14074. }
  14075. },
  14076. hand: {
  14077. height: math.unit(0.7781496062992126, "feet"),
  14078. name: "Hand",
  14079. image: {
  14080. source: "./media/characters/shayla/hand.svg"
  14081. }
  14082. },
  14083. foot: {
  14084. height: math.unit(1.4206036745406823, "feet"),
  14085. name: "Foot",
  14086. image: {
  14087. source: "./media/characters/shayla/foot.svg"
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Micro",
  14094. height: math.unit(0.32, "feet")
  14095. },
  14096. {
  14097. name: "Normal",
  14098. height: math.unit(5.24, "feet"),
  14099. default: true
  14100. },
  14101. {
  14102. name: "Macro",
  14103. height: math.unit(492.12, "feet")
  14104. },
  14105. {
  14106. name: "Megamacro",
  14107. height: math.unit(186.41, "miles")
  14108. },
  14109. ]
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14113. {
  14114. front: {
  14115. height: math.unit(2.2, "m"),
  14116. weight: math.unit(120, "kg"),
  14117. name: "Front",
  14118. image: {
  14119. source: "./media/characters/pia-jr/front.svg",
  14120. extra: 1000 / 970,
  14121. bottom: 0.035
  14122. }
  14123. },
  14124. hand: {
  14125. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14126. name: "Hand",
  14127. image: {
  14128. source: "./media/characters/pia-jr/hand.svg"
  14129. }
  14130. },
  14131. paw: {
  14132. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14133. name: "Paw",
  14134. image: {
  14135. source: "./media/characters/pia-jr/paw.svg"
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Micro",
  14142. height: math.unit(1.2, "cm")
  14143. },
  14144. {
  14145. name: "Normal",
  14146. height: math.unit(2.2, "m"),
  14147. default: true
  14148. },
  14149. {
  14150. name: "Macro",
  14151. height: math.unit(180, "m")
  14152. },
  14153. {
  14154. name: "Megamacro",
  14155. height: math.unit(420, "km")
  14156. },
  14157. ]
  14158. ))
  14159. characterMakers.push(() => makeCharacter(
  14160. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14161. {
  14162. front: {
  14163. height: math.unit(2, "m"),
  14164. weight: math.unit(115, "kg"),
  14165. name: "Front",
  14166. image: {
  14167. source: "./media/characters/pia-sr/front.svg",
  14168. extra: 760 / 730,
  14169. bottom: 0.015
  14170. }
  14171. },
  14172. back: {
  14173. height: math.unit(2, "m"),
  14174. weight: math.unit(115, "kg"),
  14175. name: "Back",
  14176. image: {
  14177. source: "./media/characters/pia-sr/back.svg",
  14178. extra: 760 / 730,
  14179. bottom: 0.01
  14180. }
  14181. },
  14182. hand: {
  14183. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14184. name: "Hand",
  14185. image: {
  14186. source: "./media/characters/pia-sr/hand.svg"
  14187. }
  14188. },
  14189. foot: {
  14190. height: math.unit(1.83, "feet"),
  14191. name: "Foot",
  14192. image: {
  14193. source: "./media/characters/pia-sr/foot.svg"
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Micro",
  14200. height: math.unit(88, "mm")
  14201. },
  14202. {
  14203. name: "Normal",
  14204. height: math.unit(2, "m"),
  14205. default: true
  14206. },
  14207. {
  14208. name: "Macro",
  14209. height: math.unit(200, "m")
  14210. },
  14211. {
  14212. name: "Megamacro",
  14213. height: math.unit(420, "km")
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14219. {
  14220. front: {
  14221. height: math.unit(8 + 2 / 12, "feet"),
  14222. weight: math.unit(300, "lb"),
  14223. name: "Front",
  14224. image: {
  14225. source: "./media/characters/kibibyte/front.svg",
  14226. extra: 2221 / 2098,
  14227. bottom: 0.04
  14228. }
  14229. },
  14230. },
  14231. [
  14232. {
  14233. name: "Normal",
  14234. height: math.unit(8 + 2 / 12, "feet"),
  14235. default: true
  14236. },
  14237. {
  14238. name: "Socialable Macro",
  14239. height: math.unit(50, "feet")
  14240. },
  14241. {
  14242. name: "Macro",
  14243. height: math.unit(300, "feet")
  14244. },
  14245. {
  14246. name: "Megamacro",
  14247. height: math.unit(500, "miles")
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14253. {
  14254. front: {
  14255. height: math.unit(6, "feet"),
  14256. weight: math.unit(150, "lb"),
  14257. name: "Front",
  14258. image: {
  14259. source: "./media/characters/felix/front.svg",
  14260. extra: 762 / 722,
  14261. bottom: 0.02
  14262. }
  14263. },
  14264. frontClothed: {
  14265. height: math.unit(6, "feet"),
  14266. weight: math.unit(150, "lb"),
  14267. name: "Front (Clothed)",
  14268. image: {
  14269. source: "./media/characters/felix/front-clothed.svg",
  14270. extra: 762 / 722,
  14271. bottom: 0.02
  14272. }
  14273. },
  14274. },
  14275. [
  14276. {
  14277. name: "Normal",
  14278. height: math.unit(6 + 8 / 12, "feet"),
  14279. default: true
  14280. },
  14281. {
  14282. name: "Macro",
  14283. height: math.unit(2600, "feet")
  14284. },
  14285. {
  14286. name: "Megamacro",
  14287. height: math.unit(450, "miles")
  14288. },
  14289. ]
  14290. ))
  14291. characterMakers.push(() => makeCharacter(
  14292. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14293. {
  14294. front: {
  14295. height: math.unit(6 + 1 / 12, "feet"),
  14296. weight: math.unit(250, "lb"),
  14297. name: "Front",
  14298. image: {
  14299. source: "./media/characters/tobo/front.svg",
  14300. extra: 608 / 586,
  14301. bottom: 0.023
  14302. }
  14303. },
  14304. back: {
  14305. height: math.unit(6 + 1 / 12, "feet"),
  14306. weight: math.unit(250, "lb"),
  14307. name: "Back",
  14308. image: {
  14309. source: "./media/characters/tobo/back.svg",
  14310. extra: 608 / 586
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Nano",
  14317. height: math.unit(2, "nm")
  14318. },
  14319. {
  14320. name: "Megamicro",
  14321. height: math.unit(0.1, "mm")
  14322. },
  14323. {
  14324. name: "Micro",
  14325. height: math.unit(1, "inch"),
  14326. default: true
  14327. },
  14328. {
  14329. name: "Human-sized",
  14330. height: math.unit(6 + 1 / 12, "feet")
  14331. },
  14332. {
  14333. name: "Macro",
  14334. height: math.unit(250, "feet")
  14335. },
  14336. {
  14337. name: "Megamacro",
  14338. height: math.unit(75, "miles")
  14339. },
  14340. {
  14341. name: "Texas-sized",
  14342. height: math.unit(750, "miles")
  14343. },
  14344. {
  14345. name: "Teramacro",
  14346. height: math.unit(50000, "miles")
  14347. },
  14348. ]
  14349. ))
  14350. characterMakers.push(() => makeCharacter(
  14351. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14352. {
  14353. front: {
  14354. height: math.unit(6, "feet"),
  14355. weight: math.unit(269, "lb"),
  14356. name: "Front",
  14357. image: {
  14358. source: "./media/characters/danny-kapowsky/front.svg",
  14359. extra: 766 / 736,
  14360. bottom: 0.044
  14361. }
  14362. },
  14363. back: {
  14364. height: math.unit(6, "feet"),
  14365. weight: math.unit(269, "lb"),
  14366. name: "Back",
  14367. image: {
  14368. source: "./media/characters/danny-kapowsky/back.svg",
  14369. extra: 797 / 760,
  14370. bottom: 0.025
  14371. }
  14372. },
  14373. },
  14374. [
  14375. {
  14376. name: "Macro",
  14377. height: math.unit(150, "feet"),
  14378. default: true
  14379. },
  14380. {
  14381. name: "Macro+",
  14382. height: math.unit(200, "feet")
  14383. },
  14384. {
  14385. name: "Macro++",
  14386. height: math.unit(300, "feet")
  14387. },
  14388. {
  14389. name: "Macro+++",
  14390. height: math.unit(400, "feet")
  14391. },
  14392. ]
  14393. ))
  14394. characterMakers.push(() => makeCharacter(
  14395. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14396. {
  14397. side: {
  14398. height: math.unit(6, "feet"),
  14399. weight: math.unit(170, "lb"),
  14400. name: "Side",
  14401. image: {
  14402. source: "./media/characters/finn/side.svg",
  14403. extra: 1953 / 1807,
  14404. bottom: 0.057
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Megamacro",
  14411. height: math.unit(14445, "feet"),
  14412. default: true
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14418. {
  14419. front: {
  14420. height: math.unit(5 + 6 / 12, "feet"),
  14421. weight: math.unit(125, "lb"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/roy/front.svg",
  14425. extra: 1,
  14426. bottom: 0.11
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Micro",
  14433. height: math.unit(3, "inches"),
  14434. default: true
  14435. },
  14436. {
  14437. name: "Normal",
  14438. height: math.unit(5 + 6 / 12, "feet")
  14439. },
  14440. {
  14441. name: "Lesser Macro",
  14442. height: math.unit(60, "feet")
  14443. },
  14444. {
  14445. name: "Greater Macro",
  14446. height: math.unit(120, "feet")
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14452. {
  14453. front: {
  14454. height: math.unit(6, "feet"),
  14455. weight: math.unit(100, "lb"),
  14456. name: "Front",
  14457. image: {
  14458. source: "./media/characters/aevsivs/front.svg",
  14459. extra: 1,
  14460. bottom: 0.03
  14461. }
  14462. },
  14463. back: {
  14464. height: math.unit(6, "feet"),
  14465. weight: math.unit(100, "lb"),
  14466. name: "Back",
  14467. image: {
  14468. source: "./media/characters/aevsivs/back.svg"
  14469. }
  14470. },
  14471. },
  14472. [
  14473. {
  14474. name: "Micro",
  14475. height: math.unit(2, "inches"),
  14476. default: true
  14477. },
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(5, "feet")
  14481. },
  14482. ]
  14483. ))
  14484. characterMakers.push(() => makeCharacter(
  14485. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14486. {
  14487. front: {
  14488. height: math.unit(5 + 7 / 12, "feet"),
  14489. weight: math.unit(159, "lb"),
  14490. name: "Front",
  14491. image: {
  14492. source: "./media/characters/hildegard/front.svg",
  14493. extra: 289 / 269,
  14494. bottom: 7.63 / 297.8
  14495. }
  14496. },
  14497. back: {
  14498. height: math.unit(5 + 7 / 12, "feet"),
  14499. weight: math.unit(159, "lb"),
  14500. name: "Back",
  14501. image: {
  14502. source: "./media/characters/hildegard/back.svg",
  14503. extra: 280 / 260,
  14504. bottom: 2.3 / 282
  14505. }
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Normal",
  14511. height: math.unit(5 + 7 / 12, "feet"),
  14512. default: true
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14518. {
  14519. bernard: {
  14520. height: math.unit(2 + 7 / 12, "feet"),
  14521. weight: math.unit(66, "lb"),
  14522. name: "Bernard",
  14523. rename: true,
  14524. image: {
  14525. source: "./media/characters/bernard-wilder/bernard.svg",
  14526. extra: 192 / 128,
  14527. bottom: 0.05
  14528. }
  14529. },
  14530. wilder: {
  14531. height: math.unit(5 + 8 / 12, "feet"),
  14532. weight: math.unit(143, "lb"),
  14533. name: "Wilder",
  14534. rename: true,
  14535. image: {
  14536. source: "./media/characters/bernard-wilder/wilder.svg",
  14537. extra: 361 / 312,
  14538. bottom: 0.02
  14539. }
  14540. },
  14541. },
  14542. [
  14543. {
  14544. name: "Normal",
  14545. height: math.unit(2 + 7 / 12, "feet"),
  14546. default: true
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14552. {
  14553. anthro: {
  14554. height: math.unit(6 + 1 / 12, "feet"),
  14555. weight: math.unit(155, "lb"),
  14556. name: "Anthro",
  14557. image: {
  14558. source: "./media/characters/hearth/anthro.svg",
  14559. extra: 260 / 250,
  14560. bottom: 0.02
  14561. }
  14562. },
  14563. feral: {
  14564. height: math.unit(3.78, "feet"),
  14565. weight: math.unit(35, "kg"),
  14566. name: "Feral",
  14567. image: {
  14568. source: "./media/characters/hearth/feral.svg",
  14569. extra: 153 / 135,
  14570. bottom: 0.03
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Normal",
  14577. height: math.unit(6 + 1 / 12, "feet"),
  14578. default: true
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14584. {
  14585. front: {
  14586. height: math.unit(6, "feet"),
  14587. weight: math.unit(182, "lb"),
  14588. name: "Front",
  14589. image: {
  14590. source: "./media/characters/ingrid/front.svg",
  14591. extra: 294 / 268,
  14592. bottom: 0.027
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Normal",
  14599. height: math.unit(6, "feet"),
  14600. default: true
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14606. {
  14607. eevee: {
  14608. height: math.unit(2 + 10 / 12, "feet"),
  14609. weight: math.unit(86, "lb"),
  14610. name: "Malgam",
  14611. image: {
  14612. source: "./media/characters/malgam/eevee.svg",
  14613. extra: 218 / 180,
  14614. bottom: 0.2
  14615. }
  14616. },
  14617. sylveon: {
  14618. height: math.unit(4, "feet"),
  14619. weight: math.unit(101, "lb"),
  14620. name: "Future Malgam",
  14621. rename: true,
  14622. image: {
  14623. source: "./media/characters/malgam/sylveon.svg",
  14624. extra: 371 / 325,
  14625. bottom: 0.015
  14626. }
  14627. },
  14628. gigantamax: {
  14629. height: math.unit(50, "feet"),
  14630. name: "Gigantamax Malgam",
  14631. rename: true,
  14632. image: {
  14633. source: "./media/characters/malgam/gigantamax.svg"
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Normal",
  14640. height: math.unit(2 + 10 / 12, "feet"),
  14641. default: true
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14647. {
  14648. front: {
  14649. height: math.unit(5 + 11 / 12, "feet"),
  14650. weight: math.unit(188, "lb"),
  14651. name: "Front",
  14652. image: {
  14653. source: "./media/characters/fleur/front.svg",
  14654. extra: 309 / 283,
  14655. bottom: 0.007
  14656. }
  14657. },
  14658. },
  14659. [
  14660. {
  14661. name: "Normal",
  14662. height: math.unit(5 + 11 / 12, "feet"),
  14663. default: true
  14664. },
  14665. ]
  14666. ))
  14667. characterMakers.push(() => makeCharacter(
  14668. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14669. {
  14670. front: {
  14671. height: math.unit(5 + 4 / 12, "feet"),
  14672. weight: math.unit(122, "lb"),
  14673. name: "Front",
  14674. image: {
  14675. source: "./media/characters/jude/front.svg",
  14676. extra: 288 / 273,
  14677. bottom: 0.03
  14678. }
  14679. },
  14680. },
  14681. [
  14682. {
  14683. name: "Normal",
  14684. height: math.unit(5 + 4 / 12, "feet"),
  14685. default: true
  14686. },
  14687. ]
  14688. ))
  14689. characterMakers.push(() => makeCharacter(
  14690. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14691. {
  14692. front: {
  14693. height: math.unit(5 + 11 / 12, "feet"),
  14694. weight: math.unit(190, "lb"),
  14695. name: "Front",
  14696. image: {
  14697. source: "./media/characters/seara/front.svg",
  14698. extra: 1,
  14699. bottom: 0.05
  14700. }
  14701. },
  14702. },
  14703. [
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(5 + 11 / 12, "feet"),
  14707. default: true
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(16 + 5 / 12, "feet"),
  14716. weight: math.unit(524, "lb"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/caspian/front.svg",
  14720. extra: 1,
  14721. bottom: 0.04
  14722. }
  14723. },
  14724. },
  14725. [
  14726. {
  14727. name: "Normal",
  14728. height: math.unit(16 + 5 / 12, "feet"),
  14729. default: true
  14730. },
  14731. ]
  14732. ))
  14733. characterMakers.push(() => makeCharacter(
  14734. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14735. {
  14736. front: {
  14737. height: math.unit(5 + 7 / 12, "feet"),
  14738. weight: math.unit(170, "lb"),
  14739. name: "Front",
  14740. image: {
  14741. source: "./media/characters/mika/front.svg",
  14742. extra: 1,
  14743. bottom: 0.016
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(5 + 7 / 12, "feet"),
  14751. default: true
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14757. {
  14758. front: {
  14759. height: math.unit(6 + 2 / 12, "feet"),
  14760. weight: math.unit(268, "lb"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/sol/front.svg",
  14764. extra: 247 / 231,
  14765. bottom: 0.05
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Normal",
  14772. height: math.unit(6 + 2 / 12, "feet"),
  14773. default: true
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14779. {
  14780. buizel: {
  14781. height: math.unit(2 + 5 / 12, "feet"),
  14782. weight: math.unit(87, "lb"),
  14783. name: "Buizel",
  14784. image: {
  14785. source: "./media/characters/umiko/buizel.svg",
  14786. extra: 172 / 157,
  14787. bottom: 0.01
  14788. }
  14789. },
  14790. floatzel: {
  14791. height: math.unit(5 + 9 / 12, "feet"),
  14792. weight: math.unit(250, "lb"),
  14793. name: "Floatzel",
  14794. image: {
  14795. source: "./media/characters/umiko/floatzel.svg",
  14796. extra: 262 / 248
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(2 + 5 / 12, "feet"),
  14804. default: true
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14810. {
  14811. front: {
  14812. height: math.unit(6 + 2 / 12, "feet"),
  14813. weight: math.unit(146, "lb"),
  14814. name: "Front",
  14815. image: {
  14816. source: "./media/characters/iliac/front.svg",
  14817. extra: 389 / 365,
  14818. bottom: 0.035
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Normal",
  14825. height: math.unit(6 + 2 / 12, "feet"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14832. {
  14833. front: {
  14834. height: math.unit(6, "feet"),
  14835. weight: math.unit(170, "lb"),
  14836. name: "Front",
  14837. image: {
  14838. source: "./media/characters/topaz/front.svg",
  14839. extra: 317 / 303,
  14840. bottom: 0.055
  14841. }
  14842. },
  14843. },
  14844. [
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(6, "feet"),
  14848. default: true
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(5 + 11 / 12, "feet"),
  14857. weight: math.unit(144, "lb"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/gabriel/front.svg",
  14861. extra: 285 / 262,
  14862. bottom: 0.004
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(5 + 11 / 12, "feet"),
  14870. default: true
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14876. {
  14877. side: {
  14878. height: math.unit(6 + 5 / 12, "feet"),
  14879. weight: math.unit(300, "lb"),
  14880. name: "Side",
  14881. image: {
  14882. source: "./media/characters/tempest-suicune/side.svg",
  14883. extra: 195 / 154,
  14884. bottom: 0.04
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(6 + 5 / 12, "feet"),
  14892. default: true
  14893. },
  14894. ]
  14895. ))
  14896. characterMakers.push(() => makeCharacter(
  14897. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14898. {
  14899. front: {
  14900. height: math.unit(7 + 2 / 12, "feet"),
  14901. weight: math.unit(322, "lb"),
  14902. name: "Front",
  14903. image: {
  14904. source: "./media/characters/vulcan/front.svg",
  14905. extra: 154 / 147,
  14906. bottom: 0.04
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Normal",
  14913. height: math.unit(7 + 2 / 12, "feet"),
  14914. default: true
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14920. {
  14921. front: {
  14922. height: math.unit(5 + 10 / 12, "feet"),
  14923. weight: math.unit(264, "lb"),
  14924. name: "Front",
  14925. image: {
  14926. source: "./media/characters/gault/front.svg",
  14927. extra: 161 / 140,
  14928. bottom: 0.028
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Normal",
  14935. height: math.unit(5 + 10 / 12, "feet"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(6, "feet"),
  14945. weight: math.unit(150, "lb"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/shard/front.svg",
  14949. extra: 273 / 238,
  14950. bottom: 0.02
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Normal",
  14957. height: math.unit(3 + 6 / 12, "feet"),
  14958. default: true
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(5 + 11 / 12, "feet"),
  14967. weight: math.unit(146, "lb"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/ashe/front.svg",
  14971. extra: 400 / 373,
  14972. bottom: 0.01
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Normal",
  14979. height: math.unit(5 + 11 / 12, "feet"),
  14980. default: true
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14986. {
  14987. front: {
  14988. height: math.unit(5 + 5 / 12, "feet"),
  14989. weight: math.unit(135, "lb"),
  14990. name: "Front",
  14991. image: {
  14992. source: "./media/characters/beatrix/front.svg",
  14993. extra: 392 / 379,
  14994. bottom: 0.01
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(6, "feet"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(6, "feet"),
  15011. weight: math.unit(150, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/ignatius/front.svg",
  15015. extra: 245 / 222,
  15016. bottom: 0.01
  15017. }
  15018. },
  15019. },
  15020. [
  15021. {
  15022. name: "Normal",
  15023. height: math.unit(5 + 5 / 12, "feet"),
  15024. default: true
  15025. },
  15026. ]
  15027. ))
  15028. characterMakers.push(() => makeCharacter(
  15029. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15030. {
  15031. front: {
  15032. height: math.unit(6 + 2 / 12, "feet"),
  15033. weight: math.unit(138, "lb"),
  15034. name: "Front",
  15035. image: {
  15036. source: "./media/characters/mei-li/front.svg",
  15037. extra: 237 / 229,
  15038. bottom: 0.03
  15039. }
  15040. },
  15041. },
  15042. [
  15043. {
  15044. name: "Normal",
  15045. height: math.unit(6 + 2 / 12, "feet"),
  15046. default: true
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15052. {
  15053. front: {
  15054. height: math.unit(2 + 4 / 12, "feet"),
  15055. weight: math.unit(62, "lb"),
  15056. name: "Front",
  15057. image: {
  15058. source: "./media/characters/puru/front.svg",
  15059. extra: 206 / 149,
  15060. bottom: 0.06
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(2 + 4 / 12, "feet"),
  15068. default: true
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15074. {
  15075. anthro: {
  15076. height: math.unit(5 + 8/12, "feet"),
  15077. weight: math.unit(200, "lb"),
  15078. energyNeed: math.unit(2000, "kcal"),
  15079. name: "Anthro",
  15080. image: {
  15081. source: "./media/characters/kee/anthro.svg",
  15082. extra: 3251/3184,
  15083. bottom: 250/3501
  15084. }
  15085. },
  15086. taur: {
  15087. height: math.unit(11, "feet"),
  15088. weight: math.unit(500, "lb"),
  15089. energyNeed: math.unit(5000, "kcal"),
  15090. name: "Taur",
  15091. image: {
  15092. source: "./media/characters/kee/taur.svg",
  15093. extra: 1362/1320,
  15094. bottom: 83/1445
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(5 + 8/12, "feet"),
  15102. default: true
  15103. },
  15104. {
  15105. name: "Macro",
  15106. height: math.unit(35, "feet")
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15112. {
  15113. anthro: {
  15114. height: math.unit(7, "feet"),
  15115. weight: math.unit(190, "lb"),
  15116. name: "Anthro",
  15117. image: {
  15118. source: "./media/characters/cobalt-dracha/anthro.svg",
  15119. extra: 231 / 225,
  15120. bottom: 0.04
  15121. }
  15122. },
  15123. feral: {
  15124. height: math.unit(9 + 7 / 12, "feet"),
  15125. weight: math.unit(294, "lb"),
  15126. name: "Feral",
  15127. image: {
  15128. source: "./media/characters/cobalt-dracha/feral.svg",
  15129. extra: 692 / 633,
  15130. bottom: 0.05
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(7, "feet"),
  15138. default: true
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15144. {
  15145. fallen: {
  15146. height: math.unit(11 + 8 / 12, "feet"),
  15147. weight: math.unit(485, "lb"),
  15148. name: "Java (Fallen)",
  15149. rename: true,
  15150. image: {
  15151. source: "./media/characters/java/fallen.svg",
  15152. extra: 226 / 208,
  15153. bottom: 0.005
  15154. }
  15155. },
  15156. godkin: {
  15157. height: math.unit(10 + 6 / 12, "feet"),
  15158. weight: math.unit(328, "lb"),
  15159. name: "Java (Godkin)",
  15160. rename: true,
  15161. image: {
  15162. source: "./media/characters/java/godkin.svg",
  15163. extra: 270 / 262,
  15164. bottom: 0.02
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(11 + 8 / 12, "feet"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15178. {
  15179. front: {
  15180. height: math.unit(7 + 8 / 12, "feet"),
  15181. weight: math.unit(320, "lb"),
  15182. name: "Front",
  15183. image: {
  15184. source: "./media/characters/skoll/front.svg",
  15185. extra: 232 / 220,
  15186. bottom: 0.02
  15187. }
  15188. },
  15189. },
  15190. [
  15191. {
  15192. name: "Normal",
  15193. height: math.unit(7 + 8 / 12, "feet"),
  15194. default: true
  15195. },
  15196. ]
  15197. ))
  15198. characterMakers.push(() => makeCharacter(
  15199. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15200. {
  15201. front: {
  15202. height: math.unit(5 + 9 / 12, "feet"),
  15203. weight: math.unit(170, "lb"),
  15204. name: "Front",
  15205. image: {
  15206. source: "./media/characters/purna/front.svg",
  15207. extra: 239 / 229,
  15208. bottom: 0.01
  15209. }
  15210. },
  15211. },
  15212. [
  15213. {
  15214. name: "Normal",
  15215. height: math.unit(5 + 9 / 12, "feet"),
  15216. default: true
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(5 + 9 / 12, "feet"),
  15225. weight: math.unit(142, "lb"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/kuva/front.svg",
  15229. extra: 281 / 271,
  15230. bottom: 0.006
  15231. }
  15232. },
  15233. },
  15234. [
  15235. {
  15236. name: "Normal",
  15237. height: math.unit(5 + 9 / 12, "feet"),
  15238. default: true
  15239. },
  15240. ]
  15241. ))
  15242. characterMakers.push(() => makeCharacter(
  15243. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15244. {
  15245. anthro: {
  15246. height: math.unit(9 + 2 / 12, "feet"),
  15247. weight: math.unit(270, "lb"),
  15248. name: "Anthro",
  15249. image: {
  15250. source: "./media/characters/embra/anthro.svg",
  15251. extra: 200 / 187,
  15252. bottom: 0.02
  15253. }
  15254. },
  15255. feral: {
  15256. height: math.unit(18 + 8 / 12, "feet"),
  15257. weight: math.unit(576, "lb"),
  15258. name: "Feral",
  15259. image: {
  15260. source: "./media/characters/embra/feral.svg",
  15261. extra: 152 / 137,
  15262. bottom: 0.037
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Normal",
  15269. height: math.unit(9 + 2 / 12, "feet"),
  15270. default: true
  15271. },
  15272. ]
  15273. ))
  15274. characterMakers.push(() => makeCharacter(
  15275. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15276. {
  15277. anthro: {
  15278. height: math.unit(10 + 9 / 12, "feet"),
  15279. weight: math.unit(224, "lb"),
  15280. name: "Anthro",
  15281. image: {
  15282. source: "./media/characters/grottos/anthro.svg",
  15283. extra: 350 / 332,
  15284. bottom: 0.045
  15285. }
  15286. },
  15287. feral: {
  15288. height: math.unit(20 + 7 / 12, "feet"),
  15289. weight: math.unit(629, "lb"),
  15290. name: "Feral",
  15291. image: {
  15292. source: "./media/characters/grottos/feral.svg",
  15293. extra: 207 / 190,
  15294. bottom: 0.05
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Normal",
  15301. height: math.unit(10 + 9 / 12, "feet"),
  15302. default: true
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15308. {
  15309. anthro: {
  15310. height: math.unit(9 + 6 / 12, "feet"),
  15311. weight: math.unit(298, "lb"),
  15312. name: "Anthro",
  15313. image: {
  15314. source: "./media/characters/frifna/anthro.svg",
  15315. extra: 282 / 269,
  15316. bottom: 0.015
  15317. }
  15318. },
  15319. feral: {
  15320. height: math.unit(16 + 2 / 12, "feet"),
  15321. weight: math.unit(624, "lb"),
  15322. name: "Feral",
  15323. image: {
  15324. source: "./media/characters/frifna/feral.svg"
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Normal",
  15331. height: math.unit(9 + 6 / 12, "feet"),
  15332. default: true
  15333. },
  15334. ]
  15335. ))
  15336. characterMakers.push(() => makeCharacter(
  15337. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15338. {
  15339. front: {
  15340. height: math.unit(6 + 2 / 12, "feet"),
  15341. weight: math.unit(168, "lb"),
  15342. name: "Front",
  15343. image: {
  15344. source: "./media/characters/elise/front.svg",
  15345. extra: 276 / 271
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Normal",
  15352. height: math.unit(6 + 2 / 12, "feet"),
  15353. default: true
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15359. {
  15360. front: {
  15361. height: math.unit(5 + 10 / 12, "feet"),
  15362. weight: math.unit(210, "lb"),
  15363. name: "Front",
  15364. image: {
  15365. source: "./media/characters/glade/front.svg",
  15366. extra: 258 / 247,
  15367. bottom: 0.008
  15368. }
  15369. },
  15370. },
  15371. [
  15372. {
  15373. name: "Normal",
  15374. height: math.unit(5 + 10 / 12, "feet"),
  15375. default: true
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(5 + 10 / 12, "feet"),
  15384. weight: math.unit(129, "lb"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/rina/front.svg",
  15388. extra: 266 / 255,
  15389. bottom: 0.005
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(5 + 10 / 12, "feet"),
  15397. default: true
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15403. {
  15404. front: {
  15405. height: math.unit(6 + 1 / 12, "feet"),
  15406. weight: math.unit(192, "lb"),
  15407. name: "Front",
  15408. image: {
  15409. source: "./media/characters/veronica/front.svg",
  15410. extra: 319 / 309,
  15411. bottom: 0.005
  15412. }
  15413. },
  15414. },
  15415. [
  15416. {
  15417. name: "Normal",
  15418. height: math.unit(6 + 1 / 12, "feet"),
  15419. default: true
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15425. {
  15426. front: {
  15427. height: math.unit(9 + 3 / 12, "feet"),
  15428. weight: math.unit(1100, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/braxton/front.svg",
  15432. extra: 1057 / 984,
  15433. bottom: 0.05
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Normal",
  15440. height: math.unit(9 + 3 / 12, "feet")
  15441. },
  15442. {
  15443. name: "Giant",
  15444. height: math.unit(300, "feet"),
  15445. default: true
  15446. },
  15447. {
  15448. name: "Macro",
  15449. height: math.unit(700, "feet")
  15450. },
  15451. {
  15452. name: "Megamacro",
  15453. height: math.unit(6000, "feet")
  15454. },
  15455. ]
  15456. ))
  15457. characterMakers.push(() => makeCharacter(
  15458. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15459. {
  15460. front: {
  15461. height: math.unit(6 + 7 / 12, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Front",
  15464. image: {
  15465. source: "./media/characters/blue-feyonics/front.svg",
  15466. extra: 1403 / 1306,
  15467. bottom: 0.047
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(6 + 7 / 12, "feet"),
  15475. default: true
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(1.8, "meters"),
  15484. weight: math.unit(60, "kg"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/maxwell/front.svg",
  15488. extra: 2060 / 1873
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Micro",
  15495. height: math.unit(1, "mm")
  15496. },
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(1.8, "meter"),
  15500. default: true
  15501. },
  15502. {
  15503. name: "Macro",
  15504. height: math.unit(30, "meters")
  15505. },
  15506. {
  15507. name: "Megamacro",
  15508. height: math.unit(10, "km")
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15514. {
  15515. front: {
  15516. height: math.unit(6, "feet"),
  15517. weight: math.unit(150, "lb"),
  15518. name: "Front",
  15519. image: {
  15520. source: "./media/characters/jack/front.svg",
  15521. extra: 1754 / 1640,
  15522. bottom: 0.01
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(80000, "feet"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Max size",
  15534. height: math.unit(10, "lightyears")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15540. {
  15541. upright: {
  15542. height: math.unit(7, "feet"),
  15543. weight: math.unit(170, "lb"),
  15544. name: "Upright",
  15545. image: {
  15546. source: "./media/characters/cafat/upright.svg",
  15547. bottom: 0.01
  15548. }
  15549. },
  15550. uprightFull: {
  15551. height: math.unit(7, "feet"),
  15552. weight: math.unit(170, "lb"),
  15553. name: "Upright (Full)",
  15554. image: {
  15555. source: "./media/characters/cafat/upright-full.svg",
  15556. bottom: 0.01
  15557. }
  15558. },
  15559. side: {
  15560. height: math.unit(5, "feet"),
  15561. weight: math.unit(150, "lb"),
  15562. name: "Side",
  15563. image: {
  15564. source: "./media/characters/cafat/side.svg"
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Small",
  15571. height: math.unit(7, "feet"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Large",
  15576. height: math.unit(15.5, "feet")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(6, "feet"),
  15585. weight: math.unit(150, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/verin-raharra/front.svg",
  15589. extra: 5019 / 4835,
  15590. bottom: 0.023
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Normal",
  15597. height: math.unit(7 + 5 / 12, "feet"),
  15598. default: true
  15599. },
  15600. {
  15601. name: "Upsized",
  15602. height: math.unit(20, "feet")
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(7, "feet"),
  15611. weight: math.unit(230, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/nakata/front.svg",
  15615. extra: 1.005,
  15616. bottom: 0.01
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Normal",
  15623. height: math.unit(7, "feet"),
  15624. default: true
  15625. },
  15626. {
  15627. name: "Big",
  15628. height: math.unit(14, "feet")
  15629. },
  15630. {
  15631. name: "Macro",
  15632. height: math.unit(400, "feet")
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(4.91, "feet"),
  15641. weight: math.unit(100, "lb"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/lily/front.svg",
  15645. extra: 1585 / 1415,
  15646. bottom: 0.02
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(4.91, "feet"),
  15654. default: true
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15660. {
  15661. laying: {
  15662. height: math.unit(4 + 4 / 12, "feet"),
  15663. weight: math.unit(600, "lb"),
  15664. name: "Laying",
  15665. image: {
  15666. source: "./media/characters/sheila/laying.svg",
  15667. extra: 1333 / 1265,
  15668. bottom: 0.16
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Normal",
  15675. height: math.unit(4 + 4 / 12, "feet"),
  15676. default: true
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15682. {
  15683. front: {
  15684. height: math.unit(6, "feet"),
  15685. weight: math.unit(190, "lb"),
  15686. name: "Front",
  15687. image: {
  15688. source: "./media/characters/sax/front.svg",
  15689. extra: 1187 / 973,
  15690. bottom: 0.042
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Micro",
  15697. height: math.unit(4, "inches"),
  15698. default: true
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15704. {
  15705. front: {
  15706. height: math.unit(6, "feet"),
  15707. weight: math.unit(150, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/pandora/front.svg",
  15711. extra: 2720 / 2556,
  15712. bottom: 0.015
  15713. }
  15714. },
  15715. back: {
  15716. height: math.unit(6, "feet"),
  15717. weight: math.unit(150, "lb"),
  15718. name: "Back",
  15719. image: {
  15720. source: "./media/characters/pandora/back.svg",
  15721. extra: 2720 / 2556,
  15722. bottom: 0.01
  15723. }
  15724. },
  15725. beans: {
  15726. height: math.unit(6 / 8, "feet"),
  15727. name: "Beans",
  15728. image: {
  15729. source: "./media/characters/pandora/beans.svg"
  15730. }
  15731. },
  15732. skirt: {
  15733. height: math.unit(6, "feet"),
  15734. weight: math.unit(150, "lb"),
  15735. name: "Skirt",
  15736. image: {
  15737. source: "./media/characters/pandora/skirt.svg",
  15738. extra: 1622 / 1525,
  15739. bottom: 0.015
  15740. }
  15741. },
  15742. hoodie: {
  15743. height: math.unit(6, "feet"),
  15744. weight: math.unit(150, "lb"),
  15745. name: "Hoodie",
  15746. image: {
  15747. source: "./media/characters/pandora/hoodie.svg",
  15748. extra: 1622 / 1525,
  15749. bottom: 0.015
  15750. }
  15751. },
  15752. casual: {
  15753. height: math.unit(6, "feet"),
  15754. weight: math.unit(150, "lb"),
  15755. name: "Casual",
  15756. image: {
  15757. source: "./media/characters/pandora/casual.svg",
  15758. extra: 1622 / 1525,
  15759. bottom: 0.015
  15760. }
  15761. },
  15762. },
  15763. [
  15764. {
  15765. name: "Normal",
  15766. height: math.unit(6, "feet")
  15767. },
  15768. {
  15769. name: "Big Steppy",
  15770. height: math.unit(1, "km"),
  15771. default: true
  15772. },
  15773. ]
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15777. {
  15778. side: {
  15779. height: math.unit(10, "feet"),
  15780. weight: math.unit(800, "kg"),
  15781. name: "Side",
  15782. image: {
  15783. source: "./media/characters/venio-darcony/side.svg",
  15784. extra: 1373 / 1003,
  15785. bottom: 0.037
  15786. }
  15787. },
  15788. front: {
  15789. height: math.unit(19, "feet"),
  15790. weight: math.unit(800, "kg"),
  15791. name: "Front",
  15792. image: {
  15793. source: "./media/characters/venio-darcony/front.svg"
  15794. }
  15795. },
  15796. back: {
  15797. height: math.unit(19, "feet"),
  15798. weight: math.unit(800, "kg"),
  15799. name: "Back",
  15800. image: {
  15801. source: "./media/characters/venio-darcony/back.svg"
  15802. }
  15803. },
  15804. sideNsfw: {
  15805. height: math.unit(10, "feet"),
  15806. weight: math.unit(800, "kg"),
  15807. name: "Side (NSFW)",
  15808. image: {
  15809. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15810. extra: 1373 / 1003,
  15811. bottom: 0.037
  15812. }
  15813. },
  15814. frontNsfw: {
  15815. height: math.unit(19, "feet"),
  15816. weight: math.unit(800, "kg"),
  15817. name: "Front (NSFW)",
  15818. image: {
  15819. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15820. }
  15821. },
  15822. backNsfw: {
  15823. height: math.unit(19, "feet"),
  15824. weight: math.unit(800, "kg"),
  15825. name: "Back (NSFW)",
  15826. image: {
  15827. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15828. }
  15829. },
  15830. sideArmored: {
  15831. height: math.unit(10, "feet"),
  15832. weight: math.unit(800, "kg"),
  15833. name: "Side (Armored)",
  15834. image: {
  15835. source: "./media/characters/venio-darcony/side-armored.svg",
  15836. extra: 1373 / 1003,
  15837. bottom: 0.037
  15838. }
  15839. },
  15840. frontArmored: {
  15841. height: math.unit(19, "feet"),
  15842. weight: math.unit(900, "kg"),
  15843. name: "Front (Armored)",
  15844. image: {
  15845. source: "./media/characters/venio-darcony/front-armored.svg"
  15846. }
  15847. },
  15848. backArmored: {
  15849. height: math.unit(19, "feet"),
  15850. weight: math.unit(900, "kg"),
  15851. name: "Back (Armored)",
  15852. image: {
  15853. source: "./media/characters/venio-darcony/back-armored.svg"
  15854. }
  15855. },
  15856. sword: {
  15857. height: math.unit(10, "feet"),
  15858. weight: math.unit(50, "lb"),
  15859. name: "Sword",
  15860. image: {
  15861. source: "./media/characters/venio-darcony/sword.svg"
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(10, "feet")
  15869. },
  15870. {
  15871. name: "Macro",
  15872. height: math.unit(130, "feet"),
  15873. default: true
  15874. },
  15875. {
  15876. name: "Macro+",
  15877. height: math.unit(240, "feet")
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(6, "feet"),
  15886. weight: math.unit(150, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/veski/front.svg",
  15890. extra: 1299 / 1225,
  15891. bottom: 0.04
  15892. }
  15893. },
  15894. back: {
  15895. height: math.unit(6, "feet"),
  15896. weight: math.unit(150, "lb"),
  15897. name: "Back",
  15898. image: {
  15899. source: "./media/characters/veski/back.svg",
  15900. extra: 1299 / 1225,
  15901. bottom: 0.008
  15902. }
  15903. },
  15904. maw: {
  15905. height: math.unit(1.5 * 1.21, "feet"),
  15906. name: "Maw",
  15907. image: {
  15908. source: "./media/characters/veski/maw.svg"
  15909. }
  15910. },
  15911. },
  15912. [
  15913. {
  15914. name: "Macro",
  15915. height: math.unit(2, "km"),
  15916. default: true
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15922. {
  15923. front: {
  15924. height: math.unit(5 + 7 / 12, "feet"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/isabelle/front.svg",
  15928. extra: 2130 / 1976,
  15929. bottom: 0.05
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Supermicro",
  15936. height: math.unit(10, "micrometers")
  15937. },
  15938. {
  15939. name: "Micro",
  15940. height: math.unit(1, "inch")
  15941. },
  15942. {
  15943. name: "Tiny",
  15944. height: math.unit(5, "inches")
  15945. },
  15946. {
  15947. name: "Standard",
  15948. height: math.unit(5 + 7 / 12, "inches")
  15949. },
  15950. {
  15951. name: "Macro",
  15952. height: math.unit(80, "meters"),
  15953. default: true
  15954. },
  15955. {
  15956. name: "Megamacro",
  15957. height: math.unit(250, "meters")
  15958. },
  15959. {
  15960. name: "Gigamacro",
  15961. height: math.unit(5, "km")
  15962. },
  15963. {
  15964. name: "Cosmic",
  15965. height: math.unit(2.5e6, "miles")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(6, "feet"),
  15974. weight: math.unit(150, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/hanzo/front.svg",
  15978. extra: 374 / 344,
  15979. bottom: 0.02
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(8, "feet"),
  15987. default: true
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15993. {
  15994. front: {
  15995. height: math.unit(7, "feet"),
  15996. weight: math.unit(130, "lb"),
  15997. name: "Front",
  15998. image: {
  15999. source: "./media/characters/anna/front.svg",
  16000. extra: 169 / 145,
  16001. bottom: 0.06
  16002. }
  16003. },
  16004. full: {
  16005. height: math.unit(4.96, "feet"),
  16006. weight: math.unit(220, "lb"),
  16007. name: "Full",
  16008. image: {
  16009. source: "./media/characters/anna/full.svg",
  16010. extra: 138 / 114,
  16011. bottom: 0.15
  16012. }
  16013. },
  16014. tongue: {
  16015. height: math.unit(2.53, "feet"),
  16016. name: "Tongue",
  16017. image: {
  16018. source: "./media/characters/anna/tongue.svg"
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(7, "feet"),
  16026. default: true
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16032. {
  16033. front: {
  16034. height: math.unit(7, "feet"),
  16035. weight: math.unit(150, "lb"),
  16036. name: "Front",
  16037. image: {
  16038. source: "./media/characters/ian-corvid/front.svg",
  16039. extra: 150 / 142,
  16040. bottom: 0.02
  16041. }
  16042. },
  16043. back: {
  16044. height: math.unit(7, "feet"),
  16045. weight: math.unit(150, "lb"),
  16046. name: "Back",
  16047. image: {
  16048. source: "./media/characters/ian-corvid/back.svg",
  16049. extra: 150 / 143,
  16050. bottom: 0.01
  16051. }
  16052. },
  16053. stomping: {
  16054. height: math.unit(7, "feet"),
  16055. weight: math.unit(150, "lb"),
  16056. name: "Stomping",
  16057. image: {
  16058. source: "./media/characters/ian-corvid/stomping.svg",
  16059. extra: 76 / 72
  16060. }
  16061. },
  16062. sitting: {
  16063. height: math.unit(7 / 1.8, "feet"),
  16064. weight: math.unit(150, "lb"),
  16065. name: "Sitting",
  16066. image: {
  16067. source: "./media/characters/ian-corvid/sitting.svg",
  16068. extra: 1400 / 1269,
  16069. bottom: 0.15
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Tiny Microw",
  16076. height: math.unit(1, "inch")
  16077. },
  16078. {
  16079. name: "Microw",
  16080. height: math.unit(6, "inches")
  16081. },
  16082. {
  16083. name: "Crow",
  16084. height: math.unit(7 + 1 / 12, "feet"),
  16085. default: true
  16086. },
  16087. {
  16088. name: "Macrow",
  16089. height: math.unit(176, "feet")
  16090. },
  16091. ]
  16092. ))
  16093. characterMakers.push(() => makeCharacter(
  16094. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16095. {
  16096. front: {
  16097. height: math.unit(5 + 7 / 12, "feet"),
  16098. weight: math.unit(147, "lb"),
  16099. name: "Front",
  16100. image: {
  16101. source: "./media/characters/natalie-kellon/front.svg",
  16102. extra: 1214 / 1141,
  16103. bottom: 0.02
  16104. }
  16105. },
  16106. },
  16107. [
  16108. {
  16109. name: "Micro",
  16110. height: math.unit(1 / 16, "inch")
  16111. },
  16112. {
  16113. name: "Tiny",
  16114. height: math.unit(4, "inches")
  16115. },
  16116. {
  16117. name: "Normal",
  16118. height: math.unit(5 + 7 / 12, "feet"),
  16119. default: true
  16120. },
  16121. {
  16122. name: "Amazon",
  16123. height: math.unit(12, "feet")
  16124. },
  16125. {
  16126. name: "Giantess",
  16127. height: math.unit(160, "meters")
  16128. },
  16129. {
  16130. name: "Titaness",
  16131. height: math.unit(800, "meters")
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16137. {
  16138. front: {
  16139. height: math.unit(6, "feet"),
  16140. weight: math.unit(150, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/alluria/front.svg",
  16144. extra: 806 / 738,
  16145. bottom: 0.01
  16146. }
  16147. },
  16148. side: {
  16149. height: math.unit(6, "feet"),
  16150. weight: math.unit(150, "lb"),
  16151. name: "Side",
  16152. image: {
  16153. source: "./media/characters/alluria/side.svg",
  16154. extra: 800 / 750,
  16155. }
  16156. },
  16157. back: {
  16158. height: math.unit(6, "feet"),
  16159. weight: math.unit(150, "lb"),
  16160. name: "Back",
  16161. image: {
  16162. source: "./media/characters/alluria/back.svg",
  16163. extra: 806 / 738,
  16164. }
  16165. },
  16166. frontMaid: {
  16167. height: math.unit(6, "feet"),
  16168. weight: math.unit(150, "lb"),
  16169. name: "Front (Maid)",
  16170. image: {
  16171. source: "./media/characters/alluria/front-maid.svg",
  16172. extra: 806 / 738,
  16173. bottom: 0.01
  16174. }
  16175. },
  16176. sideMaid: {
  16177. height: math.unit(6, "feet"),
  16178. weight: math.unit(150, "lb"),
  16179. name: "Side (Maid)",
  16180. image: {
  16181. source: "./media/characters/alluria/side-maid.svg",
  16182. extra: 800 / 750,
  16183. bottom: 0.005
  16184. }
  16185. },
  16186. backMaid: {
  16187. height: math.unit(6, "feet"),
  16188. weight: math.unit(150, "lb"),
  16189. name: "Back (Maid)",
  16190. image: {
  16191. source: "./media/characters/alluria/back-maid.svg",
  16192. extra: 806 / 738,
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Micro",
  16199. height: math.unit(6, "inches"),
  16200. default: true
  16201. },
  16202. ]
  16203. ))
  16204. characterMakers.push(() => makeCharacter(
  16205. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16206. {
  16207. front: {
  16208. height: math.unit(6, "feet"),
  16209. weight: math.unit(150, "lb"),
  16210. name: "Front",
  16211. image: {
  16212. source: "./media/characters/kyle/front.svg",
  16213. extra: 1069 / 962,
  16214. bottom: 77.228 / 1727.45
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Macro",
  16221. height: math.unit(150, "feet"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16228. {
  16229. front: {
  16230. height: math.unit(6, "feet"),
  16231. weight: math.unit(300, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/duncan/front.svg",
  16235. extra: 1650 / 1482,
  16236. bottom: 0.05
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Macro",
  16243. height: math.unit(100, "feet"),
  16244. default: true
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(5 + 4 / 12, "feet"),
  16253. weight: math.unit(220, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/memory/front.svg",
  16257. extra: 3641 / 3545,
  16258. bottom: 0.03
  16259. }
  16260. },
  16261. back: {
  16262. height: math.unit(5 + 4 / 12, "feet"),
  16263. weight: math.unit(220, "lb"),
  16264. name: "Back",
  16265. image: {
  16266. source: "./media/characters/memory/back.svg",
  16267. extra: 3641 / 3545,
  16268. bottom: 0.025
  16269. }
  16270. },
  16271. frontSkirt: {
  16272. height: math.unit(5 + 4 / 12, "feet"),
  16273. weight: math.unit(220, "lb"),
  16274. name: "Front (Skirt)",
  16275. image: {
  16276. source: "./media/characters/memory/front-skirt.svg",
  16277. extra: 3641 / 3545,
  16278. bottom: 0.03
  16279. }
  16280. },
  16281. frontDress: {
  16282. height: math.unit(5 + 4 / 12, "feet"),
  16283. weight: math.unit(220, "lb"),
  16284. name: "Front (Dress)",
  16285. image: {
  16286. source: "./media/characters/memory/front-dress.svg",
  16287. extra: 3641 / 3545,
  16288. bottom: 0.03
  16289. }
  16290. },
  16291. },
  16292. [
  16293. {
  16294. name: "Micro",
  16295. height: math.unit(6, "inches"),
  16296. default: true
  16297. },
  16298. {
  16299. name: "Normal",
  16300. height: math.unit(5 + 4 / 12, "feet")
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(4 + 11 / 12, "feet"),
  16309. weight: math.unit(100, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/luno/front.svg",
  16313. extra: 1535 / 1487,
  16314. bottom: 0.03
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Micro",
  16321. height: math.unit(3, "inches")
  16322. },
  16323. {
  16324. name: "Normal",
  16325. height: math.unit(4 + 11 / 12, "feet"),
  16326. default: true
  16327. },
  16328. {
  16329. name: "Macro",
  16330. height: math.unit(300, "feet")
  16331. },
  16332. {
  16333. name: "Megamacro",
  16334. height: math.unit(700, "miles")
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(6 + 2 / 12, "feet"),
  16343. weight: math.unit(170, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/jamesy/front.svg",
  16347. extra: 440 / 382,
  16348. bottom: 0.005
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Micro",
  16355. height: math.unit(3, "inches")
  16356. },
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(6 + 2 / 12, "feet"),
  16360. default: true
  16361. },
  16362. {
  16363. name: "Macro",
  16364. height: math.unit(300, "feet")
  16365. },
  16366. {
  16367. name: "Megamacro",
  16368. height: math.unit(700, "miles")
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16374. {
  16375. front: {
  16376. height: math.unit(6, "feet"),
  16377. weight: math.unit(160, "lb"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/mark/front.svg",
  16381. extra: 3300 / 3100,
  16382. bottom: 136.42 / 3440.47
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Macro",
  16389. height: math.unit(120, "meters")
  16390. },
  16391. {
  16392. name: "Bigger Macro",
  16393. height: math.unit(350, "meters")
  16394. },
  16395. {
  16396. name: "Megamacro",
  16397. height: math.unit(8, "km"),
  16398. default: true
  16399. },
  16400. {
  16401. name: "Continental",
  16402. height: math.unit(4550, "km")
  16403. },
  16404. {
  16405. name: "Planetary",
  16406. height: math.unit(65000, "km")
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16412. {
  16413. front: {
  16414. height: math.unit(6, "feet"),
  16415. weight: math.unit(400, "lb"),
  16416. name: "Front",
  16417. image: {
  16418. source: "./media/characters/mac/front.svg",
  16419. extra: 1048 / 987.7,
  16420. bottom: 60 / 1107.6,
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Macro",
  16427. height: math.unit(500, "feet"),
  16428. default: true
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16434. {
  16435. front: {
  16436. height: math.unit(5 + 2 / 12, "feet"),
  16437. weight: math.unit(190, "lb"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/bari/front.svg",
  16441. extra: 3156 / 2880,
  16442. bottom: 0.03
  16443. }
  16444. },
  16445. back: {
  16446. height: math.unit(5 + 2 / 12, "feet"),
  16447. weight: math.unit(190, "lb"),
  16448. name: "Back",
  16449. image: {
  16450. source: "./media/characters/bari/back.svg",
  16451. extra: 3260 / 2834,
  16452. bottom: 0.025
  16453. }
  16454. },
  16455. frontPlush: {
  16456. height: math.unit(5 + 2 / 12, "feet"),
  16457. weight: math.unit(190, "lb"),
  16458. name: "Front (Plush)",
  16459. image: {
  16460. source: "./media/characters/bari/front-plush.svg",
  16461. extra: 1112 / 1061,
  16462. bottom: 0.002
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Micro",
  16469. height: math.unit(3, "inches")
  16470. },
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(5 + 2 / 12, "feet"),
  16474. default: true
  16475. },
  16476. {
  16477. name: "Macro",
  16478. height: math.unit(20, "feet")
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(6 + 1 / 12, "feet"),
  16487. weight: math.unit(275, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/hunter-misha-raven/front.svg"
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Mortal",
  16497. height: math.unit(6 + 1 / 12, "feet")
  16498. },
  16499. {
  16500. name: "Divine",
  16501. height: math.unit(1.12134e34, "parsecs"),
  16502. default: true
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16508. {
  16509. front: {
  16510. height: math.unit(6 + 3 / 12, "feet"),
  16511. weight: math.unit(220, "lb"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/max-calore/front.svg",
  16515. extra: 1700 / 1648,
  16516. bottom: 0.01
  16517. }
  16518. },
  16519. back: {
  16520. height: math.unit(6 + 3 / 12, "feet"),
  16521. weight: math.unit(220, "lb"),
  16522. name: "Back",
  16523. image: {
  16524. source: "./media/characters/max-calore/back.svg",
  16525. extra: 1700 / 1648,
  16526. bottom: 0.01
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(6 + 3 / 12, "feet"),
  16534. default: true
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16540. {
  16541. side: {
  16542. height: math.unit(2 + 8 / 12, "feet"),
  16543. weight: math.unit(99, "lb"),
  16544. name: "Side",
  16545. image: {
  16546. source: "./media/characters/aspen/side.svg",
  16547. extra: 152 / 138,
  16548. bottom: 0.032
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(2 + 8 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16562. {
  16563. side: {
  16564. height: math.unit(3 + 2 / 12, "feet"),
  16565. weight: math.unit(224, "lb"),
  16566. name: "Side",
  16567. image: {
  16568. source: "./media/characters/sheila-feral-wolf/side.svg",
  16569. extra: 179 / 166,
  16570. bottom: 0.03
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(3 + 2 / 12, "feet"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16584. {
  16585. side: {
  16586. height: math.unit(1 + 9 / 12, "feet"),
  16587. weight: math.unit(38, "lb"),
  16588. name: "Side",
  16589. image: {
  16590. source: "./media/characters/michelle/side.svg",
  16591. extra: 147 / 136.7,
  16592. bottom: 0.03
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(1 + 9 / 12, "feet"),
  16600. default: true
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16606. {
  16607. front: {
  16608. height: math.unit(1 + 1 / 12, "feet"),
  16609. weight: math.unit(18, "lb"),
  16610. name: "Front",
  16611. image: {
  16612. source: "./media/characters/nino/front.svg"
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Normal",
  16619. height: math.unit(1 + 1 / 12, "feet"),
  16620. default: true
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16626. {
  16627. front: {
  16628. height: math.unit(1, "feet"),
  16629. weight: math.unit(16, "lb"),
  16630. name: "Front",
  16631. image: {
  16632. source: "./media/characters/viola/front.svg"
  16633. }
  16634. },
  16635. },
  16636. [
  16637. {
  16638. name: "Normal",
  16639. height: math.unit(1, "feet"),
  16640. default: true
  16641. },
  16642. ]
  16643. ))
  16644. characterMakers.push(() => makeCharacter(
  16645. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16646. {
  16647. front: {
  16648. height: math.unit(6 + 5 / 12, "feet"),
  16649. weight: math.unit(580, "lb"),
  16650. name: "Front",
  16651. image: {
  16652. source: "./media/characters/atlas/front.svg",
  16653. extra: 298.5 / 290,
  16654. bottom: 0.015
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Normal",
  16661. height: math.unit(6 + 5 / 12, "feet"),
  16662. default: true
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16668. {
  16669. side: {
  16670. height: math.unit(1 + 10 / 12, "feet"),
  16671. weight: math.unit(25, "lb"),
  16672. name: "Side",
  16673. image: {
  16674. source: "./media/characters/davy/side.svg",
  16675. extra: 200 / 170,
  16676. bottom: 0.01
  16677. }
  16678. },
  16679. },
  16680. [
  16681. {
  16682. name: "Normal",
  16683. height: math.unit(1 + 10 / 12, "feet"),
  16684. default: true
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16690. {
  16691. side: {
  16692. height: math.unit(4 + 8 / 12, "feet"),
  16693. weight: math.unit(166, "lb"),
  16694. name: "Side",
  16695. image: {
  16696. source: "./media/characters/fiona/side.svg",
  16697. extra: 232 / 220,
  16698. bottom: 0.03
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(4 + 8 / 12, "feet"),
  16706. default: true
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16712. {
  16713. front: {
  16714. height: math.unit(2, "feet"),
  16715. weight: math.unit(62, "lb"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/lyla/front.svg",
  16719. bottom: 0.1
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(2, "feet"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16733. {
  16734. side: {
  16735. height: math.unit(1.8, "feet"),
  16736. weight: math.unit(44, "lb"),
  16737. name: "Side",
  16738. image: {
  16739. source: "./media/characters/perseus/side.svg",
  16740. bottom: 0.21
  16741. }
  16742. },
  16743. },
  16744. [
  16745. {
  16746. name: "Normal",
  16747. height: math.unit(1.8, "feet"),
  16748. default: true
  16749. },
  16750. ]
  16751. ))
  16752. characterMakers.push(() => makeCharacter(
  16753. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16754. {
  16755. side: {
  16756. height: math.unit(4 + 2 / 12, "feet"),
  16757. weight: math.unit(20, "lb"),
  16758. name: "Side",
  16759. image: {
  16760. source: "./media/characters/remus/side.svg"
  16761. }
  16762. },
  16763. },
  16764. [
  16765. {
  16766. name: "Normal",
  16767. height: math.unit(4 + 2 / 12, "feet"),
  16768. default: true
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(4 + 11 / 12, "feet"),
  16777. weight: math.unit(114, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/raf/front.svg",
  16781. bottom: 20.5 / 1863
  16782. }
  16783. },
  16784. side: {
  16785. height: math.unit(4 + 11 / 12, "feet"),
  16786. weight: math.unit(114, "lb"),
  16787. name: "Side",
  16788. image: {
  16789. source: "./media/characters/raf/side.svg",
  16790. bottom: 22 / 1822
  16791. }
  16792. },
  16793. },
  16794. [
  16795. {
  16796. name: "Micro",
  16797. height: math.unit(2, "inches")
  16798. },
  16799. {
  16800. name: "Normal",
  16801. height: math.unit(4 + 11 / 12, "feet"),
  16802. default: true
  16803. },
  16804. {
  16805. name: "Macro",
  16806. height: math.unit(70, "feet")
  16807. },
  16808. ]
  16809. ))
  16810. characterMakers.push(() => makeCharacter(
  16811. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16812. {
  16813. front: {
  16814. height: math.unit(1.5, "meters"),
  16815. weight: math.unit(68, "kg"),
  16816. name: "Front",
  16817. image: {
  16818. source: "./media/characters/liam-einarr/front.svg",
  16819. extra: 2822 / 2666
  16820. }
  16821. },
  16822. back: {
  16823. height: math.unit(1.5, "meters"),
  16824. weight: math.unit(68, "kg"),
  16825. name: "Back",
  16826. image: {
  16827. source: "./media/characters/liam-einarr/back.svg",
  16828. extra: 2822 / 2666,
  16829. bottom: 0.015
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(1.5, "meters"),
  16837. default: true
  16838. },
  16839. {
  16840. name: "Macro",
  16841. height: math.unit(150, "meters")
  16842. },
  16843. {
  16844. name: "Megamacro",
  16845. height: math.unit(35, "km")
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(6, "feet"),
  16854. weight: math.unit(75, "kg"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/linda/front.svg",
  16858. extra: 930 / 874,
  16859. bottom: 0.004
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(6, "feet"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(6 + 8 / 12, "feet"),
  16876. weight: math.unit(220, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/caylex/front.svg",
  16880. extra: 821 / 772,
  16881. bottom: 0.07
  16882. }
  16883. },
  16884. back: {
  16885. height: math.unit(6 + 8 / 12, "feet"),
  16886. weight: math.unit(220, "lb"),
  16887. name: "Back",
  16888. image: {
  16889. source: "./media/characters/caylex/back.svg",
  16890. extra: 821 / 772,
  16891. bottom: 0.022
  16892. }
  16893. },
  16894. hand: {
  16895. height: math.unit(1.25, "feet"),
  16896. name: "Hand",
  16897. image: {
  16898. source: "./media/characters/caylex/hand.svg"
  16899. }
  16900. },
  16901. foot: {
  16902. height: math.unit(1.6, "feet"),
  16903. name: "Foot",
  16904. image: {
  16905. source: "./media/characters/caylex/foot.svg"
  16906. }
  16907. },
  16908. armored: {
  16909. height: math.unit(6 + 8 / 12, "feet"),
  16910. weight: math.unit(250, "lb"),
  16911. name: "Armored",
  16912. image: {
  16913. source: "./media/characters/caylex/armored.svg",
  16914. extra: 1420 / 1310,
  16915. bottom: 0.045
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Normal",
  16922. height: math.unit(6 + 8 / 12, "feet"),
  16923. default: true
  16924. },
  16925. {
  16926. name: "Normal+",
  16927. height: math.unit(12, "feet")
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16933. {
  16934. front: {
  16935. height: math.unit(7 + 6 / 12, "feet"),
  16936. weight: math.unit(288, "lb"),
  16937. name: "Front",
  16938. image: {
  16939. source: "./media/characters/alana/front.svg",
  16940. extra: 679 / 653,
  16941. bottom: 22.5 / 701
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(7 + 6 / 12, "feet")
  16949. },
  16950. {
  16951. name: "Large",
  16952. height: math.unit(50, "feet")
  16953. },
  16954. {
  16955. name: "Macro",
  16956. height: math.unit(100, "feet"),
  16957. default: true
  16958. },
  16959. {
  16960. name: "Macro+",
  16961. height: math.unit(200, "feet")
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(6 + 1 / 12, "feet"),
  16970. weight: math.unit(210, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/hasani/front.svg",
  16974. extra: 244 / 232,
  16975. bottom: 0.01
  16976. }
  16977. },
  16978. back: {
  16979. height: math.unit(6 + 1 / 12, "feet"),
  16980. weight: math.unit(210, "lb"),
  16981. name: "Back",
  16982. image: {
  16983. source: "./media/characters/hasani/back.svg",
  16984. extra: 244 / 232,
  16985. bottom: 0.01
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(6 + 1 / 12, "feet")
  16993. },
  16994. {
  16995. name: "Macro",
  16996. height: math.unit(175, "feet"),
  16997. default: true
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17003. {
  17004. front: {
  17005. height: math.unit(1.82, "meters"),
  17006. weight: math.unit(140, "lb"),
  17007. name: "Front",
  17008. image: {
  17009. source: "./media/characters/nita/front.svg",
  17010. extra: 2473 / 2363,
  17011. bottom: 0.01
  17012. }
  17013. },
  17014. },
  17015. [
  17016. {
  17017. name: "Normal",
  17018. height: math.unit(1.82, "m")
  17019. },
  17020. {
  17021. name: "Macro",
  17022. height: math.unit(300, "m")
  17023. },
  17024. {
  17025. name: "Mistake Canon",
  17026. height: math.unit(0.5, "miles"),
  17027. default: true
  17028. },
  17029. {
  17030. name: "Big Mistake",
  17031. height: math.unit(13, "miles")
  17032. },
  17033. {
  17034. name: "Playing God",
  17035. height: math.unit(2450, "miles")
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(4, "feet"),
  17044. weight: math.unit(120, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/shiriko/front.svg",
  17048. extra: 195 / 188
  17049. }
  17050. },
  17051. },
  17052. [
  17053. {
  17054. name: "Normal",
  17055. height: math.unit(4, "feet"),
  17056. default: true
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17062. {
  17063. front: {
  17064. height: math.unit(6, "feet"),
  17065. name: "front",
  17066. image: {
  17067. source: "./media/characters/deja/front.svg",
  17068. extra: 926 / 840,
  17069. bottom: 0.07
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Planck Length",
  17076. height: math.unit(1.6e-35, "meters")
  17077. },
  17078. {
  17079. name: "Normal",
  17080. height: math.unit(30.48, "meters"),
  17081. default: true
  17082. },
  17083. {
  17084. name: "Universal",
  17085. height: math.unit(8.8e26, "meters")
  17086. },
  17087. ]
  17088. ))
  17089. characterMakers.push(() => makeCharacter(
  17090. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17091. {
  17092. side: {
  17093. height: math.unit(8, "feet"),
  17094. weight: math.unit(6300, "lb"),
  17095. name: "Side",
  17096. image: {
  17097. source: "./media/characters/anima/side.svg",
  17098. bottom: 0.035
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(8, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17112. {
  17113. front: {
  17114. height: math.unit(8, "feet"),
  17115. weight: math.unit(350, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/bianca/front.svg",
  17119. extra: 234 / 225,
  17120. bottom: 0.03
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(8, "feet"),
  17128. default: true
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17134. {
  17135. front: {
  17136. height: math.unit(6, "feet"),
  17137. weight: math.unit(150, "lb"),
  17138. name: "Front",
  17139. image: {
  17140. source: "./media/characters/adinia/front.svg",
  17141. extra: 1845 / 1672,
  17142. bottom: 0.02
  17143. }
  17144. },
  17145. back: {
  17146. height: math.unit(6, "feet"),
  17147. weight: math.unit(150, "lb"),
  17148. name: "Back",
  17149. image: {
  17150. source: "./media/characters/adinia/back.svg",
  17151. extra: 1845 / 1672,
  17152. bottom: 0.002
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(11 + 5 / 12, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(3, "meters"),
  17169. weight: math.unit(200, "kg"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/lykasa/front.svg",
  17173. extra: 1076 / 976,
  17174. bottom: 0.06
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(3, "meters")
  17182. },
  17183. {
  17184. name: "Kaiju",
  17185. height: math.unit(120, "meters"),
  17186. default: true
  17187. },
  17188. {
  17189. name: "Mega Kaiju",
  17190. height: math.unit(240, "km")
  17191. },
  17192. {
  17193. name: "Giga Kaiju",
  17194. height: math.unit(400, "megameters")
  17195. },
  17196. {
  17197. name: "Tera Kaiju",
  17198. height: math.unit(800, "gigameters")
  17199. },
  17200. {
  17201. name: "Kaiju Dragon Goddess",
  17202. height: math.unit(26, "zettaparsecs")
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17208. {
  17209. side: {
  17210. height: math.unit(283 / 124 * 6, "feet"),
  17211. weight: math.unit(35000, "lb"),
  17212. name: "Side",
  17213. image: {
  17214. source: "./media/characters/malfaren/side.svg",
  17215. extra: 2500 / 1010,
  17216. bottom: 0.01
  17217. }
  17218. },
  17219. front: {
  17220. height: math.unit(22.36, "feet"),
  17221. weight: math.unit(35000, "lb"),
  17222. name: "Front",
  17223. image: {
  17224. source: "./media/characters/malfaren/front.svg",
  17225. extra: 1631 / 1476,
  17226. bottom: 0.01
  17227. }
  17228. },
  17229. maw: {
  17230. height: math.unit(6.9, "feet"),
  17231. name: "Maw",
  17232. image: {
  17233. source: "./media/characters/malfaren/maw.svg"
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Big",
  17240. height: math.unit(283 / 162 * 6, "feet"),
  17241. },
  17242. {
  17243. name: "Bigger",
  17244. height: math.unit(283 / 124 * 6, "feet")
  17245. },
  17246. {
  17247. name: "Massive",
  17248. height: math.unit(283 / 92 * 6, "feet"),
  17249. default: true
  17250. },
  17251. {
  17252. name: "👀💦",
  17253. height: math.unit(283 / 73 * 6, "feet"),
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(1.7, "m"),
  17262. weight: math.unit(70, "kg"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/kernel/front.svg",
  17266. extra: 222 / 210,
  17267. bottom: 0.007
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Nano",
  17274. height: math.unit(17, "micrometers")
  17275. },
  17276. {
  17277. name: "Micro",
  17278. height: math.unit(1.7, "mm")
  17279. },
  17280. {
  17281. name: "Small",
  17282. height: math.unit(1.7, "cm")
  17283. },
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(1.7, "m"),
  17287. default: true
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17293. {
  17294. front: {
  17295. height: math.unit(1.75, "meters"),
  17296. weight: math.unit(65, "kg"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/jayne-folest/front.svg",
  17300. extra: 2115 / 2007,
  17301. bottom: 0.02
  17302. }
  17303. },
  17304. back: {
  17305. height: math.unit(1.75, "meters"),
  17306. weight: math.unit(65, "kg"),
  17307. name: "Back",
  17308. image: {
  17309. source: "./media/characters/jayne-folest/back.svg",
  17310. extra: 2115 / 2007,
  17311. bottom: 0.005
  17312. }
  17313. },
  17314. frontClothed: {
  17315. height: math.unit(1.75, "meters"),
  17316. weight: math.unit(65, "kg"),
  17317. name: "Front (Clothed)",
  17318. image: {
  17319. source: "./media/characters/jayne-folest/front-clothed.svg",
  17320. extra: 2115 / 2007,
  17321. bottom: 0.035
  17322. }
  17323. },
  17324. hand: {
  17325. height: math.unit(1 / 1.260, "feet"),
  17326. name: "Hand",
  17327. image: {
  17328. source: "./media/characters/jayne-folest/hand.svg"
  17329. }
  17330. },
  17331. foot: {
  17332. height: math.unit(1 / 0.918, "feet"),
  17333. name: "Foot",
  17334. image: {
  17335. source: "./media/characters/jayne-folest/foot.svg"
  17336. }
  17337. },
  17338. },
  17339. [
  17340. {
  17341. name: "Micro",
  17342. height: math.unit(4, "cm")
  17343. },
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(1.75, "meters")
  17347. },
  17348. {
  17349. name: "Macro",
  17350. height: math.unit(47.5, "meters"),
  17351. default: true
  17352. },
  17353. ]
  17354. ))
  17355. characterMakers.push(() => makeCharacter(
  17356. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17357. {
  17358. front: {
  17359. height: math.unit(180, "cm"),
  17360. weight: math.unit(70, "kg"),
  17361. name: "Front",
  17362. image: {
  17363. source: "./media/characters/algier/front.svg",
  17364. extra: 596 / 572,
  17365. bottom: 0.04
  17366. }
  17367. },
  17368. back: {
  17369. height: math.unit(180, "cm"),
  17370. weight: math.unit(70, "kg"),
  17371. name: "Back",
  17372. image: {
  17373. source: "./media/characters/algier/back.svg",
  17374. extra: 596 / 572,
  17375. bottom: 0.025
  17376. }
  17377. },
  17378. frontdressed: {
  17379. height: math.unit(180, "cm"),
  17380. weight: math.unit(150, "kg"),
  17381. name: "Front-dressed",
  17382. image: {
  17383. source: "./media/characters/algier/front-dressed.svg",
  17384. extra: 596 / 572,
  17385. bottom: 0.038
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Micro",
  17392. height: math.unit(5, "cm")
  17393. },
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(180, "cm"),
  17397. default: true
  17398. },
  17399. {
  17400. name: "Macro",
  17401. height: math.unit(64, "m")
  17402. },
  17403. ]
  17404. ))
  17405. characterMakers.push(() => makeCharacter(
  17406. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17407. {
  17408. upright: {
  17409. height: math.unit(7, "feet"),
  17410. weight: math.unit(300, "lb"),
  17411. name: "Upright",
  17412. image: {
  17413. source: "./media/characters/pretzel/upright.svg",
  17414. extra: 534 / 522,
  17415. bottom: 0.065
  17416. }
  17417. },
  17418. sprawling: {
  17419. height: math.unit(3.75, "feet"),
  17420. weight: math.unit(300, "lb"),
  17421. name: "Sprawling",
  17422. image: {
  17423. source: "./media/characters/pretzel/sprawling.svg",
  17424. extra: 314 / 281,
  17425. bottom: 0.1
  17426. }
  17427. },
  17428. tongue: {
  17429. height: math.unit(2, "feet"),
  17430. name: "Tongue",
  17431. image: {
  17432. source: "./media/characters/pretzel/tongue.svg"
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(7, "feet"),
  17440. default: true
  17441. },
  17442. {
  17443. name: "Oversized",
  17444. height: math.unit(15, "feet")
  17445. },
  17446. {
  17447. name: "Huge",
  17448. height: math.unit(30, "feet")
  17449. },
  17450. {
  17451. name: "Macro",
  17452. height: math.unit(250, "feet")
  17453. },
  17454. ]
  17455. ))
  17456. characterMakers.push(() => makeCharacter(
  17457. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17458. {
  17459. sideFront: {
  17460. height: math.unit(5 + 2 / 12, "feet"),
  17461. weight: math.unit(120, "lb"),
  17462. name: "Front Side",
  17463. image: {
  17464. source: "./media/characters/roxi/side-front.svg",
  17465. extra: 2924 / 2717,
  17466. bottom: 0.08
  17467. }
  17468. },
  17469. sideBack: {
  17470. height: math.unit(5 + 2 / 12, "feet"),
  17471. weight: math.unit(120, "lb"),
  17472. name: "Back Side",
  17473. image: {
  17474. source: "./media/characters/roxi/side-back.svg",
  17475. extra: 2904 / 2693,
  17476. bottom: 0.06
  17477. }
  17478. },
  17479. front: {
  17480. height: math.unit(5 + 2 / 12, "feet"),
  17481. weight: math.unit(120, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/roxi/front.svg",
  17485. extra: 2028 / 1907,
  17486. bottom: 0.01
  17487. }
  17488. },
  17489. frontAlt: {
  17490. height: math.unit(5 + 2 / 12, "feet"),
  17491. weight: math.unit(120, "lb"),
  17492. name: "Front (Alt)",
  17493. image: {
  17494. source: "./media/characters/roxi/front-alt.svg",
  17495. extra: 1828 / 1798,
  17496. bottom: 0.01
  17497. }
  17498. },
  17499. sitting: {
  17500. height: math.unit(2.8, "feet"),
  17501. weight: math.unit(120, "lb"),
  17502. name: "Sitting",
  17503. image: {
  17504. source: "./media/characters/roxi/sitting.svg",
  17505. extra: 2660 / 2462,
  17506. bottom: 0.1
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(5 + 2 / 12, "feet"),
  17514. default: true
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17520. {
  17521. side: {
  17522. height: math.unit(55, "feet"),
  17523. weight: math.unit(153, "tons"),
  17524. name: "Side",
  17525. image: {
  17526. source: "./media/characters/shadow/side.svg",
  17527. extra: 701 / 628,
  17528. bottom: 0.02
  17529. }
  17530. },
  17531. flying: {
  17532. height: math.unit(145, "feet"),
  17533. weight: math.unit(153, "tons"),
  17534. name: "Flying",
  17535. image: {
  17536. source: "./media/characters/shadow/flying.svg"
  17537. }
  17538. },
  17539. },
  17540. [
  17541. {
  17542. name: "Normal",
  17543. height: math.unit(55, "feet"),
  17544. default: true
  17545. },
  17546. ]
  17547. ))
  17548. characterMakers.push(() => makeCharacter(
  17549. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17550. {
  17551. front: {
  17552. height: math.unit(6, "feet"),
  17553. weight: math.unit(200, "lb"),
  17554. name: "Front",
  17555. image: {
  17556. source: "./media/characters/marcie/front.svg",
  17557. extra: 960 / 876,
  17558. bottom: 58 / 1017.87
  17559. }
  17560. },
  17561. },
  17562. [
  17563. {
  17564. name: "Macro",
  17565. height: math.unit(1, "mile"),
  17566. default: true
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(7, "feet"),
  17575. weight: math.unit(200, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/kachina/front.svg",
  17579. extra: 1290.68 / 1119,
  17580. bottom: 36.5 / 1327.18
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(7, "feet"),
  17588. default: true
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17594. {
  17595. looking: {
  17596. height: math.unit(2, "meters"),
  17597. weight: math.unit(300, "kg"),
  17598. name: "Looking",
  17599. image: {
  17600. source: "./media/characters/kash/looking.svg",
  17601. extra: 474 / 344,
  17602. bottom: 0.03
  17603. }
  17604. },
  17605. side: {
  17606. height: math.unit(2, "meters"),
  17607. weight: math.unit(300, "kg"),
  17608. name: "Side",
  17609. image: {
  17610. source: "./media/characters/kash/side.svg",
  17611. extra: 302 / 251,
  17612. bottom: 0.03
  17613. }
  17614. },
  17615. front: {
  17616. height: math.unit(2, "meters"),
  17617. weight: math.unit(300, "kg"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/kash/front.svg",
  17621. extra: 495 / 360,
  17622. bottom: 0.015
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(2, "meters"),
  17630. default: true
  17631. },
  17632. {
  17633. name: "Big",
  17634. height: math.unit(3, "meters")
  17635. },
  17636. {
  17637. name: "Large",
  17638. height: math.unit(5, "meters")
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17644. {
  17645. feeding: {
  17646. height: math.unit(6.7, "feet"),
  17647. weight: math.unit(350, "lb"),
  17648. name: "Feeding",
  17649. image: {
  17650. source: "./media/characters/lalim/feeding.svg",
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(6.7, "feet"),
  17658. default: true
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17664. {
  17665. front: {
  17666. height: math.unit(9.5, "feet"),
  17667. weight: math.unit(600, "lb"),
  17668. name: "Front",
  17669. image: {
  17670. source: "./media/characters/de'vout/front.svg",
  17671. extra: 1443 / 1328,
  17672. bottom: 0.025
  17673. }
  17674. },
  17675. back: {
  17676. height: math.unit(9.5, "feet"),
  17677. weight: math.unit(600, "lb"),
  17678. name: "Back",
  17679. image: {
  17680. source: "./media/characters/de'vout/back.svg",
  17681. extra: 1443 / 1328
  17682. }
  17683. },
  17684. frontDressed: {
  17685. height: math.unit(9.5, "feet"),
  17686. weight: math.unit(600, "lb"),
  17687. name: "Front (Dressed",
  17688. image: {
  17689. source: "./media/characters/de'vout/front-dressed.svg",
  17690. extra: 1443 / 1328,
  17691. bottom: 0.025
  17692. }
  17693. },
  17694. backDressed: {
  17695. height: math.unit(9.5, "feet"),
  17696. weight: math.unit(600, "lb"),
  17697. name: "Back (Dressed",
  17698. image: {
  17699. source: "./media/characters/de'vout/back-dressed.svg",
  17700. extra: 1443 / 1328
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(9.5, "feet"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17714. {
  17715. front: {
  17716. height: math.unit(8, "feet"),
  17717. weight: math.unit(225, "lb"),
  17718. name: "Front",
  17719. image: {
  17720. source: "./media/characters/talana/front.svg",
  17721. extra: 1410 / 1300,
  17722. bottom: 0.015
  17723. }
  17724. },
  17725. frontDressed: {
  17726. height: math.unit(8, "feet"),
  17727. weight: math.unit(225, "lb"),
  17728. name: "Front (Dressed",
  17729. image: {
  17730. source: "./media/characters/talana/front-dressed.svg",
  17731. extra: 1410 / 1300,
  17732. bottom: 0.015
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(8, "feet"),
  17740. default: true
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17746. {
  17747. side: {
  17748. height: math.unit(7.2, "feet"),
  17749. weight: math.unit(150, "lb"),
  17750. name: "Side",
  17751. image: {
  17752. source: "./media/characters/xeauvok/side.svg",
  17753. extra: 1975 / 1523,
  17754. bottom: 0.07
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(7.2, "feet"),
  17762. default: true
  17763. },
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17768. {
  17769. side: {
  17770. height: math.unit(10, "feet"),
  17771. weight: math.unit(900, "kg"),
  17772. name: "Side",
  17773. image: {
  17774. source: "./media/characters/zara/side.svg",
  17775. extra: 504 / 498
  17776. }
  17777. },
  17778. },
  17779. [
  17780. {
  17781. name: "Normal",
  17782. height: math.unit(10, "feet"),
  17783. default: true
  17784. },
  17785. ]
  17786. ))
  17787. characterMakers.push(() => makeCharacter(
  17788. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17789. {
  17790. side: {
  17791. height: math.unit(6, "feet"),
  17792. weight: math.unit(150, "lb"),
  17793. name: "Side",
  17794. image: {
  17795. source: "./media/characters/richard-dragon/side.svg",
  17796. extra: 845 / 340,
  17797. bottom: 0.017
  17798. }
  17799. },
  17800. maw: {
  17801. height: math.unit(2.97, "feet"),
  17802. name: "Maw",
  17803. image: {
  17804. source: "./media/characters/richard-dragon/maw.svg"
  17805. }
  17806. },
  17807. },
  17808. [
  17809. ]
  17810. ))
  17811. characterMakers.push(() => makeCharacter(
  17812. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17813. {
  17814. front: {
  17815. height: math.unit(4, "feet"),
  17816. weight: math.unit(100, "lb"),
  17817. name: "Front",
  17818. image: {
  17819. source: "./media/characters/richard-smeargle/front.svg",
  17820. extra: 2952 / 2820,
  17821. bottom: 0.028
  17822. }
  17823. },
  17824. },
  17825. [
  17826. {
  17827. name: "Normal",
  17828. height: math.unit(4, "feet"),
  17829. default: true
  17830. },
  17831. {
  17832. name: "Dynamax",
  17833. height: math.unit(20, "meters")
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17839. {
  17840. front: {
  17841. height: math.unit(6, "feet"),
  17842. weight: math.unit(110, "lb"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/klay/front.svg",
  17846. extra: 962 / 883,
  17847. bottom: 0.04
  17848. }
  17849. },
  17850. back: {
  17851. height: math.unit(6, "feet"),
  17852. weight: math.unit(110, "lb"),
  17853. name: "Back",
  17854. image: {
  17855. source: "./media/characters/klay/back.svg",
  17856. extra: 962 / 883
  17857. }
  17858. },
  17859. beans: {
  17860. height: math.unit(1.15, "feet"),
  17861. name: "Beans",
  17862. image: {
  17863. source: "./media/characters/klay/beans.svg"
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Micro",
  17870. height: math.unit(6, "inches")
  17871. },
  17872. {
  17873. name: "Mini",
  17874. height: math.unit(3, "feet")
  17875. },
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(6, "feet"),
  17879. default: true
  17880. },
  17881. {
  17882. name: "Big",
  17883. height: math.unit(25, "feet")
  17884. },
  17885. {
  17886. name: "Macro",
  17887. height: math.unit(100, "feet")
  17888. },
  17889. {
  17890. name: "Megamacro",
  17891. height: math.unit(400, "feet")
  17892. },
  17893. ]
  17894. ))
  17895. characterMakers.push(() => makeCharacter(
  17896. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17897. {
  17898. front: {
  17899. height: math.unit(6, "feet"),
  17900. weight: math.unit(160, "lb"),
  17901. name: "Front",
  17902. image: {
  17903. source: "./media/characters/marcus/front.svg",
  17904. extra: 734 / 676,
  17905. bottom: 0.03
  17906. }
  17907. },
  17908. },
  17909. [
  17910. {
  17911. name: "Little",
  17912. height: math.unit(6, "feet")
  17913. },
  17914. {
  17915. name: "Normal",
  17916. height: math.unit(110, "feet"),
  17917. default: true
  17918. },
  17919. {
  17920. name: "Macro",
  17921. height: math.unit(250, "feet")
  17922. },
  17923. {
  17924. name: "Megamacro",
  17925. height: math.unit(1000, "feet")
  17926. },
  17927. ]
  17928. ))
  17929. characterMakers.push(() => makeCharacter(
  17930. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17931. {
  17932. front: {
  17933. height: math.unit(7, "feet"),
  17934. weight: math.unit(275, "lb"),
  17935. name: "Front",
  17936. image: {
  17937. source: "./media/characters/claude-delroute/front.svg",
  17938. extra: 230 / 214,
  17939. bottom: 0.007
  17940. }
  17941. },
  17942. side: {
  17943. height: math.unit(7, "feet"),
  17944. weight: math.unit(275, "lb"),
  17945. name: "Side",
  17946. image: {
  17947. source: "./media/characters/claude-delroute/side.svg",
  17948. extra: 222 / 214,
  17949. bottom: 0.01
  17950. }
  17951. },
  17952. back: {
  17953. height: math.unit(7, "feet"),
  17954. weight: math.unit(275, "lb"),
  17955. name: "Back",
  17956. image: {
  17957. source: "./media/characters/claude-delroute/back.svg",
  17958. extra: 230 / 214,
  17959. bottom: 0.015
  17960. }
  17961. },
  17962. maw: {
  17963. height: math.unit(0.6407, "meters"),
  17964. name: "Maw",
  17965. image: {
  17966. source: "./media/characters/claude-delroute/maw.svg"
  17967. }
  17968. },
  17969. },
  17970. [
  17971. {
  17972. name: "Normal",
  17973. height: math.unit(7, "feet"),
  17974. default: true
  17975. },
  17976. {
  17977. name: "Lorge",
  17978. height: math.unit(20, "feet")
  17979. },
  17980. ]
  17981. ))
  17982. characterMakers.push(() => makeCharacter(
  17983. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17984. {
  17985. front: {
  17986. height: math.unit(8 + 4 / 12, "feet"),
  17987. weight: math.unit(600, "lb"),
  17988. name: "Front",
  17989. image: {
  17990. source: "./media/characters/dragonien/front.svg",
  17991. extra: 100 / 94,
  17992. bottom: 3.3 / 103.3445
  17993. }
  17994. },
  17995. back: {
  17996. height: math.unit(8 + 4 / 12, "feet"),
  17997. weight: math.unit(600, "lb"),
  17998. name: "Back",
  17999. image: {
  18000. source: "./media/characters/dragonien/back.svg",
  18001. extra: 776 / 746,
  18002. bottom: 6.4 / 782.0616
  18003. }
  18004. },
  18005. foot: {
  18006. height: math.unit(1.54, "feet"),
  18007. name: "Foot",
  18008. image: {
  18009. source: "./media/characters/dragonien/foot.svg",
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(8 + 4 / 12, "feet"),
  18017. default: true
  18018. },
  18019. {
  18020. name: "Macro",
  18021. height: math.unit(200, "feet")
  18022. },
  18023. {
  18024. name: "Megamacro",
  18025. height: math.unit(1, "mile")
  18026. },
  18027. {
  18028. name: "Gigamacro",
  18029. height: math.unit(1000, "miles")
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18035. {
  18036. front: {
  18037. height: math.unit(5 + 2 / 12, "feet"),
  18038. weight: math.unit(110, "lb"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/desta/front.svg",
  18042. extra: 767 / 726,
  18043. bottom: 11.7 / 779
  18044. }
  18045. },
  18046. back: {
  18047. height: math.unit(5 + 2 / 12, "feet"),
  18048. weight: math.unit(110, "lb"),
  18049. name: "Back",
  18050. image: {
  18051. source: "./media/characters/desta/back.svg",
  18052. extra: 777 / 728,
  18053. bottom: 6 / 784
  18054. }
  18055. },
  18056. frontAlt: {
  18057. height: math.unit(5 + 2 / 12, "feet"),
  18058. weight: math.unit(110, "lb"),
  18059. name: "Front",
  18060. image: {
  18061. source: "./media/characters/desta/front-alt.svg",
  18062. extra: 1482 / 1417
  18063. }
  18064. },
  18065. side: {
  18066. height: math.unit(5 + 2 / 12, "feet"),
  18067. weight: math.unit(110, "lb"),
  18068. name: "Side",
  18069. image: {
  18070. source: "./media/characters/desta/side.svg",
  18071. extra: 2579 / 2491,
  18072. bottom: 0.053
  18073. }
  18074. },
  18075. },
  18076. [
  18077. {
  18078. name: "Micro",
  18079. height: math.unit(6, "inches")
  18080. },
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(5 + 2 / 12, "feet"),
  18084. default: true
  18085. },
  18086. {
  18087. name: "Macro",
  18088. height: math.unit(62, "feet")
  18089. },
  18090. {
  18091. name: "Megamacro",
  18092. height: math.unit(1800, "feet")
  18093. },
  18094. ]
  18095. ))
  18096. characterMakers.push(() => makeCharacter(
  18097. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18098. {
  18099. front: {
  18100. height: math.unit(10, "feet"),
  18101. weight: math.unit(700, "lb"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/storm-alystar/front.svg",
  18105. extra: 2112 / 1898,
  18106. bottom: 0.034
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Micro",
  18113. height: math.unit(3.5, "inches")
  18114. },
  18115. {
  18116. name: "Normal",
  18117. height: math.unit(10, "feet"),
  18118. default: true
  18119. },
  18120. {
  18121. name: "Macro",
  18122. height: math.unit(400, "feet")
  18123. },
  18124. {
  18125. name: "Deific",
  18126. height: math.unit(60, "miles")
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18132. {
  18133. front: {
  18134. height: math.unit(2.35, "meters"),
  18135. weight: math.unit(119, "kg"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/ilia/front.svg",
  18139. extra: 1285 / 1255,
  18140. bottom: 0.06
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(2.35, "meters")
  18148. },
  18149. {
  18150. name: "Macro",
  18151. height: math.unit(140, "meters"),
  18152. default: true
  18153. },
  18154. {
  18155. name: "Megamacro",
  18156. height: math.unit(100, "miles")
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18162. {
  18163. front: {
  18164. height: math.unit(6 + 5 / 12, "feet"),
  18165. weight: math.unit(190, "lb"),
  18166. name: "Front",
  18167. image: {
  18168. source: "./media/characters/kingdead/front.svg",
  18169. extra: 1228 / 1177
  18170. }
  18171. },
  18172. },
  18173. [
  18174. {
  18175. name: "Micro",
  18176. height: math.unit(7, "inches")
  18177. },
  18178. {
  18179. name: "Normal",
  18180. height: math.unit(6 + 5 / 12, "feet")
  18181. },
  18182. {
  18183. name: "Macro",
  18184. height: math.unit(150, "feet"),
  18185. default: true
  18186. },
  18187. {
  18188. name: "Megamacro",
  18189. height: math.unit(200, "miles")
  18190. },
  18191. ]
  18192. ))
  18193. characterMakers.push(() => makeCharacter(
  18194. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18195. {
  18196. front: {
  18197. height: math.unit(8, "feet"),
  18198. weight: math.unit(600, "lb"),
  18199. name: "Front",
  18200. image: {
  18201. source: "./media/characters/kyrehx/front.svg",
  18202. extra: 1195 / 1095,
  18203. bottom: 0.034
  18204. }
  18205. },
  18206. },
  18207. [
  18208. {
  18209. name: "Micro",
  18210. height: math.unit(2, "inches")
  18211. },
  18212. {
  18213. name: "Normal",
  18214. height: math.unit(8, "feet"),
  18215. default: true
  18216. },
  18217. {
  18218. name: "Macro",
  18219. height: math.unit(255, "feet")
  18220. },
  18221. ]
  18222. ))
  18223. characterMakers.push(() => makeCharacter(
  18224. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18225. {
  18226. front: {
  18227. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18228. weight: math.unit(184, "lb"),
  18229. name: "Front",
  18230. image: {
  18231. source: "./media/characters/xang/front.svg",
  18232. extra: 845 / 755
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18240. default: true
  18241. },
  18242. {
  18243. name: "Macro",
  18244. height: math.unit(0.935 * 146, "feet")
  18245. },
  18246. {
  18247. name: "Megamacro",
  18248. height: math.unit(0.935 * 3, "miles")
  18249. },
  18250. ]
  18251. ))
  18252. characterMakers.push(() => makeCharacter(
  18253. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18254. {
  18255. frontDressed: {
  18256. height: math.unit(5 + 7 / 12, "feet"),
  18257. weight: math.unit(140, "lb"),
  18258. name: "Front (Dressed)",
  18259. image: {
  18260. source: "./media/characters/doc-weardno/front-dressed.svg",
  18261. extra: 263 / 234
  18262. }
  18263. },
  18264. backDressed: {
  18265. height: math.unit(5 + 7 / 12, "feet"),
  18266. weight: math.unit(140, "lb"),
  18267. name: "Back (Dressed)",
  18268. image: {
  18269. source: "./media/characters/doc-weardno/back-dressed.svg",
  18270. extra: 266 / 238
  18271. }
  18272. },
  18273. front: {
  18274. height: math.unit(5 + 7 / 12, "feet"),
  18275. weight: math.unit(140, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/doc-weardno/front.svg",
  18279. extra: 254 / 233
  18280. }
  18281. },
  18282. },
  18283. [
  18284. {
  18285. name: "Micro",
  18286. height: math.unit(3, "inches")
  18287. },
  18288. {
  18289. name: "Normal",
  18290. height: math.unit(5 + 7 / 12, "feet"),
  18291. default: true
  18292. },
  18293. {
  18294. name: "Macro",
  18295. height: math.unit(25, "feet")
  18296. },
  18297. {
  18298. name: "Megamacro",
  18299. height: math.unit(2, "miles")
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18305. {
  18306. front: {
  18307. height: math.unit(6 + 2 / 12, "feet"),
  18308. weight: math.unit(153, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/seth-whilst/front.svg",
  18312. bottom: 0.07
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Micro",
  18319. height: math.unit(5, "inches")
  18320. },
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(6 + 2 / 12, "feet"),
  18324. default: true
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18330. {
  18331. front: {
  18332. height: math.unit(3, "inches"),
  18333. weight: math.unit(8, "grams"),
  18334. name: "Front",
  18335. image: {
  18336. source: "./media/characters/pocket-jabari/front.svg",
  18337. extra: 1024 / 974,
  18338. bottom: 0.039
  18339. }
  18340. },
  18341. },
  18342. [
  18343. {
  18344. name: "Minimicro",
  18345. height: math.unit(8, "mm")
  18346. },
  18347. {
  18348. name: "Micro",
  18349. height: math.unit(3, "inches"),
  18350. default: true
  18351. },
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(3, "feet")
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18360. {
  18361. front: {
  18362. height: math.unit(15, "feet"),
  18363. weight: math.unit(3280, "lb"),
  18364. name: "Front",
  18365. image: {
  18366. source: "./media/characters/sapphy/front.svg",
  18367. extra: 671 / 577,
  18368. bottom: 0.085
  18369. }
  18370. },
  18371. back: {
  18372. height: math.unit(15, "feet"),
  18373. weight: math.unit(3280, "lb"),
  18374. name: "Back",
  18375. image: {
  18376. source: "./media/characters/sapphy/back.svg",
  18377. extra: 631 / 607,
  18378. bottom: 0.045
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(15, "feet")
  18386. },
  18387. {
  18388. name: "Casual Macro",
  18389. height: math.unit(120, "feet")
  18390. },
  18391. {
  18392. name: "Macro",
  18393. height: math.unit(2150, "feet"),
  18394. default: true
  18395. },
  18396. {
  18397. name: "Megamacro",
  18398. height: math.unit(8, "miles")
  18399. },
  18400. {
  18401. name: "Galaxy Mom",
  18402. height: math.unit(6, "megalightyears")
  18403. },
  18404. ]
  18405. ))
  18406. characterMakers.push(() => makeCharacter(
  18407. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18408. {
  18409. front: {
  18410. height: math.unit(6, "feet"),
  18411. weight: math.unit(170, "lb"),
  18412. name: "Front",
  18413. image: {
  18414. source: "./media/characters/kiro/front.svg",
  18415. extra: 1064 / 1012,
  18416. bottom: 0.052
  18417. }
  18418. },
  18419. },
  18420. [
  18421. {
  18422. name: "Micro",
  18423. height: math.unit(6, "inches")
  18424. },
  18425. {
  18426. name: "Normal",
  18427. height: math.unit(6, "feet"),
  18428. default: true
  18429. },
  18430. {
  18431. name: "Macro",
  18432. height: math.unit(72, "feet")
  18433. },
  18434. ]
  18435. ))
  18436. characterMakers.push(() => makeCharacter(
  18437. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18438. {
  18439. front: {
  18440. height: math.unit(5 + 9 / 12, "feet"),
  18441. weight: math.unit(175, "lb"),
  18442. name: "Front",
  18443. image: {
  18444. source: "./media/characters/irishfox/front.svg",
  18445. extra: 1912 / 1680,
  18446. bottom: 0.02
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Nano",
  18453. height: math.unit(1, "mm")
  18454. },
  18455. {
  18456. name: "Micro",
  18457. height: math.unit(2, "inches")
  18458. },
  18459. {
  18460. name: "Normal",
  18461. height: math.unit(5 + 9 / 12, "feet"),
  18462. default: true
  18463. },
  18464. {
  18465. name: "Macro",
  18466. height: math.unit(45, "feet")
  18467. },
  18468. ]
  18469. ))
  18470. characterMakers.push(() => makeCharacter(
  18471. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18472. {
  18473. front: {
  18474. height: math.unit(6 + 1 / 12, "feet"),
  18475. weight: math.unit(75, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/aronai-sieyes/front.svg",
  18479. extra: 1556 / 1480,
  18480. bottom: 0.015
  18481. }
  18482. },
  18483. side: {
  18484. height: math.unit(6 + 1 / 12, "feet"),
  18485. weight: math.unit(75, "lb"),
  18486. name: "Side",
  18487. image: {
  18488. source: "./media/characters/aronai-sieyes/side.svg",
  18489. extra: 1433 / 1390,
  18490. bottom: 0.0393
  18491. }
  18492. },
  18493. back: {
  18494. height: math.unit(6 + 1 / 12, "feet"),
  18495. weight: math.unit(75, "lb"),
  18496. name: "Back",
  18497. image: {
  18498. source: "./media/characters/aronai-sieyes/back.svg",
  18499. extra: 1544 / 1494,
  18500. bottom: 0.02
  18501. }
  18502. },
  18503. frontClothed: {
  18504. height: math.unit(6 + 1 / 12, "feet"),
  18505. weight: math.unit(75, "lb"),
  18506. name: "Front (Clothed)",
  18507. image: {
  18508. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18509. extra: 1582 / 1527
  18510. }
  18511. },
  18512. feral: {
  18513. height: math.unit(18, "feet"),
  18514. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18515. name: "Feral",
  18516. image: {
  18517. source: "./media/characters/aronai-sieyes/feral.svg",
  18518. extra: 1530 / 1240,
  18519. bottom: 0.035
  18520. }
  18521. },
  18522. },
  18523. [
  18524. {
  18525. name: "Micro",
  18526. height: math.unit(2, "inches")
  18527. },
  18528. {
  18529. name: "Normal",
  18530. height: math.unit(6 + 1 / 12, "feet"),
  18531. default: true
  18532. }
  18533. ]
  18534. ))
  18535. characterMakers.push(() => makeCharacter(
  18536. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18537. {
  18538. front: {
  18539. height: math.unit(12, "feet"),
  18540. weight: math.unit(410, "kg"),
  18541. name: "Front",
  18542. image: {
  18543. source: "./media/characters/xuna/front.svg",
  18544. extra: 2184 / 1980
  18545. }
  18546. },
  18547. side: {
  18548. height: math.unit(12, "feet"),
  18549. weight: math.unit(410, "kg"),
  18550. name: "Side",
  18551. image: {
  18552. source: "./media/characters/xuna/side.svg",
  18553. extra: 2184 / 1980
  18554. }
  18555. },
  18556. back: {
  18557. height: math.unit(12, "feet"),
  18558. weight: math.unit(410, "kg"),
  18559. name: "Back",
  18560. image: {
  18561. source: "./media/characters/xuna/back.svg",
  18562. extra: 2184 / 1980
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Nano glow",
  18569. height: math.unit(10, "nm")
  18570. },
  18571. {
  18572. name: "Micro floof",
  18573. height: math.unit(0.3, "m")
  18574. },
  18575. {
  18576. name: "Huggable softy boi",
  18577. height: math.unit(3.6576, "m"),
  18578. default: true
  18579. },
  18580. {
  18581. name: "Admirable floof",
  18582. height: math.unit(80, "meters")
  18583. },
  18584. {
  18585. name: "Gentle macro",
  18586. height: math.unit(300, "meters")
  18587. },
  18588. {
  18589. name: "Very careful floof",
  18590. height: math.unit(3200, "meters")
  18591. },
  18592. {
  18593. name: "The mega floof",
  18594. height: math.unit(36000, "meters")
  18595. },
  18596. {
  18597. name: "Giga-fur-Wicker",
  18598. height: math.unit(4800000, "meters")
  18599. },
  18600. {
  18601. name: "Licky world",
  18602. height: math.unit(20000000, "meters")
  18603. },
  18604. {
  18605. name: "Floofy cyan sun",
  18606. height: math.unit(1500000000, "meters")
  18607. },
  18608. {
  18609. name: "Milky Wicker",
  18610. height: math.unit(1000000000000000000000, "meters")
  18611. },
  18612. {
  18613. name: "The observing Wicker",
  18614. height: math.unit(999999999999999999999999999, "meters")
  18615. },
  18616. ]
  18617. ))
  18618. characterMakers.push(() => makeCharacter(
  18619. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18620. {
  18621. front: {
  18622. height: math.unit(5 + 9 / 12, "feet"),
  18623. weight: math.unit(150, "lb"),
  18624. name: "Front",
  18625. image: {
  18626. source: "./media/characters/arokha-sieyes/front.svg",
  18627. extra: 1425 / 1284,
  18628. bottom: 0.05
  18629. }
  18630. },
  18631. },
  18632. [
  18633. {
  18634. name: "Normal",
  18635. height: math.unit(5 + 9 / 12, "feet")
  18636. },
  18637. {
  18638. name: "Macro",
  18639. height: math.unit(30, "meters"),
  18640. default: true
  18641. },
  18642. ]
  18643. ))
  18644. characterMakers.push(() => makeCharacter(
  18645. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18646. {
  18647. front: {
  18648. height: math.unit(6, "feet"),
  18649. weight: math.unit(180, "lb"),
  18650. name: "Front",
  18651. image: {
  18652. source: "./media/characters/arokh-sieyes/front.svg",
  18653. extra: 1830 / 1769,
  18654. bottom: 0.01
  18655. }
  18656. },
  18657. },
  18658. [
  18659. {
  18660. name: "Normal",
  18661. height: math.unit(6, "feet")
  18662. },
  18663. {
  18664. name: "Macro",
  18665. height: math.unit(30, "meters"),
  18666. default: true
  18667. },
  18668. ]
  18669. ))
  18670. characterMakers.push(() => makeCharacter(
  18671. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18672. {
  18673. side: {
  18674. height: math.unit(13 + 1 / 12, "feet"),
  18675. weight: math.unit(8.5, "tonnes"),
  18676. name: "Side",
  18677. image: {
  18678. source: "./media/characters/goldeneye/side.svg",
  18679. extra: 1182 / 778,
  18680. bottom: 0.067
  18681. }
  18682. },
  18683. paw: {
  18684. height: math.unit(3.4, "feet"),
  18685. name: "Paw",
  18686. image: {
  18687. source: "./media/characters/goldeneye/paw.svg"
  18688. }
  18689. },
  18690. },
  18691. [
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(13 + 1 / 12, "feet"),
  18695. default: true
  18696. },
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18701. {
  18702. front: {
  18703. height: math.unit(6 + 1 / 12, "feet"),
  18704. weight: math.unit(210, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/leonardo-lycheborne/front.svg",
  18708. extra: 390 / 365,
  18709. bottom: 0.032
  18710. }
  18711. },
  18712. side: {
  18713. height: math.unit(6 + 1 / 12, "feet"),
  18714. weight: math.unit(210, "lb"),
  18715. name: "Side",
  18716. image: {
  18717. source: "./media/characters/leonardo-lycheborne/side.svg",
  18718. extra: 390 / 365,
  18719. bottom: 0.005
  18720. }
  18721. },
  18722. back: {
  18723. height: math.unit(6 + 1 / 12, "feet"),
  18724. weight: math.unit(210, "lb"),
  18725. name: "Back",
  18726. image: {
  18727. source: "./media/characters/leonardo-lycheborne/back.svg",
  18728. extra: 392 / 366,
  18729. bottom: 0.01
  18730. }
  18731. },
  18732. hand: {
  18733. height: math.unit(1.08, "feet"),
  18734. name: "Hand",
  18735. image: {
  18736. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18737. }
  18738. },
  18739. foot: {
  18740. height: math.unit(1.32, "feet"),
  18741. name: "Foot",
  18742. image: {
  18743. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18744. }
  18745. },
  18746. were: {
  18747. height: math.unit(20, "feet"),
  18748. weight: math.unit(7800, "lb"),
  18749. name: "Were",
  18750. image: {
  18751. source: "./media/characters/leonardo-lycheborne/were.svg",
  18752. extra: 308 / 294,
  18753. bottom: 0.048
  18754. }
  18755. },
  18756. feral: {
  18757. height: math.unit(7.5, "feet"),
  18758. weight: math.unit(600, "lb"),
  18759. name: "Feral",
  18760. image: {
  18761. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18762. extra: 210 / 186,
  18763. bottom: 0.108
  18764. }
  18765. },
  18766. taur: {
  18767. height: math.unit(11, "feet"),
  18768. weight: math.unit(3300, "lb"),
  18769. name: "Taur",
  18770. image: {
  18771. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18772. extra: 320 / 303,
  18773. bottom: 0.025
  18774. }
  18775. },
  18776. barghest: {
  18777. height: math.unit(11, "feet"),
  18778. weight: math.unit(1300, "lb"),
  18779. name: "Barghest",
  18780. image: {
  18781. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18782. extra: 323 / 302,
  18783. bottom: 0.027
  18784. }
  18785. },
  18786. dick: {
  18787. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18788. name: "Dick",
  18789. image: {
  18790. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18791. }
  18792. },
  18793. dickWere: {
  18794. height: math.unit((20) / 3.8, "feet"),
  18795. name: "Dick (Were)",
  18796. image: {
  18797. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(6 + 1 / 12, "feet"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18811. {
  18812. front: {
  18813. height: math.unit(10, "feet"),
  18814. weight: math.unit(350, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/jet/front.svg",
  18818. extra: 2050 / 1980,
  18819. bottom: 0.013
  18820. }
  18821. },
  18822. back: {
  18823. height: math.unit(10, "feet"),
  18824. weight: math.unit(350, "lb"),
  18825. name: "Back",
  18826. image: {
  18827. source: "./media/characters/jet/back.svg",
  18828. extra: 2050 / 1980,
  18829. bottom: 0.013
  18830. }
  18831. },
  18832. },
  18833. [
  18834. {
  18835. name: "Micro",
  18836. height: math.unit(6, "inches")
  18837. },
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(10, "feet"),
  18841. default: true
  18842. },
  18843. {
  18844. name: "Macro",
  18845. height: math.unit(100, "feet")
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(15, "feet"),
  18854. weight: math.unit(2800, "lb"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/tanarath/front.svg",
  18858. extra: 2392 / 2220,
  18859. bottom: 0.03
  18860. }
  18861. },
  18862. back: {
  18863. height: math.unit(15, "feet"),
  18864. weight: math.unit(2800, "lb"),
  18865. name: "Back",
  18866. image: {
  18867. source: "./media/characters/tanarath/back.svg",
  18868. extra: 2392 / 2220,
  18869. bottom: 0.03
  18870. }
  18871. },
  18872. },
  18873. [
  18874. {
  18875. name: "Normal",
  18876. height: math.unit(15, "feet"),
  18877. default: true
  18878. },
  18879. ]
  18880. ))
  18881. characterMakers.push(() => makeCharacter(
  18882. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18883. {
  18884. front: {
  18885. height: math.unit(7 + 1 / 12, "feet"),
  18886. weight: math.unit(175, "lb"),
  18887. name: "Front",
  18888. image: {
  18889. source: "./media/characters/patty-cattybatty/front.svg",
  18890. extra: 908 / 874,
  18891. bottom: 0.025
  18892. }
  18893. },
  18894. },
  18895. [
  18896. {
  18897. name: "Micro",
  18898. height: math.unit(1, "inch")
  18899. },
  18900. {
  18901. name: "Normal",
  18902. height: math.unit(7 + 1 / 12, "feet")
  18903. },
  18904. {
  18905. name: "Mini Macro",
  18906. height: math.unit(155, "feet")
  18907. },
  18908. {
  18909. name: "Macro",
  18910. height: math.unit(1077, "feet")
  18911. },
  18912. {
  18913. name: "Mega Macro",
  18914. height: math.unit(47650, "feet"),
  18915. default: true
  18916. },
  18917. {
  18918. name: "Giga Macro",
  18919. height: math.unit(440, "miles")
  18920. },
  18921. {
  18922. name: "Tera Macro",
  18923. height: math.unit(8700, "miles")
  18924. },
  18925. {
  18926. name: "Planetary Macro",
  18927. height: math.unit(32700, "miles")
  18928. },
  18929. {
  18930. name: "Solar Macro",
  18931. height: math.unit(550000, "miles")
  18932. },
  18933. {
  18934. name: "Celestial Macro",
  18935. height: math.unit(2.5, "AU")
  18936. },
  18937. ]
  18938. ))
  18939. characterMakers.push(() => makeCharacter(
  18940. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18941. {
  18942. front: {
  18943. height: math.unit(4 + 5 / 12, "feet"),
  18944. weight: math.unit(90, "lb"),
  18945. name: "Front",
  18946. image: {
  18947. source: "./media/characters/cappu/front.svg",
  18948. extra: 1247 / 1152,
  18949. bottom: 0.012
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(4 + 5 / 12, "feet"),
  18957. default: true
  18958. },
  18959. ]
  18960. ))
  18961. characterMakers.push(() => makeCharacter(
  18962. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18963. {
  18964. frontDressed: {
  18965. height: math.unit(70, "cm"),
  18966. weight: math.unit(6, "kg"),
  18967. name: "Front (Dressed)",
  18968. image: {
  18969. source: "./media/characters/sebi/front-dressed.svg",
  18970. extra: 713.5 / 686.5,
  18971. bottom: 0.003
  18972. }
  18973. },
  18974. front: {
  18975. height: math.unit(70, "cm"),
  18976. weight: math.unit(5, "kg"),
  18977. name: "Front",
  18978. image: {
  18979. source: "./media/characters/sebi/front.svg",
  18980. extra: 713.5 / 686.5,
  18981. bottom: 0.003
  18982. }
  18983. }
  18984. },
  18985. [
  18986. {
  18987. name: "Normal",
  18988. height: math.unit(70, "cm"),
  18989. default: true
  18990. },
  18991. {
  18992. name: "Macro",
  18993. height: math.unit(8, "meters")
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18999. {
  19000. front: {
  19001. height: math.unit(6, "feet"),
  19002. weight: math.unit(150, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/typhek/front.svg",
  19006. extra: 1948 / 1929,
  19007. bottom: 0.025
  19008. }
  19009. },
  19010. side: {
  19011. height: math.unit(6, "feet"),
  19012. weight: math.unit(150, "lb"),
  19013. name: "Side",
  19014. image: {
  19015. source: "./media/characters/typhek/side.svg",
  19016. extra: 2034 / 2010,
  19017. bottom: 0.003
  19018. }
  19019. },
  19020. back: {
  19021. height: math.unit(6, "feet"),
  19022. weight: math.unit(150, "lb"),
  19023. name: "Back",
  19024. image: {
  19025. source: "./media/characters/typhek/back.svg",
  19026. extra: 2005 / 1978,
  19027. bottom: 0.004
  19028. }
  19029. },
  19030. palm: {
  19031. height: math.unit(1.2, "feet"),
  19032. name: "Palm",
  19033. image: {
  19034. source: "./media/characters/typhek/palm.svg"
  19035. }
  19036. },
  19037. fist: {
  19038. height: math.unit(1.1, "feet"),
  19039. name: "Fist",
  19040. image: {
  19041. source: "./media/characters/typhek/fist.svg"
  19042. }
  19043. },
  19044. foot: {
  19045. height: math.unit(1.57, "feet"),
  19046. name: "Foot",
  19047. image: {
  19048. source: "./media/characters/typhek/foot.svg"
  19049. }
  19050. },
  19051. sole: {
  19052. height: math.unit(2.05, "feet"),
  19053. name: "Sole",
  19054. image: {
  19055. source: "./media/characters/typhek/sole.svg"
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Macro",
  19062. height: math.unit(40, "stories"),
  19063. default: true
  19064. },
  19065. {
  19066. name: "Megamacro",
  19067. height: math.unit(1, "mile")
  19068. },
  19069. {
  19070. name: "Gigamacro",
  19071. height: math.unit(4000, "solarradii")
  19072. },
  19073. {
  19074. name: "Universal",
  19075. height: math.unit(1.1, "universes")
  19076. }
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19081. {
  19082. side: {
  19083. height: math.unit(5 + 7 / 12, "feet"),
  19084. weight: math.unit(150, "lb"),
  19085. name: "Side",
  19086. image: {
  19087. source: "./media/characters/kassy/side.svg",
  19088. extra: 1280 / 1225,
  19089. bottom: 0.002
  19090. }
  19091. },
  19092. front: {
  19093. height: math.unit(5 + 7 / 12, "feet"),
  19094. weight: math.unit(150, "lb"),
  19095. name: "Front",
  19096. image: {
  19097. source: "./media/characters/kassy/front.svg",
  19098. extra: 1280 / 1225,
  19099. bottom: 0.025
  19100. }
  19101. },
  19102. back: {
  19103. height: math.unit(5 + 7 / 12, "feet"),
  19104. weight: math.unit(150, "lb"),
  19105. name: "Back",
  19106. image: {
  19107. source: "./media/characters/kassy/back.svg",
  19108. extra: 1280 / 1225,
  19109. bottom: 0.002
  19110. }
  19111. },
  19112. foot: {
  19113. height: math.unit(1.266, "feet"),
  19114. name: "Foot",
  19115. image: {
  19116. source: "./media/characters/kassy/foot.svg"
  19117. }
  19118. },
  19119. },
  19120. [
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(5 + 7 / 12, "feet")
  19124. },
  19125. {
  19126. name: "Macro",
  19127. height: math.unit(137, "feet"),
  19128. default: true
  19129. },
  19130. {
  19131. name: "Megamacro",
  19132. height: math.unit(1, "mile")
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(6 + 1 / 12, "feet"),
  19141. weight: math.unit(200, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/neil/front.svg",
  19145. extra: 1326 / 1250,
  19146. bottom: 0.023
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(6 + 1 / 12, "feet"),
  19154. default: true
  19155. },
  19156. {
  19157. name: "Macro",
  19158. height: math.unit(200, "feet")
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(5 + 9 / 12, "feet"),
  19167. weight: math.unit(190, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/atticus/front.svg",
  19171. extra: 2934 / 2785,
  19172. bottom: 0.025
  19173. }
  19174. },
  19175. },
  19176. [
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(5 + 9 / 12, "feet"),
  19180. default: true
  19181. },
  19182. {
  19183. name: "Macro",
  19184. height: math.unit(180, "feet")
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19190. {
  19191. side: {
  19192. height: math.unit(9, "feet"),
  19193. weight: math.unit(650, "lb"),
  19194. name: "Side",
  19195. image: {
  19196. source: "./media/characters/milo/side.svg",
  19197. extra: 2644 / 2310,
  19198. bottom: 0.032
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(9, "feet"),
  19206. default: true
  19207. },
  19208. {
  19209. name: "Macro",
  19210. height: math.unit(300, "feet")
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19216. {
  19217. side: {
  19218. height: math.unit(8, "meters"),
  19219. weight: math.unit(90000, "kg"),
  19220. name: "Side",
  19221. image: {
  19222. source: "./media/characters/ijzer/side.svg",
  19223. extra: 2756 / 1600,
  19224. bottom: 0.01
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Small",
  19231. height: math.unit(3, "meters")
  19232. },
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(8, "meters"),
  19236. default: true
  19237. },
  19238. {
  19239. name: "Normal+",
  19240. height: math.unit(10, "meters")
  19241. },
  19242. {
  19243. name: "Bigger",
  19244. height: math.unit(24, "meters")
  19245. },
  19246. {
  19247. name: "Huge",
  19248. height: math.unit(80, "meters")
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(6 + 2 / 12, "feet"),
  19257. weight: math.unit(153, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/luca-cervicum/front.svg",
  19261. extra: 370 / 327,
  19262. bottom: 0.015
  19263. }
  19264. },
  19265. back: {
  19266. height: math.unit(6 + 2 / 12, "feet"),
  19267. weight: math.unit(153, "lb"),
  19268. name: "Back",
  19269. image: {
  19270. source: "./media/characters/luca-cervicum/back.svg",
  19271. extra: 367 / 333,
  19272. bottom: 0.005
  19273. }
  19274. },
  19275. frontGear: {
  19276. height: math.unit(6 + 2 / 12, "feet"),
  19277. weight: math.unit(173, "lb"),
  19278. name: "Front (Gear)",
  19279. image: {
  19280. source: "./media/characters/luca-cervicum/front-gear.svg",
  19281. extra: 377 / 333,
  19282. bottom: 0.006
  19283. }
  19284. },
  19285. },
  19286. [
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(6 + 2 / 12, "feet"),
  19290. default: true
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19296. {
  19297. front: {
  19298. height: math.unit(6 + 1 / 12, "feet"),
  19299. weight: math.unit(304, "lb"),
  19300. name: "Front",
  19301. image: {
  19302. source: "./media/characters/oliver/front.svg",
  19303. extra: 157 / 143,
  19304. bottom: 0.08
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(6 + 1 / 12, "feet"),
  19312. default: true
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19318. {
  19319. front: {
  19320. height: math.unit(5 + 7 / 12, "feet"),
  19321. weight: math.unit(140, "lb"),
  19322. name: "Front",
  19323. image: {
  19324. source: "./media/characters/shane/front.svg",
  19325. extra: 304 / 289,
  19326. bottom: 0.005
  19327. }
  19328. },
  19329. },
  19330. [
  19331. {
  19332. name: "Normal",
  19333. height: math.unit(5 + 7 / 12, "feet"),
  19334. default: true
  19335. },
  19336. ]
  19337. ))
  19338. characterMakers.push(() => makeCharacter(
  19339. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19340. {
  19341. front: {
  19342. height: math.unit(5 + 9 / 12, "feet"),
  19343. weight: math.unit(178, "lb"),
  19344. name: "Front",
  19345. image: {
  19346. source: "./media/characters/shin/front.svg",
  19347. extra: 159 / 151,
  19348. bottom: 0.015
  19349. }
  19350. },
  19351. },
  19352. [
  19353. {
  19354. name: "Normal",
  19355. height: math.unit(5 + 9 / 12, "feet"),
  19356. default: true
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19362. {
  19363. front: {
  19364. height: math.unit(5 + 10 / 12, "feet"),
  19365. weight: math.unit(168, "lb"),
  19366. name: "Front",
  19367. image: {
  19368. source: "./media/characters/xerxes/front.svg",
  19369. extra: 282 / 260,
  19370. bottom: 0.045
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(5 + 10 / 12, "feet"),
  19378. default: true
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19384. {
  19385. front: {
  19386. height: math.unit(6 + 7 / 12, "feet"),
  19387. weight: math.unit(208, "lb"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/chaska/front.svg",
  19391. extra: 332 / 319,
  19392. bottom: 0.015
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Normal",
  19399. height: math.unit(6 + 7 / 12, "feet"),
  19400. default: true
  19401. },
  19402. ]
  19403. ))
  19404. characterMakers.push(() => makeCharacter(
  19405. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19406. {
  19407. front: {
  19408. height: math.unit(5 + 8 / 12, "feet"),
  19409. weight: math.unit(208, "lb"),
  19410. name: "Front",
  19411. image: {
  19412. source: "./media/characters/enuk/front.svg",
  19413. extra: 437 / 406,
  19414. bottom: 0.02
  19415. }
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Normal",
  19421. height: math.unit(5 + 8 / 12, "feet"),
  19422. default: true
  19423. },
  19424. ]
  19425. ))
  19426. characterMakers.push(() => makeCharacter(
  19427. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19428. {
  19429. front: {
  19430. height: math.unit(5 + 10 / 12, "feet"),
  19431. weight: math.unit(252, "lb"),
  19432. name: "Front",
  19433. image: {
  19434. source: "./media/characters/bruun/front.svg",
  19435. extra: 197 / 187,
  19436. bottom: 0.012
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Normal",
  19443. height: math.unit(5 + 10 / 12, "feet"),
  19444. default: true
  19445. },
  19446. ]
  19447. ))
  19448. characterMakers.push(() => makeCharacter(
  19449. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19450. {
  19451. front: {
  19452. height: math.unit(6 + 10 / 12, "feet"),
  19453. weight: math.unit(255, "lb"),
  19454. name: "Front",
  19455. image: {
  19456. source: "./media/characters/alexeev/front.svg",
  19457. extra: 213 / 200,
  19458. bottom: 0.05
  19459. }
  19460. },
  19461. },
  19462. [
  19463. {
  19464. name: "Normal",
  19465. height: math.unit(6 + 10 / 12, "feet"),
  19466. default: true
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19472. {
  19473. front: {
  19474. height: math.unit(2 + 8 / 12, "feet"),
  19475. weight: math.unit(22, "lb"),
  19476. name: "Front",
  19477. image: {
  19478. source: "./media/characters/evelyn/front.svg",
  19479. extra: 208 / 180
  19480. }
  19481. },
  19482. },
  19483. [
  19484. {
  19485. name: "Normal",
  19486. height: math.unit(2 + 8 / 12, "feet"),
  19487. default: true
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19493. {
  19494. front: {
  19495. height: math.unit(5 + 9 / 12, "feet"),
  19496. weight: math.unit(139, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/inca/front.svg",
  19500. extra: 294 / 291,
  19501. bottom: 0.03
  19502. }
  19503. },
  19504. },
  19505. [
  19506. {
  19507. name: "Normal",
  19508. height: math.unit(5 + 9 / 12, "feet"),
  19509. default: true
  19510. },
  19511. ]
  19512. ))
  19513. characterMakers.push(() => makeCharacter(
  19514. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19515. {
  19516. front: {
  19517. height: math.unit(5 + 1 / 12, "feet"),
  19518. weight: math.unit(84, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/magdalene/front.svg",
  19522. extra: 293 / 273
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Normal",
  19529. height: math.unit(5 + 1 / 12, "feet"),
  19530. default: true
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19536. {
  19537. front: {
  19538. height: math.unit(6 + 3 / 12, "feet"),
  19539. weight: math.unit(185, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/mera/front.svg",
  19543. extra: 291 / 277,
  19544. bottom: 0.03
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Normal",
  19551. height: math.unit(6 + 3 / 12, "feet"),
  19552. default: true
  19553. },
  19554. ]
  19555. ))
  19556. characterMakers.push(() => makeCharacter(
  19557. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19558. {
  19559. front: {
  19560. height: math.unit(6 + 7 / 12, "feet"),
  19561. weight: math.unit(160, "lb"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/ceres/front.svg",
  19565. extra: 1023 / 950,
  19566. bottom: 0.027
  19567. }
  19568. },
  19569. back: {
  19570. height: math.unit(6 + 7 / 12, "feet"),
  19571. weight: math.unit(160, "lb"),
  19572. name: "Back",
  19573. image: {
  19574. source: "./media/characters/ceres/back.svg",
  19575. extra: 1023 / 950
  19576. }
  19577. },
  19578. },
  19579. [
  19580. {
  19581. name: "Normal",
  19582. height: math.unit(6 + 7 / 12, "feet"),
  19583. default: true
  19584. },
  19585. ]
  19586. ))
  19587. characterMakers.push(() => makeCharacter(
  19588. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19589. {
  19590. front: {
  19591. height: math.unit(5 + 10 / 12, "feet"),
  19592. weight: math.unit(150, "lb"),
  19593. name: "Front",
  19594. image: {
  19595. source: "./media/characters/kris/front.svg",
  19596. extra: 885 / 803,
  19597. bottom: 0.03
  19598. }
  19599. },
  19600. },
  19601. [
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(5 + 10 / 12, "feet"),
  19605. default: true
  19606. },
  19607. ]
  19608. ))
  19609. characterMakers.push(() => makeCharacter(
  19610. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19611. {
  19612. front: {
  19613. height: math.unit(7, "feet"),
  19614. weight: math.unit(120, "kg"),
  19615. name: "Front",
  19616. image: {
  19617. source: "./media/characters/taluthus/front.svg",
  19618. extra: 903 / 833,
  19619. bottom: 0.015
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Normal",
  19626. height: math.unit(7, "feet"),
  19627. default: true
  19628. },
  19629. {
  19630. name: "Macro",
  19631. height: math.unit(300, "feet")
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19637. {
  19638. front: {
  19639. height: math.unit(5 + 9 / 12, "feet"),
  19640. weight: math.unit(145, "lb"),
  19641. name: "Front",
  19642. image: {
  19643. source: "./media/characters/dawn/front.svg",
  19644. extra: 2094 / 2016,
  19645. bottom: 0.025
  19646. }
  19647. },
  19648. back: {
  19649. height: math.unit(5 + 9 / 12, "feet"),
  19650. weight: math.unit(160, "lb"),
  19651. name: "Back",
  19652. image: {
  19653. source: "./media/characters/dawn/back.svg",
  19654. extra: 2112 / 2080,
  19655. bottom: 0.005
  19656. }
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(6 + 7 / 12, "feet"),
  19663. default: true
  19664. },
  19665. ]
  19666. ))
  19667. characterMakers.push(() => makeCharacter(
  19668. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19669. {
  19670. anthro: {
  19671. height: math.unit(8 + 3 / 12, "feet"),
  19672. weight: math.unit(450, "lb"),
  19673. name: "Anthro",
  19674. image: {
  19675. source: "./media/characters/arador/anthro.svg",
  19676. extra: 1835 / 1718,
  19677. bottom: 0.025
  19678. }
  19679. },
  19680. feral: {
  19681. height: math.unit(4, "feet"),
  19682. weight: math.unit(200, "lb"),
  19683. name: "Feral",
  19684. image: {
  19685. source: "./media/characters/arador/feral.svg",
  19686. extra: 1683 / 1514,
  19687. bottom: 0.07
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(8 + 3 / 12, "feet")
  19695. },
  19696. {
  19697. name: "Macro",
  19698. height: math.unit(82.5, "feet"),
  19699. default: true
  19700. },
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19705. {
  19706. front: {
  19707. height: math.unit(5 + 10 / 12, "feet"),
  19708. weight: math.unit(125, "lb"),
  19709. name: "Front",
  19710. image: {
  19711. source: "./media/characters/dharsi/front.svg",
  19712. extra: 716 / 630,
  19713. bottom: 0.035
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Nano",
  19720. height: math.unit(100, "nm")
  19721. },
  19722. {
  19723. name: "Micro",
  19724. height: math.unit(2, "inches")
  19725. },
  19726. {
  19727. name: "Normal",
  19728. height: math.unit(5 + 10 / 12, "feet"),
  19729. default: true
  19730. },
  19731. {
  19732. name: "Macro",
  19733. height: math.unit(1000, "feet")
  19734. },
  19735. {
  19736. name: "Megamacro",
  19737. height: math.unit(10, "miles")
  19738. },
  19739. {
  19740. name: "Gigamacro",
  19741. height: math.unit(3000, "miles")
  19742. },
  19743. {
  19744. name: "Teramacro",
  19745. height: math.unit(500000, "miles")
  19746. },
  19747. {
  19748. name: "Teramacro+",
  19749. height: math.unit(30, "galaxies")
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19755. {
  19756. front: {
  19757. height: math.unit(6, "feet"),
  19758. weight: math.unit(150, "lb"),
  19759. name: "Front",
  19760. image: {
  19761. source: "./media/characters/deathy/front.svg",
  19762. extra: 1552 / 1463,
  19763. bottom: 0.025
  19764. }
  19765. },
  19766. side: {
  19767. height: math.unit(6, "feet"),
  19768. weight: math.unit(150, "lb"),
  19769. name: "Side",
  19770. image: {
  19771. source: "./media/characters/deathy/side.svg",
  19772. extra: 1604 / 1455,
  19773. bottom: 0.025
  19774. }
  19775. },
  19776. back: {
  19777. height: math.unit(6, "feet"),
  19778. weight: math.unit(150, "lb"),
  19779. name: "Back",
  19780. image: {
  19781. source: "./media/characters/deathy/back.svg",
  19782. extra: 1580 / 1463,
  19783. bottom: 0.005
  19784. }
  19785. },
  19786. },
  19787. [
  19788. {
  19789. name: "Micro",
  19790. height: math.unit(5, "millimeters")
  19791. },
  19792. {
  19793. name: "Normal",
  19794. height: math.unit(6 + 5 / 12, "feet"),
  19795. default: true
  19796. },
  19797. ]
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19801. {
  19802. front: {
  19803. height: math.unit(16, "feet"),
  19804. weight: math.unit(4000, "lb"),
  19805. name: "Front",
  19806. image: {
  19807. source: "./media/characters/juniper/front.svg",
  19808. bottom: 0.04
  19809. }
  19810. },
  19811. },
  19812. [
  19813. {
  19814. name: "Normal",
  19815. height: math.unit(16, "feet"),
  19816. default: true
  19817. },
  19818. ]
  19819. ))
  19820. characterMakers.push(() => makeCharacter(
  19821. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19822. {
  19823. front: {
  19824. height: math.unit(6, "feet"),
  19825. weight: math.unit(150, "lb"),
  19826. name: "Front",
  19827. image: {
  19828. source: "./media/characters/hipster/front.svg",
  19829. extra: 1312 / 1209,
  19830. bottom: 0.025
  19831. }
  19832. },
  19833. back: {
  19834. height: math.unit(6, "feet"),
  19835. weight: math.unit(150, "lb"),
  19836. name: "Back",
  19837. image: {
  19838. source: "./media/characters/hipster/back.svg",
  19839. extra: 1281 / 1196,
  19840. bottom: 0.01
  19841. }
  19842. },
  19843. },
  19844. [
  19845. {
  19846. name: "Micro",
  19847. height: math.unit(1, "mm")
  19848. },
  19849. {
  19850. name: "Normal",
  19851. height: math.unit(4, "inches"),
  19852. default: true
  19853. },
  19854. {
  19855. name: "Macro",
  19856. height: math.unit(500, "feet")
  19857. },
  19858. {
  19859. name: "Megamacro",
  19860. height: math.unit(1000, "miles")
  19861. },
  19862. ]
  19863. ))
  19864. characterMakers.push(() => makeCharacter(
  19865. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19866. {
  19867. front: {
  19868. height: math.unit(6, "feet"),
  19869. weight: math.unit(150, "lb"),
  19870. name: "Front",
  19871. image: {
  19872. source: "./media/characters/tendirmuldr/front.svg",
  19873. extra: 1878 / 1772,
  19874. bottom: 0.015
  19875. }
  19876. },
  19877. },
  19878. [
  19879. {
  19880. name: "Megamacro",
  19881. height: math.unit(1500, "miles"),
  19882. default: true
  19883. },
  19884. ]
  19885. ))
  19886. characterMakers.push(() => makeCharacter(
  19887. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19888. {
  19889. front: {
  19890. height: math.unit(14, "feet"),
  19891. weight: math.unit(12000, "lb"),
  19892. name: "Front",
  19893. image: {
  19894. source: "./media/characters/mort/front.svg",
  19895. extra: 365 / 318,
  19896. bottom: 0.01
  19897. }
  19898. },
  19899. side: {
  19900. height: math.unit(14, "feet"),
  19901. weight: math.unit(12000, "lb"),
  19902. name: "Side",
  19903. image: {
  19904. source: "./media/characters/mort/side.svg",
  19905. extra: 365 / 318,
  19906. bottom: 0.052
  19907. },
  19908. default: true
  19909. },
  19910. back: {
  19911. height: math.unit(14, "feet"),
  19912. weight: math.unit(12000, "lb"),
  19913. name: "Back",
  19914. image: {
  19915. source: "./media/characters/mort/back.svg",
  19916. extra: 371 / 332,
  19917. bottom: 0.18
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Normal",
  19924. height: math.unit(14, "feet"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19931. {
  19932. front: {
  19933. height: math.unit(8, "feet"),
  19934. weight: math.unit(1, "ton"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/lycoa/front.svg",
  19938. extra: 1875 / 1789,
  19939. bottom: 0.022
  19940. }
  19941. },
  19942. back: {
  19943. height: math.unit(8, "feet"),
  19944. weight: math.unit(1, "ton"),
  19945. name: "Back",
  19946. image: {
  19947. source: "./media/characters/lycoa/back.svg",
  19948. extra: 1835 / 1781,
  19949. bottom: 0.03
  19950. }
  19951. },
  19952. head: {
  19953. height: math.unit(2.1, "feet"),
  19954. name: "Head",
  19955. image: {
  19956. source: "./media/characters/lycoa/head.svg"
  19957. }
  19958. },
  19959. tailmaw: {
  19960. height: math.unit(1.9, "feet"),
  19961. name: "Tailmaw",
  19962. image: {
  19963. source: "./media/characters/lycoa/tailmaw.svg"
  19964. }
  19965. },
  19966. tentacles: {
  19967. height: math.unit(2.1, "feet"),
  19968. name: "Tentacles",
  19969. image: {
  19970. source: "./media/characters/lycoa/tentacles.svg"
  19971. }
  19972. },
  19973. dick: {
  19974. height: math.unit(1.73, "feet"),
  19975. name: "Dick",
  19976. image: {
  19977. source: "./media/characters/lycoa/dick.svg"
  19978. }
  19979. },
  19980. },
  19981. [
  19982. {
  19983. name: "Normal",
  19984. height: math.unit(8, "feet"),
  19985. default: true
  19986. },
  19987. {
  19988. name: "Macro",
  19989. height: math.unit(30, "feet")
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19995. {
  19996. front: {
  19997. height: math.unit(4 + 2 / 12, "feet"),
  19998. weight: math.unit(70, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/naldara/front.svg",
  20002. extra: 841 / 720,
  20003. bottom: 0.04
  20004. }
  20005. },
  20006. naga: {
  20007. height: math.unit(23, "feet"),
  20008. weight: math.unit(15000, "kg"),
  20009. name: "Naga",
  20010. image: {
  20011. source: "./media/characters/naldara/naga.svg",
  20012. extra: 3290 / 2959,
  20013. bottom: 124 / 3432
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(4 + 2 / 12, "feet"),
  20021. default: true
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20027. {
  20028. front: {
  20029. height: math.unit(13 + 7 / 12, "feet"),
  20030. weight: math.unit(1500, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/briar/front.svg",
  20034. extra: 626 / 596,
  20035. bottom: 0.08
  20036. }
  20037. },
  20038. },
  20039. [
  20040. {
  20041. name: "Normal",
  20042. height: math.unit(13 + 7 / 12, "feet"),
  20043. default: true
  20044. },
  20045. ]
  20046. ))
  20047. characterMakers.push(() => makeCharacter(
  20048. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20049. {
  20050. side: {
  20051. height: math.unit(10, "feet"),
  20052. weight: math.unit(500, "lb"),
  20053. name: "Side",
  20054. image: {
  20055. source: "./media/characters/vanguard/side.svg",
  20056. extra: 502 / 425,
  20057. bottom: 0.087
  20058. }
  20059. },
  20060. },
  20061. [
  20062. {
  20063. name: "Normal",
  20064. height: math.unit(10, "feet"),
  20065. default: true
  20066. },
  20067. ]
  20068. ))
  20069. characterMakers.push(() => makeCharacter(
  20070. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20071. {
  20072. front: {
  20073. height: math.unit(7.5, "feet"),
  20074. weight: math.unit(2, "lb"),
  20075. name: "Front",
  20076. image: {
  20077. source: "./media/characters/artemis/front.svg",
  20078. extra: 1192 / 1075,
  20079. bottom: 0.07
  20080. }
  20081. },
  20082. frontNsfw: {
  20083. height: math.unit(7.5, "feet"),
  20084. weight: math.unit(2, "lb"),
  20085. name: "Front (NSFW)",
  20086. image: {
  20087. source: "./media/characters/artemis/front-nsfw.svg",
  20088. extra: 1192 / 1075,
  20089. bottom: 0.07
  20090. }
  20091. },
  20092. frontNsfwer: {
  20093. height: math.unit(7.5, "feet"),
  20094. weight: math.unit(2, "lb"),
  20095. name: "Front (NSFW-er)",
  20096. image: {
  20097. source: "./media/characters/artemis/front-nsfwer.svg",
  20098. extra: 1192 / 1075,
  20099. bottom: 0.07
  20100. }
  20101. },
  20102. side: {
  20103. height: math.unit(7.5, "feet"),
  20104. weight: math.unit(2, "lb"),
  20105. name: "Side",
  20106. image: {
  20107. source: "./media/characters/artemis/side.svg",
  20108. extra: 1192 / 1075,
  20109. bottom: 0.07
  20110. }
  20111. },
  20112. sideNsfw: {
  20113. height: math.unit(7.5, "feet"),
  20114. weight: math.unit(2, "lb"),
  20115. name: "Side (NSFW)",
  20116. image: {
  20117. source: "./media/characters/artemis/side-nsfw.svg",
  20118. extra: 1192 / 1075,
  20119. bottom: 0.07
  20120. }
  20121. },
  20122. sideNsfwer: {
  20123. height: math.unit(7.5, "feet"),
  20124. weight: math.unit(2, "lb"),
  20125. name: "Side (NSFW-er)",
  20126. image: {
  20127. source: "./media/characters/artemis/side-nsfwer.svg",
  20128. extra: 1192 / 1075,
  20129. bottom: 0.07
  20130. }
  20131. },
  20132. maw: {
  20133. height: math.unit(1.1, "feet"),
  20134. name: "Maw",
  20135. image: {
  20136. source: "./media/characters/artemis/maw.svg"
  20137. }
  20138. },
  20139. stomach: {
  20140. height: math.unit(0.95, "feet"),
  20141. name: "Stomach",
  20142. image: {
  20143. source: "./media/characters/artemis/stomach.svg"
  20144. }
  20145. },
  20146. dickCanine: {
  20147. height: math.unit(1, "feet"),
  20148. name: "Dick (Canine)",
  20149. image: {
  20150. source: "./media/characters/artemis/dick-canine.svg"
  20151. }
  20152. },
  20153. dickEquine: {
  20154. height: math.unit(0.85, "feet"),
  20155. name: "Dick (Equine)",
  20156. image: {
  20157. source: "./media/characters/artemis/dick-equine.svg"
  20158. }
  20159. },
  20160. dickExotic: {
  20161. height: math.unit(0.85, "feet"),
  20162. name: "Dick (Exotic)",
  20163. image: {
  20164. source: "./media/characters/artemis/dick-exotic.svg"
  20165. }
  20166. },
  20167. },
  20168. [
  20169. {
  20170. name: "Normal",
  20171. height: math.unit(7.5, "feet"),
  20172. default: true
  20173. },
  20174. {
  20175. name: "Enlarged",
  20176. height: math.unit(12, "feet")
  20177. },
  20178. ]
  20179. ))
  20180. characterMakers.push(() => makeCharacter(
  20181. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20182. {
  20183. front: {
  20184. height: math.unit(5 + 3 / 12, "feet"),
  20185. weight: math.unit(160, "lb"),
  20186. name: "Front",
  20187. image: {
  20188. source: "./media/characters/kira/front.svg",
  20189. extra: 906 / 786,
  20190. bottom: 0.01
  20191. }
  20192. },
  20193. back: {
  20194. height: math.unit(5 + 3 / 12, "feet"),
  20195. weight: math.unit(160, "lb"),
  20196. name: "Back",
  20197. image: {
  20198. source: "./media/characters/kira/back.svg",
  20199. extra: 882 / 757,
  20200. bottom: 0.005
  20201. }
  20202. },
  20203. frontDressed: {
  20204. height: math.unit(5 + 3 / 12, "feet"),
  20205. weight: math.unit(160, "lb"),
  20206. name: "Front (Dressed)",
  20207. image: {
  20208. source: "./media/characters/kira/front-dressed.svg",
  20209. extra: 906 / 786,
  20210. bottom: 0.01
  20211. }
  20212. },
  20213. beans: {
  20214. height: math.unit(0.92, "feet"),
  20215. name: "Beans",
  20216. image: {
  20217. source: "./media/characters/kira/beans.svg"
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Normal",
  20224. height: math.unit(5 + 3 / 12, "feet"),
  20225. default: true
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(5 + 4 / 12, "feet"),
  20234. weight: math.unit(145, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/scramble/front.svg",
  20238. extra: 763 / 727,
  20239. bottom: 0.05
  20240. }
  20241. },
  20242. back: {
  20243. height: math.unit(5 + 4 / 12, "feet"),
  20244. weight: math.unit(145, "lb"),
  20245. name: "Back",
  20246. image: {
  20247. source: "./media/characters/scramble/back.svg",
  20248. extra: 826 / 737,
  20249. bottom: 0.002
  20250. }
  20251. },
  20252. },
  20253. [
  20254. {
  20255. name: "Normal",
  20256. height: math.unit(5 + 4 / 12, "feet"),
  20257. default: true
  20258. },
  20259. ]
  20260. ))
  20261. characterMakers.push(() => makeCharacter(
  20262. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20263. {
  20264. side: {
  20265. height: math.unit(6 + 2 / 12, "feet"),
  20266. weight: math.unit(190, "lb"),
  20267. name: "Side",
  20268. image: {
  20269. source: "./media/characters/biscuit/side.svg",
  20270. extra: 858 / 791,
  20271. bottom: 0.044
  20272. }
  20273. },
  20274. },
  20275. [
  20276. {
  20277. name: "Normal",
  20278. height: math.unit(6 + 2 / 12, "feet"),
  20279. default: true
  20280. },
  20281. ]
  20282. ))
  20283. characterMakers.push(() => makeCharacter(
  20284. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20285. {
  20286. front: {
  20287. height: math.unit(5 + 2 / 12, "feet"),
  20288. weight: math.unit(120, "lb"),
  20289. name: "Front",
  20290. image: {
  20291. source: "./media/characters/poffin/front.svg",
  20292. extra: 786 / 680,
  20293. bottom: 0.005
  20294. }
  20295. },
  20296. },
  20297. [
  20298. {
  20299. name: "Normal",
  20300. height: math.unit(5 + 2 / 12, "feet"),
  20301. default: true
  20302. },
  20303. ]
  20304. ))
  20305. characterMakers.push(() => makeCharacter(
  20306. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20307. {
  20308. front: {
  20309. height: math.unit(6 + 3 / 12, "feet"),
  20310. weight: math.unit(519, "lb"),
  20311. name: "Front",
  20312. image: {
  20313. source: "./media/characters/dhari/front.svg",
  20314. extra: 1048 / 946,
  20315. bottom: 0.015
  20316. }
  20317. },
  20318. back: {
  20319. height: math.unit(6 + 3 / 12, "feet"),
  20320. weight: math.unit(519, "lb"),
  20321. name: "Back",
  20322. image: {
  20323. source: "./media/characters/dhari/back.svg",
  20324. extra: 1048 / 931,
  20325. bottom: 0.005
  20326. }
  20327. },
  20328. frontDressed: {
  20329. height: math.unit(6 + 3 / 12, "feet"),
  20330. weight: math.unit(519, "lb"),
  20331. name: "Front (Dressed)",
  20332. image: {
  20333. source: "./media/characters/dhari/front-dressed.svg",
  20334. extra: 1713 / 1546,
  20335. bottom: 0.02
  20336. }
  20337. },
  20338. backDressed: {
  20339. height: math.unit(6 + 3 / 12, "feet"),
  20340. weight: math.unit(519, "lb"),
  20341. name: "Back (Dressed)",
  20342. image: {
  20343. source: "./media/characters/dhari/back-dressed.svg",
  20344. extra: 1699 / 1537,
  20345. bottom: 0.01
  20346. }
  20347. },
  20348. maw: {
  20349. height: math.unit(0.95, "feet"),
  20350. name: "Maw",
  20351. image: {
  20352. source: "./media/characters/dhari/maw.svg"
  20353. }
  20354. },
  20355. wereFront: {
  20356. height: math.unit(12 + 8 / 12, "feet"),
  20357. weight: math.unit(4000, "lb"),
  20358. name: "Front (Were)",
  20359. image: {
  20360. source: "./media/characters/dhari/were-front.svg",
  20361. extra: 1065 / 969,
  20362. bottom: 0.015
  20363. }
  20364. },
  20365. wereBack: {
  20366. height: math.unit(12 + 8 / 12, "feet"),
  20367. weight: math.unit(4000, "lb"),
  20368. name: "Back (Were)",
  20369. image: {
  20370. source: "./media/characters/dhari/were-back.svg",
  20371. extra: 1065 / 969,
  20372. bottom: 0.012
  20373. }
  20374. },
  20375. wereMaw: {
  20376. height: math.unit(0.625, "meters"),
  20377. name: "Maw (Were)",
  20378. image: {
  20379. source: "./media/characters/dhari/were-maw.svg"
  20380. }
  20381. },
  20382. },
  20383. [
  20384. {
  20385. name: "Normal",
  20386. height: math.unit(6 + 3 / 12, "feet"),
  20387. default: true
  20388. },
  20389. ]
  20390. ))
  20391. characterMakers.push(() => makeCharacter(
  20392. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20393. {
  20394. anthro: {
  20395. height: math.unit(5 + 7 / 12, "feet"),
  20396. weight: math.unit(175, "lb"),
  20397. name: "Anthro",
  20398. image: {
  20399. source: "./media/characters/rena-dyne/anthro.svg",
  20400. extra: 1849 / 1785,
  20401. bottom: 0.005
  20402. }
  20403. },
  20404. taur: {
  20405. height: math.unit(15 + 6 / 12, "feet"),
  20406. weight: math.unit(8000, "lb"),
  20407. name: "Taur",
  20408. image: {
  20409. source: "./media/characters/rena-dyne/taur.svg",
  20410. extra: 2315 / 2234,
  20411. bottom: 0.033
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Normal",
  20418. height: math.unit(5 + 7 / 12, "feet"),
  20419. default: true
  20420. },
  20421. ]
  20422. ))
  20423. characterMakers.push(() => makeCharacter(
  20424. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20425. {
  20426. front: {
  20427. height: math.unit(8, "feet"),
  20428. weight: math.unit(600, "lb"),
  20429. name: "Front",
  20430. image: {
  20431. source: "./media/characters/weremeep/front.svg",
  20432. extra: 967 / 862,
  20433. bottom: 0.01
  20434. }
  20435. },
  20436. },
  20437. [
  20438. {
  20439. name: "Normal",
  20440. height: math.unit(8, "feet"),
  20441. default: true
  20442. },
  20443. {
  20444. name: "Lorg",
  20445. height: math.unit(12, "feet")
  20446. },
  20447. {
  20448. name: "Oh Lawd She Comin'",
  20449. height: math.unit(20, "feet")
  20450. },
  20451. ]
  20452. ))
  20453. characterMakers.push(() => makeCharacter(
  20454. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20455. {
  20456. front: {
  20457. height: math.unit(4, "feet"),
  20458. weight: math.unit(90, "lb"),
  20459. name: "Front",
  20460. image: {
  20461. source: "./media/characters/reza/front.svg",
  20462. extra: 1183 / 1111,
  20463. bottom: 0.017
  20464. }
  20465. },
  20466. back: {
  20467. height: math.unit(4, "feet"),
  20468. weight: math.unit(90, "lb"),
  20469. name: "Back",
  20470. image: {
  20471. source: "./media/characters/reza/back.svg",
  20472. extra: 1183 / 1111,
  20473. bottom: 0.01
  20474. }
  20475. },
  20476. drake: {
  20477. height: math.unit(30, "feet"),
  20478. weight: math.unit(246960, "lb"),
  20479. name: "Drake",
  20480. image: {
  20481. source: "./media/characters/reza/drake.svg",
  20482. extra: 2350 / 2024,
  20483. bottom: 60.7 / 2403
  20484. }
  20485. },
  20486. },
  20487. [
  20488. {
  20489. name: "Normal",
  20490. height: math.unit(4, "feet"),
  20491. default: true
  20492. },
  20493. ]
  20494. ))
  20495. characterMakers.push(() => makeCharacter(
  20496. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20497. {
  20498. side: {
  20499. height: math.unit(15, "feet"),
  20500. weight: math.unit(14, "tons"),
  20501. name: "Side",
  20502. image: {
  20503. source: "./media/characters/athea/side.svg",
  20504. extra: 960 / 540,
  20505. bottom: 0.003
  20506. }
  20507. },
  20508. sitting: {
  20509. height: math.unit(6 * 2.85, "feet"),
  20510. weight: math.unit(14, "tons"),
  20511. name: "Sitting",
  20512. image: {
  20513. source: "./media/characters/athea/sitting.svg",
  20514. extra: 621 / 581,
  20515. bottom: 0.075
  20516. }
  20517. },
  20518. maw: {
  20519. height: math.unit(7.59498031496063, "feet"),
  20520. name: "Maw",
  20521. image: {
  20522. source: "./media/characters/athea/maw.svg"
  20523. }
  20524. },
  20525. },
  20526. [
  20527. {
  20528. name: "Lap Cat",
  20529. height: math.unit(2.5, "feet")
  20530. },
  20531. {
  20532. name: "Minimacro",
  20533. height: math.unit(15, "feet"),
  20534. default: true
  20535. },
  20536. {
  20537. name: "Macro",
  20538. height: math.unit(120, "feet")
  20539. },
  20540. {
  20541. name: "Macro+",
  20542. height: math.unit(640, "feet")
  20543. },
  20544. {
  20545. name: "Colossus",
  20546. height: math.unit(2.2, "miles")
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20552. {
  20553. front: {
  20554. height: math.unit(8 + 8 / 12, "feet"),
  20555. weight: math.unit(130, "kg"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/seroko/front.svg",
  20559. extra: 1385 / 1280,
  20560. bottom: 0.025
  20561. }
  20562. },
  20563. back: {
  20564. height: math.unit(8 + 8 / 12, "feet"),
  20565. weight: math.unit(130, "kg"),
  20566. name: "Back",
  20567. image: {
  20568. source: "./media/characters/seroko/back.svg",
  20569. extra: 1369 / 1238,
  20570. bottom: 0.018
  20571. }
  20572. },
  20573. frontDressed: {
  20574. height: math.unit(8 + 8 / 12, "feet"),
  20575. weight: math.unit(130, "kg"),
  20576. name: "Front (Dressed)",
  20577. image: {
  20578. source: "./media/characters/seroko/front-dressed.svg",
  20579. extra: 1366 / 1275,
  20580. bottom: 0.03
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(8 + 8 / 12, "feet"),
  20588. default: true
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20594. {
  20595. front: {
  20596. height: math.unit(5.5, "feet"),
  20597. weight: math.unit(160, "lb"),
  20598. name: "Front",
  20599. image: {
  20600. source: "./media/characters/quatzi/front.svg",
  20601. extra: 2346 / 2242,
  20602. bottom: 0.015
  20603. }
  20604. },
  20605. },
  20606. [
  20607. {
  20608. name: "Normal",
  20609. height: math.unit(5.5, "feet"),
  20610. default: true
  20611. },
  20612. {
  20613. name: "Big",
  20614. height: math.unit(7.7, "feet")
  20615. },
  20616. ]
  20617. ))
  20618. characterMakers.push(() => makeCharacter(
  20619. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20620. {
  20621. front: {
  20622. height: math.unit(5 + 11 / 12, "feet"),
  20623. weight: math.unit(180, "lb"),
  20624. name: "Front",
  20625. image: {
  20626. source: "./media/characters/sen/front.svg",
  20627. extra: 1321 / 1254,
  20628. bottom: 0.015
  20629. }
  20630. },
  20631. side: {
  20632. height: math.unit(5 + 11 / 12, "feet"),
  20633. weight: math.unit(180, "lb"),
  20634. name: "Side",
  20635. image: {
  20636. source: "./media/characters/sen/side.svg",
  20637. extra: 1321 / 1254,
  20638. bottom: 0.007
  20639. }
  20640. },
  20641. back: {
  20642. height: math.unit(5 + 11 / 12, "feet"),
  20643. weight: math.unit(180, "lb"),
  20644. name: "Back",
  20645. image: {
  20646. source: "./media/characters/sen/back.svg",
  20647. extra: 1321 / 1254
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Normal",
  20654. height: math.unit(5 + 11 / 12, "feet"),
  20655. default: true
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20661. {
  20662. front: {
  20663. height: math.unit(166.6, "cm"),
  20664. weight: math.unit(66.6, "kg"),
  20665. name: "Front",
  20666. image: {
  20667. source: "./media/characters/fruity/front.svg",
  20668. extra: 1510 / 1386,
  20669. bottom: 0.04
  20670. }
  20671. },
  20672. back: {
  20673. height: math.unit(166.6, "cm"),
  20674. weight: math.unit(66.6, "lb"),
  20675. name: "Back",
  20676. image: {
  20677. source: "./media/characters/fruity/back.svg",
  20678. extra: 1563 / 1435,
  20679. bottom: 0.005
  20680. }
  20681. },
  20682. },
  20683. [
  20684. {
  20685. name: "Normal",
  20686. height: math.unit(166.6, "cm"),
  20687. default: true
  20688. },
  20689. {
  20690. name: "Demonic",
  20691. height: math.unit(166.6, "feet")
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20697. {
  20698. side: {
  20699. height: math.unit(10, "feet"),
  20700. weight: math.unit(500, "lb"),
  20701. name: "Side",
  20702. image: {
  20703. source: "./media/characters/zost/side.svg",
  20704. extra: 966 / 880,
  20705. bottom: 0.075
  20706. }
  20707. },
  20708. mawFront: {
  20709. height: math.unit(1.08, "meters"),
  20710. name: "Maw (Front)",
  20711. image: {
  20712. source: "./media/characters/zost/maw-front.svg"
  20713. }
  20714. },
  20715. mawSide: {
  20716. height: math.unit(2.66, "feet"),
  20717. name: "Maw (Side)",
  20718. image: {
  20719. source: "./media/characters/zost/maw-side.svg"
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Normal",
  20726. height: math.unit(10, "feet"),
  20727. default: true
  20728. },
  20729. ]
  20730. ))
  20731. characterMakers.push(() => makeCharacter(
  20732. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20733. {
  20734. front: {
  20735. height: math.unit(5 + 4 / 12, "feet"),
  20736. weight: math.unit(120, "lb"),
  20737. name: "Front",
  20738. image: {
  20739. source: "./media/characters/luci/front.svg",
  20740. extra: 1985 / 1884,
  20741. bottom: 0.04
  20742. }
  20743. },
  20744. back: {
  20745. height: math.unit(5 + 4 / 12, "feet"),
  20746. weight: math.unit(120, "lb"),
  20747. name: "Back",
  20748. image: {
  20749. source: "./media/characters/luci/back.svg",
  20750. extra: 1892 / 1791,
  20751. bottom: 0.002
  20752. }
  20753. },
  20754. },
  20755. [
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(5 + 4 / 12, "feet"),
  20759. default: true
  20760. },
  20761. ]
  20762. ))
  20763. characterMakers.push(() => makeCharacter(
  20764. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20765. {
  20766. front: {
  20767. height: math.unit(1500, "feet"),
  20768. weight: math.unit(3.8e6, "tons"),
  20769. name: "Front",
  20770. image: {
  20771. source: "./media/characters/2th/front.svg",
  20772. extra: 3489 / 3350,
  20773. bottom: 0.1
  20774. }
  20775. },
  20776. foot: {
  20777. height: math.unit(461, "feet"),
  20778. name: "Foot",
  20779. image: {
  20780. source: "./media/characters/2th/foot.svg"
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "\"Micro\"",
  20787. height: math.unit(15 + 7 / 12, "feet")
  20788. },
  20789. {
  20790. name: "Normal",
  20791. height: math.unit(1500, "feet"),
  20792. default: true
  20793. },
  20794. {
  20795. name: "Macro",
  20796. height: math.unit(5000, "feet")
  20797. },
  20798. {
  20799. name: "Megamacro",
  20800. height: math.unit(15, "miles")
  20801. },
  20802. {
  20803. name: "Gigamacro",
  20804. height: math.unit(4000, "miles")
  20805. },
  20806. {
  20807. name: "Galactic",
  20808. height: math.unit(50, "AU")
  20809. },
  20810. ]
  20811. ))
  20812. characterMakers.push(() => makeCharacter(
  20813. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20814. {
  20815. front: {
  20816. height: math.unit(5 + 6 / 12, "feet"),
  20817. weight: math.unit(220, "lb"),
  20818. name: "Front",
  20819. image: {
  20820. source: "./media/characters/amethyst/front.svg",
  20821. extra: 2078 / 2040,
  20822. bottom: 0.045
  20823. }
  20824. },
  20825. back: {
  20826. height: math.unit(5 + 6 / 12, "feet"),
  20827. weight: math.unit(220, "lb"),
  20828. name: "Back",
  20829. image: {
  20830. source: "./media/characters/amethyst/back.svg",
  20831. extra: 2021 / 1989,
  20832. bottom: 0.02
  20833. }
  20834. },
  20835. },
  20836. [
  20837. {
  20838. name: "Normal",
  20839. height: math.unit(5 + 6 / 12, "feet"),
  20840. default: true
  20841. },
  20842. ]
  20843. ))
  20844. characterMakers.push(() => makeCharacter(
  20845. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20846. {
  20847. front: {
  20848. height: math.unit(4 + 11 / 12, "feet"),
  20849. weight: math.unit(120, "lb"),
  20850. name: "Front",
  20851. image: {
  20852. source: "./media/characters/yumi-akiyama/front.svg",
  20853. extra: 1327 / 1235,
  20854. bottom: 0.02
  20855. }
  20856. },
  20857. back: {
  20858. height: math.unit(4 + 11 / 12, "feet"),
  20859. weight: math.unit(120, "lb"),
  20860. name: "Back",
  20861. image: {
  20862. source: "./media/characters/yumi-akiyama/back.svg",
  20863. extra: 1287 / 1245,
  20864. bottom: 0.002
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Galactic",
  20871. height: math.unit(50, "galaxies"),
  20872. default: true
  20873. },
  20874. {
  20875. name: "Universal",
  20876. height: math.unit(100, "universes")
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20882. {
  20883. front: {
  20884. height: math.unit(8, "feet"),
  20885. weight: math.unit(500, "lb"),
  20886. name: "Front",
  20887. image: {
  20888. source: "./media/characters/rifter-yrmori/front.svg",
  20889. extra: 1180 / 1125,
  20890. bottom: 0.02
  20891. }
  20892. },
  20893. back: {
  20894. height: math.unit(8, "feet"),
  20895. weight: math.unit(500, "lb"),
  20896. name: "Back",
  20897. image: {
  20898. source: "./media/characters/rifter-yrmori/back.svg",
  20899. extra: 1190 / 1145,
  20900. bottom: 0.001
  20901. }
  20902. },
  20903. wings: {
  20904. height: math.unit(7.75, "feet"),
  20905. weight: math.unit(500, "lb"),
  20906. name: "Wings",
  20907. image: {
  20908. source: "./media/characters/rifter-yrmori/wings.svg",
  20909. extra: 1357 / 1285
  20910. }
  20911. },
  20912. maw: {
  20913. height: math.unit(0.8, "feet"),
  20914. name: "Maw",
  20915. image: {
  20916. source: "./media/characters/rifter-yrmori/maw.svg"
  20917. }
  20918. },
  20919. mawfront: {
  20920. height: math.unit(1.45, "feet"),
  20921. name: "Maw (Front)",
  20922. image: {
  20923. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20924. }
  20925. },
  20926. },
  20927. [
  20928. {
  20929. name: "Normal",
  20930. height: math.unit(8, "feet"),
  20931. default: true
  20932. },
  20933. {
  20934. name: "Macro",
  20935. height: math.unit(42, "meters")
  20936. },
  20937. ]
  20938. ))
  20939. characterMakers.push(() => makeCharacter(
  20940. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20941. {
  20942. were: {
  20943. height: math.unit(25 + 6 / 12, "feet"),
  20944. weight: math.unit(10000, "lb"),
  20945. name: "Were",
  20946. image: {
  20947. source: "./media/characters/tahajin/were.svg",
  20948. extra: 801 / 770,
  20949. bottom: 0.042
  20950. }
  20951. },
  20952. aquatic: {
  20953. height: math.unit(6 + 4 / 12, "feet"),
  20954. weight: math.unit(160, "lb"),
  20955. name: "Aquatic",
  20956. image: {
  20957. source: "./media/characters/tahajin/aquatic.svg",
  20958. extra: 572 / 542,
  20959. bottom: 0.04
  20960. }
  20961. },
  20962. chow: {
  20963. height: math.unit(8 + 11 / 12, "feet"),
  20964. weight: math.unit(450, "lb"),
  20965. name: "Chow",
  20966. image: {
  20967. source: "./media/characters/tahajin/chow.svg",
  20968. extra: 660 / 640,
  20969. bottom: 0.015
  20970. }
  20971. },
  20972. demiNaga: {
  20973. height: math.unit(6 + 8 / 12, "feet"),
  20974. weight: math.unit(300, "lb"),
  20975. name: "Demi Naga",
  20976. image: {
  20977. source: "./media/characters/tahajin/demi-naga.svg",
  20978. extra: 643 / 615,
  20979. bottom: 0.1
  20980. }
  20981. },
  20982. data: {
  20983. height: math.unit(5, "inches"),
  20984. weight: math.unit(0.1, "lb"),
  20985. name: "Data",
  20986. image: {
  20987. source: "./media/characters/tahajin/data.svg"
  20988. }
  20989. },
  20990. fluu: {
  20991. height: math.unit(5 + 7 / 12, "feet"),
  20992. weight: math.unit(140, "lb"),
  20993. name: "Fluu",
  20994. image: {
  20995. source: "./media/characters/tahajin/fluu.svg",
  20996. extra: 628 / 592,
  20997. bottom: 0.02
  20998. }
  20999. },
  21000. starWarrior: {
  21001. height: math.unit(4 + 5 / 12, "feet"),
  21002. weight: math.unit(50, "lb"),
  21003. name: "Star Warrior",
  21004. image: {
  21005. source: "./media/characters/tahajin/star-warrior.svg"
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(25 + 6 / 12, "feet"),
  21013. default: true
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(8, "feet"),
  21022. weight: math.unit(350, "lb"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/gabira/front.svg",
  21026. extra: 608 / 580,
  21027. bottom: 0.03
  21028. }
  21029. },
  21030. back: {
  21031. height: math.unit(8, "feet"),
  21032. weight: math.unit(350, "lb"),
  21033. name: "Back",
  21034. image: {
  21035. source: "./media/characters/gabira/back.svg",
  21036. extra: 608 / 580,
  21037. bottom: 0.03
  21038. }
  21039. },
  21040. },
  21041. [
  21042. {
  21043. name: "Normal",
  21044. height: math.unit(8, "feet"),
  21045. default: true
  21046. },
  21047. ]
  21048. ))
  21049. characterMakers.push(() => makeCharacter(
  21050. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21051. {
  21052. front: {
  21053. height: math.unit(5 + 3 / 12, "feet"),
  21054. weight: math.unit(137, "lb"),
  21055. name: "Front",
  21056. image: {
  21057. source: "./media/characters/sasha-katraine/front.svg",
  21058. bottom: 0.045
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Micro",
  21065. height: math.unit(5, "inches")
  21066. },
  21067. {
  21068. name: "Normal",
  21069. height: math.unit(5 + 3 / 12, "feet"),
  21070. default: true
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21076. {
  21077. side: {
  21078. height: math.unit(4, "inches"),
  21079. weight: math.unit(200, "grams"),
  21080. name: "Side",
  21081. image: {
  21082. source: "./media/characters/der/side.svg",
  21083. extra: 719 / 400,
  21084. bottom: 30.6 / 749.9187
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Micro",
  21091. height: math.unit(4, "inches"),
  21092. default: true
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21098. {
  21099. side: {
  21100. height: math.unit(30, "meters"),
  21101. weight: math.unit(700, "tonnes"),
  21102. name: "Side",
  21103. image: {
  21104. source: "./media/characters/fixerdragon/side.svg",
  21105. extra: (1293.0514 - 116.03) / 1106.86,
  21106. bottom: 116.03 / 1293.0514
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Planck",
  21113. height: math.unit(1.6e-35, "meters")
  21114. },
  21115. {
  21116. name: "Micro",
  21117. height: math.unit(0.4, "meters")
  21118. },
  21119. {
  21120. name: "Normal",
  21121. height: math.unit(30, "meters"),
  21122. default: true
  21123. },
  21124. {
  21125. name: "Megamacro",
  21126. height: math.unit(1.2, "megameters")
  21127. },
  21128. {
  21129. name: "Teramacro",
  21130. height: math.unit(130, "terameters")
  21131. },
  21132. {
  21133. name: "Yottamacro",
  21134. height: math.unit(6200, "yottameters")
  21135. },
  21136. ]
  21137. ));
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21140. {
  21141. front: {
  21142. height: math.unit(8, "feet"),
  21143. weight: math.unit(250, "lb"),
  21144. name: "Front",
  21145. image: {
  21146. source: "./media/characters/kite/front.svg",
  21147. extra: 2796 / 2659,
  21148. bottom: 0.002
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(8, "feet"),
  21156. default: true
  21157. },
  21158. {
  21159. name: "Macro",
  21160. height: math.unit(360, "feet")
  21161. },
  21162. {
  21163. name: "Megamacro",
  21164. height: math.unit(1500, "feet")
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(5 + 10 / 12, "feet"),
  21173. weight: math.unit(150, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/poojawa-vynar/front.svg",
  21177. extra: (1506.1547 - 55) / 1356.6,
  21178. bottom: 55 / 1506.1547
  21179. }
  21180. },
  21181. frontTailless: {
  21182. height: math.unit(5 + 10 / 12, "feet"),
  21183. weight: math.unit(150, "lb"),
  21184. name: "Front (Tailless)",
  21185. image: {
  21186. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21187. extra: (1506.1547 - 55) / 1356.6,
  21188. bottom: 55 / 1506.1547
  21189. }
  21190. },
  21191. },
  21192. [
  21193. {
  21194. name: "Normal",
  21195. height: math.unit(5 + 10 / 12, "feet"),
  21196. default: true
  21197. },
  21198. ]
  21199. ))
  21200. characterMakers.push(() => makeCharacter(
  21201. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21202. {
  21203. front: {
  21204. height: math.unit(293, "meters"),
  21205. weight: math.unit(70400, "tons"),
  21206. name: "Front",
  21207. image: {
  21208. source: "./media/characters/violette/front.svg",
  21209. extra: 1227 / 1180,
  21210. bottom: 0.005
  21211. }
  21212. },
  21213. back: {
  21214. height: math.unit(293, "meters"),
  21215. weight: math.unit(70400, "tons"),
  21216. name: "Back",
  21217. image: {
  21218. source: "./media/characters/violette/back.svg",
  21219. extra: 1227 / 1180,
  21220. bottom: 0.005
  21221. }
  21222. },
  21223. },
  21224. [
  21225. {
  21226. name: "Macro",
  21227. height: math.unit(293, "meters"),
  21228. default: true
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21234. {
  21235. front: {
  21236. height: math.unit(1050, "feet"),
  21237. weight: math.unit(200000, "tons"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/alessandra/front.svg",
  21241. extra: 960 / 912,
  21242. bottom: 0.06
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Macro",
  21249. height: math.unit(1050, "feet")
  21250. },
  21251. {
  21252. name: "Macro+",
  21253. height: math.unit(900, "meters"),
  21254. default: true
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21260. {
  21261. front: {
  21262. height: math.unit(5, "feet"),
  21263. weight: math.unit(187, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/person/front.svg",
  21267. extra: 3087 / 2945,
  21268. bottom: 91 / 3181
  21269. }
  21270. },
  21271. },
  21272. [
  21273. {
  21274. name: "Micro",
  21275. height: math.unit(3, "inches")
  21276. },
  21277. {
  21278. name: "Normal",
  21279. height: math.unit(5, "feet"),
  21280. default: true
  21281. },
  21282. {
  21283. name: "Macro",
  21284. height: math.unit(90, "feet")
  21285. },
  21286. {
  21287. name: "Max Size",
  21288. height: math.unit(280, "feet")
  21289. },
  21290. ]
  21291. ))
  21292. characterMakers.push(() => makeCharacter(
  21293. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21294. {
  21295. front: {
  21296. height: math.unit(4.5, "meters"),
  21297. weight: math.unit(3200, "lb"),
  21298. name: "Front",
  21299. image: {
  21300. source: "./media/characters/ty/front.svg",
  21301. extra: 1038 / 960,
  21302. bottom: 31.156 / 1068
  21303. }
  21304. },
  21305. back: {
  21306. height: math.unit(4.5, "meters"),
  21307. weight: math.unit(3200, "lb"),
  21308. name: "Back",
  21309. image: {
  21310. source: "./media/characters/ty/back.svg",
  21311. extra: 1044 / 966,
  21312. bottom: 7.48 / 1049
  21313. }
  21314. },
  21315. },
  21316. [
  21317. {
  21318. name: "Normal",
  21319. height: math.unit(4.5, "meters"),
  21320. default: true
  21321. },
  21322. ]
  21323. ))
  21324. characterMakers.push(() => makeCharacter(
  21325. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21326. {
  21327. front: {
  21328. height: math.unit(5 + 4 / 12, "feet"),
  21329. weight: math.unit(115, "lb"),
  21330. name: "Front",
  21331. image: {
  21332. source: "./media/characters/rocky/front.svg",
  21333. extra: 1012 / 975,
  21334. bottom: 54 / 1066
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "Normal",
  21341. height: math.unit(5 + 4 / 12, "feet"),
  21342. default: true
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21348. {
  21349. upright: {
  21350. height: math.unit(6, "meters"),
  21351. weight: math.unit(4000, "kg"),
  21352. name: "Upright",
  21353. image: {
  21354. source: "./media/characters/ruin/upright.svg",
  21355. extra: 668 / 661,
  21356. bottom: 42 / 799.8396
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Normal",
  21363. height: math.unit(6, "meters"),
  21364. default: true
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21370. {
  21371. front: {
  21372. height: math.unit(5, "feet"),
  21373. weight: math.unit(106, "lb"),
  21374. name: "Front",
  21375. image: {
  21376. source: "./media/characters/robin/front.svg",
  21377. extra: 862 / 799,
  21378. bottom: 42.4 / 914.8856
  21379. }
  21380. },
  21381. },
  21382. [
  21383. {
  21384. name: "Normal",
  21385. height: math.unit(5, "feet"),
  21386. default: true
  21387. },
  21388. ]
  21389. ))
  21390. characterMakers.push(() => makeCharacter(
  21391. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21392. {
  21393. side: {
  21394. height: math.unit(3, "feet"),
  21395. weight: math.unit(225, "lb"),
  21396. name: "Side",
  21397. image: {
  21398. source: "./media/characters/saian/side.svg",
  21399. extra: 566 / 356,
  21400. bottom: 79.7 / 643
  21401. }
  21402. },
  21403. maw: {
  21404. height: math.unit(2.85, "feet"),
  21405. name: "Maw",
  21406. image: {
  21407. source: "./media/characters/saian/maw.svg"
  21408. }
  21409. },
  21410. },
  21411. [
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(3, "feet"),
  21415. default: true
  21416. },
  21417. ]
  21418. ))
  21419. characterMakers.push(() => makeCharacter(
  21420. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21421. {
  21422. side: {
  21423. height: math.unit(8, "feet"),
  21424. weight: math.unit(300, "lb"),
  21425. name: "Side",
  21426. image: {
  21427. source: "./media/characters/equus-silvermane/side.svg",
  21428. extra: 2176 / 2050,
  21429. bottom: 65.7 / 2245
  21430. }
  21431. },
  21432. front: {
  21433. height: math.unit(8, "feet"),
  21434. weight: math.unit(300, "lb"),
  21435. name: "Front",
  21436. image: {
  21437. source: "./media/characters/equus-silvermane/front.svg",
  21438. extra: 4633 / 4400,
  21439. bottom: 71.3 / 4706.915
  21440. }
  21441. },
  21442. sideStepping: {
  21443. height: math.unit(8, "feet"),
  21444. weight: math.unit(300, "lb"),
  21445. name: "Side (Stepping)",
  21446. image: {
  21447. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21448. extra: 1968 / 1860,
  21449. bottom: 16.4 / 1989
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Normal",
  21456. height: math.unit(8, "feet")
  21457. },
  21458. {
  21459. name: "Minimacro",
  21460. height: math.unit(75, "feet"),
  21461. default: true
  21462. },
  21463. {
  21464. name: "Macro",
  21465. height: math.unit(150, "feet")
  21466. },
  21467. {
  21468. name: "Macro+",
  21469. height: math.unit(1000, "feet")
  21470. },
  21471. {
  21472. name: "Megamacro",
  21473. height: math.unit(1, "mile")
  21474. },
  21475. ]
  21476. ))
  21477. characterMakers.push(() => makeCharacter(
  21478. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21479. {
  21480. side: {
  21481. height: math.unit(20, "feet"),
  21482. weight: math.unit(30000, "kg"),
  21483. name: "Side",
  21484. image: {
  21485. source: "./media/characters/windar/side.svg",
  21486. extra: 1491 / 1248,
  21487. bottom: 82.56 / 1568
  21488. }
  21489. },
  21490. },
  21491. [
  21492. {
  21493. name: "Normal",
  21494. height: math.unit(20, "feet"),
  21495. default: true
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21501. {
  21502. side: {
  21503. height: math.unit(15.66, "feet"),
  21504. weight: math.unit(150, "lb"),
  21505. name: "Side",
  21506. image: {
  21507. source: "./media/characters/melody/side.svg",
  21508. extra: 1097 / 944,
  21509. bottom: 11.8 / 1109
  21510. }
  21511. },
  21512. sideOutfit: {
  21513. height: math.unit(15.66, "feet"),
  21514. weight: math.unit(150, "lb"),
  21515. name: "Side (Outfit)",
  21516. image: {
  21517. source: "./media/characters/melody/side-outfit.svg",
  21518. extra: 1097 / 944,
  21519. bottom: 11.8 / 1109
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(15.66, "feet"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21533. {
  21534. front: {
  21535. height: math.unit(8, "feet"),
  21536. weight: math.unit(325, "lb"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/windera/front.svg",
  21540. extra: 3180 / 2845,
  21541. bottom: 178 / 3365
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(8, "feet"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21555. {
  21556. front: {
  21557. height: math.unit(28.75, "feet"),
  21558. weight: math.unit(2000, "kg"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/sonear/front.svg",
  21562. extra: 1041.1 / 964.9,
  21563. bottom: 53.7 / 1096.6
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Normal",
  21570. height: math.unit(28.75, "feet"),
  21571. default: true
  21572. },
  21573. ]
  21574. ))
  21575. characterMakers.push(() => makeCharacter(
  21576. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21577. {
  21578. side: {
  21579. height: math.unit(25.5, "feet"),
  21580. weight: math.unit(23000, "kg"),
  21581. name: "Side",
  21582. image: {
  21583. source: "./media/characters/kanara/side.svg"
  21584. }
  21585. },
  21586. },
  21587. [
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(25.5, "feet"),
  21591. default: true
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21597. {
  21598. side: {
  21599. height: math.unit(10, "feet"),
  21600. weight: math.unit(1000, "kg"),
  21601. name: "Side",
  21602. image: {
  21603. source: "./media/characters/ereus/side.svg",
  21604. extra: 1157 / 959,
  21605. bottom: 153 / 1312.5
  21606. }
  21607. },
  21608. },
  21609. [
  21610. {
  21611. name: "Normal",
  21612. height: math.unit(10, "feet"),
  21613. default: true
  21614. },
  21615. ]
  21616. ))
  21617. characterMakers.push(() => makeCharacter(
  21618. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21619. {
  21620. side: {
  21621. height: math.unit(4.5, "feet"),
  21622. weight: math.unit(500, "lb"),
  21623. name: "Side",
  21624. image: {
  21625. source: "./media/characters/e-ter/side.svg",
  21626. extra: 1550 / 1248,
  21627. bottom: 146 / 1694
  21628. }
  21629. },
  21630. },
  21631. [
  21632. {
  21633. name: "Normal",
  21634. height: math.unit(4.5, "feet"),
  21635. default: true
  21636. },
  21637. ]
  21638. ))
  21639. characterMakers.push(() => makeCharacter(
  21640. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21641. {
  21642. side: {
  21643. height: math.unit(9.7, "feet"),
  21644. weight: math.unit(4000, "kg"),
  21645. name: "Side",
  21646. image: {
  21647. source: "./media/characters/yamie/side.svg"
  21648. }
  21649. },
  21650. },
  21651. [
  21652. {
  21653. name: "Normal",
  21654. height: math.unit(9.7, "feet"),
  21655. default: true
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21661. {
  21662. front: {
  21663. height: math.unit(50, "feet"),
  21664. weight: math.unit(50000, "kg"),
  21665. name: "Front",
  21666. image: {
  21667. source: "./media/characters/anders/front.svg",
  21668. extra: 570 / 539,
  21669. bottom: 14.7 / 586.7
  21670. }
  21671. },
  21672. },
  21673. [
  21674. {
  21675. name: "Large",
  21676. height: math.unit(50, "feet")
  21677. },
  21678. {
  21679. name: "Macro",
  21680. height: math.unit(2000, "feet"),
  21681. default: true
  21682. },
  21683. {
  21684. name: "Megamacro",
  21685. height: math.unit(12, "miles")
  21686. },
  21687. ]
  21688. ))
  21689. characterMakers.push(() => makeCharacter(
  21690. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21691. {
  21692. front: {
  21693. height: math.unit(7 + 2 / 12, "feet"),
  21694. weight: math.unit(300, "lb"),
  21695. name: "Front",
  21696. image: {
  21697. source: "./media/characters/reban/front.svg",
  21698. extra: 516 / 487,
  21699. bottom: 42.82 / 558.356
  21700. }
  21701. },
  21702. dick: {
  21703. height: math.unit(7 / 5, "feet"),
  21704. name: "Dick",
  21705. image: {
  21706. source: "./media/characters/reban/dick.svg"
  21707. }
  21708. },
  21709. },
  21710. [
  21711. {
  21712. name: "Natural Height",
  21713. height: math.unit(7 + 2 / 12, "feet")
  21714. },
  21715. {
  21716. name: "Macro",
  21717. height: math.unit(500, "feet"),
  21718. default: true
  21719. },
  21720. {
  21721. name: "Canon Height",
  21722. height: math.unit(50, "AU")
  21723. },
  21724. ]
  21725. ))
  21726. characterMakers.push(() => makeCharacter(
  21727. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21728. {
  21729. front: {
  21730. height: math.unit(6, "feet"),
  21731. weight: math.unit(150, "lb"),
  21732. name: "Front",
  21733. image: {
  21734. source: "./media/characters/terrance-keayes/front.svg",
  21735. extra: 1.005,
  21736. bottom: 151 / 1615
  21737. }
  21738. },
  21739. side: {
  21740. height: math.unit(6, "feet"),
  21741. weight: math.unit(150, "lb"),
  21742. name: "Side",
  21743. image: {
  21744. source: "./media/characters/terrance-keayes/side.svg",
  21745. extra: 1.005,
  21746. bottom: 129.4 / 1544
  21747. }
  21748. },
  21749. back: {
  21750. height: math.unit(6, "feet"),
  21751. weight: math.unit(150, "lb"),
  21752. name: "Back",
  21753. image: {
  21754. source: "./media/characters/terrance-keayes/back.svg",
  21755. extra: 1.005,
  21756. bottom: 58.4 / 1557.3
  21757. }
  21758. },
  21759. dick: {
  21760. height: math.unit(6 * 0.208, "feet"),
  21761. name: "Dick",
  21762. image: {
  21763. source: "./media/characters/terrance-keayes/dick.svg"
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Canon Height",
  21770. height: math.unit(35, "miles"),
  21771. default: true
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21777. {
  21778. front: {
  21779. height: math.unit(6, "feet"),
  21780. weight: math.unit(150, "lb"),
  21781. name: "Front",
  21782. image: {
  21783. source: "./media/characters/ofelia/front.svg",
  21784. extra: 546 / 541,
  21785. bottom: 39 / 583
  21786. }
  21787. },
  21788. back: {
  21789. height: math.unit(6, "feet"),
  21790. weight: math.unit(150, "lb"),
  21791. name: "Back",
  21792. image: {
  21793. source: "./media/characters/ofelia/back.svg",
  21794. extra: 564 / 559.5,
  21795. bottom: 8.69 / 573.02
  21796. }
  21797. },
  21798. maw: {
  21799. height: math.unit(1, "feet"),
  21800. name: "Maw",
  21801. image: {
  21802. source: "./media/characters/ofelia/maw.svg"
  21803. }
  21804. },
  21805. foot: {
  21806. height: math.unit(1.949, "feet"),
  21807. name: "Foot",
  21808. image: {
  21809. source: "./media/characters/ofelia/foot.svg"
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Canon Height",
  21816. height: math.unit(2000, "miles"),
  21817. default: true
  21818. },
  21819. ]
  21820. ))
  21821. characterMakers.push(() => makeCharacter(
  21822. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21823. {
  21824. front: {
  21825. height: math.unit(6, "feet"),
  21826. weight: math.unit(150, "lb"),
  21827. name: "Front",
  21828. image: {
  21829. source: "./media/characters/samuel/front.svg",
  21830. extra: 265 / 258,
  21831. bottom: 2 / 266.1566
  21832. }
  21833. },
  21834. },
  21835. [
  21836. {
  21837. name: "Macro",
  21838. height: math.unit(100, "feet"),
  21839. default: true
  21840. },
  21841. {
  21842. name: "Full Size",
  21843. height: math.unit(1000, "miles")
  21844. },
  21845. ]
  21846. ))
  21847. characterMakers.push(() => makeCharacter(
  21848. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21849. {
  21850. front: {
  21851. height: math.unit(6, "feet"),
  21852. weight: math.unit(300, "lb"),
  21853. name: "Front",
  21854. image: {
  21855. source: "./media/characters/beishir-kiel/front.svg",
  21856. extra: 569 / 547,
  21857. bottom: 41.9 / 609
  21858. }
  21859. },
  21860. maw: {
  21861. height: math.unit(6 * 0.202, "feet"),
  21862. name: "Maw",
  21863. image: {
  21864. source: "./media/characters/beishir-kiel/maw.svg"
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(300, "feet"),
  21872. default: true
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21878. {
  21879. front: {
  21880. height: math.unit(5 + 8 / 12, "feet"),
  21881. weight: math.unit(120, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/logan-grey/front.svg",
  21885. extra: 2539 / 2393,
  21886. bottom: 97.6 / 2636.37
  21887. }
  21888. },
  21889. frontAlt: {
  21890. height: math.unit(5 + 8 / 12, "feet"),
  21891. weight: math.unit(120, "lb"),
  21892. name: "Front (Alt)",
  21893. image: {
  21894. source: "./media/characters/logan-grey/front-alt.svg",
  21895. extra: 958 / 893,
  21896. bottom: 15 / 970.768
  21897. }
  21898. },
  21899. back: {
  21900. height: math.unit(5 + 8 / 12, "feet"),
  21901. weight: math.unit(120, "lb"),
  21902. name: "Back",
  21903. image: {
  21904. source: "./media/characters/logan-grey/back.svg",
  21905. extra: 958 / 893,
  21906. bottom: 2.1881 / 970.9788
  21907. }
  21908. },
  21909. dick: {
  21910. height: math.unit(1.437, "feet"),
  21911. name: "Dick",
  21912. image: {
  21913. source: "./media/characters/logan-grey/dick.svg"
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Normal",
  21920. height: math.unit(5 + 8 / 12, "feet")
  21921. },
  21922. {
  21923. name: "The 500 Foot Femboy",
  21924. height: math.unit(500, "feet"),
  21925. default: true
  21926. },
  21927. {
  21928. name: "Megmacro",
  21929. height: math.unit(20, "miles")
  21930. },
  21931. ]
  21932. ))
  21933. characterMakers.push(() => makeCharacter(
  21934. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21935. {
  21936. front: {
  21937. height: math.unit(8 + 2 / 12, "feet"),
  21938. weight: math.unit(275, "lb"),
  21939. name: "Front",
  21940. image: {
  21941. source: "./media/characters/draganta/front.svg",
  21942. extra: 1177 / 1135,
  21943. bottom: 33.46 / 1212.1
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(8 + 6 / 12, "feet"),
  21951. default: true
  21952. },
  21953. {
  21954. name: "Macro",
  21955. height: math.unit(150, "feet")
  21956. },
  21957. {
  21958. name: "Megamacro",
  21959. height: math.unit(1000, "miles")
  21960. },
  21961. ]
  21962. ))
  21963. characterMakers.push(() => makeCharacter(
  21964. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21965. {
  21966. front: {
  21967. height: math.unit(1.72, "m"),
  21968. weight: math.unit(80, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/voski/front.svg",
  21972. extra: 2076.22 / 2022.4,
  21973. bottom: 102.7 / 2177.3866
  21974. }
  21975. },
  21976. frontNsfw: {
  21977. height: math.unit(1.72, "m"),
  21978. weight: math.unit(80, "lb"),
  21979. name: "Front (NSFW)",
  21980. image: {
  21981. source: "./media/characters/voski/front-nsfw.svg",
  21982. extra: 2076.22 / 2022.4,
  21983. bottom: 102.7 / 2177.3866
  21984. }
  21985. },
  21986. back: {
  21987. height: math.unit(1.72, "m"),
  21988. weight: math.unit(80, "lb"),
  21989. name: "Back",
  21990. image: {
  21991. source: "./media/characters/voski/back.svg",
  21992. extra: 2104 / 2051,
  21993. bottom: 10.45 / 2113.63
  21994. }
  21995. },
  21996. },
  21997. [
  21998. {
  21999. name: "Normal",
  22000. height: math.unit(1.72, "m")
  22001. },
  22002. {
  22003. name: "Macro",
  22004. height: math.unit(55, "m"),
  22005. default: true
  22006. },
  22007. {
  22008. name: "Macro+",
  22009. height: math.unit(300, "m")
  22010. },
  22011. {
  22012. name: "Macro++",
  22013. height: math.unit(700, "m")
  22014. },
  22015. {
  22016. name: "Macro+++",
  22017. height: math.unit(4500, "m")
  22018. },
  22019. {
  22020. name: "Macro++++",
  22021. height: math.unit(45, "km")
  22022. },
  22023. {
  22024. name: "Macro+++++",
  22025. height: math.unit(1220, "km")
  22026. },
  22027. ]
  22028. ))
  22029. characterMakers.push(() => makeCharacter(
  22030. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22031. {
  22032. front: {
  22033. height: math.unit(2.3, "m"),
  22034. weight: math.unit(304, "kg"),
  22035. name: "Front",
  22036. image: {
  22037. source: "./media/characters/icowom-lee/front.svg",
  22038. extra: 985 / 955,
  22039. bottom: 25.4 / 1012
  22040. }
  22041. },
  22042. fronttentacles: {
  22043. height: math.unit(2.3, "m"),
  22044. weight: math.unit(304, "kg"),
  22045. name: "Front-tentacles",
  22046. image: {
  22047. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22048. extra: 985 / 955,
  22049. bottom: 25.4 / 1012
  22050. }
  22051. },
  22052. back: {
  22053. height: math.unit(2.3, "m"),
  22054. weight: math.unit(304, "kg"),
  22055. name: "Back",
  22056. image: {
  22057. source: "./media/characters/icowom-lee/back.svg",
  22058. extra: 975 / 954,
  22059. bottom: 9.5 / 985
  22060. }
  22061. },
  22062. backtentacles: {
  22063. height: math.unit(2.3, "m"),
  22064. weight: math.unit(304, "kg"),
  22065. name: "Back-tentacles",
  22066. image: {
  22067. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22068. extra: 975 / 954,
  22069. bottom: 9.5 / 985
  22070. }
  22071. },
  22072. frontDressed: {
  22073. height: math.unit(2.3, "m"),
  22074. weight: math.unit(304, "kg"),
  22075. name: "Front (Dressed)",
  22076. image: {
  22077. source: "./media/characters/icowom-lee/front-dressed.svg",
  22078. extra: 3076 / 2933,
  22079. bottom: 51.4 / 3125.1889
  22080. }
  22081. },
  22082. rump: {
  22083. height: math.unit(0.776, "meters"),
  22084. name: "Rump",
  22085. image: {
  22086. source: "./media/characters/icowom-lee/rump.svg"
  22087. }
  22088. },
  22089. genitals: {
  22090. height: math.unit(0.78, "meters"),
  22091. name: "Genitals",
  22092. image: {
  22093. source: "./media/characters/icowom-lee/genitals.svg"
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(2.3, "meters"),
  22101. default: true
  22102. },
  22103. {
  22104. name: "Macro",
  22105. height: math.unit(94, "meters"),
  22106. default: true
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(22, "meters"),
  22115. weight: math.unit(21000, "kg"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/shock-diamond/front.svg",
  22119. extra: 2204 / 2053,
  22120. bottom: 65 / 2239.47
  22121. }
  22122. },
  22123. frontNude: {
  22124. height: math.unit(22, "meters"),
  22125. weight: math.unit(21000, "kg"),
  22126. name: "Front (Nude)",
  22127. image: {
  22128. source: "./media/characters/shock-diamond/front-nude.svg",
  22129. extra: 2514 / 2285,
  22130. bottom: 13 / 2527.56
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Normal",
  22137. height: math.unit(3, "meters")
  22138. },
  22139. {
  22140. name: "Macro",
  22141. height: math.unit(22, "meters"),
  22142. default: true
  22143. },
  22144. ]
  22145. ))
  22146. characterMakers.push(() => makeCharacter(
  22147. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22148. {
  22149. front: {
  22150. height: math.unit(5 + 4 / 12, "feet"),
  22151. weight: math.unit(120, "lb"),
  22152. name: "Front",
  22153. image: {
  22154. source: "./media/characters/rory/front.svg",
  22155. extra: 589 / 556,
  22156. bottom: 45.7 / 635.76
  22157. }
  22158. },
  22159. frontNude: {
  22160. height: math.unit(5 + 4 / 12, "feet"),
  22161. weight: math.unit(120, "lb"),
  22162. name: "Front (Nude)",
  22163. image: {
  22164. source: "./media/characters/rory/front-nude.svg",
  22165. extra: 589 / 556,
  22166. bottom: 45.7 / 635.76
  22167. }
  22168. },
  22169. side: {
  22170. height: math.unit(5 + 4 / 12, "feet"),
  22171. weight: math.unit(120, "lb"),
  22172. name: "Side",
  22173. image: {
  22174. source: "./media/characters/rory/side.svg",
  22175. extra: 597 / 564,
  22176. bottom: 55 / 653
  22177. }
  22178. },
  22179. back: {
  22180. height: math.unit(5 + 4 / 12, "feet"),
  22181. weight: math.unit(120, "lb"),
  22182. name: "Back",
  22183. image: {
  22184. source: "./media/characters/rory/back.svg",
  22185. extra: 620 / 585,
  22186. bottom: 8.86 / 630.43
  22187. }
  22188. },
  22189. dick: {
  22190. height: math.unit(0.86, "feet"),
  22191. name: "Dick",
  22192. image: {
  22193. source: "./media/characters/rory/dick.svg"
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Normal",
  22200. height: math.unit(5 + 4 / 12, "feet"),
  22201. default: true
  22202. },
  22203. {
  22204. name: "Macro",
  22205. height: math.unit(100, "feet")
  22206. },
  22207. {
  22208. name: "Macro+",
  22209. height: math.unit(140, "feet")
  22210. },
  22211. {
  22212. name: "Macro++",
  22213. height: math.unit(300, "feet")
  22214. },
  22215. ]
  22216. ))
  22217. characterMakers.push(() => makeCharacter(
  22218. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22219. {
  22220. front: {
  22221. height: math.unit(5 + 9 / 12, "feet"),
  22222. weight: math.unit(190, "lb"),
  22223. name: "Front",
  22224. image: {
  22225. source: "./media/characters/sprisk/front.svg",
  22226. extra: 1225 / 1180,
  22227. bottom: 42.7 / 1266.4
  22228. }
  22229. },
  22230. frontNsfw: {
  22231. height: math.unit(5 + 9 / 12, "feet"),
  22232. weight: math.unit(190, "lb"),
  22233. name: "Front (NSFW)",
  22234. image: {
  22235. source: "./media/characters/sprisk/front-nsfw.svg",
  22236. extra: 1225 / 1180,
  22237. bottom: 42.7 / 1266.4
  22238. }
  22239. },
  22240. back: {
  22241. height: math.unit(5 + 9 / 12, "feet"),
  22242. weight: math.unit(190, "lb"),
  22243. name: "Back",
  22244. image: {
  22245. source: "./media/characters/sprisk/back.svg",
  22246. extra: 1247 / 1200,
  22247. bottom: 5.6 / 1253.04
  22248. }
  22249. },
  22250. },
  22251. [
  22252. {
  22253. name: "Tiny",
  22254. height: math.unit(2, "inches")
  22255. },
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(5 + 9 / 12, "feet"),
  22259. default: true
  22260. },
  22261. {
  22262. name: "Mini Macro",
  22263. height: math.unit(18, "feet")
  22264. },
  22265. {
  22266. name: "Macro",
  22267. height: math.unit(100, "feet")
  22268. },
  22269. {
  22270. name: "MACRO",
  22271. height: math.unit(50, "miles")
  22272. },
  22273. {
  22274. name: "M A C R O",
  22275. height: math.unit(300, "miles")
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22281. {
  22282. side: {
  22283. height: math.unit(15.6, "meters"),
  22284. weight: math.unit(700000, "kg"),
  22285. name: "Side",
  22286. image: {
  22287. source: "./media/characters/bunsen/side.svg",
  22288. extra: 1644 / 358
  22289. }
  22290. },
  22291. foot: {
  22292. height: math.unit(1.611 * 1644 / 358, "meter"),
  22293. name: "Foot",
  22294. image: {
  22295. source: "./media/characters/bunsen/foot.svg"
  22296. }
  22297. },
  22298. },
  22299. [
  22300. {
  22301. name: "Small",
  22302. height: math.unit(10, "feet")
  22303. },
  22304. {
  22305. name: "Normal",
  22306. height: math.unit(15.6, "meters"),
  22307. default: true
  22308. },
  22309. ]
  22310. ))
  22311. characterMakers.push(() => makeCharacter(
  22312. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22313. {
  22314. front: {
  22315. height: math.unit(4 + 11 / 12, "feet"),
  22316. weight: math.unit(140, "lb"),
  22317. name: "Front",
  22318. image: {
  22319. source: "./media/characters/sesh/front.svg",
  22320. extra: 3420 / 3231,
  22321. bottom: 72 / 3949.5
  22322. }
  22323. },
  22324. },
  22325. [
  22326. {
  22327. name: "Normal",
  22328. height: math.unit(4 + 11 / 12, "feet")
  22329. },
  22330. {
  22331. name: "Grown",
  22332. height: math.unit(15, "feet"),
  22333. default: true
  22334. },
  22335. {
  22336. name: "Macro",
  22337. height: math.unit(1500, "feet")
  22338. },
  22339. {
  22340. name: "Megamacro",
  22341. height: math.unit(30, "miles")
  22342. },
  22343. {
  22344. name: "Continental",
  22345. height: math.unit(3000, "miles")
  22346. },
  22347. {
  22348. name: "Gravity Mass",
  22349. height: math.unit(300000, "miles")
  22350. },
  22351. {
  22352. name: "Planet Buster",
  22353. height: math.unit(30000000, "miles")
  22354. },
  22355. {
  22356. name: "Big",
  22357. height: math.unit(3000000000, "miles")
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22363. {
  22364. front: {
  22365. height: math.unit(9, "feet"),
  22366. weight: math.unit(350, "lb"),
  22367. name: "Front",
  22368. image: {
  22369. source: "./media/characters/pepper/front.svg",
  22370. extra: 1448 / 1312,
  22371. bottom: 9.4 / 1457.88
  22372. }
  22373. },
  22374. back: {
  22375. height: math.unit(9, "feet"),
  22376. weight: math.unit(350, "lb"),
  22377. name: "Back",
  22378. image: {
  22379. source: "./media/characters/pepper/back.svg",
  22380. extra: 1423 / 1300,
  22381. bottom: 4.6 / 1429
  22382. }
  22383. },
  22384. maw: {
  22385. height: math.unit(0.932, "feet"),
  22386. name: "Maw",
  22387. image: {
  22388. source: "./media/characters/pepper/maw.svg"
  22389. }
  22390. },
  22391. },
  22392. [
  22393. {
  22394. name: "Normal",
  22395. height: math.unit(9, "feet"),
  22396. default: true
  22397. },
  22398. ]
  22399. ))
  22400. characterMakers.push(() => makeCharacter(
  22401. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22402. {
  22403. front: {
  22404. height: math.unit(6, "feet"),
  22405. weight: math.unit(150, "lb"),
  22406. name: "Front",
  22407. image: {
  22408. source: "./media/characters/maelstrom/front.svg",
  22409. extra: 2100 / 1883,
  22410. bottom: 94 / 2196.7
  22411. }
  22412. },
  22413. },
  22414. [
  22415. {
  22416. name: "Less Kaiju",
  22417. height: math.unit(200, "feet")
  22418. },
  22419. {
  22420. name: "Kaiju",
  22421. height: math.unit(400, "feet"),
  22422. default: true
  22423. },
  22424. {
  22425. name: "Kaiju-er",
  22426. height: math.unit(600, "feet")
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(6 + 5 / 12, "feet"),
  22435. weight: math.unit(180, "lb"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/lexir/front.svg",
  22439. extra: 180 / 172,
  22440. bottom: 12 / 192
  22441. }
  22442. },
  22443. back: {
  22444. height: math.unit(6 + 5 / 12, "feet"),
  22445. weight: math.unit(180, "lb"),
  22446. name: "Back",
  22447. image: {
  22448. source: "./media/characters/lexir/back.svg",
  22449. extra: 183.84 / 175.5,
  22450. bottom: 3.1 / 187
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Very Smal",
  22457. height: math.unit(1, "nm")
  22458. },
  22459. {
  22460. name: "Normal",
  22461. height: math.unit(6 + 5 / 12, "feet"),
  22462. default: true
  22463. },
  22464. {
  22465. name: "Macro",
  22466. height: math.unit(1, "mile")
  22467. },
  22468. {
  22469. name: "Megamacro",
  22470. height: math.unit(50, "miles")
  22471. },
  22472. ]
  22473. ))
  22474. characterMakers.push(() => makeCharacter(
  22475. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22476. {
  22477. front: {
  22478. height: math.unit(1.5, "meters"),
  22479. weight: math.unit(100, "lb"),
  22480. name: "Front",
  22481. image: {
  22482. source: "./media/characters/maksio/front.svg",
  22483. extra: 1549 / 1531,
  22484. bottom: 123.7 / 1674.5429
  22485. }
  22486. },
  22487. back: {
  22488. height: math.unit(1.5, "meters"),
  22489. weight: math.unit(100, "lb"),
  22490. name: "Back",
  22491. image: {
  22492. source: "./media/characters/maksio/back.svg",
  22493. extra: 1541 / 1509,
  22494. bottom: 97 / 1639
  22495. }
  22496. },
  22497. hand: {
  22498. height: math.unit(0.621, "feet"),
  22499. name: "Hand",
  22500. image: {
  22501. source: "./media/characters/maksio/hand.svg"
  22502. }
  22503. },
  22504. foot: {
  22505. height: math.unit(1.611, "feet"),
  22506. name: "Foot",
  22507. image: {
  22508. source: "./media/characters/maksio/foot.svg"
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Shrunken",
  22515. height: math.unit(10, "cm")
  22516. },
  22517. {
  22518. name: "Normal",
  22519. height: math.unit(150, "cm"),
  22520. default: true
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22526. {
  22527. front: {
  22528. height: math.unit(100, "feet"),
  22529. name: "Front",
  22530. image: {
  22531. source: "./media/characters/erza-bear/front.svg",
  22532. extra: 2449 / 2390,
  22533. bottom: 46 / 2494
  22534. }
  22535. },
  22536. back: {
  22537. height: math.unit(100, "feet"),
  22538. name: "Back",
  22539. image: {
  22540. source: "./media/characters/erza-bear/back.svg",
  22541. extra: 2489 / 2430,
  22542. bottom: 85.4 / 2480
  22543. }
  22544. },
  22545. tail: {
  22546. height: math.unit(42, "feet"),
  22547. name: "Tail",
  22548. image: {
  22549. source: "./media/characters/erza-bear/tail.svg"
  22550. }
  22551. },
  22552. tongue: {
  22553. height: math.unit(8, "feet"),
  22554. name: "Tongue",
  22555. image: {
  22556. source: "./media/characters/erza-bear/tongue.svg"
  22557. }
  22558. },
  22559. dick: {
  22560. height: math.unit(10.5, "feet"),
  22561. name: "Dick",
  22562. image: {
  22563. source: "./media/characters/erza-bear/dick.svg"
  22564. }
  22565. },
  22566. dickVertical: {
  22567. height: math.unit(16.9, "feet"),
  22568. name: "Dick (Vertical)",
  22569. image: {
  22570. source: "./media/characters/erza-bear/dick-vertical.svg"
  22571. }
  22572. },
  22573. },
  22574. [
  22575. {
  22576. name: "Macro",
  22577. height: math.unit(100, "feet"),
  22578. default: true
  22579. },
  22580. ]
  22581. ))
  22582. characterMakers.push(() => makeCharacter(
  22583. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22584. {
  22585. front: {
  22586. height: math.unit(172, "cm"),
  22587. weight: math.unit(73, "kg"),
  22588. name: "Front",
  22589. image: {
  22590. source: "./media/characters/violet-flor/front.svg",
  22591. extra: 1530 / 1442,
  22592. bottom: 61.9 / 1588.8
  22593. }
  22594. },
  22595. back: {
  22596. height: math.unit(180, "cm"),
  22597. weight: math.unit(73, "kg"),
  22598. name: "Back",
  22599. image: {
  22600. source: "./media/characters/violet-flor/back.svg",
  22601. extra: 1692 / 1630,
  22602. bottom: 20 / 1712
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Normal",
  22609. height: math.unit(172, "cm"),
  22610. default: true
  22611. },
  22612. ]
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22616. {
  22617. front: {
  22618. height: math.unit(6, "feet"),
  22619. weight: math.unit(220, "lb"),
  22620. name: "Front",
  22621. image: {
  22622. source: "./media/characters/lynn-rhea/front.svg",
  22623. extra: 310 / 273
  22624. }
  22625. },
  22626. back: {
  22627. height: math.unit(6, "feet"),
  22628. weight: math.unit(220, "lb"),
  22629. name: "Back",
  22630. image: {
  22631. source: "./media/characters/lynn-rhea/back.svg",
  22632. extra: 310 / 273
  22633. }
  22634. },
  22635. dicks: {
  22636. height: math.unit(0.9, "feet"),
  22637. name: "Dicks",
  22638. image: {
  22639. source: "./media/characters/lynn-rhea/dicks.svg"
  22640. }
  22641. },
  22642. slit: {
  22643. height: math.unit(0.4, "feet"),
  22644. name: "Slit",
  22645. image: {
  22646. source: "./media/characters/lynn-rhea/slit.svg"
  22647. }
  22648. },
  22649. },
  22650. [
  22651. {
  22652. name: "Micro",
  22653. height: math.unit(1, "inch")
  22654. },
  22655. {
  22656. name: "Macro",
  22657. height: math.unit(60, "feet"),
  22658. default: true
  22659. },
  22660. {
  22661. name: "Megamacro",
  22662. height: math.unit(2, "miles")
  22663. },
  22664. {
  22665. name: "Gigamacro",
  22666. height: math.unit(3, "earths")
  22667. },
  22668. {
  22669. name: "Galactic",
  22670. height: math.unit(0.8, "galaxies")
  22671. },
  22672. ]
  22673. ))
  22674. characterMakers.push(() => makeCharacter(
  22675. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22676. {
  22677. front: {
  22678. height: math.unit(1600, "feet"),
  22679. weight: math.unit(85758785169, "kg"),
  22680. name: "Front",
  22681. image: {
  22682. source: "./media/characters/valathos/front.svg",
  22683. extra: 1451 / 1339
  22684. }
  22685. },
  22686. },
  22687. [
  22688. {
  22689. name: "Macro",
  22690. height: math.unit(1600, "feet"),
  22691. default: true
  22692. },
  22693. ]
  22694. ))
  22695. characterMakers.push(() => makeCharacter(
  22696. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22697. {
  22698. front: {
  22699. height: math.unit(7 + 5 / 12, "feet"),
  22700. weight: math.unit(300, "lb"),
  22701. name: "Front",
  22702. image: {
  22703. source: "./media/characters/azula/front.svg",
  22704. extra: 3208 / 2880,
  22705. bottom: 80.2 / 3277
  22706. }
  22707. },
  22708. back: {
  22709. height: math.unit(7 + 5 / 12, "feet"),
  22710. weight: math.unit(300, "lb"),
  22711. name: "Back",
  22712. image: {
  22713. source: "./media/characters/azula/back.svg",
  22714. extra: 3169 / 2822,
  22715. bottom: 150.6 / 3321
  22716. }
  22717. },
  22718. },
  22719. [
  22720. {
  22721. name: "Normal",
  22722. height: math.unit(7 + 5 / 12, "feet"),
  22723. default: true
  22724. },
  22725. {
  22726. name: "Big",
  22727. height: math.unit(20, "feet")
  22728. },
  22729. ]
  22730. ))
  22731. characterMakers.push(() => makeCharacter(
  22732. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22733. {
  22734. front: {
  22735. height: math.unit(5 + 1 / 12, "feet"),
  22736. weight: math.unit(110, "lb"),
  22737. name: "Front",
  22738. image: {
  22739. source: "./media/characters/rupert/front.svg",
  22740. extra: 1549 / 1495,
  22741. bottom: 54.2 / 1604.4
  22742. }
  22743. },
  22744. },
  22745. [
  22746. {
  22747. name: "Normal",
  22748. height: math.unit(5 + 1 / 12, "feet"),
  22749. default: true
  22750. },
  22751. ]
  22752. ))
  22753. characterMakers.push(() => makeCharacter(
  22754. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22755. {
  22756. front: {
  22757. height: math.unit(8 + 4 / 12, "feet"),
  22758. weight: math.unit(350, "lb"),
  22759. name: "Front",
  22760. image: {
  22761. source: "./media/characters/sheera-castellar/front.svg",
  22762. extra: 1957 / 1894,
  22763. bottom: 26.97 / 1975.017
  22764. }
  22765. },
  22766. side: {
  22767. height: math.unit(8 + 4 / 12, "feet"),
  22768. weight: math.unit(350, "lb"),
  22769. name: "Side",
  22770. image: {
  22771. source: "./media/characters/sheera-castellar/side.svg",
  22772. extra: 1957 / 1894
  22773. }
  22774. },
  22775. back: {
  22776. height: math.unit(8 + 4 / 12, "feet"),
  22777. weight: math.unit(350, "lb"),
  22778. name: "Back",
  22779. image: {
  22780. source: "./media/characters/sheera-castellar/back.svg",
  22781. extra: 1957 / 1894
  22782. }
  22783. },
  22784. angled: {
  22785. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22786. weight: math.unit(350, "lb"),
  22787. name: "Angled",
  22788. image: {
  22789. source: "./media/characters/sheera-castellar/angled.svg",
  22790. extra: 1807 / 1707,
  22791. bottom: 68 / 1875
  22792. }
  22793. },
  22794. genitals: {
  22795. height: math.unit(2.2, "feet"),
  22796. name: "Genitals",
  22797. image: {
  22798. source: "./media/characters/sheera-castellar/genitals.svg"
  22799. }
  22800. },
  22801. taur: {
  22802. height: math.unit(10 + 6/12, "feet"),
  22803. name: "Taur",
  22804. image: {
  22805. source: "./media/characters/sheera-castellar/taur.svg",
  22806. extra: 2017/1909,
  22807. bottom: 185/2202
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(8 + 4 / 12, "feet")
  22815. },
  22816. {
  22817. name: "Macro",
  22818. height: math.unit(150, "feet"),
  22819. default: true
  22820. },
  22821. {
  22822. name: "Macro+",
  22823. height: math.unit(800, "feet")
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22829. {
  22830. front: {
  22831. height: math.unit(6, "feet"),
  22832. weight: math.unit(150, "lb"),
  22833. name: "Front",
  22834. image: {
  22835. source: "./media/characters/jaipur/front.svg",
  22836. extra: 3860 / 3731,
  22837. bottom: 287 / 4140
  22838. }
  22839. },
  22840. back: {
  22841. height: math.unit(6, "feet"),
  22842. weight: math.unit(150, "lb"),
  22843. name: "Back",
  22844. image: {
  22845. source: "./media/characters/jaipur/back.svg",
  22846. extra: 4060 / 3930,
  22847. bottom: 151 / 4200
  22848. }
  22849. },
  22850. },
  22851. [
  22852. {
  22853. name: "Normal",
  22854. height: math.unit(1.85, "meters"),
  22855. default: true
  22856. },
  22857. {
  22858. name: "Macro",
  22859. height: math.unit(150, "meters")
  22860. },
  22861. {
  22862. name: "Macro+",
  22863. height: math.unit(0.5, "miles")
  22864. },
  22865. {
  22866. name: "Macro++",
  22867. height: math.unit(2.5, "miles")
  22868. },
  22869. {
  22870. name: "Macro+++",
  22871. height: math.unit(12, "miles")
  22872. },
  22873. {
  22874. name: "Macro++++",
  22875. height: math.unit(120, "miles")
  22876. },
  22877. {
  22878. name: "Macro+++++",
  22879. height: math.unit(1200, "miles")
  22880. },
  22881. ]
  22882. ))
  22883. characterMakers.push(() => makeCharacter(
  22884. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22885. {
  22886. front: {
  22887. height: math.unit(6, "feet"),
  22888. weight: math.unit(150, "lb"),
  22889. name: "Front",
  22890. image: {
  22891. source: "./media/characters/sheila-wolf/front.svg",
  22892. extra: 1931 / 1808,
  22893. bottom: 29.5 / 1960
  22894. }
  22895. },
  22896. dick: {
  22897. height: math.unit(1.464, "feet"),
  22898. name: "Dick",
  22899. image: {
  22900. source: "./media/characters/sheila-wolf/dick.svg"
  22901. }
  22902. },
  22903. muzzle: {
  22904. height: math.unit(0.513, "feet"),
  22905. name: "Muzzle",
  22906. image: {
  22907. source: "./media/characters/sheila-wolf/muzzle.svg"
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Macro",
  22914. height: math.unit(70, "feet"),
  22915. default: true
  22916. },
  22917. ]
  22918. ))
  22919. characterMakers.push(() => makeCharacter(
  22920. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22921. {
  22922. front: {
  22923. height: math.unit(32, "meters"),
  22924. weight: math.unit(300000, "kg"),
  22925. name: "Front",
  22926. image: {
  22927. source: "./media/characters/almor/front.svg",
  22928. extra: 1408 / 1322,
  22929. bottom: 94.6 / 1506.5
  22930. }
  22931. },
  22932. },
  22933. [
  22934. {
  22935. name: "Macro",
  22936. height: math.unit(32, "meters"),
  22937. default: true
  22938. },
  22939. ]
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22943. {
  22944. front: {
  22945. height: math.unit(7, "feet"),
  22946. weight: math.unit(200, "lb"),
  22947. name: "Front",
  22948. image: {
  22949. source: "./media/characters/silver/front.svg",
  22950. extra: 472.1 / 450.5,
  22951. bottom: 26.5 / 499.424
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Normal",
  22958. height: math.unit(7, "feet"),
  22959. default: true
  22960. },
  22961. {
  22962. name: "Macro",
  22963. height: math.unit(800, "feet")
  22964. },
  22965. {
  22966. name: "Megamacro",
  22967. height: math.unit(250, "miles")
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22973. {
  22974. front: {
  22975. height: math.unit(6, "feet"),
  22976. weight: math.unit(150, "lb"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/pliskin/front.svg",
  22980. extra: 1469 / 1359,
  22981. bottom: 70 / 1540
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Micro",
  22988. height: math.unit(3, "inches")
  22989. },
  22990. {
  22991. name: "Normal",
  22992. height: math.unit(5 + 11 / 12, "feet"),
  22993. default: true
  22994. },
  22995. {
  22996. name: "Macro",
  22997. height: math.unit(120, "feet")
  22998. },
  22999. ]
  23000. ))
  23001. characterMakers.push(() => makeCharacter(
  23002. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23003. {
  23004. front: {
  23005. height: math.unit(6, "feet"),
  23006. weight: math.unit(150, "lb"),
  23007. name: "Front",
  23008. image: {
  23009. source: "./media/characters/sammy/front.svg",
  23010. extra: 1193 / 1089,
  23011. bottom: 30.5 / 1226
  23012. }
  23013. },
  23014. },
  23015. [
  23016. {
  23017. name: "Macro",
  23018. height: math.unit(1700, "feet"),
  23019. default: true
  23020. },
  23021. {
  23022. name: "Examacro",
  23023. height: math.unit(2.5e9, "lightyears")
  23024. },
  23025. ]
  23026. ))
  23027. characterMakers.push(() => makeCharacter(
  23028. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23029. {
  23030. front: {
  23031. height: math.unit(21, "meters"),
  23032. weight: math.unit(12, "tonnes"),
  23033. name: "Front",
  23034. image: {
  23035. source: "./media/characters/kuru/front.svg",
  23036. extra: 4301 / 3785,
  23037. bottom: 371.3 / 4691
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Macro",
  23044. height: math.unit(21, "meters"),
  23045. default: true
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23051. {
  23052. front: {
  23053. height: math.unit(23, "meters"),
  23054. weight: math.unit(12.2, "tonnes"),
  23055. name: "Front",
  23056. image: {
  23057. source: "./media/characters/rakka/front.svg",
  23058. extra: 4670 / 4169,
  23059. bottom: 301 / 4968.7
  23060. }
  23061. },
  23062. },
  23063. [
  23064. {
  23065. name: "Macro",
  23066. height: math.unit(23, "meters"),
  23067. default: true
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23073. {
  23074. front: {
  23075. height: math.unit(6, "feet"),
  23076. weight: math.unit(150, "lb"),
  23077. name: "Front",
  23078. image: {
  23079. source: "./media/characters/rhys-feline/front.svg",
  23080. extra: 2488 / 2308,
  23081. bottom: 35.67 / 2519.19
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Really Small",
  23088. height: math.unit(1, "nm")
  23089. },
  23090. {
  23091. name: "Micro",
  23092. height: math.unit(4, "inches")
  23093. },
  23094. {
  23095. name: "Normal",
  23096. height: math.unit(4 + 10 / 12, "feet"),
  23097. default: true
  23098. },
  23099. {
  23100. name: "Macro",
  23101. height: math.unit(100, "feet")
  23102. },
  23103. {
  23104. name: "Megamacto",
  23105. height: math.unit(50, "miles")
  23106. },
  23107. ]
  23108. ))
  23109. characterMakers.push(() => makeCharacter(
  23110. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23111. {
  23112. side: {
  23113. height: math.unit(30, "feet"),
  23114. weight: math.unit(35000, "kg"),
  23115. name: "Side",
  23116. image: {
  23117. source: "./media/characters/alydar/side.svg",
  23118. extra: 234 / 222,
  23119. bottom: 6.5 / 241
  23120. }
  23121. },
  23122. front: {
  23123. height: math.unit(30, "feet"),
  23124. weight: math.unit(35000, "kg"),
  23125. name: "Front",
  23126. image: {
  23127. source: "./media/characters/alydar/front.svg",
  23128. extra: 223.37 / 210.2,
  23129. bottom: 22.3 / 246.76
  23130. }
  23131. },
  23132. top: {
  23133. height: math.unit(64.54, "feet"),
  23134. weight: math.unit(35000, "kg"),
  23135. name: "Top",
  23136. image: {
  23137. source: "./media/characters/alydar/top.svg"
  23138. }
  23139. },
  23140. anthro: {
  23141. height: math.unit(30, "feet"),
  23142. weight: math.unit(9000, "kg"),
  23143. name: "Anthro",
  23144. image: {
  23145. source: "./media/characters/alydar/anthro.svg",
  23146. extra: 432 / 421,
  23147. bottom: 7.18 / 440
  23148. }
  23149. },
  23150. maw: {
  23151. height: math.unit(11.693, "feet"),
  23152. name: "Maw",
  23153. image: {
  23154. source: "./media/characters/alydar/maw.svg"
  23155. }
  23156. },
  23157. head: {
  23158. height: math.unit(11.693, "feet"),
  23159. name: "Head",
  23160. image: {
  23161. source: "./media/characters/alydar/head.svg"
  23162. }
  23163. },
  23164. headAlt: {
  23165. height: math.unit(12.861, "feet"),
  23166. name: "Head (Alt)",
  23167. image: {
  23168. source: "./media/characters/alydar/head-alt.svg"
  23169. }
  23170. },
  23171. wing: {
  23172. height: math.unit(20.712, "feet"),
  23173. name: "Wing",
  23174. image: {
  23175. source: "./media/characters/alydar/wing.svg"
  23176. }
  23177. },
  23178. wingFeather: {
  23179. height: math.unit(9.662, "feet"),
  23180. name: "Wing Feather",
  23181. image: {
  23182. source: "./media/characters/alydar/wing-feather.svg"
  23183. }
  23184. },
  23185. countourFeather: {
  23186. height: math.unit(4.154, "feet"),
  23187. name: "Contour Feather",
  23188. image: {
  23189. source: "./media/characters/alydar/contour-feather.svg"
  23190. }
  23191. },
  23192. },
  23193. [
  23194. {
  23195. name: "Diplomatic",
  23196. height: math.unit(13, "feet"),
  23197. default: true
  23198. },
  23199. {
  23200. name: "Small",
  23201. height: math.unit(30, "feet")
  23202. },
  23203. {
  23204. name: "Normal",
  23205. height: math.unit(95, "feet"),
  23206. default: true
  23207. },
  23208. {
  23209. name: "Large",
  23210. height: math.unit(285, "feet")
  23211. },
  23212. {
  23213. name: "Incomprehensible",
  23214. height: math.unit(450, "megameters")
  23215. },
  23216. ]
  23217. ))
  23218. characterMakers.push(() => makeCharacter(
  23219. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23220. {
  23221. side: {
  23222. height: math.unit(11, "feet"),
  23223. weight: math.unit(1750, "kg"),
  23224. name: "Side",
  23225. image: {
  23226. source: "./media/characters/selicia/side.svg",
  23227. extra: 440 / 396,
  23228. bottom: 24.8 / 465.979
  23229. }
  23230. },
  23231. maw: {
  23232. height: math.unit(4.665, "feet"),
  23233. name: "Maw",
  23234. image: {
  23235. source: "./media/characters/selicia/maw.svg"
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Normal",
  23242. height: math.unit(11, "feet"),
  23243. default: true
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23249. {
  23250. side: {
  23251. height: math.unit(2 + 6 / 12, "feet"),
  23252. weight: math.unit(30, "lb"),
  23253. name: "Side",
  23254. image: {
  23255. source: "./media/characters/layla/side.svg",
  23256. extra: 244 / 188,
  23257. bottom: 18.2 / 262.1
  23258. }
  23259. },
  23260. back: {
  23261. height: math.unit(2 + 6 / 12, "feet"),
  23262. weight: math.unit(30, "lb"),
  23263. name: "Back",
  23264. image: {
  23265. source: "./media/characters/layla/back.svg",
  23266. extra: 308 / 241.5,
  23267. bottom: 8.9 / 316.8
  23268. }
  23269. },
  23270. cumming: {
  23271. height: math.unit(2 + 6 / 12, "feet"),
  23272. weight: math.unit(30, "lb"),
  23273. name: "Cumming",
  23274. image: {
  23275. source: "./media/characters/layla/cumming.svg",
  23276. extra: 342 / 279,
  23277. bottom: 595 / 938
  23278. }
  23279. },
  23280. dickFlaccid: {
  23281. height: math.unit(2.595, "feet"),
  23282. name: "Flaccid Genitals",
  23283. image: {
  23284. source: "./media/characters/layla/dick-flaccid.svg"
  23285. }
  23286. },
  23287. dickErect: {
  23288. height: math.unit(2.359, "feet"),
  23289. name: "Erect Genitals",
  23290. image: {
  23291. source: "./media/characters/layla/dick-erect.svg"
  23292. }
  23293. },
  23294. dragon: {
  23295. height: math.unit(40, "feet"),
  23296. name: "Dragon",
  23297. image: {
  23298. source: "./media/characters/layla/dragon.svg",
  23299. extra: 610/535,
  23300. bottom: 367/977
  23301. }
  23302. },
  23303. taur: {
  23304. height: math.unit(30, "feet"),
  23305. name: "Taur",
  23306. image: {
  23307. source: "./media/characters/layla/taur.svg",
  23308. extra: 1268/1199,
  23309. bottom: 112/1380
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Micro",
  23316. height: math.unit(1, "inch")
  23317. },
  23318. {
  23319. name: "Small",
  23320. height: math.unit(1, "foot")
  23321. },
  23322. {
  23323. name: "Normal",
  23324. height: math.unit(2 + 6 / 12, "feet"),
  23325. default: true
  23326. },
  23327. {
  23328. name: "Macro",
  23329. height: math.unit(200, "feet")
  23330. },
  23331. {
  23332. name: "Megamacro",
  23333. height: math.unit(1000, "miles")
  23334. },
  23335. {
  23336. name: "Planetary",
  23337. height: math.unit(8000, "miles")
  23338. },
  23339. {
  23340. name: "True Layla",
  23341. height: math.unit(200000 * 7, "multiverses")
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23347. {
  23348. back: {
  23349. height: math.unit(10.5, "feet"),
  23350. weight: math.unit(800, "lb"),
  23351. name: "Back",
  23352. image: {
  23353. source: "./media/characters/knox/back.svg",
  23354. extra: 1486 / 1089,
  23355. bottom: 107 / 1601.4
  23356. }
  23357. },
  23358. side: {
  23359. height: math.unit(10.5, "feet"),
  23360. weight: math.unit(800, "lb"),
  23361. name: "Side",
  23362. image: {
  23363. source: "./media/characters/knox/side.svg",
  23364. extra: 244 / 218,
  23365. bottom: 14 / 260
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Compact",
  23372. height: math.unit(10.5, "feet"),
  23373. default: true
  23374. },
  23375. {
  23376. name: "Dynamax",
  23377. height: math.unit(210, "feet")
  23378. },
  23379. {
  23380. name: "Full Macro",
  23381. height: math.unit(850, "feet")
  23382. },
  23383. ]
  23384. ))
  23385. characterMakers.push(() => makeCharacter(
  23386. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23387. {
  23388. front: {
  23389. height: math.unit(6, "feet"),
  23390. weight: math.unit(152, "lb"),
  23391. name: "Front",
  23392. image: {
  23393. source: "./media/characters/shin-pikachu/front.svg",
  23394. extra: 1854/1602,
  23395. bottom: 166/2020
  23396. }
  23397. },
  23398. hand: {
  23399. height: math.unit(1.055, "feet"),
  23400. name: "Hand",
  23401. image: {
  23402. source: "./media/characters/shin-pikachu/hand.svg"
  23403. }
  23404. },
  23405. foot: {
  23406. height: math.unit(1.1, "feet"),
  23407. name: "Foot",
  23408. image: {
  23409. source: "./media/characters/shin-pikachu/foot.svg"
  23410. }
  23411. },
  23412. collar: {
  23413. height: math.unit(0.386, "feet"),
  23414. name: "Collar",
  23415. image: {
  23416. source: "./media/characters/shin-pikachu/collar.svg"
  23417. }
  23418. },
  23419. },
  23420. [
  23421. {
  23422. name: "Smallest",
  23423. height: math.unit(0.5, "inches")
  23424. },
  23425. {
  23426. name: "Micro",
  23427. height: math.unit(6, "inches")
  23428. },
  23429. {
  23430. name: "Normal",
  23431. height: math.unit(6, "feet"),
  23432. default: true
  23433. },
  23434. {
  23435. name: "Macro",
  23436. height: math.unit(150, "feet")
  23437. },
  23438. ]
  23439. ))
  23440. characterMakers.push(() => makeCharacter(
  23441. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23442. {
  23443. front: {
  23444. height: math.unit(28, "feet"),
  23445. weight: math.unit(10500, "lb"),
  23446. name: "Front",
  23447. image: {
  23448. source: "./media/characters/kayda/front.svg",
  23449. extra: 1536 / 1428,
  23450. bottom: 68.7 / 1603
  23451. }
  23452. },
  23453. back: {
  23454. height: math.unit(28, "feet"),
  23455. weight: math.unit(10500, "lb"),
  23456. name: "Back",
  23457. image: {
  23458. source: "./media/characters/kayda/back.svg",
  23459. extra: 1557 / 1464,
  23460. bottom: 39.5 / 1597.49
  23461. }
  23462. },
  23463. dick: {
  23464. height: math.unit(3.858, "feet"),
  23465. name: "Dick",
  23466. image: {
  23467. source: "./media/characters/kayda/dick.svg"
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Macro",
  23474. height: math.unit(28, "feet"),
  23475. default: true
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23481. {
  23482. front: {
  23483. height: math.unit(10 + 11 / 12, "feet"),
  23484. weight: math.unit(1400, "lb"),
  23485. name: "Front",
  23486. image: {
  23487. source: "./media/characters/brian/front.svg",
  23488. extra: 737 / 692,
  23489. bottom: 55.4 / 785
  23490. }
  23491. },
  23492. },
  23493. [
  23494. {
  23495. name: "Normal",
  23496. height: math.unit(10 + 11 / 12, "feet"),
  23497. default: true
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23503. {
  23504. front: {
  23505. height: math.unit(5 + 8 / 12, "feet"),
  23506. weight: math.unit(140, "lb"),
  23507. name: "Front",
  23508. image: {
  23509. source: "./media/characters/khemri/front.svg",
  23510. extra: 4780 / 4059,
  23511. bottom: 80.1 / 4859.25
  23512. }
  23513. },
  23514. },
  23515. [
  23516. {
  23517. name: "Micro",
  23518. height: math.unit(6, "inches")
  23519. },
  23520. {
  23521. name: "Normal",
  23522. height: math.unit(5 + 8 / 12, "feet"),
  23523. default: true
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23529. {
  23530. front: {
  23531. height: math.unit(13, "feet"),
  23532. weight: math.unit(1700, "lb"),
  23533. name: "Front",
  23534. image: {
  23535. source: "./media/characters/felix-braveheart/front.svg",
  23536. extra: 1222 / 1157,
  23537. bottom: 53.2 / 1280
  23538. }
  23539. },
  23540. back: {
  23541. height: math.unit(13, "feet"),
  23542. weight: math.unit(1700, "lb"),
  23543. name: "Back",
  23544. image: {
  23545. source: "./media/characters/felix-braveheart/back.svg",
  23546. extra: 1277 / 1203,
  23547. bottom: 50.2 / 1327
  23548. }
  23549. },
  23550. feral: {
  23551. height: math.unit(6, "feet"),
  23552. weight: math.unit(400, "lb"),
  23553. name: "Feral",
  23554. image: {
  23555. source: "./media/characters/felix-braveheart/feral.svg",
  23556. extra: 682 / 625,
  23557. bottom: 6.9 / 688
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Normal",
  23564. height: math.unit(13, "feet"),
  23565. default: true
  23566. },
  23567. ]
  23568. ))
  23569. characterMakers.push(() => makeCharacter(
  23570. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23571. {
  23572. side: {
  23573. height: math.unit(5 + 11 / 12, "feet"),
  23574. weight: math.unit(1400, "lb"),
  23575. name: "Side",
  23576. image: {
  23577. source: "./media/characters/shadow-blade/side.svg",
  23578. extra: 1726 / 1267,
  23579. bottom: 58.4 / 1785
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Normal",
  23586. height: math.unit(5 + 11 / 12, "feet"),
  23587. default: true
  23588. },
  23589. ]
  23590. ))
  23591. characterMakers.push(() => makeCharacter(
  23592. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23593. {
  23594. front: {
  23595. height: math.unit(1 + 6 / 12, "feet"),
  23596. weight: math.unit(25, "lb"),
  23597. name: "Front",
  23598. image: {
  23599. source: "./media/characters/karla-halldor/front.svg",
  23600. extra: 1459 / 1383,
  23601. bottom: 12 / 1472
  23602. }
  23603. },
  23604. },
  23605. [
  23606. {
  23607. name: "Normal",
  23608. height: math.unit(1 + 6 / 12, "feet"),
  23609. default: true
  23610. },
  23611. ]
  23612. ))
  23613. characterMakers.push(() => makeCharacter(
  23614. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23615. {
  23616. front: {
  23617. height: math.unit(6 + 2 / 12, "feet"),
  23618. weight: math.unit(160, "lb"),
  23619. name: "Front",
  23620. image: {
  23621. source: "./media/characters/ariam/front.svg",
  23622. extra: 714 / 617,
  23623. bottom: 23.4 / 737,
  23624. }
  23625. },
  23626. squatting: {
  23627. height: math.unit(4.1, "feet"),
  23628. weight: math.unit(160, "lb"),
  23629. name: "Squatting",
  23630. image: {
  23631. source: "./media/characters/ariam/squatting.svg",
  23632. extra: 2617 / 2112,
  23633. bottom: 61.2 / 2681,
  23634. }
  23635. },
  23636. },
  23637. [
  23638. {
  23639. name: "Normal",
  23640. height: math.unit(6 + 2 / 12, "feet"),
  23641. default: true
  23642. },
  23643. {
  23644. name: "Normal+",
  23645. height: math.unit(4, "meters")
  23646. },
  23647. {
  23648. name: "Macro",
  23649. height: math.unit(50, "meters")
  23650. },
  23651. {
  23652. name: "Macro+",
  23653. height: math.unit(100, "meters")
  23654. },
  23655. {
  23656. name: "Megamacro",
  23657. height: math.unit(20, "km")
  23658. },
  23659. ]
  23660. ))
  23661. characterMakers.push(() => makeCharacter(
  23662. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23663. {
  23664. front: {
  23665. height: math.unit(1.67, "meters"),
  23666. weight: math.unit(140, "lb"),
  23667. name: "Front",
  23668. image: {
  23669. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23670. extra: 438 / 410,
  23671. bottom: 0.75 / 439
  23672. }
  23673. },
  23674. },
  23675. [
  23676. {
  23677. name: "Shrunken",
  23678. height: math.unit(7.6, "cm")
  23679. },
  23680. {
  23681. name: "Human Scale",
  23682. height: math.unit(1.67, "meters")
  23683. },
  23684. {
  23685. name: "Wolxi Scale",
  23686. height: math.unit(36.7, "meters"),
  23687. default: true
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23693. {
  23694. front: {
  23695. height: math.unit(1.73, "meters"),
  23696. weight: math.unit(240, "lb"),
  23697. name: "Front",
  23698. image: {
  23699. source: "./media/characters/izue-two-mothers/front.svg",
  23700. extra: 469 / 437,
  23701. bottom: 1.24 / 470.6
  23702. }
  23703. },
  23704. },
  23705. [
  23706. {
  23707. name: "Shrunken",
  23708. height: math.unit(7.86, "cm")
  23709. },
  23710. {
  23711. name: "Human Scale",
  23712. height: math.unit(1.73, "meters")
  23713. },
  23714. {
  23715. name: "Wolxi Scale",
  23716. height: math.unit(38, "meters"),
  23717. default: true
  23718. },
  23719. ]
  23720. ))
  23721. characterMakers.push(() => makeCharacter(
  23722. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23723. {
  23724. front: {
  23725. height: math.unit(1.55, "meters"),
  23726. weight: math.unit(120, "lb"),
  23727. name: "Front",
  23728. image: {
  23729. source: "./media/characters/teeku-love-shack/front.svg",
  23730. extra: 387 / 362,
  23731. bottom: 1.51 / 388
  23732. }
  23733. },
  23734. },
  23735. [
  23736. {
  23737. name: "Shrunken",
  23738. height: math.unit(7, "cm")
  23739. },
  23740. {
  23741. name: "Human Scale",
  23742. height: math.unit(1.55, "meters")
  23743. },
  23744. {
  23745. name: "Wolxi Scale",
  23746. height: math.unit(34.1, "meters"),
  23747. default: true
  23748. },
  23749. ]
  23750. ))
  23751. characterMakers.push(() => makeCharacter(
  23752. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23753. {
  23754. front: {
  23755. height: math.unit(1.83, "meters"),
  23756. weight: math.unit(135, "lb"),
  23757. name: "Front",
  23758. image: {
  23759. source: "./media/characters/dejma-the-red/front.svg",
  23760. extra: 480 / 458,
  23761. bottom: 1.8 / 482
  23762. }
  23763. },
  23764. },
  23765. [
  23766. {
  23767. name: "Shrunken",
  23768. height: math.unit(8.3, "cm")
  23769. },
  23770. {
  23771. name: "Human Scale",
  23772. height: math.unit(1.83, "meters")
  23773. },
  23774. {
  23775. name: "Wolxi Scale",
  23776. height: math.unit(40, "meters"),
  23777. default: true
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23783. {
  23784. front: {
  23785. height: math.unit(1.78, "meters"),
  23786. weight: math.unit(65, "kg"),
  23787. name: "Front",
  23788. image: {
  23789. source: "./media/characters/aki/front.svg",
  23790. extra: 452 / 415
  23791. }
  23792. },
  23793. frontNsfw: {
  23794. height: math.unit(1.78, "meters"),
  23795. weight: math.unit(65, "kg"),
  23796. name: "Front (NSFW)",
  23797. image: {
  23798. source: "./media/characters/aki/front-nsfw.svg",
  23799. extra: 452 / 415
  23800. }
  23801. },
  23802. back: {
  23803. height: math.unit(1.78, "meters"),
  23804. weight: math.unit(65, "kg"),
  23805. name: "Back",
  23806. image: {
  23807. source: "./media/characters/aki/back.svg",
  23808. extra: 452 / 415
  23809. }
  23810. },
  23811. rump: {
  23812. height: math.unit(2.05, "feet"),
  23813. name: "Rump",
  23814. image: {
  23815. source: "./media/characters/aki/rump.svg"
  23816. }
  23817. },
  23818. dick: {
  23819. height: math.unit(0.95, "feet"),
  23820. name: "Dick",
  23821. image: {
  23822. source: "./media/characters/aki/dick.svg"
  23823. }
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Micro",
  23829. height: math.unit(15, "cm")
  23830. },
  23831. {
  23832. name: "Normal",
  23833. height: math.unit(178, "cm"),
  23834. default: true
  23835. },
  23836. {
  23837. name: "Macro",
  23838. height: math.unit(214, "m")
  23839. },
  23840. {
  23841. name: "Macro+",
  23842. height: math.unit(534, "m")
  23843. },
  23844. ]
  23845. ))
  23846. characterMakers.push(() => makeCharacter(
  23847. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23848. {
  23849. front: {
  23850. height: math.unit(5 + 5 / 12, "feet"),
  23851. weight: math.unit(120, "lb"),
  23852. name: "Front",
  23853. image: {
  23854. source: "./media/characters/ari/front.svg",
  23855. extra: 714.5 / 682,
  23856. bottom: 8 / 722.5
  23857. }
  23858. },
  23859. },
  23860. [
  23861. {
  23862. name: "Normal",
  23863. height: math.unit(5 + 5 / 12, "feet")
  23864. },
  23865. {
  23866. name: "Macro",
  23867. height: math.unit(100, "feet"),
  23868. default: true
  23869. },
  23870. {
  23871. name: "Megamacro",
  23872. height: math.unit(100, "miles")
  23873. },
  23874. {
  23875. name: "Gigamacro",
  23876. height: math.unit(80000, "miles")
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23882. {
  23883. side: {
  23884. height: math.unit(9, "feet"),
  23885. weight: math.unit(400, "kg"),
  23886. name: "Side",
  23887. image: {
  23888. source: "./media/characters/bolt/side.svg",
  23889. extra: 1126 / 896,
  23890. bottom: 60 / 1187.3,
  23891. }
  23892. },
  23893. },
  23894. [
  23895. {
  23896. name: "Micro",
  23897. height: math.unit(5, "inches")
  23898. },
  23899. {
  23900. name: "Normal",
  23901. height: math.unit(9, "feet"),
  23902. default: true
  23903. },
  23904. {
  23905. name: "Macro",
  23906. height: math.unit(700, "feet")
  23907. },
  23908. {
  23909. name: "Max Size",
  23910. height: math.unit(1.52e22, "yottameters")
  23911. },
  23912. ]
  23913. ))
  23914. characterMakers.push(() => makeCharacter(
  23915. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23916. {
  23917. front: {
  23918. height: math.unit(4.53, "meters"),
  23919. weight: math.unit(3, "tons"),
  23920. name: "Front",
  23921. image: {
  23922. source: "./media/characters/draekon-sylviar/front.svg",
  23923. extra: 1228 / 1068,
  23924. bottom: 41 / 1270
  23925. }
  23926. },
  23927. tail: {
  23928. height: math.unit(1.772, "meter"),
  23929. name: "Tail",
  23930. image: {
  23931. source: "./media/characters/draekon-sylviar/tail.svg"
  23932. }
  23933. },
  23934. head: {
  23935. height: math.unit(1.331, "meter"),
  23936. name: "Head",
  23937. image: {
  23938. source: "./media/characters/draekon-sylviar/head.svg"
  23939. }
  23940. },
  23941. hand: {
  23942. height: math.unit(0.564, "meter"),
  23943. name: "Hand",
  23944. image: {
  23945. source: "./media/characters/draekon-sylviar/hand.svg"
  23946. }
  23947. },
  23948. foot: {
  23949. height: math.unit(0.621, "meter"),
  23950. name: "Foot",
  23951. image: {
  23952. source: "./media/characters/draekon-sylviar/foot.svg",
  23953. bottom: 32 / 324
  23954. }
  23955. },
  23956. dick: {
  23957. height: math.unit(61, "cm"),
  23958. name: "Dick",
  23959. image: {
  23960. source: "./media/characters/draekon-sylviar/dick.svg"
  23961. }
  23962. },
  23963. dickseparated: {
  23964. height: math.unit(61, "cm"),
  23965. name: "Dick-separated",
  23966. image: {
  23967. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Small",
  23974. height: math.unit(4.53 / 2, "meters"),
  23975. default: true
  23976. },
  23977. {
  23978. name: "Normal",
  23979. height: math.unit(4.53, "meters"),
  23980. default: true
  23981. },
  23982. {
  23983. name: "Large",
  23984. height: math.unit(4.53 * 2, "meters"),
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(6 + 2 / 12, "feet"),
  23993. weight: math.unit(180, "lb"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/brawler/front.svg",
  23997. extra: 3301 / 3027,
  23998. bottom: 138 / 3439
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Normal",
  24005. height: math.unit(6 + 2 / 12, "feet"),
  24006. default: true
  24007. },
  24008. ]
  24009. ))
  24010. characterMakers.push(() => makeCharacter(
  24011. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24012. {
  24013. front: {
  24014. height: math.unit(11, "feet"),
  24015. weight: math.unit(1000, "lb"),
  24016. name: "Front",
  24017. image: {
  24018. source: "./media/characters/alex/front.svg",
  24019. bottom: 44.5 / 620
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Micro",
  24026. height: math.unit(5, "inches")
  24027. },
  24028. {
  24029. name: "Normal",
  24030. height: math.unit(11, "feet"),
  24031. default: true
  24032. },
  24033. {
  24034. name: "Macro",
  24035. height: math.unit(9.5e9, "feet")
  24036. },
  24037. {
  24038. name: "Max Size",
  24039. height: math.unit(1.4e283, "yottameters")
  24040. },
  24041. ]
  24042. ))
  24043. characterMakers.push(() => makeCharacter(
  24044. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24045. {
  24046. female: {
  24047. height: math.unit(29.9, "m"),
  24048. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24049. name: "Female",
  24050. image: {
  24051. source: "./media/characters/zenari/female.svg",
  24052. extra: 3281.6 / 3217,
  24053. bottom: 72.2 / 3353
  24054. }
  24055. },
  24056. male: {
  24057. height: math.unit(27.7, "m"),
  24058. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24059. name: "Male",
  24060. image: {
  24061. source: "./media/characters/zenari/male.svg",
  24062. extra: 3008 / 2991,
  24063. bottom: 54.6 / 3069
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Macro",
  24070. height: math.unit(29.7, "meters"),
  24071. default: true
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24077. {
  24078. female: {
  24079. height: math.unit(23.8, "m"),
  24080. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24081. name: "Female",
  24082. image: {
  24083. source: "./media/characters/mactarian/female.svg",
  24084. extra: 2662 / 2569,
  24085. bottom: 73 / 2736
  24086. }
  24087. },
  24088. male: {
  24089. height: math.unit(23.8, "m"),
  24090. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24091. name: "Male",
  24092. image: {
  24093. source: "./media/characters/mactarian/male.svg",
  24094. extra: 2673 / 2600,
  24095. bottom: 76 / 2750
  24096. }
  24097. },
  24098. },
  24099. [
  24100. {
  24101. name: "Macro",
  24102. height: math.unit(23.8, "meters"),
  24103. default: true
  24104. },
  24105. ]
  24106. ))
  24107. characterMakers.push(() => makeCharacter(
  24108. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24109. {
  24110. female: {
  24111. height: math.unit(19.3, "m"),
  24112. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24113. name: "Female",
  24114. image: {
  24115. source: "./media/characters/umok/female.svg",
  24116. extra: 2186 / 2078,
  24117. bottom: 87 / 2277
  24118. }
  24119. },
  24120. male: {
  24121. height: math.unit(19.5, "m"),
  24122. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24123. name: "Male",
  24124. image: {
  24125. source: "./media/characters/umok/male.svg",
  24126. extra: 2233 / 2140,
  24127. bottom: 24.4 / 2258
  24128. }
  24129. },
  24130. },
  24131. [
  24132. {
  24133. name: "Macro",
  24134. height: math.unit(19.3, "meters"),
  24135. default: true
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24141. {
  24142. female: {
  24143. height: math.unit(26.15, "m"),
  24144. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24145. name: "Female",
  24146. image: {
  24147. source: "./media/characters/joraxian/female.svg",
  24148. extra: 2912 / 2824,
  24149. bottom: 36 / 2956
  24150. }
  24151. },
  24152. male: {
  24153. height: math.unit(25.4, "m"),
  24154. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24155. name: "Male",
  24156. image: {
  24157. source: "./media/characters/joraxian/male.svg",
  24158. extra: 2877 / 2721,
  24159. bottom: 82 / 2967
  24160. }
  24161. },
  24162. },
  24163. [
  24164. {
  24165. name: "Macro",
  24166. height: math.unit(26.15, "meters"),
  24167. default: true
  24168. },
  24169. ]
  24170. ))
  24171. characterMakers.push(() => makeCharacter(
  24172. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24173. {
  24174. female: {
  24175. height: math.unit(21.6, "m"),
  24176. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24177. name: "Female",
  24178. image: {
  24179. source: "./media/characters/sthara/female.svg",
  24180. extra: 2516 / 2347,
  24181. bottom: 21.5 / 2537
  24182. }
  24183. },
  24184. male: {
  24185. height: math.unit(24, "m"),
  24186. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24187. name: "Male",
  24188. image: {
  24189. source: "./media/characters/sthara/male.svg",
  24190. extra: 2732 / 2607,
  24191. bottom: 23 / 2732
  24192. }
  24193. },
  24194. },
  24195. [
  24196. {
  24197. name: "Macro",
  24198. height: math.unit(21.6, "meters"),
  24199. default: true
  24200. },
  24201. ]
  24202. ))
  24203. characterMakers.push(() => makeCharacter(
  24204. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24205. {
  24206. front: {
  24207. height: math.unit(6 + 4 / 12, "feet"),
  24208. weight: math.unit(175, "lb"),
  24209. name: "Front",
  24210. image: {
  24211. source: "./media/characters/luka-bryzant/front.svg",
  24212. extra: 311 / 289,
  24213. bottom: 4 / 315
  24214. }
  24215. },
  24216. back: {
  24217. height: math.unit(6 + 4 / 12, "feet"),
  24218. weight: math.unit(175, "lb"),
  24219. name: "Back",
  24220. image: {
  24221. source: "./media/characters/luka-bryzant/back.svg",
  24222. extra: 311 / 289,
  24223. bottom: 3.8 / 313.7
  24224. }
  24225. },
  24226. },
  24227. [
  24228. {
  24229. name: "Micro",
  24230. height: math.unit(10, "inches")
  24231. },
  24232. {
  24233. name: "Normal",
  24234. height: math.unit(6 + 4 / 12, "feet"),
  24235. default: true
  24236. },
  24237. {
  24238. name: "Large",
  24239. height: math.unit(12, "feet")
  24240. },
  24241. ]
  24242. ))
  24243. characterMakers.push(() => makeCharacter(
  24244. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24245. {
  24246. front: {
  24247. height: math.unit(5 + 7 / 12, "feet"),
  24248. weight: math.unit(185, "lb"),
  24249. name: "Front",
  24250. image: {
  24251. source: "./media/characters/aman-aquila/front.svg",
  24252. extra: 1013 / 976,
  24253. bottom: 45.6 / 1057
  24254. }
  24255. },
  24256. side: {
  24257. height: math.unit(5 + 7 / 12, "feet"),
  24258. weight: math.unit(185, "lb"),
  24259. name: "Side",
  24260. image: {
  24261. source: "./media/characters/aman-aquila/side.svg",
  24262. extra: 1054 / 1011,
  24263. bottom: 15 / 1070
  24264. }
  24265. },
  24266. back: {
  24267. height: math.unit(5 + 7 / 12, "feet"),
  24268. weight: math.unit(185, "lb"),
  24269. name: "Back",
  24270. image: {
  24271. source: "./media/characters/aman-aquila/back.svg",
  24272. extra: 1026 / 970,
  24273. bottom: 12 / 1039
  24274. }
  24275. },
  24276. head: {
  24277. height: math.unit(1.211, "feet"),
  24278. name: "Head",
  24279. image: {
  24280. source: "./media/characters/aman-aquila/head.svg",
  24281. }
  24282. },
  24283. },
  24284. [
  24285. {
  24286. name: "Minimicro",
  24287. height: math.unit(0.057, "inches")
  24288. },
  24289. {
  24290. name: "Micro",
  24291. height: math.unit(7, "inches")
  24292. },
  24293. {
  24294. name: "Mini",
  24295. height: math.unit(3 + 7 / 12, "feet")
  24296. },
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(5 + 7 / 12, "feet"),
  24300. default: true
  24301. },
  24302. {
  24303. name: "Macro",
  24304. height: math.unit(157 + 7 / 12, "feet")
  24305. },
  24306. {
  24307. name: "Megamacro",
  24308. height: math.unit(1557 + 7 / 12, "feet")
  24309. },
  24310. {
  24311. name: "Gigamacro",
  24312. height: math.unit(15557 + 7 / 12, "feet")
  24313. },
  24314. ]
  24315. ))
  24316. characterMakers.push(() => makeCharacter(
  24317. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24318. {
  24319. front: {
  24320. height: math.unit(3 + 2 / 12, "inches"),
  24321. weight: math.unit(0.3, "ounces"),
  24322. name: "Front",
  24323. image: {
  24324. source: "./media/characters/hiphae/front.svg",
  24325. extra: 1931 / 1683,
  24326. bottom: 24 / 1955
  24327. }
  24328. },
  24329. },
  24330. [
  24331. {
  24332. name: "Normal",
  24333. height: math.unit(3 + 1 / 2, "inches"),
  24334. default: true
  24335. },
  24336. ]
  24337. ))
  24338. characterMakers.push(() => makeCharacter(
  24339. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24340. {
  24341. front: {
  24342. height: math.unit(5 + 10 / 12, "feet"),
  24343. weight: math.unit(165, "lb"),
  24344. name: "Front",
  24345. image: {
  24346. source: "./media/characters/nicky/front.svg",
  24347. extra: 3144 / 2886,
  24348. bottom: 45.6 / 3192
  24349. }
  24350. },
  24351. back: {
  24352. height: math.unit(5 + 10 / 12, "feet"),
  24353. weight: math.unit(165, "lb"),
  24354. name: "Back",
  24355. image: {
  24356. source: "./media/characters/nicky/back.svg",
  24357. extra: 3055 / 2804,
  24358. bottom: 28.4 / 3087
  24359. }
  24360. },
  24361. frontclothed: {
  24362. height: math.unit(5 + 10 / 12, "feet"),
  24363. weight: math.unit(165, "lb"),
  24364. name: "Front-clothed",
  24365. image: {
  24366. source: "./media/characters/nicky/front-clothed.svg",
  24367. extra: 3184.9 / 2926.9,
  24368. bottom: 86.5 / 3239.9
  24369. }
  24370. },
  24371. foot: {
  24372. height: math.unit(1.16, "feet"),
  24373. name: "Foot",
  24374. image: {
  24375. source: "./media/characters/nicky/foot.svg"
  24376. }
  24377. },
  24378. feet: {
  24379. height: math.unit(1.34, "feet"),
  24380. name: "Feet",
  24381. image: {
  24382. source: "./media/characters/nicky/feet.svg"
  24383. }
  24384. },
  24385. maw: {
  24386. height: math.unit(0.9, "feet"),
  24387. name: "Maw",
  24388. image: {
  24389. source: "./media/characters/nicky/maw.svg"
  24390. }
  24391. },
  24392. },
  24393. [
  24394. {
  24395. name: "Normal",
  24396. height: math.unit(5 + 10 / 12, "feet"),
  24397. default: true
  24398. },
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(60, "feet")
  24402. },
  24403. {
  24404. name: "Megamacro",
  24405. height: math.unit(1, "mile")
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24411. {
  24412. side: {
  24413. height: math.unit(10, "feet"),
  24414. weight: math.unit(600, "lb"),
  24415. name: "Side",
  24416. image: {
  24417. source: "./media/characters/blair/side.svg",
  24418. bottom: 16.6 / 475,
  24419. extra: 458 / 431
  24420. }
  24421. },
  24422. },
  24423. [
  24424. {
  24425. name: "Micro",
  24426. height: math.unit(8, "inches")
  24427. },
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(10, "feet"),
  24431. default: true
  24432. },
  24433. {
  24434. name: "Macro",
  24435. height: math.unit(180, "feet")
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24441. {
  24442. front: {
  24443. height: math.unit(5 + 4 / 12, "feet"),
  24444. weight: math.unit(125, "lb"),
  24445. name: "Front",
  24446. image: {
  24447. source: "./media/characters/fisher/front.svg",
  24448. extra: 444 / 390,
  24449. bottom: 2 / 444.8
  24450. }
  24451. },
  24452. },
  24453. [
  24454. {
  24455. name: "Micro",
  24456. height: math.unit(4, "inches")
  24457. },
  24458. {
  24459. name: "Normal",
  24460. height: math.unit(5 + 4 / 12, "feet"),
  24461. default: true
  24462. },
  24463. {
  24464. name: "Macro",
  24465. height: math.unit(100, "feet")
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24471. {
  24472. front: {
  24473. height: math.unit(6.71, "feet"),
  24474. weight: math.unit(200, "lb"),
  24475. capacity: math.unit(1000000, "people"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/gliss/front.svg",
  24479. extra: 2347 / 2231,
  24480. bottom: 113 / 2462
  24481. }
  24482. },
  24483. hammerspaceSize: {
  24484. height: math.unit(6.71 * 717, "feet"),
  24485. weight: math.unit(200, "lb"),
  24486. capacity: math.unit(1000000, "people"),
  24487. name: "Hammerspace Size",
  24488. image: {
  24489. source: "./media/characters/gliss/front.svg",
  24490. extra: 2347 / 2231,
  24491. bottom: 113 / 2462
  24492. }
  24493. },
  24494. },
  24495. [
  24496. {
  24497. name: "Normal",
  24498. height: math.unit(6.71, "feet"),
  24499. default: true
  24500. },
  24501. ]
  24502. ))
  24503. characterMakers.push(() => makeCharacter(
  24504. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24505. {
  24506. side: {
  24507. height: math.unit(1.44, "m"),
  24508. weight: math.unit(80, "kg"),
  24509. name: "Side",
  24510. image: {
  24511. source: "./media/characters/dune-anderson/side.svg",
  24512. bottom: 49 / 1426
  24513. }
  24514. },
  24515. },
  24516. [
  24517. {
  24518. name: "Wolf-sized",
  24519. height: math.unit(1.44, "meters")
  24520. },
  24521. {
  24522. name: "Normal",
  24523. height: math.unit(5.05, "meters"),
  24524. default: true
  24525. },
  24526. {
  24527. name: "Big",
  24528. height: math.unit(14.4, "meters")
  24529. },
  24530. {
  24531. name: "Huge",
  24532. height: math.unit(144, "meters")
  24533. },
  24534. ]
  24535. ))
  24536. characterMakers.push(() => makeCharacter(
  24537. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24538. {
  24539. front: {
  24540. height: math.unit(7, "feet"),
  24541. weight: math.unit(425, "lb"),
  24542. name: "Front",
  24543. image: {
  24544. source: "./media/characters/hind/front.svg",
  24545. extra: 2091 / 1860,
  24546. bottom: 129 / 2220
  24547. }
  24548. },
  24549. back: {
  24550. height: math.unit(7, "feet"),
  24551. weight: math.unit(425, "lb"),
  24552. name: "Back",
  24553. image: {
  24554. source: "./media/characters/hind/back.svg",
  24555. extra: 2091 / 1860,
  24556. bottom: 24.6 / 2309
  24557. }
  24558. },
  24559. tail: {
  24560. height: math.unit(2.8, "feet"),
  24561. name: "Tail",
  24562. image: {
  24563. source: "./media/characters/hind/tail.svg"
  24564. }
  24565. },
  24566. head: {
  24567. height: math.unit(2.55, "feet"),
  24568. name: "Head",
  24569. image: {
  24570. source: "./media/characters/hind/head.svg"
  24571. }
  24572. },
  24573. },
  24574. [
  24575. {
  24576. name: "XS",
  24577. height: math.unit(0.7, "feet")
  24578. },
  24579. {
  24580. name: "Normal",
  24581. height: math.unit(7, "feet"),
  24582. default: true
  24583. },
  24584. {
  24585. name: "XL",
  24586. height: math.unit(70, "feet")
  24587. },
  24588. ]
  24589. ))
  24590. characterMakers.push(() => makeCharacter(
  24591. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24592. {
  24593. front: {
  24594. height: math.unit(6, "feet"),
  24595. weight: math.unit(150, "lb"),
  24596. name: "Front",
  24597. image: {
  24598. source: "./media/characters/dylan-skaven/front.svg",
  24599. extra: 2318 / 2063,
  24600. bottom: 93.4 / 2410
  24601. }
  24602. },
  24603. },
  24604. [
  24605. {
  24606. name: "Nano",
  24607. height: math.unit(1, "mm")
  24608. },
  24609. {
  24610. name: "Micro",
  24611. height: math.unit(1, "cm")
  24612. },
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(2.1, "meters"),
  24616. default: true
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24622. {
  24623. front: {
  24624. height: math.unit(7 + 5 / 12, "feet"),
  24625. weight: math.unit(357, "lb"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/solex-draconov/front.svg",
  24629. extra: 1993 / 1865,
  24630. bottom: 117 / 2111
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Natural Height",
  24637. height: math.unit(7 + 5 / 12, "feet"),
  24638. default: true
  24639. },
  24640. {
  24641. name: "Macro",
  24642. height: math.unit(350, "feet")
  24643. },
  24644. {
  24645. name: "Macro+",
  24646. height: math.unit(1000, "feet")
  24647. },
  24648. {
  24649. name: "Megamacro",
  24650. height: math.unit(20, "km")
  24651. },
  24652. {
  24653. name: "Megamacro+",
  24654. height: math.unit(1000, "km")
  24655. },
  24656. {
  24657. name: "Gigamacro",
  24658. height: math.unit(2.5, "Gm")
  24659. },
  24660. {
  24661. name: "Teramacro",
  24662. height: math.unit(15, "Tm")
  24663. },
  24664. {
  24665. name: "Galactic",
  24666. height: math.unit(30, "Zm")
  24667. },
  24668. {
  24669. name: "Universal",
  24670. height: math.unit(21000, "Ym")
  24671. },
  24672. {
  24673. name: "Omniversal",
  24674. height: math.unit(9.861e50, "Ym")
  24675. },
  24676. {
  24677. name: "Existential",
  24678. height: math.unit(1e300, "meters")
  24679. },
  24680. ]
  24681. ))
  24682. characterMakers.push(() => makeCharacter(
  24683. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24684. {
  24685. side: {
  24686. height: math.unit(25, "feet"),
  24687. weight: math.unit(90000, "lb"),
  24688. name: "Side",
  24689. image: {
  24690. source: "./media/characters/mandarax/side.svg",
  24691. extra: 614 / 332,
  24692. bottom: 55 / 630
  24693. }
  24694. },
  24695. head: {
  24696. height: math.unit(11.4, "feet"),
  24697. name: "Head",
  24698. image: {
  24699. source: "./media/characters/mandarax/head.svg"
  24700. }
  24701. },
  24702. belly: {
  24703. height: math.unit(33, "feet"),
  24704. name: "Belly",
  24705. capacity: math.unit(500, "people"),
  24706. image: {
  24707. source: "./media/characters/mandarax/belly.svg"
  24708. }
  24709. },
  24710. dick: {
  24711. height: math.unit(8.46, "feet"),
  24712. name: "Dick",
  24713. image: {
  24714. source: "./media/characters/mandarax/dick.svg"
  24715. }
  24716. },
  24717. top: {
  24718. height: math.unit(28, "meters"),
  24719. name: "Top",
  24720. image: {
  24721. source: "./media/characters/mandarax/top.svg"
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Normal",
  24728. height: math.unit(25, "feet"),
  24729. default: true
  24730. },
  24731. ]
  24732. ))
  24733. characterMakers.push(() => makeCharacter(
  24734. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24735. {
  24736. front: {
  24737. height: math.unit(5, "feet"),
  24738. weight: math.unit(90, "lb"),
  24739. name: "Front",
  24740. image: {
  24741. source: "./media/characters/pixil/front.svg",
  24742. extra: 2000 / 1618,
  24743. bottom: 12.3 / 2011
  24744. }
  24745. },
  24746. },
  24747. [
  24748. {
  24749. name: "Normal",
  24750. height: math.unit(5, "feet"),
  24751. default: true
  24752. },
  24753. {
  24754. name: "Megamacro",
  24755. height: math.unit(10, "miles"),
  24756. },
  24757. ]
  24758. ))
  24759. characterMakers.push(() => makeCharacter(
  24760. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24761. {
  24762. front: {
  24763. height: math.unit(7 + 2 / 12, "feet"),
  24764. weight: math.unit(200, "lb"),
  24765. name: "Front",
  24766. image: {
  24767. source: "./media/characters/angel/front.svg",
  24768. extra: 1830 / 1737,
  24769. bottom: 22.6 / 1854,
  24770. }
  24771. },
  24772. },
  24773. [
  24774. {
  24775. name: "Normal",
  24776. height: math.unit(7 + 2 / 12, "feet"),
  24777. default: true
  24778. },
  24779. {
  24780. name: "Macro",
  24781. height: math.unit(1000, "feet")
  24782. },
  24783. {
  24784. name: "Megamacro",
  24785. height: math.unit(2, "miles")
  24786. },
  24787. {
  24788. name: "Gigamacro",
  24789. height: math.unit(20, "earths")
  24790. },
  24791. ]
  24792. ))
  24793. characterMakers.push(() => makeCharacter(
  24794. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24795. {
  24796. front: {
  24797. height: math.unit(5, "feet"),
  24798. weight: math.unit(180, "lb"),
  24799. name: "Front",
  24800. image: {
  24801. source: "./media/characters/mekana/front.svg",
  24802. extra: 1671 / 1605,
  24803. bottom: 3.5 / 1691
  24804. }
  24805. },
  24806. side: {
  24807. height: math.unit(5, "feet"),
  24808. weight: math.unit(180, "lb"),
  24809. name: "Side",
  24810. image: {
  24811. source: "./media/characters/mekana/side.svg",
  24812. extra: 1671 / 1605,
  24813. bottom: 3.5 / 1691
  24814. }
  24815. },
  24816. back: {
  24817. height: math.unit(5, "feet"),
  24818. weight: math.unit(180, "lb"),
  24819. name: "Back",
  24820. image: {
  24821. source: "./media/characters/mekana/back.svg",
  24822. extra: 1671 / 1605,
  24823. bottom: 3.5 / 1691
  24824. }
  24825. },
  24826. },
  24827. [
  24828. {
  24829. name: "Normal",
  24830. height: math.unit(5, "feet"),
  24831. default: true
  24832. },
  24833. ]
  24834. ))
  24835. characterMakers.push(() => makeCharacter(
  24836. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24837. {
  24838. front: {
  24839. height: math.unit(4 + 6 / 12, "feet"),
  24840. weight: math.unit(80, "lb"),
  24841. name: "Front",
  24842. image: {
  24843. source: "./media/characters/pixie/front.svg",
  24844. extra: 1924 / 1825,
  24845. bottom: 22.4 / 1946
  24846. }
  24847. },
  24848. },
  24849. [
  24850. {
  24851. name: "Normal",
  24852. height: math.unit(4 + 6 / 12, "feet"),
  24853. default: true
  24854. },
  24855. {
  24856. name: "Macro",
  24857. height: math.unit(40, "feet")
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24863. {
  24864. front: {
  24865. height: math.unit(2.1, "meters"),
  24866. weight: math.unit(200, "lb"),
  24867. name: "Front",
  24868. image: {
  24869. source: "./media/characters/the-lascivious/front.svg",
  24870. extra: 1 / 0.893,
  24871. bottom: 3.5 / 573.7
  24872. }
  24873. },
  24874. },
  24875. [
  24876. {
  24877. name: "Human Scale",
  24878. height: math.unit(2.1, "meters")
  24879. },
  24880. {
  24881. name: "Wolxi Scale",
  24882. height: math.unit(46.2, "m"),
  24883. default: true
  24884. },
  24885. {
  24886. name: "Boinker of Buildings",
  24887. height: math.unit(10, "km")
  24888. },
  24889. {
  24890. name: "Shagger of Skyscrapers",
  24891. height: math.unit(40, "km")
  24892. },
  24893. {
  24894. name: "Banger of Boroughs",
  24895. height: math.unit(4000, "km")
  24896. },
  24897. {
  24898. name: "Screwer of States",
  24899. height: math.unit(100000, "km")
  24900. },
  24901. {
  24902. name: "Pounder of Planets",
  24903. height: math.unit(2000000, "km")
  24904. },
  24905. ]
  24906. ))
  24907. characterMakers.push(() => makeCharacter(
  24908. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24909. {
  24910. front: {
  24911. height: math.unit(6, "feet"),
  24912. weight: math.unit(150, "lb"),
  24913. name: "Front",
  24914. image: {
  24915. source: "./media/characters/aj/front.svg",
  24916. extra: 2039 / 1562,
  24917. bottom: 40 / 2079
  24918. }
  24919. },
  24920. },
  24921. [
  24922. {
  24923. name: "Normal",
  24924. height: math.unit(11 + 6 / 12, "feet"),
  24925. default: true
  24926. },
  24927. {
  24928. name: "Megamacro",
  24929. height: math.unit(60, "megameters")
  24930. },
  24931. ]
  24932. ))
  24933. characterMakers.push(() => makeCharacter(
  24934. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24935. {
  24936. side: {
  24937. height: math.unit(31 + 8 / 12, "feet"),
  24938. weight: math.unit(75000, "kg"),
  24939. name: "Side",
  24940. image: {
  24941. source: "./media/characters/koros/side.svg",
  24942. extra: 1442 / 1297,
  24943. bottom: 122.7 / 1562
  24944. }
  24945. },
  24946. dicksKingsCrown: {
  24947. height: math.unit(6, "feet"),
  24948. name: "Dicks (King's Crown)",
  24949. image: {
  24950. source: "./media/characters/koros/dicks-kings-crown.svg"
  24951. }
  24952. },
  24953. dicksTailSet: {
  24954. height: math.unit(3, "feet"),
  24955. name: "Dicks (Tail Set)",
  24956. image: {
  24957. source: "./media/characters/koros/dicks-tail-set.svg"
  24958. }
  24959. },
  24960. dickCumming: {
  24961. height: math.unit(7.98, "feet"),
  24962. name: "Dick (Cumming)",
  24963. image: {
  24964. source: "./media/characters/koros/dick-cumming.svg"
  24965. }
  24966. },
  24967. dicksBack: {
  24968. height: math.unit(5.9, "feet"),
  24969. name: "Dicks (Back)",
  24970. image: {
  24971. source: "./media/characters/koros/dicks-back.svg"
  24972. }
  24973. },
  24974. dicksFront: {
  24975. height: math.unit(3.72, "feet"),
  24976. name: "Dicks (Front)",
  24977. image: {
  24978. source: "./media/characters/koros/dicks-front.svg"
  24979. }
  24980. },
  24981. dicksPeeking: {
  24982. height: math.unit(3.0, "feet"),
  24983. name: "Dicks (Peeking)",
  24984. image: {
  24985. source: "./media/characters/koros/dicks-peeking.svg"
  24986. }
  24987. },
  24988. eye: {
  24989. height: math.unit(1.7, "feet"),
  24990. name: "Eye",
  24991. image: {
  24992. source: "./media/characters/koros/eye.svg"
  24993. }
  24994. },
  24995. headFront: {
  24996. height: math.unit(11.69, "feet"),
  24997. name: "Head (Front)",
  24998. image: {
  24999. source: "./media/characters/koros/head-front.svg"
  25000. }
  25001. },
  25002. headSide: {
  25003. height: math.unit(14, "feet"),
  25004. name: "Head (Side)",
  25005. image: {
  25006. source: "./media/characters/koros/head-side.svg"
  25007. }
  25008. },
  25009. leg: {
  25010. height: math.unit(17, "feet"),
  25011. name: "Leg",
  25012. image: {
  25013. source: "./media/characters/koros/leg.svg"
  25014. }
  25015. },
  25016. mawSide: {
  25017. height: math.unit(12.8, "feet"),
  25018. name: "Maw (Side)",
  25019. image: {
  25020. source: "./media/characters/koros/maw-side.svg"
  25021. }
  25022. },
  25023. mawSpitting: {
  25024. height: math.unit(17, "feet"),
  25025. name: "Maw (Spitting)",
  25026. image: {
  25027. source: "./media/characters/koros/maw-spitting.svg"
  25028. }
  25029. },
  25030. slit: {
  25031. height: math.unit(2.8, "feet"),
  25032. name: "Slit",
  25033. image: {
  25034. source: "./media/characters/koros/slit.svg"
  25035. }
  25036. },
  25037. stomach: {
  25038. height: math.unit(6.8, "feet"),
  25039. capacity: math.unit(20, "people"),
  25040. name: "Stomach",
  25041. image: {
  25042. source: "./media/characters/koros/stomach.svg"
  25043. }
  25044. },
  25045. wingspanBottom: {
  25046. height: math.unit(114, "feet"),
  25047. name: "Wingspan (Bottom)",
  25048. image: {
  25049. source: "./media/characters/koros/wingspan-bottom.svg"
  25050. }
  25051. },
  25052. wingspanTop: {
  25053. height: math.unit(104, "feet"),
  25054. name: "Wingspan (Top)",
  25055. image: {
  25056. source: "./media/characters/koros/wingspan-top.svg"
  25057. }
  25058. },
  25059. },
  25060. [
  25061. {
  25062. name: "Normal",
  25063. height: math.unit(31 + 8 / 12, "feet"),
  25064. default: true
  25065. },
  25066. ]
  25067. ))
  25068. characterMakers.push(() => makeCharacter(
  25069. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25070. {
  25071. front: {
  25072. height: math.unit(18 + 5 / 12, "feet"),
  25073. weight: math.unit(3750, "kg"),
  25074. name: "Front",
  25075. image: {
  25076. source: "./media/characters/vexx/front.svg",
  25077. extra: 426 / 396,
  25078. bottom: 31.5 / 458
  25079. }
  25080. },
  25081. maw: {
  25082. height: math.unit(6, "feet"),
  25083. name: "Maw",
  25084. image: {
  25085. source: "./media/characters/vexx/maw.svg"
  25086. }
  25087. },
  25088. },
  25089. [
  25090. {
  25091. name: "Normal",
  25092. height: math.unit(18 + 5 / 12, "feet"),
  25093. default: true
  25094. },
  25095. ]
  25096. ))
  25097. characterMakers.push(() => makeCharacter(
  25098. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25099. {
  25100. front: {
  25101. height: math.unit(17 + 6 / 12, "feet"),
  25102. weight: math.unit(150, "lb"),
  25103. name: "Front",
  25104. image: {
  25105. source: "./media/characters/baadra/front.svg",
  25106. extra: 3137 / 2890,
  25107. bottom: 168.4 / 3305
  25108. }
  25109. },
  25110. back: {
  25111. height: math.unit(17 + 6 / 12, "feet"),
  25112. weight: math.unit(150, "lb"),
  25113. name: "Back",
  25114. image: {
  25115. source: "./media/characters/baadra/back.svg",
  25116. extra: 3142 / 2890,
  25117. bottom: 220 / 3371
  25118. }
  25119. },
  25120. head: {
  25121. height: math.unit(5.45, "feet"),
  25122. name: "Head",
  25123. image: {
  25124. source: "./media/characters/baadra/head.svg"
  25125. }
  25126. },
  25127. headAngry: {
  25128. height: math.unit(4.95, "feet"),
  25129. name: "Head (Angry)",
  25130. image: {
  25131. source: "./media/characters/baadra/head-angry.svg"
  25132. }
  25133. },
  25134. headOpen: {
  25135. height: math.unit(6, "feet"),
  25136. name: "Head (Open)",
  25137. image: {
  25138. source: "./media/characters/baadra/head-open.svg"
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Normal",
  25145. height: math.unit(17 + 6 / 12, "feet"),
  25146. default: true
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25152. {
  25153. front: {
  25154. height: math.unit(7 + 3 / 12, "feet"),
  25155. weight: math.unit(180, "lb"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/juri/front.svg",
  25159. extra: 1401 / 1237,
  25160. bottom: 18.5 / 1418
  25161. }
  25162. },
  25163. side: {
  25164. height: math.unit(7 + 3 / 12, "feet"),
  25165. weight: math.unit(180, "lb"),
  25166. name: "Side",
  25167. image: {
  25168. source: "./media/characters/juri/side.svg",
  25169. extra: 1424 / 1242,
  25170. bottom: 18.5 / 1447
  25171. }
  25172. },
  25173. sitting: {
  25174. height: math.unit(6, "feet"),
  25175. weight: math.unit(180, "lb"),
  25176. name: "Sitting",
  25177. image: {
  25178. source: "./media/characters/juri/sitting.svg",
  25179. extra: 1270 / 1143,
  25180. bottom: 100 / 1343
  25181. }
  25182. },
  25183. back: {
  25184. height: math.unit(7 + 3 / 12, "feet"),
  25185. weight: math.unit(180, "lb"),
  25186. name: "Back",
  25187. image: {
  25188. source: "./media/characters/juri/back.svg",
  25189. extra: 1377 / 1240,
  25190. bottom: 23.7 / 1405
  25191. }
  25192. },
  25193. maw: {
  25194. height: math.unit(2.8, "feet"),
  25195. name: "Maw",
  25196. image: {
  25197. source: "./media/characters/juri/maw.svg"
  25198. }
  25199. },
  25200. stomach: {
  25201. height: math.unit(0.89, "feet"),
  25202. capacity: math.unit(4, "liters"),
  25203. name: "Stomach",
  25204. image: {
  25205. source: "./media/characters/juri/stomach.svg"
  25206. }
  25207. },
  25208. },
  25209. [
  25210. {
  25211. name: "Normal",
  25212. height: math.unit(7 + 3 / 12, "feet"),
  25213. default: true
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25219. {
  25220. fox: {
  25221. height: math.unit(5 + 6 / 12, "feet"),
  25222. weight: math.unit(140, "lb"),
  25223. name: "Fox",
  25224. image: {
  25225. source: "./media/characters/maxene-sita/fox.svg",
  25226. extra: 146 / 138,
  25227. bottom: 2.1 / 148.19
  25228. }
  25229. },
  25230. foxLaying: {
  25231. height: math.unit(1.70, "feet"),
  25232. weight: math.unit(140, "lb"),
  25233. name: "Fox (Laying)",
  25234. image: {
  25235. source: "./media/characters/maxene-sita/fox-laying.svg",
  25236. extra: 910 / 572,
  25237. bottom: 71 / 981
  25238. }
  25239. },
  25240. kitsune: {
  25241. height: math.unit(10, "feet"),
  25242. weight: math.unit(800, "lb"),
  25243. name: "Kitsune",
  25244. image: {
  25245. source: "./media/characters/maxene-sita/kitsune.svg",
  25246. extra: 185 / 176,
  25247. bottom: 4.7 / 189.9
  25248. }
  25249. },
  25250. hellhound: {
  25251. height: math.unit(10, "feet"),
  25252. weight: math.unit(700, "lb"),
  25253. name: "Hellhound",
  25254. image: {
  25255. source: "./media/characters/maxene-sita/hellhound.svg",
  25256. extra: 1600 / 1545,
  25257. bottom: 81 / 1681
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Normal",
  25264. height: math.unit(5 + 6 / 12, "feet"),
  25265. default: true
  25266. },
  25267. ]
  25268. ))
  25269. characterMakers.push(() => makeCharacter(
  25270. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25271. {
  25272. front: {
  25273. height: math.unit(3 + 4 / 12, "feet"),
  25274. weight: math.unit(70, "lb"),
  25275. name: "Front",
  25276. image: {
  25277. source: "./media/characters/maia/front.svg",
  25278. extra: 227 / 219.5,
  25279. bottom: 40 / 267
  25280. }
  25281. },
  25282. back: {
  25283. height: math.unit(3 + 4 / 12, "feet"),
  25284. weight: math.unit(70, "lb"),
  25285. name: "Back",
  25286. image: {
  25287. source: "./media/characters/maia/back.svg",
  25288. extra: 237 / 225
  25289. }
  25290. },
  25291. },
  25292. [
  25293. {
  25294. name: "Normal",
  25295. height: math.unit(3 + 4 / 12, "feet"),
  25296. default: true
  25297. },
  25298. ]
  25299. ))
  25300. characterMakers.push(() => makeCharacter(
  25301. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25302. {
  25303. front: {
  25304. height: math.unit(5 + 10 / 12, "feet"),
  25305. weight: math.unit(197, "lb"),
  25306. name: "Front",
  25307. image: {
  25308. source: "./media/characters/jabaro/front.svg",
  25309. extra: 225 / 216,
  25310. bottom: 5.06 / 230
  25311. }
  25312. },
  25313. back: {
  25314. height: math.unit(5 + 10 / 12, "feet"),
  25315. weight: math.unit(197, "lb"),
  25316. name: "Back",
  25317. image: {
  25318. source: "./media/characters/jabaro/back.svg",
  25319. extra: 225 / 219,
  25320. bottom: 1.9 / 227
  25321. }
  25322. },
  25323. },
  25324. [
  25325. {
  25326. name: "Normal",
  25327. height: math.unit(5 + 10 / 12, "feet"),
  25328. default: true
  25329. },
  25330. ]
  25331. ))
  25332. characterMakers.push(() => makeCharacter(
  25333. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25334. {
  25335. front: {
  25336. height: math.unit(5 + 8 / 12, "feet"),
  25337. weight: math.unit(139, "lb"),
  25338. name: "Front",
  25339. image: {
  25340. source: "./media/characters/risa/front.svg",
  25341. extra: 270 / 260,
  25342. bottom: 11.2 / 282
  25343. }
  25344. },
  25345. back: {
  25346. height: math.unit(5 + 8 / 12, "feet"),
  25347. weight: math.unit(139, "lb"),
  25348. name: "Back",
  25349. image: {
  25350. source: "./media/characters/risa/back.svg",
  25351. extra: 264 / 255,
  25352. bottom: 4 / 268
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(5 + 8 / 12, "feet"),
  25360. default: true
  25361. },
  25362. ]
  25363. ))
  25364. characterMakers.push(() => makeCharacter(
  25365. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25366. {
  25367. front: {
  25368. height: math.unit(2 + 11 / 12, "feet"),
  25369. weight: math.unit(30, "lb"),
  25370. name: "Front",
  25371. image: {
  25372. source: "./media/characters/weatley/front.svg",
  25373. bottom: 10.7 / 414,
  25374. extra: 403.5 / 362
  25375. }
  25376. },
  25377. back: {
  25378. height: math.unit(2 + 11 / 12, "feet"),
  25379. weight: math.unit(30, "lb"),
  25380. name: "Back",
  25381. image: {
  25382. source: "./media/characters/weatley/back.svg",
  25383. bottom: 10.7 / 414,
  25384. extra: 403.5 / 362
  25385. }
  25386. },
  25387. },
  25388. [
  25389. {
  25390. name: "Normal",
  25391. height: math.unit(2 + 11 / 12, "feet"),
  25392. default: true
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25398. {
  25399. front: {
  25400. height: math.unit(5 + 2 / 12, "feet"),
  25401. weight: math.unit(50, "kg"),
  25402. name: "Front",
  25403. image: {
  25404. source: "./media/characters/mercury-crescent/front.svg",
  25405. extra: 1088 / 1033,
  25406. bottom: 18.9 / 1109
  25407. }
  25408. },
  25409. },
  25410. [
  25411. {
  25412. name: "Normal",
  25413. height: math.unit(5 + 2 / 12, "feet"),
  25414. default: true
  25415. },
  25416. ]
  25417. ))
  25418. characterMakers.push(() => makeCharacter(
  25419. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25420. {
  25421. front: {
  25422. height: math.unit(2, "feet"),
  25423. weight: math.unit(15, "kg"),
  25424. name: "Front",
  25425. image: {
  25426. source: "./media/characters/diamond-jones/front.svg",
  25427. extra: 727/723,
  25428. bottom: 46/773
  25429. }
  25430. },
  25431. },
  25432. [
  25433. {
  25434. name: "Normal",
  25435. height: math.unit(2, "feet"),
  25436. default: true
  25437. },
  25438. ]
  25439. ))
  25440. characterMakers.push(() => makeCharacter(
  25441. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25442. {
  25443. front: {
  25444. height: math.unit(3, "feet"),
  25445. weight: math.unit(30, "kg"),
  25446. name: "Front",
  25447. image: {
  25448. source: "./media/characters/sweet-bit/front.svg",
  25449. extra: 675 / 567,
  25450. bottom: 27.7 / 703
  25451. }
  25452. },
  25453. },
  25454. [
  25455. {
  25456. name: "Normal",
  25457. height: math.unit(3, "feet"),
  25458. default: true
  25459. },
  25460. ]
  25461. ))
  25462. characterMakers.push(() => makeCharacter(
  25463. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25464. {
  25465. side: {
  25466. height: math.unit(9.178, "feet"),
  25467. weight: math.unit(500, "lb"),
  25468. name: "Side",
  25469. image: {
  25470. source: "./media/characters/umbrazen/side.svg",
  25471. extra: 1730 / 1473,
  25472. bottom: 34.6 / 1765
  25473. }
  25474. },
  25475. },
  25476. [
  25477. {
  25478. name: "Normal",
  25479. height: math.unit(9.178, "feet"),
  25480. default: true
  25481. },
  25482. ]
  25483. ))
  25484. characterMakers.push(() => makeCharacter(
  25485. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25486. {
  25487. front: {
  25488. height: math.unit(10, "feet"),
  25489. weight: math.unit(750, "lb"),
  25490. name: "Front",
  25491. image: {
  25492. source: "./media/characters/arlist/front.svg",
  25493. extra: 961 / 778,
  25494. bottom: 6.2 / 986
  25495. }
  25496. },
  25497. },
  25498. [
  25499. {
  25500. name: "Normal",
  25501. height: math.unit(10, "feet"),
  25502. default: true
  25503. },
  25504. ]
  25505. ))
  25506. characterMakers.push(() => makeCharacter(
  25507. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25508. {
  25509. front: {
  25510. height: math.unit(5 + 1 / 12, "feet"),
  25511. weight: math.unit(110, "lb"),
  25512. name: "Front",
  25513. image: {
  25514. source: "./media/characters/aradel/front.svg",
  25515. extra: 324 / 303,
  25516. bottom: 3.6 / 329.4
  25517. }
  25518. },
  25519. },
  25520. [
  25521. {
  25522. name: "Normal",
  25523. height: math.unit(5 + 1 / 12, "feet"),
  25524. default: true
  25525. },
  25526. ]
  25527. ))
  25528. characterMakers.push(() => makeCharacter(
  25529. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25530. {
  25531. front: {
  25532. height: math.unit(3 + 8 / 12, "feet"),
  25533. weight: math.unit(50, "lb"),
  25534. name: "Front",
  25535. image: {
  25536. source: "./media/characters/serryn/front.svg",
  25537. extra: 1792 / 1656,
  25538. bottom: 43.5 / 1840
  25539. }
  25540. },
  25541. },
  25542. [
  25543. {
  25544. name: "Normal",
  25545. height: math.unit(3 + 8 / 12, "feet"),
  25546. default: true
  25547. },
  25548. ]
  25549. ))
  25550. characterMakers.push(() => makeCharacter(
  25551. { name: "Xavier Thyme" },
  25552. {
  25553. front: {
  25554. height: math.unit(7 + 10 / 12, "feet"),
  25555. weight: math.unit(255, "lb"),
  25556. name: "Front",
  25557. image: {
  25558. source: "./media/characters/xavier-thyme/front.svg",
  25559. extra: 3733 / 3642,
  25560. bottom: 131 / 3869
  25561. }
  25562. },
  25563. frontRaven: {
  25564. height: math.unit(7 + 10 / 12, "feet"),
  25565. weight: math.unit(255, "lb"),
  25566. name: "Front (Raven)",
  25567. image: {
  25568. source: "./media/characters/xavier-thyme/front-raven.svg",
  25569. extra: 4385 / 3642,
  25570. bottom: 131 / 4517
  25571. }
  25572. },
  25573. },
  25574. [
  25575. {
  25576. name: "Normal",
  25577. height: math.unit(7 + 10 / 12, "feet"),
  25578. default: true
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25584. {
  25585. front: {
  25586. height: math.unit(1.6, "m"),
  25587. weight: math.unit(50, "kg"),
  25588. name: "Front",
  25589. image: {
  25590. source: "./media/characters/kiki/front.svg",
  25591. extra: 4682 / 3610,
  25592. bottom: 115 / 4777
  25593. }
  25594. },
  25595. },
  25596. [
  25597. {
  25598. name: "Normal",
  25599. height: math.unit(1.6, "meters"),
  25600. default: true
  25601. },
  25602. ]
  25603. ))
  25604. characterMakers.push(() => makeCharacter(
  25605. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25606. {
  25607. front: {
  25608. height: math.unit(50, "m"),
  25609. weight: math.unit(500, "tonnes"),
  25610. name: "Front",
  25611. image: {
  25612. source: "./media/characters/ryoko/front.svg",
  25613. extra: 4632 / 3926,
  25614. bottom: 193 / 4823
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(50, "meters"),
  25622. default: true
  25623. },
  25624. ]
  25625. ))
  25626. characterMakers.push(() => makeCharacter(
  25627. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25628. {
  25629. front: {
  25630. height: math.unit(30, "m"),
  25631. weight: math.unit(22, "tonnes"),
  25632. name: "Front",
  25633. image: {
  25634. source: "./media/characters/elio/front.svg",
  25635. extra: 4582 / 3720,
  25636. bottom: 236 / 4828
  25637. }
  25638. },
  25639. },
  25640. [
  25641. {
  25642. name: "Normal",
  25643. height: math.unit(30, "meters"),
  25644. default: true
  25645. },
  25646. ]
  25647. ))
  25648. characterMakers.push(() => makeCharacter(
  25649. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25650. {
  25651. front: {
  25652. height: math.unit(6 + 3 / 12, "feet"),
  25653. weight: math.unit(120, "lb"),
  25654. name: "Front",
  25655. image: {
  25656. source: "./media/characters/azura/front.svg",
  25657. extra: 1149 / 1135,
  25658. bottom: 45 / 1194
  25659. }
  25660. },
  25661. frontClothed: {
  25662. height: math.unit(6 + 3 / 12, "feet"),
  25663. weight: math.unit(120, "lb"),
  25664. name: "Front (Clothed)",
  25665. image: {
  25666. source: "./media/characters/azura/front-clothed.svg",
  25667. extra: 1149 / 1135,
  25668. bottom: 45 / 1194
  25669. }
  25670. },
  25671. },
  25672. [
  25673. {
  25674. name: "Normal",
  25675. height: math.unit(6 + 3 / 12, "feet"),
  25676. default: true
  25677. },
  25678. {
  25679. name: "Macro",
  25680. height: math.unit(20 + 6 / 12, "feet")
  25681. },
  25682. {
  25683. name: "Megamacro",
  25684. height: math.unit(12, "miles")
  25685. },
  25686. {
  25687. name: "Gigamacro",
  25688. height: math.unit(10000, "miles")
  25689. },
  25690. {
  25691. name: "Teramacro",
  25692. height: math.unit(900000, "miles")
  25693. },
  25694. ]
  25695. ))
  25696. characterMakers.push(() => makeCharacter(
  25697. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25698. {
  25699. front: {
  25700. height: math.unit(12, "feet"),
  25701. weight: math.unit(1, "ton"),
  25702. capacity: math.unit(660000, "gallons"),
  25703. name: "Front",
  25704. image: {
  25705. source: "./media/characters/zeus/front.svg",
  25706. extra: 5005 / 4717,
  25707. bottom: 363 / 5388
  25708. }
  25709. },
  25710. },
  25711. [
  25712. {
  25713. name: "Normal",
  25714. height: math.unit(12, "feet")
  25715. },
  25716. {
  25717. name: "Preferred Size",
  25718. height: math.unit(0.5, "miles"),
  25719. default: true
  25720. },
  25721. {
  25722. name: "Giga Horse",
  25723. height: math.unit(300, "miles")
  25724. },
  25725. {
  25726. name: "Riding Planets",
  25727. height: math.unit(30, "megameters")
  25728. },
  25729. {
  25730. name: "Cosmic Giant",
  25731. height: math.unit(3, "zettameters")
  25732. },
  25733. {
  25734. name: "Breeding God",
  25735. height: math.unit(9.92e22, "yottameters")
  25736. },
  25737. ]
  25738. ))
  25739. characterMakers.push(() => makeCharacter(
  25740. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25741. {
  25742. side: {
  25743. height: math.unit(9, "feet"),
  25744. weight: math.unit(1500, "kg"),
  25745. name: "Side",
  25746. image: {
  25747. source: "./media/characters/fang/side.svg",
  25748. extra: 924 / 866,
  25749. bottom: 47.5 / 972.3
  25750. }
  25751. },
  25752. },
  25753. [
  25754. {
  25755. name: "Normal",
  25756. height: math.unit(9, "feet"),
  25757. default: true
  25758. },
  25759. {
  25760. name: "Macro",
  25761. height: math.unit(75 + 6 / 12, "feet")
  25762. },
  25763. {
  25764. name: "Teramacro",
  25765. height: math.unit(50000, "miles")
  25766. },
  25767. ]
  25768. ))
  25769. characterMakers.push(() => makeCharacter(
  25770. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25771. {
  25772. front: {
  25773. height: math.unit(10, "feet"),
  25774. weight: math.unit(2, "tons"),
  25775. name: "Front",
  25776. image: {
  25777. source: "./media/characters/rekhit/front.svg",
  25778. extra: 2796 / 2590,
  25779. bottom: 225 / 3022
  25780. }
  25781. },
  25782. },
  25783. [
  25784. {
  25785. name: "Normal",
  25786. height: math.unit(10, "feet"),
  25787. default: true
  25788. },
  25789. {
  25790. name: "Macro",
  25791. height: math.unit(500, "feet")
  25792. },
  25793. ]
  25794. ))
  25795. characterMakers.push(() => makeCharacter(
  25796. { name: "Dahlia Verrick" },
  25797. {
  25798. front: {
  25799. height: math.unit(7 + 6.451 / 12, "feet"),
  25800. weight: math.unit(310, "lb"),
  25801. name: "Front",
  25802. image: {
  25803. source: "./media/characters/dahlia-verrick/front.svg",
  25804. extra: 1488 / 1365,
  25805. bottom: 6.2 / 1495
  25806. }
  25807. },
  25808. back: {
  25809. height: math.unit(7 + 6.451 / 12, "feet"),
  25810. weight: math.unit(310, "lb"),
  25811. name: "Back",
  25812. image: {
  25813. source: "./media/characters/dahlia-verrick/back.svg",
  25814. extra: 1472 / 1351,
  25815. bottom: 5.28 / 1477
  25816. }
  25817. },
  25818. frontBusiness: {
  25819. height: math.unit(7 + 6.451 / 12, "feet"),
  25820. weight: math.unit(200, "lb"),
  25821. name: "Front (Business)",
  25822. image: {
  25823. source: "./media/characters/dahlia-verrick/front-business.svg",
  25824. extra: 1478 / 1381,
  25825. bottom: 5.5 / 1484
  25826. }
  25827. },
  25828. frontCasual: {
  25829. height: math.unit(7 + 6.451 / 12, "feet"),
  25830. weight: math.unit(200, "lb"),
  25831. name: "Front (Casual)",
  25832. image: {
  25833. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25834. extra: 1478 / 1381,
  25835. bottom: 5.5 / 1484
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Travel-Sized",
  25842. height: math.unit(7.45, "inches")
  25843. },
  25844. {
  25845. name: "Normal",
  25846. height: math.unit(7 + 6.451 / 12, "feet"),
  25847. default: true
  25848. },
  25849. {
  25850. name: "Hitting the Town",
  25851. height: math.unit(37 + 8 / 12, "feet")
  25852. },
  25853. {
  25854. name: "Stomp in the Suburbs",
  25855. height: math.unit(964 + 9.728 / 12, "feet")
  25856. },
  25857. {
  25858. name: "Sit on the City",
  25859. height: math.unit(61747 + 10.592 / 12, "feet")
  25860. },
  25861. {
  25862. name: "Glomp the Globe",
  25863. height: math.unit(252919327 + 4.832 / 12, "feet")
  25864. },
  25865. ]
  25866. ))
  25867. characterMakers.push(() => makeCharacter(
  25868. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25869. {
  25870. front: {
  25871. height: math.unit(6 + 4 / 12, "feet"),
  25872. weight: math.unit(320, "lb"),
  25873. name: "Front",
  25874. image: {
  25875. source: "./media/characters/balina-mahigan/front.svg",
  25876. extra: 447 / 428,
  25877. bottom: 18 / 466
  25878. }
  25879. },
  25880. back: {
  25881. height: math.unit(6 + 4 / 12, "feet"),
  25882. weight: math.unit(320, "lb"),
  25883. name: "Back",
  25884. image: {
  25885. source: "./media/characters/balina-mahigan/back.svg",
  25886. extra: 445 / 428,
  25887. bottom: 4.07 / 448
  25888. }
  25889. },
  25890. arm: {
  25891. height: math.unit(1.88, "feet"),
  25892. name: "Arm",
  25893. image: {
  25894. source: "./media/characters/balina-mahigan/arm.svg"
  25895. }
  25896. },
  25897. backPort: {
  25898. height: math.unit(0.685, "feet"),
  25899. name: "Back Port",
  25900. image: {
  25901. source: "./media/characters/balina-mahigan/back-port.svg"
  25902. }
  25903. },
  25904. hoofpaw: {
  25905. height: math.unit(1.41, "feet"),
  25906. name: "Hoofpaw",
  25907. image: {
  25908. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25909. }
  25910. },
  25911. leftHandBack: {
  25912. height: math.unit(0.938, "feet"),
  25913. name: "Left Hand (Back)",
  25914. image: {
  25915. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25916. }
  25917. },
  25918. leftHandFront: {
  25919. height: math.unit(0.938, "feet"),
  25920. name: "Left Hand (Front)",
  25921. image: {
  25922. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25923. }
  25924. },
  25925. rightHandBack: {
  25926. height: math.unit(0.95, "feet"),
  25927. name: "Right Hand (Back)",
  25928. image: {
  25929. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25930. }
  25931. },
  25932. rightHandFront: {
  25933. height: math.unit(0.95, "feet"),
  25934. name: "Right Hand (Front)",
  25935. image: {
  25936. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25937. }
  25938. },
  25939. },
  25940. [
  25941. {
  25942. name: "Normal",
  25943. height: math.unit(6 + 4 / 12, "feet"),
  25944. default: true
  25945. },
  25946. ]
  25947. ))
  25948. characterMakers.push(() => makeCharacter(
  25949. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25950. {
  25951. front: {
  25952. height: math.unit(6, "feet"),
  25953. weight: math.unit(320, "lb"),
  25954. name: "Front",
  25955. image: {
  25956. source: "./media/characters/balina-mejeri/front.svg",
  25957. extra: 517 / 488,
  25958. bottom: 44.2 / 561
  25959. }
  25960. },
  25961. },
  25962. [
  25963. {
  25964. name: "Normal",
  25965. height: math.unit(6 + 4 / 12, "feet")
  25966. },
  25967. {
  25968. name: "Business",
  25969. height: math.unit(155, "feet"),
  25970. default: true
  25971. },
  25972. ]
  25973. ))
  25974. characterMakers.push(() => makeCharacter(
  25975. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25976. {
  25977. kneeling: {
  25978. height: math.unit(6 + 4 / 12, "feet"),
  25979. weight: math.unit(300 * 20, "lb"),
  25980. name: "Kneeling",
  25981. image: {
  25982. source: "./media/characters/balbarian/kneeling.svg",
  25983. extra: 922 / 862,
  25984. bottom: 42.4 / 965
  25985. }
  25986. },
  25987. },
  25988. [
  25989. {
  25990. name: "Normal",
  25991. height: math.unit(6 + 4 / 12, "feet")
  25992. },
  25993. {
  25994. name: "Treasured",
  25995. height: math.unit(18 + 9 / 12, "feet"),
  25996. default: true
  25997. },
  25998. {
  25999. name: "Macro",
  26000. height: math.unit(900, "feet")
  26001. },
  26002. ]
  26003. ))
  26004. characterMakers.push(() => makeCharacter(
  26005. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26006. {
  26007. front: {
  26008. height: math.unit(6 + 4 / 12, "feet"),
  26009. weight: math.unit(325, "lb"),
  26010. name: "Front",
  26011. image: {
  26012. source: "./media/characters/balina-amarini/front.svg",
  26013. extra: 415 / 403,
  26014. bottom: 19 / 433.4
  26015. }
  26016. },
  26017. back: {
  26018. height: math.unit(6 + 4 / 12, "feet"),
  26019. weight: math.unit(325, "lb"),
  26020. name: "Back",
  26021. image: {
  26022. source: "./media/characters/balina-amarini/back.svg",
  26023. extra: 415 / 403,
  26024. bottom: 13.5 / 432
  26025. }
  26026. },
  26027. overdrive: {
  26028. height: math.unit(6 + 4 / 12, "feet"),
  26029. weight: math.unit(400, "lb"),
  26030. name: "Overdrive",
  26031. image: {
  26032. source: "./media/characters/balina-amarini/overdrive.svg",
  26033. extra: 269 / 259,
  26034. bottom: 12 / 282
  26035. }
  26036. },
  26037. },
  26038. [
  26039. {
  26040. name: "Boom",
  26041. height: math.unit(9 + 10 / 12, "feet"),
  26042. default: true
  26043. },
  26044. {
  26045. name: "Macro",
  26046. height: math.unit(280, "feet")
  26047. },
  26048. ]
  26049. ))
  26050. characterMakers.push(() => makeCharacter(
  26051. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26052. {
  26053. goddess: {
  26054. height: math.unit(600, "feet"),
  26055. weight: math.unit(2000000, "tons"),
  26056. name: "Goddess",
  26057. image: {
  26058. source: "./media/characters/lady-kubwa/goddess.svg",
  26059. extra: 1240.5 / 1223,
  26060. bottom: 22 / 1263
  26061. }
  26062. },
  26063. goddesser: {
  26064. height: math.unit(900, "feet"),
  26065. weight: math.unit(20000000, "lb"),
  26066. name: "Goddess-er",
  26067. image: {
  26068. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26069. extra: 899 / 888,
  26070. bottom: 12.6 / 912
  26071. }
  26072. },
  26073. },
  26074. [
  26075. {
  26076. name: "Macro",
  26077. height: math.unit(600, "feet"),
  26078. default: true
  26079. },
  26080. {
  26081. name: "Megamacro",
  26082. height: math.unit(250, "miles")
  26083. },
  26084. ]
  26085. ))
  26086. characterMakers.push(() => makeCharacter(
  26087. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26088. {
  26089. front: {
  26090. height: math.unit(7 + 7 / 12, "feet"),
  26091. weight: math.unit(250, "lb"),
  26092. name: "Front",
  26093. image: {
  26094. source: "./media/characters/tala-grovehorn/front.svg",
  26095. extra: 2636 / 2525,
  26096. bottom: 147 / 2781
  26097. }
  26098. },
  26099. back: {
  26100. height: math.unit(7 + 7 / 12, "feet"),
  26101. weight: math.unit(250, "lb"),
  26102. name: "Back",
  26103. image: {
  26104. source: "./media/characters/tala-grovehorn/back.svg",
  26105. extra: 2635 / 2539,
  26106. bottom: 100 / 2732.8
  26107. }
  26108. },
  26109. mouth: {
  26110. height: math.unit(1.15, "feet"),
  26111. name: "Mouth",
  26112. image: {
  26113. source: "./media/characters/tala-grovehorn/mouth.svg"
  26114. }
  26115. },
  26116. dick: {
  26117. height: math.unit(2.36, "feet"),
  26118. name: "Dick",
  26119. image: {
  26120. source: "./media/characters/tala-grovehorn/dick.svg"
  26121. }
  26122. },
  26123. slit: {
  26124. height: math.unit(0.61, "feet"),
  26125. name: "Slit",
  26126. image: {
  26127. source: "./media/characters/tala-grovehorn/slit.svg"
  26128. }
  26129. },
  26130. },
  26131. [
  26132. ]
  26133. ))
  26134. characterMakers.push(() => makeCharacter(
  26135. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26136. {
  26137. front: {
  26138. height: math.unit(7 + 7 / 12, "feet"),
  26139. weight: math.unit(225, "lb"),
  26140. name: "Front",
  26141. image: {
  26142. source: "./media/characters/epona/front.svg",
  26143. extra: 2445 / 2290,
  26144. bottom: 251 / 2696
  26145. }
  26146. },
  26147. back: {
  26148. height: math.unit(7 + 7 / 12, "feet"),
  26149. weight: math.unit(225, "lb"),
  26150. name: "Back",
  26151. image: {
  26152. source: "./media/characters/epona/back.svg",
  26153. extra: 2546 / 2408,
  26154. bottom: 44 / 2589
  26155. }
  26156. },
  26157. genitals: {
  26158. height: math.unit(1.5, "feet"),
  26159. name: "Genitals",
  26160. image: {
  26161. source: "./media/characters/epona/genitals.svg"
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(7 + 7 / 12, "feet"),
  26169. default: true
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(7, "feet"),
  26178. weight: math.unit(518, "lb"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/avia-bloodbourn/front.svg",
  26182. extra: 1466 / 1350,
  26183. bottom: 65 / 1527
  26184. }
  26185. },
  26186. },
  26187. [
  26188. ]
  26189. ))
  26190. characterMakers.push(() => makeCharacter(
  26191. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26192. {
  26193. front: {
  26194. height: math.unit(9.35, "feet"),
  26195. weight: math.unit(600, "lb"),
  26196. name: "Front",
  26197. image: {
  26198. source: "./media/characters/amera/front.svg",
  26199. extra: 891 / 818,
  26200. bottom: 30 / 922.7
  26201. }
  26202. },
  26203. back: {
  26204. height: math.unit(9.35, "feet"),
  26205. weight: math.unit(600, "lb"),
  26206. name: "Back",
  26207. image: {
  26208. source: "./media/characters/amera/back.svg",
  26209. extra: 876 / 824,
  26210. bottom: 6.8 / 884
  26211. }
  26212. },
  26213. dick: {
  26214. height: math.unit(2.14, "feet"),
  26215. name: "Dick",
  26216. image: {
  26217. source: "./media/characters/amera/dick.svg"
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(9.35, "feet"),
  26225. default: true
  26226. },
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26231. {
  26232. kneeling: {
  26233. height: math.unit(3 + 4 / 12, "feet"),
  26234. weight: math.unit(90, "lb"),
  26235. name: "Kneeling",
  26236. image: {
  26237. source: "./media/characters/rosewen/kneeling.svg",
  26238. extra: 1835 / 1571,
  26239. bottom: 27.7 / 1862
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(3 + 4 / 12, "feet"),
  26247. default: true
  26248. },
  26249. ]
  26250. ))
  26251. characterMakers.push(() => makeCharacter(
  26252. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26253. {
  26254. front: {
  26255. height: math.unit(5 + 10 / 12, "feet"),
  26256. weight: math.unit(200, "lb"),
  26257. name: "Front",
  26258. image: {
  26259. source: "./media/characters/sabah/front.svg",
  26260. extra: 849 / 763,
  26261. bottom: 33.9 / 881
  26262. }
  26263. },
  26264. },
  26265. [
  26266. {
  26267. name: "Normal",
  26268. height: math.unit(5 + 10 / 12, "feet"),
  26269. default: true
  26270. },
  26271. ]
  26272. ))
  26273. characterMakers.push(() => makeCharacter(
  26274. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26275. {
  26276. front: {
  26277. height: math.unit(3 + 5 / 12, "feet"),
  26278. weight: math.unit(40, "kg"),
  26279. name: "Front",
  26280. image: {
  26281. source: "./media/characters/purple-flame/front.svg",
  26282. extra: 1577 / 1412,
  26283. bottom: 97 / 1694
  26284. }
  26285. },
  26286. frontDressed: {
  26287. height: math.unit(3 + 5 / 12, "feet"),
  26288. weight: math.unit(40, "kg"),
  26289. name: "Front (Dressed)",
  26290. image: {
  26291. source: "./media/characters/purple-flame/front-dressed.svg",
  26292. extra: 1577 / 1412,
  26293. bottom: 97 / 1694
  26294. }
  26295. },
  26296. headphones: {
  26297. height: math.unit(0.85, "feet"),
  26298. name: "Headphones",
  26299. image: {
  26300. source: "./media/characters/purple-flame/headphones.svg"
  26301. }
  26302. },
  26303. },
  26304. [
  26305. {
  26306. name: "Really Small",
  26307. height: math.unit(5, "cm")
  26308. },
  26309. {
  26310. name: "Micro",
  26311. height: math.unit(1 + 5 / 12, "feet")
  26312. },
  26313. {
  26314. name: "Normal",
  26315. height: math.unit(3 + 5 / 12, "feet"),
  26316. default: true
  26317. },
  26318. {
  26319. name: "Minimacro",
  26320. height: math.unit(125, "feet")
  26321. },
  26322. {
  26323. name: "Macro",
  26324. height: math.unit(0.5, "miles")
  26325. },
  26326. {
  26327. name: "Megamacro",
  26328. height: math.unit(50, "miles")
  26329. },
  26330. {
  26331. name: "Gigantic",
  26332. height: math.unit(750, "miles")
  26333. },
  26334. {
  26335. name: "Planetary",
  26336. height: math.unit(15000, "miles")
  26337. },
  26338. ]
  26339. ))
  26340. characterMakers.push(() => makeCharacter(
  26341. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26342. {
  26343. front: {
  26344. height: math.unit(14, "feet"),
  26345. weight: math.unit(959, "lb"),
  26346. name: "Front",
  26347. image: {
  26348. source: "./media/characters/arsenal/front.svg",
  26349. extra: 2357 / 2157,
  26350. bottom: 93 / 2458
  26351. }
  26352. },
  26353. },
  26354. [
  26355. {
  26356. name: "Normal",
  26357. height: math.unit(14, "feet"),
  26358. default: true
  26359. },
  26360. ]
  26361. ))
  26362. characterMakers.push(() => makeCharacter(
  26363. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26364. {
  26365. front: {
  26366. height: math.unit(6, "feet"),
  26367. weight: math.unit(150, "lb"),
  26368. name: "Front",
  26369. image: {
  26370. source: "./media/characters/adira/front.svg",
  26371. extra: 1078 / 1029,
  26372. bottom: 87 / 1166
  26373. }
  26374. },
  26375. },
  26376. [
  26377. {
  26378. name: "Micro",
  26379. height: math.unit(4, "inches"),
  26380. default: true
  26381. },
  26382. {
  26383. name: "Macro",
  26384. height: math.unit(50, "feet")
  26385. },
  26386. ]
  26387. ))
  26388. characterMakers.push(() => makeCharacter(
  26389. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26390. {
  26391. front: {
  26392. height: math.unit(16, "feet"),
  26393. weight: math.unit(1000, "lb"),
  26394. name: "Front",
  26395. image: {
  26396. source: "./media/characters/grim/front.svg",
  26397. extra: 622 / 614,
  26398. bottom: 18.1 / 642
  26399. }
  26400. },
  26401. back: {
  26402. height: math.unit(16, "feet"),
  26403. weight: math.unit(1000, "lb"),
  26404. name: "Back",
  26405. image: {
  26406. source: "./media/characters/grim/back.svg",
  26407. extra: 610.6 / 602,
  26408. bottom: 40.8 / 652
  26409. }
  26410. },
  26411. hunched: {
  26412. height: math.unit(9.75, "feet"),
  26413. weight: math.unit(1000, "lb"),
  26414. name: "Hunched",
  26415. image: {
  26416. source: "./media/characters/grim/hunched.svg",
  26417. extra: 304 / 297,
  26418. bottom: 35.4 / 394
  26419. }
  26420. },
  26421. },
  26422. [
  26423. {
  26424. name: "Normal",
  26425. height: math.unit(16, "feet"),
  26426. default: true
  26427. },
  26428. ]
  26429. ))
  26430. characterMakers.push(() => makeCharacter(
  26431. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26432. {
  26433. front: {
  26434. height: math.unit(2.3, "meters"),
  26435. weight: math.unit(300, "lb"),
  26436. name: "Front",
  26437. image: {
  26438. source: "./media/characters/sinja/front-sfw.svg",
  26439. extra: 1393 / 1294,
  26440. bottom: 70 / 1463
  26441. }
  26442. },
  26443. frontNsfw: {
  26444. height: math.unit(2.3, "meters"),
  26445. weight: math.unit(300, "lb"),
  26446. name: "Front (NSFW)",
  26447. image: {
  26448. source: "./media/characters/sinja/front-nsfw.svg",
  26449. extra: 1393 / 1294,
  26450. bottom: 70 / 1463
  26451. }
  26452. },
  26453. back: {
  26454. height: math.unit(2.3, "meters"),
  26455. weight: math.unit(300, "lb"),
  26456. name: "Back",
  26457. image: {
  26458. source: "./media/characters/sinja/back.svg",
  26459. extra: 1393 / 1294,
  26460. bottom: 70 / 1463
  26461. }
  26462. },
  26463. head: {
  26464. height: math.unit(1.771, "feet"),
  26465. name: "Head",
  26466. image: {
  26467. source: "./media/characters/sinja/head.svg"
  26468. }
  26469. },
  26470. slit: {
  26471. height: math.unit(0.8, "feet"),
  26472. name: "Slit",
  26473. image: {
  26474. source: "./media/characters/sinja/slit.svg"
  26475. }
  26476. },
  26477. },
  26478. [
  26479. {
  26480. name: "Normal",
  26481. height: math.unit(2.3, "meters")
  26482. },
  26483. {
  26484. name: "Macro",
  26485. height: math.unit(91, "meters"),
  26486. default: true
  26487. },
  26488. {
  26489. name: "Megamacro",
  26490. height: math.unit(91440, "meters")
  26491. },
  26492. {
  26493. name: "Gigamacro",
  26494. height: math.unit(60960000, "meters")
  26495. },
  26496. {
  26497. name: "Teramacro",
  26498. height: math.unit(9144000000, "meters")
  26499. },
  26500. ]
  26501. ))
  26502. characterMakers.push(() => makeCharacter(
  26503. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26504. {
  26505. front: {
  26506. height: math.unit(1.7, "meters"),
  26507. weight: math.unit(130, "lb"),
  26508. name: "Front",
  26509. image: {
  26510. source: "./media/characters/kyu/front.svg",
  26511. extra: 415 / 395,
  26512. bottom: 5 / 420
  26513. }
  26514. },
  26515. head: {
  26516. height: math.unit(1.75, "feet"),
  26517. name: "Head",
  26518. image: {
  26519. source: "./media/characters/kyu/head.svg"
  26520. }
  26521. },
  26522. foot: {
  26523. height: math.unit(0.81, "feet"),
  26524. name: "Foot",
  26525. image: {
  26526. source: "./media/characters/kyu/foot.svg"
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(1.7, "meters")
  26534. },
  26535. {
  26536. name: "Macro",
  26537. height: math.unit(131, "feet"),
  26538. default: true
  26539. },
  26540. {
  26541. name: "Megamacro",
  26542. height: math.unit(91440, "meters")
  26543. },
  26544. {
  26545. name: "Gigamacro",
  26546. height: math.unit(60960000, "meters")
  26547. },
  26548. {
  26549. name: "Teramacro",
  26550. height: math.unit(9144000000, "meters")
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26556. {
  26557. front: {
  26558. height: math.unit(7 + 1 / 12, "feet"),
  26559. weight: math.unit(250, "lb"),
  26560. name: "Front",
  26561. image: {
  26562. source: "./media/characters/joey/front.svg",
  26563. extra: 1791 / 1537,
  26564. bottom: 28 / 1816
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Micro",
  26571. height: math.unit(3, "inches")
  26572. },
  26573. {
  26574. name: "Normal",
  26575. height: math.unit(7 + 1 / 12, "feet"),
  26576. default: true
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26582. {
  26583. front: {
  26584. height: math.unit(165, "cm"),
  26585. weight: math.unit(140, "lb"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/sam-evans/front.svg",
  26589. extra: 3417 / 3230,
  26590. bottom: 41.3 / 3417
  26591. }
  26592. },
  26593. frontSixTails: {
  26594. height: math.unit(165, "cm"),
  26595. weight: math.unit(140, "lb"),
  26596. name: "Front-six-tails",
  26597. image: {
  26598. source: "./media/characters/sam-evans/front-six-tails.svg",
  26599. extra: 3417 / 3230,
  26600. bottom: 41.3 / 3417
  26601. }
  26602. },
  26603. back: {
  26604. height: math.unit(165, "cm"),
  26605. weight: math.unit(140, "lb"),
  26606. name: "Back",
  26607. image: {
  26608. source: "./media/characters/sam-evans/back.svg",
  26609. extra: 3227 / 3032,
  26610. bottom: 6.8 / 3234
  26611. }
  26612. },
  26613. face: {
  26614. height: math.unit(0.68, "feet"),
  26615. name: "Face",
  26616. image: {
  26617. source: "./media/characters/sam-evans/face.svg"
  26618. }
  26619. },
  26620. },
  26621. [
  26622. {
  26623. name: "Normal",
  26624. height: math.unit(165, "cm"),
  26625. default: true
  26626. },
  26627. {
  26628. name: "Macro",
  26629. height: math.unit(100, "meters")
  26630. },
  26631. {
  26632. name: "Macro+",
  26633. height: math.unit(800, "meters")
  26634. },
  26635. {
  26636. name: "Macro++",
  26637. height: math.unit(3, "km")
  26638. },
  26639. {
  26640. name: "Macro+++",
  26641. height: math.unit(30, "km")
  26642. },
  26643. ]
  26644. ))
  26645. characterMakers.push(() => makeCharacter(
  26646. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26647. {
  26648. front: {
  26649. height: math.unit(10, "feet"),
  26650. weight: math.unit(750, "lb"),
  26651. name: "Front",
  26652. image: {
  26653. source: "./media/characters/juliet-a/front.svg",
  26654. extra: 1766 / 1720,
  26655. bottom: 43 / 1809
  26656. }
  26657. },
  26658. back: {
  26659. height: math.unit(10, "feet"),
  26660. weight: math.unit(750, "lb"),
  26661. name: "Back",
  26662. image: {
  26663. source: "./media/characters/juliet-a/back.svg",
  26664. extra: 1781 / 1734,
  26665. bottom: 35 / 1810,
  26666. }
  26667. },
  26668. },
  26669. [
  26670. {
  26671. name: "Normal",
  26672. height: math.unit(10, "feet"),
  26673. default: true
  26674. },
  26675. {
  26676. name: "Dragon Form",
  26677. height: math.unit(250, "feet")
  26678. },
  26679. {
  26680. name: "Macro",
  26681. height: math.unit(1000, "feet")
  26682. },
  26683. {
  26684. name: "Megamacro",
  26685. height: math.unit(10000, "feet")
  26686. }
  26687. ]
  26688. ))
  26689. characterMakers.push(() => makeCharacter(
  26690. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26691. {
  26692. regular: {
  26693. height: math.unit(7 + 3 / 12, "feet"),
  26694. weight: math.unit(260, "lb"),
  26695. name: "Regular",
  26696. image: {
  26697. source: "./media/characters/wild/regular.svg",
  26698. extra: 97.45 / 92,
  26699. bottom: 6.8 / 104.3
  26700. }
  26701. },
  26702. biggums: {
  26703. height: math.unit(8 + 6 / 12, "feet"),
  26704. weight: math.unit(425, "lb"),
  26705. name: "Biggums",
  26706. image: {
  26707. source: "./media/characters/wild/biggums.svg",
  26708. extra: 97.45 / 92,
  26709. bottom: 7.5 / 132.34
  26710. }
  26711. },
  26712. mawRegular: {
  26713. height: math.unit(1.24, "feet"),
  26714. name: "Maw (Regular)",
  26715. image: {
  26716. source: "./media/characters/wild/maw.svg"
  26717. }
  26718. },
  26719. mawBiggums: {
  26720. height: math.unit(1.47, "feet"),
  26721. name: "Maw (Biggums)",
  26722. image: {
  26723. source: "./media/characters/wild/maw.svg"
  26724. }
  26725. },
  26726. },
  26727. [
  26728. {
  26729. name: "Normal",
  26730. height: math.unit(7 + 3 / 12, "feet"),
  26731. default: true
  26732. },
  26733. ]
  26734. ))
  26735. characterMakers.push(() => makeCharacter(
  26736. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26737. {
  26738. front: {
  26739. height: math.unit(2.5, "meters"),
  26740. weight: math.unit(200, "kg"),
  26741. name: "Front",
  26742. image: {
  26743. source: "./media/characters/vidar/front.svg",
  26744. extra: 2994 / 2795,
  26745. bottom: 56 / 3061
  26746. }
  26747. },
  26748. back: {
  26749. height: math.unit(2.5, "meters"),
  26750. weight: math.unit(200, "kg"),
  26751. name: "Back",
  26752. image: {
  26753. source: "./media/characters/vidar/back.svg",
  26754. extra: 3131 / 2928,
  26755. bottom: 13.5 / 3141.5
  26756. }
  26757. },
  26758. feral: {
  26759. height: math.unit(2.5, "meters"),
  26760. weight: math.unit(2000, "kg"),
  26761. name: "Feral",
  26762. image: {
  26763. source: "./media/characters/vidar/feral.svg",
  26764. extra: 2790 / 1765,
  26765. bottom: 6 / 2796
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Normal",
  26772. height: math.unit(2.5, "meters"),
  26773. default: true
  26774. },
  26775. {
  26776. name: "Macro",
  26777. height: math.unit(100, "meters")
  26778. },
  26779. ]
  26780. ))
  26781. characterMakers.push(() => makeCharacter(
  26782. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26783. {
  26784. front: {
  26785. height: math.unit(5 + 9 / 12, "feet"),
  26786. weight: math.unit(120, "lb"),
  26787. name: "Front",
  26788. image: {
  26789. source: "./media/characters/ash/front.svg",
  26790. extra: 2189 / 1961,
  26791. bottom: 5.2 / 2194
  26792. }
  26793. },
  26794. },
  26795. [
  26796. {
  26797. name: "Normal",
  26798. height: math.unit(5 + 9 / 12, "feet"),
  26799. default: true
  26800. },
  26801. ]
  26802. ))
  26803. characterMakers.push(() => makeCharacter(
  26804. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26805. {
  26806. front: {
  26807. height: math.unit(9, "feet"),
  26808. weight: math.unit(10000, "lb"),
  26809. name: "Front",
  26810. image: {
  26811. source: "./media/characters/gygabite/front.svg",
  26812. bottom: 31.7 / 537.8,
  26813. extra: 505 / 370
  26814. }
  26815. },
  26816. },
  26817. [
  26818. {
  26819. name: "Normal",
  26820. height: math.unit(9, "feet"),
  26821. default: true
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(12, "feet"),
  26830. weight: math.unit(35000, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/p0tat0/front.svg",
  26834. extra: 1065 / 921,
  26835. bottom: 55.7 / 1121.25
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(12, "feet"),
  26843. default: true
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26849. {
  26850. side: {
  26851. height: math.unit(6.5, "feet"),
  26852. weight: math.unit(800, "lb"),
  26853. name: "Side",
  26854. image: {
  26855. source: "./media/characters/dusk/side.svg",
  26856. extra: 615 / 373,
  26857. bottom: 53 / 664
  26858. }
  26859. },
  26860. sitting: {
  26861. height: math.unit(7, "feet"),
  26862. weight: math.unit(800, "lb"),
  26863. name: "Sitting",
  26864. image: {
  26865. source: "./media/characters/dusk/sitting.svg",
  26866. extra: 753 / 425,
  26867. bottom: 33 / 774
  26868. }
  26869. },
  26870. head: {
  26871. height: math.unit(6.1, "feet"),
  26872. name: "Head",
  26873. image: {
  26874. source: "./media/characters/dusk/head.svg"
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(7, "feet"),
  26882. default: true
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(15, "feet"),
  26891. weight: math.unit(7000, "lb"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/jay-direwolf/front.svg",
  26895. extra: 1810 / 1732,
  26896. bottom: 66 / 1892
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Normal",
  26903. height: math.unit(15, "feet"),
  26904. default: true
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26910. {
  26911. front: {
  26912. height: math.unit(4 + 9 / 12, "feet"),
  26913. weight: math.unit(130, "lb"),
  26914. name: "Front",
  26915. image: {
  26916. source: "./media/characters/anchovie/front.svg",
  26917. extra: 382 / 350,
  26918. bottom: 25 / 409
  26919. }
  26920. },
  26921. back: {
  26922. height: math.unit(4 + 9 / 12, "feet"),
  26923. weight: math.unit(130, "lb"),
  26924. name: "Back",
  26925. image: {
  26926. source: "./media/characters/anchovie/back.svg",
  26927. extra: 385 / 352,
  26928. bottom: 16.6 / 402
  26929. }
  26930. },
  26931. frontDressed: {
  26932. height: math.unit(4 + 9 / 12, "feet"),
  26933. weight: math.unit(130, "lb"),
  26934. name: "Front (Dressed)",
  26935. image: {
  26936. source: "./media/characters/anchovie/front-dressed.svg",
  26937. extra: 382 / 350,
  26938. bottom: 25 / 409
  26939. }
  26940. },
  26941. backDressed: {
  26942. height: math.unit(4 + 9 / 12, "feet"),
  26943. weight: math.unit(130, "lb"),
  26944. name: "Back (Dressed)",
  26945. image: {
  26946. source: "./media/characters/anchovie/back-dressed.svg",
  26947. extra: 385 / 352,
  26948. bottom: 16.6 / 402
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Micro",
  26955. height: math.unit(6.4, "inches")
  26956. },
  26957. {
  26958. name: "Normal",
  26959. height: math.unit(4 + 9 / 12, "feet"),
  26960. default: true
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(2, "meters"),
  26969. weight: math.unit(180, "lb"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/acidrenamon/front.svg",
  26973. extra: 987 / 890,
  26974. bottom: 22.8 / 1009
  26975. }
  26976. },
  26977. back: {
  26978. height: math.unit(2, "meters"),
  26979. weight: math.unit(180, "lb"),
  26980. name: "Back",
  26981. image: {
  26982. source: "./media/characters/acidrenamon/back.svg",
  26983. extra: 983 / 891,
  26984. bottom: 8.4 / 992
  26985. }
  26986. },
  26987. head: {
  26988. height: math.unit(1.92, "feet"),
  26989. name: "Head",
  26990. image: {
  26991. source: "./media/characters/acidrenamon/head.svg"
  26992. }
  26993. },
  26994. rump: {
  26995. height: math.unit(1.72, "feet"),
  26996. name: "Rump",
  26997. image: {
  26998. source: "./media/characters/acidrenamon/rump.svg"
  26999. }
  27000. },
  27001. tail: {
  27002. height: math.unit(4.2, "feet"),
  27003. name: "Tail",
  27004. image: {
  27005. source: "./media/characters/acidrenamon/tail.svg"
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(2, "meters"),
  27013. default: true
  27014. },
  27015. {
  27016. name: "Minimacro",
  27017. height: math.unit(7, "meters")
  27018. },
  27019. {
  27020. name: "Macro",
  27021. height: math.unit(200, "meters")
  27022. },
  27023. {
  27024. name: "Gigamacro",
  27025. height: math.unit(0.2, "earths")
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27031. {
  27032. front: {
  27033. height: math.unit(6, "feet"),
  27034. weight: math.unit(150, "lb"),
  27035. name: "Front",
  27036. image: {
  27037. source: "./media/characters/kenzie-lee/front.svg",
  27038. extra: 1525 / 1465,
  27039. bottom: 45 / 1570
  27040. }
  27041. },
  27042. side: {
  27043. height: math.unit(6, "feet"),
  27044. weight: math.unit(150, "lb"),
  27045. name: "Side",
  27046. image: {
  27047. source: "./media/characters/kenzie-lee/side.svg",
  27048. extra: 5505 / 5383,
  27049. bottom: 60 / 5573
  27050. }
  27051. },
  27052. paw: {
  27053. height: math.unit(0.57, "feet"),
  27054. name: "Paw",
  27055. image: {
  27056. source: "./media/characters/kenzie-lee/paw.svg"
  27057. }
  27058. },
  27059. },
  27060. [
  27061. {
  27062. name: "Normal",
  27063. height: math.unit(152, "feet"),
  27064. default: true
  27065. },
  27066. {
  27067. name: "Megamacro",
  27068. height: math.unit(7, "miles")
  27069. },
  27070. {
  27071. name: "Gigamacro",
  27072. height: math.unit(8000, "miles")
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27078. {
  27079. side: {
  27080. height: math.unit(6, "feet"),
  27081. weight: math.unit(150, "lb"),
  27082. name: "Side",
  27083. image: {
  27084. source: "./media/characters/withers/side.svg",
  27085. extra: 1830 / 1728,
  27086. bottom: 96 / 1927
  27087. }
  27088. },
  27089. front: {
  27090. height: math.unit(6, "feet"),
  27091. weight: math.unit(150, "lb"),
  27092. name: "Front",
  27093. image: {
  27094. source: "./media/characters/withers/front.svg",
  27095. extra: 1514 / 1438,
  27096. bottom: 118 / 1632
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Macro",
  27103. height: math.unit(168, "feet"),
  27104. default: true
  27105. },
  27106. {
  27107. name: "Megamacro",
  27108. height: math.unit(15, "miles")
  27109. }
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(6 + 7 / 12, "feet"),
  27117. weight: math.unit(250, "lb"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/nemoskii/front.svg",
  27121. extra: 2270 / 1734,
  27122. bottom: 86 / 2354
  27123. }
  27124. },
  27125. back: {
  27126. height: math.unit(6 + 7 / 12, "feet"),
  27127. weight: math.unit(250, "lb"),
  27128. name: "Back",
  27129. image: {
  27130. source: "./media/characters/nemoskii/back.svg",
  27131. extra: 1845 / 1788,
  27132. bottom: 10.5 / 1852
  27133. }
  27134. },
  27135. head: {
  27136. height: math.unit(1.31, "feet"),
  27137. name: "Head",
  27138. image: {
  27139. source: "./media/characters/nemoskii/head.svg"
  27140. }
  27141. },
  27142. },
  27143. [
  27144. {
  27145. name: "Micro",
  27146. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27147. },
  27148. {
  27149. name: "Normal",
  27150. height: math.unit(6 + 7 / 12, "feet"),
  27151. default: true
  27152. },
  27153. {
  27154. name: "Macro",
  27155. height: math.unit((6 + 7 / 12) * 150, "feet")
  27156. },
  27157. {
  27158. name: "Macro+",
  27159. height: math.unit((6 + 7 / 12) * 500, "feet")
  27160. },
  27161. {
  27162. name: "Megamacro",
  27163. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27164. },
  27165. ]
  27166. ))
  27167. characterMakers.push(() => makeCharacter(
  27168. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27169. {
  27170. front: {
  27171. height: math.unit(1, "mile"),
  27172. weight: math.unit(265261.9, "lb"),
  27173. name: "Front",
  27174. image: {
  27175. source: "./media/characters/shui/front.svg",
  27176. extra: 1633 / 1564,
  27177. bottom: 91.5 / 1726
  27178. }
  27179. },
  27180. },
  27181. [
  27182. {
  27183. name: "Macro",
  27184. height: math.unit(1, "mile"),
  27185. default: true
  27186. },
  27187. ]
  27188. ))
  27189. characterMakers.push(() => makeCharacter(
  27190. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27191. {
  27192. front: {
  27193. height: math.unit(12 + 6 / 12, "feet"),
  27194. weight: math.unit(1342, "lb"),
  27195. name: "Front",
  27196. image: {
  27197. source: "./media/characters/arokh-takakura/front.svg",
  27198. extra: 1089 / 1043,
  27199. bottom: 77.4 / 1176.7
  27200. }
  27201. },
  27202. back: {
  27203. height: math.unit(12 + 6 / 12, "feet"),
  27204. weight: math.unit(1342, "lb"),
  27205. name: "Back",
  27206. image: {
  27207. source: "./media/characters/arokh-takakura/back.svg",
  27208. extra: 1046 / 1019,
  27209. bottom: 102 / 1150
  27210. }
  27211. },
  27212. },
  27213. [
  27214. {
  27215. name: "Big",
  27216. height: math.unit(12 + 6 / 12, "feet"),
  27217. default: true
  27218. },
  27219. ]
  27220. ))
  27221. characterMakers.push(() => makeCharacter(
  27222. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27223. {
  27224. front: {
  27225. height: math.unit(5 + 6 / 12, "feet"),
  27226. weight: math.unit(150, "lb"),
  27227. name: "Front",
  27228. image: {
  27229. source: "./media/characters/theo/front.svg",
  27230. extra: 1184 / 1131,
  27231. bottom: 7.4 / 1191
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Micro",
  27238. height: math.unit(5, "inches")
  27239. },
  27240. {
  27241. name: "Normal",
  27242. height: math.unit(5 + 6 / 12, "feet"),
  27243. default: true
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27249. {
  27250. front: {
  27251. height: math.unit(5 + 9 / 12, "feet"),
  27252. weight: math.unit(130, "lb"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/cecelia-swift/front.svg",
  27256. extra: 502 / 484,
  27257. bottom: 23 / 523
  27258. }
  27259. },
  27260. back: {
  27261. height: math.unit(5 + 9 / 12, "feet"),
  27262. weight: math.unit(130, "lb"),
  27263. name: "Back",
  27264. image: {
  27265. source: "./media/characters/cecelia-swift/back.svg",
  27266. extra: 499 / 485,
  27267. bottom: 12 / 511
  27268. }
  27269. },
  27270. head: {
  27271. height: math.unit(0.90, "feet"),
  27272. name: "Head",
  27273. image: {
  27274. source: "./media/characters/cecelia-swift/head.svg"
  27275. }
  27276. },
  27277. rump: {
  27278. height: math.unit(1.75, "feet"),
  27279. name: "Rump",
  27280. image: {
  27281. source: "./media/characters/cecelia-swift/rump.svg"
  27282. }
  27283. },
  27284. },
  27285. [
  27286. {
  27287. name: "Normal",
  27288. height: math.unit(5 + 9 / 12, "feet"),
  27289. default: true
  27290. },
  27291. {
  27292. name: "Big",
  27293. height: math.unit(50, "feet")
  27294. },
  27295. {
  27296. name: "Macro",
  27297. height: math.unit(100, "feet")
  27298. },
  27299. {
  27300. name: "Macro+",
  27301. height: math.unit(500, "feet")
  27302. },
  27303. {
  27304. name: "Macro++",
  27305. height: math.unit(1000, "feet")
  27306. },
  27307. ]
  27308. ))
  27309. characterMakers.push(() => makeCharacter(
  27310. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27311. {
  27312. front: {
  27313. height: math.unit(6, "feet"),
  27314. weight: math.unit(150, "lb"),
  27315. name: "Front",
  27316. image: {
  27317. source: "./media/characters/kaunan/front.svg",
  27318. extra: 2890 / 2523,
  27319. bottom: 49 / 2939
  27320. }
  27321. },
  27322. },
  27323. [
  27324. {
  27325. name: "Macro",
  27326. height: math.unit(150, "feet"),
  27327. default: true
  27328. },
  27329. ]
  27330. ))
  27331. characterMakers.push(() => makeCharacter(
  27332. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27333. {
  27334. front: {
  27335. height: math.unit(175, "cm"),
  27336. weight: math.unit(60, "kg"),
  27337. name: "Front",
  27338. image: {
  27339. source: "./media/characters/fei/front.svg",
  27340. extra: 2581 / 2400,
  27341. bottom: 82.2 / 2663
  27342. }
  27343. },
  27344. },
  27345. [
  27346. {
  27347. name: "Mortal",
  27348. height: math.unit(175, "cm")
  27349. },
  27350. {
  27351. name: "Normal",
  27352. height: math.unit(3500, "m"),
  27353. default: true
  27354. },
  27355. {
  27356. name: "Stroll",
  27357. height: math.unit(17.5, "km")
  27358. },
  27359. {
  27360. name: "Showoff",
  27361. height: math.unit(175, "km")
  27362. },
  27363. ]
  27364. ))
  27365. characterMakers.push(() => makeCharacter(
  27366. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27367. {
  27368. front: {
  27369. height: math.unit(7, "feet"),
  27370. weight: math.unit(1000, "kg"),
  27371. name: "Front",
  27372. image: {
  27373. source: "./media/characters/edrax/front.svg",
  27374. extra: 2838 / 2550,
  27375. bottom: 130 / 2968
  27376. }
  27377. },
  27378. },
  27379. [
  27380. {
  27381. name: "Small",
  27382. height: math.unit(7, "feet")
  27383. },
  27384. {
  27385. name: "Normal",
  27386. height: math.unit(1500, "meters")
  27387. },
  27388. {
  27389. name: "Mega",
  27390. height: math.unit(12000000, "km"),
  27391. default: true
  27392. },
  27393. {
  27394. name: "Megamacro",
  27395. height: math.unit(10600000, "lightyears")
  27396. },
  27397. {
  27398. name: "Hypermacro",
  27399. height: math.unit(256, "yottameters")
  27400. },
  27401. ]
  27402. ))
  27403. characterMakers.push(() => makeCharacter(
  27404. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27405. {
  27406. front: {
  27407. height: math.unit(10, "feet"),
  27408. weight: math.unit(750, "lb"),
  27409. name: "Front",
  27410. image: {
  27411. source: "./media/characters/clove/front.svg",
  27412. extra: 2031 / 1860,
  27413. bottom: 47.8 / 2080
  27414. }
  27415. },
  27416. back: {
  27417. height: math.unit(10, "feet"),
  27418. weight: math.unit(750, "lb"),
  27419. name: "Back",
  27420. image: {
  27421. source: "./media/characters/clove/back.svg",
  27422. extra: 2025 / 1859,
  27423. bottom: 46 / 2071
  27424. }
  27425. },
  27426. },
  27427. [
  27428. {
  27429. name: "Normal",
  27430. height: math.unit(10, "feet"),
  27431. default: true
  27432. },
  27433. ]
  27434. ))
  27435. characterMakers.push(() => makeCharacter(
  27436. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27437. {
  27438. front: {
  27439. height: math.unit(4, "feet"),
  27440. weight: math.unit(50, "lb"),
  27441. name: "Front",
  27442. image: {
  27443. source: "./media/characters/alex-rabbit/front.svg",
  27444. extra: 507 / 458,
  27445. bottom: 18.5 / 527
  27446. }
  27447. },
  27448. back: {
  27449. height: math.unit(4, "feet"),
  27450. weight: math.unit(50, "lb"),
  27451. name: "Back",
  27452. image: {
  27453. source: "./media/characters/alex-rabbit/back.svg",
  27454. extra: 502 / 460,
  27455. bottom: 18.9 / 521
  27456. }
  27457. },
  27458. },
  27459. [
  27460. {
  27461. name: "Normal",
  27462. height: math.unit(4, "feet"),
  27463. default: true
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27469. {
  27470. front: {
  27471. height: math.unit(1 + 3 / 12, "feet"),
  27472. weight: math.unit(80, "lb"),
  27473. name: "Front",
  27474. image: {
  27475. source: "./media/characters/zander-rose/front.svg",
  27476. extra: 916 / 797,
  27477. bottom: 17 / 933
  27478. }
  27479. },
  27480. back: {
  27481. height: math.unit(1 + 3 / 12, "feet"),
  27482. weight: math.unit(80, "lb"),
  27483. name: "Back",
  27484. image: {
  27485. source: "./media/characters/zander-rose/back.svg",
  27486. extra: 903 / 779,
  27487. bottom: 31 / 934
  27488. }
  27489. },
  27490. },
  27491. [
  27492. {
  27493. name: "Normal",
  27494. height: math.unit(1 + 3 / 12, "feet"),
  27495. default: true
  27496. },
  27497. ]
  27498. ))
  27499. characterMakers.push(() => makeCharacter(
  27500. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27501. {
  27502. anthro: {
  27503. height: math.unit(6, "feet"),
  27504. weight: math.unit(150, "lb"),
  27505. name: "Anthro",
  27506. image: {
  27507. source: "./media/characters/razz/anthro.svg",
  27508. extra: 1437 / 1343,
  27509. bottom: 48 / 1485
  27510. }
  27511. },
  27512. feral: {
  27513. height: math.unit(6, "feet"),
  27514. weight: math.unit(150, "lb"),
  27515. name: "Feral",
  27516. image: {
  27517. source: "./media/characters/razz/feral.svg",
  27518. extra: 2569 / 1385,
  27519. bottom: 95 / 2664
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Normal",
  27526. height: math.unit(6, "feet"),
  27527. default: true
  27528. },
  27529. ]
  27530. ))
  27531. characterMakers.push(() => makeCharacter(
  27532. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27533. {
  27534. front: {
  27535. height: math.unit(9 + 4 / 12, "feet"),
  27536. weight: math.unit(500, "lb"),
  27537. name: "Front",
  27538. image: {
  27539. source: "./media/characters/morrigan/front.svg",
  27540. extra: 2707 / 2579,
  27541. bottom: 156 / 2863
  27542. }
  27543. },
  27544. },
  27545. [
  27546. {
  27547. name: "Normal",
  27548. height: math.unit(9 + 4 / 12, "feet"),
  27549. default: true
  27550. },
  27551. ]
  27552. ))
  27553. characterMakers.push(() => makeCharacter(
  27554. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27555. {
  27556. front: {
  27557. height: math.unit(5, "stories"),
  27558. weight: math.unit(4000, "lb"),
  27559. name: "Front",
  27560. image: {
  27561. source: "./media/characters/jenene/front.svg",
  27562. extra: 1780 / 1710,
  27563. bottom: 57 / 1837
  27564. }
  27565. },
  27566. },
  27567. [
  27568. {
  27569. name: "Normal",
  27570. height: math.unit(5, "stories"),
  27571. default: true
  27572. },
  27573. ]
  27574. ))
  27575. characterMakers.push(() => makeCharacter(
  27576. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27577. {
  27578. front: {
  27579. height: math.unit(6, "feet"),
  27580. weight: math.unit(150, "lb"),
  27581. name: "Front",
  27582. image: {
  27583. source: "./media/characters/vix-archaser/front.svg",
  27584. extra: 2767 / 2562,
  27585. bottom: 36 / 2803
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Micro",
  27592. height: math.unit(1, "foot")
  27593. },
  27594. {
  27595. name: "Normal",
  27596. height: math.unit(6 + 5 / 12, "feet")
  27597. },
  27598. {
  27599. name: "Minimacro",
  27600. height: math.unit(500, "feet")
  27601. },
  27602. {
  27603. name: "Macro",
  27604. height: math.unit(4, "miles")
  27605. },
  27606. {
  27607. name: "Megamacro",
  27608. height: math.unit(250, "miles"),
  27609. default: true
  27610. },
  27611. {
  27612. name: "Gigamacro",
  27613. height: math.unit(1, "universe")
  27614. },
  27615. {
  27616. name: "Endgame",
  27617. height: math.unit(100, "multiverses")
  27618. }
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27623. {
  27624. taurSfw: {
  27625. height: math.unit(10, "meters"),
  27626. weight: math.unit(17500, "kg"),
  27627. name: "Taur",
  27628. image: {
  27629. source: "./media/characters/faey/taur-sfw.svg",
  27630. extra: 1200 / 968,
  27631. bottom: 41 / 1241
  27632. }
  27633. },
  27634. chestmaw: {
  27635. height: math.unit(2.01, "meters"),
  27636. name: "Chestmaw",
  27637. image: {
  27638. source: "./media/characters/faey/chestmaw.svg"
  27639. }
  27640. },
  27641. foot: {
  27642. height: math.unit(2.43, "meters"),
  27643. name: "Foot",
  27644. image: {
  27645. source: "./media/characters/faey/foot.svg"
  27646. }
  27647. },
  27648. jaws: {
  27649. height: math.unit(1.66, "meters"),
  27650. name: "Jaws",
  27651. image: {
  27652. source: "./media/characters/faey/jaws.svg"
  27653. }
  27654. },
  27655. tongues: {
  27656. height: math.unit(2.01, "meters"),
  27657. name: "Tongues",
  27658. image: {
  27659. source: "./media/characters/faey/tongues.svg"
  27660. }
  27661. },
  27662. },
  27663. [
  27664. {
  27665. name: "Small",
  27666. height: math.unit(10, "meters"),
  27667. default: true
  27668. },
  27669. {
  27670. name: "Big",
  27671. height: math.unit(500000, "km")
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27677. {
  27678. front: {
  27679. height: math.unit(7, "feet"),
  27680. weight: math.unit(275, "lb"),
  27681. name: "Front",
  27682. image: {
  27683. source: "./media/characters/roku/front.svg",
  27684. extra: 903 / 878,
  27685. bottom: 37 / 940
  27686. }
  27687. },
  27688. },
  27689. [
  27690. {
  27691. name: "Normal",
  27692. height: math.unit(7, "feet"),
  27693. default: true
  27694. },
  27695. {
  27696. name: "Macro",
  27697. height: math.unit(500, "feet")
  27698. },
  27699. {
  27700. name: "Megamacro",
  27701. height: math.unit(200, "miles")
  27702. },
  27703. ]
  27704. ))
  27705. characterMakers.push(() => makeCharacter(
  27706. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27707. {
  27708. front: {
  27709. height: math.unit(6 + 2 / 12, "feet"),
  27710. weight: math.unit(150, "lb"),
  27711. name: "Front",
  27712. image: {
  27713. source: "./media/characters/lira/front.svg",
  27714. extra: 1727 / 1605,
  27715. bottom: 26 / 1753
  27716. }
  27717. },
  27718. back: {
  27719. height: math.unit(6 + 2 / 12, "feet"),
  27720. weight: math.unit(150, "lb"),
  27721. name: "Back",
  27722. image: {
  27723. source: "./media/characters/lira/back.svg",
  27724. extra: 1713/1621,
  27725. bottom: 20/1733
  27726. }
  27727. },
  27728. hand: {
  27729. height: math.unit(0.75, "feet"),
  27730. name: "Hand",
  27731. image: {
  27732. source: "./media/characters/lira/hand.svg"
  27733. }
  27734. },
  27735. maw: {
  27736. height: math.unit(0.65, "feet"),
  27737. name: "Maw",
  27738. image: {
  27739. source: "./media/characters/lira/maw.svg"
  27740. }
  27741. },
  27742. pawDigi: {
  27743. height: math.unit(1.6, "feet"),
  27744. name: "Paw Digi",
  27745. image: {
  27746. source: "./media/characters/lira/paw-digi.svg"
  27747. }
  27748. },
  27749. pawPlanti: {
  27750. height: math.unit(1.4, "feet"),
  27751. name: "Paw Planti",
  27752. image: {
  27753. source: "./media/characters/lira/paw-planti.svg"
  27754. }
  27755. },
  27756. },
  27757. [
  27758. {
  27759. name: "Normal",
  27760. height: math.unit(6 + 2 / 12, "feet"),
  27761. default: true
  27762. },
  27763. {
  27764. name: "Macro",
  27765. height: math.unit(100, "feet")
  27766. },
  27767. {
  27768. name: "Macro²",
  27769. height: math.unit(1600, "feet")
  27770. },
  27771. {
  27772. name: "Planetary",
  27773. height: math.unit(20, "earths")
  27774. },
  27775. ]
  27776. ))
  27777. characterMakers.push(() => makeCharacter(
  27778. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27779. {
  27780. front: {
  27781. height: math.unit(6, "feet"),
  27782. weight: math.unit(150, "lb"),
  27783. name: "Front",
  27784. image: {
  27785. source: "./media/characters/hadjet/front.svg",
  27786. extra: 1480 / 1346,
  27787. bottom: 26 / 1506
  27788. }
  27789. },
  27790. frontNsfw: {
  27791. height: math.unit(6, "feet"),
  27792. weight: math.unit(150, "lb"),
  27793. name: "Front (NSFW)",
  27794. image: {
  27795. source: "./media/characters/hadjet/front-nsfw.svg",
  27796. extra: 1440 / 1358,
  27797. bottom: 52 / 1492
  27798. }
  27799. },
  27800. },
  27801. [
  27802. {
  27803. name: "Macro",
  27804. height: math.unit(10, "stories"),
  27805. default: true
  27806. },
  27807. {
  27808. name: "Megamacro",
  27809. height: math.unit(1.5, "miles")
  27810. },
  27811. {
  27812. name: "Megamacro+",
  27813. height: math.unit(5, "miles")
  27814. },
  27815. ]
  27816. ))
  27817. characterMakers.push(() => makeCharacter(
  27818. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27819. {
  27820. side: {
  27821. height: math.unit(106, "feet"),
  27822. weight: math.unit(500, "tonnes"),
  27823. name: "Side",
  27824. image: {
  27825. source: "./media/characters/kodran/side.svg",
  27826. extra: 553 / 480,
  27827. bottom: 33 / 586
  27828. }
  27829. },
  27830. front: {
  27831. height: math.unit(132, "feet"),
  27832. weight: math.unit(500, "tonnes"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/kodran/front.svg",
  27836. extra: 667 / 643,
  27837. bottom: 42 / 709
  27838. }
  27839. },
  27840. flying: {
  27841. height: math.unit(350, "feet"),
  27842. weight: math.unit(500, "tonnes"),
  27843. name: "Flying",
  27844. image: {
  27845. source: "./media/characters/kodran/flying.svg"
  27846. }
  27847. },
  27848. foot: {
  27849. height: math.unit(33, "feet"),
  27850. name: "Foot",
  27851. image: {
  27852. source: "./media/characters/kodran/foot.svg"
  27853. }
  27854. },
  27855. footFront: {
  27856. height: math.unit(19, "feet"),
  27857. name: "Foot (Front)",
  27858. image: {
  27859. source: "./media/characters/kodran/foot-front.svg",
  27860. extra: 261 / 261,
  27861. bottom: 91 / 352
  27862. }
  27863. },
  27864. headFront: {
  27865. height: math.unit(53, "feet"),
  27866. name: "Head (Front)",
  27867. image: {
  27868. source: "./media/characters/kodran/head-front.svg"
  27869. }
  27870. },
  27871. headSide: {
  27872. height: math.unit(65, "feet"),
  27873. name: "Head (Side)",
  27874. image: {
  27875. source: "./media/characters/kodran/head-side.svg"
  27876. }
  27877. },
  27878. throat: {
  27879. height: math.unit(79, "feet"),
  27880. name: "Throat",
  27881. image: {
  27882. source: "./media/characters/kodran/throat.svg"
  27883. }
  27884. },
  27885. },
  27886. [
  27887. {
  27888. name: "Large",
  27889. height: math.unit(106, "feet"),
  27890. default: true
  27891. },
  27892. ]
  27893. ))
  27894. characterMakers.push(() => makeCharacter(
  27895. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27896. {
  27897. side: {
  27898. height: math.unit(11, "feet"),
  27899. weight: math.unit(150, "lb"),
  27900. name: "Side",
  27901. image: {
  27902. source: "./media/characters/pyxaron/side.svg",
  27903. extra: 305 / 195,
  27904. bottom: 17 / 322
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(11, "feet"),
  27912. default: true
  27913. },
  27914. ]
  27915. ))
  27916. characterMakers.push(() => makeCharacter(
  27917. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27918. {
  27919. front: {
  27920. height: math.unit(6, "feet"),
  27921. weight: math.unit(150, "lb"),
  27922. name: "Front",
  27923. image: {
  27924. source: "./media/characters/meep/front.svg",
  27925. extra: 88 / 80,
  27926. bottom: 6 / 94
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Fun Sized",
  27933. height: math.unit(2, "inches"),
  27934. default: true
  27935. },
  27936. {
  27937. name: "Friend Sized",
  27938. height: math.unit(8, "inches")
  27939. },
  27940. ]
  27941. ))
  27942. characterMakers.push(() => makeCharacter(
  27943. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27944. {
  27945. front: {
  27946. height: math.unit(15, "feet"),
  27947. weight: math.unit(2500, "lb"),
  27948. name: "Front",
  27949. image: {
  27950. source: "./media/characters/holly-rabbit/front.svg",
  27951. extra: 1433 / 1233,
  27952. bottom: 125 / 1558
  27953. }
  27954. },
  27955. dick: {
  27956. height: math.unit(4.6, "feet"),
  27957. name: "Dick",
  27958. image: {
  27959. source: "./media/characters/holly-rabbit/dick.svg"
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(15, "feet"),
  27967. default: true
  27968. },
  27969. {
  27970. name: "Macro",
  27971. height: math.unit(250, "feet")
  27972. },
  27973. {
  27974. name: "Macro+",
  27975. height: math.unit(2500, "feet")
  27976. },
  27977. ]
  27978. ))
  27979. characterMakers.push(() => makeCharacter(
  27980. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27981. {
  27982. front: {
  27983. height: math.unit(3.02, "meters"),
  27984. weight: math.unit(500, "kg"),
  27985. name: "Front",
  27986. image: {
  27987. source: "./media/characters/drena/front.svg",
  27988. extra: 282 / 243,
  27989. bottom: 8 / 290
  27990. }
  27991. },
  27992. side: {
  27993. height: math.unit(3.02, "meters"),
  27994. weight: math.unit(500, "kg"),
  27995. name: "Side",
  27996. image: {
  27997. source: "./media/characters/drena/side.svg",
  27998. extra: 280 / 245,
  27999. bottom: 10 / 290
  28000. }
  28001. },
  28002. back: {
  28003. height: math.unit(3.02, "meters"),
  28004. weight: math.unit(500, "kg"),
  28005. name: "Back",
  28006. image: {
  28007. source: "./media/characters/drena/back.svg",
  28008. extra: 278 / 243,
  28009. bottom: 2 / 280
  28010. }
  28011. },
  28012. foot: {
  28013. height: math.unit(0.75, "meters"),
  28014. name: "Foot",
  28015. image: {
  28016. source: "./media/characters/drena/foot.svg"
  28017. }
  28018. },
  28019. maw: {
  28020. height: math.unit(0.82, "meters"),
  28021. name: "Maw",
  28022. image: {
  28023. source: "./media/characters/drena/maw.svg"
  28024. }
  28025. },
  28026. rump: {
  28027. height: math.unit(0.93, "meters"),
  28028. name: "Rump",
  28029. image: {
  28030. source: "./media/characters/drena/rump.svg"
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Normal",
  28037. height: math.unit(3.02, "meters"),
  28038. default: true
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28044. {
  28045. front: {
  28046. height: math.unit(6 + 4 / 12, "feet"),
  28047. weight: math.unit(250, "lb"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/remmyzilla/front.svg",
  28051. extra: 4033 / 3588,
  28052. bottom: 123 / 4156
  28053. }
  28054. },
  28055. back: {
  28056. height: math.unit(6 + 4 / 12, "feet"),
  28057. weight: math.unit(250, "lb"),
  28058. name: "Back",
  28059. image: {
  28060. source: "./media/characters/remmyzilla/back.svg",
  28061. extra: 2687 / 2555,
  28062. bottom: 48 / 2735
  28063. }
  28064. },
  28065. frontFancy: {
  28066. height: math.unit(6 + 4 / 12, "feet"),
  28067. weight: math.unit(250, "lb"),
  28068. name: "Front (Fancy)",
  28069. image: {
  28070. source: "./media/characters/remmyzilla/front-fancy.svg",
  28071. extra: 4119 / 3419,
  28072. bottom: 237 / 4356
  28073. }
  28074. },
  28075. paw: {
  28076. height: math.unit(1.73, "feet"),
  28077. name: "Paw",
  28078. image: {
  28079. source: "./media/characters/remmyzilla/paw.svg"
  28080. }
  28081. },
  28082. maw: {
  28083. height: math.unit(1.73, "feet"),
  28084. name: "Maw",
  28085. image: {
  28086. source: "./media/characters/remmyzilla/maw.svg"
  28087. }
  28088. },
  28089. },
  28090. [
  28091. {
  28092. name: "Normal",
  28093. height: math.unit(6 + 4 / 12, "feet")
  28094. },
  28095. {
  28096. name: "Minimacro",
  28097. height: math.unit(12 + 8 / 12, "feet")
  28098. },
  28099. {
  28100. name: "Normal",
  28101. height: math.unit(640, "feet"),
  28102. default: true
  28103. },
  28104. {
  28105. name: "Megamacro",
  28106. height: math.unit(6400, "feet")
  28107. },
  28108. {
  28109. name: "Gigamacro",
  28110. height: math.unit(64000, "miles")
  28111. },
  28112. ]
  28113. ))
  28114. characterMakers.push(() => makeCharacter(
  28115. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28116. {
  28117. front: {
  28118. height: math.unit(2.5, "meters"),
  28119. weight: math.unit(300, "lb"),
  28120. name: "Front",
  28121. image: {
  28122. source: "./media/characters/lawrence/front.svg",
  28123. extra: 357 / 335,
  28124. bottom: 30 / 387
  28125. }
  28126. },
  28127. back: {
  28128. height: math.unit(2.5, "meters"),
  28129. weight: math.unit(300, "lb"),
  28130. name: "Back",
  28131. image: {
  28132. source: "./media/characters/lawrence/back.svg",
  28133. extra: 357 / 338,
  28134. bottom: 16 / 373
  28135. }
  28136. },
  28137. head: {
  28138. height: math.unit(0.9, "meter"),
  28139. name: "Head",
  28140. image: {
  28141. source: "./media/characters/lawrence/head.svg"
  28142. }
  28143. },
  28144. maw: {
  28145. height: math.unit(0.7, "meter"),
  28146. name: "Maw",
  28147. image: {
  28148. source: "./media/characters/lawrence/maw.svg"
  28149. }
  28150. },
  28151. footBottom: {
  28152. height: math.unit(0.5, "meter"),
  28153. name: "Foot (Bottom)",
  28154. image: {
  28155. source: "./media/characters/lawrence/foot-bottom.svg"
  28156. }
  28157. },
  28158. footTop: {
  28159. height: math.unit(0.5, "meter"),
  28160. name: "Foot (Top)",
  28161. image: {
  28162. source: "./media/characters/lawrence/foot-top.svg"
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Normal",
  28169. height: math.unit(2.5, "meters"),
  28170. default: true
  28171. },
  28172. {
  28173. name: "Macro",
  28174. height: math.unit(95, "meters")
  28175. },
  28176. {
  28177. name: "Megamacro",
  28178. height: math.unit(150, "km")
  28179. },
  28180. ]
  28181. ))
  28182. characterMakers.push(() => makeCharacter(
  28183. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28184. {
  28185. front: {
  28186. height: math.unit(4.2, "meters"),
  28187. name: "Front",
  28188. image: {
  28189. source: "./media/characters/sydney/front.svg",
  28190. extra: 1323 / 1277,
  28191. bottom: 111 / 1434
  28192. }
  28193. },
  28194. },
  28195. [
  28196. {
  28197. name: "Normal",
  28198. height: math.unit(4.2, "meters"),
  28199. default: true
  28200. },
  28201. ]
  28202. ))
  28203. characterMakers.push(() => makeCharacter(
  28204. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28205. {
  28206. back: {
  28207. height: math.unit(201, "feet"),
  28208. name: "Back",
  28209. image: {
  28210. source: "./media/characters/jessica/back.svg",
  28211. extra: 273 / 259,
  28212. bottom: 7 / 280
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Normal",
  28219. height: math.unit(201, "feet"),
  28220. default: true
  28221. },
  28222. {
  28223. name: "Megamacro",
  28224. height: math.unit(8, "miles")
  28225. },
  28226. ]
  28227. ))
  28228. characterMakers.push(() => makeCharacter(
  28229. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28230. {
  28231. side: {
  28232. height: math.unit(320, "cm"),
  28233. name: "Side",
  28234. image: {
  28235. source: "./media/characters/victoria/side.svg",
  28236. extra: 778 / 346,
  28237. bottom: 56 / 834
  28238. }
  28239. },
  28240. maw: {
  28241. height: math.unit(5.9, "feet"),
  28242. name: "Maw",
  28243. image: {
  28244. source: "./media/characters/victoria/maw.svg"
  28245. }
  28246. },
  28247. },
  28248. [
  28249. {
  28250. name: "Normal",
  28251. height: math.unit(320, "cm"),
  28252. default: true
  28253. },
  28254. ]
  28255. ))
  28256. characterMakers.push(() => makeCharacter(
  28257. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28258. {
  28259. front: {
  28260. height: math.unit(5 + 6 / 12, "feet"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/cat/front.svg",
  28264. extra: 1374 / 1257,
  28265. bottom: 59 / 1433
  28266. }
  28267. },
  28268. back: {
  28269. height: math.unit(5 + 6 / 12, "feet"),
  28270. name: "Back",
  28271. image: {
  28272. source: "./media/characters/cat/back.svg",
  28273. extra: 1337 / 1226,
  28274. bottom: 34 / 1371
  28275. }
  28276. },
  28277. taur: {
  28278. height: math.unit(7, "feet"),
  28279. name: "Taur",
  28280. image: {
  28281. source: "./media/characters/cat/taur.svg",
  28282. extra: 1345 / 1231,
  28283. bottom: 66 / 1411
  28284. }
  28285. },
  28286. lucario: {
  28287. height: math.unit(4, "feet"),
  28288. name: "Lucario",
  28289. image: {
  28290. source: "./media/characters/cat/lucario.svg",
  28291. extra: 1470 / 1318,
  28292. bottom: 65 / 1535
  28293. }
  28294. },
  28295. megaLucario: {
  28296. height: math.unit(4, "feet"),
  28297. name: "Mega Lucario",
  28298. image: {
  28299. source: "./media/characters/cat/mega-lucario.svg",
  28300. extra: 1515 / 1319,
  28301. bottom: 63 / 1578
  28302. }
  28303. },
  28304. nickit: {
  28305. height: math.unit(2, "feet"),
  28306. name: "Nickit",
  28307. image: {
  28308. source: "./media/characters/cat/nickit.svg",
  28309. extra: 1980 / 1585,
  28310. bottom: 102 / 2082
  28311. }
  28312. },
  28313. lopunnyFront: {
  28314. height: math.unit(5, "feet"),
  28315. name: "Lopunny (Front)",
  28316. image: {
  28317. source: "./media/characters/cat/lopunny-front.svg",
  28318. extra: 1782 / 1469,
  28319. bottom: 38 / 1820
  28320. }
  28321. },
  28322. lopunnyBack: {
  28323. height: math.unit(5, "feet"),
  28324. name: "Lopunny (Back)",
  28325. image: {
  28326. source: "./media/characters/cat/lopunny-back.svg",
  28327. extra: 1660 / 1490,
  28328. bottom: 25 / 1685
  28329. }
  28330. },
  28331. },
  28332. [
  28333. {
  28334. name: "Really small",
  28335. height: math.unit(1, "nm")
  28336. },
  28337. {
  28338. name: "Micro",
  28339. height: math.unit(5, "inches")
  28340. },
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(5 + 6 / 12, "feet"),
  28344. default: true
  28345. },
  28346. {
  28347. name: "Macro",
  28348. height: math.unit(50, "feet")
  28349. },
  28350. {
  28351. name: "Macro+",
  28352. height: math.unit(150, "feet")
  28353. },
  28354. {
  28355. name: "Megamacro",
  28356. height: math.unit(100, "miles")
  28357. },
  28358. ]
  28359. ))
  28360. characterMakers.push(() => makeCharacter(
  28361. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28362. {
  28363. front: {
  28364. height: math.unit(63.4, "meters"),
  28365. weight: math.unit(3.28349e+6, "kilograms"),
  28366. name: "Front",
  28367. image: {
  28368. source: "./media/characters/kirina-violet/front.svg",
  28369. extra: 2812 / 2725,
  28370. bottom: 0 / 2812
  28371. }
  28372. },
  28373. back: {
  28374. height: math.unit(63.4, "meters"),
  28375. weight: math.unit(3.28349e+6, "kilograms"),
  28376. name: "Back",
  28377. image: {
  28378. source: "./media/characters/kirina-violet/back.svg",
  28379. extra: 2812 / 2725,
  28380. bottom: 0 / 2812
  28381. }
  28382. },
  28383. mouth: {
  28384. height: math.unit(4.35, "meters"),
  28385. name: "Mouth",
  28386. image: {
  28387. source: "./media/characters/kirina-violet/mouth.svg"
  28388. }
  28389. },
  28390. paw: {
  28391. height: math.unit(5.6, "meters"),
  28392. name: "Paw",
  28393. image: {
  28394. source: "./media/characters/kirina-violet/paw.svg"
  28395. }
  28396. },
  28397. tail: {
  28398. height: math.unit(18, "meters"),
  28399. name: "Tail",
  28400. image: {
  28401. source: "./media/characters/kirina-violet/tail.svg"
  28402. }
  28403. },
  28404. },
  28405. [
  28406. {
  28407. name: "Macro",
  28408. height: math.unit(63.4, "meters"),
  28409. default: true
  28410. },
  28411. ]
  28412. ))
  28413. characterMakers.push(() => makeCharacter(
  28414. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28415. {
  28416. front: {
  28417. height: math.unit(75, "feet"),
  28418. name: "Front",
  28419. image: {
  28420. source: "./media/characters/cat-gigachu/front.svg",
  28421. extra: 1239/1027,
  28422. bottom: 32/1271
  28423. }
  28424. },
  28425. back: {
  28426. height: math.unit(75, "feet"),
  28427. name: "Back",
  28428. image: {
  28429. source: "./media/characters/cat-gigachu/back.svg",
  28430. extra: 1229/1030,
  28431. bottom: 9/1238
  28432. }
  28433. },
  28434. },
  28435. [
  28436. {
  28437. name: "Dynamax",
  28438. height: math.unit(75, "feet"),
  28439. default: true
  28440. },
  28441. ]
  28442. ))
  28443. characterMakers.push(() => makeCharacter(
  28444. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28445. {
  28446. front: {
  28447. height: math.unit(6, "feet"),
  28448. weight: math.unit(150, "lb"),
  28449. name: "Front",
  28450. image: {
  28451. source: "./media/characters/sfaiyan/front.svg",
  28452. extra: 999 / 978,
  28453. bottom: 5 / 1004
  28454. }
  28455. },
  28456. },
  28457. [
  28458. {
  28459. name: "Normal",
  28460. height: math.unit(1.82, "meters")
  28461. },
  28462. {
  28463. name: "Giant",
  28464. height: math.unit(2.27, "km"),
  28465. default: true
  28466. },
  28467. ]
  28468. ))
  28469. characterMakers.push(() => makeCharacter(
  28470. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28471. {
  28472. front: {
  28473. height: math.unit(179, "cm"),
  28474. weight: math.unit(100, "kg"),
  28475. name: "Front",
  28476. image: {
  28477. source: "./media/characters/raunehkeli/front.svg",
  28478. extra: 1934 / 1926,
  28479. bottom: 0 / 1934
  28480. }
  28481. },
  28482. },
  28483. [
  28484. {
  28485. name: "Normal",
  28486. height: math.unit(179, "cm")
  28487. },
  28488. {
  28489. name: "Maximum",
  28490. height: math.unit(575, "meters"),
  28491. default: true
  28492. },
  28493. ]
  28494. ))
  28495. characterMakers.push(() => makeCharacter(
  28496. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28497. {
  28498. front: {
  28499. height: math.unit(6, "feet"),
  28500. weight: math.unit(150, "lb"),
  28501. name: "Front",
  28502. image: {
  28503. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28504. extra: 2625 / 2518,
  28505. bottom: 60 / 2685
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(6 + 2 / 12, "feet")
  28513. },
  28514. {
  28515. name: "Macro",
  28516. height: math.unit(1180, "feet"),
  28517. default: true
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28523. {
  28524. front: {
  28525. height: math.unit(5 + 6 / 12, "feet"),
  28526. weight: math.unit(108, "lb"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/lilith-zott/front.svg",
  28530. extra: 2510 / 2238,
  28531. bottom: 100 / 2610
  28532. }
  28533. },
  28534. frontDressed: {
  28535. height: math.unit(5 + 6 / 12, "feet"),
  28536. weight: math.unit(108, "lb"),
  28537. name: "Front (Dressed)",
  28538. image: {
  28539. source: "./media/characters/lilith-zott/front-dressed.svg",
  28540. extra: 2510 / 2238,
  28541. bottom: 100 / 2610
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(5 + 6 / 12, "feet")
  28549. },
  28550. {
  28551. name: "Macro",
  28552. height: math.unit(1030, "feet"),
  28553. default: true
  28554. },
  28555. ]
  28556. ))
  28557. characterMakers.push(() => makeCharacter(
  28558. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28559. {
  28560. front: {
  28561. height: math.unit(6, "feet"),
  28562. weight: math.unit(150, "lb"),
  28563. name: "Front",
  28564. image: {
  28565. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28566. extra: 2567 / 2435,
  28567. bottom: 39 / 2606
  28568. }
  28569. },
  28570. frontSuper: {
  28571. height: math.unit(6, "feet"),
  28572. name: "Front (Super)",
  28573. image: {
  28574. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28575. extra: 2567 / 2435,
  28576. bottom: 39 / 2606
  28577. }
  28578. },
  28579. },
  28580. [
  28581. {
  28582. name: "Normal",
  28583. height: math.unit(5 + 10 / 12, "feet")
  28584. },
  28585. {
  28586. name: "Macro",
  28587. height: math.unit(1100, "feet"),
  28588. default: true
  28589. },
  28590. ]
  28591. ))
  28592. characterMakers.push(() => makeCharacter(
  28593. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28594. {
  28595. front: {
  28596. height: math.unit(100, "miles"),
  28597. name: "Front",
  28598. image: {
  28599. source: "./media/characters/sona/front.svg",
  28600. extra: 2433 / 2201,
  28601. bottom: 53 / 2486
  28602. }
  28603. },
  28604. foot: {
  28605. height: math.unit(16.1, "miles"),
  28606. name: "Foot",
  28607. image: {
  28608. source: "./media/characters/sona/foot.svg"
  28609. }
  28610. },
  28611. },
  28612. [
  28613. {
  28614. name: "Macro",
  28615. height: math.unit(100, "miles"),
  28616. default: true
  28617. },
  28618. ]
  28619. ))
  28620. characterMakers.push(() => makeCharacter(
  28621. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28622. {
  28623. front: {
  28624. height: math.unit(6, "feet"),
  28625. weight: math.unit(150, "lb"),
  28626. name: "Front",
  28627. image: {
  28628. source: "./media/characters/bailey/front.svg",
  28629. extra: 1778 / 1724,
  28630. bottom: 30 / 1808
  28631. }
  28632. },
  28633. },
  28634. [
  28635. {
  28636. name: "Micro",
  28637. height: math.unit(4, "inches")
  28638. },
  28639. {
  28640. name: "Normal",
  28641. height: math.unit(5 + 5 / 12, "feet"),
  28642. default: true
  28643. },
  28644. {
  28645. name: "Macro",
  28646. height: math.unit(250, "feet")
  28647. },
  28648. {
  28649. name: "Megamacro",
  28650. height: math.unit(100, "miles")
  28651. },
  28652. ]
  28653. ))
  28654. characterMakers.push(() => makeCharacter(
  28655. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28656. {
  28657. front: {
  28658. height: math.unit(5 + 2 / 12, "feet"),
  28659. weight: math.unit(120, "lb"),
  28660. name: "Front",
  28661. image: {
  28662. source: "./media/characters/snaps/front.svg",
  28663. extra: 2370 / 2177,
  28664. bottom: 48 / 2418
  28665. }
  28666. },
  28667. back: {
  28668. height: math.unit(5 + 2 / 12, "feet"),
  28669. weight: math.unit(120, "lb"),
  28670. name: "Back",
  28671. image: {
  28672. source: "./media/characters/snaps/back.svg",
  28673. extra: 2408 / 2258,
  28674. bottom: 15 / 2423
  28675. }
  28676. },
  28677. },
  28678. [
  28679. {
  28680. name: "Micro",
  28681. height: math.unit(9, "inches")
  28682. },
  28683. {
  28684. name: "Normal",
  28685. height: math.unit(5 + 2 / 12, "feet"),
  28686. default: true
  28687. },
  28688. {
  28689. name: "Mini Macro",
  28690. height: math.unit(10, "feet")
  28691. },
  28692. ]
  28693. ))
  28694. characterMakers.push(() => makeCharacter(
  28695. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28696. {
  28697. front: {
  28698. height: math.unit(1.8, "meters"),
  28699. weight: math.unit(85, "kg"),
  28700. name: "Front",
  28701. image: {
  28702. source: "./media/characters/azteck/front.svg",
  28703. extra: 2815 / 2625,
  28704. bottom: 89 / 2904
  28705. }
  28706. },
  28707. back: {
  28708. height: math.unit(1.8, "meters"),
  28709. weight: math.unit(85, "kg"),
  28710. name: "Back",
  28711. image: {
  28712. source: "./media/characters/azteck/back.svg",
  28713. extra: 2856 / 2648,
  28714. bottom: 85 / 2941
  28715. }
  28716. },
  28717. frontDressed: {
  28718. height: math.unit(1.8, "meters"),
  28719. weight: math.unit(85, "kg"),
  28720. name: "Front (Dressed)",
  28721. image: {
  28722. source: "./media/characters/azteck/front-dressed.svg",
  28723. extra: 2147 / 2003,
  28724. bottom: 68 / 2215
  28725. }
  28726. },
  28727. head: {
  28728. height: math.unit(0.47, "meters"),
  28729. weight: math.unit(85, "kg"),
  28730. name: "Head",
  28731. image: {
  28732. source: "./media/characters/azteck/head.svg"
  28733. }
  28734. },
  28735. },
  28736. [
  28737. {
  28738. name: "Bite sized",
  28739. height: math.unit(16, "cm")
  28740. },
  28741. {
  28742. name: "Normal",
  28743. height: math.unit(1.8, "meters"),
  28744. default: true
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28750. {
  28751. front: {
  28752. height: math.unit(6, "feet"),
  28753. weight: math.unit(150, "lb"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/pidge/front.svg",
  28757. extra: 620 / 588,
  28758. bottom: 9 / 629
  28759. }
  28760. },
  28761. back: {
  28762. height: math.unit(6, "feet"),
  28763. weight: math.unit(150, "lb"),
  28764. name: "Back",
  28765. image: {
  28766. source: "./media/characters/pidge/back.svg",
  28767. extra: 620 / 588,
  28768. bottom: 9 / 629
  28769. }
  28770. },
  28771. },
  28772. [
  28773. {
  28774. name: "Macro",
  28775. height: math.unit(1, "mile"),
  28776. default: true
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(6, "feet"),
  28785. weight: math.unit(150, "lb"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/en/front.svg",
  28789. extra: 1697 / 1563,
  28790. bottom: 103 / 1800
  28791. }
  28792. },
  28793. back: {
  28794. height: math.unit(6, "feet"),
  28795. weight: math.unit(150, "lb"),
  28796. name: "Back",
  28797. image: {
  28798. source: "./media/characters/en/back.svg",
  28799. extra: 1700 / 1570,
  28800. bottom: 51 / 1751
  28801. }
  28802. },
  28803. frontDressed: {
  28804. height: math.unit(6, "feet"),
  28805. weight: math.unit(150, "lb"),
  28806. name: "Front (Dressed)",
  28807. image: {
  28808. source: "./media/characters/en/front-dressed.svg",
  28809. extra: 1697 / 1563,
  28810. bottom: 103 / 1800
  28811. }
  28812. },
  28813. backDressed: {
  28814. height: math.unit(6, "feet"),
  28815. weight: math.unit(150, "lb"),
  28816. name: "Back (Dressed)",
  28817. image: {
  28818. source: "./media/characters/en/back-dressed.svg",
  28819. extra: 1700 / 1570,
  28820. bottom: 51 / 1751
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Macro",
  28827. height: math.unit(210, "feet"),
  28828. default: true
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28834. {
  28835. front: {
  28836. height: math.unit(6, "feet"),
  28837. weight: math.unit(150, "lb"),
  28838. name: "Front",
  28839. image: {
  28840. source: "./media/characters/haze-orris/front.svg",
  28841. extra: 3975 / 3525,
  28842. bottom: 137 / 4112
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Micro",
  28849. height: math.unit(150, "mm"),
  28850. default: true
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28856. {
  28857. front: {
  28858. height: math.unit(6, "feet"),
  28859. weight: math.unit(150, "lb"),
  28860. name: "Front",
  28861. image: {
  28862. source: "./media/characters/casselene-yaro/front.svg",
  28863. extra: 4721 / 4541,
  28864. bottom: 82 / 4803
  28865. }
  28866. },
  28867. back: {
  28868. height: math.unit(6, "feet"),
  28869. weight: math.unit(150, "lb"),
  28870. name: "Back",
  28871. image: {
  28872. source: "./media/characters/casselene-yaro/back.svg",
  28873. extra: 4569 / 4377,
  28874. bottom: 69 / 4638
  28875. }
  28876. },
  28877. frontDressed: {
  28878. height: math.unit(6, "feet"),
  28879. weight: math.unit(150, "lb"),
  28880. name: "Front-dressed",
  28881. image: {
  28882. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28883. extra: 4721 / 4541,
  28884. bottom: 82 / 4803
  28885. }
  28886. },
  28887. },
  28888. [
  28889. {
  28890. name: "Macro",
  28891. height: math.unit(190, "feet"),
  28892. default: true
  28893. },
  28894. ]
  28895. ))
  28896. characterMakers.push(() => makeCharacter(
  28897. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28898. {
  28899. front: {
  28900. height: math.unit(6, "feet"),
  28901. weight: math.unit(150, "lb"),
  28902. name: "Front",
  28903. image: {
  28904. source: "./media/characters/myra-rue-delore/front.svg",
  28905. extra: 1340 / 1308,
  28906. bottom: 67 / 1407
  28907. }
  28908. },
  28909. back: {
  28910. height: math.unit(6, "feet"),
  28911. weight: math.unit(150, "lb"),
  28912. name: "Back",
  28913. image: {
  28914. source: "./media/characters/myra-rue-delore/back.svg",
  28915. extra: 1341 / 1310,
  28916. bottom: 40 / 1381
  28917. }
  28918. },
  28919. frontDressed: {
  28920. height: math.unit(6, "feet"),
  28921. weight: math.unit(150, "lb"),
  28922. name: "Front (Dressed)",
  28923. image: {
  28924. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28925. extra: 1340 / 1308,
  28926. bottom: 67 / 1407
  28927. }
  28928. },
  28929. },
  28930. [
  28931. {
  28932. name: "Macro",
  28933. height: math.unit(150, "feet"),
  28934. default: true
  28935. },
  28936. ]
  28937. ))
  28938. characterMakers.push(() => makeCharacter(
  28939. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28940. {
  28941. front: {
  28942. height: math.unit(10, "feet"),
  28943. weight: math.unit(15015, "lb"),
  28944. name: "Front",
  28945. image: {
  28946. source: "./media/characters/fem!plat/front.svg",
  28947. extra: 2799 / 2604,
  28948. bottom: 149 / 2948
  28949. }
  28950. },
  28951. },
  28952. [
  28953. {
  28954. name: "Normal",
  28955. height: math.unit(10, "feet"),
  28956. default: true
  28957. },
  28958. {
  28959. name: "Macro",
  28960. height: math.unit(100, "feet")
  28961. },
  28962. {
  28963. name: "Megamacro",
  28964. height: math.unit(1000, "feet")
  28965. },
  28966. ]
  28967. ))
  28968. characterMakers.push(() => makeCharacter(
  28969. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28970. {
  28971. front: {
  28972. height: math.unit(15 + 5 / 12, "feet"),
  28973. weight: math.unit(4600, "lb"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/neapolitan-ananassa/front.svg",
  28977. extra: 2903 / 2736,
  28978. bottom: 0 / 2903
  28979. }
  28980. },
  28981. side: {
  28982. height: math.unit(15 + 5 / 12, "feet"),
  28983. weight: math.unit(4600, "lb"),
  28984. name: "Side",
  28985. image: {
  28986. source: "./media/characters/neapolitan-ananassa/side.svg",
  28987. extra: 2925 / 2719,
  28988. bottom: 0 / 2925
  28989. }
  28990. },
  28991. back: {
  28992. height: math.unit(15 + 5 / 12, "feet"),
  28993. weight: math.unit(4600, "lb"),
  28994. name: "Back",
  28995. image: {
  28996. source: "./media/characters/neapolitan-ananassa/back.svg",
  28997. extra: 2903 / 2736,
  28998. bottom: 0 / 2903
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Normal",
  29005. height: math.unit(15 + 5 / 12, "feet"),
  29006. default: true
  29007. },
  29008. {
  29009. name: "Post-Millenium",
  29010. height: math.unit(35 + 5 / 12, "feet")
  29011. },
  29012. {
  29013. name: "Post-Era",
  29014. height: math.unit(450 + 5 / 12, "feet")
  29015. },
  29016. ]
  29017. ))
  29018. characterMakers.push(() => makeCharacter(
  29019. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29020. {
  29021. front: {
  29022. height: math.unit(300, "meters"),
  29023. weight: math.unit(125000, "tonnes"),
  29024. name: "Front",
  29025. image: {
  29026. source: "./media/characters/pazuzu/front.svg",
  29027. extra: 877 / 794,
  29028. bottom: 47 / 924
  29029. }
  29030. },
  29031. },
  29032. [
  29033. {
  29034. name: "Macro",
  29035. height: math.unit(300, "meters"),
  29036. default: true
  29037. },
  29038. ]
  29039. ))
  29040. characterMakers.push(() => makeCharacter(
  29041. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29042. {
  29043. side: {
  29044. height: math.unit(10 + 7 / 12, "feet"),
  29045. weight: math.unit(2.5, "tons"),
  29046. name: "Side",
  29047. image: {
  29048. source: "./media/characters/aasha/side.svg",
  29049. extra: 1345 / 1245,
  29050. bottom: 111 / 1456
  29051. }
  29052. },
  29053. back: {
  29054. height: math.unit(10 + 7 / 12, "feet"),
  29055. weight: math.unit(2.5, "tons"),
  29056. name: "Back",
  29057. image: {
  29058. source: "./media/characters/aasha/back.svg",
  29059. extra: 1133 / 1057,
  29060. bottom: 257 / 1390
  29061. }
  29062. },
  29063. },
  29064. [
  29065. {
  29066. name: "Normal",
  29067. height: math.unit(10 + 7 / 12, "feet"),
  29068. default: true
  29069. },
  29070. ]
  29071. ))
  29072. characterMakers.push(() => makeCharacter(
  29073. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29074. {
  29075. front: {
  29076. height: math.unit(6 + 3 / 12, "feet"),
  29077. name: "Front",
  29078. image: {
  29079. source: "./media/characters/nevan/front.svg",
  29080. extra: 704 / 704,
  29081. bottom: 28 / 732
  29082. }
  29083. },
  29084. back: {
  29085. height: math.unit(6 + 3 / 12, "feet"),
  29086. name: "Back",
  29087. image: {
  29088. source: "./media/characters/nevan/back.svg",
  29089. extra: 714 / 714,
  29090. bottom: 21 / 735
  29091. }
  29092. },
  29093. frontFlaccid: {
  29094. height: math.unit(6 + 3 / 12, "feet"),
  29095. name: "Front (Flaccid)",
  29096. image: {
  29097. source: "./media/characters/nevan/front-flaccid.svg",
  29098. extra: 704 / 704,
  29099. bottom: 28 / 732
  29100. }
  29101. },
  29102. frontErect: {
  29103. height: math.unit(6 + 3 / 12, "feet"),
  29104. name: "Front (Erect)",
  29105. image: {
  29106. source: "./media/characters/nevan/front-erect.svg",
  29107. extra: 704 / 704,
  29108. bottom: 28 / 732
  29109. }
  29110. },
  29111. backFlaccid: {
  29112. height: math.unit(6 + 3 / 12, "feet"),
  29113. name: "Back (Flaccid)",
  29114. image: {
  29115. source: "./media/characters/nevan/back-flaccid.svg",
  29116. extra: 714 / 714,
  29117. bottom: 21 / 735
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Normal",
  29124. height: math.unit(6 + 3 / 12, "feet"),
  29125. default: true
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(4, "feet"),
  29134. name: "Front",
  29135. image: {
  29136. source: "./media/characters/arhan/front.svg",
  29137. extra: 3368 / 3133,
  29138. bottom: 0 / 3368
  29139. }
  29140. },
  29141. side: {
  29142. height: math.unit(4, "feet"),
  29143. name: "Side",
  29144. image: {
  29145. source: "./media/characters/arhan/side.svg",
  29146. extra: 3347 / 3105,
  29147. bottom: 0 / 3347
  29148. }
  29149. },
  29150. tongue: {
  29151. height: math.unit(1.42, "feet"),
  29152. name: "Tongue",
  29153. image: {
  29154. source: "./media/characters/arhan/tongue.svg"
  29155. }
  29156. },
  29157. head: {
  29158. height: math.unit(0.85, "feet"),
  29159. name: "Head",
  29160. image: {
  29161. source: "./media/characters/arhan/head.svg"
  29162. }
  29163. },
  29164. },
  29165. [
  29166. {
  29167. name: "Normal",
  29168. height: math.unit(4, "feet"),
  29169. default: true
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29175. {
  29176. front: {
  29177. height: math.unit(5 + 7.5 / 12, "feet"),
  29178. weight: math.unit(120, "lb"),
  29179. name: "Front",
  29180. image: {
  29181. source: "./media/characters/digi-duncan/front.svg",
  29182. extra: 330 / 326,
  29183. bottom: 16 / 346
  29184. }
  29185. },
  29186. side: {
  29187. height: math.unit(5 + 7.5 / 12, "feet"),
  29188. weight: math.unit(120, "lb"),
  29189. name: "Side",
  29190. image: {
  29191. source: "./media/characters/digi-duncan/side.svg",
  29192. extra: 341 / 337,
  29193. bottom: 1 / 342
  29194. }
  29195. },
  29196. back: {
  29197. height: math.unit(5 + 7.5 / 12, "feet"),
  29198. weight: math.unit(120, "lb"),
  29199. name: "Back",
  29200. image: {
  29201. source: "./media/characters/digi-duncan/back.svg",
  29202. extra: 330 / 326,
  29203. bottom: 12 / 342
  29204. }
  29205. },
  29206. },
  29207. [
  29208. {
  29209. name: "Speck",
  29210. height: math.unit(0.25, "mm")
  29211. },
  29212. {
  29213. name: "Micro",
  29214. height: math.unit(5, "mm")
  29215. },
  29216. {
  29217. name: "Tiny",
  29218. height: math.unit(0.5, "inches"),
  29219. default: true
  29220. },
  29221. {
  29222. name: "Human",
  29223. height: math.unit(5 + 7.5 / 12, "feet")
  29224. },
  29225. {
  29226. name: "Minigiant",
  29227. height: math.unit(8 + 5.25, "feet")
  29228. },
  29229. {
  29230. name: "Giant",
  29231. height: math.unit(2000, "feet")
  29232. },
  29233. {
  29234. name: "Mega",
  29235. height: math.unit(371.1, "miles")
  29236. },
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(2, "meters"),
  29244. weight: math.unit(350, "kg"),
  29245. name: "Front",
  29246. image: {
  29247. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29248. extra: 898 / 838,
  29249. bottom: 9 / 907
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Micro",
  29256. height: math.unit(8, "meters")
  29257. },
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(50, "meters"),
  29261. default: true
  29262. },
  29263. {
  29264. name: "Macro",
  29265. height: math.unit(500, "meters")
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(6 + 6 / 12, "feet"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/khardesh/front.svg",
  29277. extra: 888 / 797,
  29278. bottom: 25 / 913
  29279. }
  29280. },
  29281. },
  29282. [
  29283. {
  29284. name: "Normal",
  29285. height: math.unit(6 + 6 / 12, "feet"),
  29286. default: true
  29287. },
  29288. {
  29289. name: "Normal+",
  29290. height: math.unit(4, "meters")
  29291. },
  29292. {
  29293. name: "Macro",
  29294. height: math.unit(50, "meters")
  29295. },
  29296. {
  29297. name: "Macro+",
  29298. height: math.unit(100, "meters")
  29299. },
  29300. {
  29301. name: "Megamacro",
  29302. height: math.unit(20, "km")
  29303. },
  29304. ]
  29305. ))
  29306. characterMakers.push(() => makeCharacter(
  29307. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29308. {
  29309. front: {
  29310. height: math.unit(6, "feet"),
  29311. weight: math.unit(150, "lb"),
  29312. name: "Front",
  29313. image: {
  29314. source: "./media/characters/kosho/front.svg",
  29315. extra: 1847 / 1847,
  29316. bottom: 86 / 1933
  29317. }
  29318. },
  29319. },
  29320. [
  29321. {
  29322. name: "Second-stage micro",
  29323. height: math.unit(0.5, "inches")
  29324. },
  29325. {
  29326. name: "First-stage micro",
  29327. height: math.unit(6, "inches")
  29328. },
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(6, "feet"),
  29332. default: true
  29333. },
  29334. {
  29335. name: "First-stage macro",
  29336. height: math.unit(72, "feet")
  29337. },
  29338. {
  29339. name: "Second-stage macro",
  29340. height: math.unit(864, "feet")
  29341. },
  29342. ]
  29343. ))
  29344. characterMakers.push(() => makeCharacter(
  29345. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29346. {
  29347. normal: {
  29348. height: math.unit(4 + 6 / 12, "feet"),
  29349. name: "Normal",
  29350. image: {
  29351. source: "./media/characters/hydra/normal.svg",
  29352. extra: 2833 / 2634,
  29353. bottom: 68 / 2901
  29354. }
  29355. },
  29356. smol: {
  29357. height: math.unit(0.705, "inches"),
  29358. name: "Smol",
  29359. image: {
  29360. source: "./media/characters/hydra/smol.svg",
  29361. extra: 2715 / 2540,
  29362. bottom: 0 / 2715
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Normal",
  29369. height: math.unit(4 + 6 / 12, "feet"),
  29370. default: true
  29371. }
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29376. {
  29377. front: {
  29378. height: math.unit(0.6, "cm"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/daz/front.svg",
  29382. extra: 1682 / 1164,
  29383. bottom: 42 / 1724
  29384. }
  29385. },
  29386. },
  29387. [
  29388. {
  29389. name: "Normal",
  29390. height: math.unit(0.6, "cm"),
  29391. default: true
  29392. },
  29393. ]
  29394. ))
  29395. characterMakers.push(() => makeCharacter(
  29396. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29397. {
  29398. front: {
  29399. height: math.unit(6, "feet"),
  29400. weight: math.unit(235, "lb"),
  29401. name: "Front",
  29402. image: {
  29403. source: "./media/characters/theo-pangolin/front.svg",
  29404. extra: 1996 / 1969,
  29405. bottom: 115 / 2111
  29406. }
  29407. },
  29408. back: {
  29409. height: math.unit(6, "feet"),
  29410. weight: math.unit(235, "lb"),
  29411. name: "Back",
  29412. image: {
  29413. source: "./media/characters/theo-pangolin/back.svg",
  29414. extra: 1979 / 1979,
  29415. bottom: 40 / 2019
  29416. }
  29417. },
  29418. feral: {
  29419. height: math.unit(2, "feet"),
  29420. weight: math.unit(30, "lb"),
  29421. name: "Feral",
  29422. image: {
  29423. source: "./media/characters/theo-pangolin/feral.svg",
  29424. extra: 803 / 791,
  29425. bottom: 181 / 984
  29426. }
  29427. },
  29428. footFive: {
  29429. height: math.unit(1.43, "feet"),
  29430. name: "Foot (Five Toes)",
  29431. image: {
  29432. source: "./media/characters/theo-pangolin/foot-five.svg"
  29433. }
  29434. },
  29435. footFour: {
  29436. height: math.unit(1.43, "feet"),
  29437. name: "Foot (Four Toes)",
  29438. image: {
  29439. source: "./media/characters/theo-pangolin/foot-four.svg"
  29440. }
  29441. },
  29442. handFour: {
  29443. height: math.unit(0.81, "feet"),
  29444. name: "Hand (Four Fingers)",
  29445. image: {
  29446. source: "./media/characters/theo-pangolin/hand-four.svg"
  29447. }
  29448. },
  29449. handThree: {
  29450. height: math.unit(0.81, "feet"),
  29451. name: "Hand (Three Fingers)",
  29452. image: {
  29453. source: "./media/characters/theo-pangolin/hand-three.svg"
  29454. }
  29455. },
  29456. headFront: {
  29457. height: math.unit(1.37, "feet"),
  29458. name: "Head (Front)",
  29459. image: {
  29460. source: "./media/characters/theo-pangolin/head-front.svg"
  29461. }
  29462. },
  29463. headSide: {
  29464. height: math.unit(1.43, "feet"),
  29465. name: "Head (Side)",
  29466. image: {
  29467. source: "./media/characters/theo-pangolin/head-side.svg"
  29468. }
  29469. },
  29470. tongue: {
  29471. height: math.unit(2.29, "feet"),
  29472. name: "Tongue",
  29473. image: {
  29474. source: "./media/characters/theo-pangolin/tongue.svg"
  29475. }
  29476. },
  29477. },
  29478. [
  29479. {
  29480. name: "Normal",
  29481. height: math.unit(6, "feet")
  29482. },
  29483. {
  29484. name: "Macro",
  29485. height: math.unit(400, "feet"),
  29486. default: true
  29487. },
  29488. ]
  29489. ))
  29490. characterMakers.push(() => makeCharacter(
  29491. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29492. {
  29493. front: {
  29494. height: math.unit(6, "inches"),
  29495. weight: math.unit(0.036, "kg"),
  29496. name: "Front",
  29497. image: {
  29498. source: "./media/characters/renée/front.svg",
  29499. extra: 900 / 886,
  29500. bottom: 8 / 908
  29501. }
  29502. },
  29503. },
  29504. [
  29505. {
  29506. name: "Nano",
  29507. height: math.unit(1, "nm")
  29508. },
  29509. {
  29510. name: "Micro",
  29511. height: math.unit(1, "mm")
  29512. },
  29513. {
  29514. name: "Normal",
  29515. height: math.unit(6, "inches")
  29516. },
  29517. {
  29518. name: "Macro",
  29519. height: math.unit(2000, "feet"),
  29520. default: true
  29521. },
  29522. {
  29523. name: "Megamacro",
  29524. height: math.unit(2, "km")
  29525. },
  29526. {
  29527. name: "Gigamacro",
  29528. height: math.unit(2000, "km")
  29529. },
  29530. {
  29531. name: "Teramacro",
  29532. height: math.unit(250000, "km")
  29533. },
  29534. ]
  29535. ))
  29536. characterMakers.push(() => makeCharacter(
  29537. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29538. {
  29539. front: {
  29540. height: math.unit(4, "meters"),
  29541. weight: math.unit(150, "kg"),
  29542. name: "Front",
  29543. image: {
  29544. source: "./media/characters/caledvwlch/front.svg",
  29545. extra: 1760 / 1551,
  29546. bottom: 28 / 1788
  29547. }
  29548. },
  29549. side: {
  29550. height: math.unit(4, "meters"),
  29551. weight: math.unit(150, "kg"),
  29552. name: "Side",
  29553. image: {
  29554. source: "./media/characters/caledvwlch/side.svg",
  29555. extra: 1605 / 1536,
  29556. bottom: 31 / 1636
  29557. }
  29558. },
  29559. back: {
  29560. height: math.unit(4, "meters"),
  29561. weight: math.unit(150, "kg"),
  29562. name: "Back",
  29563. image: {
  29564. source: "./media/characters/caledvwlch/back.svg",
  29565. extra: 1635 / 1565,
  29566. bottom: 27 / 1662
  29567. }
  29568. },
  29569. },
  29570. [
  29571. {
  29572. name: "\"Incognito\"",
  29573. height: math.unit(4, "meters")
  29574. },
  29575. {
  29576. name: "Small rampage",
  29577. height: math.unit(600, "meters")
  29578. },
  29579. {
  29580. name: "Mega",
  29581. height: math.unit(30, "km")
  29582. },
  29583. {
  29584. name: "Home-size",
  29585. height: math.unit(50, "km"),
  29586. default: true
  29587. },
  29588. {
  29589. name: "Giga",
  29590. height: math.unit(300, "km")
  29591. },
  29592. {
  29593. name: "Lounging",
  29594. height: math.unit(11000, "km")
  29595. },
  29596. {
  29597. name: "Planet snacking",
  29598. height: math.unit(2000000, "km")
  29599. },
  29600. ]
  29601. ))
  29602. characterMakers.push(() => makeCharacter(
  29603. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29604. {
  29605. front: {
  29606. height: math.unit(6, "feet"),
  29607. weight: math.unit(215, "lb"),
  29608. name: "Front",
  29609. image: {
  29610. source: "./media/characters/sapphire-svell/front.svg",
  29611. extra: 495 / 455,
  29612. bottom: 20 / 515
  29613. }
  29614. },
  29615. back: {
  29616. height: math.unit(6, "feet"),
  29617. weight: math.unit(216, "lb"),
  29618. name: "Back",
  29619. image: {
  29620. source: "./media/characters/sapphire-svell/back.svg",
  29621. extra: 497 / 477,
  29622. bottom: 7 / 504
  29623. }
  29624. },
  29625. maw: {
  29626. height: math.unit(1.57, "feet"),
  29627. name: "Maw",
  29628. image: {
  29629. source: "./media/characters/sapphire-svell/maw.svg"
  29630. }
  29631. },
  29632. foot: {
  29633. height: math.unit(1.07, "feet"),
  29634. name: "Foot",
  29635. image: {
  29636. source: "./media/characters/sapphire-svell/foot.svg"
  29637. }
  29638. },
  29639. toering: {
  29640. height: math.unit(1.7, "inch"),
  29641. name: "Toering",
  29642. image: {
  29643. source: "./media/characters/sapphire-svell/toering.svg"
  29644. }
  29645. },
  29646. },
  29647. [
  29648. {
  29649. name: "Normal",
  29650. height: math.unit(300, "feet"),
  29651. default: true
  29652. },
  29653. {
  29654. name: "Augmented",
  29655. height: math.unit(1250, "feet")
  29656. },
  29657. {
  29658. name: "Unleashed",
  29659. height: math.unit(3000, "feet")
  29660. },
  29661. ]
  29662. ))
  29663. characterMakers.push(() => makeCharacter(
  29664. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29665. {
  29666. side: {
  29667. height: math.unit(2 + 3 / 12, "feet"),
  29668. weight: math.unit(110, "lb"),
  29669. name: "Side",
  29670. image: {
  29671. source: "./media/characters/glitch-flux/side.svg",
  29672. extra: 997 / 805,
  29673. bottom: 20 / 1017
  29674. }
  29675. },
  29676. },
  29677. [
  29678. {
  29679. name: "Normal",
  29680. height: math.unit(2 + 3 / 12, "feet"),
  29681. default: true
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29687. {
  29688. front: {
  29689. height: math.unit(4, "meters"),
  29690. name: "Front",
  29691. image: {
  29692. source: "./media/characters/mid/front.svg",
  29693. extra: 507 / 476,
  29694. bottom: 17 / 524
  29695. }
  29696. },
  29697. back: {
  29698. height: math.unit(4, "meters"),
  29699. name: "Back",
  29700. image: {
  29701. source: "./media/characters/mid/back.svg",
  29702. extra: 519 / 487,
  29703. bottom: 7 / 526
  29704. }
  29705. },
  29706. stuck: {
  29707. height: math.unit(2.2, "meters"),
  29708. name: "Stuck",
  29709. image: {
  29710. source: "./media/characters/mid/stuck.svg",
  29711. extra: 1951 / 1869,
  29712. bottom: 88 / 2039
  29713. }
  29714. }
  29715. },
  29716. [
  29717. {
  29718. name: "Normal",
  29719. height: math.unit(4, "meters"),
  29720. default: true
  29721. },
  29722. {
  29723. name: "Big",
  29724. height: math.unit(10, "meters")
  29725. },
  29726. {
  29727. name: "Macro",
  29728. height: math.unit(800, "meters")
  29729. },
  29730. {
  29731. name: "Megamacro",
  29732. height: math.unit(100, "km")
  29733. },
  29734. {
  29735. name: "Overgrown",
  29736. height: math.unit(1, "parsec")
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29742. {
  29743. front: {
  29744. height: math.unit(2.5, "meters"),
  29745. weight: math.unit(225, "kg"),
  29746. name: "Front",
  29747. image: {
  29748. source: "./media/characters/iris/front.svg",
  29749. extra: 3348 / 3251,
  29750. bottom: 205 / 3553
  29751. }
  29752. },
  29753. maw: {
  29754. height: math.unit(0.56, "meter"),
  29755. name: "Maw",
  29756. image: {
  29757. source: "./media/characters/iris/maw.svg"
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Mewter cat",
  29764. height: math.unit(1.2, "meters")
  29765. },
  29766. {
  29767. name: "Minimacro",
  29768. height: math.unit(2.5, "meters"),
  29769. default: true
  29770. },
  29771. {
  29772. name: "Macro",
  29773. height: math.unit(180, "meters")
  29774. },
  29775. {
  29776. name: "Megamacro",
  29777. height: math.unit(2746, "meters")
  29778. },
  29779. ]
  29780. ))
  29781. characterMakers.push(() => makeCharacter(
  29782. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29783. {
  29784. front: {
  29785. height: math.unit(6, "feet"),
  29786. weight: math.unit(135, "lb"),
  29787. name: "Front",
  29788. image: {
  29789. source: "./media/characters/axel/front.svg",
  29790. extra: 908 / 908,
  29791. bottom: 58 / 966
  29792. }
  29793. },
  29794. side: {
  29795. height: math.unit(6, "feet"),
  29796. weight: math.unit(135, "lb"),
  29797. name: "Side",
  29798. image: {
  29799. source: "./media/characters/axel/side.svg",
  29800. extra: 958 / 958,
  29801. bottom: 11 / 969
  29802. }
  29803. },
  29804. back: {
  29805. height: math.unit(6, "feet"),
  29806. weight: math.unit(135, "lb"),
  29807. name: "Back",
  29808. image: {
  29809. source: "./media/characters/axel/back.svg",
  29810. extra: 887 / 887,
  29811. bottom: 34 / 921
  29812. }
  29813. },
  29814. head: {
  29815. height: math.unit(1.07, "feet"),
  29816. name: "Head",
  29817. image: {
  29818. source: "./media/characters/axel/head.svg"
  29819. }
  29820. },
  29821. beak: {
  29822. height: math.unit(1.4, "feet"),
  29823. name: "Beak",
  29824. image: {
  29825. source: "./media/characters/axel/beak.svg"
  29826. }
  29827. },
  29828. beakSide: {
  29829. height: math.unit(1.4, "feet"),
  29830. name: "Beak Side",
  29831. image: {
  29832. source: "./media/characters/axel/beak-side.svg"
  29833. }
  29834. },
  29835. sheath: {
  29836. height: math.unit(0.5, "feet"),
  29837. name: "Sheath",
  29838. image: {
  29839. source: "./media/characters/axel/sheath.svg"
  29840. }
  29841. },
  29842. dick: {
  29843. height: math.unit(0.98, "feet"),
  29844. name: "Dick",
  29845. image: {
  29846. source: "./media/characters/axel/dick.svg"
  29847. }
  29848. },
  29849. },
  29850. [
  29851. {
  29852. name: "Macro",
  29853. height: math.unit(68, "meters"),
  29854. default: true
  29855. },
  29856. ]
  29857. ))
  29858. characterMakers.push(() => makeCharacter(
  29859. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29860. {
  29861. front: {
  29862. height: math.unit(3.5, "meters"),
  29863. weight: math.unit(1200, "kg"),
  29864. name: "Front",
  29865. image: {
  29866. source: "./media/characters/joanna/front.svg",
  29867. extra: 1596 / 1488,
  29868. bottom: 29 / 1625
  29869. }
  29870. },
  29871. back: {
  29872. height: math.unit(3.5, "meters"),
  29873. weight: math.unit(1200, "kg"),
  29874. name: "Back",
  29875. image: {
  29876. source: "./media/characters/joanna/back.svg",
  29877. extra: 1594 / 1495,
  29878. bottom: 26 / 1620
  29879. }
  29880. },
  29881. frontShorts: {
  29882. height: math.unit(3.5, "meters"),
  29883. weight: math.unit(1200, "kg"),
  29884. name: "Front (Shorts)",
  29885. image: {
  29886. source: "./media/characters/joanna/front-shorts.svg",
  29887. extra: 1596 / 1488,
  29888. bottom: 29 / 1625
  29889. }
  29890. },
  29891. frontBiker: {
  29892. height: math.unit(3.5, "meters"),
  29893. weight: math.unit(1200, "kg"),
  29894. name: "Front (Biker)",
  29895. image: {
  29896. source: "./media/characters/joanna/front-biker.svg",
  29897. extra: 1596 / 1488,
  29898. bottom: 29 / 1625
  29899. }
  29900. },
  29901. backBiker: {
  29902. height: math.unit(3.5, "meters"),
  29903. weight: math.unit(1200, "kg"),
  29904. name: "Back (Biker)",
  29905. image: {
  29906. source: "./media/characters/joanna/back-biker.svg",
  29907. extra: 1594 / 1495,
  29908. bottom: 88 / 1682
  29909. }
  29910. },
  29911. bikeLeft: {
  29912. height: math.unit(2.4, "meters"),
  29913. weight: math.unit(1600, "kg"),
  29914. name: "Bike (Left)",
  29915. image: {
  29916. source: "./media/characters/joanna/bike-left.svg",
  29917. extra: 720 / 720,
  29918. bottom: 8 / 728
  29919. }
  29920. },
  29921. bikeRight: {
  29922. height: math.unit(2.4, "meters"),
  29923. weight: math.unit(1600, "kg"),
  29924. name: "Bike (Right)",
  29925. image: {
  29926. source: "./media/characters/joanna/bike-right.svg",
  29927. extra: 720 / 720,
  29928. bottom: 8 / 728
  29929. }
  29930. },
  29931. },
  29932. [
  29933. {
  29934. name: "Incognito",
  29935. height: math.unit(3.5, "meters")
  29936. },
  29937. {
  29938. name: "Casual Big",
  29939. height: math.unit(200, "meters")
  29940. },
  29941. {
  29942. name: "Macro",
  29943. height: math.unit(600, "meters")
  29944. },
  29945. {
  29946. name: "Original",
  29947. height: math.unit(20, "km"),
  29948. default: true
  29949. },
  29950. {
  29951. name: "Giga",
  29952. height: math.unit(400, "km")
  29953. },
  29954. {
  29955. name: "Lounging",
  29956. height: math.unit(1500, "km")
  29957. },
  29958. {
  29959. name: "Planetary",
  29960. height: math.unit(200000, "km")
  29961. },
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29966. {
  29967. front: {
  29968. height: math.unit(6, "feet"),
  29969. weight: math.unit(150, "lb"),
  29970. name: "Front",
  29971. image: {
  29972. source: "./media/characters/hugo-sigil/front.svg",
  29973. extra: 522 / 500,
  29974. bottom: 2 / 524
  29975. }
  29976. },
  29977. back: {
  29978. height: math.unit(6, "feet"),
  29979. weight: math.unit(150, "lb"),
  29980. name: "Back",
  29981. image: {
  29982. source: "./media/characters/hugo-sigil/back.svg",
  29983. extra: 519 / 495,
  29984. bottom: 5 / 524
  29985. }
  29986. },
  29987. maw: {
  29988. height: math.unit(1.4, "feet"),
  29989. weight: math.unit(150, "lb"),
  29990. name: "Maw",
  29991. image: {
  29992. source: "./media/characters/hugo-sigil/maw.svg"
  29993. }
  29994. },
  29995. feet: {
  29996. height: math.unit(1.56, "feet"),
  29997. weight: math.unit(150, "lb"),
  29998. name: "Feet",
  29999. image: {
  30000. source: "./media/characters/hugo-sigil/feet.svg",
  30001. extra: 177 / 177,
  30002. bottom: 12 / 189
  30003. }
  30004. },
  30005. },
  30006. [
  30007. {
  30008. name: "Normal",
  30009. height: math.unit(6, "feet")
  30010. },
  30011. {
  30012. name: "Macro",
  30013. height: math.unit(200, "feet"),
  30014. default: true
  30015. },
  30016. ]
  30017. ))
  30018. characterMakers.push(() => makeCharacter(
  30019. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30020. {
  30021. front: {
  30022. height: math.unit(6, "feet"),
  30023. weight: math.unit(150, "lb"),
  30024. name: "Front",
  30025. image: {
  30026. source: "./media/characters/peri/front.svg",
  30027. extra: 2354 / 2233,
  30028. bottom: 49 / 2403
  30029. }
  30030. },
  30031. },
  30032. [
  30033. {
  30034. name: "Really Small",
  30035. height: math.unit(1, "nm")
  30036. },
  30037. {
  30038. name: "Micro",
  30039. height: math.unit(4, "inches")
  30040. },
  30041. {
  30042. name: "Normal",
  30043. height: math.unit(7, "inches"),
  30044. default: true
  30045. },
  30046. {
  30047. name: "Macro",
  30048. height: math.unit(400, "feet")
  30049. },
  30050. {
  30051. name: "Megamacro",
  30052. height: math.unit(100, "miles")
  30053. },
  30054. ]
  30055. ))
  30056. characterMakers.push(() => makeCharacter(
  30057. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30058. {
  30059. frontSlim: {
  30060. height: math.unit(7, "feet"),
  30061. name: "Front (Slim)",
  30062. image: {
  30063. source: "./media/characters/issilora/front-slim.svg",
  30064. extra: 529 / 449,
  30065. bottom: 53 / 582
  30066. }
  30067. },
  30068. sideSlim: {
  30069. height: math.unit(7, "feet"),
  30070. name: "Side (Slim)",
  30071. image: {
  30072. source: "./media/characters/issilora/side-slim.svg",
  30073. extra: 570 / 480,
  30074. bottom: 30 / 600
  30075. }
  30076. },
  30077. backSlim: {
  30078. height: math.unit(7, "feet"),
  30079. name: "Back (Slim)",
  30080. image: {
  30081. source: "./media/characters/issilora/back-slim.svg",
  30082. extra: 537 / 455,
  30083. bottom: 46 / 583
  30084. }
  30085. },
  30086. frontBuff: {
  30087. height: math.unit(7, "feet"),
  30088. name: "Front (Buff)",
  30089. image: {
  30090. source: "./media/characters/issilora/front-buff.svg",
  30091. extra: 2310 / 2035,
  30092. bottom: 335 / 2645
  30093. }
  30094. },
  30095. head: {
  30096. height: math.unit(1.94, "feet"),
  30097. name: "Head",
  30098. image: {
  30099. source: "./media/characters/issilora/head.svg"
  30100. }
  30101. },
  30102. },
  30103. [
  30104. {
  30105. name: "Minimum",
  30106. height: math.unit(7, "feet")
  30107. },
  30108. {
  30109. name: "Comfortable",
  30110. height: math.unit(17, "feet")
  30111. },
  30112. {
  30113. name: "Fun Size",
  30114. height: math.unit(47, "feet")
  30115. },
  30116. {
  30117. name: "Natural Macro",
  30118. height: math.unit(137, "feet"),
  30119. default: true
  30120. },
  30121. {
  30122. name: "Maximum Kaiju",
  30123. height: math.unit(397, "feet")
  30124. },
  30125. ]
  30126. ))
  30127. characterMakers.push(() => makeCharacter(
  30128. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30129. {
  30130. front: {
  30131. height: math.unit(50 + 9/12, "feet"),
  30132. weight: math.unit(32.8, "tons"),
  30133. name: "Front",
  30134. image: {
  30135. source: "./media/characters/irb'iiritaahn/front.svg",
  30136. extra: 1878/1826,
  30137. bottom: 326/2204
  30138. }
  30139. },
  30140. back: {
  30141. height: math.unit(50 + 9/12, "feet"),
  30142. weight: math.unit(32.8, "tons"),
  30143. name: "Back",
  30144. image: {
  30145. source: "./media/characters/irb'iiritaahn/back.svg",
  30146. extra: 2052/2018,
  30147. bottom: 152/2204
  30148. }
  30149. },
  30150. head: {
  30151. height: math.unit(12.86, "feet"),
  30152. name: "Head",
  30153. image: {
  30154. source: "./media/characters/irb'iiritaahn/head.svg"
  30155. }
  30156. },
  30157. maw: {
  30158. height: math.unit(9.66, "feet"),
  30159. name: "Maw",
  30160. image: {
  30161. source: "./media/characters/irb'iiritaahn/maw.svg"
  30162. }
  30163. },
  30164. frontDick: {
  30165. height: math.unit(8.78461, "feet"),
  30166. name: "Front Dick",
  30167. image: {
  30168. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30169. }
  30170. },
  30171. rearDick: {
  30172. height: math.unit(8.78461, "feet"),
  30173. name: "Rear Dick",
  30174. image: {
  30175. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30176. }
  30177. },
  30178. rearDickUnfolded: {
  30179. height: math.unit(8.78, "feet"),
  30180. name: "Rear Dick (Unfolded)",
  30181. image: {
  30182. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30183. }
  30184. },
  30185. wings: {
  30186. height: math.unit(43, "feet"),
  30187. name: "Wings",
  30188. image: {
  30189. source: "./media/characters/irb'iiritaahn/wings.svg"
  30190. }
  30191. },
  30192. },
  30193. [
  30194. {
  30195. name: "Macro",
  30196. height: math.unit(50 + 9/12, "feet"),
  30197. default: true
  30198. },
  30199. ]
  30200. ))
  30201. characterMakers.push(() => makeCharacter(
  30202. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30203. {
  30204. front: {
  30205. height: math.unit(205, "cm"),
  30206. weight: math.unit(102, "kg"),
  30207. name: "Front",
  30208. image: {
  30209. source: "./media/characters/irbisgreif/front.svg",
  30210. extra: 785/706,
  30211. bottom: 13/798
  30212. }
  30213. },
  30214. back: {
  30215. height: math.unit(205, "cm"),
  30216. weight: math.unit(102, "kg"),
  30217. name: "Back",
  30218. image: {
  30219. source: "./media/characters/irbisgreif/back.svg",
  30220. extra: 713/701,
  30221. bottom: 26/739
  30222. }
  30223. },
  30224. frontDressed: {
  30225. height: math.unit(216, "cm"),
  30226. weight: math.unit(102, "kg"),
  30227. name: "Front-dressed",
  30228. image: {
  30229. source: "./media/characters/irbisgreif/front-dressed.svg",
  30230. extra: 902/776,
  30231. bottom: 14/916
  30232. }
  30233. },
  30234. sideDressed: {
  30235. height: math.unit(195, "cm"),
  30236. weight: math.unit(102, "kg"),
  30237. name: "Side-dressed",
  30238. image: {
  30239. source: "./media/characters/irbisgreif/side-dressed.svg",
  30240. extra: 788/688,
  30241. bottom: 21/809
  30242. }
  30243. },
  30244. backDressed: {
  30245. height: math.unit(216, "cm"),
  30246. weight: math.unit(102, "kg"),
  30247. name: "Back-dressed",
  30248. image: {
  30249. source: "./media/characters/irbisgreif/back-dressed.svg",
  30250. extra: 901/783,
  30251. bottom: 10/911
  30252. }
  30253. },
  30254. dick: {
  30255. height: math.unit(0.49, "feet"),
  30256. name: "Dick",
  30257. image: {
  30258. source: "./media/characters/irbisgreif/dick.svg"
  30259. }
  30260. },
  30261. wingTop: {
  30262. height: math.unit(1.93 , "feet"),
  30263. name: "Wing-top",
  30264. image: {
  30265. source: "./media/characters/irbisgreif/wing-top.svg"
  30266. }
  30267. },
  30268. wingBottom: {
  30269. height: math.unit(1.93 , "feet"),
  30270. name: "Wing-bottom",
  30271. image: {
  30272. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30273. }
  30274. },
  30275. },
  30276. [
  30277. {
  30278. name: "Normal",
  30279. height: math.unit(216, "cm"),
  30280. default: true
  30281. },
  30282. ]
  30283. ))
  30284. characterMakers.push(() => makeCharacter(
  30285. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30286. {
  30287. front: {
  30288. height: math.unit(6, "feet"),
  30289. weight: math.unit(150, "lb"),
  30290. name: "Front",
  30291. image: {
  30292. source: "./media/characters/pride/front.svg",
  30293. extra: 1299/1230,
  30294. bottom: 18/1317
  30295. }
  30296. },
  30297. },
  30298. [
  30299. {
  30300. name: "Normal",
  30301. height: math.unit(7, "feet")
  30302. },
  30303. {
  30304. name: "Mini-macro",
  30305. height: math.unit(11, "feet")
  30306. },
  30307. {
  30308. name: "Macro",
  30309. height: math.unit(15, "meters"),
  30310. default: true
  30311. },
  30312. {
  30313. name: "Macro+",
  30314. height: math.unit(40, "meters")
  30315. },
  30316. ]
  30317. ))
  30318. characterMakers.push(() => makeCharacter(
  30319. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30320. {
  30321. front: {
  30322. height: math.unit(4 + 2 / 12, "feet"),
  30323. weight: math.unit(95, "lb"),
  30324. name: "Front",
  30325. image: {
  30326. source: "./media/characters/vaelophis-nyx/front.svg",
  30327. extra: 2532/2330,
  30328. bottom: 0/2532
  30329. }
  30330. },
  30331. back: {
  30332. height: math.unit(4 + 2 / 12, "feet"),
  30333. weight: math.unit(95, "lb"),
  30334. name: "Back",
  30335. image: {
  30336. source: "./media/characters/vaelophis-nyx/back.svg",
  30337. extra: 2484/2361,
  30338. bottom: 0/2484
  30339. }
  30340. },
  30341. feralSide: {
  30342. height: math.unit(2 + 1/12, "feet"),
  30343. weight: math.unit(20, "lb"),
  30344. name: "Feral (Side)",
  30345. image: {
  30346. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30347. extra: 1721/1581,
  30348. bottom: 70/1791
  30349. }
  30350. },
  30351. feralLazing: {
  30352. height: math.unit(1.08, "feet"),
  30353. weight: math.unit(20, "lb"),
  30354. name: "Feral (Lazing)",
  30355. image: {
  30356. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30357. extra: 822/822,
  30358. bottom: 248/1070
  30359. }
  30360. },
  30361. ear: {
  30362. height: math.unit(0.416, "feet"),
  30363. name: "Ear",
  30364. image: {
  30365. source: "./media/characters/vaelophis-nyx/ear.svg"
  30366. }
  30367. },
  30368. eye: {
  30369. height: math.unit(0.0748, "feet"),
  30370. name: "Eye",
  30371. image: {
  30372. source: "./media/characters/vaelophis-nyx/eye.svg"
  30373. }
  30374. },
  30375. mouth: {
  30376. height: math.unit(0.378, "feet"),
  30377. name: "Mouth",
  30378. image: {
  30379. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30380. }
  30381. },
  30382. spade: {
  30383. height: math.unit(0.55, "feet"),
  30384. name: "Spade",
  30385. image: {
  30386. source: "./media/characters/vaelophis-nyx/spade.svg"
  30387. }
  30388. },
  30389. },
  30390. [
  30391. {
  30392. name: "Normal",
  30393. height: math.unit(4 + 2/12, "feet"),
  30394. default: true
  30395. },
  30396. ]
  30397. ))
  30398. characterMakers.push(() => makeCharacter(
  30399. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30400. {
  30401. front: {
  30402. height: math.unit(7, "feet"),
  30403. weight: math.unit(231, "lb"),
  30404. name: "Front",
  30405. image: {
  30406. source: "./media/characters/flux/front.svg",
  30407. extra: 919/871,
  30408. bottom: 0/919
  30409. }
  30410. },
  30411. back: {
  30412. height: math.unit(7, "feet"),
  30413. weight: math.unit(231, "lb"),
  30414. name: "Back",
  30415. image: {
  30416. source: "./media/characters/flux/back.svg",
  30417. extra: 1040/992,
  30418. bottom: 0/1040
  30419. }
  30420. },
  30421. frontDressed: {
  30422. height: math.unit(7, "feet"),
  30423. weight: math.unit(231, "lb"),
  30424. name: "Front (Dressed)",
  30425. image: {
  30426. source: "./media/characters/flux/front-dressed.svg",
  30427. extra: 919/871,
  30428. bottom: 0/919
  30429. }
  30430. },
  30431. feralSide: {
  30432. height: math.unit(5, "feet"),
  30433. weight: math.unit(150, "lb"),
  30434. name: "Feral (Side)",
  30435. image: {
  30436. source: "./media/characters/flux/feral-side.svg",
  30437. extra: 598/528,
  30438. bottom: 28/626
  30439. }
  30440. },
  30441. head: {
  30442. height: math.unit(1.585, "feet"),
  30443. name: "Head",
  30444. image: {
  30445. source: "./media/characters/flux/head.svg"
  30446. }
  30447. },
  30448. headSide: {
  30449. height: math.unit(1.74, "feet"),
  30450. name: "Head (Side)",
  30451. image: {
  30452. source: "./media/characters/flux/head-side.svg"
  30453. }
  30454. },
  30455. headSideFire: {
  30456. height: math.unit(1.76, "feet"),
  30457. name: "Head (Side, Fire)",
  30458. image: {
  30459. source: "./media/characters/flux/head-side-fire.svg"
  30460. }
  30461. },
  30462. },
  30463. [
  30464. {
  30465. name: "Normal",
  30466. height: math.unit(7, "feet"),
  30467. default: true
  30468. },
  30469. ]
  30470. ))
  30471. characterMakers.push(() => makeCharacter(
  30472. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30473. {
  30474. front: {
  30475. height: math.unit(9, "feet"),
  30476. weight: math.unit(1012, "lb"),
  30477. name: "Front",
  30478. image: {
  30479. source: "./media/characters/ulfra-lupae/front.svg",
  30480. extra: 1083/1011,
  30481. bottom: 67/1150
  30482. }
  30483. },
  30484. },
  30485. [
  30486. {
  30487. name: "Micro",
  30488. height: math.unit(6, "inches")
  30489. },
  30490. {
  30491. name: "Socializing",
  30492. height: math.unit(6 + 5/12, "feet")
  30493. },
  30494. {
  30495. name: "Normal",
  30496. height: math.unit(9, "feet"),
  30497. default: true
  30498. },
  30499. {
  30500. name: "Macro",
  30501. height: math.unit(150, "feet")
  30502. },
  30503. ]
  30504. ))
  30505. characterMakers.push(() => makeCharacter(
  30506. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30507. {
  30508. front: {
  30509. height: math.unit(5 + 2/12, "feet"),
  30510. weight: math.unit(120, "lb"),
  30511. name: "Front",
  30512. image: {
  30513. source: "./media/characters/timber/front.svg",
  30514. extra: 2814/2705,
  30515. bottom: 181/2995
  30516. }
  30517. },
  30518. },
  30519. [
  30520. {
  30521. name: "Normal",
  30522. height: math.unit(5 + 2/12, "feet"),
  30523. default: true
  30524. },
  30525. ]
  30526. ))
  30527. characterMakers.push(() => makeCharacter(
  30528. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30529. {
  30530. front: {
  30531. height: math.unit(5 + 7/12, "feet"),
  30532. weight: math.unit(220, "lb"),
  30533. name: "Front",
  30534. image: {
  30535. source: "./media/characters/nicki/front.svg",
  30536. extra: 453/419,
  30537. bottom: 7/460
  30538. }
  30539. },
  30540. frontAlt: {
  30541. height: math.unit(5 + 7/12, "feet"),
  30542. weight: math.unit(220, "lb"),
  30543. name: "Front-alt",
  30544. image: {
  30545. source: "./media/characters/nicki/front-alt.svg",
  30546. extra: 435/411,
  30547. bottom: 12/447
  30548. }
  30549. },
  30550. back: {
  30551. height: math.unit(5 + 7/12, "feet"),
  30552. weight: math.unit(220, "lb"),
  30553. name: "Back",
  30554. image: {
  30555. source: "./media/characters/nicki/back.svg",
  30556. extra: 440/413,
  30557. bottom: 19/459
  30558. }
  30559. },
  30560. taur: {
  30561. height: math.unit(7 + 6/12, "feet"),
  30562. weight: math.unit(700, "lb"),
  30563. name: "Taur",
  30564. image: {
  30565. source: "./media/characters/nicki/taur.svg",
  30566. extra: 975/773,
  30567. bottom: 0/975
  30568. }
  30569. },
  30570. frontNsfw: {
  30571. height: math.unit(5 + 7/12, "feet"),
  30572. weight: math.unit(220, "lb"),
  30573. name: "Front (NSFW)",
  30574. image: {
  30575. source: "./media/characters/nicki/front-nsfw.svg",
  30576. extra: 453/419,
  30577. bottom: 7/460
  30578. }
  30579. },
  30580. frontNsfwAlt: {
  30581. height: math.unit(5 + 7/12, "feet"),
  30582. weight: math.unit(220, "lb"),
  30583. name: "Front (Alt, NSFW)",
  30584. image: {
  30585. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30586. extra: 435/411,
  30587. bottom: 12/447
  30588. }
  30589. },
  30590. backNsfw: {
  30591. height: math.unit(5 + 7/12, "feet"),
  30592. weight: math.unit(220, "lb"),
  30593. name: "Back (NSFW)",
  30594. image: {
  30595. source: "./media/characters/nicki/back-nsfw.svg",
  30596. extra: 440/413,
  30597. bottom: 19/459
  30598. }
  30599. },
  30600. head: {
  30601. height: math.unit(2.1, "feet"),
  30602. name: "Head",
  30603. image: {
  30604. source: "./media/characters/nicki/head.svg"
  30605. }
  30606. },
  30607. paw: {
  30608. height: math.unit(1.88, "feet"),
  30609. name: "Paw",
  30610. image: {
  30611. source: "./media/characters/nicki/paw.svg"
  30612. }
  30613. },
  30614. },
  30615. [
  30616. {
  30617. name: "Normal",
  30618. height: math.unit(5 + 7/12, "feet"),
  30619. default: true
  30620. },
  30621. ]
  30622. ))
  30623. characterMakers.push(() => makeCharacter(
  30624. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30625. {
  30626. front: {
  30627. height: math.unit(7 + 10/12, "feet"),
  30628. weight: math.unit(3.5, "tons"),
  30629. name: "Front",
  30630. image: {
  30631. source: "./media/characters/lee/front.svg",
  30632. extra: 1773/1615,
  30633. bottom: 86/1859
  30634. }
  30635. },
  30636. hand: {
  30637. height: math.unit(1.78, "feet"),
  30638. name: "Hand",
  30639. image: {
  30640. source: "./media/characters/lee/hand.svg"
  30641. }
  30642. },
  30643. maw: {
  30644. height: math.unit(1.18, "feet"),
  30645. name: "Maw",
  30646. image: {
  30647. source: "./media/characters/lee/maw.svg"
  30648. }
  30649. },
  30650. },
  30651. [
  30652. {
  30653. name: "Normal",
  30654. height: math.unit(7 + 10/12, "feet"),
  30655. default: true
  30656. },
  30657. ]
  30658. ))
  30659. characterMakers.push(() => makeCharacter(
  30660. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30661. {
  30662. front: {
  30663. height: math.unit(9, "feet"),
  30664. name: "Front",
  30665. image: {
  30666. source: "./media/characters/guti/front.svg",
  30667. extra: 4551/4355,
  30668. bottom: 123/4674
  30669. }
  30670. },
  30671. tongue: {
  30672. height: math.unit(1, "feet"),
  30673. name: "Tongue",
  30674. image: {
  30675. source: "./media/characters/guti/tongue.svg"
  30676. }
  30677. },
  30678. paw: {
  30679. height: math.unit(1.18, "feet"),
  30680. name: "Paw",
  30681. image: {
  30682. source: "./media/characters/guti/paw.svg"
  30683. }
  30684. },
  30685. },
  30686. [
  30687. {
  30688. name: "Normal",
  30689. height: math.unit(9, "feet"),
  30690. default: true
  30691. },
  30692. ]
  30693. ))
  30694. characterMakers.push(() => makeCharacter(
  30695. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30696. {
  30697. side: {
  30698. height: math.unit(5, "meters"),
  30699. name: "Side",
  30700. image: {
  30701. source: "./media/characters/vesper/side.svg",
  30702. extra: 1605/1518,
  30703. bottom: 0/1605
  30704. }
  30705. },
  30706. },
  30707. [
  30708. {
  30709. name: "Small",
  30710. height: math.unit(5, "meters")
  30711. },
  30712. {
  30713. name: "Sage",
  30714. height: math.unit(100, "meters"),
  30715. default: true
  30716. },
  30717. {
  30718. name: "Fun Size",
  30719. height: math.unit(600, "meters")
  30720. },
  30721. {
  30722. name: "Goddess",
  30723. height: math.unit(20000, "km")
  30724. },
  30725. {
  30726. name: "Maximum",
  30727. height: math.unit(5, "galaxies")
  30728. },
  30729. ]
  30730. ))
  30731. characterMakers.push(() => makeCharacter(
  30732. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30733. {
  30734. front: {
  30735. height: math.unit(6 + 3/12, "feet"),
  30736. weight: math.unit(190, "lb"),
  30737. name: "Front",
  30738. image: {
  30739. source: "./media/characters/gawain/front.svg",
  30740. extra: 2222/2139,
  30741. bottom: 90/2312
  30742. }
  30743. },
  30744. back: {
  30745. height: math.unit(6 + 3/12, "feet"),
  30746. weight: math.unit(190, "lb"),
  30747. name: "Back",
  30748. image: {
  30749. source: "./media/characters/gawain/back.svg",
  30750. extra: 2199/2111,
  30751. bottom: 73/2272
  30752. }
  30753. },
  30754. },
  30755. [
  30756. {
  30757. name: "Normal",
  30758. height: math.unit(6 + 3/12, "feet"),
  30759. default: true
  30760. },
  30761. ]
  30762. ))
  30763. characterMakers.push(() => makeCharacter(
  30764. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30765. {
  30766. side: {
  30767. height: math.unit(3.5, "meters"),
  30768. weight: math.unit(16000, "lb"),
  30769. name: "Side",
  30770. image: {
  30771. source: "./media/characters/dascalti/side.svg",
  30772. extra: 392/273,
  30773. bottom: 47/439
  30774. }
  30775. },
  30776. breath: {
  30777. height: math.unit(7.4, "feet"),
  30778. name: "Breath",
  30779. image: {
  30780. source: "./media/characters/dascalti/breath.svg"
  30781. }
  30782. },
  30783. fed: {
  30784. height: math.unit(3.6, "meters"),
  30785. weight: math.unit(16000, "lb"),
  30786. name: "Fed",
  30787. image: {
  30788. source: "./media/characters/dascalti/fed.svg",
  30789. extra: 1419/820,
  30790. bottom: 95/1514
  30791. }
  30792. },
  30793. },
  30794. [
  30795. {
  30796. name: "Normal",
  30797. height: math.unit(3.5, "meters"),
  30798. default: true
  30799. },
  30800. ]
  30801. ))
  30802. characterMakers.push(() => makeCharacter(
  30803. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30804. {
  30805. front: {
  30806. height: math.unit(3 + 5/12, "feet"),
  30807. name: "Front",
  30808. image: {
  30809. source: "./media/characters/mauve/front.svg",
  30810. extra: 1126/1033,
  30811. bottom: 65/1191
  30812. }
  30813. },
  30814. side: {
  30815. height: math.unit(3 + 5/12, "feet"),
  30816. name: "Side",
  30817. image: {
  30818. source: "./media/characters/mauve/side.svg",
  30819. extra: 1089/1001,
  30820. bottom: 29/1118
  30821. }
  30822. },
  30823. back: {
  30824. height: math.unit(3 + 5/12, "feet"),
  30825. name: "Back",
  30826. image: {
  30827. source: "./media/characters/mauve/back.svg",
  30828. extra: 1173/1053,
  30829. bottom: 109/1282
  30830. }
  30831. },
  30832. },
  30833. [
  30834. {
  30835. name: "Normal",
  30836. height: math.unit(3 + 5/12, "feet"),
  30837. default: true
  30838. },
  30839. ]
  30840. ))
  30841. characterMakers.push(() => makeCharacter(
  30842. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30843. {
  30844. front: {
  30845. height: math.unit(6 + 3/12, "feet"),
  30846. weight: math.unit(430, "lb"),
  30847. name: "Front",
  30848. image: {
  30849. source: "./media/characters/carlos/front.svg",
  30850. extra: 1964/1913,
  30851. bottom: 70/2034
  30852. }
  30853. },
  30854. },
  30855. [
  30856. {
  30857. name: "Normal",
  30858. height: math.unit(6 + 3/12, "feet"),
  30859. default: true
  30860. },
  30861. ]
  30862. ))
  30863. characterMakers.push(() => makeCharacter(
  30864. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30865. {
  30866. back: {
  30867. height: math.unit(5 + 10/12, "feet"),
  30868. weight: math.unit(200, "lb"),
  30869. name: "Back",
  30870. image: {
  30871. source: "./media/characters/jax/back.svg",
  30872. extra: 764/739,
  30873. bottom: 25/789
  30874. }
  30875. },
  30876. },
  30877. [
  30878. {
  30879. name: "Normal",
  30880. height: math.unit(5 + 10/12, "feet"),
  30881. default: true
  30882. },
  30883. ]
  30884. ))
  30885. characterMakers.push(() => makeCharacter(
  30886. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30887. {
  30888. front: {
  30889. height: math.unit(8, "feet"),
  30890. weight: math.unit(250, "lb"),
  30891. name: "Front",
  30892. image: {
  30893. source: "./media/characters/eikthynir/front.svg",
  30894. extra: 1332/1166,
  30895. bottom: 82/1414
  30896. }
  30897. },
  30898. back: {
  30899. height: math.unit(8, "feet"),
  30900. weight: math.unit(250, "lb"),
  30901. name: "Back",
  30902. image: {
  30903. source: "./media/characters/eikthynir/back.svg",
  30904. extra: 1342/1190,
  30905. bottom: 19/1361
  30906. }
  30907. },
  30908. dick: {
  30909. height: math.unit(2.35, "feet"),
  30910. name: "Dick",
  30911. image: {
  30912. source: "./media/characters/eikthynir/dick.svg"
  30913. }
  30914. },
  30915. },
  30916. [
  30917. {
  30918. name: "Normal",
  30919. height: math.unit(8, "feet"),
  30920. default: true
  30921. },
  30922. ]
  30923. ))
  30924. characterMakers.push(() => makeCharacter(
  30925. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30926. {
  30927. front: {
  30928. height: math.unit(99, "meters"),
  30929. weight: math.unit(13000, "tons"),
  30930. name: "Front",
  30931. image: {
  30932. source: "./media/characters/zlmos/front.svg",
  30933. extra: 2202/1992,
  30934. bottom: 315/2517
  30935. }
  30936. },
  30937. },
  30938. [
  30939. {
  30940. name: "Macro",
  30941. height: math.unit(99, "meters"),
  30942. default: true
  30943. },
  30944. ]
  30945. ))
  30946. characterMakers.push(() => makeCharacter(
  30947. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30948. {
  30949. front: {
  30950. height: math.unit(6 + 5/12, "feet"),
  30951. name: "Front",
  30952. image: {
  30953. source: "./media/characters/purri/front.svg",
  30954. extra: 1698/1610,
  30955. bottom: 32/1730
  30956. }
  30957. },
  30958. frontAlt: {
  30959. height: math.unit(6 + 5/12, "feet"),
  30960. name: "Front (Alt)",
  30961. image: {
  30962. source: "./media/characters/purri/front-alt.svg",
  30963. extra: 450/420,
  30964. bottom: 26/476
  30965. }
  30966. },
  30967. boots: {
  30968. height: math.unit(5.5, "feet"),
  30969. name: "Boots",
  30970. image: {
  30971. source: "./media/characters/purri/boots.svg",
  30972. extra: 905/853,
  30973. bottom: 18/923
  30974. }
  30975. },
  30976. lying: {
  30977. height: math.unit(2, "feet"),
  30978. name: "Lying",
  30979. image: {
  30980. source: "./media/characters/purri/lying.svg",
  30981. extra: 940/843,
  30982. bottom: 146/1086
  30983. }
  30984. },
  30985. devious: {
  30986. height: math.unit(1.77, "feet"),
  30987. name: "Devious",
  30988. image: {
  30989. source: "./media/characters/purri/devious.svg",
  30990. extra: 1440/1155,
  30991. bottom: 147/1587
  30992. }
  30993. },
  30994. bean: {
  30995. height: math.unit(1.94, "feet"),
  30996. name: "Bean",
  30997. image: {
  30998. source: "./media/characters/purri/bean.svg"
  30999. }
  31000. },
  31001. },
  31002. [
  31003. {
  31004. name: "Micro",
  31005. height: math.unit(1, "mm")
  31006. },
  31007. {
  31008. name: "Normal",
  31009. height: math.unit(6 + 5/12, "feet"),
  31010. default: true
  31011. },
  31012. {
  31013. name: "Macro :3c",
  31014. height: math.unit(2, "miles")
  31015. },
  31016. ]
  31017. ))
  31018. characterMakers.push(() => makeCharacter(
  31019. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31020. {
  31021. front: {
  31022. height: math.unit(6 + 2/12, "feet"),
  31023. weight: math.unit(250, "lb"),
  31024. name: "Front",
  31025. image: {
  31026. source: "./media/characters/moonlight/front.svg",
  31027. extra: 1044/908,
  31028. bottom: 56/1100
  31029. }
  31030. },
  31031. feral: {
  31032. height: math.unit(3 + 1/12, "feet"),
  31033. weight: math.unit(50, "kg"),
  31034. name: "Feral",
  31035. image: {
  31036. source: "./media/characters/moonlight/feral.svg",
  31037. extra: 3705/2791,
  31038. bottom: 145/3850
  31039. }
  31040. },
  31041. paw: {
  31042. height: math.unit(1, "feet"),
  31043. name: "Paw",
  31044. image: {
  31045. source: "./media/characters/moonlight/paw.svg"
  31046. }
  31047. },
  31048. paws: {
  31049. height: math.unit(0.98, "feet"),
  31050. name: "Paws",
  31051. image: {
  31052. source: "./media/characters/moonlight/paws.svg",
  31053. extra: 939/939,
  31054. bottom: 50/989
  31055. }
  31056. },
  31057. mouth: {
  31058. height: math.unit(0.48, "feet"),
  31059. name: "Mouth",
  31060. image: {
  31061. source: "./media/characters/moonlight/mouth.svg"
  31062. }
  31063. },
  31064. dick: {
  31065. height: math.unit(1.46, "feet"),
  31066. name: "Dick",
  31067. image: {
  31068. source: "./media/characters/moonlight/dick.svg"
  31069. }
  31070. },
  31071. },
  31072. [
  31073. {
  31074. name: "Normal",
  31075. height: math.unit(6 + 2/12, "feet"),
  31076. default: true
  31077. },
  31078. {
  31079. name: "Macro",
  31080. height: math.unit(300, "feet")
  31081. },
  31082. {
  31083. name: "Macro+",
  31084. height: math.unit(1, "mile")
  31085. },
  31086. {
  31087. name: "Mt. Moon",
  31088. height: math.unit(5, "miles")
  31089. },
  31090. {
  31091. name: "Megamacro",
  31092. height: math.unit(15, "miles")
  31093. },
  31094. ]
  31095. ))
  31096. characterMakers.push(() => makeCharacter(
  31097. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31098. {
  31099. back: {
  31100. height: math.unit(6, "feet"),
  31101. weight: math.unit(150, "lb"),
  31102. name: "Back",
  31103. image: {
  31104. source: "./media/characters/sylen/back.svg",
  31105. extra: 1335/1273,
  31106. bottom: 107/1442
  31107. }
  31108. },
  31109. },
  31110. [
  31111. {
  31112. name: "Normal",
  31113. height: math.unit(5 + 5/12, "feet")
  31114. },
  31115. {
  31116. name: "Megamacro",
  31117. height: math.unit(3, "miles"),
  31118. default: true
  31119. },
  31120. ]
  31121. ))
  31122. characterMakers.push(() => makeCharacter(
  31123. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31124. {
  31125. front: {
  31126. height: math.unit(6, "feet"),
  31127. weight: math.unit(190, "lb"),
  31128. name: "Front",
  31129. image: {
  31130. source: "./media/characters/huttser/front.svg",
  31131. extra: 1152/1058,
  31132. bottom: 23/1175
  31133. }
  31134. },
  31135. side: {
  31136. height: math.unit(6, "feet"),
  31137. weight: math.unit(190, "lb"),
  31138. name: "Side",
  31139. image: {
  31140. source: "./media/characters/huttser/side.svg",
  31141. extra: 1174/1065,
  31142. bottom: 18/1192
  31143. }
  31144. },
  31145. back: {
  31146. height: math.unit(6, "feet"),
  31147. weight: math.unit(190, "lb"),
  31148. name: "Back",
  31149. image: {
  31150. source: "./media/characters/huttser/back.svg",
  31151. extra: 1158/1056,
  31152. bottom: 12/1170
  31153. }
  31154. },
  31155. },
  31156. [
  31157. ]
  31158. ))
  31159. characterMakers.push(() => makeCharacter(
  31160. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31161. {
  31162. side: {
  31163. height: math.unit(12 + 9/12, "feet"),
  31164. weight: math.unit(15000, "lb"),
  31165. name: "Side",
  31166. image: {
  31167. source: "./media/characters/faan/side.svg",
  31168. extra: 2747/2697,
  31169. bottom: 0/2747
  31170. }
  31171. },
  31172. front: {
  31173. height: math.unit(12 + 9/12, "feet"),
  31174. weight: math.unit(15000, "lb"),
  31175. name: "Front",
  31176. image: {
  31177. source: "./media/characters/faan/front.svg",
  31178. extra: 607/571,
  31179. bottom: 24/631
  31180. }
  31181. },
  31182. head: {
  31183. height: math.unit(2.85, "feet"),
  31184. name: "Head",
  31185. image: {
  31186. source: "./media/characters/faan/head.svg"
  31187. }
  31188. },
  31189. headAlt: {
  31190. height: math.unit(3.13, "feet"),
  31191. name: "Head-alt",
  31192. image: {
  31193. source: "./media/characters/faan/head-alt.svg"
  31194. }
  31195. },
  31196. },
  31197. [
  31198. {
  31199. name: "Normal",
  31200. height: math.unit(12 + 9/12, "feet"),
  31201. default: true
  31202. },
  31203. ]
  31204. ))
  31205. characterMakers.push(() => makeCharacter(
  31206. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31207. {
  31208. front: {
  31209. height: math.unit(6, "feet"),
  31210. weight: math.unit(300, "lb"),
  31211. name: "Front",
  31212. image: {
  31213. source: "./media/characters/tanio/front.svg",
  31214. extra: 711/673,
  31215. bottom: 25/736
  31216. }
  31217. },
  31218. },
  31219. [
  31220. {
  31221. name: "Normal",
  31222. height: math.unit(6, "feet"),
  31223. default: true
  31224. },
  31225. ]
  31226. ))
  31227. characterMakers.push(() => makeCharacter(
  31228. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31229. {
  31230. front: {
  31231. height: math.unit(3, "inches"),
  31232. name: "Front",
  31233. image: {
  31234. source: "./media/characters/noboru/front.svg",
  31235. extra: 1039/932,
  31236. bottom: 18/1057
  31237. }
  31238. },
  31239. },
  31240. [
  31241. {
  31242. name: "Micro",
  31243. height: math.unit(3, "inches"),
  31244. default: true
  31245. },
  31246. ]
  31247. ))
  31248. characterMakers.push(() => makeCharacter(
  31249. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31250. {
  31251. front: {
  31252. height: math.unit(1.85, "meters"),
  31253. weight: math.unit(80, "kg"),
  31254. name: "Front",
  31255. image: {
  31256. source: "./media/characters/daniel-barrett/front.svg",
  31257. extra: 355/337,
  31258. bottom: 9/364
  31259. }
  31260. },
  31261. },
  31262. [
  31263. {
  31264. name: "Pico",
  31265. height: math.unit(0.0433, "mm")
  31266. },
  31267. {
  31268. name: "Nano",
  31269. height: math.unit(1.5, "mm")
  31270. },
  31271. {
  31272. name: "Micro",
  31273. height: math.unit(5.3, "cm"),
  31274. default: true
  31275. },
  31276. {
  31277. name: "Normal",
  31278. height: math.unit(1.85, "meters")
  31279. },
  31280. {
  31281. name: "Macro",
  31282. height: math.unit(64.7, "meters")
  31283. },
  31284. {
  31285. name: "Megamacro",
  31286. height: math.unit(2.26, "km")
  31287. },
  31288. {
  31289. name: "Gigamacro",
  31290. height: math.unit(79, "km")
  31291. },
  31292. {
  31293. name: "Teramacro",
  31294. height: math.unit(2765, "km")
  31295. },
  31296. {
  31297. name: "Petamacro",
  31298. height: math.unit(96678, "km")
  31299. },
  31300. ]
  31301. ))
  31302. characterMakers.push(() => makeCharacter(
  31303. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31304. {
  31305. front: {
  31306. height: math.unit(30, "meters"),
  31307. weight: math.unit(400, "tons"),
  31308. name: "Front",
  31309. image: {
  31310. source: "./media/characters/zeel/front.svg",
  31311. extra: 2599/2599,
  31312. bottom: 226/2825
  31313. }
  31314. },
  31315. },
  31316. [
  31317. {
  31318. name: "Macro",
  31319. height: math.unit(30, "meters"),
  31320. default: true
  31321. },
  31322. ]
  31323. ))
  31324. characterMakers.push(() => makeCharacter(
  31325. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31326. {
  31327. front: {
  31328. height: math.unit(6 + 7/12, "feet"),
  31329. weight: math.unit(210, "lb"),
  31330. name: "Front",
  31331. image: {
  31332. source: "./media/characters/tarn/front.svg",
  31333. extra: 3517/3220,
  31334. bottom: 91/3608
  31335. }
  31336. },
  31337. back: {
  31338. height: math.unit(6 + 7/12, "feet"),
  31339. weight: math.unit(210, "lb"),
  31340. name: "Back",
  31341. image: {
  31342. source: "./media/characters/tarn/back.svg",
  31343. extra: 3566/3241,
  31344. bottom: 34/3600
  31345. }
  31346. },
  31347. dick: {
  31348. height: math.unit(1.65, "feet"),
  31349. name: "Dick",
  31350. image: {
  31351. source: "./media/characters/tarn/dick.svg"
  31352. }
  31353. },
  31354. paw: {
  31355. height: math.unit(1.80, "feet"),
  31356. name: "Paw",
  31357. image: {
  31358. source: "./media/characters/tarn/paw.svg"
  31359. }
  31360. },
  31361. tongue: {
  31362. height: math.unit(0.97, "feet"),
  31363. name: "Tongue",
  31364. image: {
  31365. source: "./media/characters/tarn/tongue.svg"
  31366. }
  31367. },
  31368. },
  31369. [
  31370. {
  31371. name: "Micro",
  31372. height: math.unit(4, "inches")
  31373. },
  31374. {
  31375. name: "Normal",
  31376. height: math.unit(6 + 7/12, "feet"),
  31377. default: true
  31378. },
  31379. {
  31380. name: "Macro",
  31381. height: math.unit(300, "feet")
  31382. },
  31383. ]
  31384. ))
  31385. characterMakers.push(() => makeCharacter(
  31386. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31387. {
  31388. front: {
  31389. height: math.unit(5 + 7/12, "feet"),
  31390. weight: math.unit(80, "kg"),
  31391. name: "Front",
  31392. image: {
  31393. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31394. extra: 3023/2865,
  31395. bottom: 33/3056
  31396. }
  31397. },
  31398. back: {
  31399. height: math.unit(5 + 7/12, "feet"),
  31400. weight: math.unit(80, "kg"),
  31401. name: "Back",
  31402. image: {
  31403. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31404. extra: 3020/2886,
  31405. bottom: 30/3050
  31406. }
  31407. },
  31408. dick: {
  31409. height: math.unit(0.98, "feet"),
  31410. name: "Dick",
  31411. image: {
  31412. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31413. }
  31414. },
  31415. anatomy: {
  31416. height: math.unit(2.86, "feet"),
  31417. name: "Anatomy",
  31418. image: {
  31419. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31420. }
  31421. },
  31422. },
  31423. [
  31424. {
  31425. name: "Really Small",
  31426. height: math.unit(2, "inches")
  31427. },
  31428. {
  31429. name: "Micro",
  31430. height: math.unit(5.583, "inches")
  31431. },
  31432. {
  31433. name: "Normal",
  31434. height: math.unit(5 + 7/12, "feet"),
  31435. default: true
  31436. },
  31437. {
  31438. name: "Macro",
  31439. height: math.unit(67, "feet")
  31440. },
  31441. {
  31442. name: "Megamacro",
  31443. height: math.unit(134, "feet")
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31449. {
  31450. front: {
  31451. height: math.unit(9, "feet"),
  31452. weight: math.unit(120, "lb"),
  31453. name: "Front",
  31454. image: {
  31455. source: "./media/characters/sally/front.svg",
  31456. extra: 1506/1349,
  31457. bottom: 66/1572
  31458. }
  31459. },
  31460. },
  31461. [
  31462. {
  31463. name: "Normal",
  31464. height: math.unit(9, "feet"),
  31465. default: true
  31466. },
  31467. ]
  31468. ))
  31469. characterMakers.push(() => makeCharacter(
  31470. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31471. {
  31472. front: {
  31473. height: math.unit(8, "feet"),
  31474. weight: math.unit(900, "lb"),
  31475. name: "Front",
  31476. image: {
  31477. source: "./media/characters/owen/front.svg",
  31478. extra: 1761/1657,
  31479. bottom: 74/1835
  31480. }
  31481. },
  31482. side: {
  31483. height: math.unit(8, "feet"),
  31484. weight: math.unit(900, "lb"),
  31485. name: "Side",
  31486. image: {
  31487. source: "./media/characters/owen/side.svg",
  31488. extra: 1797/1734,
  31489. bottom: 30/1827
  31490. }
  31491. },
  31492. back: {
  31493. height: math.unit(8, "feet"),
  31494. weight: math.unit(900, "lb"),
  31495. name: "Back",
  31496. image: {
  31497. source: "./media/characters/owen/back.svg",
  31498. extra: 1796/1706,
  31499. bottom: 59/1855
  31500. }
  31501. },
  31502. maw: {
  31503. height: math.unit(1.76, "feet"),
  31504. name: "Maw",
  31505. image: {
  31506. source: "./media/characters/owen/maw.svg"
  31507. }
  31508. },
  31509. },
  31510. [
  31511. {
  31512. name: "Normal",
  31513. height: math.unit(8, "feet"),
  31514. default: true
  31515. },
  31516. ]
  31517. ))
  31518. characterMakers.push(() => makeCharacter(
  31519. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31520. {
  31521. front: {
  31522. height: math.unit(4, "feet"),
  31523. weight: math.unit(400, "lb"),
  31524. name: "Front",
  31525. image: {
  31526. source: "./media/characters/ryth/front.svg",
  31527. extra: 876/691,
  31528. bottom: 25/901
  31529. }
  31530. },
  31531. goia: {
  31532. height: math.unit(12, "feet"),
  31533. weight: math.unit(10800, "lb"),
  31534. name: "Goia",
  31535. image: {
  31536. source: "./media/characters/ryth/goia.svg",
  31537. extra: 3450/3198,
  31538. bottom: 61/3511
  31539. }
  31540. },
  31541. },
  31542. [
  31543. {
  31544. name: "Normal",
  31545. height: math.unit(4, "feet"),
  31546. default: true
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31552. {
  31553. front: {
  31554. height: math.unit(7, "feet"),
  31555. weight: math.unit(180, "lb"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/necrolance/front.svg",
  31559. extra: 1062/947,
  31560. bottom: 41/1103
  31561. }
  31562. },
  31563. back: {
  31564. height: math.unit(7, "feet"),
  31565. weight: math.unit(180, "lb"),
  31566. name: "Back",
  31567. image: {
  31568. source: "./media/characters/necrolance/back.svg",
  31569. extra: 1045/984,
  31570. bottom: 14/1059
  31571. }
  31572. },
  31573. wing: {
  31574. height: math.unit(2.67, "feet"),
  31575. name: "Wing",
  31576. image: {
  31577. source: "./media/characters/necrolance/wing.svg"
  31578. }
  31579. },
  31580. },
  31581. [
  31582. {
  31583. name: "Normal",
  31584. height: math.unit(7, "feet"),
  31585. default: true
  31586. },
  31587. ]
  31588. ))
  31589. characterMakers.push(() => makeCharacter(
  31590. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31591. {
  31592. front: {
  31593. height: math.unit(76, "meters"),
  31594. weight: math.unit(30000, "tons"),
  31595. name: "Front",
  31596. image: {
  31597. source: "./media/characters/tyler/front.svg",
  31598. extra: 1640/1640,
  31599. bottom: 114/1754
  31600. }
  31601. },
  31602. },
  31603. [
  31604. {
  31605. name: "Macro",
  31606. height: math.unit(76, "meters"),
  31607. default: true
  31608. },
  31609. ]
  31610. ))
  31611. characterMakers.push(() => makeCharacter(
  31612. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31613. {
  31614. front: {
  31615. height: math.unit(4 + 11/12, "feet"),
  31616. weight: math.unit(132, "lb"),
  31617. name: "Front",
  31618. image: {
  31619. source: "./media/characters/icey/front.svg",
  31620. extra: 2750/2550,
  31621. bottom: 33/2783
  31622. }
  31623. },
  31624. back: {
  31625. height: math.unit(4 + 11/12, "feet"),
  31626. weight: math.unit(132, "lb"),
  31627. name: "Back",
  31628. image: {
  31629. source: "./media/characters/icey/back.svg",
  31630. extra: 2624/2481,
  31631. bottom: 35/2659
  31632. }
  31633. },
  31634. },
  31635. [
  31636. {
  31637. name: "Normal",
  31638. height: math.unit(4 + 11/12, "feet"),
  31639. default: true
  31640. },
  31641. ]
  31642. ))
  31643. characterMakers.push(() => makeCharacter(
  31644. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31645. {
  31646. front: {
  31647. height: math.unit(100, "feet"),
  31648. weight: math.unit(0, "lb"),
  31649. name: "Front",
  31650. image: {
  31651. source: "./media/characters/smile/front.svg",
  31652. extra: 2983/2912,
  31653. bottom: 162/3145
  31654. }
  31655. },
  31656. back: {
  31657. height: math.unit(100, "feet"),
  31658. weight: math.unit(0, "lb"),
  31659. name: "Back",
  31660. image: {
  31661. source: "./media/characters/smile/back.svg",
  31662. extra: 3143/3031,
  31663. bottom: 91/3234
  31664. }
  31665. },
  31666. head: {
  31667. height: math.unit(26.3, "feet"),
  31668. weight: math.unit(0, "lb"),
  31669. name: "Head",
  31670. image: {
  31671. source: "./media/characters/smile/head.svg"
  31672. }
  31673. },
  31674. collar: {
  31675. height: math.unit(5.3, "feet"),
  31676. weight: math.unit(0, "lb"),
  31677. name: "Collar",
  31678. image: {
  31679. source: "./media/characters/smile/collar.svg"
  31680. }
  31681. },
  31682. },
  31683. [
  31684. {
  31685. name: "Macro",
  31686. height: math.unit(100, "feet"),
  31687. default: true
  31688. },
  31689. ]
  31690. ))
  31691. characterMakers.push(() => makeCharacter(
  31692. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31693. {
  31694. dragon: {
  31695. height: math.unit(26, "feet"),
  31696. weight: math.unit(36, "tons"),
  31697. name: "Dragon",
  31698. image: {
  31699. source: "./media/characters/arimphae/dragon.svg",
  31700. extra: 1574/983,
  31701. bottom: 357/1931
  31702. }
  31703. },
  31704. drake: {
  31705. height: math.unit(9, "feet"),
  31706. weight: math.unit(1.5, "tons"),
  31707. name: "Drake",
  31708. image: {
  31709. source: "./media/characters/arimphae/drake.svg",
  31710. extra: 1120/925,
  31711. bottom: 435/1555
  31712. }
  31713. },
  31714. },
  31715. [
  31716. {
  31717. name: "Small",
  31718. height: math.unit(26*5/9, "feet")
  31719. },
  31720. {
  31721. name: "Normal",
  31722. height: math.unit(26, "feet"),
  31723. default: true
  31724. },
  31725. ]
  31726. ))
  31727. characterMakers.push(() => makeCharacter(
  31728. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31729. {
  31730. front: {
  31731. height: math.unit(8 + 9/12, "feet"),
  31732. name: "Front",
  31733. image: {
  31734. source: "./media/characters/xander/front.svg",
  31735. extra: 848/673,
  31736. bottom: 62/910
  31737. }
  31738. },
  31739. },
  31740. [
  31741. {
  31742. name: "Normal",
  31743. height: math.unit(8 + 9/12, "feet"),
  31744. default: true
  31745. },
  31746. {
  31747. name: "Gaze Grabber",
  31748. height: math.unit(13 + 8/12, "feet")
  31749. },
  31750. {
  31751. name: "Jaw Dropper",
  31752. height: math.unit(27, "feet")
  31753. },
  31754. {
  31755. name: "Show Stopper",
  31756. height: math.unit(136, "feet")
  31757. },
  31758. {
  31759. name: "Superstar",
  31760. height: math.unit(1.9e6, "miles")
  31761. },
  31762. ]
  31763. ))
  31764. characterMakers.push(() => makeCharacter(
  31765. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31766. {
  31767. side: {
  31768. height: math.unit(2100, "feet"),
  31769. name: "Side",
  31770. image: {
  31771. source: "./media/characters/osiris/side.svg",
  31772. extra: 1105/939,
  31773. bottom: 167/1272
  31774. }
  31775. },
  31776. },
  31777. [
  31778. {
  31779. name: "Macro",
  31780. height: math.unit(2100, "feet"),
  31781. default: true
  31782. },
  31783. ]
  31784. ))
  31785. characterMakers.push(() => makeCharacter(
  31786. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31787. {
  31788. front: {
  31789. height: math.unit(6 + 8/12, "feet"),
  31790. weight: math.unit(225, "lb"),
  31791. name: "Front",
  31792. image: {
  31793. source: "./media/characters/rhys-londe/front.svg",
  31794. extra: 2258/2141,
  31795. bottom: 188/2446
  31796. }
  31797. },
  31798. back: {
  31799. height: math.unit(6 + 8/12, "feet"),
  31800. weight: math.unit(225, "lb"),
  31801. name: "Back",
  31802. image: {
  31803. source: "./media/characters/rhys-londe/back.svg",
  31804. extra: 2237/2137,
  31805. bottom: 63/2300
  31806. }
  31807. },
  31808. frontNsfw: {
  31809. height: math.unit(6 + 8/12, "feet"),
  31810. weight: math.unit(225, "lb"),
  31811. name: "Front (NSFW)",
  31812. image: {
  31813. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31814. extra: 2258/2141,
  31815. bottom: 188/2446
  31816. }
  31817. },
  31818. backNsfw: {
  31819. height: math.unit(6 + 8/12, "feet"),
  31820. weight: math.unit(225, "lb"),
  31821. name: "Back (NSFW)",
  31822. image: {
  31823. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31824. extra: 2237/2137,
  31825. bottom: 63/2300
  31826. }
  31827. },
  31828. dick: {
  31829. height: math.unit(30, "inches"),
  31830. name: "Dick",
  31831. image: {
  31832. source: "./media/characters/rhys-londe/dick.svg"
  31833. }
  31834. },
  31835. maw: {
  31836. height: math.unit(1.6, "feet"),
  31837. name: "Maw",
  31838. image: {
  31839. source: "./media/characters/rhys-londe/maw.svg"
  31840. }
  31841. },
  31842. },
  31843. [
  31844. {
  31845. name: "Normal",
  31846. height: math.unit(6 + 8/12, "feet"),
  31847. default: true
  31848. },
  31849. ]
  31850. ))
  31851. characterMakers.push(() => makeCharacter(
  31852. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31853. {
  31854. front: {
  31855. height: math.unit(3 + 10/12, "feet"),
  31856. weight: math.unit(90, "lb"),
  31857. name: "Front",
  31858. image: {
  31859. source: "./media/characters/taivas-ensim/front.svg",
  31860. extra: 1327/1216,
  31861. bottom: 96/1423
  31862. }
  31863. },
  31864. back: {
  31865. height: math.unit(3 + 10/12, "feet"),
  31866. weight: math.unit(90, "lb"),
  31867. name: "Back",
  31868. image: {
  31869. source: "./media/characters/taivas-ensim/back.svg",
  31870. extra: 1355/1247,
  31871. bottom: 11/1366
  31872. }
  31873. },
  31874. frontNsfw: {
  31875. height: math.unit(3 + 10/12, "feet"),
  31876. weight: math.unit(90, "lb"),
  31877. name: "Front (NSFW)",
  31878. image: {
  31879. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31880. extra: 1327/1216,
  31881. bottom: 96/1423
  31882. }
  31883. },
  31884. backNsfw: {
  31885. height: math.unit(3 + 10/12, "feet"),
  31886. weight: math.unit(90, "lb"),
  31887. name: "Back (NSFW)",
  31888. image: {
  31889. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31890. extra: 1355/1247,
  31891. bottom: 11/1366
  31892. }
  31893. },
  31894. },
  31895. [
  31896. {
  31897. name: "Normal",
  31898. height: math.unit(3 + 10/12, "feet"),
  31899. default: true
  31900. },
  31901. ]
  31902. ))
  31903. characterMakers.push(() => makeCharacter(
  31904. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31905. {
  31906. front: {
  31907. height: math.unit(9 + 6/12, "feet"),
  31908. weight: math.unit(940, "lb"),
  31909. name: "Front",
  31910. image: {
  31911. source: "./media/characters/byliss/front.svg",
  31912. extra: 1327/1290,
  31913. bottom: 82/1409
  31914. }
  31915. },
  31916. back: {
  31917. height: math.unit(9 + 6/12, "feet"),
  31918. weight: math.unit(940, "lb"),
  31919. name: "Back",
  31920. image: {
  31921. source: "./media/characters/byliss/back.svg",
  31922. extra: 1376/1349,
  31923. bottom: 9/1385
  31924. }
  31925. },
  31926. frontNsfw: {
  31927. height: math.unit(9 + 6/12, "feet"),
  31928. weight: math.unit(940, "lb"),
  31929. name: "Front (NSFW)",
  31930. image: {
  31931. source: "./media/characters/byliss/front-nsfw.svg",
  31932. extra: 1327/1290,
  31933. bottom: 82/1409
  31934. }
  31935. },
  31936. backNsfw: {
  31937. height: math.unit(9 + 6/12, "feet"),
  31938. weight: math.unit(940, "lb"),
  31939. name: "Back (NSFW)",
  31940. image: {
  31941. source: "./media/characters/byliss/back-nsfw.svg",
  31942. extra: 1376/1349,
  31943. bottom: 9/1385
  31944. }
  31945. },
  31946. },
  31947. [
  31948. {
  31949. name: "Normal",
  31950. height: math.unit(9 + 6/12, "feet"),
  31951. default: true
  31952. },
  31953. ]
  31954. ))
  31955. characterMakers.push(() => makeCharacter(
  31956. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31957. {
  31958. front: {
  31959. height: math.unit(5 + 2/12, "feet"),
  31960. weight: math.unit(200, "lb"),
  31961. name: "Front",
  31962. image: {
  31963. source: "./media/characters/noraly/front.svg",
  31964. extra: 4985/4773,
  31965. bottom: 150/5135
  31966. }
  31967. },
  31968. full: {
  31969. height: math.unit(5 + 2/12, "feet"),
  31970. weight: math.unit(164, "lb"),
  31971. name: "Full",
  31972. image: {
  31973. source: "./media/characters/noraly/full.svg",
  31974. extra: 1114/1059,
  31975. bottom: 35/1149
  31976. }
  31977. },
  31978. fuller: {
  31979. height: math.unit(5 + 2/12, "feet"),
  31980. weight: math.unit(230, "lb"),
  31981. name: "Fuller",
  31982. image: {
  31983. source: "./media/characters/noraly/fuller.svg",
  31984. extra: 1114/1059,
  31985. bottom: 35/1149
  31986. }
  31987. },
  31988. fullest: {
  31989. height: math.unit(5 + 2/12, "feet"),
  31990. weight: math.unit(300, "lb"),
  31991. name: "Fullest",
  31992. image: {
  31993. source: "./media/characters/noraly/fullest.svg",
  31994. extra: 1114/1059,
  31995. bottom: 35/1149
  31996. }
  31997. },
  31998. },
  31999. [
  32000. {
  32001. name: "Normal",
  32002. height: math.unit(5 + 2/12, "feet"),
  32003. default: true
  32004. },
  32005. ]
  32006. ))
  32007. characterMakers.push(() => makeCharacter(
  32008. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32009. {
  32010. front: {
  32011. height: math.unit(5 + 2/12, "feet"),
  32012. weight: math.unit(210, "lb"),
  32013. name: "Front",
  32014. image: {
  32015. source: "./media/characters/pera/front.svg",
  32016. extra: 1560/1531,
  32017. bottom: 165/1725
  32018. }
  32019. },
  32020. back: {
  32021. height: math.unit(5 + 2/12, "feet"),
  32022. weight: math.unit(210, "lb"),
  32023. name: "Back",
  32024. image: {
  32025. source: "./media/characters/pera/back.svg",
  32026. extra: 1523/1493,
  32027. bottom: 152/1675
  32028. }
  32029. },
  32030. dick: {
  32031. height: math.unit(2.4, "feet"),
  32032. name: "Dick",
  32033. image: {
  32034. source: "./media/characters/pera/dick.svg"
  32035. }
  32036. },
  32037. },
  32038. [
  32039. {
  32040. name: "Normal",
  32041. height: math.unit(5 + 2/12, "feet"),
  32042. default: true
  32043. },
  32044. ]
  32045. ))
  32046. characterMakers.push(() => makeCharacter(
  32047. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32048. {
  32049. front: {
  32050. height: math.unit(12, "feet"),
  32051. weight: math.unit(3200, "lb"),
  32052. name: "Front",
  32053. image: {
  32054. source: "./media/characters/julian/front.svg",
  32055. extra: 2962/2701,
  32056. bottom: 184/3146
  32057. }
  32058. },
  32059. maw: {
  32060. height: math.unit(5.35, "feet"),
  32061. name: "Maw",
  32062. image: {
  32063. source: "./media/characters/julian/maw.svg"
  32064. }
  32065. },
  32066. paw: {
  32067. height: math.unit(3.07, "feet"),
  32068. name: "Paw",
  32069. image: {
  32070. source: "./media/characters/julian/paw.svg"
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Default",
  32077. height: math.unit(12, "feet"),
  32078. default: true
  32079. },
  32080. {
  32081. name: "Big",
  32082. height: math.unit(50, "feet")
  32083. },
  32084. {
  32085. name: "Really Big",
  32086. height: math.unit(1, "mile")
  32087. },
  32088. {
  32089. name: "Extremely Big",
  32090. height: math.unit(100, "miles")
  32091. },
  32092. {
  32093. name: "Planet Hugger",
  32094. height: math.unit(200, "megameters")
  32095. },
  32096. {
  32097. name: "Unreasonably Big",
  32098. height: math.unit(1e300, "meters")
  32099. },
  32100. ]
  32101. ))
  32102. characterMakers.push(() => makeCharacter(
  32103. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32104. {
  32105. solgooleo: {
  32106. height: math.unit(4, "meters"),
  32107. weight: math.unit(6000*1.5, "kg"),
  32108. volume: math.unit(6000, "liters"),
  32109. name: "Solgooleo",
  32110. image: {
  32111. source: "./media/characters/pi/solgooleo.svg",
  32112. extra: 388/331,
  32113. bottom: 29/417
  32114. }
  32115. },
  32116. },
  32117. [
  32118. {
  32119. name: "Normal",
  32120. height: math.unit(4, "meters"),
  32121. default: true
  32122. },
  32123. ]
  32124. ))
  32125. characterMakers.push(() => makeCharacter(
  32126. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32127. {
  32128. front: {
  32129. height: math.unit(8 + 2/12, "feet"),
  32130. weight: math.unit(4, "tons"),
  32131. name: "Front",
  32132. image: {
  32133. source: "./media/characters/shaun/front.svg",
  32134. extra: 1550/1505,
  32135. bottom: 353/1903
  32136. }
  32137. },
  32138. },
  32139. [
  32140. {
  32141. name: "Lorg",
  32142. height: math.unit(8 + 2/12, "feet"),
  32143. default: true
  32144. },
  32145. ]
  32146. ))
  32147. characterMakers.push(() => makeCharacter(
  32148. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32149. {
  32150. front: {
  32151. height: math.unit(7, "feet"),
  32152. name: "Front",
  32153. image: {
  32154. source: "./media/characters/sini/front.svg",
  32155. extra: 726/678,
  32156. bottom: 35/761
  32157. }
  32158. },
  32159. back: {
  32160. height: math.unit(7, "feet"),
  32161. name: "Back",
  32162. image: {
  32163. source: "./media/characters/sini/back.svg",
  32164. extra: 743/701,
  32165. bottom: 12/755
  32166. }
  32167. },
  32168. mawAnthro: {
  32169. height: math.unit(2.14, "feet"),
  32170. name: "Maw (Anthro)",
  32171. image: {
  32172. source: "./media/characters/sini/maw-anthro.svg"
  32173. }
  32174. },
  32175. dick: {
  32176. height: math.unit(1.45, "feet"),
  32177. name: "Dick (Anthro)",
  32178. image: {
  32179. source: "./media/characters/sini/dick-anthro.svg"
  32180. }
  32181. },
  32182. feral: {
  32183. height: math.unit(13, "feet"),
  32184. name: "Feral",
  32185. image: {
  32186. source: "./media/characters/sini/feral.svg",
  32187. extra: 814/605,
  32188. bottom: 11/825
  32189. }
  32190. },
  32191. mawFeral: {
  32192. height: math.unit(4.6, "feet"),
  32193. name: "Maw-feral",
  32194. image: {
  32195. source: "./media/characters/sini/maw-feral.svg"
  32196. }
  32197. },
  32198. footFeral: {
  32199. height: math.unit(4.2, "feet"),
  32200. name: "Foot-feral",
  32201. image: {
  32202. source: "./media/characters/sini/foot-feral.svg"
  32203. }
  32204. },
  32205. },
  32206. [
  32207. {
  32208. name: "Normal",
  32209. height: math.unit(7, "feet"),
  32210. default: true
  32211. },
  32212. ]
  32213. ))
  32214. characterMakers.push(() => makeCharacter(
  32215. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32216. {
  32217. side: {
  32218. height: math.unit(13, "meters"),
  32219. weight: math.unit(9072, "kg"),
  32220. name: "Side",
  32221. image: {
  32222. source: "./media/characters/raylldo/side.svg",
  32223. extra: 403/344,
  32224. bottom: 42/445
  32225. }
  32226. },
  32227. leaping: {
  32228. height: math.unit(12.3, "meters"),
  32229. weight: math.unit(9072, "kg"),
  32230. name: "Leaping",
  32231. image: {
  32232. source: "./media/characters/raylldo/leaping.svg",
  32233. extra: 470/249,
  32234. bottom: 13/483
  32235. }
  32236. },
  32237. flying: {
  32238. height: math.unit(18, "meters"),
  32239. weight: math.unit(9072, "kg"),
  32240. name: "Flying",
  32241. image: {
  32242. source: "./media/characters/raylldo/flying.svg"
  32243. }
  32244. },
  32245. head: {
  32246. height: math.unit(5.85, "meters"),
  32247. name: "Head",
  32248. image: {
  32249. source: "./media/characters/raylldo/head.svg"
  32250. }
  32251. },
  32252. maw: {
  32253. height: math.unit(5.32, "meters"),
  32254. name: "Maw",
  32255. image: {
  32256. source: "./media/characters/raylldo/maw.svg"
  32257. }
  32258. },
  32259. eye: {
  32260. height: math.unit(0.54, "meters"),
  32261. name: "Eye",
  32262. image: {
  32263. source: "./media/characters/raylldo/eye.svg"
  32264. }
  32265. },
  32266. },
  32267. [
  32268. {
  32269. name: "Normal",
  32270. height: math.unit(13, "meters"),
  32271. default: true
  32272. },
  32273. ]
  32274. ))
  32275. characterMakers.push(() => makeCharacter(
  32276. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32277. {
  32278. anthroFront: {
  32279. height: math.unit(9, "feet"),
  32280. weight: math.unit(600, "lb"),
  32281. name: "Anthro (Front)",
  32282. image: {
  32283. source: "./media/characters/glint/anthro-front.svg",
  32284. extra: 1097/1018,
  32285. bottom: 28/1125
  32286. }
  32287. },
  32288. anthroBack: {
  32289. height: math.unit(9, "feet"),
  32290. weight: math.unit(600, "lb"),
  32291. name: "Anthro (Back)",
  32292. image: {
  32293. source: "./media/characters/glint/anthro-back.svg",
  32294. extra: 1154/997,
  32295. bottom: 36/1190
  32296. }
  32297. },
  32298. feral: {
  32299. height: math.unit(11, "feet"),
  32300. weight: math.unit(50000, "lb"),
  32301. name: "Feral",
  32302. image: {
  32303. source: "./media/characters/glint/feral.svg",
  32304. extra: 3035/1585,
  32305. bottom: 1169/4204
  32306. }
  32307. },
  32308. dickAnthro: {
  32309. height: math.unit(0.7, "meters"),
  32310. name: "Dick (Anthro)",
  32311. image: {
  32312. source: "./media/characters/glint/dick-anthro.svg"
  32313. }
  32314. },
  32315. dickFeral: {
  32316. height: math.unit(2.65, "meters"),
  32317. name: "Dick (Feral)",
  32318. image: {
  32319. source: "./media/characters/glint/dick-feral.svg"
  32320. }
  32321. },
  32322. slitHidden: {
  32323. height: math.unit(5.85, "meters"),
  32324. name: "Slit (Hidden)",
  32325. image: {
  32326. source: "./media/characters/glint/slit-hidden.svg"
  32327. }
  32328. },
  32329. slitErect: {
  32330. height: math.unit(5.85, "meters"),
  32331. name: "Slit (Erect)",
  32332. image: {
  32333. source: "./media/characters/glint/slit-erect.svg"
  32334. }
  32335. },
  32336. mawAnthro: {
  32337. height: math.unit(0.63, "meters"),
  32338. name: "Maw (Anthro)",
  32339. image: {
  32340. source: "./media/characters/glint/maw.svg"
  32341. }
  32342. },
  32343. mawFeral: {
  32344. height: math.unit(2.89, "meters"),
  32345. name: "Maw (Feral)",
  32346. image: {
  32347. source: "./media/characters/glint/maw.svg"
  32348. }
  32349. },
  32350. },
  32351. [
  32352. {
  32353. name: "Normal",
  32354. height: math.unit(9, "feet"),
  32355. default: true
  32356. },
  32357. ]
  32358. ))
  32359. characterMakers.push(() => makeCharacter(
  32360. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32361. {
  32362. side: {
  32363. height: math.unit(15, "feet"),
  32364. weight: math.unit(5000, "kg"),
  32365. name: "Side",
  32366. image: {
  32367. source: "./media/characters/kairne/side.svg",
  32368. extra: 979/811,
  32369. bottom: 13/992
  32370. }
  32371. },
  32372. front: {
  32373. height: math.unit(15, "feet"),
  32374. weight: math.unit(5000, "kg"),
  32375. name: "Front",
  32376. image: {
  32377. source: "./media/characters/kairne/front.svg",
  32378. extra: 908/814,
  32379. bottom: 26/934
  32380. }
  32381. },
  32382. sideNsfw: {
  32383. height: math.unit(15, "feet"),
  32384. weight: math.unit(5000, "kg"),
  32385. name: "Side (NSFW)",
  32386. image: {
  32387. source: "./media/characters/kairne/side-nsfw.svg",
  32388. extra: 979/811,
  32389. bottom: 13/992
  32390. }
  32391. },
  32392. frontNsfw: {
  32393. height: math.unit(15, "feet"),
  32394. weight: math.unit(5000, "kg"),
  32395. name: "Front (NSFW)",
  32396. image: {
  32397. source: "./media/characters/kairne/front-nsfw.svg",
  32398. extra: 908/814,
  32399. bottom: 26/934
  32400. }
  32401. },
  32402. dickCaged: {
  32403. height: math.unit(0.65, "meters"),
  32404. name: "Dick-caged",
  32405. image: {
  32406. source: "./media/characters/kairne/dick-caged.svg"
  32407. }
  32408. },
  32409. dick: {
  32410. height: math.unit(0.79, "meters"),
  32411. name: "Dick",
  32412. image: {
  32413. source: "./media/characters/kairne/dick.svg"
  32414. }
  32415. },
  32416. genitals: {
  32417. height: math.unit(1.29, "meters"),
  32418. name: "Genitals",
  32419. image: {
  32420. source: "./media/characters/kairne/genitals.svg"
  32421. }
  32422. },
  32423. maw: {
  32424. height: math.unit(1.73, "meters"),
  32425. name: "Maw",
  32426. image: {
  32427. source: "./media/characters/kairne/maw.svg"
  32428. }
  32429. },
  32430. },
  32431. [
  32432. {
  32433. name: "Normal",
  32434. height: math.unit(15, "feet"),
  32435. default: true
  32436. },
  32437. ]
  32438. ))
  32439. characterMakers.push(() => makeCharacter(
  32440. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32441. {
  32442. front: {
  32443. height: math.unit(5 + 8/12, "feet"),
  32444. weight: math.unit(139, "lb"),
  32445. name: "Front",
  32446. image: {
  32447. source: "./media/characters/biscuit-jackal/front.svg",
  32448. extra: 2106/1961,
  32449. bottom: 58/2164
  32450. }
  32451. },
  32452. back: {
  32453. height: math.unit(5 + 8/12, "feet"),
  32454. weight: math.unit(139, "lb"),
  32455. name: "Back",
  32456. image: {
  32457. source: "./media/characters/biscuit-jackal/back.svg",
  32458. extra: 2132/1976,
  32459. bottom: 57/2189
  32460. }
  32461. },
  32462. werejackal: {
  32463. height: math.unit(6 + 3/12, "feet"),
  32464. weight: math.unit(188, "lb"),
  32465. name: "Werejackal",
  32466. image: {
  32467. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32468. extra: 2373/2178,
  32469. bottom: 53/2426
  32470. }
  32471. },
  32472. },
  32473. [
  32474. {
  32475. name: "Normal",
  32476. height: math.unit(5 + 8/12, "feet"),
  32477. default: true
  32478. },
  32479. ]
  32480. ))
  32481. characterMakers.push(() => makeCharacter(
  32482. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32483. {
  32484. front: {
  32485. height: math.unit(140, "cm"),
  32486. weight: math.unit(45, "kg"),
  32487. name: "Front",
  32488. image: {
  32489. source: "./media/characters/tayra-white/front.svg",
  32490. extra: 2229/2192,
  32491. bottom: 75/2304
  32492. }
  32493. },
  32494. },
  32495. [
  32496. {
  32497. name: "Normal",
  32498. height: math.unit(140, "cm"),
  32499. default: true
  32500. },
  32501. ]
  32502. ))
  32503. characterMakers.push(() => makeCharacter(
  32504. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32505. {
  32506. front: {
  32507. height: math.unit(4 + 5/12, "feet"),
  32508. name: "Front",
  32509. image: {
  32510. source: "./media/characters/scoop/front.svg",
  32511. extra: 1257/1136,
  32512. bottom: 69/1326
  32513. }
  32514. },
  32515. back: {
  32516. height: math.unit(4 + 5/12, "feet"),
  32517. name: "Back",
  32518. image: {
  32519. source: "./media/characters/scoop/back.svg",
  32520. extra: 1321/1152,
  32521. bottom: 32/1353
  32522. }
  32523. },
  32524. maw: {
  32525. height: math.unit(0.68, "feet"),
  32526. name: "Maw",
  32527. image: {
  32528. source: "./media/characters/scoop/maw.svg"
  32529. }
  32530. },
  32531. },
  32532. [
  32533. {
  32534. name: "Really Small",
  32535. height: math.unit(1, "mm")
  32536. },
  32537. {
  32538. name: "Micro",
  32539. height: math.unit(1, "inch")
  32540. },
  32541. {
  32542. name: "Normal",
  32543. height: math.unit(4 + 5/12, "feet"),
  32544. default: true
  32545. },
  32546. {
  32547. name: "Macro",
  32548. height: math.unit(200, "feet")
  32549. },
  32550. {
  32551. name: "Megamacro",
  32552. height: math.unit(3240, "feet")
  32553. },
  32554. {
  32555. name: "Teramacro",
  32556. height: math.unit(2500, "miles")
  32557. },
  32558. ]
  32559. ))
  32560. characterMakers.push(() => makeCharacter(
  32561. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32562. {
  32563. front: {
  32564. height: math.unit(15 + 7/12, "feet"),
  32565. name: "Front",
  32566. image: {
  32567. source: "./media/characters/saphinara/front.svg",
  32568. extra: 604/546,
  32569. bottom: 19/623
  32570. }
  32571. },
  32572. side: {
  32573. height: math.unit(15 + 7/12, "feet"),
  32574. name: "Side",
  32575. image: {
  32576. source: "./media/characters/saphinara/side.svg",
  32577. extra: 605/547,
  32578. bottom: 6/611
  32579. }
  32580. },
  32581. back: {
  32582. height: math.unit(15 + 7/12, "feet"),
  32583. name: "Back",
  32584. image: {
  32585. source: "./media/characters/saphinara/back.svg",
  32586. extra: 591/531,
  32587. bottom: 13/604
  32588. }
  32589. },
  32590. frontTail: {
  32591. height: math.unit(15 + 7/12, "feet"),
  32592. name: "Front (Full Tail)",
  32593. image: {
  32594. source: "./media/characters/saphinara/front-tail.svg",
  32595. extra: 748/547,
  32596. bottom: 66/814
  32597. }
  32598. },
  32599. },
  32600. [
  32601. {
  32602. name: "Normal",
  32603. height: math.unit(15 + 7/12, "feet"),
  32604. default: true
  32605. },
  32606. {
  32607. name: "Angry",
  32608. height: math.unit(30 + 6/12, "feet")
  32609. },
  32610. {
  32611. name: "Enraged",
  32612. height: math.unit(102 + 1/12, "feet")
  32613. },
  32614. ]
  32615. ))
  32616. characterMakers.push(() => makeCharacter(
  32617. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32618. {
  32619. front: {
  32620. height: math.unit(6 + 8/12, "feet"),
  32621. weight: math.unit(300, "lb"),
  32622. name: "Front",
  32623. image: {
  32624. source: "./media/characters/jrain/front.svg",
  32625. extra: 3039/2865,
  32626. bottom: 399/3438
  32627. }
  32628. },
  32629. back: {
  32630. height: math.unit(6 + 8/12, "feet"),
  32631. weight: math.unit(300, "lb"),
  32632. name: "Back",
  32633. image: {
  32634. source: "./media/characters/jrain/back.svg",
  32635. extra: 3089/2938,
  32636. bottom: 172/3261
  32637. }
  32638. },
  32639. head: {
  32640. height: math.unit(2.14, "feet"),
  32641. name: "Head",
  32642. image: {
  32643. source: "./media/characters/jrain/head.svg"
  32644. }
  32645. },
  32646. maw: {
  32647. height: math.unit(1.77, "feet"),
  32648. name: "Maw",
  32649. image: {
  32650. source: "./media/characters/jrain/maw.svg"
  32651. }
  32652. },
  32653. leftHand: {
  32654. height: math.unit(1.1, "feet"),
  32655. name: "Left Hand",
  32656. image: {
  32657. source: "./media/characters/jrain/left-hand.svg"
  32658. }
  32659. },
  32660. rightHand: {
  32661. height: math.unit(1.1, "feet"),
  32662. name: "Right Hand",
  32663. image: {
  32664. source: "./media/characters/jrain/right-hand.svg"
  32665. }
  32666. },
  32667. eye: {
  32668. height: math.unit(0.35, "feet"),
  32669. name: "Eye",
  32670. image: {
  32671. source: "./media/characters/jrain/eye.svg"
  32672. }
  32673. },
  32674. },
  32675. [
  32676. {
  32677. name: "Normal",
  32678. height: math.unit(6 + 8/12, "feet"),
  32679. default: true
  32680. },
  32681. {
  32682. name: "Casually Large",
  32683. height: math.unit(25, "feet")
  32684. },
  32685. {
  32686. name: "Giant",
  32687. height: math.unit(100, "feet")
  32688. },
  32689. {
  32690. name: "Kaiju",
  32691. height: math.unit(300, "feet")
  32692. },
  32693. ]
  32694. ))
  32695. characterMakers.push(() => makeCharacter(
  32696. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32697. {
  32698. dragon: {
  32699. height: math.unit(5, "meters"),
  32700. name: "Dragon",
  32701. image: {
  32702. source: "./media/characters/sabrina/dragon.svg",
  32703. extra: 3670 / 2365,
  32704. bottom: 333 / 4003
  32705. }
  32706. },
  32707. gryphon: {
  32708. height: math.unit(3, "meters"),
  32709. name: "Gryphon",
  32710. image: {
  32711. source: "./media/characters/sabrina/gryphon.svg",
  32712. extra: 1576 / 945,
  32713. bottom: 71 / 1647
  32714. }
  32715. },
  32716. snake: {
  32717. height: math.unit(12, "meters"),
  32718. name: "Snake",
  32719. image: {
  32720. source: "./media/characters/sabrina/snake.svg",
  32721. extra: 1758 / 1320,
  32722. bottom: 186 / 1944
  32723. }
  32724. },
  32725. collar: {
  32726. height: math.unit(1.86, "meters"),
  32727. name: "Collar",
  32728. image: {
  32729. source: "./media/characters/sabrina/collar.svg"
  32730. }
  32731. },
  32732. eye: {
  32733. height: math.unit(0.53, "meters"),
  32734. name: "Eye",
  32735. image: {
  32736. source: "./media/characters/sabrina/eye.svg"
  32737. }
  32738. },
  32739. foot: {
  32740. height: math.unit(1.86, "meters"),
  32741. name: "Foot",
  32742. image: {
  32743. source: "./media/characters/sabrina/foot.svg"
  32744. }
  32745. },
  32746. hand: {
  32747. height: math.unit(1.32, "meters"),
  32748. name: "Hand",
  32749. image: {
  32750. source: "./media/characters/sabrina/hand.svg"
  32751. }
  32752. },
  32753. head: {
  32754. height: math.unit(2.44, "meters"),
  32755. name: "Head",
  32756. image: {
  32757. source: "./media/characters/sabrina/head.svg"
  32758. }
  32759. },
  32760. headAngry: {
  32761. height: math.unit(2.44, "meters"),
  32762. name: "Head (Angry))",
  32763. image: {
  32764. source: "./media/characters/sabrina/head-angry.svg"
  32765. }
  32766. },
  32767. maw: {
  32768. height: math.unit(1.65, "meters"),
  32769. name: "Maw",
  32770. image: {
  32771. source: "./media/characters/sabrina/maw.svg"
  32772. }
  32773. },
  32774. spikes: {
  32775. height: math.unit(1.69, "meters"),
  32776. name: "Spikes",
  32777. image: {
  32778. source: "./media/characters/sabrina/spikes.svg"
  32779. }
  32780. },
  32781. stomach: {
  32782. height: math.unit(1.15, "meters"),
  32783. name: "Stomach",
  32784. image: {
  32785. source: "./media/characters/sabrina/stomach.svg"
  32786. }
  32787. },
  32788. tongue: {
  32789. height: math.unit(1.27, "meters"),
  32790. name: "Tongue",
  32791. image: {
  32792. source: "./media/characters/sabrina/tongue.svg"
  32793. }
  32794. },
  32795. wingDorsal: {
  32796. height: math.unit(4.85, "meters"),
  32797. name: "Wing (Dorsal)",
  32798. image: {
  32799. source: "./media/characters/sabrina/wing-dorsal.svg"
  32800. }
  32801. },
  32802. wingVentral: {
  32803. height: math.unit(4.85, "meters"),
  32804. name: "Wing (Ventral)",
  32805. image: {
  32806. source: "./media/characters/sabrina/wing-ventral.svg"
  32807. }
  32808. },
  32809. },
  32810. [
  32811. {
  32812. name: "Normal",
  32813. height: math.unit(5, "meters"),
  32814. default: true
  32815. },
  32816. ]
  32817. ))
  32818. characterMakers.push(() => makeCharacter(
  32819. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32820. {
  32821. frontMaid: {
  32822. height: math.unit(5 + 5/12, "feet"),
  32823. weight: math.unit(130, "lb"),
  32824. name: "Front (Maid)",
  32825. image: {
  32826. source: "./media/characters/midnight-tales/front-maid.svg",
  32827. extra: 489/454,
  32828. bottom: 61/550
  32829. }
  32830. },
  32831. frontFormal: {
  32832. height: math.unit(5 + 5/12, "feet"),
  32833. weight: math.unit(130, "lb"),
  32834. name: "Front (Formal)",
  32835. image: {
  32836. source: "./media/characters/midnight-tales/front-formal.svg",
  32837. extra: 489/454,
  32838. bottom: 61/550
  32839. }
  32840. },
  32841. back: {
  32842. height: math.unit(5 + 5/12, "feet"),
  32843. weight: math.unit(130, "lb"),
  32844. name: "Back",
  32845. image: {
  32846. source: "./media/characters/midnight-tales/back.svg",
  32847. extra: 498/456,
  32848. bottom: 33/531
  32849. }
  32850. },
  32851. frontBeast: {
  32852. height: math.unit(40, "feet"),
  32853. weight: math.unit(64000, "lb"),
  32854. name: "Front (Beast)",
  32855. image: {
  32856. source: "./media/characters/midnight-tales/front-beast.svg",
  32857. extra: 927/860,
  32858. bottom: 53/980
  32859. }
  32860. },
  32861. backBeast: {
  32862. height: math.unit(40, "feet"),
  32863. weight: math.unit(64000, "lb"),
  32864. name: "Back (Beast)",
  32865. image: {
  32866. source: "./media/characters/midnight-tales/back-beast.svg",
  32867. extra: 929/855,
  32868. bottom: 16/945
  32869. }
  32870. },
  32871. footBeast: {
  32872. height: math.unit(6.7, "feet"),
  32873. name: "Foot (Beast)",
  32874. image: {
  32875. source: "./media/characters/midnight-tales/foot-beast.svg"
  32876. }
  32877. },
  32878. headBeast: {
  32879. height: math.unit(8, "feet"),
  32880. name: "Head (Beast)",
  32881. image: {
  32882. source: "./media/characters/midnight-tales/head-beast.svg"
  32883. }
  32884. },
  32885. },
  32886. [
  32887. {
  32888. name: "Normal",
  32889. height: math.unit(5 + 5 / 12, "feet"),
  32890. default: true
  32891. },
  32892. {
  32893. name: "Macro",
  32894. height: math.unit(25, "feet")
  32895. },
  32896. ]
  32897. ))
  32898. characterMakers.push(() => makeCharacter(
  32899. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32900. {
  32901. front: {
  32902. height: math.unit(5 + 10/12, "feet"),
  32903. name: "Front",
  32904. image: {
  32905. source: "./media/characters/argon/front.svg",
  32906. extra: 2009/1935,
  32907. bottom: 118/2127
  32908. }
  32909. },
  32910. back: {
  32911. height: math.unit(5 + 10/12, "feet"),
  32912. name: "Back",
  32913. image: {
  32914. source: "./media/characters/argon/back.svg",
  32915. extra: 2047/1992,
  32916. bottom: 20/2067
  32917. }
  32918. },
  32919. frontDressed: {
  32920. height: math.unit(5 + 10/12, "feet"),
  32921. name: "Front (Dressed)",
  32922. image: {
  32923. source: "./media/characters/argon/front-dressed.svg",
  32924. extra: 2009/1935,
  32925. bottom: 118/2127
  32926. }
  32927. },
  32928. },
  32929. [
  32930. {
  32931. name: "Normal",
  32932. height: math.unit(5 + 10/12, "feet"),
  32933. default: true
  32934. },
  32935. ]
  32936. ))
  32937. characterMakers.push(() => makeCharacter(
  32938. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32939. {
  32940. front: {
  32941. height: math.unit(8 + 6/12, "feet"),
  32942. weight: math.unit(1150, "lb"),
  32943. name: "Front",
  32944. image: {
  32945. source: "./media/characters/kichi/front.svg",
  32946. extra: 1267/1164,
  32947. bottom: 61/1328
  32948. }
  32949. },
  32950. back: {
  32951. height: math.unit(8 + 6/12, "feet"),
  32952. weight: math.unit(1150, "lb"),
  32953. name: "Back",
  32954. image: {
  32955. source: "./media/characters/kichi/back.svg",
  32956. extra: 1273/1166,
  32957. bottom: 33/1306
  32958. }
  32959. },
  32960. },
  32961. [
  32962. {
  32963. name: "Normal",
  32964. height: math.unit(8 + 6/12, "feet"),
  32965. default: true
  32966. },
  32967. ]
  32968. ))
  32969. characterMakers.push(() => makeCharacter(
  32970. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32971. {
  32972. front: {
  32973. height: math.unit(6, "feet"),
  32974. weight: math.unit(210, "lb"),
  32975. name: "Front",
  32976. image: {
  32977. source: "./media/characters/manetel-greyscale/front.svg",
  32978. extra: 350/312,
  32979. bottom: 8/358
  32980. }
  32981. },
  32982. },
  32983. [
  32984. {
  32985. name: "Micro",
  32986. height: math.unit(2, "inches")
  32987. },
  32988. {
  32989. name: "Normal",
  32990. height: math.unit(6, "feet"),
  32991. default: true
  32992. },
  32993. {
  32994. name: "Minimacro",
  32995. height: math.unit(17, "feet")
  32996. },
  32997. {
  32998. name: "Macro",
  32999. height: math.unit(117, "feet")
  33000. },
  33001. ]
  33002. ))
  33003. characterMakers.push(() => makeCharacter(
  33004. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33005. {
  33006. side: {
  33007. height: math.unit(5 + 1/12, "feet"),
  33008. weight: math.unit(418, "lb"),
  33009. name: "Side",
  33010. image: {
  33011. source: "./media/characters/softpurr/side.svg",
  33012. extra: 1993/1945,
  33013. bottom: 134/2127
  33014. }
  33015. },
  33016. front: {
  33017. height: math.unit(5 + 1/12, "feet"),
  33018. weight: math.unit(418, "lb"),
  33019. name: "Front",
  33020. image: {
  33021. source: "./media/characters/softpurr/front.svg",
  33022. extra: 1950/1856,
  33023. bottom: 174/2124
  33024. }
  33025. },
  33026. paw: {
  33027. height: math.unit(1, "feet"),
  33028. name: "Paw",
  33029. image: {
  33030. source: "./media/characters/softpurr/paw.svg"
  33031. }
  33032. },
  33033. },
  33034. [
  33035. {
  33036. name: "Normal",
  33037. height: math.unit(5 + 1/12, "feet"),
  33038. default: true
  33039. },
  33040. ]
  33041. ))
  33042. characterMakers.push(() => makeCharacter(
  33043. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33044. {
  33045. front: {
  33046. height: math.unit(260, "meters"),
  33047. name: "Front",
  33048. image: {
  33049. source: "./media/characters/anahita/front.svg",
  33050. extra: 665/635,
  33051. bottom: 89/754
  33052. }
  33053. },
  33054. },
  33055. [
  33056. {
  33057. name: "Macro",
  33058. height: math.unit(260, "meters"),
  33059. default: true
  33060. },
  33061. ]
  33062. ))
  33063. characterMakers.push(() => makeCharacter(
  33064. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33065. {
  33066. front: {
  33067. height: math.unit(4 + 10/12, "feet"),
  33068. weight: math.unit(160, "lb"),
  33069. name: "Front",
  33070. image: {
  33071. source: "./media/characters/chip-mouse/front.svg",
  33072. extra: 3528/3408,
  33073. bottom: 0/3528
  33074. }
  33075. },
  33076. frontNsfw: {
  33077. height: math.unit(4 + 10/12, "feet"),
  33078. weight: math.unit(160, "lb"),
  33079. name: "Front (NSFW)",
  33080. image: {
  33081. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33082. extra: 3528/3408,
  33083. bottom: 0/3528
  33084. }
  33085. },
  33086. },
  33087. [
  33088. {
  33089. name: "Normal",
  33090. height: math.unit(4 + 10/12, "feet"),
  33091. default: true
  33092. },
  33093. ]
  33094. ))
  33095. characterMakers.push(() => makeCharacter(
  33096. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33097. {
  33098. side: {
  33099. height: math.unit(10, "feet"),
  33100. weight: math.unit(14000, "lb"),
  33101. name: "Side",
  33102. image: {
  33103. source: "./media/characters/kremm/side.svg",
  33104. extra: 1390/1053,
  33105. bottom: 90/1480
  33106. }
  33107. },
  33108. gut: {
  33109. height: math.unit(5.8, "feet"),
  33110. name: "Gut",
  33111. image: {
  33112. source: "./media/characters/kremm/gut.svg"
  33113. }
  33114. },
  33115. ass: {
  33116. height: math.unit(6.1, "feet"),
  33117. name: "Ass",
  33118. image: {
  33119. source: "./media/characters/kremm/ass.svg"
  33120. }
  33121. },
  33122. jaws: {
  33123. height: math.unit(2.2, "feet"),
  33124. name: "Jaws",
  33125. image: {
  33126. source: "./media/characters/kremm/jaws.svg"
  33127. }
  33128. },
  33129. dick: {
  33130. height: math.unit(4.26, "feet"),
  33131. name: "Dick",
  33132. image: {
  33133. source: "./media/characters/kremm/dick.svg"
  33134. }
  33135. },
  33136. },
  33137. [
  33138. {
  33139. name: "Normal",
  33140. height: math.unit(10, "feet"),
  33141. default: true
  33142. },
  33143. ]
  33144. ))
  33145. characterMakers.push(() => makeCharacter(
  33146. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33147. {
  33148. front: {
  33149. height: math.unit(30, "stories"),
  33150. name: "Front",
  33151. image: {
  33152. source: "./media/characters/kai/front.svg",
  33153. extra: 1892/1718,
  33154. bottom: 162/2054
  33155. }
  33156. },
  33157. },
  33158. [
  33159. {
  33160. name: "Macro",
  33161. height: math.unit(30, "stories"),
  33162. default: true
  33163. },
  33164. ]
  33165. ))
  33166. characterMakers.push(() => makeCharacter(
  33167. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33168. {
  33169. front: {
  33170. height: math.unit(6 + 4/12, "feet"),
  33171. weight: math.unit(145, "lb"),
  33172. name: "Front",
  33173. image: {
  33174. source: "./media/characters/sykes/front.svg",
  33175. extra: 1321 / 1187,
  33176. bottom: 66 / 1387
  33177. }
  33178. },
  33179. back: {
  33180. height: math.unit(6 + 4/12, "feet"),
  33181. weight: math.unit(145, "lb"),
  33182. name: "Back",
  33183. image: {
  33184. source: "./media/characters/sykes/back.svg",
  33185. extra: 1326/1181,
  33186. bottom: 31/1357
  33187. }
  33188. },
  33189. handBack: {
  33190. height: math.unit(0.9, "feet"),
  33191. name: "Hand (Back)",
  33192. image: {
  33193. source: "./media/characters/sykes/hand-back.svg"
  33194. }
  33195. },
  33196. handFront: {
  33197. height: math.unit(0.839, "feet"),
  33198. name: "Hand (Front)",
  33199. image: {
  33200. source: "./media/characters/sykes/hand-front.svg"
  33201. }
  33202. },
  33203. leftFoot: {
  33204. height: math.unit(1.2, "feet"),
  33205. name: "Foot (Left)",
  33206. image: {
  33207. source: "./media/characters/sykes/foot-left.svg"
  33208. }
  33209. },
  33210. rightFoot: {
  33211. height: math.unit(1.2, "feet"),
  33212. name: "Foot (Right)",
  33213. image: {
  33214. source: "./media/characters/sykes/foot-right.svg"
  33215. }
  33216. },
  33217. maw: {
  33218. height: math.unit(1.93, "feet"),
  33219. name: "Maw",
  33220. image: {
  33221. source: "./media/characters/sykes/maw.svg"
  33222. }
  33223. },
  33224. teeth: {
  33225. height: math.unit(0.51, "feet"),
  33226. name: "Teeth",
  33227. image: {
  33228. source: "./media/characters/sykes/teeth.svg"
  33229. }
  33230. },
  33231. tongue: {
  33232. height: math.unit(2.13, "feet"),
  33233. name: "Tongue",
  33234. image: {
  33235. source: "./media/characters/sykes/tongue.svg"
  33236. }
  33237. },
  33238. uvula: {
  33239. height: math.unit(0.16, "feet"),
  33240. name: "Uvula",
  33241. image: {
  33242. source: "./media/characters/sykes/uvula.svg"
  33243. }
  33244. },
  33245. collar: {
  33246. height: math.unit(0.287, "feet"),
  33247. name: "Collar",
  33248. image: {
  33249. source: "./media/characters/sykes/collar.svg"
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Shrunken",
  33256. height: math.unit(5, "inches")
  33257. },
  33258. {
  33259. name: "Normal",
  33260. height: math.unit(6 + 4 / 12, "feet"),
  33261. default: true
  33262. },
  33263. {
  33264. name: "Big",
  33265. height: math.unit(15, "feet")
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33271. {
  33272. front: {
  33273. height: math.unit(5 + 8/12, "feet"),
  33274. weight: math.unit(190, "lb"),
  33275. name: "Front",
  33276. image: {
  33277. source: "./media/characters/oven-otter/front.svg",
  33278. extra: 1809/1740,
  33279. bottom: 181/1990
  33280. }
  33281. },
  33282. back: {
  33283. height: math.unit(5 + 8/12, "feet"),
  33284. weight: math.unit(190, "lb"),
  33285. name: "Back",
  33286. image: {
  33287. source: "./media/characters/oven-otter/back.svg",
  33288. extra: 1709/1635,
  33289. bottom: 118/1827
  33290. }
  33291. },
  33292. hand: {
  33293. height: math.unit(1.07, "feet"),
  33294. name: "Hand",
  33295. image: {
  33296. source: "./media/characters/oven-otter/hand.svg"
  33297. }
  33298. },
  33299. beans: {
  33300. height: math.unit(1.74, "feet"),
  33301. name: "Beans",
  33302. image: {
  33303. source: "./media/characters/oven-otter/beans.svg"
  33304. }
  33305. },
  33306. },
  33307. [
  33308. {
  33309. name: "Micro",
  33310. height: math.unit(0.5, "inches")
  33311. },
  33312. {
  33313. name: "Normal",
  33314. height: math.unit(5 + 8/12, "feet"),
  33315. default: true
  33316. },
  33317. {
  33318. name: "Macro",
  33319. height: math.unit(250, "feet")
  33320. },
  33321. {
  33322. name: "Really High",
  33323. height: math.unit(420, "feet")
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33329. {
  33330. front: {
  33331. height: math.unit(5, "meters"),
  33332. weight: math.unit(292000000000000, "kg"),
  33333. name: "Front",
  33334. image: {
  33335. source: "./media/characters/devourer/front.svg",
  33336. extra: 1800/1733,
  33337. bottom: 211/2011
  33338. }
  33339. },
  33340. maw: {
  33341. height: math.unit(1.1, "meter"),
  33342. name: "Maw",
  33343. image: {
  33344. source: "./media/characters/devourer/maw.svg"
  33345. }
  33346. },
  33347. },
  33348. [
  33349. {
  33350. name: "Small",
  33351. height: math.unit(3, "meters")
  33352. },
  33353. {
  33354. name: "Large",
  33355. height: math.unit(5, "meters"),
  33356. default: true
  33357. },
  33358. ]
  33359. ))
  33360. characterMakers.push(() => makeCharacter(
  33361. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33362. {
  33363. front: {
  33364. height: math.unit(6, "feet"),
  33365. weight: math.unit(400, "lb"),
  33366. name: "Front",
  33367. image: {
  33368. source: "./media/characters/ellarby/front.svg",
  33369. extra: 1909/1763,
  33370. bottom: 80/1989
  33371. }
  33372. },
  33373. back: {
  33374. height: math.unit(6, "feet"),
  33375. weight: math.unit(400, "lb"),
  33376. name: "Back",
  33377. image: {
  33378. source: "./media/characters/ellarby/back.svg",
  33379. extra: 1914/1784,
  33380. bottom: 172/2086
  33381. }
  33382. },
  33383. },
  33384. [
  33385. {
  33386. name: "Mischief",
  33387. height: math.unit(18, "inches")
  33388. },
  33389. {
  33390. name: "Trouble",
  33391. height: math.unit(12, "feet")
  33392. },
  33393. {
  33394. name: "Havoc",
  33395. height: math.unit(200, "feet"),
  33396. default: true
  33397. },
  33398. {
  33399. name: "Pandemonium",
  33400. height: math.unit(1, "mile")
  33401. },
  33402. {
  33403. name: "Catastrophe",
  33404. height: math.unit(100, "miles")
  33405. },
  33406. ]
  33407. ))
  33408. characterMakers.push(() => makeCharacter(
  33409. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33410. {
  33411. front: {
  33412. height: math.unit(4.7, "meters"),
  33413. weight: math.unit(6500, "kg"),
  33414. name: "Front",
  33415. image: {
  33416. source: "./media/characters/vex/front.svg",
  33417. extra: 1288/1140,
  33418. bottom: 100/1388
  33419. }
  33420. },
  33421. },
  33422. [
  33423. {
  33424. name: "Normal",
  33425. height: math.unit(4.7, "meters"),
  33426. default: true
  33427. },
  33428. ]
  33429. ))
  33430. characterMakers.push(() => makeCharacter(
  33431. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33432. {
  33433. normal: {
  33434. height: math.unit(6, "feet"),
  33435. weight: math.unit(350, "lb"),
  33436. name: "Normal",
  33437. image: {
  33438. source: "./media/characters/teshy/normal.svg",
  33439. extra: 1795/1735,
  33440. bottom: 16/1811
  33441. }
  33442. },
  33443. monsterFront: {
  33444. height: math.unit(12, "feet"),
  33445. weight: math.unit(4700, "lb"),
  33446. name: "Monster (Front)",
  33447. image: {
  33448. source: "./media/characters/teshy/monster-front.svg",
  33449. extra: 2042/2034,
  33450. bottom: 128/2170
  33451. }
  33452. },
  33453. monsterSide: {
  33454. height: math.unit(12, "feet"),
  33455. weight: math.unit(4700, "lb"),
  33456. name: "Monster (Side)",
  33457. image: {
  33458. source: "./media/characters/teshy/monster-side.svg",
  33459. extra: 2067/2056,
  33460. bottom: 70/2137
  33461. }
  33462. },
  33463. monsterBack: {
  33464. height: math.unit(12, "feet"),
  33465. weight: math.unit(4700, "lb"),
  33466. name: "Monster (Back)",
  33467. image: {
  33468. source: "./media/characters/teshy/monster-back.svg",
  33469. extra: 1921/1914,
  33470. bottom: 171/2092
  33471. }
  33472. },
  33473. },
  33474. [
  33475. {
  33476. name: "Normal",
  33477. height: math.unit(6, "feet"),
  33478. default: true
  33479. },
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33484. {
  33485. front: {
  33486. height: math.unit(6, "feet"),
  33487. name: "Front",
  33488. image: {
  33489. source: "./media/characters/ramey/front.svg",
  33490. extra: 790/787,
  33491. bottom: 27/817
  33492. }
  33493. },
  33494. },
  33495. [
  33496. {
  33497. name: "Normal",
  33498. height: math.unit(6, "feet"),
  33499. default: true
  33500. },
  33501. ]
  33502. ))
  33503. characterMakers.push(() => makeCharacter(
  33504. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33505. {
  33506. front: {
  33507. height: math.unit(5 + 5/12, "feet"),
  33508. weight: math.unit(120, "lb"),
  33509. name: "Front",
  33510. image: {
  33511. source: "./media/characters/phirae/front.svg",
  33512. extra: 2491/2436,
  33513. bottom: 38/2529
  33514. }
  33515. },
  33516. },
  33517. [
  33518. {
  33519. name: "Normal",
  33520. height: math.unit(5 + 5/12, "feet"),
  33521. default: true
  33522. },
  33523. ]
  33524. ))
  33525. characterMakers.push(() => makeCharacter(
  33526. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33527. {
  33528. front: {
  33529. height: math.unit(6, "feet"),
  33530. weight: math.unit(150, "lb"),
  33531. name: "Front",
  33532. image: {
  33533. source: "./media/characters/stagglas/front.svg",
  33534. extra: 962/882,
  33535. bottom: 53/1015
  33536. }
  33537. },
  33538. },
  33539. [
  33540. {
  33541. name: "Normal",
  33542. height: math.unit(5 + 3/12, "feet"),
  33543. default: true
  33544. },
  33545. ]
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33549. {
  33550. front: {
  33551. height: math.unit(5 + 4/12, "feet"),
  33552. weight: math.unit(145, "lb"),
  33553. name: "Front",
  33554. image: {
  33555. source: "./media/characters/starra/front.svg",
  33556. extra: 1790/1691,
  33557. bottom: 91/1881
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(5 + 4/12, "feet"),
  33565. default: true
  33566. },
  33567. ]
  33568. ))
  33569. characterMakers.push(() => makeCharacter(
  33570. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33571. {
  33572. front: {
  33573. height: math.unit(2.2, "meters"),
  33574. name: "Front",
  33575. image: {
  33576. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33577. extra: 1194/1005,
  33578. bottom: 25/1219
  33579. }
  33580. },
  33581. },
  33582. [
  33583. {
  33584. name: "Normal",
  33585. height: math.unit(2.2, "meters"),
  33586. default: true
  33587. },
  33588. ]
  33589. ))
  33590. characterMakers.push(() => makeCharacter(
  33591. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33592. {
  33593. side: {
  33594. height: math.unit(8 + 2/12, "feet"),
  33595. weight: math.unit(1240, "lb"),
  33596. name: "Side",
  33597. image: {
  33598. source: "./media/characters/mika-valentine/side.svg",
  33599. extra: 2670/2501,
  33600. bottom: 250/2920
  33601. }
  33602. },
  33603. },
  33604. [
  33605. {
  33606. name: "Normal",
  33607. height: math.unit(8 + 2/12, "feet"),
  33608. default: true
  33609. },
  33610. ]
  33611. ))
  33612. characterMakers.push(() => makeCharacter(
  33613. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33614. {
  33615. front: {
  33616. height: math.unit(7 + 2/12, "feet"),
  33617. name: "Front",
  33618. image: {
  33619. source: "./media/characters/xoltol/front.svg",
  33620. extra: 2212/2124,
  33621. bottom: 84/2296
  33622. }
  33623. },
  33624. side: {
  33625. height: math.unit(7 + 2/12, "feet"),
  33626. name: "Side",
  33627. image: {
  33628. source: "./media/characters/xoltol/side.svg",
  33629. extra: 2273/2197,
  33630. bottom: 26/2299
  33631. }
  33632. },
  33633. hand: {
  33634. height: math.unit(2.5, "feet"),
  33635. name: "Hand",
  33636. image: {
  33637. source: "./media/characters/xoltol/hand.svg"
  33638. }
  33639. },
  33640. },
  33641. [
  33642. {
  33643. name: "Small-ish",
  33644. height: math.unit(5 + 11/12, "feet")
  33645. },
  33646. {
  33647. name: "Normal",
  33648. height: math.unit(7 + 2/12, "feet")
  33649. },
  33650. {
  33651. name: "\"Macro\"",
  33652. height: math.unit(14 + 9/12, "feet"),
  33653. default: true
  33654. },
  33655. {
  33656. name: "Alternate Height",
  33657. height: math.unit(20, "feet")
  33658. },
  33659. {
  33660. name: "Actually Macro",
  33661. height: math.unit(100, "feet")
  33662. },
  33663. ]
  33664. ))
  33665. characterMakers.push(() => makeCharacter(
  33666. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33667. {
  33668. front: {
  33669. height: math.unit(5 + 2/12, "feet"),
  33670. name: "Front",
  33671. image: {
  33672. source: "./media/characters/kotetsu-redwood/front.svg",
  33673. extra: 1053/942,
  33674. bottom: 60/1113
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Normal",
  33681. height: math.unit(5 + 2/12, "feet"),
  33682. default: true
  33683. },
  33684. ]
  33685. ))
  33686. characterMakers.push(() => makeCharacter(
  33687. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33688. {
  33689. front: {
  33690. height: math.unit(2.4, "meters"),
  33691. weight: math.unit(125, "kg"),
  33692. name: "Front",
  33693. image: {
  33694. source: "./media/characters/lilith/front.svg",
  33695. extra: 1590/1513,
  33696. bottom: 203/1793
  33697. }
  33698. },
  33699. },
  33700. [
  33701. {
  33702. name: "Humanoid",
  33703. height: math.unit(2.4, "meters")
  33704. },
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(6, "meters"),
  33708. default: true
  33709. },
  33710. {
  33711. name: "Largest",
  33712. height: math.unit(55, "meters")
  33713. },
  33714. ]
  33715. ))
  33716. characterMakers.push(() => makeCharacter(
  33717. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33718. {
  33719. front: {
  33720. height: math.unit(8 + 4/12, "feet"),
  33721. weight: math.unit(535, "lb"),
  33722. name: "Front",
  33723. image: {
  33724. source: "./media/characters/beh'kah-bolger/front.svg",
  33725. extra: 1660/1603,
  33726. bottom: 37/1697
  33727. }
  33728. },
  33729. },
  33730. [
  33731. {
  33732. name: "Normal",
  33733. height: math.unit(8 + 4/12, "feet"),
  33734. default: true
  33735. },
  33736. {
  33737. name: "Kaiju",
  33738. height: math.unit(250, "feet")
  33739. },
  33740. {
  33741. name: "Still Growing",
  33742. height: math.unit(10, "miles")
  33743. },
  33744. {
  33745. name: "Continental",
  33746. height: math.unit(5000, "miles")
  33747. },
  33748. {
  33749. name: "Final Form",
  33750. height: math.unit(2500000, "miles")
  33751. },
  33752. ]
  33753. ))
  33754. characterMakers.push(() => makeCharacter(
  33755. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33756. {
  33757. front: {
  33758. height: math.unit(7 + 2/12, "feet"),
  33759. weight: math.unit(230, "kg"),
  33760. name: "Front",
  33761. image: {
  33762. source: "./media/characters/tatyana-milewska/front.svg",
  33763. extra: 1199/1150,
  33764. bottom: 86/1285
  33765. }
  33766. },
  33767. },
  33768. [
  33769. {
  33770. name: "Normal",
  33771. height: math.unit(7 + 2/12, "feet"),
  33772. default: true
  33773. },
  33774. {
  33775. name: "Big",
  33776. height: math.unit(12, "feet")
  33777. },
  33778. {
  33779. name: "Minimacro",
  33780. height: math.unit(20, "feet")
  33781. },
  33782. {
  33783. name: "Macro",
  33784. height: math.unit(120, "feet")
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33790. {
  33791. front: {
  33792. height: math.unit(7 + 8/12, "feet"),
  33793. weight: math.unit(152, "kg"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/helen-arri/front.svg",
  33797. extra: 440/423,
  33798. bottom: 14/454
  33799. }
  33800. },
  33801. back: {
  33802. height: math.unit(7 + 8/12, "feet"),
  33803. weight: math.unit(152, "kg"),
  33804. name: "Back",
  33805. image: {
  33806. source: "./media/characters/helen-arri/back.svg",
  33807. extra: 443/426,
  33808. bottom: 8/451
  33809. }
  33810. },
  33811. },
  33812. [
  33813. {
  33814. name: "Normal",
  33815. height: math.unit(7 + 8/12, "feet"),
  33816. default: true
  33817. },
  33818. {
  33819. name: "Big",
  33820. height: math.unit(14, "feet")
  33821. },
  33822. {
  33823. name: "Minimacro",
  33824. height: math.unit(24, "feet")
  33825. },
  33826. {
  33827. name: "Macro",
  33828. height: math.unit(140, "feet")
  33829. },
  33830. ]
  33831. ))
  33832. characterMakers.push(() => makeCharacter(
  33833. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33834. {
  33835. front: {
  33836. height: math.unit(6, "meters"),
  33837. name: "Front",
  33838. image: {
  33839. source: "./media/characters/ehanu-rehu/front.svg",
  33840. extra: 1800/1800,
  33841. bottom: 59/1859
  33842. }
  33843. },
  33844. },
  33845. [
  33846. {
  33847. name: "Normal",
  33848. height: math.unit(6, "meters"),
  33849. default: true
  33850. },
  33851. ]
  33852. ))
  33853. characterMakers.push(() => makeCharacter(
  33854. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33855. {
  33856. front: {
  33857. height: math.unit(7 + 3/12, "feet"),
  33858. name: "Front",
  33859. image: {
  33860. source: "./media/characters/renholder/front.svg",
  33861. extra: 3096/2960,
  33862. bottom: 250/3346
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Normal Bat",
  33869. height: math.unit(7 + 3/12, "feet"),
  33870. default: true
  33871. },
  33872. {
  33873. name: "Slightly Tall Bat",
  33874. height: math.unit(100, "feet")
  33875. },
  33876. {
  33877. name: "Big Bat",
  33878. height: math.unit(1000, "feet")
  33879. },
  33880. {
  33881. name: "City-Sized Bat",
  33882. height: math.unit(200000, "feet")
  33883. },
  33884. {
  33885. name: "Bigger Bat",
  33886. height: math.unit(10000, "miles")
  33887. },
  33888. {
  33889. name: "Solar Sized Bat",
  33890. height: math.unit(100, "AU")
  33891. },
  33892. {
  33893. name: "Galactic Bat",
  33894. height: math.unit(200000, "lightyears")
  33895. },
  33896. {
  33897. name: "Universally Known Bat",
  33898. height: math.unit(1, "universe")
  33899. },
  33900. ]
  33901. ))
  33902. characterMakers.push(() => makeCharacter(
  33903. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33904. {
  33905. front: {
  33906. height: math.unit(6 + 11/12, "feet"),
  33907. weight: math.unit(250, "lb"),
  33908. name: "Front",
  33909. image: {
  33910. source: "./media/characters/cookiecat/front.svg",
  33911. extra: 893/827,
  33912. bottom: 14/907
  33913. }
  33914. },
  33915. },
  33916. [
  33917. {
  33918. name: "Micro",
  33919. height: math.unit(3, "inches")
  33920. },
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(6 + 11/12, "feet"),
  33924. default: true
  33925. },
  33926. {
  33927. name: "Macro",
  33928. height: math.unit(100, "feet")
  33929. },
  33930. {
  33931. name: "Macro+",
  33932. height: math.unit(404, "feet")
  33933. },
  33934. {
  33935. name: "Megamacro",
  33936. height: math.unit(165, "miles")
  33937. },
  33938. {
  33939. name: "Planetary",
  33940. height: math.unit(4600, "miles")
  33941. },
  33942. ]
  33943. ))
  33944. characterMakers.push(() => makeCharacter(
  33945. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33946. {
  33947. front: {
  33948. height: math.unit(10 + 3/12, "feet"),
  33949. weight: math.unit(1500, "lb"),
  33950. name: "Front",
  33951. image: {
  33952. source: "./media/characters/tux-kusanagi/front.svg",
  33953. extra: 944/840,
  33954. bottom: 39/983
  33955. }
  33956. },
  33957. back: {
  33958. height: math.unit(10 + 3/12, "feet"),
  33959. weight: math.unit(1500, "lb"),
  33960. name: "Back",
  33961. image: {
  33962. source: "./media/characters/tux-kusanagi/back.svg",
  33963. extra: 941/842,
  33964. bottom: 28/969
  33965. }
  33966. },
  33967. rump: {
  33968. height: math.unit(5.25, "feet"),
  33969. name: "Rump",
  33970. image: {
  33971. source: "./media/characters/tux-kusanagi/rump.svg"
  33972. }
  33973. },
  33974. beak: {
  33975. height: math.unit(1.54, "feet"),
  33976. name: "Beak",
  33977. image: {
  33978. source: "./media/characters/tux-kusanagi/beak.svg"
  33979. }
  33980. },
  33981. },
  33982. [
  33983. {
  33984. name: "Normal",
  33985. height: math.unit(10 + 3/12, "feet"),
  33986. default: true
  33987. },
  33988. ]
  33989. ))
  33990. characterMakers.push(() => makeCharacter(
  33991. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33992. {
  33993. front: {
  33994. height: math.unit(58, "feet"),
  33995. weight: math.unit(200, "tons"),
  33996. name: "Front",
  33997. image: {
  33998. source: "./media/characters/uzarmazari/front.svg",
  33999. extra: 1575/1455,
  34000. bottom: 152/1727
  34001. }
  34002. },
  34003. back: {
  34004. height: math.unit(58, "feet"),
  34005. weight: math.unit(200, "tons"),
  34006. name: "Back",
  34007. image: {
  34008. source: "./media/characters/uzarmazari/back.svg",
  34009. extra: 1585/1510,
  34010. bottom: 157/1742
  34011. }
  34012. },
  34013. head: {
  34014. height: math.unit(26, "feet"),
  34015. name: "Head",
  34016. image: {
  34017. source: "./media/characters/uzarmazari/head.svg"
  34018. }
  34019. },
  34020. },
  34021. [
  34022. {
  34023. name: "Normal",
  34024. height: math.unit(58, "feet"),
  34025. default: true
  34026. },
  34027. ]
  34028. ))
  34029. characterMakers.push(() => makeCharacter(
  34030. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34031. {
  34032. side: {
  34033. height: math.unit(15, "feet"),
  34034. name: "Side",
  34035. image: {
  34036. source: "./media/characters/akitu/side.svg",
  34037. extra: 1421/1321,
  34038. bottom: 157/1578
  34039. }
  34040. },
  34041. front: {
  34042. height: math.unit(15, "feet"),
  34043. name: "Front",
  34044. image: {
  34045. source: "./media/characters/akitu/front.svg",
  34046. extra: 1435/1326,
  34047. bottom: 232/1667
  34048. }
  34049. },
  34050. },
  34051. [
  34052. {
  34053. name: "Normal",
  34054. height: math.unit(15, "feet"),
  34055. default: true
  34056. },
  34057. ]
  34058. ))
  34059. characterMakers.push(() => makeCharacter(
  34060. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34061. {
  34062. front: {
  34063. height: math.unit(10 + 8/12, "feet"),
  34064. name: "Front",
  34065. image: {
  34066. source: "./media/characters/azalie-croixland/front.svg",
  34067. extra: 1972/1856,
  34068. bottom: 31/2003
  34069. }
  34070. },
  34071. },
  34072. [
  34073. {
  34074. name: "Original Height",
  34075. height: math.unit(5 + 4/12, "feet")
  34076. },
  34077. {
  34078. name: "Normal Height",
  34079. height: math.unit(10 + 8/12, "feet"),
  34080. default: true
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34086. {
  34087. side: {
  34088. height: math.unit(7 + 1/12, "feet"),
  34089. weight: math.unit(245, "lb"),
  34090. name: "Side",
  34091. image: {
  34092. source: "./media/characters/kavus-kazian/side.svg",
  34093. extra: 349/342,
  34094. bottom: 15/364
  34095. }
  34096. },
  34097. },
  34098. [
  34099. {
  34100. name: "Normal",
  34101. height: math.unit(7 + 1/12, "feet"),
  34102. default: true
  34103. },
  34104. ]
  34105. ))
  34106. characterMakers.push(() => makeCharacter(
  34107. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34108. {
  34109. normal: {
  34110. height: math.unit(5 + 11/12, "feet"),
  34111. name: "Normal",
  34112. image: {
  34113. source: "./media/characters/moonlight-rose/normal.svg",
  34114. extra: 1979/1835,
  34115. bottom: 14/1993
  34116. }
  34117. },
  34118. demon: {
  34119. height: math.unit(5, "km"),
  34120. name: "Demon",
  34121. image: {
  34122. source: "./media/characters/moonlight-rose/demon.svg",
  34123. extra: 986/916,
  34124. bottom: 28/1014
  34125. }
  34126. },
  34127. },
  34128. [
  34129. {
  34130. name: "\"Natural\" height",
  34131. height: math.unit(5 + 11/12, "feet")
  34132. },
  34133. {
  34134. name: "Comfortable Size",
  34135. height: math.unit(40, "meters")
  34136. },
  34137. {
  34138. name: "Common Size",
  34139. height: math.unit(50, "km"),
  34140. default: true
  34141. },
  34142. {
  34143. name: "Demonic",
  34144. height: math.unit(1.24415e+21, "meters")
  34145. },
  34146. ]
  34147. ))
  34148. characterMakers.push(() => makeCharacter(
  34149. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34150. {
  34151. front: {
  34152. height: math.unit(16, "feet"),
  34153. weight: math.unit(610, "kg"),
  34154. name: "Front",
  34155. image: {
  34156. source: "./media/characters/huckle/front.svg",
  34157. extra: 1731/1625,
  34158. bottom: 33/1764
  34159. }
  34160. },
  34161. back: {
  34162. height: math.unit(16, "feet"),
  34163. weight: math.unit(610, "kg"),
  34164. name: "Back",
  34165. image: {
  34166. source: "./media/characters/huckle/back.svg",
  34167. extra: 1738/1651,
  34168. bottom: 37/1775
  34169. }
  34170. },
  34171. laughing: {
  34172. height: math.unit(3.75, "feet"),
  34173. name: "Laughing",
  34174. image: {
  34175. source: "./media/characters/huckle/laughing.svg"
  34176. }
  34177. },
  34178. angry: {
  34179. height: math.unit(4.15, "feet"),
  34180. name: "Angry",
  34181. image: {
  34182. source: "./media/characters/huckle/angry.svg"
  34183. }
  34184. },
  34185. },
  34186. [
  34187. {
  34188. name: "Normal",
  34189. height: math.unit(16, "feet"),
  34190. default: true
  34191. },
  34192. {
  34193. name: "Mini Macro",
  34194. height: math.unit(463, "feet")
  34195. },
  34196. {
  34197. name: "Macro",
  34198. height: math.unit(1680, "meters")
  34199. },
  34200. {
  34201. name: "Mega Macro",
  34202. height: math.unit(175, "km")
  34203. },
  34204. {
  34205. name: "Terra Macro",
  34206. height: math.unit(32, "gigameters")
  34207. },
  34208. {
  34209. name: "Multiverse+",
  34210. height: math.unit(2.56e23, "yottameters")
  34211. },
  34212. ]
  34213. ))
  34214. characterMakers.push(() => makeCharacter(
  34215. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34216. {
  34217. front: {
  34218. height: math.unit(6 + 9/12, "feet"),
  34219. weight: math.unit(280, "lb"),
  34220. name: "Front",
  34221. image: {
  34222. source: "./media/characters/candy/front.svg",
  34223. extra: 234/217,
  34224. bottom: 11/245
  34225. }
  34226. },
  34227. },
  34228. [
  34229. {
  34230. name: "Really Small",
  34231. height: math.unit(0.1, "nm")
  34232. },
  34233. {
  34234. name: "Micro",
  34235. height: math.unit(2, "inches")
  34236. },
  34237. {
  34238. name: "Normal",
  34239. height: math.unit(6 + 9/12, "feet"),
  34240. default: true
  34241. },
  34242. {
  34243. name: "Small Macro",
  34244. height: math.unit(69, "feet")
  34245. },
  34246. {
  34247. name: "Macro",
  34248. height: math.unit(160, "feet")
  34249. },
  34250. {
  34251. name: "Megamacro",
  34252. height: math.unit(22000, "miles")
  34253. },
  34254. {
  34255. name: "Gigamacro",
  34256. height: math.unit(50000, "miles")
  34257. },
  34258. ]
  34259. ))
  34260. characterMakers.push(() => makeCharacter(
  34261. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34262. {
  34263. front: {
  34264. height: math.unit(4, "feet"),
  34265. weight: math.unit(90, "lb"),
  34266. name: "Front",
  34267. image: {
  34268. source: "./media/characters/joey-mcdonald/front.svg",
  34269. extra: 1059/852,
  34270. bottom: 33/1092
  34271. }
  34272. },
  34273. back: {
  34274. height: math.unit(4, "feet"),
  34275. weight: math.unit(90, "lb"),
  34276. name: "Back",
  34277. image: {
  34278. source: "./media/characters/joey-mcdonald/back.svg",
  34279. extra: 1077/879,
  34280. bottom: 5/1082
  34281. }
  34282. },
  34283. },
  34284. [
  34285. {
  34286. name: "Normal",
  34287. height: math.unit(4, "feet"),
  34288. default: true
  34289. },
  34290. ]
  34291. ))
  34292. characterMakers.push(() => makeCharacter(
  34293. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34294. {
  34295. front: {
  34296. height: math.unit(12 + 6/12, "feet"),
  34297. name: "Front",
  34298. image: {
  34299. source: "./media/characters/kass-lockheed/front.svg",
  34300. extra: 354/343,
  34301. bottom: 9/363
  34302. }
  34303. },
  34304. back: {
  34305. height: math.unit(12 + 6/12, "feet"),
  34306. name: "Back",
  34307. image: {
  34308. source: "./media/characters/kass-lockheed/back.svg",
  34309. extra: 364/352,
  34310. bottom: 3/367
  34311. }
  34312. },
  34313. dick: {
  34314. height: math.unit(3.12, "feet"),
  34315. name: "Dick",
  34316. image: {
  34317. source: "./media/characters/kass-lockheed/dick.svg"
  34318. }
  34319. },
  34320. head: {
  34321. height: math.unit(2.6, "feet"),
  34322. name: "Head",
  34323. image: {
  34324. source: "./media/characters/kass-lockheed/head.svg"
  34325. }
  34326. },
  34327. bleh: {
  34328. height: math.unit(2.85, "feet"),
  34329. name: "Bleh",
  34330. image: {
  34331. source: "./media/characters/kass-lockheed/bleh.svg"
  34332. }
  34333. },
  34334. smug: {
  34335. height: math.unit(2.85, "feet"),
  34336. name: "Smug",
  34337. image: {
  34338. source: "./media/characters/kass-lockheed/smug.svg"
  34339. }
  34340. },
  34341. },
  34342. [
  34343. {
  34344. name: "Normal",
  34345. height: math.unit(12 + 6/12, "feet"),
  34346. default: true
  34347. },
  34348. ]
  34349. ))
  34350. characterMakers.push(() => makeCharacter(
  34351. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34352. {
  34353. front: {
  34354. height: math.unit(6 + 2/12, "feet"),
  34355. name: "Front",
  34356. image: {
  34357. source: "./media/characters/taylor/front.svg",
  34358. extra: 639/495,
  34359. bottom: 12/651
  34360. }
  34361. },
  34362. },
  34363. [
  34364. {
  34365. name: "Normal",
  34366. height: math.unit(6 + 2/12, "feet"),
  34367. default: true
  34368. },
  34369. {
  34370. name: "Big",
  34371. height: math.unit(15, "feet")
  34372. },
  34373. {
  34374. name: "Lorg",
  34375. height: math.unit(80, "feet")
  34376. },
  34377. {
  34378. name: "Too Lorg",
  34379. height: math.unit(120, "feet")
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34385. {
  34386. front: {
  34387. height: math.unit(15, "feet"),
  34388. name: "Front",
  34389. image: {
  34390. source: "./media/characters/kaizer/front.svg",
  34391. extra: 1612/1436,
  34392. bottom: 43/1655
  34393. }
  34394. },
  34395. },
  34396. [
  34397. {
  34398. name: "Normal",
  34399. height: math.unit(15, "feet"),
  34400. default: true
  34401. },
  34402. ]
  34403. ))
  34404. characterMakers.push(() => makeCharacter(
  34405. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34406. {
  34407. front: {
  34408. height: math.unit(2, "feet"),
  34409. weight: math.unit(30, "lb"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/sandy/front.svg",
  34413. extra: 1439/1307,
  34414. bottom: 194/1633
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(2, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34428. {
  34429. front: {
  34430. height: math.unit(3, "feet"),
  34431. name: "Front",
  34432. image: {
  34433. source: "./media/characters/mellvi/front.svg",
  34434. extra: 1831/1630,
  34435. bottom: 58/1889
  34436. }
  34437. },
  34438. },
  34439. [
  34440. {
  34441. name: "Normal",
  34442. height: math.unit(3, "feet"),
  34443. default: true
  34444. },
  34445. ]
  34446. ))
  34447. characterMakers.push(() => makeCharacter(
  34448. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34449. {
  34450. front: {
  34451. height: math.unit(5 + 11/12, "feet"),
  34452. weight: math.unit(200, "lb"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/shirou/front.svg",
  34456. extra: 2491/2383,
  34457. bottom: 189/2680
  34458. }
  34459. },
  34460. back: {
  34461. height: math.unit(5 + 11/12, "feet"),
  34462. weight: math.unit(200, "lb"),
  34463. name: "Back",
  34464. image: {
  34465. source: "./media/characters/shirou/back.svg",
  34466. extra: 2554/2450,
  34467. bottom: 76/2630
  34468. }
  34469. },
  34470. },
  34471. [
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(5 + 11/12, "feet"),
  34475. default: true
  34476. },
  34477. ]
  34478. ))
  34479. characterMakers.push(() => makeCharacter(
  34480. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34481. {
  34482. front: {
  34483. height: math.unit(6 + 3/12, "feet"),
  34484. weight: math.unit(177, "lb"),
  34485. name: "Front",
  34486. image: {
  34487. source: "./media/characters/noryu/front.svg",
  34488. extra: 973/885,
  34489. bottom: 10/983
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(6 + 3/12, "feet"),
  34497. default: true
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(5 + 6/12, "feet"),
  34506. weight: math.unit(170, "lb"),
  34507. name: "Front",
  34508. image: {
  34509. source: "./media/characters/mevolas-rubenido/front.svg",
  34510. extra: 2109/1901,
  34511. bottom: 96/2205
  34512. }
  34513. },
  34514. },
  34515. [
  34516. {
  34517. name: "Normal",
  34518. height: math.unit(5 + 6/12, "feet"),
  34519. default: true
  34520. },
  34521. ]
  34522. ))
  34523. characterMakers.push(() => makeCharacter(
  34524. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34525. {
  34526. front: {
  34527. height: math.unit(100, "feet"),
  34528. name: "Front",
  34529. image: {
  34530. source: "./media/characters/dee/front.svg",
  34531. extra: 2153/2036,
  34532. bottom: 59/2212
  34533. }
  34534. },
  34535. back: {
  34536. height: math.unit(100, "feet"),
  34537. name: "Back",
  34538. image: {
  34539. source: "./media/characters/dee/back.svg",
  34540. extra: 2183/2058,
  34541. bottom: 75/2258
  34542. }
  34543. },
  34544. foot: {
  34545. height: math.unit(19.43, "feet"),
  34546. name: "Foot",
  34547. image: {
  34548. source: "./media/characters/dee/foot.svg"
  34549. }
  34550. },
  34551. hoof: {
  34552. height: math.unit(20.6, "feet"),
  34553. name: "Hoof",
  34554. image: {
  34555. source: "./media/characters/dee/hoof.svg"
  34556. }
  34557. },
  34558. },
  34559. [
  34560. {
  34561. name: "Macro",
  34562. height: math.unit(100, "feet"),
  34563. default: true
  34564. },
  34565. ]
  34566. ))
  34567. characterMakers.push(() => makeCharacter(
  34568. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34569. {
  34570. front: {
  34571. height: math.unit(5 + 6/12, "feet"),
  34572. name: "Front",
  34573. image: {
  34574. source: "./media/characters/teh/front.svg",
  34575. extra: 1002/847,
  34576. bottom: 62/1064
  34577. }
  34578. },
  34579. },
  34580. [
  34581. {
  34582. name: "Normal",
  34583. height: math.unit(5 + 6/12, "feet"),
  34584. default: true
  34585. },
  34586. ]
  34587. ))
  34588. characterMakers.push(() => makeCharacter(
  34589. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34590. {
  34591. side: {
  34592. height: math.unit(6 + 1/12, "feet"),
  34593. weight: math.unit(204, "lb"),
  34594. name: "Side",
  34595. image: {
  34596. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34597. extra: 974/775,
  34598. bottom: 169/1143
  34599. }
  34600. },
  34601. sitting: {
  34602. height: math.unit(6 + 2/12, "feet"),
  34603. weight: math.unit(204, "lb"),
  34604. name: "Sitting",
  34605. image: {
  34606. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34607. extra: 1175/964,
  34608. bottom: 378/1553
  34609. }
  34610. },
  34611. },
  34612. [
  34613. {
  34614. name: "Normal",
  34615. height: math.unit(6 + 1/12, "feet"),
  34616. default: true
  34617. },
  34618. ]
  34619. ))
  34620. characterMakers.push(() => makeCharacter(
  34621. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34622. {
  34623. front: {
  34624. height: math.unit(6, "inches"),
  34625. name: "Front",
  34626. image: {
  34627. source: "./media/characters/tululi/front.svg",
  34628. extra: 1997/1876,
  34629. bottom: 20/2017
  34630. }
  34631. },
  34632. },
  34633. [
  34634. {
  34635. name: "Normal",
  34636. height: math.unit(6, "inches"),
  34637. default: true
  34638. },
  34639. ]
  34640. ))
  34641. characterMakers.push(() => makeCharacter(
  34642. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34643. {
  34644. front: {
  34645. height: math.unit(4 + 1/12, "feet"),
  34646. name: "Front",
  34647. image: {
  34648. source: "./media/characters/star/front.svg",
  34649. extra: 1493/1189,
  34650. bottom: 48/1541
  34651. }
  34652. },
  34653. },
  34654. [
  34655. {
  34656. name: "Normal",
  34657. height: math.unit(4 + 1/12, "feet"),
  34658. default: true
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34664. {
  34665. front: {
  34666. height: math.unit(6 + 3/12, "feet"),
  34667. name: "Front",
  34668. image: {
  34669. source: "./media/characters/comet/front.svg",
  34670. extra: 1681/1462,
  34671. bottom: 26/1707
  34672. }
  34673. },
  34674. },
  34675. [
  34676. {
  34677. name: "Normal",
  34678. height: math.unit(6 + 3/12, "feet"),
  34679. default: true
  34680. },
  34681. ]
  34682. ))
  34683. characterMakers.push(() => makeCharacter(
  34684. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34685. {
  34686. front: {
  34687. height: math.unit(950, "feet"),
  34688. name: "Front",
  34689. image: {
  34690. source: "./media/characters/vortex/front.svg",
  34691. extra: 1497/1434,
  34692. bottom: 56/1553
  34693. }
  34694. },
  34695. maw: {
  34696. height: math.unit(285, "feet"),
  34697. name: "Maw",
  34698. image: {
  34699. source: "./media/characters/vortex/maw.svg"
  34700. }
  34701. },
  34702. },
  34703. [
  34704. {
  34705. name: "Macro",
  34706. height: math.unit(950, "feet"),
  34707. default: true
  34708. },
  34709. ]
  34710. ))
  34711. characterMakers.push(() => makeCharacter(
  34712. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34713. {
  34714. front: {
  34715. height: math.unit(600, "feet"),
  34716. weight: math.unit(0.02, "grams"),
  34717. name: "Front",
  34718. image: {
  34719. source: "./media/characters/doodle/front.svg",
  34720. extra: 1578/1413,
  34721. bottom: 37/1615
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Macro",
  34728. height: math.unit(600, "feet"),
  34729. default: true
  34730. },
  34731. ]
  34732. ))
  34733. characterMakers.push(() => makeCharacter(
  34734. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34735. {
  34736. front: {
  34737. height: math.unit(6 + 6/12, "feet"),
  34738. name: "Front",
  34739. image: {
  34740. source: "./media/characters/jai/front.svg",
  34741. extra: 1645/1534,
  34742. bottom: 115/1760
  34743. }
  34744. },
  34745. },
  34746. [
  34747. {
  34748. name: "Normal",
  34749. height: math.unit(6 + 6/12, "feet"),
  34750. default: true
  34751. },
  34752. ]
  34753. ))
  34754. characterMakers.push(() => makeCharacter(
  34755. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34756. {
  34757. front: {
  34758. height: math.unit(6 + 8/12, "feet"),
  34759. name: "Front",
  34760. image: {
  34761. source: "./media/characters/pixel/front.svg",
  34762. extra: 1900/1735,
  34763. bottom: 63/1963
  34764. }
  34765. },
  34766. },
  34767. [
  34768. {
  34769. name: "Normal",
  34770. height: math.unit(6 + 8/12, "feet"),
  34771. default: true
  34772. },
  34773. ]
  34774. ))
  34775. characterMakers.push(() => makeCharacter(
  34776. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34777. {
  34778. front: {
  34779. height: math.unit(4 + 11/12, "feet"),
  34780. weight: math.unit(111, "lb"),
  34781. name: "Front",
  34782. image: {
  34783. source: "./media/characters/rhett/front.svg",
  34784. extra: 1682/1586,
  34785. bottom: 92/1774
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "Mini",
  34792. height: math.unit(1 + 1/12, "feet")
  34793. },
  34794. {
  34795. name: "Normal",
  34796. height: math.unit(4 + 11/12, "feet"),
  34797. default: true
  34798. },
  34799. ]
  34800. ))
  34801. characterMakers.push(() => makeCharacter(
  34802. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34803. {
  34804. front: {
  34805. height: math.unit(3 + 3/12, "feet"),
  34806. name: "Front",
  34807. image: {
  34808. source: "./media/characters/penny/front.svg",
  34809. extra: 1406/1311,
  34810. bottom: 26/1432
  34811. }
  34812. },
  34813. },
  34814. [
  34815. {
  34816. name: "Normal",
  34817. height: math.unit(3 + 3/12, "feet"),
  34818. default: true
  34819. },
  34820. ]
  34821. ))
  34822. characterMakers.push(() => makeCharacter(
  34823. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34824. {
  34825. front: {
  34826. height: math.unit(4 + 11/12, "feet"),
  34827. name: "Front",
  34828. image: {
  34829. source: "./media/characters/monty/front.svg",
  34830. extra: 1479/1209,
  34831. bottom: 0/1479
  34832. }
  34833. },
  34834. },
  34835. [
  34836. {
  34837. name: "Normal",
  34838. height: math.unit(4 + 11/12, "feet"),
  34839. default: true
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34845. {
  34846. front: {
  34847. height: math.unit(8 + 4/12, "feet"),
  34848. name: "Front",
  34849. image: {
  34850. source: "./media/characters/sterling/front.svg",
  34851. extra: 1420/1236,
  34852. bottom: 27/1447
  34853. }
  34854. },
  34855. },
  34856. [
  34857. {
  34858. name: "Normal",
  34859. height: math.unit(8 + 4/12, "feet"),
  34860. default: true
  34861. },
  34862. ]
  34863. ))
  34864. characterMakers.push(() => makeCharacter(
  34865. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34866. {
  34867. front: {
  34868. height: math.unit(15, "feet"),
  34869. name: "Front",
  34870. image: {
  34871. source: "./media/characters/marble/front.svg",
  34872. extra: 973/937,
  34873. bottom: 32/1005
  34874. }
  34875. },
  34876. },
  34877. [
  34878. {
  34879. name: "Normal",
  34880. height: math.unit(15, "feet"),
  34881. default: true
  34882. },
  34883. ]
  34884. ))
  34885. characterMakers.push(() => makeCharacter(
  34886. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34887. {
  34888. front: {
  34889. height: math.unit(3, "inches"),
  34890. name: "Front",
  34891. image: {
  34892. source: "./media/characters/powder/front.svg",
  34893. extra: 1504/1334,
  34894. bottom: 518/2022
  34895. }
  34896. },
  34897. },
  34898. [
  34899. {
  34900. name: "Normal",
  34901. height: math.unit(3, "inches"),
  34902. default: true
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34908. {
  34909. front: {
  34910. height: math.unit(4 + 5/12, "feet"),
  34911. name: "Front",
  34912. image: {
  34913. source: "./media/characters/joey-raccoon/front.svg",
  34914. extra: 1273/1197,
  34915. bottom: 0/1273
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Normal",
  34922. height: math.unit(4 + 5/12, "feet"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34929. {
  34930. front: {
  34931. height: math.unit(8 + 4/12, "feet"),
  34932. name: "Front",
  34933. image: {
  34934. source: "./media/characters/vick/front.svg",
  34935. extra: 2187/2118,
  34936. bottom: 47/2234
  34937. }
  34938. },
  34939. },
  34940. [
  34941. {
  34942. name: "Normal",
  34943. height: math.unit(8 + 4/12, "feet"),
  34944. default: true
  34945. },
  34946. ]
  34947. ))
  34948. characterMakers.push(() => makeCharacter(
  34949. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34950. {
  34951. front: {
  34952. height: math.unit(5 + 5/12, "feet"),
  34953. name: "Front",
  34954. image: {
  34955. source: "./media/characters/mitsy/front.svg",
  34956. extra: 1842/1695,
  34957. bottom: 0/1842
  34958. }
  34959. },
  34960. },
  34961. [
  34962. {
  34963. name: "Normal",
  34964. height: math.unit(5 + 5/12, "feet"),
  34965. default: true
  34966. },
  34967. ]
  34968. ))
  34969. characterMakers.push(() => makeCharacter(
  34970. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34971. {
  34972. front: {
  34973. height: math.unit(6 + 3/12, "feet"),
  34974. name: "Front",
  34975. image: {
  34976. source: "./media/characters/silvy/front.svg",
  34977. extra: 1995/1836,
  34978. bottom: 225/2220
  34979. }
  34980. },
  34981. },
  34982. [
  34983. {
  34984. name: "Normal",
  34985. height: math.unit(6 + 3/12, "feet"),
  34986. default: true
  34987. },
  34988. ]
  34989. ))
  34990. characterMakers.push(() => makeCharacter(
  34991. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34992. {
  34993. front: {
  34994. height: math.unit(3 + 8/12, "feet"),
  34995. name: "Front",
  34996. image: {
  34997. source: "./media/characters/rodney/front.svg",
  34998. extra: 1956/1747,
  34999. bottom: 31/1987
  35000. }
  35001. },
  35002. frontDressed: {
  35003. height: math.unit(2.9, "feet"),
  35004. name: "Front (Dressed)",
  35005. image: {
  35006. source: "./media/characters/rodney/front-dressed.svg",
  35007. extra: 1382/1241,
  35008. bottom: 385/1767
  35009. }
  35010. },
  35011. },
  35012. [
  35013. {
  35014. name: "Normal",
  35015. height: math.unit(3 + 8/12, "feet"),
  35016. default: true
  35017. },
  35018. ]
  35019. ))
  35020. characterMakers.push(() => makeCharacter(
  35021. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35022. {
  35023. front: {
  35024. height: math.unit(5 + 9/12, "feet"),
  35025. weight: math.unit(194, "lbs"),
  35026. name: "Front",
  35027. image: {
  35028. source: "./media/characters/zakail-sudekai/front.svg",
  35029. extra: 2696/2533,
  35030. bottom: 248/2944
  35031. }
  35032. },
  35033. maw: {
  35034. height: math.unit(1.35, "feet"),
  35035. name: "Maw",
  35036. image: {
  35037. source: "./media/characters/zakail-sudekai/maw.svg"
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(5 + 9/12, "feet"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(8 + 4/12, "feet"),
  35054. weight: math.unit(1200, "lb"),
  35055. name: "Front",
  35056. image: {
  35057. source: "./media/characters/eleanor/front.svg",
  35058. extra: 1226/1192,
  35059. bottom: 52/1278
  35060. }
  35061. },
  35062. back: {
  35063. height: math.unit(8 + 4/12, "feet"),
  35064. weight: math.unit(1200, "lb"),
  35065. name: "Back",
  35066. image: {
  35067. source: "./media/characters/eleanor/back.svg",
  35068. extra: 1242/1184,
  35069. bottom: 60/1302
  35070. }
  35071. },
  35072. head: {
  35073. height: math.unit(2.62, "feet"),
  35074. name: "Head",
  35075. image: {
  35076. source: "./media/characters/eleanor/head.svg"
  35077. }
  35078. },
  35079. },
  35080. [
  35081. {
  35082. name: "Normal",
  35083. height: math.unit(8 + 4/12, "feet"),
  35084. default: true
  35085. },
  35086. ]
  35087. ))
  35088. characterMakers.push(() => makeCharacter(
  35089. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35090. {
  35091. front: {
  35092. height: math.unit(8 + 4/12, "feet"),
  35093. weight: math.unit(750, "lb"),
  35094. name: "Front",
  35095. image: {
  35096. source: "./media/characters/tanya/front.svg",
  35097. extra: 1749/1615,
  35098. bottom: 33/1782
  35099. }
  35100. },
  35101. },
  35102. [
  35103. {
  35104. name: "Normal",
  35105. height: math.unit(8 + 4/12, "feet"),
  35106. default: true
  35107. },
  35108. ]
  35109. ))
  35110. characterMakers.push(() => makeCharacter(
  35111. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35112. {
  35113. front: {
  35114. height: math.unit(5, "feet"),
  35115. weight: math.unit(225, "lb"),
  35116. name: "Front",
  35117. image: {
  35118. source: "./media/characters/cindy/front.svg",
  35119. extra: 1320/1250,
  35120. bottom: 42/1362
  35121. }
  35122. },
  35123. frontDressed: {
  35124. height: math.unit(5, "feet"),
  35125. weight: math.unit(225, "lb"),
  35126. name: "Front (Dressed)",
  35127. image: {
  35128. source: "./media/characters/cindy/front-dressed.svg",
  35129. extra: 1320/1250,
  35130. bottom: 42/1362
  35131. }
  35132. },
  35133. back: {
  35134. height: math.unit(5, "feet"),
  35135. weight: math.unit(225, "lb"),
  35136. name: "Back",
  35137. image: {
  35138. source: "./media/characters/cindy/back.svg",
  35139. extra: 1384/1346,
  35140. bottom: 14/1398
  35141. }
  35142. },
  35143. },
  35144. [
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(5, "feet"),
  35148. default: true
  35149. },
  35150. ]
  35151. ))
  35152. characterMakers.push(() => makeCharacter(
  35153. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35154. {
  35155. front: {
  35156. height: math.unit(6 + 9/12, "feet"),
  35157. weight: math.unit(440, "lb"),
  35158. name: "Front",
  35159. image: {
  35160. source: "./media/characters/wilbur-owen/front.svg",
  35161. extra: 1575/1448,
  35162. bottom: 72/1647
  35163. }
  35164. },
  35165. back: {
  35166. height: math.unit(6 + 9/12, "feet"),
  35167. weight: math.unit(440, "lb"),
  35168. name: "Back",
  35169. image: {
  35170. source: "./media/characters/wilbur-owen/back.svg",
  35171. extra: 1578/1445,
  35172. bottom: 36/1614
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(6 + 9/12, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(6 + 5/12, "feet"),
  35189. weight: math.unit(650, "lb"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/keegan/front.svg",
  35193. extra: 2387/2198,
  35194. bottom: 33/2420
  35195. }
  35196. },
  35197. side: {
  35198. height: math.unit(6 + 5/12, "feet"),
  35199. weight: math.unit(650, "lb"),
  35200. name: "Side",
  35201. image: {
  35202. source: "./media/characters/keegan/side.svg",
  35203. extra: 2390/2202,
  35204. bottom: 47/2437
  35205. }
  35206. },
  35207. back: {
  35208. height: math.unit(6 + 5/12, "feet"),
  35209. weight: math.unit(650, "lb"),
  35210. name: "Back",
  35211. image: {
  35212. source: "./media/characters/keegan/back.svg",
  35213. extra: 2418/2268,
  35214. bottom: 15/2433
  35215. }
  35216. },
  35217. frontSfw: {
  35218. height: math.unit(6 + 5/12, "feet"),
  35219. weight: math.unit(650, "lb"),
  35220. name: "Front (SFW)",
  35221. image: {
  35222. source: "./media/characters/keegan/front-sfw.svg",
  35223. extra: 2387/2198,
  35224. bottom: 33/2420
  35225. }
  35226. },
  35227. beans: {
  35228. height: math.unit(1.85, "feet"),
  35229. name: "Beans",
  35230. image: {
  35231. source: "./media/characters/keegan/beans.svg"
  35232. }
  35233. },
  35234. },
  35235. [
  35236. {
  35237. name: "Normal",
  35238. height: math.unit(6 + 5/12, "feet"),
  35239. default: true
  35240. },
  35241. ]
  35242. ))
  35243. characterMakers.push(() => makeCharacter(
  35244. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35245. {
  35246. front: {
  35247. height: math.unit(9, "feet"),
  35248. name: "Front",
  35249. image: {
  35250. source: "./media/characters/colton/front.svg",
  35251. extra: 1589/1326,
  35252. bottom: 139/1728
  35253. }
  35254. },
  35255. },
  35256. [
  35257. {
  35258. name: "Normal",
  35259. height: math.unit(9, "feet"),
  35260. default: true
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35266. {
  35267. front: {
  35268. height: math.unit(2 + 9/12, "feet"),
  35269. name: "Front",
  35270. image: {
  35271. source: "./media/characters/bora/front.svg",
  35272. extra: 1265/1250,
  35273. bottom: 24/1289
  35274. }
  35275. },
  35276. },
  35277. [
  35278. {
  35279. name: "Normal",
  35280. height: math.unit(2 + 9/12, "feet"),
  35281. default: true
  35282. },
  35283. ]
  35284. ))
  35285. characterMakers.push(() => makeCharacter(
  35286. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35287. {
  35288. front: {
  35289. height: math.unit(8, "feet"),
  35290. name: "Front",
  35291. image: {
  35292. source: "./media/characters/myu-myu/front.svg",
  35293. extra: 1949/1857,
  35294. bottom: 90/2039
  35295. }
  35296. },
  35297. },
  35298. [
  35299. {
  35300. name: "Normal",
  35301. height: math.unit(8, "feet"),
  35302. default: true
  35303. },
  35304. {
  35305. name: "Big",
  35306. height: math.unit(15, "feet")
  35307. },
  35308. {
  35309. name: "BIG",
  35310. height: math.unit(25, "feet")
  35311. },
  35312. ]
  35313. ))
  35314. characterMakers.push(() => makeCharacter(
  35315. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35316. {
  35317. side: {
  35318. height: math.unit(7 + 5/12, "feet"),
  35319. weight: math.unit(2800, "lb"),
  35320. name: "Side",
  35321. image: {
  35322. source: "./media/characters/haloren/side.svg",
  35323. extra: 1793/409,
  35324. bottom: 59/1852
  35325. }
  35326. },
  35327. frontPaw: {
  35328. height: math.unit(2.36, "feet"),
  35329. name: "Front paw",
  35330. image: {
  35331. source: "./media/characters/haloren/front-paw.svg"
  35332. }
  35333. },
  35334. hindPaw: {
  35335. height: math.unit(3.18, "feet"),
  35336. name: "Hind paw",
  35337. image: {
  35338. source: "./media/characters/haloren/hind-paw.svg"
  35339. }
  35340. },
  35341. maw: {
  35342. height: math.unit(5.05, "feet"),
  35343. name: "Maw",
  35344. image: {
  35345. source: "./media/characters/haloren/maw.svg"
  35346. }
  35347. },
  35348. dick: {
  35349. height: math.unit(2.90, "feet"),
  35350. name: "Dick",
  35351. image: {
  35352. source: "./media/characters/haloren/dick.svg"
  35353. }
  35354. },
  35355. },
  35356. [
  35357. {
  35358. name: "Normal",
  35359. height: math.unit(7 + 5/12, "feet"),
  35360. default: true
  35361. },
  35362. {
  35363. name: "Enhanced",
  35364. height: math.unit(14 + 3/12, "feet")
  35365. },
  35366. ]
  35367. ))
  35368. characterMakers.push(() => makeCharacter(
  35369. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35370. {
  35371. front: {
  35372. height: math.unit(171, "cm"),
  35373. name: "Front",
  35374. image: {
  35375. source: "./media/characters/kimmy/front.svg",
  35376. extra: 1491/1435,
  35377. bottom: 53/1544
  35378. }
  35379. },
  35380. },
  35381. [
  35382. {
  35383. name: "Small",
  35384. height: math.unit(9, "cm")
  35385. },
  35386. {
  35387. name: "Normal",
  35388. height: math.unit(171, "cm"),
  35389. default: true
  35390. },
  35391. ]
  35392. ))
  35393. characterMakers.push(() => makeCharacter(
  35394. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35395. {
  35396. front: {
  35397. height: math.unit(8, "feet"),
  35398. weight: math.unit(300, "lb"),
  35399. name: "Front",
  35400. image: {
  35401. source: "./media/characters/galeboomer/front.svg",
  35402. extra: 4651/4415,
  35403. bottom: 162/4813
  35404. }
  35405. },
  35406. back: {
  35407. height: math.unit(8, "feet"),
  35408. weight: math.unit(300, "lb"),
  35409. name: "Back",
  35410. image: {
  35411. source: "./media/characters/galeboomer/back.svg",
  35412. extra: 4544/4314,
  35413. bottom: 16/4560
  35414. }
  35415. },
  35416. frontAlt: {
  35417. height: math.unit(8, "feet"),
  35418. weight: math.unit(300, "lb"),
  35419. name: "Front (Alt)",
  35420. image: {
  35421. source: "./media/characters/galeboomer/front-alt.svg",
  35422. extra: 4458/4228,
  35423. bottom: 68/4526
  35424. }
  35425. },
  35426. maw: {
  35427. height: math.unit(1.2, "feet"),
  35428. name: "Maw",
  35429. image: {
  35430. source: "./media/characters/galeboomer/maw.svg"
  35431. }
  35432. },
  35433. },
  35434. [
  35435. {
  35436. name: "Normal",
  35437. height: math.unit(8, "feet"),
  35438. default: true
  35439. },
  35440. ]
  35441. ))
  35442. characterMakers.push(() => makeCharacter(
  35443. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35444. {
  35445. front: {
  35446. height: math.unit(5 + 9/12, "feet"),
  35447. weight: math.unit(120, "lb"),
  35448. name: "Front",
  35449. image: {
  35450. source: "./media/characters/chyr/front.svg",
  35451. extra: 1323/1254,
  35452. bottom: 63/1386
  35453. }
  35454. },
  35455. back: {
  35456. height: math.unit(5 + 9/12, "feet"),
  35457. weight: math.unit(120, "lb"),
  35458. name: "Back",
  35459. image: {
  35460. source: "./media/characters/chyr/back.svg",
  35461. extra: 1323/1252,
  35462. bottom: 48/1371
  35463. }
  35464. },
  35465. },
  35466. [
  35467. {
  35468. name: "Normal",
  35469. height: math.unit(5 + 9/12, "feet"),
  35470. default: true
  35471. },
  35472. ]
  35473. ))
  35474. characterMakers.push(() => makeCharacter(
  35475. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35476. {
  35477. front: {
  35478. height: math.unit(7, "feet"),
  35479. weight: math.unit(310, "lb"),
  35480. name: "Front",
  35481. image: {
  35482. source: "./media/characters/solarus/front.svg",
  35483. extra: 2415/2021,
  35484. bottom: 103/2518
  35485. }
  35486. },
  35487. back: {
  35488. height: math.unit(7, "feet"),
  35489. weight: math.unit(310, "lb"),
  35490. name: "Back",
  35491. image: {
  35492. source: "./media/characters/solarus/back.svg",
  35493. extra: 2463/2089,
  35494. bottom: 79/2542
  35495. }
  35496. },
  35497. },
  35498. [
  35499. {
  35500. name: "Normal",
  35501. height: math.unit(7, "feet"),
  35502. default: true
  35503. },
  35504. ]
  35505. ))
  35506. characterMakers.push(() => makeCharacter(
  35507. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35508. {
  35509. front: {
  35510. height: math.unit(16, "feet"),
  35511. name: "Front",
  35512. image: {
  35513. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35514. extra: 1844/1780,
  35515. bottom: 58/1902
  35516. }
  35517. },
  35518. },
  35519. [
  35520. {
  35521. name: "Normal",
  35522. height: math.unit(16, "feet"),
  35523. default: true
  35524. },
  35525. ]
  35526. ))
  35527. characterMakers.push(() => makeCharacter(
  35528. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35529. {
  35530. front: {
  35531. height: math.unit(11 + 6/12, "feet"),
  35532. weight: math.unit(1366, "lb"),
  35533. name: "Front",
  35534. image: {
  35535. source: "./media/characters/lexor/front.svg",
  35536. extra: 1560/1481,
  35537. bottom: 211/1771
  35538. }
  35539. },
  35540. back: {
  35541. height: math.unit(11 + 6/12, "feet"),
  35542. weight: math.unit(1366, "lb"),
  35543. name: "Back",
  35544. image: {
  35545. source: "./media/characters/lexor/back.svg",
  35546. extra: 1614/1533,
  35547. bottom: 76/1690
  35548. }
  35549. },
  35550. maw: {
  35551. height: math.unit(3, "feet"),
  35552. name: "Maw",
  35553. image: {
  35554. source: "./media/characters/lexor/maw.svg"
  35555. }
  35556. },
  35557. dick: {
  35558. height: math.unit(2.59, "feet"),
  35559. name: "Dick",
  35560. image: {
  35561. source: "./media/characters/lexor/dick.svg"
  35562. }
  35563. },
  35564. },
  35565. [
  35566. {
  35567. name: "Normal",
  35568. height: math.unit(11 + 6/12, "feet"),
  35569. default: true
  35570. },
  35571. ]
  35572. ))
  35573. characterMakers.push(() => makeCharacter(
  35574. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35575. {
  35576. front: {
  35577. height: math.unit(5 + 8/12, "feet"),
  35578. name: "Front",
  35579. image: {
  35580. source: "./media/characters/magnum/front.svg",
  35581. extra: 942/855,
  35582. bottom: 26/968
  35583. }
  35584. },
  35585. },
  35586. [
  35587. {
  35588. name: "Normal",
  35589. height: math.unit(5 + 8/12, "feet"),
  35590. default: true
  35591. },
  35592. ]
  35593. ))
  35594. characterMakers.push(() => makeCharacter(
  35595. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35596. {
  35597. front: {
  35598. height: math.unit(18 + 4/12, "feet"),
  35599. weight: math.unit(1500, "kg"),
  35600. name: "Front",
  35601. image: {
  35602. source: "./media/characters/solas-sharpsman/front.svg",
  35603. extra: 1698/1589,
  35604. bottom: 0/1698
  35605. }
  35606. },
  35607. },
  35608. [
  35609. {
  35610. name: "Normal",
  35611. height: math.unit(18 + 4/12, "feet"),
  35612. default: true
  35613. },
  35614. ]
  35615. ))
  35616. characterMakers.push(() => makeCharacter(
  35617. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35618. {
  35619. front: {
  35620. height: math.unit(5 + 5/12, "feet"),
  35621. weight: math.unit(180, "lb"),
  35622. name: "Front",
  35623. image: {
  35624. source: "./media/characters/october/front.svg",
  35625. extra: 1800/1650,
  35626. bottom: 0/1800
  35627. }
  35628. },
  35629. frontNsfw: {
  35630. height: math.unit(5 + 5/12, "feet"),
  35631. weight: math.unit(180, "lb"),
  35632. name: "Front (NSFW)",
  35633. image: {
  35634. source: "./media/characters/october/front-nsfw.svg",
  35635. extra: 1392/1307,
  35636. bottom: 42/1434
  35637. }
  35638. },
  35639. },
  35640. [
  35641. {
  35642. name: "Normal",
  35643. height: math.unit(5 + 5/12, "feet"),
  35644. default: true
  35645. },
  35646. ]
  35647. ))
  35648. characterMakers.push(() => makeCharacter(
  35649. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35650. {
  35651. front: {
  35652. height: math.unit(8 + 6/12, "feet"),
  35653. name: "Front",
  35654. image: {
  35655. source: "./media/characters/essynkardi/front.svg",
  35656. extra: 1914/1846,
  35657. bottom: 22/1936
  35658. }
  35659. },
  35660. },
  35661. [
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(8 + 6/12, "feet"),
  35665. default: true
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(6 + 6/12, "feet"),
  35674. weight: math.unit(7, "lb"),
  35675. name: "Front",
  35676. image: {
  35677. source: "./media/characters/icky/front.svg",
  35678. extra: 813/782,
  35679. bottom: 66/879
  35680. }
  35681. },
  35682. back: {
  35683. height: math.unit(6 + 6/12, "feet"),
  35684. weight: math.unit(7, "lb"),
  35685. name: "Back",
  35686. image: {
  35687. source: "./media/characters/icky/back.svg",
  35688. extra: 754/735,
  35689. bottom: 56/810
  35690. }
  35691. },
  35692. },
  35693. [
  35694. {
  35695. name: "Normal",
  35696. height: math.unit(6 + 6/12, "feet"),
  35697. default: true
  35698. },
  35699. ]
  35700. ))
  35701. characterMakers.push(() => makeCharacter(
  35702. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35703. {
  35704. front: {
  35705. height: math.unit(15, "feet"),
  35706. name: "Front",
  35707. image: {
  35708. source: "./media/characters/rojas/front.svg",
  35709. extra: 1462/1408,
  35710. bottom: 95/1557
  35711. }
  35712. },
  35713. back: {
  35714. height: math.unit(15, "feet"),
  35715. name: "Back",
  35716. image: {
  35717. source: "./media/characters/rojas/back.svg",
  35718. extra: 1023/954,
  35719. bottom: 28/1051
  35720. }
  35721. },
  35722. },
  35723. [
  35724. {
  35725. name: "Normal",
  35726. height: math.unit(15, "feet"),
  35727. default: true
  35728. },
  35729. ]
  35730. ))
  35731. characterMakers.push(() => makeCharacter(
  35732. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35733. {
  35734. frontHuman: {
  35735. height: math.unit(5 + 7/12, "feet"),
  35736. name: "Front (Human)",
  35737. image: {
  35738. source: "./media/characters/alek-dryagan/front-human.svg",
  35739. extra: 1687/1667,
  35740. bottom: 69/1756
  35741. }
  35742. },
  35743. backHuman: {
  35744. height: math.unit(5 + 7/12, "feet"),
  35745. name: "Back (Human)",
  35746. image: {
  35747. source: "./media/characters/alek-dryagan/back-human.svg",
  35748. extra: 1670/1649,
  35749. bottom: 65/1735
  35750. }
  35751. },
  35752. frontDemi: {
  35753. height: math.unit(65, "feet"),
  35754. name: "Front (Demi)",
  35755. image: {
  35756. source: "./media/characters/alek-dryagan/front-demi.svg",
  35757. extra: 1669/1642,
  35758. bottom: 49/1718
  35759. }
  35760. },
  35761. backDemi: {
  35762. height: math.unit(65, "feet"),
  35763. name: "Back (Demi)",
  35764. image: {
  35765. source: "./media/characters/alek-dryagan/back-demi.svg",
  35766. extra: 1658/1637,
  35767. bottom: 40/1698
  35768. }
  35769. },
  35770. mawHuman: {
  35771. height: math.unit(0.3, "feet"),
  35772. name: "Maw (Human)",
  35773. image: {
  35774. source: "./media/characters/alek-dryagan/maw-human.svg"
  35775. }
  35776. },
  35777. mawDemi: {
  35778. height: math.unit(3.8, "feet"),
  35779. name: "Maw (Demi)",
  35780. image: {
  35781. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35782. }
  35783. },
  35784. },
  35785. [
  35786. {
  35787. name: "Normal",
  35788. height: math.unit(5 + 7/12, "feet"),
  35789. default: true
  35790. },
  35791. ]
  35792. ))
  35793. characterMakers.push(() => makeCharacter(
  35794. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35795. {
  35796. frontHuman: {
  35797. height: math.unit(5 + 2/12, "feet"),
  35798. name: "Front (Human)",
  35799. image: {
  35800. source: "./media/characters/gen/front-human.svg",
  35801. extra: 1627/1538,
  35802. bottom: 71/1698
  35803. }
  35804. },
  35805. backHuman: {
  35806. height: math.unit(5 + 2/12, "feet"),
  35807. name: "Back (Human)",
  35808. image: {
  35809. source: "./media/characters/gen/back-human.svg",
  35810. extra: 1638/1548,
  35811. bottom: 69/1707
  35812. }
  35813. },
  35814. frontDemi: {
  35815. height: math.unit(5 + 2/12, "feet"),
  35816. name: "Front (Demi)",
  35817. image: {
  35818. source: "./media/characters/gen/front-demi.svg",
  35819. extra: 1627/1538,
  35820. bottom: 71/1698
  35821. }
  35822. },
  35823. backDemi: {
  35824. height: math.unit(5 + 2/12, "feet"),
  35825. name: "Back (Demi)",
  35826. image: {
  35827. source: "./media/characters/gen/back-demi.svg",
  35828. extra: 1638/1548,
  35829. bottom: 69/1707
  35830. }
  35831. },
  35832. },
  35833. [
  35834. {
  35835. name: "Normal",
  35836. height: math.unit(5 + 2/12, "feet"),
  35837. default: true
  35838. },
  35839. ]
  35840. ))
  35841. characterMakers.push(() => makeCharacter(
  35842. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35843. {
  35844. frontImp: {
  35845. height: math.unit(1 + 11/12, "feet"),
  35846. name: "Front (Imp)",
  35847. image: {
  35848. source: "./media/characters/max-kobold/front-imp.svg",
  35849. extra: 1238/1134,
  35850. bottom: 81/1319
  35851. }
  35852. },
  35853. backImp: {
  35854. height: math.unit(1 + 11/12, "feet"),
  35855. name: "Back (Imp)",
  35856. image: {
  35857. source: "./media/characters/max-kobold/back-imp.svg",
  35858. extra: 1334/1175,
  35859. bottom: 34/1368
  35860. }
  35861. },
  35862. frontDemi: {
  35863. height: math.unit(5 + 9/12, "feet"),
  35864. name: "Front (Demi)",
  35865. image: {
  35866. source: "./media/characters/max-kobold/front-demi.svg",
  35867. extra: 1715/1685,
  35868. bottom: 54/1769
  35869. }
  35870. },
  35871. backDemi: {
  35872. height: math.unit(5 + 9/12, "feet"),
  35873. name: "Back (Demi)",
  35874. image: {
  35875. source: "./media/characters/max-kobold/back-demi.svg",
  35876. extra: 1752/1729,
  35877. bottom: 41/1793
  35878. }
  35879. },
  35880. handImp: {
  35881. height: math.unit(0.45, "feet"),
  35882. name: "Hand (Imp)",
  35883. image: {
  35884. source: "./media/characters/max-kobold/hand.svg"
  35885. }
  35886. },
  35887. pawImp: {
  35888. height: math.unit(0.46, "feet"),
  35889. name: "Paw (Imp)",
  35890. image: {
  35891. source: "./media/characters/max-kobold/paw.svg"
  35892. }
  35893. },
  35894. handDemi: {
  35895. height: math.unit(0.80, "feet"),
  35896. name: "Hand (Demi)",
  35897. image: {
  35898. source: "./media/characters/max-kobold/hand.svg"
  35899. }
  35900. },
  35901. pawDemi: {
  35902. height: math.unit(1.1, "feet"),
  35903. name: "Paw (Demi)",
  35904. image: {
  35905. source: "./media/characters/max-kobold/paw.svg"
  35906. }
  35907. },
  35908. headImp: {
  35909. height: math.unit(1.33, "feet"),
  35910. name: "Head (Imp)",
  35911. image: {
  35912. source: "./media/characters/max-kobold/head-imp.svg"
  35913. }
  35914. },
  35915. mawImp: {
  35916. height: math.unit(0.75, "feet"),
  35917. name: "Maw (Imp)",
  35918. image: {
  35919. source: "./media/characters/max-kobold/maw-imp.svg"
  35920. }
  35921. },
  35922. mawDemi: {
  35923. height: math.unit(0.42, "feet"),
  35924. name: "Maw (Demi)",
  35925. image: {
  35926. source: "./media/characters/max-kobold/maw-demi.svg"
  35927. }
  35928. },
  35929. },
  35930. [
  35931. {
  35932. name: "Normal",
  35933. height: math.unit(1 + 11/12, "feet"),
  35934. default: true
  35935. },
  35936. ]
  35937. ))
  35938. characterMakers.push(() => makeCharacter(
  35939. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35940. {
  35941. front: {
  35942. height: math.unit(7 + 5/12, "feet"),
  35943. name: "Front",
  35944. image: {
  35945. source: "./media/characters/carbon/front.svg",
  35946. extra: 1754/1689,
  35947. bottom: 65/1819
  35948. }
  35949. },
  35950. back: {
  35951. height: math.unit(7 + 5/12, "feet"),
  35952. name: "Back",
  35953. image: {
  35954. source: "./media/characters/carbon/back.svg",
  35955. extra: 1762/1695,
  35956. bottom: 24/1786
  35957. }
  35958. },
  35959. frontGigantamax: {
  35960. height: math.unit(150, "feet"),
  35961. name: "Front (Gigantamax)",
  35962. image: {
  35963. source: "./media/characters/carbon/front-gigantamax.svg",
  35964. extra: 1826/1669,
  35965. bottom: 59/1885
  35966. }
  35967. },
  35968. backGigantamax: {
  35969. height: math.unit(150, "feet"),
  35970. name: "Back (Gigantamax)",
  35971. image: {
  35972. source: "./media/characters/carbon/back-gigantamax.svg",
  35973. extra: 1796/1653,
  35974. bottom: 53/1849
  35975. }
  35976. },
  35977. maw: {
  35978. height: math.unit(0.48, "feet"),
  35979. name: "Maw",
  35980. image: {
  35981. source: "./media/characters/carbon/maw.svg"
  35982. }
  35983. },
  35984. mawGigantamax: {
  35985. height: math.unit(7.5, "feet"),
  35986. name: "Maw (Gigantamax)",
  35987. image: {
  35988. source: "./media/characters/carbon/maw-gigantamax.svg"
  35989. }
  35990. },
  35991. },
  35992. [
  35993. {
  35994. name: "Normal",
  35995. height: math.unit(7 + 5/12, "feet"),
  35996. default: true
  35997. },
  35998. ]
  35999. ))
  36000. characterMakers.push(() => makeCharacter(
  36001. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36002. {
  36003. front: {
  36004. height: math.unit(6, "feet"),
  36005. name: "Front",
  36006. image: {
  36007. source: "./media/characters/maverick/front.svg",
  36008. extra: 1672/1661,
  36009. bottom: 85/1757
  36010. }
  36011. },
  36012. back: {
  36013. height: math.unit(6, "feet"),
  36014. name: "Back",
  36015. image: {
  36016. source: "./media/characters/maverick/back.svg",
  36017. extra: 1642/1631,
  36018. bottom: 38/1680
  36019. }
  36020. },
  36021. },
  36022. [
  36023. {
  36024. name: "Normal",
  36025. height: math.unit(6, "feet"),
  36026. default: true
  36027. },
  36028. ]
  36029. ))
  36030. characterMakers.push(() => makeCharacter(
  36031. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36032. {
  36033. front: {
  36034. height: math.unit(15, "feet"),
  36035. weight: math.unit(615, "lb"),
  36036. name: "Front",
  36037. image: {
  36038. source: "./media/characters/grockle/front.svg",
  36039. extra: 1535/1427,
  36040. bottom: 56/1591
  36041. }
  36042. },
  36043. },
  36044. [
  36045. {
  36046. name: "Normal",
  36047. height: math.unit(15, "feet"),
  36048. default: true
  36049. },
  36050. {
  36051. name: "Large",
  36052. height: math.unit(150, "feet")
  36053. },
  36054. {
  36055. name: "Macro",
  36056. height: math.unit(1876, "feet")
  36057. },
  36058. {
  36059. name: "Mega Macro",
  36060. height: math.unit(121940, "feet")
  36061. },
  36062. {
  36063. name: "Giga Macro",
  36064. height: math.unit(750, "km")
  36065. },
  36066. {
  36067. name: "Tera Macro",
  36068. height: math.unit(750000, "km")
  36069. },
  36070. {
  36071. name: "Galactic",
  36072. height: math.unit(1.4e5, "km")
  36073. },
  36074. {
  36075. name: "Godlike",
  36076. height: math.unit(9.8e280, "galaxies")
  36077. },
  36078. ]
  36079. ))
  36080. characterMakers.push(() => makeCharacter(
  36081. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36082. {
  36083. front: {
  36084. height: math.unit(11, "meters"),
  36085. weight: math.unit(20, "tonnes"),
  36086. name: "Front",
  36087. image: {
  36088. source: "./media/characters/alistair/front.svg",
  36089. extra: 1265/1009,
  36090. bottom: 93/1358
  36091. }
  36092. },
  36093. },
  36094. [
  36095. {
  36096. name: "Normal",
  36097. height: math.unit(11, "meters"),
  36098. default: true
  36099. },
  36100. ]
  36101. ))
  36102. characterMakers.push(() => makeCharacter(
  36103. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36104. {
  36105. front: {
  36106. height: math.unit(5 + 8/12, "feet"),
  36107. name: "Front",
  36108. image: {
  36109. source: "./media/characters/haruka/front.svg",
  36110. extra: 2012/1952,
  36111. bottom: 0/2012
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Normal",
  36118. height: math.unit(5 + 8/12, "feet"),
  36119. default: true
  36120. },
  36121. ]
  36122. ))
  36123. characterMakers.push(() => makeCharacter(
  36124. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36125. {
  36126. back: {
  36127. height: math.unit(9, "feet"),
  36128. name: "Back",
  36129. image: {
  36130. source: "./media/characters/vivian-sylveon/back.svg",
  36131. extra: 1853/1714,
  36132. bottom: 0/1853
  36133. }
  36134. },
  36135. },
  36136. [
  36137. {
  36138. name: "Normal",
  36139. height: math.unit(9, "feet"),
  36140. default: true
  36141. },
  36142. {
  36143. name: "Macro",
  36144. height: math.unit(500, "feet")
  36145. },
  36146. {
  36147. name: "Megamacro",
  36148. height: math.unit(600, "miles")
  36149. },
  36150. {
  36151. name: "Gigamacro",
  36152. height: math.unit(30000, "miles")
  36153. },
  36154. ]
  36155. ))
  36156. characterMakers.push(() => makeCharacter(
  36157. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36158. {
  36159. anthro: {
  36160. height: math.unit(5 + 10/12, "feet"),
  36161. weight: math.unit(100, "lb"),
  36162. name: "Anthro",
  36163. image: {
  36164. source: "./media/characters/daiki/anthro.svg",
  36165. extra: 1115/1027,
  36166. bottom: 69/1184
  36167. }
  36168. },
  36169. feral: {
  36170. height: math.unit(200, "feet"),
  36171. name: "Feral",
  36172. image: {
  36173. source: "./media/characters/daiki/feral.svg",
  36174. extra: 1256/313,
  36175. bottom: 39/1295
  36176. }
  36177. },
  36178. feralHead: {
  36179. height: math.unit(171, "feet"),
  36180. name: "Feral Head",
  36181. image: {
  36182. source: "./media/characters/daiki/feral-head.svg"
  36183. }
  36184. },
  36185. },
  36186. [
  36187. {
  36188. name: "Normal",
  36189. height: math.unit(5 + 10/12, "feet"),
  36190. default: true
  36191. },
  36192. ]
  36193. ))
  36194. characterMakers.push(() => makeCharacter(
  36195. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36196. {
  36197. fullyEquippedFront: {
  36198. height: math.unit(3 + 1/12, "feet"),
  36199. weight: math.unit(24, "lb"),
  36200. name: "Fully Equipped (Front)",
  36201. image: {
  36202. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36203. extra: 687/605,
  36204. bottom: 18/705
  36205. }
  36206. },
  36207. fullyEquippedBack: {
  36208. height: math.unit(3 + 1/12, "feet"),
  36209. weight: math.unit(24, "lb"),
  36210. name: "Fully Equipped (Back)",
  36211. image: {
  36212. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36213. extra: 689/590,
  36214. bottom: 18/707
  36215. }
  36216. },
  36217. dailyWear: {
  36218. height: math.unit(3 + 1/12, "feet"),
  36219. weight: math.unit(24, "lb"),
  36220. name: "Daily Wear",
  36221. image: {
  36222. source: "./media/characters/tea-spot/daily-wear.svg",
  36223. extra: 701/620,
  36224. bottom: 21/722
  36225. }
  36226. },
  36227. maidWork: {
  36228. height: math.unit(3 + 1/12, "feet"),
  36229. weight: math.unit(24, "lb"),
  36230. name: "Maid Work",
  36231. image: {
  36232. source: "./media/characters/tea-spot/maid-work.svg",
  36233. extra: 693/609,
  36234. bottom: 15/708
  36235. }
  36236. },
  36237. },
  36238. [
  36239. {
  36240. name: "Normal",
  36241. height: math.unit(3 + 1/12, "feet"),
  36242. default: true
  36243. },
  36244. ]
  36245. ))
  36246. characterMakers.push(() => makeCharacter(
  36247. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36248. {
  36249. front: {
  36250. height: math.unit(175, "cm"),
  36251. weight: math.unit(75, "kg"),
  36252. name: "Front",
  36253. image: {
  36254. source: "./media/characters/chee/front.svg",
  36255. extra: 1796/1740,
  36256. bottom: 40/1836
  36257. }
  36258. },
  36259. },
  36260. [
  36261. {
  36262. name: "Micro-Micro",
  36263. height: math.unit(1, "nm")
  36264. },
  36265. {
  36266. name: "Micro-erst",
  36267. height: math.unit(1, "micrometer")
  36268. },
  36269. {
  36270. name: "Micro-er",
  36271. height: math.unit(1, "cm")
  36272. },
  36273. {
  36274. name: "Normal",
  36275. height: math.unit(175, "cm"),
  36276. default: true
  36277. },
  36278. {
  36279. name: "Macro",
  36280. height: math.unit(100, "m")
  36281. },
  36282. {
  36283. name: "Macro-er",
  36284. height: math.unit(1, "km")
  36285. },
  36286. {
  36287. name: "Macro-erst",
  36288. height: math.unit(10, "km")
  36289. },
  36290. {
  36291. name: "Macro-Macro",
  36292. height: math.unit(100, "km")
  36293. },
  36294. ]
  36295. ))
  36296. characterMakers.push(() => makeCharacter(
  36297. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36298. {
  36299. front: {
  36300. height: math.unit(11 + 9/12, "feet"),
  36301. weight: math.unit(935, "lb"),
  36302. name: "Front",
  36303. image: {
  36304. source: "./media/characters/kingsley/front.svg",
  36305. extra: 1803/1674,
  36306. bottom: 127/1930
  36307. }
  36308. },
  36309. frontNude: {
  36310. height: math.unit(11 + 9/12, "feet"),
  36311. weight: math.unit(935, "lb"),
  36312. name: "Front (Nude)",
  36313. image: {
  36314. source: "./media/characters/kingsley/front-nude.svg",
  36315. extra: 1803/1674,
  36316. bottom: 127/1930
  36317. }
  36318. },
  36319. },
  36320. [
  36321. {
  36322. name: "Normal",
  36323. height: math.unit(11 + 9/12, "feet"),
  36324. default: true
  36325. },
  36326. ]
  36327. ))
  36328. characterMakers.push(() => makeCharacter(
  36329. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36330. {
  36331. side: {
  36332. height: math.unit(9, "feet"),
  36333. name: "Side",
  36334. image: {
  36335. source: "./media/characters/rymel/side.svg",
  36336. extra: 792/469,
  36337. bottom: 121/913
  36338. }
  36339. },
  36340. maw: {
  36341. height: math.unit(2.4, "meters"),
  36342. name: "Maw",
  36343. image: {
  36344. source: "./media/characters/rymel/maw.svg"
  36345. }
  36346. },
  36347. },
  36348. [
  36349. {
  36350. name: "House Drake",
  36351. height: math.unit(2, "feet")
  36352. },
  36353. {
  36354. name: "Reduced",
  36355. height: math.unit(4.5, "feet")
  36356. },
  36357. {
  36358. name: "Normal",
  36359. height: math.unit(9, "feet"),
  36360. default: true
  36361. },
  36362. ]
  36363. ))
  36364. characterMakers.push(() => makeCharacter(
  36365. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36366. {
  36367. front: {
  36368. height: math.unit(1.74, "meters"),
  36369. weight: math.unit(55, "kg"),
  36370. name: "Front",
  36371. image: {
  36372. source: "./media/characters/rubus/front.svg",
  36373. extra: 1894/1742,
  36374. bottom: 44/1938
  36375. }
  36376. },
  36377. },
  36378. [
  36379. {
  36380. name: "Normal",
  36381. height: math.unit(1.74, "meters"),
  36382. default: true
  36383. },
  36384. ]
  36385. ))
  36386. characterMakers.push(() => makeCharacter(
  36387. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36388. {
  36389. front: {
  36390. height: math.unit(5 + 2/12, "feet"),
  36391. weight: math.unit(112, "lb"),
  36392. name: "Front",
  36393. image: {
  36394. source: "./media/characters/cassie-kingston/front.svg",
  36395. extra: 1438/1390,
  36396. bottom: 47/1485
  36397. }
  36398. },
  36399. },
  36400. [
  36401. {
  36402. name: "Normal",
  36403. height: math.unit(5 + 2/12, "feet"),
  36404. default: true
  36405. },
  36406. {
  36407. name: "Macro",
  36408. height: math.unit(128, "feet")
  36409. },
  36410. {
  36411. name: "Megamacro",
  36412. height: math.unit(2.56, "miles")
  36413. },
  36414. ]
  36415. ))
  36416. characterMakers.push(() => makeCharacter(
  36417. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36418. {
  36419. front: {
  36420. height: math.unit(7, "feet"),
  36421. name: "Front",
  36422. image: {
  36423. source: "./media/characters/fox/front.svg",
  36424. extra: 1798/1703,
  36425. bottom: 55/1853
  36426. }
  36427. },
  36428. back: {
  36429. height: math.unit(7, "feet"),
  36430. name: "Back",
  36431. image: {
  36432. source: "./media/characters/fox/back.svg",
  36433. extra: 1748/1649,
  36434. bottom: 32/1780
  36435. }
  36436. },
  36437. head: {
  36438. height: math.unit(1.95, "feet"),
  36439. name: "Head",
  36440. image: {
  36441. source: "./media/characters/fox/head.svg"
  36442. }
  36443. },
  36444. dick: {
  36445. height: math.unit(1.33, "feet"),
  36446. name: "Dick",
  36447. image: {
  36448. source: "./media/characters/fox/dick.svg"
  36449. }
  36450. },
  36451. foot: {
  36452. height: math.unit(1, "feet"),
  36453. name: "Foot",
  36454. image: {
  36455. source: "./media/characters/fox/foot.svg"
  36456. }
  36457. },
  36458. paw: {
  36459. height: math.unit(0.92, "feet"),
  36460. name: "Paw",
  36461. image: {
  36462. source: "./media/characters/fox/paw.svg"
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Small",
  36469. height: math.unit(3, "inches")
  36470. },
  36471. {
  36472. name: "\"Realistic\"",
  36473. height: math.unit(7, "feet")
  36474. },
  36475. {
  36476. name: "Normal",
  36477. height: math.unit(150, "feet"),
  36478. default: true
  36479. },
  36480. {
  36481. name: "BIG",
  36482. height: math.unit(1200, "feet")
  36483. },
  36484. {
  36485. name: "👀",
  36486. height: math.unit(5, "miles")
  36487. },
  36488. {
  36489. name: "👀👀👀",
  36490. height: math.unit(64, "miles")
  36491. },
  36492. ]
  36493. ))
  36494. characterMakers.push(() => makeCharacter(
  36495. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36496. {
  36497. front: {
  36498. height: math.unit(625, "feet"),
  36499. name: "Front",
  36500. image: {
  36501. source: "./media/characters/asonja-rossa/front.svg",
  36502. extra: 1833/1686,
  36503. bottom: 24/1857
  36504. }
  36505. },
  36506. back: {
  36507. height: math.unit(625, "feet"),
  36508. name: "Back",
  36509. image: {
  36510. source: "./media/characters/asonja-rossa/back.svg",
  36511. extra: 1852/1753,
  36512. bottom: 26/1878
  36513. }
  36514. },
  36515. },
  36516. [
  36517. {
  36518. name: "Macro",
  36519. height: math.unit(625, "feet"),
  36520. default: true
  36521. },
  36522. ]
  36523. ))
  36524. characterMakers.push(() => makeCharacter(
  36525. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36526. {
  36527. side: {
  36528. height: math.unit(6, "feet"),
  36529. weight: math.unit(150, "lb"),
  36530. name: "Side",
  36531. image: {
  36532. source: "./media/characters/rezukii/side.svg",
  36533. extra: 979/542,
  36534. bottom: 87/1066
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Tiny",
  36541. height: math.unit(2, "feet")
  36542. },
  36543. {
  36544. name: "Smol",
  36545. height: math.unit(4, "feet")
  36546. },
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(8, "feet"),
  36550. default: true
  36551. },
  36552. {
  36553. name: "Big",
  36554. height: math.unit(12, "feet")
  36555. },
  36556. {
  36557. name: "Macro",
  36558. height: math.unit(30, "feet")
  36559. },
  36560. ]
  36561. ))
  36562. characterMakers.push(() => makeCharacter(
  36563. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36564. {
  36565. front: {
  36566. height: math.unit(14, "feet"),
  36567. weight: math.unit(9.5, "tonnes"),
  36568. name: "Front",
  36569. image: {
  36570. source: "./media/characters/dawnheart/front.svg",
  36571. extra: 2792/2675,
  36572. bottom: 64/2856
  36573. }
  36574. },
  36575. },
  36576. [
  36577. {
  36578. name: "Normal",
  36579. height: math.unit(14, "feet"),
  36580. default: true
  36581. },
  36582. ]
  36583. ))
  36584. characterMakers.push(() => makeCharacter(
  36585. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36586. {
  36587. front: {
  36588. height: math.unit(1.7, "m"),
  36589. name: "Front",
  36590. image: {
  36591. source: "./media/characters/gladi/front.svg",
  36592. extra: 1460/1362,
  36593. bottom: 19/1479
  36594. }
  36595. },
  36596. back: {
  36597. height: math.unit(1.7, "m"),
  36598. name: "Back",
  36599. image: {
  36600. source: "./media/characters/gladi/back.svg",
  36601. extra: 1459/1357,
  36602. bottom: 12/1471
  36603. }
  36604. },
  36605. feral: {
  36606. height: math.unit(2.05, "m"),
  36607. name: "Feral",
  36608. image: {
  36609. source: "./media/characters/gladi/feral.svg",
  36610. extra: 821/557,
  36611. bottom: 91/912
  36612. }
  36613. },
  36614. },
  36615. [
  36616. {
  36617. name: "Shortest",
  36618. height: math.unit(70, "cm")
  36619. },
  36620. {
  36621. name: "Normal",
  36622. height: math.unit(1.7, "m")
  36623. },
  36624. {
  36625. name: "Macro",
  36626. height: math.unit(10, "m"),
  36627. default: true
  36628. },
  36629. {
  36630. name: "Tallest",
  36631. height: math.unit(200, "m")
  36632. },
  36633. ]
  36634. ))
  36635. characterMakers.push(() => makeCharacter(
  36636. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36637. {
  36638. front: {
  36639. height: math.unit(5 + 7/12, "feet"),
  36640. weight: math.unit(92, "kg"),
  36641. name: "Front",
  36642. image: {
  36643. source: "./media/characters/erdno/front.svg",
  36644. extra: 1954/1889,
  36645. bottom: 22/1976
  36646. }
  36647. },
  36648. },
  36649. [
  36650. {
  36651. name: "Normal",
  36652. height: math.unit(5 + 7/12, "feet"),
  36653. default: true
  36654. },
  36655. ]
  36656. ))
  36657. characterMakers.push(() => makeCharacter(
  36658. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36659. {
  36660. front: {
  36661. height: math.unit(5 + 10/12, "feet"),
  36662. weight: math.unit(150, "lb"),
  36663. name: "Front",
  36664. image: {
  36665. source: "./media/characters/jamie/front.svg",
  36666. extra: 1908/1768,
  36667. bottom: 19/1927
  36668. }
  36669. },
  36670. },
  36671. [
  36672. {
  36673. name: "Minimum",
  36674. height: math.unit(2, "cm")
  36675. },
  36676. {
  36677. name: "Micro",
  36678. height: math.unit(3, "inches")
  36679. },
  36680. {
  36681. name: "Normal",
  36682. height: math.unit(5 + 10/12, "feet"),
  36683. default: true
  36684. },
  36685. {
  36686. name: "Macro",
  36687. height: math.unit(150, "feet")
  36688. },
  36689. {
  36690. name: "Megamacro",
  36691. height: math.unit(10000, "m")
  36692. },
  36693. ]
  36694. ))
  36695. characterMakers.push(() => makeCharacter(
  36696. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36697. {
  36698. front: {
  36699. height: math.unit(2, "meters"),
  36700. weight: math.unit(100, "kg"),
  36701. name: "Front",
  36702. image: {
  36703. source: "./media/characters/shiron/front.svg",
  36704. extra: 2103/1985,
  36705. bottom: 98/2201
  36706. }
  36707. },
  36708. back: {
  36709. height: math.unit(2, "meters"),
  36710. weight: math.unit(100, "kg"),
  36711. name: "Back",
  36712. image: {
  36713. source: "./media/characters/shiron/back.svg",
  36714. extra: 2110/2015,
  36715. bottom: 89/2199
  36716. }
  36717. },
  36718. hand: {
  36719. height: math.unit(0.96, "feet"),
  36720. name: "Hand",
  36721. image: {
  36722. source: "./media/characters/shiron/hand.svg"
  36723. }
  36724. },
  36725. foot: {
  36726. height: math.unit(1.464, "feet"),
  36727. name: "Foot",
  36728. image: {
  36729. source: "./media/characters/shiron/foot.svg"
  36730. }
  36731. },
  36732. },
  36733. [
  36734. {
  36735. name: "Normal",
  36736. height: math.unit(2, "meters")
  36737. },
  36738. {
  36739. name: "Macro",
  36740. height: math.unit(500, "meters"),
  36741. default: true
  36742. },
  36743. {
  36744. name: "Megamacro",
  36745. height: math.unit(20, "km")
  36746. },
  36747. ]
  36748. ))
  36749. characterMakers.push(() => makeCharacter(
  36750. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36751. {
  36752. front: {
  36753. height: math.unit(6, "feet"),
  36754. name: "Front",
  36755. image: {
  36756. source: "./media/characters/sam/front.svg",
  36757. extra: 849/826,
  36758. bottom: 19/868
  36759. }
  36760. },
  36761. },
  36762. [
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(6, "feet"),
  36766. default: true
  36767. },
  36768. ]
  36769. ))
  36770. characterMakers.push(() => makeCharacter(
  36771. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36772. {
  36773. front: {
  36774. height: math.unit(8 + 4/12, "feet"),
  36775. weight: math.unit(122, "kg"),
  36776. name: "Front",
  36777. image: {
  36778. source: "./media/characters/namori-kurogawa/front.svg",
  36779. extra: 1894/1576,
  36780. bottom: 34/1928
  36781. }
  36782. },
  36783. },
  36784. [
  36785. {
  36786. name: "Normal",
  36787. height: math.unit(8 + 4/12, "feet"),
  36788. default: true
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36794. {
  36795. front: {
  36796. height: math.unit(9, "feet"),
  36797. weight: math.unit(621, "lb"),
  36798. name: "Front",
  36799. image: {
  36800. source: "./media/characters/unmru/front.svg",
  36801. extra: 1853/1747,
  36802. bottom: 73/1926
  36803. }
  36804. },
  36805. side: {
  36806. height: math.unit(9, "feet"),
  36807. weight: math.unit(621, "lb"),
  36808. name: "Side",
  36809. image: {
  36810. source: "./media/characters/unmru/side.svg",
  36811. extra: 1781/1671,
  36812. bottom: 127/1908
  36813. }
  36814. },
  36815. back: {
  36816. height: math.unit(9, "feet"),
  36817. weight: math.unit(621, "lb"),
  36818. name: "Back",
  36819. image: {
  36820. source: "./media/characters/unmru/back.svg",
  36821. extra: 1894/1765,
  36822. bottom: 75/1969
  36823. }
  36824. },
  36825. dick: {
  36826. height: math.unit(3, "feet"),
  36827. weight: math.unit(35, "lb"),
  36828. name: "Dick",
  36829. image: {
  36830. source: "./media/characters/unmru/dick.svg"
  36831. }
  36832. },
  36833. },
  36834. [
  36835. {
  36836. name: "Normal",
  36837. height: math.unit(9, "feet")
  36838. },
  36839. {
  36840. name: "Natural",
  36841. height: math.unit(27, "feet"),
  36842. default: true
  36843. },
  36844. {
  36845. name: "Giant",
  36846. height: math.unit(90, "feet")
  36847. },
  36848. {
  36849. name: "Kaiju",
  36850. height: math.unit(270, "feet")
  36851. },
  36852. {
  36853. name: "Macro",
  36854. height: math.unit(900, "feet")
  36855. },
  36856. {
  36857. name: "Macro+",
  36858. height: math.unit(2700, "feet")
  36859. },
  36860. {
  36861. name: "Megamacro",
  36862. height: math.unit(9000, "feet")
  36863. },
  36864. {
  36865. name: "City-Crushing",
  36866. height: math.unit(27000, "feet")
  36867. },
  36868. {
  36869. name: "Mountain-Mashing",
  36870. height: math.unit(90000, "feet")
  36871. },
  36872. {
  36873. name: "Earth-Eclipsing",
  36874. height: math.unit(2.7e8, "feet")
  36875. },
  36876. {
  36877. name: "Sol-Swallowing",
  36878. height: math.unit(9e10, "feet")
  36879. },
  36880. {
  36881. name: "Majoris-Munching",
  36882. height: math.unit(2.7e13, "feet")
  36883. },
  36884. ]
  36885. ))
  36886. characterMakers.push(() => makeCharacter(
  36887. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36888. {
  36889. front: {
  36890. height: math.unit(1, "inch"),
  36891. name: "Front",
  36892. image: {
  36893. source: "./media/characters/squeaks-mouse/front.svg",
  36894. extra: 352/308,
  36895. bottom: 25/377
  36896. }
  36897. },
  36898. },
  36899. [
  36900. {
  36901. name: "Micro",
  36902. height: math.unit(1, "inch"),
  36903. default: true
  36904. },
  36905. ]
  36906. ))
  36907. characterMakers.push(() => makeCharacter(
  36908. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36909. {
  36910. side: {
  36911. height: math.unit(35, "feet"),
  36912. name: "Side",
  36913. image: {
  36914. source: "./media/characters/sayko/side.svg",
  36915. extra: 1697/1021,
  36916. bottom: 82/1779
  36917. }
  36918. },
  36919. head: {
  36920. height: math.unit(16, "feet"),
  36921. name: "Head",
  36922. image: {
  36923. source: "./media/characters/sayko/head.svg"
  36924. }
  36925. },
  36926. forepaw: {
  36927. height: math.unit(7.85, "feet"),
  36928. name: "Forepaw",
  36929. image: {
  36930. source: "./media/characters/sayko/forepaw.svg"
  36931. }
  36932. },
  36933. hindpaw: {
  36934. height: math.unit(8.8, "feet"),
  36935. name: "Hindpaw",
  36936. image: {
  36937. source: "./media/characters/sayko/hindpaw.svg"
  36938. }
  36939. },
  36940. },
  36941. [
  36942. {
  36943. name: "Normal",
  36944. height: math.unit(35, "feet"),
  36945. default: true
  36946. },
  36947. {
  36948. name: "Colossus",
  36949. height: math.unit(100, "meters")
  36950. },
  36951. {
  36952. name: "\"Small\" Deity",
  36953. height: math.unit(1, "km")
  36954. },
  36955. {
  36956. name: "\"Large\" Deity",
  36957. height: math.unit(15, "km")
  36958. },
  36959. ]
  36960. ))
  36961. characterMakers.push(() => makeCharacter(
  36962. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  36963. {
  36964. front: {
  36965. height: math.unit(6, "feet"),
  36966. weight: math.unit(250, "lb"),
  36967. name: "Front",
  36968. image: {
  36969. source: "./media/characters/mukiro/front.svg",
  36970. extra: 1368/1310,
  36971. bottom: 34/1402
  36972. }
  36973. },
  36974. },
  36975. [
  36976. {
  36977. name: "Normal",
  36978. height: math.unit(6, "feet"),
  36979. default: true
  36980. },
  36981. ]
  36982. ))
  36983. characterMakers.push(() => makeCharacter(
  36984. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  36985. {
  36986. front: {
  36987. height: math.unit(12 + 4/12, "feet"),
  36988. name: "Front",
  36989. image: {
  36990. source: "./media/characters/zeph-the-tiger-god/front.svg",
  36991. extra: 1346/1311,
  36992. bottom: 65/1411
  36993. }
  36994. },
  36995. },
  36996. [
  36997. {
  36998. name: "Base",
  36999. height: math.unit(12 + 4/12, "feet"),
  37000. default: true
  37001. },
  37002. {
  37003. name: "Macro",
  37004. height: math.unit(150, "feet")
  37005. },
  37006. {
  37007. name: "Mega",
  37008. height: math.unit(2, "miles")
  37009. },
  37010. {
  37011. name: "Demi God",
  37012. height: math.unit(4, "AU")
  37013. },
  37014. {
  37015. name: "God Size",
  37016. height: math.unit(1, "universe")
  37017. },
  37018. ]
  37019. ))
  37020. characterMakers.push(() => makeCharacter(
  37021. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37022. {
  37023. front: {
  37024. height: math.unit(3 + 3/12, "feet"),
  37025. weight: math.unit(88, "lb"),
  37026. name: "Front",
  37027. image: {
  37028. source: "./media/characters/trey/front.svg",
  37029. extra: 1815/1509,
  37030. bottom: 60/1875
  37031. }
  37032. },
  37033. },
  37034. [
  37035. {
  37036. name: "Normal",
  37037. height: math.unit(3 + 3/12, "feet"),
  37038. default: true
  37039. },
  37040. ]
  37041. ))
  37042. characterMakers.push(() => makeCharacter(
  37043. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37044. {
  37045. front: {
  37046. height: math.unit(4, "meters"),
  37047. name: "Front",
  37048. image: {
  37049. source: "./media/characters/adelonda/front.svg",
  37050. extra: 1942/1775,
  37051. bottom: 33/1975
  37052. }
  37053. },
  37054. back: {
  37055. height: math.unit(4, "meters"),
  37056. name: "Back",
  37057. image: {
  37058. source: "./media/characters/adelonda/back.svg",
  37059. extra: 1932/1780,
  37060. bottom: 42/1974
  37061. }
  37062. },
  37063. bust: {
  37064. height: math.unit(1.8, "meter"),
  37065. name: "Bust",
  37066. image: {
  37067. source: "./media/characters/adelonda/bust.svg"
  37068. }
  37069. },
  37070. },
  37071. [
  37072. {
  37073. name: "Normal",
  37074. height: math.unit(4, "meters"),
  37075. default: true
  37076. },
  37077. ]
  37078. ))
  37079. characterMakers.push(() => makeCharacter(
  37080. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37081. {
  37082. front: {
  37083. height: math.unit(8 + 4/12, "feet"),
  37084. weight: math.unit(670, "lb"),
  37085. name: "Front",
  37086. image: {
  37087. source: "./media/characters/acadiel/front.svg",
  37088. extra: 1901/1595,
  37089. bottom: 142/2043
  37090. }
  37091. },
  37092. },
  37093. [
  37094. {
  37095. name: "Normal",
  37096. height: math.unit(8 + 4/12, "feet"),
  37097. default: true
  37098. },
  37099. {
  37100. name: "Macro",
  37101. height: math.unit(200, "feet")
  37102. },
  37103. ]
  37104. ))
  37105. characterMakers.push(() => makeCharacter(
  37106. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37107. {
  37108. front: {
  37109. height: math.unit(6 + 2/12, "feet"),
  37110. weight: math.unit(185, "lb"),
  37111. name: "Front",
  37112. image: {
  37113. source: "./media/characters/kayne-ein/front.svg",
  37114. extra: 1780/1560,
  37115. bottom: 81/1861
  37116. }
  37117. },
  37118. },
  37119. [
  37120. {
  37121. name: "Normal",
  37122. height: math.unit(6 + 2/12, "feet"),
  37123. default: true
  37124. },
  37125. {
  37126. name: "Transformation Stage",
  37127. height: math.unit(15, "feet")
  37128. },
  37129. {
  37130. name: "Macro",
  37131. height: math.unit(150, "feet")
  37132. },
  37133. {
  37134. name: "Earth's Shadow",
  37135. height: math.unit(6200, "miles")
  37136. },
  37137. {
  37138. name: "Universal Demon",
  37139. height: math.unit(28e9, "parsecs")
  37140. },
  37141. {
  37142. name: "Multiverse God",
  37143. height: math.unit(3, "multiverses")
  37144. },
  37145. ]
  37146. ))
  37147. characterMakers.push(() => makeCharacter(
  37148. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37149. {
  37150. front: {
  37151. height: math.unit(5 + 5/12, "feet"),
  37152. name: "Front",
  37153. image: {
  37154. source: "./media/characters/fawn/front.svg",
  37155. extra: 1873/1731,
  37156. bottom: 95/1968
  37157. }
  37158. },
  37159. back: {
  37160. height: math.unit(5 + 5/12, "feet"),
  37161. name: "Back",
  37162. image: {
  37163. source: "./media/characters/fawn/back.svg",
  37164. extra: 1813/1700,
  37165. bottom: 14/1827
  37166. }
  37167. },
  37168. hoof: {
  37169. height: math.unit(1.45, "feet"),
  37170. name: "Hoof",
  37171. image: {
  37172. source: "./media/characters/fawn/hoof.svg"
  37173. }
  37174. },
  37175. },
  37176. [
  37177. {
  37178. name: "Normal",
  37179. height: math.unit(5 + 5/12, "feet"),
  37180. default: true
  37181. },
  37182. ]
  37183. ))
  37184. characterMakers.push(() => makeCharacter(
  37185. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37186. {
  37187. front: {
  37188. height: math.unit(2 + 5/12, "feet"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/orion/front.svg",
  37192. extra: 1366/1304,
  37193. bottom: 43/1409
  37194. }
  37195. },
  37196. paw: {
  37197. height: math.unit(0.52, "feet"),
  37198. name: "Paw",
  37199. image: {
  37200. source: "./media/characters/orion/paw.svg"
  37201. }
  37202. },
  37203. },
  37204. [
  37205. {
  37206. name: "Normal",
  37207. height: math.unit(2 + 5/12, "feet"),
  37208. default: true
  37209. },
  37210. ]
  37211. ))
  37212. characterMakers.push(() => makeCharacter(
  37213. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37214. {
  37215. front: {
  37216. height: math.unit(5 + 10/12, "feet"),
  37217. name: "Front",
  37218. image: {
  37219. source: "./media/characters/vera/front.svg",
  37220. extra: 1680/1575,
  37221. bottom: 49/1729
  37222. }
  37223. },
  37224. back: {
  37225. height: math.unit(5 + 10/12, "feet"),
  37226. name: "Back",
  37227. image: {
  37228. source: "./media/characters/vera/back.svg",
  37229. extra: 1700/1588,
  37230. bottom: 18/1718
  37231. }
  37232. },
  37233. arcanine: {
  37234. height: math.unit(6 + 8/12, "feet"),
  37235. name: "Arcanine",
  37236. image: {
  37237. source: "./media/characters/vera/arcanine.svg",
  37238. extra: 1590/1511,
  37239. bottom: 71/1661
  37240. }
  37241. },
  37242. maw: {
  37243. height: math.unit(0.82, "feet"),
  37244. name: "Maw",
  37245. image: {
  37246. source: "./media/characters/vera/maw.svg"
  37247. }
  37248. },
  37249. mawArcanine: {
  37250. height: math.unit(0.97, "feet"),
  37251. name: "Maw (Arcanine)",
  37252. image: {
  37253. source: "./media/characters/vera/maw-arcanine.svg"
  37254. }
  37255. },
  37256. paw: {
  37257. height: math.unit(0.75, "feet"),
  37258. name: "Paw",
  37259. image: {
  37260. source: "./media/characters/vera/paw.svg"
  37261. }
  37262. },
  37263. pawprint: {
  37264. height: math.unit(0.52, "feet"),
  37265. name: "Pawprint",
  37266. image: {
  37267. source: "./media/characters/vera/pawprint.svg"
  37268. }
  37269. },
  37270. },
  37271. [
  37272. {
  37273. name: "Normal",
  37274. height: math.unit(5 + 10/12, "feet"),
  37275. default: true
  37276. },
  37277. {
  37278. name: "Macro",
  37279. height: math.unit(75, "feet")
  37280. },
  37281. ]
  37282. ))
  37283. characterMakers.push(() => makeCharacter(
  37284. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37285. {
  37286. front: {
  37287. height: math.unit(4, "feet"),
  37288. weight: math.unit(40, "lb"),
  37289. name: "Front",
  37290. image: {
  37291. source: "./media/characters/orvan-rabbit/front.svg",
  37292. extra: 1896/1642,
  37293. bottom: 29/1925
  37294. }
  37295. },
  37296. },
  37297. [
  37298. {
  37299. name: "Normal",
  37300. height: math.unit(4, "feet"),
  37301. default: true
  37302. },
  37303. ]
  37304. ))
  37305. characterMakers.push(() => makeCharacter(
  37306. { name: "Lisa", species: ["fox", "deity"], tags: ["anthro"] },
  37307. {
  37308. front: {
  37309. height: math.unit(6, "feet"),
  37310. weight: math.unit(168, "lb"),
  37311. name: "Front",
  37312. image: {
  37313. source: "./media/characters/lisa/front.svg",
  37314. extra: 2065/1867,
  37315. bottom: 46/2111
  37316. }
  37317. },
  37318. back: {
  37319. height: math.unit(6, "feet"),
  37320. weight: math.unit(168, "lb"),
  37321. name: "Back",
  37322. image: {
  37323. source: "./media/characters/lisa/back.svg",
  37324. extra: 1982/1838,
  37325. bottom: 29/2011
  37326. }
  37327. },
  37328. maw: {
  37329. height: math.unit(0.81, "feet"),
  37330. name: "Maw",
  37331. image: {
  37332. source: "./media/characters/lisa/maw.svg"
  37333. }
  37334. },
  37335. paw: {
  37336. height: math.unit(0.9, "feet"),
  37337. name: "Paw",
  37338. image: {
  37339. source: "./media/characters/lisa/paw.svg"
  37340. }
  37341. },
  37342. },
  37343. [
  37344. {
  37345. name: "Normal",
  37346. height: math.unit(6, "feet")
  37347. },
  37348. {
  37349. name: "God Size",
  37350. height: math.unit(72, "feet"),
  37351. default: true
  37352. },
  37353. {
  37354. name: "Towering",
  37355. height: math.unit(288, "feet")
  37356. },
  37357. {
  37358. name: "City Size",
  37359. height: math.unit(48384, "feet")
  37360. },
  37361. {
  37362. name: "Continental",
  37363. height: math.unit(4200, "miles")
  37364. },
  37365. {
  37366. name: "Planet Eater",
  37367. height: math.unit(42, "earths")
  37368. },
  37369. {
  37370. name: "Star Swallower",
  37371. height: math.unit(42, "solarradii")
  37372. },
  37373. {
  37374. name: "System Swallower",
  37375. height: math.unit(84000, "AU")
  37376. },
  37377. {
  37378. name: "Galaxy Gobbler",
  37379. height: math.unit(42, "galaxies")
  37380. },
  37381. {
  37382. name: "Universe Devourer",
  37383. height: math.unit(42, "universes")
  37384. },
  37385. {
  37386. name: "Multiverse Muncher",
  37387. height: math.unit(42, "multiverses")
  37388. },
  37389. ]
  37390. ))
  37391. characterMakers.push(() => makeCharacter(
  37392. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37393. {
  37394. front: {
  37395. height: math.unit(36, "feet"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/shadow-rat/front.svg",
  37399. extra: 1845/1758,
  37400. bottom: 83/1928
  37401. }
  37402. },
  37403. },
  37404. [
  37405. {
  37406. name: "Macro",
  37407. height: math.unit(36, "feet"),
  37408. default: true
  37409. },
  37410. ]
  37411. ))
  37412. //characters
  37413. function makeCharacters() {
  37414. const results = [];
  37415. characterMakers.forEach(character => {
  37416. results.push(character());
  37417. });
  37418. return results;
  37419. }