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

42297 строки
1.0 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. }
  1735. //species
  1736. function getSpeciesInfo(speciesList) {
  1737. let result = new Set();
  1738. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1739. result.add(entry)
  1740. });
  1741. return Array.from(result);
  1742. };
  1743. function getSpeciesInfoHelper(species) {
  1744. if (!speciesData[species]) {
  1745. console.warn(species + " doesn't exist");
  1746. return [];
  1747. }
  1748. if (speciesData[species].parents) {
  1749. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1750. } else {
  1751. return [species];
  1752. }
  1753. }
  1754. characterMakers.push(() => makeCharacter(
  1755. {
  1756. name: "Fen",
  1757. species: ["crux"],
  1758. description: {
  1759. title: "Bio",
  1760. text: "Very furry. Sheds on everything."
  1761. },
  1762. tags: [
  1763. "anthro",
  1764. "goo"
  1765. ]
  1766. },
  1767. {
  1768. back: {
  1769. height: math.unit(2.2428, "meter"),
  1770. weight: math.unit(124.738, "kg"),
  1771. name: "Back",
  1772. image: {
  1773. source: "./media/characters/fen/back.svg",
  1774. },
  1775. info: {
  1776. description: {
  1777. mode: "append",
  1778. text: "\n\nHe is not currently looking at you."
  1779. }
  1780. }
  1781. },
  1782. full: {
  1783. height: math.unit(1.34, "meter"),
  1784. weight: math.unit(225, "kg"),
  1785. name: "Full",
  1786. image: {
  1787. source: "./media/characters/fen/full.svg"
  1788. },
  1789. info: {
  1790. description: {
  1791. mode: "append",
  1792. text: "\n\nMunch."
  1793. }
  1794. }
  1795. },
  1796. kneeling: {
  1797. height: math.unit(5.4, "feet"),
  1798. weight: math.unit(124.738, "kg"),
  1799. name: "Kneeling",
  1800. image: {
  1801. source: "./media/characters/fen/kneeling.svg",
  1802. extra: 563 / 507
  1803. }
  1804. },
  1805. goo: {
  1806. height: math.unit(2.8, "feet"),
  1807. weight: math.unit(125, "kg"),
  1808. capacity: math.unit(1, "people"),
  1809. name: "Goo",
  1810. image: {
  1811. source: "./media/characters/fen/goo.svg",
  1812. bottom: 116 / 613
  1813. }
  1814. },
  1815. lounging: {
  1816. height: math.unit(6.5, "feet"),
  1817. weight: math.unit(125, "kg"),
  1818. name: "Lounging",
  1819. image: {
  1820. source: "./media/characters/fen/lounging.svg"
  1821. }
  1822. },
  1823. },
  1824. [
  1825. {
  1826. name: "Normal",
  1827. height: math.unit(2.2428, "meter")
  1828. },
  1829. {
  1830. name: "Big",
  1831. height: math.unit(12, "feet")
  1832. },
  1833. {
  1834. name: "Minimacro",
  1835. height: math.unit(40, "feet"),
  1836. default: true,
  1837. info: {
  1838. description: {
  1839. mode: "append",
  1840. text: "\n\nTOO DAMN BIG"
  1841. }
  1842. }
  1843. },
  1844. {
  1845. name: "Macro",
  1846. height: math.unit(100, "feet"),
  1847. info: {
  1848. description: {
  1849. mode: "append",
  1850. text: "\n\nTOO DAMN BIG"
  1851. }
  1852. }
  1853. },
  1854. {
  1855. name: "Macro+",
  1856. height: math.unit(300, "feet")
  1857. },
  1858. {
  1859. name: "Megamacro",
  1860. height: math.unit(2, "miles")
  1861. }
  1862. ]
  1863. ))
  1864. characterMakers.push(() => makeCharacter(
  1865. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1866. {
  1867. front: {
  1868. height: math.unit(183, "cm"),
  1869. weight: math.unit(80, "kg"),
  1870. name: "Front",
  1871. image: {
  1872. source: "./media/characters/sofia-fluttertail/front.svg",
  1873. bottom: 0.01,
  1874. extra: 2154 / 2081
  1875. }
  1876. },
  1877. frontAlt: {
  1878. height: math.unit(183, "cm"),
  1879. weight: math.unit(80, "kg"),
  1880. name: "Front (alt)",
  1881. image: {
  1882. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1883. }
  1884. },
  1885. back: {
  1886. height: math.unit(183, "cm"),
  1887. weight: math.unit(80, "kg"),
  1888. name: "Back",
  1889. image: {
  1890. source: "./media/characters/sofia-fluttertail/back.svg"
  1891. }
  1892. },
  1893. kneeling: {
  1894. height: math.unit(125, "cm"),
  1895. weight: math.unit(80, "kg"),
  1896. name: "Kneeling",
  1897. image: {
  1898. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1899. extra: 1033 / 977,
  1900. bottom: 23.7 / 1057
  1901. }
  1902. },
  1903. maw: {
  1904. height: math.unit(183 / 5, "cm"),
  1905. name: "Maw",
  1906. image: {
  1907. source: "./media/characters/sofia-fluttertail/maw.svg"
  1908. }
  1909. },
  1910. mawcloseup: {
  1911. height: math.unit(183 / 5 * 0.41, "cm"),
  1912. name: "Maw (Closeup)",
  1913. image: {
  1914. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1915. }
  1916. },
  1917. paws: {
  1918. height: math.unit(1.17, "feet"),
  1919. name: "Paws",
  1920. image: {
  1921. source: "./media/characters/sofia-fluttertail/paws.svg",
  1922. extra: 851 / 851,
  1923. bottom: 17 / 868
  1924. }
  1925. },
  1926. },
  1927. [
  1928. {
  1929. name: "Normal",
  1930. height: math.unit(1.83, "meter")
  1931. },
  1932. {
  1933. name: "Size Thief",
  1934. height: math.unit(18, "feet")
  1935. },
  1936. {
  1937. name: "50 Foot Collie",
  1938. height: math.unit(50, "feet")
  1939. },
  1940. {
  1941. name: "Macro",
  1942. height: math.unit(96, "feet"),
  1943. default: true
  1944. },
  1945. {
  1946. name: "Megamerger",
  1947. height: math.unit(650, "feet")
  1948. },
  1949. ]
  1950. ))
  1951. characterMakers.push(() => makeCharacter(
  1952. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1953. {
  1954. front: {
  1955. height: math.unit(7, "feet"),
  1956. weight: math.unit(100, "kg"),
  1957. name: "Front",
  1958. image: {
  1959. source: "./media/characters/march/front.svg",
  1960. extra: 1992/1851,
  1961. bottom: 39/2031
  1962. }
  1963. },
  1964. foot: {
  1965. height: math.unit(0.9, "feet"),
  1966. name: "Foot",
  1967. image: {
  1968. source: "./media/characters/march/foot.svg"
  1969. }
  1970. },
  1971. },
  1972. [
  1973. {
  1974. name: "Normal",
  1975. height: math.unit(7.9, "feet")
  1976. },
  1977. {
  1978. name: "Macro",
  1979. height: math.unit(220, "meters")
  1980. },
  1981. {
  1982. name: "Megamacro",
  1983. height: math.unit(2.98, "km"),
  1984. default: true
  1985. },
  1986. {
  1987. name: "Gigamacro",
  1988. height: math.unit(15963, "km")
  1989. },
  1990. {
  1991. name: "Teramacro",
  1992. height: math.unit(2980000000, "km")
  1993. },
  1994. {
  1995. name: "Examacro",
  1996. height: math.unit(250, "parsecs")
  1997. },
  1998. ]
  1999. ))
  2000. characterMakers.push(() => makeCharacter(
  2001. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2002. {
  2003. front: {
  2004. height: math.unit(6, "feet"),
  2005. weight: math.unit(60, "kg"),
  2006. name: "Front",
  2007. image: {
  2008. source: "./media/characters/noir/front.svg",
  2009. extra: 1,
  2010. bottom: 0.032
  2011. }
  2012. },
  2013. },
  2014. [
  2015. {
  2016. name: "Normal",
  2017. height: math.unit(6.6, "feet")
  2018. },
  2019. {
  2020. name: "Macro",
  2021. height: math.unit(500, "feet")
  2022. },
  2023. {
  2024. name: "Megamacro",
  2025. height: math.unit(2.5, "km"),
  2026. default: true
  2027. },
  2028. {
  2029. name: "Gigamacro",
  2030. height: math.unit(22500, "km")
  2031. },
  2032. {
  2033. name: "Teramacro",
  2034. height: math.unit(2500000000, "km")
  2035. },
  2036. {
  2037. name: "Examacro",
  2038. height: math.unit(200, "parsecs")
  2039. },
  2040. ]
  2041. ))
  2042. characterMakers.push(() => makeCharacter(
  2043. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2044. {
  2045. front: {
  2046. height: math.unit(7, "feet"),
  2047. weight: math.unit(100, "kg"),
  2048. name: "Front",
  2049. image: {
  2050. source: "./media/characters/okuri/front.svg",
  2051. extra: 1,
  2052. bottom: 0.037
  2053. }
  2054. },
  2055. back: {
  2056. height: math.unit(7, "feet"),
  2057. weight: math.unit(100, "kg"),
  2058. name: "Back",
  2059. image: {
  2060. source: "./media/characters/okuri/back.svg",
  2061. extra: 1,
  2062. bottom: 0.007
  2063. }
  2064. },
  2065. },
  2066. [
  2067. {
  2068. name: "Megamacro",
  2069. height: math.unit(100, "miles"),
  2070. default: true
  2071. },
  2072. ]
  2073. ))
  2074. characterMakers.push(() => makeCharacter(
  2075. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2076. {
  2077. front: {
  2078. height: math.unit(7, "feet"),
  2079. weight: math.unit(100, "kg"),
  2080. name: "Front",
  2081. image: {
  2082. source: "./media/characters/manny/front.svg",
  2083. extra: 1,
  2084. bottom: 0.06
  2085. }
  2086. },
  2087. back: {
  2088. height: math.unit(7, "feet"),
  2089. weight: math.unit(100, "kg"),
  2090. name: "Back",
  2091. image: {
  2092. source: "./media/characters/manny/back.svg",
  2093. extra: 1,
  2094. bottom: 0.014
  2095. }
  2096. },
  2097. },
  2098. [
  2099. {
  2100. name: "Normal",
  2101. height: math.unit(7, "feet"),
  2102. },
  2103. {
  2104. name: "Macro",
  2105. height: math.unit(78, "feet"),
  2106. default: true
  2107. },
  2108. {
  2109. name: "Macro+",
  2110. height: math.unit(300, "meters")
  2111. },
  2112. {
  2113. name: "Macro++",
  2114. height: math.unit(2400, "meters")
  2115. },
  2116. {
  2117. name: "Megamacro",
  2118. height: math.unit(5167, "meters")
  2119. },
  2120. {
  2121. name: "Gigamacro",
  2122. height: math.unit(41769, "miles")
  2123. },
  2124. ]
  2125. ))
  2126. characterMakers.push(() => makeCharacter(
  2127. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2128. {
  2129. front: {
  2130. height: math.unit(7, "feet"),
  2131. weight: math.unit(100, "kg"),
  2132. name: "Front",
  2133. image: {
  2134. source: "./media/characters/adake/front-1.svg"
  2135. }
  2136. },
  2137. frontAlt: {
  2138. height: math.unit(7, "feet"),
  2139. weight: math.unit(100, "kg"),
  2140. name: "Front (Alt)",
  2141. image: {
  2142. source: "./media/characters/adake/front-2.svg",
  2143. extra: 1,
  2144. bottom: 0.01
  2145. }
  2146. },
  2147. back: {
  2148. height: math.unit(7, "feet"),
  2149. weight: math.unit(100, "kg"),
  2150. name: "Back",
  2151. image: {
  2152. source: "./media/characters/adake/back.svg",
  2153. }
  2154. },
  2155. kneel: {
  2156. height: math.unit(5.385, "feet"),
  2157. weight: math.unit(100, "kg"),
  2158. name: "Kneeling",
  2159. image: {
  2160. source: "./media/characters/adake/kneel.svg",
  2161. bottom: 0.052
  2162. }
  2163. },
  2164. },
  2165. [
  2166. {
  2167. name: "Normal",
  2168. height: math.unit(7, "feet"),
  2169. },
  2170. {
  2171. name: "Macro",
  2172. height: math.unit(78, "feet"),
  2173. default: true
  2174. },
  2175. {
  2176. name: "Macro+",
  2177. height: math.unit(300, "meters")
  2178. },
  2179. {
  2180. name: "Macro++",
  2181. height: math.unit(2400, "meters")
  2182. },
  2183. {
  2184. name: "Megamacro",
  2185. height: math.unit(5167, "meters")
  2186. },
  2187. {
  2188. name: "Gigamacro",
  2189. height: math.unit(41769, "miles")
  2190. },
  2191. ]
  2192. ))
  2193. characterMakers.push(() => makeCharacter(
  2194. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2195. {
  2196. front: {
  2197. height: math.unit(1.65, "meters"),
  2198. weight: math.unit(50, "kg"),
  2199. name: "Front",
  2200. image: {
  2201. source: "./media/characters/elijah/front.svg",
  2202. extra: 858 / 830,
  2203. bottom: 95.5 / 953.8559
  2204. }
  2205. },
  2206. back: {
  2207. height: math.unit(1.65, "meters"),
  2208. weight: math.unit(50, "kg"),
  2209. name: "Back",
  2210. image: {
  2211. source: "./media/characters/elijah/back.svg",
  2212. extra: 895 / 850,
  2213. bottom: 5.3 / 897.956
  2214. }
  2215. },
  2216. frontNsfw: {
  2217. height: math.unit(1.65, "meters"),
  2218. weight: math.unit(50, "kg"),
  2219. name: "Front (NSFW)",
  2220. image: {
  2221. source: "./media/characters/elijah/front-nsfw.svg",
  2222. extra: 858 / 830,
  2223. bottom: 95.5 / 953.8559
  2224. }
  2225. },
  2226. backNsfw: {
  2227. height: math.unit(1.65, "meters"),
  2228. weight: math.unit(50, "kg"),
  2229. name: "Back (NSFW)",
  2230. image: {
  2231. source: "./media/characters/elijah/back-nsfw.svg",
  2232. extra: 895 / 850,
  2233. bottom: 5.3 / 897.956
  2234. }
  2235. },
  2236. dick: {
  2237. height: math.unit(1, "feet"),
  2238. name: "Dick",
  2239. image: {
  2240. source: "./media/characters/elijah/dick.svg"
  2241. }
  2242. },
  2243. beakOpen: {
  2244. height: math.unit(1.25, "feet"),
  2245. name: "Beak (Open)",
  2246. image: {
  2247. source: "./media/characters/elijah/beak-open.svg"
  2248. }
  2249. },
  2250. beakShut: {
  2251. height: math.unit(1.25, "feet"),
  2252. name: "Beak (Shut)",
  2253. image: {
  2254. source: "./media/characters/elijah/beak-shut.svg"
  2255. }
  2256. },
  2257. footFlexing: {
  2258. height: math.unit(1.61, "feet"),
  2259. name: "Foot (Flexing)",
  2260. image: {
  2261. source: "./media/characters/elijah/foot-flexing.svg"
  2262. }
  2263. },
  2264. footStepping: {
  2265. height: math.unit(1.44, "feet"),
  2266. name: "Foot (Stepping)",
  2267. image: {
  2268. source: "./media/characters/elijah/foot-stepping.svg"
  2269. }
  2270. },
  2271. plantigradeLeg: {
  2272. height: math.unit(2.34, "feet"),
  2273. name: "Plantigrade Leg",
  2274. image: {
  2275. source: "./media/characters/elijah/plantigrade-leg.svg"
  2276. }
  2277. },
  2278. plantigradeFootLeft: {
  2279. height: math.unit(0.9, "feet"),
  2280. name: "Plantigrade Foot (Left)",
  2281. image: {
  2282. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2283. }
  2284. },
  2285. plantigradeFootRight: {
  2286. height: math.unit(0.9, "feet"),
  2287. name: "Plantigrade Foot (Right)",
  2288. image: {
  2289. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Normal",
  2296. height: math.unit(1.65, "meters")
  2297. },
  2298. {
  2299. name: "Macro",
  2300. height: math.unit(55, "meters"),
  2301. default: true
  2302. },
  2303. {
  2304. name: "Macro+",
  2305. height: math.unit(105, "meters")
  2306. },
  2307. ]
  2308. ))
  2309. characterMakers.push(() => makeCharacter(
  2310. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2311. {
  2312. front: {
  2313. height: math.unit(11, "feet"),
  2314. weight: math.unit(320, "kg"),
  2315. name: "Front",
  2316. image: {
  2317. source: "./media/characters/rai/front.svg",
  2318. extra: 1802/1696,
  2319. bottom: 68/1870
  2320. }
  2321. },
  2322. frontDressed: {
  2323. height: math.unit(11, "feet"),
  2324. weight: math.unit(320, "kg"),
  2325. name: "Front (Dressed)",
  2326. image: {
  2327. source: "./media/characters/rai/front-dressed.svg",
  2328. extra: 1802/1696,
  2329. bottom: 68/1870
  2330. }
  2331. },
  2332. side: {
  2333. height: math.unit(11, "feet"),
  2334. weight: math.unit(320, "kg"),
  2335. name: "Side",
  2336. image: {
  2337. source: "./media/characters/rai/side.svg",
  2338. extra: 1789/1710,
  2339. bottom: 115/1904
  2340. }
  2341. },
  2342. back: {
  2343. height: math.unit(11, "feet"),
  2344. weight: math.unit(320, "kg"),
  2345. name: "Back",
  2346. image: {
  2347. source: "./media/characters/rai/back.svg",
  2348. extra: 1770/1707,
  2349. bottom: 28/1798
  2350. }
  2351. },
  2352. feral: {
  2353. height: math.unit(11, "feet"),
  2354. weight: math.unit(640, "kg"),
  2355. name: "Feral",
  2356. image: {
  2357. source: "./media/characters/rai/feral.svg",
  2358. extra: 1035/642,
  2359. bottom: 86/1121
  2360. }
  2361. },
  2362. dragon: {
  2363. height: math.unit(23, "feet"),
  2364. weight: math.unit(50000, "lb"),
  2365. name: "Dragon",
  2366. image: {
  2367. source: "./media/characters/rai/dragon.svg",
  2368. extra: 2498 / 2030,
  2369. bottom: 85.2 / 2584
  2370. }
  2371. },
  2372. maw: {
  2373. height: math.unit(6 / 3.81416, "feet"),
  2374. name: "Maw",
  2375. image: {
  2376. source: "./media/characters/rai/maw.svg"
  2377. }
  2378. },
  2379. },
  2380. [
  2381. {
  2382. name: "Normal",
  2383. height: math.unit(11, "feet")
  2384. },
  2385. {
  2386. name: "Macro",
  2387. height: math.unit(302, "feet"),
  2388. default: true
  2389. },
  2390. ]
  2391. ))
  2392. characterMakers.push(() => makeCharacter(
  2393. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2394. {
  2395. frontDressed: {
  2396. height: math.unit(216, "feet"),
  2397. weight: math.unit(7000000, "lb"),
  2398. name: "Front (Dressed)",
  2399. image: {
  2400. source: "./media/characters/jazzy/front-dressed.svg",
  2401. extra: 2738 / 2651,
  2402. bottom: 41.8 / 2786
  2403. }
  2404. },
  2405. backDressed: {
  2406. height: math.unit(216, "feet"),
  2407. weight: math.unit(7000000, "lb"),
  2408. name: "Back (Dressed)",
  2409. image: {
  2410. source: "./media/characters/jazzy/back-dressed.svg",
  2411. extra: 2775 / 2673,
  2412. bottom: 36.8 / 2817
  2413. }
  2414. },
  2415. front: {
  2416. height: math.unit(216, "feet"),
  2417. weight: math.unit(7000000, "lb"),
  2418. name: "Front",
  2419. image: {
  2420. source: "./media/characters/jazzy/front.svg",
  2421. extra: 2738 / 2651,
  2422. bottom: 41.8 / 2786
  2423. }
  2424. },
  2425. back: {
  2426. height: math.unit(216, "feet"),
  2427. weight: math.unit(7000000, "lb"),
  2428. name: "Back",
  2429. image: {
  2430. source: "./media/characters/jazzy/back.svg",
  2431. extra: 2775 / 2673,
  2432. bottom: 36.8 / 2817
  2433. }
  2434. },
  2435. maw: {
  2436. height: math.unit(20, "feet"),
  2437. name: "Maw",
  2438. image: {
  2439. source: "./media/characters/jazzy/maw.svg"
  2440. }
  2441. },
  2442. paws: {
  2443. height: math.unit(27.5, "feet"),
  2444. name: "Paws",
  2445. image: {
  2446. source: "./media/characters/jazzy/paws.svg"
  2447. }
  2448. },
  2449. eye: {
  2450. height: math.unit(4.4, "feet"),
  2451. name: "Eye",
  2452. image: {
  2453. source: "./media/characters/jazzy/eye.svg"
  2454. }
  2455. },
  2456. droneOffense: {
  2457. height: math.unit(9.5, "inches"),
  2458. name: "Drone (Offense)",
  2459. image: {
  2460. source: "./media/characters/jazzy/drone-offense.svg"
  2461. }
  2462. },
  2463. droneRecon: {
  2464. height: math.unit(9.5, "inches"),
  2465. name: "Drone (Recon)",
  2466. image: {
  2467. source: "./media/characters/jazzy/drone-recon.svg"
  2468. }
  2469. },
  2470. droneDefense: {
  2471. height: math.unit(9.5, "inches"),
  2472. name: "Drone (Defense)",
  2473. image: {
  2474. source: "./media/characters/jazzy/drone-defense.svg"
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(216, "feet"),
  2482. default: true
  2483. },
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2488. {
  2489. front: {
  2490. height: math.unit(9 + 6/12, "feet"),
  2491. weight: math.unit(700, "lb"),
  2492. name: "Front",
  2493. image: {
  2494. source: "./media/characters/flamm/front.svg",
  2495. extra: 1751/1632,
  2496. bottom: 46/1797
  2497. }
  2498. },
  2499. buff: {
  2500. height: math.unit(9 + 6/12, "feet"),
  2501. weight: math.unit(950, "lb"),
  2502. name: "Buff",
  2503. image: {
  2504. source: "./media/characters/flamm/buff.svg",
  2505. extra: 3018/2874,
  2506. bottom: 221/3239
  2507. }
  2508. },
  2509. },
  2510. [
  2511. {
  2512. name: "Normal",
  2513. height: math.unit(9.5, "feet")
  2514. },
  2515. {
  2516. name: "Macro",
  2517. height: math.unit(200, "feet"),
  2518. default: true
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(5 + 3/12, "feet"),
  2527. weight: math.unit(60, "kg"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/zephiro/front.svg",
  2531. extra: 2309 / 2162,
  2532. bottom: 0.069
  2533. }
  2534. },
  2535. side: {
  2536. height: math.unit(5 + 3/12, "feet"),
  2537. weight: math.unit(60, "kg"),
  2538. name: "Side",
  2539. image: {
  2540. source: "./media/characters/zephiro/side.svg",
  2541. extra: 2403 / 2279,
  2542. bottom: 0.015
  2543. }
  2544. },
  2545. back: {
  2546. height: math.unit(5 + 3/12, "feet"),
  2547. weight: math.unit(60, "kg"),
  2548. name: "Back",
  2549. image: {
  2550. source: "./media/characters/zephiro/back.svg",
  2551. extra: 2373 / 2244,
  2552. bottom: 0.013
  2553. }
  2554. },
  2555. hand: {
  2556. height: math.unit(0.68, "feet"),
  2557. name: "Hand",
  2558. image: {
  2559. source: "./media/characters/zephiro/hand.svg"
  2560. }
  2561. },
  2562. paw: {
  2563. height: math.unit(1, "feet"),
  2564. name: "Paw",
  2565. image: {
  2566. source: "./media/characters/zephiro/paw.svg"
  2567. }
  2568. },
  2569. beans: {
  2570. height: math.unit(0.93, "feet"),
  2571. name: "Beans",
  2572. image: {
  2573. source: "./media/characters/zephiro/beans.svg"
  2574. }
  2575. },
  2576. },
  2577. [
  2578. {
  2579. name: "Micro",
  2580. height: math.unit(3, "inches")
  2581. },
  2582. {
  2583. name: "Normal",
  2584. height: math.unit(5 + 3 / 12, "feet"),
  2585. default: true
  2586. },
  2587. {
  2588. name: "Macro",
  2589. height: math.unit(118, "feet")
  2590. },
  2591. ]
  2592. ))
  2593. characterMakers.push(() => makeCharacter(
  2594. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2595. {
  2596. front: {
  2597. height: math.unit(5, "feet"),
  2598. weight: math.unit(90, "kg"),
  2599. name: "Front",
  2600. image: {
  2601. source: "./media/characters/fory/front.svg",
  2602. extra: 2862 / 2674,
  2603. bottom: 180 / 3043.8
  2604. }
  2605. },
  2606. back: {
  2607. height: math.unit(5, "feet"),
  2608. weight: math.unit(90, "kg"),
  2609. name: "Back",
  2610. image: {
  2611. source: "./media/characters/fory/back.svg",
  2612. extra: 2962 / 2791,
  2613. bottom: 106 / 3071.8
  2614. }
  2615. },
  2616. foot: {
  2617. height: math.unit(2.14, "feet"),
  2618. name: "Foot",
  2619. image: {
  2620. source: "./media/characters/fory/foot.svg"
  2621. }
  2622. },
  2623. },
  2624. [
  2625. {
  2626. name: "Normal",
  2627. height: math.unit(5, "feet")
  2628. },
  2629. {
  2630. name: "Macro",
  2631. height: math.unit(50, "feet"),
  2632. default: true
  2633. },
  2634. {
  2635. name: "Megamacro",
  2636. height: math.unit(10, "miles")
  2637. },
  2638. {
  2639. name: "Gigamacro",
  2640. height: math.unit(5, "earths")
  2641. },
  2642. ]
  2643. ))
  2644. characterMakers.push(() => makeCharacter(
  2645. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2646. {
  2647. front: {
  2648. height: math.unit(7, "feet"),
  2649. weight: math.unit(90, "kg"),
  2650. name: "Front",
  2651. image: {
  2652. source: "./media/characters/kurrikage/front.svg",
  2653. extra: 1,
  2654. bottom: 0.035
  2655. }
  2656. },
  2657. back: {
  2658. height: math.unit(7, "feet"),
  2659. weight: math.unit(90, "lb"),
  2660. name: "Back",
  2661. image: {
  2662. source: "./media/characters/kurrikage/back.svg"
  2663. }
  2664. },
  2665. paw: {
  2666. height: math.unit(1.5, "feet"),
  2667. name: "Paw",
  2668. image: {
  2669. source: "./media/characters/kurrikage/paw.svg"
  2670. }
  2671. },
  2672. staff: {
  2673. height: math.unit(6.7, "feet"),
  2674. name: "Staff",
  2675. image: {
  2676. source: "./media/characters/kurrikage/staff.svg"
  2677. }
  2678. },
  2679. peek: {
  2680. height: math.unit(1.05, "feet"),
  2681. name: "Peeking",
  2682. image: {
  2683. source: "./media/characters/kurrikage/peek.svg",
  2684. bottom: 0.08
  2685. }
  2686. },
  2687. },
  2688. [
  2689. {
  2690. name: "Normal",
  2691. height: math.unit(12, "feet"),
  2692. default: true
  2693. },
  2694. {
  2695. name: "Big",
  2696. height: math.unit(20, "feet")
  2697. },
  2698. {
  2699. name: "Macro",
  2700. height: math.unit(500, "feet")
  2701. },
  2702. {
  2703. name: "Megamacro",
  2704. height: math.unit(20, "miles")
  2705. },
  2706. ]
  2707. ))
  2708. characterMakers.push(() => makeCharacter(
  2709. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2710. {
  2711. front: {
  2712. height: math.unit(6, "feet"),
  2713. weight: math.unit(75, "kg"),
  2714. name: "Front",
  2715. image: {
  2716. source: "./media/characters/shingo/front.svg",
  2717. extra: 706/681,
  2718. bottom: 11/717
  2719. }
  2720. },
  2721. frontAlt: {
  2722. height: math.unit(6, "feet"),
  2723. weight: math.unit(75, "kg"),
  2724. name: "Front (Alt)",
  2725. image: {
  2726. source: "./media/characters/shingo/front-alt.svg",
  2727. extra: 3511 / 3338,
  2728. bottom: 0.005
  2729. }
  2730. },
  2731. paw: {
  2732. height: math.unit(1, "feet"),
  2733. name: "Paw",
  2734. image: {
  2735. source: "./media/characters/shingo/paw.svg"
  2736. }
  2737. },
  2738. },
  2739. [
  2740. {
  2741. name: "Micro",
  2742. height: math.unit(4, "inches")
  2743. },
  2744. {
  2745. name: "Normal",
  2746. height: math.unit(6, "feet"),
  2747. default: true
  2748. },
  2749. {
  2750. name: "Macro",
  2751. height: math.unit(108, "feet")
  2752. },
  2753. {
  2754. name: "Macro+",
  2755. height: math.unit(1500, "feet")
  2756. },
  2757. ]
  2758. ))
  2759. characterMakers.push(() => makeCharacter(
  2760. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2761. {
  2762. side: {
  2763. height: math.unit(6, "feet"),
  2764. weight: math.unit(75, "kg"),
  2765. name: "Side",
  2766. image: {
  2767. source: "./media/characters/aigey/side.svg"
  2768. }
  2769. },
  2770. },
  2771. [
  2772. {
  2773. name: "Macro",
  2774. height: math.unit(200, "feet"),
  2775. default: true
  2776. },
  2777. {
  2778. name: "Megamacro",
  2779. height: math.unit(100, "miles")
  2780. },
  2781. ]
  2782. )
  2783. )
  2784. characterMakers.push(() => makeCharacter(
  2785. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2786. {
  2787. front: {
  2788. height: math.unit(5 + 5 / 12, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Front",
  2791. image: {
  2792. source: "./media/characters/natasha/front.svg",
  2793. extra: 859 / 824,
  2794. bottom: 23 / 879.6
  2795. }
  2796. },
  2797. frontNsfw: {
  2798. height: math.unit(5 + 5 / 12, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Front (NSFW)",
  2801. image: {
  2802. source: "./media/characters/natasha/front-nsfw.svg",
  2803. extra: 859 / 824,
  2804. bottom: 23 / 879.6
  2805. }
  2806. },
  2807. frontErect: {
  2808. height: math.unit(5 + 5 / 12, "feet"),
  2809. weight: math.unit(75, "kg"),
  2810. name: "Front (Erect)",
  2811. image: {
  2812. source: "./media/characters/natasha/front-erect.svg",
  2813. extra: 859 / 824,
  2814. bottom: 23 / 879.6
  2815. }
  2816. },
  2817. back: {
  2818. height: math.unit(5 + 5 / 12, "feet"),
  2819. weight: math.unit(75, "kg"),
  2820. name: "Back",
  2821. image: {
  2822. source: "./media/characters/natasha/back.svg",
  2823. extra: 887.9 / 852.6,
  2824. bottom: 9.7 / 896.4
  2825. }
  2826. },
  2827. backAlt: {
  2828. height: math.unit(5 + 5 / 12, "feet"),
  2829. weight: math.unit(75, "kg"),
  2830. name: "Back (Alt)",
  2831. image: {
  2832. source: "./media/characters/natasha/back-alt.svg",
  2833. extra: 1236.7 / 1192,
  2834. bottom: 22.3 / 1258.2
  2835. }
  2836. },
  2837. dick: {
  2838. height: math.unit(1.772, "feet"),
  2839. name: "Dick",
  2840. image: {
  2841. source: "./media/characters/natasha/dick.svg"
  2842. }
  2843. },
  2844. paw: {
  2845. height: math.unit(0.250, "meters"),
  2846. name: "Paw",
  2847. image: {
  2848. source: "./media/characters/natasha/paw.svg"
  2849. }
  2850. },
  2851. },
  2852. [
  2853. {
  2854. name: "Normal",
  2855. height: math.unit(5 + 5 / 12, "feet")
  2856. },
  2857. {
  2858. name: "Large",
  2859. height: math.unit(12, "feet")
  2860. },
  2861. {
  2862. name: "Macro",
  2863. height: math.unit(100, "feet"),
  2864. default: true
  2865. },
  2866. {
  2867. name: "Macro+",
  2868. height: math.unit(260, "feet")
  2869. },
  2870. {
  2871. name: "Macro++",
  2872. height: math.unit(1, "mile")
  2873. },
  2874. ]
  2875. ))
  2876. characterMakers.push(() => makeCharacter(
  2877. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2878. {
  2879. front: {
  2880. height: math.unit(6, "feet"),
  2881. weight: math.unit(75, "kg"),
  2882. name: "Front",
  2883. image: {
  2884. source: "./media/characters/malik/front.svg"
  2885. }
  2886. },
  2887. side: {
  2888. height: math.unit(6, "feet"),
  2889. weight: math.unit(75, "kg"),
  2890. name: "Side",
  2891. image: {
  2892. source: "./media/characters/malik/side.svg",
  2893. extra: 1.1539
  2894. }
  2895. },
  2896. back: {
  2897. height: math.unit(6, "feet"),
  2898. weight: math.unit(75, "kg"),
  2899. name: "Back",
  2900. image: {
  2901. source: "./media/characters/malik/back.svg"
  2902. }
  2903. },
  2904. },
  2905. [
  2906. {
  2907. name: "Macro",
  2908. height: math.unit(156, "feet"),
  2909. default: true
  2910. },
  2911. {
  2912. name: "Macro+",
  2913. height: math.unit(1188, "feet")
  2914. },
  2915. ]
  2916. ))
  2917. characterMakers.push(() => makeCharacter(
  2918. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2919. {
  2920. front: {
  2921. height: math.unit(6, "feet"),
  2922. weight: math.unit(75, "kg"),
  2923. name: "Front",
  2924. image: {
  2925. source: "./media/characters/sefer/front.svg",
  2926. extra: 848 / 659,
  2927. bottom: 28.3 / 876.442
  2928. }
  2929. },
  2930. back: {
  2931. height: math.unit(6, "feet"),
  2932. weight: math.unit(75, "kg"),
  2933. name: "Back",
  2934. image: {
  2935. source: "./media/characters/sefer/back.svg",
  2936. extra: 864 / 695,
  2937. bottom: 10 / 871
  2938. }
  2939. },
  2940. frontDressed: {
  2941. height: math.unit(6, "feet"),
  2942. weight: math.unit(75, "kg"),
  2943. name: "Front (Dressed)",
  2944. image: {
  2945. source: "./media/characters/sefer/front-dressed.svg",
  2946. extra: 839 / 653,
  2947. bottom: 37.6 / 878
  2948. }
  2949. },
  2950. },
  2951. [
  2952. {
  2953. name: "Normal",
  2954. height: math.unit(6, "feet"),
  2955. default: true
  2956. },
  2957. ]
  2958. ))
  2959. characterMakers.push(() => makeCharacter(
  2960. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2961. {
  2962. body: {
  2963. height: math.unit(2.2428, "meter"),
  2964. weight: math.unit(124.738, "kg"),
  2965. name: "Body",
  2966. image: {
  2967. extra: 1225 / 1050,
  2968. source: "./media/characters/north/front.svg"
  2969. }
  2970. }
  2971. },
  2972. [
  2973. {
  2974. name: "Micro",
  2975. height: math.unit(4, "inches")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(63, "meters")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(101, "miles"),
  2984. default: true
  2985. }
  2986. ]
  2987. ))
  2988. characterMakers.push(() => makeCharacter(
  2989. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2990. {
  2991. angled: {
  2992. height: math.unit(4, "meter"),
  2993. weight: math.unit(150, "kg"),
  2994. name: "Angled",
  2995. image: {
  2996. source: "./media/characters/talan/angled-sfw.svg",
  2997. bottom: 29 / 3734
  2998. }
  2999. },
  3000. angledNsfw: {
  3001. height: math.unit(4, "meter"),
  3002. weight: math.unit(150, "kg"),
  3003. name: "Angled (NSFW)",
  3004. image: {
  3005. source: "./media/characters/talan/angled-nsfw.svg",
  3006. bottom: 29 / 3734
  3007. }
  3008. },
  3009. frontNsfw: {
  3010. height: math.unit(4, "meter"),
  3011. weight: math.unit(150, "kg"),
  3012. name: "Front (NSFW)",
  3013. image: {
  3014. source: "./media/characters/talan/front-nsfw.svg",
  3015. bottom: 29 / 3734
  3016. }
  3017. },
  3018. sideNsfw: {
  3019. height: math.unit(4, "meter"),
  3020. weight: math.unit(150, "kg"),
  3021. name: "Side (NSFW)",
  3022. image: {
  3023. source: "./media/characters/talan/side-nsfw.svg",
  3024. bottom: 29 / 3734
  3025. }
  3026. },
  3027. back: {
  3028. height: math.unit(4, "meter"),
  3029. weight: math.unit(150, "kg"),
  3030. name: "Back",
  3031. image: {
  3032. source: "./media/characters/talan/back.svg"
  3033. }
  3034. },
  3035. dickBottom: {
  3036. height: math.unit(0.621, "meter"),
  3037. name: "Dick (Bottom)",
  3038. image: {
  3039. source: "./media/characters/talan/dick-bottom.svg"
  3040. }
  3041. },
  3042. dickTop: {
  3043. height: math.unit(0.621, "meter"),
  3044. name: "Dick (Top)",
  3045. image: {
  3046. source: "./media/characters/talan/dick-top.svg"
  3047. }
  3048. },
  3049. dickSide: {
  3050. height: math.unit(0.305, "meter"),
  3051. name: "Dick (Side)",
  3052. image: {
  3053. source: "./media/characters/talan/dick-side.svg"
  3054. }
  3055. },
  3056. dickFront: {
  3057. height: math.unit(0.305, "meter"),
  3058. name: "Dick (Front)",
  3059. image: {
  3060. source: "./media/characters/talan/dick-front.svg"
  3061. }
  3062. },
  3063. },
  3064. [
  3065. {
  3066. name: "Normal",
  3067. height: math.unit(4, "meters")
  3068. },
  3069. {
  3070. name: "Macro",
  3071. height: math.unit(100, "meters")
  3072. },
  3073. {
  3074. name: "Megamacro",
  3075. height: math.unit(2, "miles"),
  3076. default: true
  3077. },
  3078. {
  3079. name: "Gigamacro",
  3080. height: math.unit(5000, "miles")
  3081. },
  3082. {
  3083. name: "Teramacro",
  3084. height: math.unit(100, "parsecs")
  3085. }
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3090. {
  3091. front: {
  3092. height: math.unit(2, "meter"),
  3093. weight: math.unit(90, "kg"),
  3094. name: "Front",
  3095. image: {
  3096. source: "./media/characters/gael'rathus/front.svg"
  3097. }
  3098. },
  3099. frontAlt: {
  3100. height: math.unit(2, "meter"),
  3101. weight: math.unit(90, "kg"),
  3102. name: "Front (alt)",
  3103. image: {
  3104. source: "./media/characters/gael'rathus/front-alt.svg"
  3105. }
  3106. },
  3107. frontAlt2: {
  3108. height: math.unit(2, "meter"),
  3109. weight: math.unit(90, "kg"),
  3110. name: "Front (alt 2)",
  3111. image: {
  3112. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3113. }
  3114. }
  3115. },
  3116. [
  3117. {
  3118. name: "Normal",
  3119. height: math.unit(9, "feet"),
  3120. default: true
  3121. },
  3122. {
  3123. name: "Large",
  3124. height: math.unit(25, "feet")
  3125. },
  3126. {
  3127. name: "Macro",
  3128. height: math.unit(0.25, "miles")
  3129. },
  3130. {
  3131. name: "Megamacro",
  3132. height: math.unit(10, "miles")
  3133. }
  3134. ]
  3135. ))
  3136. characterMakers.push(() => makeCharacter(
  3137. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3138. {
  3139. side: {
  3140. height: math.unit(2, "meter"),
  3141. weight: math.unit(140, "kg"),
  3142. name: "Side",
  3143. image: {
  3144. source: "./media/characters/sosha/side.svg",
  3145. bottom: 0.042
  3146. }
  3147. },
  3148. },
  3149. [
  3150. {
  3151. name: "Normal",
  3152. height: math.unit(12, "feet"),
  3153. default: true
  3154. }
  3155. ]
  3156. ))
  3157. characterMakers.push(() => makeCharacter(
  3158. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3159. {
  3160. side: {
  3161. height: math.unit(5 + 5 / 12, "feet"),
  3162. weight: math.unit(170, "kg"),
  3163. name: "Side",
  3164. image: {
  3165. source: "./media/characters/runnola/side.svg",
  3166. extra: 741 / 448,
  3167. bottom: 0.05
  3168. }
  3169. },
  3170. },
  3171. [
  3172. {
  3173. name: "Small",
  3174. height: math.unit(3, "feet")
  3175. },
  3176. {
  3177. name: "Normal",
  3178. height: math.unit(5 + 5 / 12, "feet"),
  3179. default: true
  3180. },
  3181. {
  3182. name: "Big",
  3183. height: math.unit(10, "feet")
  3184. },
  3185. ]
  3186. ))
  3187. characterMakers.push(() => makeCharacter(
  3188. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3189. {
  3190. front: {
  3191. height: math.unit(2, "meter"),
  3192. weight: math.unit(50, "kg"),
  3193. name: "Front",
  3194. image: {
  3195. source: "./media/characters/kurribird/front.svg",
  3196. bottom: 0.015
  3197. }
  3198. },
  3199. frontAlt: {
  3200. height: math.unit(1.5, "meter"),
  3201. weight: math.unit(50, "kg"),
  3202. name: "Front (Alt)",
  3203. image: {
  3204. source: "./media/characters/kurribird/front-alt.svg",
  3205. extra: 1.45
  3206. }
  3207. },
  3208. },
  3209. [
  3210. {
  3211. name: "Normal",
  3212. height: math.unit(7, "feet")
  3213. },
  3214. {
  3215. name: "Big",
  3216. height: math.unit(12, "feet"),
  3217. default: true
  3218. },
  3219. {
  3220. name: "Macro",
  3221. height: math.unit(1500, "feet")
  3222. },
  3223. {
  3224. name: "Megamacro",
  3225. height: math.unit(2, "miles")
  3226. }
  3227. ]
  3228. ))
  3229. characterMakers.push(() => makeCharacter(
  3230. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3231. {
  3232. front: {
  3233. height: math.unit(2, "meter"),
  3234. weight: math.unit(80, "kg"),
  3235. name: "Front",
  3236. image: {
  3237. source: "./media/characters/elbial/front.svg",
  3238. extra: 1643 / 1556,
  3239. bottom: 60.2 / 1696
  3240. }
  3241. },
  3242. side: {
  3243. height: math.unit(2, "meter"),
  3244. weight: math.unit(80, "kg"),
  3245. name: "Side",
  3246. image: {
  3247. source: "./media/characters/elbial/side.svg",
  3248. extra: 1630 / 1565,
  3249. bottom: 71.5 / 1697
  3250. }
  3251. },
  3252. back: {
  3253. height: math.unit(2, "meter"),
  3254. weight: math.unit(80, "kg"),
  3255. name: "Back",
  3256. image: {
  3257. source: "./media/characters/elbial/back.svg",
  3258. extra: 1668 / 1595,
  3259. bottom: 5.6 / 1672
  3260. }
  3261. },
  3262. frontDressed: {
  3263. height: math.unit(2, "meter"),
  3264. weight: math.unit(80, "kg"),
  3265. name: "Front (Dressed)",
  3266. image: {
  3267. source: "./media/characters/elbial/front-dressed.svg",
  3268. extra: 1653 / 1584,
  3269. bottom: 57 / 1708
  3270. }
  3271. },
  3272. genitals: {
  3273. height: math.unit(2 / 3.367, "meter"),
  3274. name: "Genitals",
  3275. image: {
  3276. source: "./media/characters/elbial/genitals.svg"
  3277. }
  3278. },
  3279. },
  3280. [
  3281. {
  3282. name: "Large",
  3283. height: math.unit(100, "feet")
  3284. },
  3285. {
  3286. name: "Macro",
  3287. height: math.unit(500, "feet"),
  3288. default: true
  3289. },
  3290. {
  3291. name: "Megamacro",
  3292. height: math.unit(10, "miles")
  3293. },
  3294. {
  3295. name: "Gigamacro",
  3296. height: math.unit(25000, "miles")
  3297. },
  3298. {
  3299. name: "Full-Size",
  3300. height: math.unit(8000000, "gigaparsecs")
  3301. }
  3302. ]
  3303. ))
  3304. characterMakers.push(() => makeCharacter(
  3305. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3306. {
  3307. front: {
  3308. height: math.unit(2, "meter"),
  3309. weight: math.unit(60, "kg"),
  3310. name: "Front",
  3311. image: {
  3312. source: "./media/characters/noah/front.svg"
  3313. }
  3314. },
  3315. talons: {
  3316. height: math.unit(0.315, "meter"),
  3317. name: "Talons",
  3318. image: {
  3319. source: "./media/characters/noah/talons.svg"
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Large",
  3326. height: math.unit(50, "feet")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(750, "feet"),
  3331. default: true
  3332. },
  3333. {
  3334. name: "Megamacro",
  3335. height: math.unit(50, "miles")
  3336. },
  3337. {
  3338. name: "Gigamacro",
  3339. height: math.unit(100000, "miles")
  3340. },
  3341. {
  3342. name: "Full-Size",
  3343. height: math.unit(3000000000, "miles")
  3344. }
  3345. ]
  3346. ))
  3347. characterMakers.push(() => makeCharacter(
  3348. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3349. {
  3350. front: {
  3351. height: math.unit(2, "meter"),
  3352. weight: math.unit(80, "kg"),
  3353. name: "Front",
  3354. image: {
  3355. source: "./media/characters/natalya/front.svg"
  3356. }
  3357. },
  3358. back: {
  3359. height: math.unit(2, "meter"),
  3360. weight: math.unit(80, "kg"),
  3361. name: "Back",
  3362. image: {
  3363. source: "./media/characters/natalya/back.svg"
  3364. }
  3365. }
  3366. },
  3367. [
  3368. {
  3369. name: "Normal",
  3370. height: math.unit(150, "feet"),
  3371. default: true
  3372. },
  3373. {
  3374. name: "Megamacro",
  3375. height: math.unit(5, "miles")
  3376. },
  3377. {
  3378. name: "Full-Size",
  3379. height: math.unit(600, "kiloparsecs")
  3380. }
  3381. ]
  3382. ))
  3383. characterMakers.push(() => makeCharacter(
  3384. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3385. {
  3386. front: {
  3387. height: math.unit(2, "meter"),
  3388. weight: math.unit(50, "kg"),
  3389. name: "Front",
  3390. image: {
  3391. source: "./media/characters/erestrebah/front.svg",
  3392. extra: 208 / 193,
  3393. bottom: 0.055
  3394. }
  3395. },
  3396. back: {
  3397. height: math.unit(2, "meter"),
  3398. weight: math.unit(50, "kg"),
  3399. name: "Back",
  3400. image: {
  3401. source: "./media/characters/erestrebah/back.svg",
  3402. extra: 1.3
  3403. }
  3404. }
  3405. },
  3406. [
  3407. {
  3408. name: "Normal",
  3409. height: math.unit(10, "feet")
  3410. },
  3411. {
  3412. name: "Large",
  3413. height: math.unit(50, "feet"),
  3414. default: true
  3415. },
  3416. {
  3417. name: "Macro",
  3418. height: math.unit(300, "feet")
  3419. },
  3420. {
  3421. name: "Macro+",
  3422. height: math.unit(750, "feet")
  3423. },
  3424. {
  3425. name: "Megamacro",
  3426. height: math.unit(3, "miles")
  3427. }
  3428. ]
  3429. ))
  3430. characterMakers.push(() => makeCharacter(
  3431. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3432. {
  3433. front: {
  3434. height: math.unit(2, "meter"),
  3435. weight: math.unit(80, "kg"),
  3436. name: "Front",
  3437. image: {
  3438. source: "./media/characters/jennifer/front.svg",
  3439. bottom: 0.11,
  3440. extra: 1.16
  3441. }
  3442. },
  3443. frontAlt: {
  3444. height: math.unit(2, "meter"),
  3445. weight: math.unit(80, "kg"),
  3446. name: "Front (Alt)",
  3447. image: {
  3448. source: "./media/characters/jennifer/front-alt.svg"
  3449. }
  3450. }
  3451. },
  3452. [
  3453. {
  3454. name: "Canon Height",
  3455. height: math.unit(120, "feet"),
  3456. default: true
  3457. },
  3458. {
  3459. name: "Macro+",
  3460. height: math.unit(300, "feet")
  3461. },
  3462. {
  3463. name: "Megamacro",
  3464. height: math.unit(20000, "feet")
  3465. }
  3466. ]
  3467. ))
  3468. characterMakers.push(() => makeCharacter(
  3469. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3470. {
  3471. front: {
  3472. height: math.unit(2, "meter"),
  3473. weight: math.unit(50, "kg"),
  3474. name: "Front",
  3475. image: {
  3476. source: "./media/characters/kalista/front.svg",
  3477. extra: 1947 / 1700,
  3478. bottom: 76.6 / 1412.98
  3479. }
  3480. },
  3481. back: {
  3482. height: math.unit(2, "meter"),
  3483. weight: math.unit(50, "kg"),
  3484. name: "Back",
  3485. image: {
  3486. source: "./media/characters/kalista/back.svg",
  3487. extra: 1366 / 1156,
  3488. bottom: 33.9 / 1362.78
  3489. }
  3490. }
  3491. },
  3492. [
  3493. {
  3494. name: "Uncomfortably Small",
  3495. height: math.unit(10, "feet")
  3496. },
  3497. {
  3498. name: "Small",
  3499. height: math.unit(30, "feet")
  3500. },
  3501. {
  3502. name: "Macro",
  3503. height: math.unit(100, "feet"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Macro+",
  3508. height: math.unit(2000, "feet")
  3509. },
  3510. {
  3511. name: "True Form",
  3512. height: math.unit(8924, "miles")
  3513. }
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(120, "kg"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/ggv/front.svg"
  3525. }
  3526. },
  3527. side: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(120, "kg"),
  3530. name: "Side",
  3531. image: {
  3532. source: "./media/characters/ggv/side.svg"
  3533. }
  3534. }
  3535. },
  3536. [
  3537. {
  3538. name: "Extremely Puny",
  3539. height: math.unit(9 + 5 / 12, "feet")
  3540. },
  3541. {
  3542. name: "Horribly Small",
  3543. height: math.unit(47.7, "miles"),
  3544. default: true
  3545. },
  3546. {
  3547. name: "Reasonably Sized",
  3548. height: math.unit(25000, "parsecs")
  3549. },
  3550. {
  3551. name: "Slightly Uncompressed",
  3552. height: math.unit(7.77e31, "parsecs")
  3553. },
  3554. {
  3555. name: "Omniversal",
  3556. height: math.unit(1e300, "meters")
  3557. },
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(75, "lb"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/napalm/front.svg"
  3569. }
  3570. },
  3571. back: {
  3572. height: math.unit(2, "meter"),
  3573. weight: math.unit(75, "lb"),
  3574. name: "Back",
  3575. image: {
  3576. source: "./media/characters/napalm/back.svg"
  3577. }
  3578. }
  3579. },
  3580. [
  3581. {
  3582. name: "Standard",
  3583. height: math.unit(55, "feet"),
  3584. default: true
  3585. }
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(7 + 5 / 6, "feet"),
  3593. weight: math.unit(325, "lb"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/asana/front.svg",
  3597. extra: 1133 / 1060,
  3598. bottom: 15.2 / 1148.6
  3599. }
  3600. },
  3601. back: {
  3602. height: math.unit(7 + 5 / 6, "feet"),
  3603. weight: math.unit(325, "lb"),
  3604. name: "Back",
  3605. image: {
  3606. source: "./media/characters/asana/back.svg",
  3607. extra: 1114 / 1043,
  3608. bottom: 5 / 1120
  3609. }
  3610. },
  3611. dressedDark: {
  3612. height: math.unit(7 + 5 / 6, "feet"),
  3613. weight: math.unit(325, "lb"),
  3614. name: "Dressed (Dark)",
  3615. image: {
  3616. source: "./media/characters/asana/dressed-dark.svg",
  3617. extra: 1133 / 1060,
  3618. bottom: 15.2 / 1148.6
  3619. }
  3620. },
  3621. dressedLight: {
  3622. height: math.unit(7 + 5 / 6, "feet"),
  3623. weight: math.unit(325, "lb"),
  3624. name: "Dressed (Light)",
  3625. image: {
  3626. source: "./media/characters/asana/dressed-light.svg",
  3627. extra: 1133 / 1060,
  3628. bottom: 15.2 / 1148.6
  3629. }
  3630. },
  3631. },
  3632. [
  3633. {
  3634. name: "Standard",
  3635. height: math.unit(7 + 5 / 6, "feet"),
  3636. default: true
  3637. },
  3638. {
  3639. name: "Large",
  3640. height: math.unit(10, "meters")
  3641. },
  3642. {
  3643. name: "Macro",
  3644. height: math.unit(2500, "meters")
  3645. },
  3646. {
  3647. name: "Megamacro",
  3648. height: math.unit(5e6, "meters")
  3649. },
  3650. {
  3651. name: "Examacro",
  3652. height: math.unit(5e12, "lightyears")
  3653. },
  3654. {
  3655. name: "Max Size",
  3656. height: math.unit(1e31, "lightyears")
  3657. }
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(2, "meter"),
  3665. weight: math.unit(60, "kg"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/ebony/front.svg",
  3669. bottom: 0.03,
  3670. extra: 1045 / 810 + 0.03
  3671. }
  3672. },
  3673. side: {
  3674. height: math.unit(2, "meter"),
  3675. weight: math.unit(60, "kg"),
  3676. name: "Side",
  3677. image: {
  3678. source: "./media/characters/ebony/side.svg",
  3679. bottom: 0.03,
  3680. extra: 1045 / 810 + 0.03
  3681. }
  3682. },
  3683. back: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(60, "kg"),
  3686. name: "Back",
  3687. image: {
  3688. source: "./media/characters/ebony/back.svg",
  3689. bottom: 0.01,
  3690. extra: 1045 / 810 + 0.01
  3691. }
  3692. },
  3693. },
  3694. [
  3695. // TODO check why I did this lol
  3696. {
  3697. name: "Standard",
  3698. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3699. default: true
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(200, "feet")
  3704. },
  3705. {
  3706. name: "Gigamacro",
  3707. height: math.unit(13000, "km")
  3708. }
  3709. ]
  3710. ))
  3711. characterMakers.push(() => makeCharacter(
  3712. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3713. {
  3714. front: {
  3715. height: math.unit(6, "feet"),
  3716. weight: math.unit(175, "lb"),
  3717. name: "Front",
  3718. image: {
  3719. source: "./media/characters/mountain/front.svg",
  3720. extra: 972 / 955,
  3721. bottom: 64 / 1036.6
  3722. }
  3723. },
  3724. back: {
  3725. height: math.unit(6, "feet"),
  3726. weight: math.unit(175, "lb"),
  3727. name: "Back",
  3728. image: {
  3729. source: "./media/characters/mountain/back.svg",
  3730. extra: 970 / 950,
  3731. bottom: 28.25 / 999
  3732. }
  3733. },
  3734. },
  3735. [
  3736. {
  3737. name: "Large",
  3738. height: math.unit(20, "meters")
  3739. },
  3740. {
  3741. name: "Macro",
  3742. height: math.unit(300, "meters")
  3743. },
  3744. {
  3745. name: "Gigamacro",
  3746. height: math.unit(10000, "km"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Examacro",
  3751. height: math.unit(10e9, "lightyears")
  3752. }
  3753. ]
  3754. ))
  3755. characterMakers.push(() => makeCharacter(
  3756. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3757. {
  3758. front: {
  3759. height: math.unit(8, "feet"),
  3760. weight: math.unit(500, "lb"),
  3761. name: "Front",
  3762. image: {
  3763. source: "./media/characters/rick/front.svg"
  3764. }
  3765. }
  3766. },
  3767. [
  3768. {
  3769. name: "Normal",
  3770. height: math.unit(8, "feet"),
  3771. default: true
  3772. },
  3773. {
  3774. name: "Macro",
  3775. height: math.unit(5, "km")
  3776. }
  3777. ]
  3778. ))
  3779. characterMakers.push(() => makeCharacter(
  3780. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3781. {
  3782. front: {
  3783. height: math.unit(8, "feet"),
  3784. weight: math.unit(120, "lb"),
  3785. name: "Front",
  3786. image: {
  3787. source: "./media/characters/ona/front.svg"
  3788. }
  3789. },
  3790. frontAlt: {
  3791. height: math.unit(8, "feet"),
  3792. weight: math.unit(120, "lb"),
  3793. name: "Front (Alt)",
  3794. image: {
  3795. source: "./media/characters/ona/front-alt.svg"
  3796. }
  3797. },
  3798. back: {
  3799. height: math.unit(8, "feet"),
  3800. weight: math.unit(120, "lb"),
  3801. name: "Back",
  3802. image: {
  3803. source: "./media/characters/ona/back.svg"
  3804. }
  3805. },
  3806. foot: {
  3807. height: math.unit(1.1, "feet"),
  3808. name: "Foot",
  3809. image: {
  3810. source: "./media/characters/ona/foot.svg"
  3811. }
  3812. }
  3813. },
  3814. [
  3815. {
  3816. name: "Megamacro",
  3817. height: math.unit(70, "km"),
  3818. default: true
  3819. },
  3820. {
  3821. name: "Gigamacro",
  3822. height: math.unit(681818, "miles")
  3823. },
  3824. {
  3825. name: "Examacro",
  3826. height: math.unit(3800000, "lightyears")
  3827. },
  3828. ]
  3829. ))
  3830. characterMakers.push(() => makeCharacter(
  3831. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3832. {
  3833. front: {
  3834. height: math.unit(12, "feet"),
  3835. weight: math.unit(3000, "lb"),
  3836. name: "Front",
  3837. image: {
  3838. source: "./media/characters/mech/front.svg",
  3839. extra: 2900 / 2770,
  3840. bottom: 110 / 3010
  3841. }
  3842. },
  3843. back: {
  3844. height: math.unit(12, "feet"),
  3845. weight: math.unit(3000, "lb"),
  3846. name: "Back",
  3847. image: {
  3848. source: "./media/characters/mech/back.svg",
  3849. extra: 3011 / 2890,
  3850. bottom: 94 / 3105
  3851. }
  3852. },
  3853. maw: {
  3854. height: math.unit(3.07, "feet"),
  3855. name: "Maw",
  3856. image: {
  3857. source: "./media/characters/mech/maw.svg"
  3858. }
  3859. },
  3860. head: {
  3861. height: math.unit(2.82, "feet"),
  3862. name: "Head",
  3863. image: {
  3864. source: "./media/characters/mech/head.svg"
  3865. }
  3866. },
  3867. dick: {
  3868. height: math.unit(1.43, "feet"),
  3869. name: "Dick",
  3870. image: {
  3871. source: "./media/characters/mech/dick.svg"
  3872. }
  3873. },
  3874. },
  3875. [
  3876. {
  3877. name: "Normal",
  3878. height: math.unit(12, "feet")
  3879. },
  3880. {
  3881. name: "Macro",
  3882. height: math.unit(300, "feet"),
  3883. default: true
  3884. },
  3885. {
  3886. name: "Macro+",
  3887. height: math.unit(1500, "feet")
  3888. },
  3889. ]
  3890. ))
  3891. characterMakers.push(() => makeCharacter(
  3892. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3893. {
  3894. front: {
  3895. height: math.unit(1.3, "meter"),
  3896. weight: math.unit(30, "kg"),
  3897. name: "Front",
  3898. image: {
  3899. source: "./media/characters/gregory/front.svg",
  3900. }
  3901. }
  3902. },
  3903. [
  3904. {
  3905. name: "Normal",
  3906. height: math.unit(1.3, "meter"),
  3907. default: true
  3908. },
  3909. {
  3910. name: "Macro",
  3911. height: math.unit(20, "meter")
  3912. }
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3917. {
  3918. front: {
  3919. height: math.unit(2.8, "meter"),
  3920. weight: math.unit(200, "kg"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/elory/front.svg",
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Normal",
  3930. height: math.unit(2.8, "meter"),
  3931. default: true
  3932. },
  3933. {
  3934. name: "Macro",
  3935. height: math.unit(38, "meter")
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(470, "feet"),
  3944. weight: math.unit(924, "tons"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/angelpatamon/front.svg",
  3948. }
  3949. }
  3950. },
  3951. [
  3952. {
  3953. name: "Normal",
  3954. height: math.unit(470, "feet"),
  3955. default: true
  3956. },
  3957. {
  3958. name: "Deity Size I",
  3959. height: math.unit(28651.2, "km")
  3960. },
  3961. {
  3962. name: "Deity Size II",
  3963. height: math.unit(171907.2, "km")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3969. {
  3970. side: {
  3971. height: math.unit(7.2, "meter"),
  3972. weight: math.unit(8.2, "tons"),
  3973. name: "Side",
  3974. image: {
  3975. source: "./media/characters/cryae/side.svg",
  3976. extra: 3500 / 1500
  3977. }
  3978. }
  3979. },
  3980. [
  3981. {
  3982. name: "Normal",
  3983. height: math.unit(7.2, "meter"),
  3984. default: true
  3985. }
  3986. ]
  3987. ))
  3988. characterMakers.push(() => makeCharacter(
  3989. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3990. {
  3991. front: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(175, "lb"),
  3994. name: "Front",
  3995. image: {
  3996. source: "./media/characters/xera/front.svg",
  3997. extra: 2377 / 1972,
  3998. bottom: 75.5 / 2452
  3999. }
  4000. },
  4001. side: {
  4002. height: math.unit(6, "feet"),
  4003. weight: math.unit(175, "lb"),
  4004. name: "Side",
  4005. image: {
  4006. source: "./media/characters/xera/side.svg",
  4007. extra: 2345 / 2019,
  4008. bottom: 39.7 / 2384
  4009. }
  4010. },
  4011. back: {
  4012. height: math.unit(6, "feet"),
  4013. weight: math.unit(175, "lb"),
  4014. name: "Back",
  4015. image: {
  4016. source: "./media/characters/xera/back.svg",
  4017. extra: 2095 / 1984,
  4018. bottom: 67 / 2166
  4019. }
  4020. },
  4021. },
  4022. [
  4023. {
  4024. name: "Small",
  4025. height: math.unit(10, "feet")
  4026. },
  4027. {
  4028. name: "Macro",
  4029. height: math.unit(500, "meters"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Macro+",
  4034. height: math.unit(10, "km")
  4035. },
  4036. {
  4037. name: "Gigamacro",
  4038. height: math.unit(25000, "km")
  4039. },
  4040. {
  4041. name: "Teramacro",
  4042. height: math.unit(3e6, "km")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4048. {
  4049. front: {
  4050. height: math.unit(6, "feet"),
  4051. weight: math.unit(175, "lb"),
  4052. name: "Front",
  4053. image: {
  4054. source: "./media/characters/nebula/front.svg",
  4055. extra: 2566 / 2362,
  4056. bottom: 81 / 2644
  4057. }
  4058. }
  4059. },
  4060. [
  4061. {
  4062. name: "Small",
  4063. height: math.unit(4.5, "meters")
  4064. },
  4065. {
  4066. name: "Macro",
  4067. height: math.unit(1500, "meters"),
  4068. default: true
  4069. },
  4070. {
  4071. name: "Megamacro",
  4072. height: math.unit(150, "km")
  4073. },
  4074. {
  4075. name: "Gigamacro",
  4076. height: math.unit(27000, "km")
  4077. }
  4078. ]
  4079. ))
  4080. characterMakers.push(() => makeCharacter(
  4081. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4082. {
  4083. front: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(225, "lb"),
  4086. name: "Front",
  4087. image: {
  4088. source: "./media/characters/abysgar/front.svg"
  4089. }
  4090. }
  4091. },
  4092. [
  4093. {
  4094. name: "Small",
  4095. height: math.unit(4.5, "meters")
  4096. },
  4097. {
  4098. name: "Macro",
  4099. height: math.unit(1250, "meters"),
  4100. default: true
  4101. },
  4102. {
  4103. name: "Megamacro",
  4104. height: math.unit(125, "km")
  4105. },
  4106. {
  4107. name: "Gigamacro",
  4108. height: math.unit(26000, "km")
  4109. }
  4110. ]
  4111. ))
  4112. characterMakers.push(() => makeCharacter(
  4113. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4114. {
  4115. front: {
  4116. height: math.unit(6, "feet"),
  4117. weight: math.unit(180, "lb"),
  4118. name: "Front",
  4119. image: {
  4120. source: "./media/characters/yakuz/front.svg"
  4121. }
  4122. }
  4123. },
  4124. [
  4125. {
  4126. name: "Small",
  4127. height: math.unit(5, "meters")
  4128. },
  4129. {
  4130. name: "Macro",
  4131. height: math.unit(1500, "meters"),
  4132. default: true
  4133. },
  4134. {
  4135. name: "Megamacro",
  4136. height: math.unit(200, "km")
  4137. },
  4138. {
  4139. name: "Gigamacro",
  4140. height: math.unit(100000, "km")
  4141. }
  4142. ]
  4143. ))
  4144. characterMakers.push(() => makeCharacter(
  4145. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4146. {
  4147. front: {
  4148. height: math.unit(6, "feet"),
  4149. weight: math.unit(175, "lb"),
  4150. name: "Front",
  4151. image: {
  4152. source: "./media/characters/mirova/front.svg",
  4153. extra: 3334 / 3071,
  4154. bottom: 42 / 3375.6
  4155. }
  4156. }
  4157. },
  4158. [
  4159. {
  4160. name: "Small",
  4161. height: math.unit(5, "meters")
  4162. },
  4163. {
  4164. name: "Macro",
  4165. height: math.unit(900, "meters"),
  4166. default: true
  4167. },
  4168. {
  4169. name: "Megamacro",
  4170. height: math.unit(135, "km")
  4171. },
  4172. {
  4173. name: "Gigamacro",
  4174. height: math.unit(20000, "km")
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4180. {
  4181. side: {
  4182. height: math.unit(28.35, "feet"),
  4183. weight: math.unit(99.75, "tons"),
  4184. name: "Side",
  4185. image: {
  4186. source: "./media/characters/asana-mech/side.svg",
  4187. extra: 923 / 699,
  4188. bottom: 50 / 975
  4189. }
  4190. },
  4191. chaingun: {
  4192. height: math.unit(7, "feet"),
  4193. weight: math.unit(2400, "lb"),
  4194. name: "Chaingun",
  4195. image: {
  4196. source: "./media/characters/asana-mech/chaingun.svg"
  4197. }
  4198. },
  4199. laser: {
  4200. height: math.unit(7.12, "feet"),
  4201. weight: math.unit(2000, "lb"),
  4202. name: "Laser",
  4203. image: {
  4204. source: "./media/characters/asana-mech/laser.svg"
  4205. }
  4206. },
  4207. },
  4208. [
  4209. {
  4210. name: "Normal",
  4211. height: math.unit(28.35, "feet"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "Macro",
  4216. height: math.unit(2500, "feet")
  4217. },
  4218. {
  4219. name: "Megamacro",
  4220. height: math.unit(25, "miles")
  4221. },
  4222. {
  4223. name: "Examacro",
  4224. height: math.unit(6e8, "lightyears")
  4225. },
  4226. ]
  4227. ))
  4228. characterMakers.push(() => makeCharacter(
  4229. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4230. {
  4231. front: {
  4232. height: math.unit(5, "meters"),
  4233. weight: math.unit(1000, "kg"),
  4234. name: "Front",
  4235. image: {
  4236. source: "./media/characters/asche/front.svg",
  4237. extra: 1258 / 1190,
  4238. bottom: 47 / 1305
  4239. }
  4240. },
  4241. frontUnderwear: {
  4242. height: math.unit(5, "meters"),
  4243. weight: math.unit(1000, "kg"),
  4244. name: "Front (Underwear)",
  4245. image: {
  4246. source: "./media/characters/asche/front-underwear.svg",
  4247. extra: 1258 / 1190,
  4248. bottom: 47 / 1305
  4249. }
  4250. },
  4251. frontDressed: {
  4252. height: math.unit(5, "meters"),
  4253. weight: math.unit(1000, "kg"),
  4254. name: "Front (Dressed)",
  4255. image: {
  4256. source: "./media/characters/asche/front-dressed.svg",
  4257. extra: 1258 / 1190,
  4258. bottom: 47 / 1305
  4259. }
  4260. },
  4261. frontArmor: {
  4262. height: math.unit(5, "meters"),
  4263. weight: math.unit(1000, "kg"),
  4264. name: "Front (Armored)",
  4265. image: {
  4266. source: "./media/characters/asche/front-armored.svg",
  4267. extra: 1374 / 1308,
  4268. bottom: 23 / 1397
  4269. }
  4270. },
  4271. mp724: {
  4272. height: math.unit(0.96, "meters"),
  4273. weight: math.unit(38, "kg"),
  4274. name: "H&K MP724",
  4275. image: {
  4276. source: "./media/characters/asche/h&k-mp724.svg"
  4277. }
  4278. },
  4279. side: {
  4280. height: math.unit(5, "meters"),
  4281. weight: math.unit(1000, "kg"),
  4282. name: "Side",
  4283. image: {
  4284. source: "./media/characters/asche/side.svg",
  4285. extra: 1717 / 1609,
  4286. bottom: 0.005
  4287. }
  4288. },
  4289. back: {
  4290. height: math.unit(5, "meters"),
  4291. weight: math.unit(1000, "kg"),
  4292. name: "Back",
  4293. image: {
  4294. source: "./media/characters/asche/back.svg",
  4295. extra: 1570 / 1501
  4296. }
  4297. },
  4298. },
  4299. [
  4300. {
  4301. name: "DEFCON 5",
  4302. height: math.unit(5, "meters")
  4303. },
  4304. {
  4305. name: "DEFCON 4",
  4306. height: math.unit(500, "meters"),
  4307. default: true
  4308. },
  4309. {
  4310. name: "DEFCON 3",
  4311. height: math.unit(5, "km")
  4312. },
  4313. {
  4314. name: "DEFCON 2",
  4315. height: math.unit(500, "km")
  4316. },
  4317. {
  4318. name: "DEFCON 1",
  4319. height: math.unit(500000, "km")
  4320. },
  4321. {
  4322. name: "DEFCON 0",
  4323. height: math.unit(3, "gigaparsecs")
  4324. },
  4325. ]
  4326. ))
  4327. characterMakers.push(() => makeCharacter(
  4328. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4329. {
  4330. front: {
  4331. height: math.unit(2, "meters"),
  4332. weight: math.unit(76, "kg"),
  4333. name: "Front",
  4334. image: {
  4335. source: "./media/characters/gale/front.svg"
  4336. }
  4337. },
  4338. frontAlt1: {
  4339. height: math.unit(2, "meters"),
  4340. weight: math.unit(76, "kg"),
  4341. name: "Front (Alt 1)",
  4342. image: {
  4343. source: "./media/characters/gale/front-alt-1.svg"
  4344. }
  4345. },
  4346. frontAlt2: {
  4347. height: math.unit(2, "meters"),
  4348. weight: math.unit(76, "kg"),
  4349. name: "Front (Alt 2)",
  4350. image: {
  4351. source: "./media/characters/gale/front-alt-2.svg"
  4352. }
  4353. },
  4354. },
  4355. [
  4356. {
  4357. name: "Normal",
  4358. height: math.unit(7, "feet")
  4359. },
  4360. {
  4361. name: "Macro",
  4362. height: math.unit(150, "feet"),
  4363. default: true
  4364. },
  4365. {
  4366. name: "Macro+",
  4367. height: math.unit(300, "feet")
  4368. },
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(2, "meters"),
  4376. weight: math.unit(76, "kg"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/draylen/front.svg"
  4380. }
  4381. }
  4382. },
  4383. [
  4384. {
  4385. name: "Macro",
  4386. height: math.unit(150, "feet"),
  4387. default: true
  4388. }
  4389. ]
  4390. ))
  4391. characterMakers.push(() => makeCharacter(
  4392. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4393. {
  4394. front: {
  4395. height: math.unit(7 + 9 / 12, "feet"),
  4396. weight: math.unit(379, "lbs"),
  4397. name: "Front",
  4398. image: {
  4399. source: "./media/characters/chez/front.svg"
  4400. }
  4401. },
  4402. side: {
  4403. height: math.unit(7 + 9 / 12, "feet"),
  4404. weight: math.unit(379, "lbs"),
  4405. name: "Side",
  4406. image: {
  4407. source: "./media/characters/chez/side.svg"
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Normal",
  4414. height: math.unit(7 + 9 / 12, "feet"),
  4415. default: true
  4416. },
  4417. {
  4418. name: "God King",
  4419. height: math.unit(9750000, "meters")
  4420. }
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(6, "feet"),
  4428. weight: math.unit(275, "lbs"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/kaylum/front.svg",
  4432. bottom: 0.01,
  4433. extra: 1166 / 1031
  4434. }
  4435. },
  4436. frontWingless: {
  4437. height: math.unit(6, "feet"),
  4438. weight: math.unit(275, "lbs"),
  4439. name: "Front (Wingless)",
  4440. image: {
  4441. source: "./media/characters/kaylum/front-wingless.svg",
  4442. bottom: 0.01,
  4443. extra: 1117 / 1031
  4444. }
  4445. }
  4446. },
  4447. [
  4448. {
  4449. name: "Normal",
  4450. height: math.unit(3.05, "meters")
  4451. },
  4452. {
  4453. name: "Master",
  4454. height: math.unit(5.5, "meters")
  4455. },
  4456. {
  4457. name: "Rampage",
  4458. height: math.unit(19, "meters")
  4459. },
  4460. {
  4461. name: "Macro Lite",
  4462. height: math.unit(37, "meters")
  4463. },
  4464. {
  4465. name: "Hyper Predator",
  4466. height: math.unit(61, "meters")
  4467. },
  4468. {
  4469. name: "Macro",
  4470. height: math.unit(138, "meters"),
  4471. default: true
  4472. }
  4473. ]
  4474. ))
  4475. characterMakers.push(() => makeCharacter(
  4476. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4477. {
  4478. front: {
  4479. height: math.unit(6, "feet"),
  4480. weight: math.unit(150, "lbs"),
  4481. name: "Front",
  4482. image: {
  4483. source: "./media/characters/geta/front.svg"
  4484. }
  4485. }
  4486. },
  4487. [
  4488. {
  4489. name: "Micro",
  4490. height: math.unit(3, "inches"),
  4491. default: true
  4492. },
  4493. {
  4494. name: "Normal",
  4495. height: math.unit(5 + 5 / 12, "feet")
  4496. }
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4501. {
  4502. front: {
  4503. height: math.unit(6, "feet"),
  4504. weight: math.unit(300, "lbs"),
  4505. name: "Front",
  4506. image: {
  4507. source: "./media/characters/tyrnn/front.svg"
  4508. }
  4509. }
  4510. },
  4511. [
  4512. {
  4513. name: "Main Height",
  4514. height: math.unit(355, "feet"),
  4515. default: true
  4516. },
  4517. {
  4518. name: "Fave. Height",
  4519. height: math.unit(2400, "feet")
  4520. }
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4525. {
  4526. front: {
  4527. height: math.unit(6, "feet"),
  4528. weight: math.unit(300, "lbs"),
  4529. name: "Front",
  4530. image: {
  4531. source: "./media/characters/appledectomy/front.svg"
  4532. }
  4533. }
  4534. },
  4535. [
  4536. {
  4537. name: "Macro",
  4538. height: math.unit(2500, "feet")
  4539. },
  4540. {
  4541. name: "Megamacro",
  4542. height: math.unit(50, "miles"),
  4543. default: true
  4544. },
  4545. {
  4546. name: "Gigamacro",
  4547. height: math.unit(5000, "miles")
  4548. },
  4549. {
  4550. name: "Teramacro",
  4551. height: math.unit(250000, "miles")
  4552. },
  4553. ]
  4554. ))
  4555. characterMakers.push(() => makeCharacter(
  4556. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4557. {
  4558. front: {
  4559. height: math.unit(6, "feet"),
  4560. weight: math.unit(200, "lbs"),
  4561. name: "Front",
  4562. image: {
  4563. source: "./media/characters/vulpes/front.svg",
  4564. extra: 573 / 543,
  4565. bottom: 0.033
  4566. }
  4567. },
  4568. side: {
  4569. height: math.unit(6, "feet"),
  4570. weight: math.unit(200, "lbs"),
  4571. name: "Side",
  4572. image: {
  4573. source: "./media/characters/vulpes/side.svg",
  4574. extra: 577 / 549,
  4575. bottom: 11 / 588
  4576. }
  4577. },
  4578. back: {
  4579. height: math.unit(6, "feet"),
  4580. weight: math.unit(200, "lbs"),
  4581. name: "Back",
  4582. image: {
  4583. source: "./media/characters/vulpes/back.svg",
  4584. extra: 573 / 549,
  4585. bottom: 20 / 593
  4586. }
  4587. },
  4588. feet: {
  4589. height: math.unit(1.276, "feet"),
  4590. name: "Feet",
  4591. image: {
  4592. source: "./media/characters/vulpes/feet.svg"
  4593. }
  4594. },
  4595. maw: {
  4596. height: math.unit(1.18, "feet"),
  4597. name: "Maw",
  4598. image: {
  4599. source: "./media/characters/vulpes/maw.svg"
  4600. }
  4601. },
  4602. },
  4603. [
  4604. {
  4605. name: "Micro",
  4606. height: math.unit(2, "inches")
  4607. },
  4608. {
  4609. name: "Normal",
  4610. height: math.unit(6.3, "feet")
  4611. },
  4612. {
  4613. name: "Macro",
  4614. height: math.unit(850, "feet")
  4615. },
  4616. {
  4617. name: "Megamacro",
  4618. height: math.unit(7500, "feet"),
  4619. default: true
  4620. },
  4621. {
  4622. name: "Gigamacro",
  4623. height: math.unit(570000, "miles")
  4624. }
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4629. {
  4630. front: {
  4631. height: math.unit(6, "feet"),
  4632. weight: math.unit(210, "lbs"),
  4633. name: "Front",
  4634. image: {
  4635. source: "./media/characters/rain-fallen/front.svg"
  4636. }
  4637. },
  4638. side: {
  4639. height: math.unit(6, "feet"),
  4640. weight: math.unit(210, "lbs"),
  4641. name: "Side",
  4642. image: {
  4643. source: "./media/characters/rain-fallen/side.svg"
  4644. }
  4645. },
  4646. back: {
  4647. height: math.unit(6, "feet"),
  4648. weight: math.unit(210, "lbs"),
  4649. name: "Back",
  4650. image: {
  4651. source: "./media/characters/rain-fallen/back.svg"
  4652. }
  4653. },
  4654. feral: {
  4655. height: math.unit(9, "feet"),
  4656. weight: math.unit(700, "lbs"),
  4657. name: "Feral",
  4658. image: {
  4659. source: "./media/characters/rain-fallen/feral.svg"
  4660. }
  4661. },
  4662. },
  4663. [
  4664. {
  4665. name: "Meddling with Mortals",
  4666. height: math.unit(8 + 8/12, "feet")
  4667. },
  4668. {
  4669. name: "Normal",
  4670. height: math.unit(5, "meter")
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(150, "meter"),
  4675. default: true
  4676. },
  4677. {
  4678. name: "Megamacro",
  4679. height: math.unit(278e6, "meter")
  4680. },
  4681. {
  4682. name: "Gigamacro",
  4683. height: math.unit(2e9, "meter")
  4684. },
  4685. {
  4686. name: "Teramacro",
  4687. height: math.unit(8e12, "meter")
  4688. },
  4689. {
  4690. name: "Devourer",
  4691. height: math.unit(14, "zettameters")
  4692. },
  4693. {
  4694. name: "Scarlet King",
  4695. height: math.unit(18, "yottameters")
  4696. },
  4697. {
  4698. name: "Void",
  4699. height: math.unit(1e88, "yottameters")
  4700. }
  4701. ]
  4702. ))
  4703. characterMakers.push(() => makeCharacter(
  4704. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4705. {
  4706. standing: {
  4707. height: math.unit(6, "feet"),
  4708. weight: math.unit(180, "lbs"),
  4709. name: "Standing",
  4710. image: {
  4711. source: "./media/characters/zaakira/standing.svg",
  4712. extra: 1599/1504,
  4713. bottom: 39/1638
  4714. }
  4715. },
  4716. laying: {
  4717. height: math.unit(3, "feet"),
  4718. weight: math.unit(180, "lbs"),
  4719. name: "Laying",
  4720. image: {
  4721. source: "./media/characters/zaakira/laying.svg"
  4722. }
  4723. },
  4724. },
  4725. [
  4726. {
  4727. name: "Normal",
  4728. height: math.unit(12, "feet")
  4729. },
  4730. {
  4731. name: "Macro",
  4732. height: math.unit(279, "feet"),
  4733. default: true
  4734. }
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4739. {
  4740. femSfw: {
  4741. height: math.unit(8, "feet"),
  4742. weight: math.unit(350, "lb"),
  4743. name: "Fem",
  4744. image: {
  4745. source: "./media/characters/sigvald/fem-sfw.svg",
  4746. extra: 182 / 164,
  4747. bottom: 8.7 / 190.5
  4748. }
  4749. },
  4750. femNsfw: {
  4751. height: math.unit(8, "feet"),
  4752. weight: math.unit(350, "lb"),
  4753. name: "Fem (NSFW)",
  4754. image: {
  4755. source: "./media/characters/sigvald/fem-nsfw.svg",
  4756. extra: 182 / 164,
  4757. bottom: 8.7 / 190.5
  4758. }
  4759. },
  4760. maleNsfw: {
  4761. height: math.unit(8, "feet"),
  4762. weight: math.unit(350, "lb"),
  4763. name: "Male (NSFW)",
  4764. image: {
  4765. source: "./media/characters/sigvald/male-nsfw.svg",
  4766. extra: 182 / 164,
  4767. bottom: 8.7 / 190.5
  4768. }
  4769. },
  4770. hermNsfw: {
  4771. height: math.unit(8, "feet"),
  4772. weight: math.unit(350, "lb"),
  4773. name: "Herm (NSFW)",
  4774. image: {
  4775. source: "./media/characters/sigvald/herm-nsfw.svg",
  4776. extra: 182 / 164,
  4777. bottom: 8.7 / 190.5
  4778. }
  4779. },
  4780. dick: {
  4781. height: math.unit(2.36, "feet"),
  4782. name: "Dick",
  4783. image: {
  4784. source: "./media/characters/sigvald/dick.svg"
  4785. }
  4786. },
  4787. eye: {
  4788. height: math.unit(0.31, "feet"),
  4789. name: "Eye",
  4790. image: {
  4791. source: "./media/characters/sigvald/eye.svg"
  4792. }
  4793. },
  4794. mouth: {
  4795. height: math.unit(0.92, "feet"),
  4796. name: "Mouth",
  4797. image: {
  4798. source: "./media/characters/sigvald/mouth.svg"
  4799. }
  4800. },
  4801. paws: {
  4802. height: math.unit(2.2, "feet"),
  4803. name: "Paws",
  4804. image: {
  4805. source: "./media/characters/sigvald/paws.svg"
  4806. }
  4807. }
  4808. },
  4809. [
  4810. {
  4811. name: "Normal",
  4812. height: math.unit(8, "feet")
  4813. },
  4814. {
  4815. name: "Large",
  4816. height: math.unit(12, "feet")
  4817. },
  4818. {
  4819. name: "Larger",
  4820. height: math.unit(20, "feet")
  4821. },
  4822. {
  4823. name: "Macro",
  4824. height: math.unit(150, "feet")
  4825. },
  4826. {
  4827. name: "Macro+",
  4828. height: math.unit(200, "feet"),
  4829. default: true
  4830. },
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4835. {
  4836. side: {
  4837. height: math.unit(12, "feet"),
  4838. weight: math.unit(2000, "kg"),
  4839. name: "Side",
  4840. image: {
  4841. source: "./media/characters/scott/side.svg",
  4842. extra: 754 / 724,
  4843. bottom: 0.069
  4844. }
  4845. },
  4846. upright: {
  4847. height: math.unit(12, "feet"),
  4848. weight: math.unit(2000, "kg"),
  4849. name: "Upright",
  4850. image: {
  4851. source: "./media/characters/scott/upright.svg",
  4852. extra: 3881 / 3722,
  4853. bottom: 0.05
  4854. }
  4855. },
  4856. },
  4857. [
  4858. {
  4859. name: "Normal",
  4860. height: math.unit(12, "feet"),
  4861. default: true
  4862. },
  4863. ]
  4864. ))
  4865. characterMakers.push(() => makeCharacter(
  4866. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4867. {
  4868. side: {
  4869. height: math.unit(8, "meters"),
  4870. weight: math.unit(84755, "lbs"),
  4871. name: "Side",
  4872. image: {
  4873. source: "./media/characters/tobias/side.svg",
  4874. extra: 1474 / 1096,
  4875. bottom: 38.9 / 1513.1235
  4876. }
  4877. },
  4878. },
  4879. [
  4880. {
  4881. name: "Normal",
  4882. height: math.unit(8, "meters"),
  4883. default: true
  4884. },
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4889. {
  4890. front: {
  4891. height: math.unit(5.5, "feet"),
  4892. weight: math.unit(400, "lbs"),
  4893. name: "Front",
  4894. image: {
  4895. source: "./media/characters/kieran/front.svg",
  4896. extra: 2694 / 2364,
  4897. bottom: 217 / 2908
  4898. }
  4899. },
  4900. side: {
  4901. height: math.unit(5.5, "feet"),
  4902. weight: math.unit(400, "lbs"),
  4903. name: "Side",
  4904. image: {
  4905. source: "./media/characters/kieran/side.svg",
  4906. extra: 875 / 777,
  4907. bottom: 84.6 / 959
  4908. }
  4909. },
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(5.5, "feet"),
  4915. default: true
  4916. },
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4921. {
  4922. side: {
  4923. height: math.unit(2, "meters"),
  4924. weight: math.unit(70, "kg"),
  4925. name: "Side",
  4926. image: {
  4927. source: "./media/characters/sanya/side.svg",
  4928. bottom: 0.02,
  4929. extra: 1.02
  4930. }
  4931. },
  4932. },
  4933. [
  4934. {
  4935. name: "Small",
  4936. height: math.unit(2, "meters")
  4937. },
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(3, "meters")
  4941. },
  4942. {
  4943. name: "Macro",
  4944. height: math.unit(16, "meters"),
  4945. default: true
  4946. },
  4947. ]
  4948. ))
  4949. characterMakers.push(() => makeCharacter(
  4950. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4951. {
  4952. front: {
  4953. height: math.unit(2, "meters"),
  4954. weight: math.unit(120, "kg"),
  4955. name: "Front",
  4956. image: {
  4957. source: "./media/characters/miranda/front.svg",
  4958. extra: 195 / 185,
  4959. bottom: 10.9 / 206.5
  4960. }
  4961. },
  4962. back: {
  4963. height: math.unit(2, "meters"),
  4964. weight: math.unit(120, "kg"),
  4965. name: "Back",
  4966. image: {
  4967. source: "./media/characters/miranda/back.svg",
  4968. extra: 201 / 193,
  4969. bottom: 2.3 / 203.7
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(10, "feet"),
  4977. default: true
  4978. }
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "James", species: ["deer"], tags: ["anthro"] },
  4983. {
  4984. side: {
  4985. height: math.unit(2, "meters"),
  4986. weight: math.unit(100, "kg"),
  4987. name: "Front",
  4988. image: {
  4989. source: "./media/characters/james/front.svg",
  4990. extra: 10 / 8.5
  4991. }
  4992. },
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(8.5, "feet"),
  4998. default: true
  4999. }
  5000. ]
  5001. ))
  5002. characterMakers.push(() => makeCharacter(
  5003. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5004. {
  5005. side: {
  5006. height: math.unit(9.5, "feet"),
  5007. weight: math.unit(2500, "lbs"),
  5008. name: "Side",
  5009. image: {
  5010. source: "./media/characters/heather/side.svg"
  5011. }
  5012. },
  5013. },
  5014. [
  5015. {
  5016. name: "Normal",
  5017. height: math.unit(9.5, "feet"),
  5018. default: true
  5019. }
  5020. ]
  5021. ))
  5022. characterMakers.push(() => makeCharacter(
  5023. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5024. {
  5025. side: {
  5026. height: math.unit(6.5, "feet"),
  5027. weight: math.unit(400, "lbs"),
  5028. name: "Side",
  5029. image: {
  5030. source: "./media/characters/lukas/side.svg",
  5031. extra: 7.25 / 6.5
  5032. }
  5033. },
  5034. },
  5035. [
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(6.5, "feet"),
  5039. default: true
  5040. }
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5045. {
  5046. side: {
  5047. height: math.unit(5, "feet"),
  5048. weight: math.unit(3000, "lbs"),
  5049. name: "Side",
  5050. image: {
  5051. source: "./media/characters/louise/side.svg"
  5052. }
  5053. },
  5054. },
  5055. [
  5056. {
  5057. name: "Normal",
  5058. height: math.unit(5, "feet"),
  5059. default: true
  5060. }
  5061. ]
  5062. ))
  5063. characterMakers.push(() => makeCharacter(
  5064. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5065. {
  5066. side: {
  5067. height: math.unit(6, "feet"),
  5068. weight: math.unit(150, "lbs"),
  5069. name: "Side",
  5070. image: {
  5071. source: "./media/characters/ramona/side.svg"
  5072. }
  5073. },
  5074. },
  5075. [
  5076. {
  5077. name: "Normal",
  5078. height: math.unit(5.3, "meters"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "Macro",
  5083. height: math.unit(20, "stories")
  5084. },
  5085. {
  5086. name: "Macro+",
  5087. height: math.unit(50, "stories")
  5088. },
  5089. ]
  5090. ))
  5091. characterMakers.push(() => makeCharacter(
  5092. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5093. {
  5094. standing: {
  5095. height: math.unit(5.75, "feet"),
  5096. weight: math.unit(160, "lbs"),
  5097. name: "Standing",
  5098. image: {
  5099. source: "./media/characters/deerpuff/standing.svg",
  5100. extra: 682 / 624
  5101. }
  5102. },
  5103. sitting: {
  5104. height: math.unit(5.75 / 1.79, "feet"),
  5105. weight: math.unit(160, "lbs"),
  5106. name: "Sitting",
  5107. image: {
  5108. source: "./media/characters/deerpuff/sitting.svg",
  5109. bottom: 44 / 400,
  5110. extra: 1
  5111. }
  5112. },
  5113. taurLaying: {
  5114. height: math.unit(6, "feet"),
  5115. weight: math.unit(400, "lbs"),
  5116. name: "Taur (Laying)",
  5117. image: {
  5118. source: "./media/characters/deerpuff/taur-laying.svg"
  5119. }
  5120. },
  5121. },
  5122. [
  5123. {
  5124. name: "Puffball",
  5125. height: math.unit(6, "inches")
  5126. },
  5127. {
  5128. name: "Normalpuff",
  5129. height: math.unit(5.75, "feet")
  5130. },
  5131. {
  5132. name: "Macropuff",
  5133. height: math.unit(1500, "feet"),
  5134. default: true
  5135. },
  5136. {
  5137. name: "Megapuff",
  5138. height: math.unit(500, "miles")
  5139. },
  5140. {
  5141. name: "Gigapuff",
  5142. height: math.unit(250000, "miles")
  5143. },
  5144. {
  5145. name: "Omegapuff",
  5146. height: math.unit(1000, "lightyears")
  5147. },
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5152. {
  5153. stomping: {
  5154. height: math.unit(6, "feet"),
  5155. weight: math.unit(170, "lbs"),
  5156. name: "Stomping",
  5157. image: {
  5158. source: "./media/characters/vivian/stomping.svg"
  5159. }
  5160. },
  5161. sitting: {
  5162. height: math.unit(6 / 1.75, "feet"),
  5163. weight: math.unit(170, "lbs"),
  5164. name: "Sitting",
  5165. image: {
  5166. source: "./media/characters/vivian/sitting.svg",
  5167. bottom: 1 / 6.4,
  5168. extra: 1,
  5169. }
  5170. },
  5171. },
  5172. [
  5173. {
  5174. name: "Normal",
  5175. height: math.unit(7, "feet"),
  5176. default: true
  5177. },
  5178. {
  5179. name: "Macro",
  5180. height: math.unit(10, "stories")
  5181. },
  5182. {
  5183. name: "Macro+",
  5184. height: math.unit(30, "stories")
  5185. },
  5186. {
  5187. name: "Megamacro",
  5188. height: math.unit(10, "miles")
  5189. },
  5190. {
  5191. name: "Megamacro+",
  5192. height: math.unit(2750000, "meters")
  5193. },
  5194. ]
  5195. ))
  5196. characterMakers.push(() => makeCharacter(
  5197. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5198. {
  5199. front: {
  5200. height: math.unit(6, "feet"),
  5201. weight: math.unit(160, "lbs"),
  5202. name: "Front",
  5203. image: {
  5204. source: "./media/characters/prince/front.svg",
  5205. extra: 3400 / 3000
  5206. }
  5207. },
  5208. jumping: {
  5209. height: math.unit(6, "feet"),
  5210. weight: math.unit(160, "lbs"),
  5211. name: "Jumping",
  5212. image: {
  5213. source: "./media/characters/prince/jump.svg",
  5214. extra: 2555 / 2134
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Normal",
  5221. height: math.unit(7.75, "feet"),
  5222. default: true
  5223. },
  5224. {
  5225. name: "Not cute",
  5226. height: math.unit(17, "feet")
  5227. },
  5228. {
  5229. name: "I said NOT",
  5230. height: math.unit(91, "feet")
  5231. },
  5232. {
  5233. name: "Please stop",
  5234. height: math.unit(560, "feet")
  5235. },
  5236. {
  5237. name: "What have you done",
  5238. height: math.unit(2200, "feet")
  5239. },
  5240. {
  5241. name: "Deer God",
  5242. height: math.unit(3.6, "miles")
  5243. },
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5248. {
  5249. standing: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(300, "lbs"),
  5252. name: "Standing",
  5253. image: {
  5254. source: "./media/characters/psymon/standing.svg",
  5255. extra: 1888 / 1810,
  5256. bottom: 0.05
  5257. }
  5258. },
  5259. slithering: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(300, "lbs"),
  5262. name: "Slithering",
  5263. image: {
  5264. source: "./media/characters/psymon/slithering.svg",
  5265. extra: 1330 / 1224
  5266. }
  5267. },
  5268. slitheringAlt: {
  5269. height: math.unit(6, "feet"),
  5270. weight: math.unit(300, "lbs"),
  5271. name: "Slithering (Alt)",
  5272. image: {
  5273. source: "./media/characters/psymon/slithering-alt.svg",
  5274. extra: 1330 / 1224
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(11.25, "feet"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Large",
  5286. height: math.unit(27, "feet")
  5287. },
  5288. {
  5289. name: "Giant",
  5290. height: math.unit(87, "feet")
  5291. },
  5292. {
  5293. name: "Macro",
  5294. height: math.unit(365, "feet")
  5295. },
  5296. {
  5297. name: "Megamacro",
  5298. height: math.unit(3, "miles")
  5299. },
  5300. {
  5301. name: "World Serpent",
  5302. height: math.unit(8000, "miles")
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(180, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/daimos/front.svg",
  5315. extra: 4160 / 3897,
  5316. bottom: 0.021
  5317. }
  5318. }
  5319. },
  5320. [
  5321. {
  5322. name: "Normal",
  5323. height: math.unit(8, "feet"),
  5324. default: true
  5325. },
  5326. {
  5327. name: "Big Dog",
  5328. height: math.unit(22, "feet")
  5329. },
  5330. {
  5331. name: "Macro",
  5332. height: math.unit(127, "feet")
  5333. },
  5334. {
  5335. name: "Megamacro",
  5336. height: math.unit(3600, "feet")
  5337. },
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5342. {
  5343. side: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(180, "lbs"),
  5346. name: "Side",
  5347. image: {
  5348. source: "./media/characters/blake/side.svg",
  5349. extra: 1212 / 1120,
  5350. bottom: 0.05
  5351. }
  5352. },
  5353. crouched: {
  5354. height: math.unit(6 * 0.57, "feet"),
  5355. weight: math.unit(180, "lbs"),
  5356. name: "Crouched",
  5357. image: {
  5358. source: "./media/characters/blake/crouched.svg",
  5359. extra: 840 / 587,
  5360. bottom: 0.04
  5361. }
  5362. },
  5363. bent: {
  5364. height: math.unit(6 * 0.75, "feet"),
  5365. weight: math.unit(180, "lbs"),
  5366. name: "Bent",
  5367. image: {
  5368. source: "./media/characters/blake/bent.svg",
  5369. extra: 592 / 544,
  5370. bottom: 0.035
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(8 + 1 / 6, "feet"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Big Backside",
  5382. height: math.unit(37, "feet")
  5383. },
  5384. {
  5385. name: "Subway Shredder",
  5386. height: math.unit(72, "feet")
  5387. },
  5388. {
  5389. name: "City Carver",
  5390. height: math.unit(1675, "feet")
  5391. },
  5392. {
  5393. name: "Tectonic Tweaker",
  5394. height: math.unit(2300, "miles")
  5395. },
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5400. {
  5401. front: {
  5402. height: math.unit(6, "feet"),
  5403. weight: math.unit(180, "lbs"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/guisetto/front.svg",
  5407. extra: 856 / 817,
  5408. bottom: 0.06
  5409. }
  5410. },
  5411. airborne: {
  5412. height: math.unit(6, "feet"),
  5413. weight: math.unit(180, "lbs"),
  5414. name: "Airborne",
  5415. image: {
  5416. source: "./media/characters/guisetto/airborne.svg",
  5417. extra: 584 / 525
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(10 + 11 / 12, "feet"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Large",
  5429. height: math.unit(35, "feet")
  5430. },
  5431. {
  5432. name: "Macro",
  5433. height: math.unit(475, "feet")
  5434. },
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5439. {
  5440. front: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(180, "lbs"),
  5443. name: "Front",
  5444. image: {
  5445. source: "./media/characters/luxor/front.svg",
  5446. extra: 2940 / 2152
  5447. }
  5448. },
  5449. back: {
  5450. height: math.unit(6, "feet"),
  5451. weight: math.unit(180, "lbs"),
  5452. name: "Back",
  5453. image: {
  5454. source: "./media/characters/luxor/back.svg",
  5455. extra: 1083 / 960
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(5 + 5 / 6, "feet"),
  5463. default: true
  5464. },
  5465. {
  5466. name: "Lamp",
  5467. height: math.unit(50, "feet")
  5468. },
  5469. {
  5470. name: "Lämp",
  5471. height: math.unit(300, "feet")
  5472. },
  5473. {
  5474. name: "The sun is a lamp",
  5475. height: math.unit(250000, "miles")
  5476. },
  5477. ]
  5478. ))
  5479. characterMakers.push(() => makeCharacter(
  5480. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5481. {
  5482. front: {
  5483. height: math.unit(6, "feet"),
  5484. weight: math.unit(50, "lbs"),
  5485. name: "Front",
  5486. image: {
  5487. source: "./media/characters/huoyan/front.svg"
  5488. }
  5489. },
  5490. side: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(180, "lbs"),
  5493. name: "Side",
  5494. image: {
  5495. source: "./media/characters/huoyan/side.svg"
  5496. }
  5497. },
  5498. },
  5499. [
  5500. {
  5501. name: "Chef",
  5502. height: math.unit(9, "feet")
  5503. },
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(65, "feet"),
  5507. default: true
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(780, "feet")
  5512. },
  5513. {
  5514. name: "Flaming Mountain",
  5515. height: math.unit(4.8, "miles")
  5516. },
  5517. {
  5518. name: "Celestial",
  5519. height: math.unit(765000, "miles")
  5520. },
  5521. ]
  5522. ))
  5523. characterMakers.push(() => makeCharacter(
  5524. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5525. {
  5526. front: {
  5527. height: math.unit(5 + 3 / 4, "feet"),
  5528. weight: math.unit(120, "lbs"),
  5529. name: "Front",
  5530. image: {
  5531. source: "./media/characters/tails/front.svg"
  5532. }
  5533. }
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(5 + 3 / 4, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(4, "feet"),
  5548. weight: math.unit(50, "lbs"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/rainy/front.svg"
  5552. }
  5553. }
  5554. },
  5555. [
  5556. {
  5557. name: "Macro",
  5558. height: math.unit(800, "feet"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(150, "lbs"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/rainier/front.svg"
  5572. }
  5573. }
  5574. },
  5575. [
  5576. {
  5577. name: "Micro",
  5578. height: math.unit(2, "mm"),
  5579. default: true
  5580. }
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5585. {
  5586. front: {
  5587. height: math.unit(8 + 4/12, "feet"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/andy-renard/front.svg",
  5591. extra: 1839/1726,
  5592. bottom: 134/1973
  5593. }
  5594. },
  5595. back: {
  5596. height: math.unit(8 + 4/12, "feet"),
  5597. name: "Back",
  5598. image: {
  5599. source: "./media/characters/andy-renard/back.svg",
  5600. extra: 1838/1710,
  5601. bottom: 105/1943
  5602. }
  5603. },
  5604. },
  5605. [
  5606. {
  5607. name: "Tall",
  5608. height: math.unit(8 + 4/12, "feet")
  5609. },
  5610. {
  5611. name: "Mini Macro",
  5612. height: math.unit(15, "feet"),
  5613. default: true
  5614. },
  5615. {
  5616. name: "Macro",
  5617. height: math.unit(100, "feet")
  5618. },
  5619. {
  5620. name: "Mega Macro",
  5621. height: math.unit(1000, "feet")
  5622. },
  5623. {
  5624. name: "Giga Macro",
  5625. height: math.unit(10, "miles")
  5626. },
  5627. {
  5628. name: "God Macro",
  5629. height: math.unit(1, "multiverse")
  5630. },
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(210, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/cimmaron/front-sfw.svg",
  5642. extra: 701 / 676,
  5643. bottom: 0.046
  5644. }
  5645. },
  5646. back: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(210, "lbs"),
  5649. name: "Back",
  5650. image: {
  5651. source: "./media/characters/cimmaron/back-sfw.svg",
  5652. extra: 701 / 676,
  5653. bottom: 0.046
  5654. }
  5655. },
  5656. frontNsfw: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(210, "lbs"),
  5659. name: "Front (NSFW)",
  5660. image: {
  5661. source: "./media/characters/cimmaron/front-nsfw.svg",
  5662. extra: 701 / 676,
  5663. bottom: 0.046
  5664. }
  5665. },
  5666. backNsfw: {
  5667. height: math.unit(6, "feet"),
  5668. weight: math.unit(210, "lbs"),
  5669. name: "Back (NSFW)",
  5670. image: {
  5671. source: "./media/characters/cimmaron/back-nsfw.svg",
  5672. extra: 701 / 676,
  5673. bottom: 0.046
  5674. }
  5675. },
  5676. dick: {
  5677. height: math.unit(1.714, "feet"),
  5678. name: "Dick",
  5679. image: {
  5680. source: "./media/characters/cimmaron/dick.svg"
  5681. }
  5682. },
  5683. },
  5684. [
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(6, "feet"),
  5688. default: true
  5689. },
  5690. {
  5691. name: "Macro Mayor",
  5692. height: math.unit(350, "meters")
  5693. },
  5694. ]
  5695. ))
  5696. characterMakers.push(() => makeCharacter(
  5697. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5698. {
  5699. front: {
  5700. height: math.unit(6, "feet"),
  5701. weight: math.unit(200, "lbs"),
  5702. name: "Front",
  5703. image: {
  5704. source: "./media/characters/akari/front.svg",
  5705. extra: 962 / 901,
  5706. bottom: 0.04
  5707. }
  5708. }
  5709. },
  5710. [
  5711. {
  5712. name: "Micro",
  5713. height: math.unit(5, "inches"),
  5714. default: true
  5715. },
  5716. {
  5717. name: "Normal",
  5718. height: math.unit(7, "feet")
  5719. },
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5724. {
  5725. front: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(140, "lbs"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/cynosura/front.svg",
  5731. extra: 896 / 847
  5732. }
  5733. },
  5734. back: {
  5735. height: math.unit(6, "feet"),
  5736. weight: math.unit(140, "lbs"),
  5737. name: "Back",
  5738. image: {
  5739. source: "./media/characters/cynosura/back.svg",
  5740. extra: 1365 / 1250
  5741. }
  5742. },
  5743. },
  5744. [
  5745. {
  5746. name: "Micro",
  5747. height: math.unit(4, "inches")
  5748. },
  5749. {
  5750. name: "Normal",
  5751. height: math.unit(5.75, "feet"),
  5752. default: true
  5753. },
  5754. {
  5755. name: "Tall",
  5756. height: math.unit(10, "feet")
  5757. },
  5758. {
  5759. name: "Big",
  5760. height: math.unit(20, "feet")
  5761. },
  5762. {
  5763. name: "Macro",
  5764. height: math.unit(50, "feet")
  5765. },
  5766. ]
  5767. ))
  5768. characterMakers.push(() => makeCharacter(
  5769. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5770. {
  5771. front: {
  5772. height: math.unit(13 + 2/12, "feet"),
  5773. weight: math.unit(800, "kg"),
  5774. name: "Front",
  5775. image: {
  5776. source: "./media/characters/gin/front.svg",
  5777. extra: 1312/1191,
  5778. bottom: 45/1357
  5779. }
  5780. },
  5781. mouth: {
  5782. height: math.unit(2.39 * 1.8, "feet"),
  5783. name: "Mouth",
  5784. image: {
  5785. source: "./media/characters/gin/mouth.svg"
  5786. }
  5787. },
  5788. hand: {
  5789. height: math.unit(1.57 * 2.19, "feet"),
  5790. name: "Hand",
  5791. image: {
  5792. source: "./media/characters/gin/hand.svg"
  5793. }
  5794. },
  5795. foot: {
  5796. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5797. name: "Foot",
  5798. image: {
  5799. source: "./media/characters/gin/foot.svg"
  5800. }
  5801. },
  5802. sole: {
  5803. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5804. name: "Sole",
  5805. image: {
  5806. source: "./media/characters/gin/sole.svg"
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Very Small",
  5813. height: math.unit(13 + 2 / 12, "feet")
  5814. },
  5815. {
  5816. name: "Micro",
  5817. height: math.unit(600, "miles")
  5818. },
  5819. {
  5820. name: "Regular",
  5821. height: math.unit(20, "earths"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Macro",
  5826. height: math.unit(2.2, "solarradii")
  5827. },
  5828. {
  5829. name: "Teramacro",
  5830. height: math.unit(1.2, "galaxies")
  5831. },
  5832. {
  5833. name: "Omegamacro",
  5834. height: math.unit(200, "universes")
  5835. },
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(6 + 1 / 6, "feet"),
  5843. weight: math.unit(178, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/guy/front.svg"
  5847. }
  5848. }
  5849. },
  5850. [
  5851. {
  5852. name: "Normal",
  5853. height: math.unit(6 + 1 / 6, "feet"),
  5854. default: true
  5855. },
  5856. {
  5857. name: "Large",
  5858. height: math.unit(25 + 7 / 12, "feet")
  5859. },
  5860. {
  5861. name: "Macro",
  5862. height: math.unit(60 + 9 / 12, "feet")
  5863. },
  5864. {
  5865. name: "Macro+",
  5866. height: math.unit(246, "feet")
  5867. },
  5868. {
  5869. name: "Macro++",
  5870. height: math.unit(878, "feet")
  5871. }
  5872. ]
  5873. ))
  5874. characterMakers.push(() => makeCharacter(
  5875. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5876. {
  5877. front: {
  5878. height: math.unit(9, "feet"),
  5879. weight: math.unit(800, "lbs"),
  5880. name: "Front",
  5881. image: {
  5882. source: "./media/characters/tiberius/front.svg",
  5883. extra: 2295 / 2071
  5884. }
  5885. },
  5886. back: {
  5887. height: math.unit(9, "feet"),
  5888. weight: math.unit(800, "lbs"),
  5889. name: "Back",
  5890. image: {
  5891. source: "./media/characters/tiberius/back.svg",
  5892. extra: 2373 / 2160
  5893. }
  5894. },
  5895. },
  5896. [
  5897. {
  5898. name: "Normal",
  5899. height: math.unit(9, "feet"),
  5900. default: true
  5901. }
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5906. {
  5907. front: {
  5908. height: math.unit(6, "feet"),
  5909. weight: math.unit(600, "lbs"),
  5910. name: "Front",
  5911. image: {
  5912. source: "./media/characters/surgo/front.svg",
  5913. extra: 3591 / 2227
  5914. }
  5915. },
  5916. back: {
  5917. height: math.unit(6, "feet"),
  5918. weight: math.unit(600, "lbs"),
  5919. name: "Back",
  5920. image: {
  5921. source: "./media/characters/surgo/back.svg",
  5922. extra: 3557 / 2228
  5923. }
  5924. },
  5925. laying: {
  5926. height: math.unit(6 * 0.85, "feet"),
  5927. weight: math.unit(600, "lbs"),
  5928. name: "Laying",
  5929. image: {
  5930. source: "./media/characters/surgo/laying.svg"
  5931. }
  5932. },
  5933. },
  5934. [
  5935. {
  5936. name: "Normal",
  5937. height: math.unit(6, "feet"),
  5938. default: true
  5939. }
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5944. {
  5945. side: {
  5946. height: math.unit(6, "feet"),
  5947. weight: math.unit(150, "lbs"),
  5948. name: "Side",
  5949. image: {
  5950. source: "./media/characters/cibus/side.svg",
  5951. extra: 800 / 400
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(6, "feet"),
  5959. default: true
  5960. }
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(6, "feet"),
  5968. weight: math.unit(240, "lbs"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/nibbles/front.svg"
  5972. }
  5973. },
  5974. side: {
  5975. height: math.unit(6, "feet"),
  5976. weight: math.unit(240, "lbs"),
  5977. name: "Side",
  5978. image: {
  5979. source: "./media/characters/nibbles/side.svg"
  5980. }
  5981. },
  5982. },
  5983. [
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(9, "feet"),
  5987. default: true
  5988. }
  5989. ]
  5990. ))
  5991. characterMakers.push(() => makeCharacter(
  5992. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5993. {
  5994. side: {
  5995. height: math.unit(5 + 1 / 6, "feet"),
  5996. weight: math.unit(130, "lbs"),
  5997. name: "Side",
  5998. image: {
  5999. source: "./media/characters/rikky/side.svg",
  6000. extra: 851 / 801
  6001. }
  6002. },
  6003. },
  6004. [
  6005. {
  6006. name: "Normal",
  6007. height: math.unit(5 + 1 / 6, "feet")
  6008. },
  6009. {
  6010. name: "Macro",
  6011. height: math.unit(152, "feet"),
  6012. default: true
  6013. },
  6014. {
  6015. name: "Megamacro",
  6016. height: math.unit(7, "miles")
  6017. }
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6022. {
  6023. side: {
  6024. height: math.unit(370, "cm"),
  6025. weight: math.unit(350, "lbs"),
  6026. name: "Side",
  6027. image: {
  6028. source: "./media/characters/malfressa/side.svg"
  6029. }
  6030. },
  6031. walking: {
  6032. height: math.unit(370, "cm"),
  6033. weight: math.unit(350, "lbs"),
  6034. name: "Walking",
  6035. image: {
  6036. source: "./media/characters/malfressa/walking.svg"
  6037. }
  6038. },
  6039. feral: {
  6040. height: math.unit(2500, "cm"),
  6041. weight: math.unit(100000, "lbs"),
  6042. name: "Feral",
  6043. image: {
  6044. source: "./media/characters/malfressa/feral.svg",
  6045. extra: 2108 / 837,
  6046. bottom: 0.02
  6047. }
  6048. },
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(370, "cm")
  6054. },
  6055. {
  6056. name: "Macro",
  6057. height: math.unit(300, "meters"),
  6058. default: true
  6059. }
  6060. ]
  6061. ))
  6062. characterMakers.push(() => makeCharacter(
  6063. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6064. {
  6065. front: {
  6066. height: math.unit(6, "feet"),
  6067. weight: math.unit(60, "kg"),
  6068. name: "Front",
  6069. image: {
  6070. source: "./media/characters/jaro/front.svg"
  6071. }
  6072. },
  6073. back: {
  6074. height: math.unit(6, "feet"),
  6075. weight: math.unit(60, "kg"),
  6076. name: "Back",
  6077. image: {
  6078. source: "./media/characters/jaro/back.svg"
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Micro",
  6085. height: math.unit(7, "inches")
  6086. },
  6087. {
  6088. name: "Normal",
  6089. height: math.unit(5.5, "feet"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Minimacro",
  6094. height: math.unit(20, "feet")
  6095. },
  6096. {
  6097. name: "Macro",
  6098. height: math.unit(200, "meters")
  6099. }
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6104. {
  6105. front: {
  6106. height: math.unit(6, "feet"),
  6107. weight: math.unit(195, "lb"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/rogue/front.svg"
  6111. }
  6112. },
  6113. },
  6114. [
  6115. {
  6116. name: "Macro",
  6117. height: math.unit(90, "feet"),
  6118. default: true
  6119. },
  6120. ]
  6121. ))
  6122. characterMakers.push(() => makeCharacter(
  6123. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6124. {
  6125. front: {
  6126. height: math.unit(5 + 8 / 12, "feet"),
  6127. weight: math.unit(140, "lb"),
  6128. name: "Front",
  6129. image: {
  6130. source: "./media/characters/piper/front.svg",
  6131. extra: 3948/3655,
  6132. bottom: 0/3948
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Micro",
  6139. height: math.unit(2, "inches")
  6140. },
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(5 + 8 / 12, "feet")
  6144. },
  6145. {
  6146. name: "Macro",
  6147. height: math.unit(250, "feet"),
  6148. default: true
  6149. },
  6150. {
  6151. name: "Megamacro",
  6152. height: math.unit(7, "miles")
  6153. },
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6158. {
  6159. front: {
  6160. height: math.unit(6, "feet"),
  6161. weight: math.unit(220, "lb"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/gemini/front.svg"
  6165. }
  6166. },
  6167. back: {
  6168. height: math.unit(6, "feet"),
  6169. weight: math.unit(220, "lb"),
  6170. name: "Back",
  6171. image: {
  6172. source: "./media/characters/gemini/back.svg"
  6173. }
  6174. },
  6175. kneeling: {
  6176. height: math.unit(6 / 1.5, "feet"),
  6177. weight: math.unit(220, "lb"),
  6178. name: "Kneeling",
  6179. image: {
  6180. source: "./media/characters/gemini/kneeling.svg",
  6181. bottom: 0.02
  6182. }
  6183. },
  6184. },
  6185. [
  6186. {
  6187. name: "Macro",
  6188. height: math.unit(300, "meters"),
  6189. default: true
  6190. },
  6191. {
  6192. name: "Megamacro",
  6193. height: math.unit(6900, "meters")
  6194. },
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6199. {
  6200. anthro: {
  6201. height: math.unit(2.35, "meters"),
  6202. weight: math.unit(73, "kg"),
  6203. name: "Anthro",
  6204. image: {
  6205. source: "./media/characters/alicia/anthro.svg",
  6206. extra: 2571 / 2385,
  6207. bottom: 75 / 2648
  6208. }
  6209. },
  6210. paw: {
  6211. height: math.unit(1.32, "feet"),
  6212. name: "Paw",
  6213. image: {
  6214. source: "./media/characters/alicia/paw.svg"
  6215. }
  6216. },
  6217. feral: {
  6218. height: math.unit(1.69, "meters"),
  6219. weight: math.unit(73, "kg"),
  6220. name: "Feral",
  6221. image: {
  6222. source: "./media/characters/alicia/feral.svg",
  6223. extra: 2123 / 1715,
  6224. bottom: 222 / 2349
  6225. }
  6226. },
  6227. },
  6228. [
  6229. {
  6230. name: "Normal",
  6231. height: math.unit(2.35, "meters")
  6232. },
  6233. {
  6234. name: "Macro",
  6235. height: math.unit(60, "meters"),
  6236. default: true
  6237. },
  6238. {
  6239. name: "Megamacro",
  6240. height: math.unit(10000, "kilometers")
  6241. },
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6246. {
  6247. front: {
  6248. height: math.unit(7, "feet"),
  6249. weight: math.unit(250, "lbs"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/archy/front.svg"
  6253. }
  6254. }
  6255. },
  6256. [
  6257. {
  6258. name: "Micro",
  6259. height: math.unit(1, "inch")
  6260. },
  6261. {
  6262. name: "Shorty",
  6263. height: math.unit(5, "feet")
  6264. },
  6265. {
  6266. name: "Normal",
  6267. height: math.unit(7, "feet")
  6268. },
  6269. {
  6270. name: "Macro",
  6271. height: math.unit(600, "meters"),
  6272. default: true
  6273. },
  6274. {
  6275. name: "Megamacro",
  6276. height: math.unit(1, "mile")
  6277. },
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6282. {
  6283. front: {
  6284. height: math.unit(1.65, "meters"),
  6285. weight: math.unit(74, "kg"),
  6286. name: "Front",
  6287. image: {
  6288. source: "./media/characters/berri/front.svg",
  6289. extra: 857 / 837,
  6290. bottom: 18 / 877
  6291. }
  6292. },
  6293. bum: {
  6294. height: math.unit(1.46, "feet"),
  6295. name: "Bum",
  6296. image: {
  6297. source: "./media/characters/berri/bum.svg"
  6298. }
  6299. },
  6300. mouth: {
  6301. height: math.unit(0.44, "feet"),
  6302. name: "Mouth",
  6303. image: {
  6304. source: "./media/characters/berri/mouth.svg"
  6305. }
  6306. },
  6307. paw: {
  6308. height: math.unit(0.826, "feet"),
  6309. name: "Paw",
  6310. image: {
  6311. source: "./media/characters/berri/paw.svg"
  6312. }
  6313. },
  6314. },
  6315. [
  6316. {
  6317. name: "Normal",
  6318. height: math.unit(1.65, "meters")
  6319. },
  6320. {
  6321. name: "Macro",
  6322. height: math.unit(60, "m"),
  6323. default: true
  6324. },
  6325. {
  6326. name: "Megamacro",
  6327. height: math.unit(9.213, "km")
  6328. },
  6329. {
  6330. name: "Planet Eater",
  6331. height: math.unit(489, "megameters")
  6332. },
  6333. {
  6334. name: "Teramacro",
  6335. height: math.unit(2471635000000, "meters")
  6336. },
  6337. {
  6338. name: "Examacro",
  6339. height: math.unit(8.0624e+26, "meters")
  6340. }
  6341. ]
  6342. ))
  6343. characterMakers.push(() => makeCharacter(
  6344. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6345. {
  6346. front: {
  6347. height: math.unit(1.72, "meters"),
  6348. weight: math.unit(68, "kg"),
  6349. name: "Front",
  6350. image: {
  6351. source: "./media/characters/lexi/front.svg"
  6352. }
  6353. }
  6354. },
  6355. [
  6356. {
  6357. name: "Very Smol",
  6358. height: math.unit(10, "mm")
  6359. },
  6360. {
  6361. name: "Micro",
  6362. height: math.unit(6.8, "cm"),
  6363. default: true
  6364. },
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(1.72, "m")
  6368. }
  6369. ]
  6370. ))
  6371. characterMakers.push(() => makeCharacter(
  6372. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6373. {
  6374. front: {
  6375. height: math.unit(1.69, "meters"),
  6376. weight: math.unit(68, "kg"),
  6377. name: "Front",
  6378. image: {
  6379. source: "./media/characters/martin/front.svg",
  6380. extra: 596 / 581
  6381. }
  6382. }
  6383. },
  6384. [
  6385. {
  6386. name: "Micro",
  6387. height: math.unit(6.85, "cm"),
  6388. default: true
  6389. },
  6390. {
  6391. name: "Normal",
  6392. height: math.unit(1.69, "m")
  6393. }
  6394. ]
  6395. ))
  6396. characterMakers.push(() => makeCharacter(
  6397. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6398. {
  6399. front: {
  6400. height: math.unit(1.69, "meters"),
  6401. weight: math.unit(68, "kg"),
  6402. name: "Front",
  6403. image: {
  6404. source: "./media/characters/juno/front.svg"
  6405. }
  6406. }
  6407. },
  6408. [
  6409. {
  6410. name: "Micro",
  6411. height: math.unit(7, "cm")
  6412. },
  6413. {
  6414. name: "Normal",
  6415. height: math.unit(1.89, "m")
  6416. },
  6417. {
  6418. name: "Macro",
  6419. height: math.unit(353, "meters"),
  6420. default: true
  6421. }
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6426. {
  6427. front: {
  6428. height: math.unit(1.93, "meters"),
  6429. weight: math.unit(83, "kg"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/samantha/front.svg"
  6433. }
  6434. },
  6435. frontClothed: {
  6436. height: math.unit(1.93, "meters"),
  6437. weight: math.unit(83, "kg"),
  6438. name: "Front (Clothed)",
  6439. image: {
  6440. source: "./media/characters/samantha/front-clothed.svg"
  6441. }
  6442. },
  6443. back: {
  6444. height: math.unit(1.93, "meters"),
  6445. weight: math.unit(83, "kg"),
  6446. name: "Back",
  6447. image: {
  6448. source: "./media/characters/samantha/back.svg"
  6449. }
  6450. },
  6451. },
  6452. [
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(1.93, "m")
  6456. },
  6457. {
  6458. name: "Macro",
  6459. height: math.unit(74, "meters"),
  6460. default: true
  6461. },
  6462. {
  6463. name: "Macro+",
  6464. height: math.unit(223, "meters"),
  6465. },
  6466. {
  6467. name: "Megamacro",
  6468. height: math.unit(8381, "meters"),
  6469. },
  6470. {
  6471. name: "Megamacro+",
  6472. height: math.unit(12000, "kilometers")
  6473. },
  6474. ]
  6475. ))
  6476. characterMakers.push(() => makeCharacter(
  6477. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6478. {
  6479. front: {
  6480. height: math.unit(1.92, "meters"),
  6481. weight: math.unit(80, "kg"),
  6482. name: "Front",
  6483. image: {
  6484. source: "./media/characters/dr-clay/front.svg"
  6485. }
  6486. },
  6487. frontClothed: {
  6488. height: math.unit(1.92, "meters"),
  6489. weight: math.unit(80, "kg"),
  6490. name: "Front (Clothed)",
  6491. image: {
  6492. source: "./media/characters/dr-clay/front-clothed.svg"
  6493. }
  6494. }
  6495. },
  6496. [
  6497. {
  6498. name: "Normal",
  6499. height: math.unit(1.92, "m")
  6500. },
  6501. {
  6502. name: "Macro",
  6503. height: math.unit(214, "meters"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Macro+",
  6508. height: math.unit(12.237, "meters"),
  6509. },
  6510. {
  6511. name: "Megamacro",
  6512. height: math.unit(557, "megameters"),
  6513. },
  6514. {
  6515. name: "Unimaginable",
  6516. height: math.unit(120e9, "lightyears")
  6517. },
  6518. ]
  6519. ))
  6520. characterMakers.push(() => makeCharacter(
  6521. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6522. {
  6523. front: {
  6524. height: math.unit(2, "meters"),
  6525. weight: math.unit(80, "kg"),
  6526. name: "Front",
  6527. image: {
  6528. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6529. }
  6530. }
  6531. },
  6532. [
  6533. {
  6534. name: "Teramacro",
  6535. height: math.unit(500000, "lightyears"),
  6536. default: true
  6537. },
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6542. {
  6543. crux: {
  6544. height: math.unit(2, "meters"),
  6545. weight: math.unit(150, "kg"),
  6546. name: "Crux",
  6547. image: {
  6548. source: "./media/characters/vemus/crux.svg",
  6549. extra: 1074/936,
  6550. bottom: 23/1097
  6551. }
  6552. },
  6553. skunkTanuki: {
  6554. height: math.unit(2, "meters"),
  6555. weight: math.unit(150, "kg"),
  6556. name: "Skunk-Tanuki",
  6557. image: {
  6558. source: "./media/characters/vemus/skunk-tanuki.svg",
  6559. extra: 926/893,
  6560. bottom: 20/946
  6561. }
  6562. },
  6563. },
  6564. [
  6565. {
  6566. name: "Normal",
  6567. height: math.unit(3.75, "meters"),
  6568. default: true
  6569. },
  6570. {
  6571. name: "Big",
  6572. height: math.unit(8, "meters")
  6573. },
  6574. {
  6575. name: "Macro",
  6576. height: math.unit(100, "meters")
  6577. },
  6578. {
  6579. name: "Macro+",
  6580. height: math.unit(1500, "meters")
  6581. },
  6582. {
  6583. name: "Stellar",
  6584. height: math.unit(14e8, "meters")
  6585. },
  6586. ]
  6587. ))
  6588. characterMakers.push(() => makeCharacter(
  6589. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6590. {
  6591. front: {
  6592. height: math.unit(2, "meters"),
  6593. weight: math.unit(70, "kg"),
  6594. name: "Front",
  6595. image: {
  6596. source: "./media/characters/beherit/front.svg",
  6597. extra: 1408 / 1242
  6598. }
  6599. }
  6600. },
  6601. [
  6602. {
  6603. name: "Normal",
  6604. height: math.unit(6, "feet")
  6605. },
  6606. {
  6607. name: "Lorg",
  6608. height: math.unit(25, "feet"),
  6609. default: true
  6610. },
  6611. {
  6612. name: "Lorger",
  6613. height: math.unit(75, "feet")
  6614. },
  6615. {
  6616. name: "Macro",
  6617. height: math.unit(200, "meters")
  6618. },
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(2, "meters"),
  6626. weight: math.unit(150, "kg"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/everett/front.svg",
  6630. extra: 2038 / 1737,
  6631. bottom: 0.03
  6632. }
  6633. },
  6634. paw: {
  6635. height: math.unit(2 / 3.6, "meters"),
  6636. name: "Paw",
  6637. image: {
  6638. source: "./media/characters/everett/paw.svg"
  6639. }
  6640. },
  6641. },
  6642. [
  6643. {
  6644. name: "Normal",
  6645. height: math.unit(15, "feet"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Lorg",
  6650. height: math.unit(70, "feet"),
  6651. default: true
  6652. },
  6653. {
  6654. name: "Lorger",
  6655. height: math.unit(250, "feet")
  6656. },
  6657. {
  6658. name: "Macro",
  6659. height: math.unit(500, "meters")
  6660. },
  6661. ]
  6662. ))
  6663. characterMakers.push(() => makeCharacter(
  6664. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6665. {
  6666. front: {
  6667. height: math.unit(2, "meters"),
  6668. weight: math.unit(86, "kg"),
  6669. name: "Front",
  6670. image: {
  6671. source: "./media/characters/rose/front.svg",
  6672. extra: 1785/1636,
  6673. bottom: 30/1815
  6674. }
  6675. },
  6676. frontSporty: {
  6677. height: math.unit(2, "meters"),
  6678. weight: math.unit(86, "kg"),
  6679. name: "Front (Sporty)",
  6680. image: {
  6681. source: "./media/characters/rose/front-sporty.svg",
  6682. extra: 350/335,
  6683. bottom: 10/360
  6684. }
  6685. },
  6686. frontAlt: {
  6687. height: math.unit(1.6, "meters"),
  6688. weight: math.unit(86, "kg"),
  6689. name: "Front (Alt)",
  6690. image: {
  6691. source: "./media/characters/rose/front-alt.svg",
  6692. extra: 299/283,
  6693. bottom: 3/302
  6694. }
  6695. },
  6696. plush: {
  6697. height: math.unit(2, "meters"),
  6698. weight: math.unit(86/3, "kg"),
  6699. name: "Plush",
  6700. image: {
  6701. source: "./media/characters/rose/plush.svg",
  6702. extra: 361/337,
  6703. bottom: 11/372
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "True Micro",
  6710. height: math.unit(9, "cm")
  6711. },
  6712. {
  6713. name: "Micro",
  6714. height: math.unit(16, "cm")
  6715. },
  6716. {
  6717. name: "Normal",
  6718. height: math.unit(1.85, "meters"),
  6719. default: true
  6720. },
  6721. {
  6722. name: "Mini-Macro",
  6723. height: math.unit(5, "meters")
  6724. },
  6725. {
  6726. name: "Macro",
  6727. height: math.unit(15, "meters")
  6728. },
  6729. {
  6730. name: "True Macro",
  6731. height: math.unit(40, "meters")
  6732. },
  6733. {
  6734. name: "City Scale",
  6735. height: math.unit(1, "km")
  6736. },
  6737. ]
  6738. ))
  6739. characterMakers.push(() => makeCharacter(
  6740. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6741. {
  6742. front: {
  6743. height: math.unit(2, "meters"),
  6744. weight: math.unit(350, "lbs"),
  6745. name: "Front",
  6746. image: {
  6747. source: "./media/characters/regal/front.svg"
  6748. }
  6749. },
  6750. back: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(350, "lbs"),
  6753. name: "Back",
  6754. image: {
  6755. source: "./media/characters/regal/back.svg"
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Macro",
  6762. height: math.unit(350, "feet"),
  6763. default: true
  6764. }
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(4 + 11 / 12, "feet"),
  6772. weight: math.unit(100, "lbs"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/opal/front.svg"
  6776. }
  6777. },
  6778. frontAlt: {
  6779. height: math.unit(4 + 11 / 12, "feet"),
  6780. weight: math.unit(100, "lbs"),
  6781. name: "Front (Alt)",
  6782. image: {
  6783. source: "./media/characters/opal/front-alt.svg"
  6784. }
  6785. },
  6786. },
  6787. [
  6788. {
  6789. name: "Small",
  6790. height: math.unit(4 + 11 / 12, "feet")
  6791. },
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(20, "feet"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Macro",
  6799. height: math.unit(120, "feet")
  6800. },
  6801. {
  6802. name: "Megamacro",
  6803. height: math.unit(80, "miles")
  6804. },
  6805. {
  6806. name: "True Size",
  6807. height: math.unit(100000, "lightyears")
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6813. {
  6814. front: {
  6815. height: math.unit(6, "feet"),
  6816. weight: math.unit(200, "lbs"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/vector-wuff/front.svg"
  6820. }
  6821. }
  6822. },
  6823. [
  6824. {
  6825. name: "Normal",
  6826. height: math.unit(2.8, "meters")
  6827. },
  6828. {
  6829. name: "Macro",
  6830. height: math.unit(450, "meters"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Megamacro",
  6835. height: math.unit(15, "kilometers")
  6836. }
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(256, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/dannik/front.svg"
  6848. }
  6849. }
  6850. },
  6851. [
  6852. {
  6853. name: "Macro",
  6854. height: math.unit(69.57, "meters"),
  6855. default: true
  6856. },
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(120, "lbs"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/azura-saharah/front.svg"
  6868. }
  6869. },
  6870. back: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(120, "lbs"),
  6873. name: "Back",
  6874. image: {
  6875. source: "./media/characters/azura-saharah/back.svg"
  6876. }
  6877. },
  6878. },
  6879. [
  6880. {
  6881. name: "Macro",
  6882. height: math.unit(100, "feet"),
  6883. default: true
  6884. },
  6885. ]
  6886. ))
  6887. characterMakers.push(() => makeCharacter(
  6888. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6889. {
  6890. side: {
  6891. height: math.unit(5 + 4 / 12, "feet"),
  6892. weight: math.unit(163, "lbs"),
  6893. name: "Side",
  6894. image: {
  6895. source: "./media/characters/kennedy/side.svg"
  6896. }
  6897. }
  6898. },
  6899. [
  6900. {
  6901. name: "Standard Doggo",
  6902. height: math.unit(5 + 4 / 12, "feet")
  6903. },
  6904. {
  6905. name: "Big Doggo",
  6906. height: math.unit(25 + 3 / 12, "feet"),
  6907. default: true
  6908. },
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(90, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/odi-lunar/front.svg"
  6920. }
  6921. }
  6922. },
  6923. [
  6924. {
  6925. name: "Micro",
  6926. height: math.unit(3, "inches"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Normal",
  6931. height: math.unit(5.5, "feet")
  6932. }
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6937. {
  6938. back: {
  6939. height: math.unit(6, "feet"),
  6940. weight: math.unit(220, "lbs"),
  6941. name: "Back",
  6942. image: {
  6943. source: "./media/characters/mandake/back.svg"
  6944. }
  6945. }
  6946. },
  6947. [
  6948. {
  6949. name: "Normal",
  6950. height: math.unit(7, "feet"),
  6951. default: true
  6952. },
  6953. {
  6954. name: "Macro",
  6955. height: math.unit(78, "feet")
  6956. },
  6957. {
  6958. name: "Macro+",
  6959. height: math.unit(300, "meters")
  6960. },
  6961. {
  6962. name: "Macro++",
  6963. height: math.unit(2400, "feet")
  6964. },
  6965. {
  6966. name: "Megamacro",
  6967. height: math.unit(5167, "meters")
  6968. },
  6969. {
  6970. name: "Gigamacro",
  6971. height: math.unit(41769, "miles")
  6972. },
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6977. {
  6978. front: {
  6979. height: math.unit(6, "feet"),
  6980. weight: math.unit(120, "lbs"),
  6981. name: "Front",
  6982. image: {
  6983. source: "./media/characters/yozey/front.svg"
  6984. }
  6985. },
  6986. frontAlt: {
  6987. height: math.unit(6, "feet"),
  6988. weight: math.unit(120, "lbs"),
  6989. name: "Front (Alt)",
  6990. image: {
  6991. source: "./media/characters/yozey/front-alt.svg"
  6992. }
  6993. },
  6994. side: {
  6995. height: math.unit(6, "feet"),
  6996. weight: math.unit(120, "lbs"),
  6997. name: "Side",
  6998. image: {
  6999. source: "./media/characters/yozey/side.svg"
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Micro",
  7006. height: math.unit(3, "inches"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Normal",
  7011. height: math.unit(6, "feet")
  7012. }
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(6, "feet"),
  7020. weight: math.unit(103, "lbs"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/valeska-voss/front.svg"
  7024. }
  7025. }
  7026. },
  7027. [
  7028. {
  7029. name: "Mini-Sized Sub",
  7030. height: math.unit(3.1, "inches")
  7031. },
  7032. {
  7033. name: "Mid-Sized Sub",
  7034. height: math.unit(6.2, "inches")
  7035. },
  7036. {
  7037. name: "Full-Sized Sub",
  7038. height: math.unit(9.3, "inches")
  7039. },
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(5 + 2 / 12, "foot"),
  7043. default: true
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(160, "lbs"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/gene-zeta/front.svg",
  7056. extra: 3006 / 2826,
  7057. bottom: 182 / 3188
  7058. }
  7059. }
  7060. },
  7061. [
  7062. {
  7063. name: "Micro",
  7064. height: math.unit(6, "inches")
  7065. },
  7066. {
  7067. name: "Normal",
  7068. height: math.unit(5 + 11 / 12, "foot"),
  7069. default: true
  7070. },
  7071. {
  7072. name: "Macro",
  7073. height: math.unit(140, "feet")
  7074. },
  7075. {
  7076. name: "Supercharged",
  7077. height: math.unit(2500, "feet")
  7078. },
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7083. {
  7084. front: {
  7085. height: math.unit(6, "feet"),
  7086. weight: math.unit(350, "lbs"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/razinox/front.svg",
  7090. extra: 1686 / 1548,
  7091. bottom: 28.2 / 1868
  7092. }
  7093. },
  7094. back: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(350, "lbs"),
  7097. name: "Back",
  7098. image: {
  7099. source: "./media/characters/razinox/back.svg",
  7100. extra: 1660 / 1590,
  7101. bottom: 15 / 1665
  7102. }
  7103. },
  7104. },
  7105. [
  7106. {
  7107. name: "Normal",
  7108. height: math.unit(10 + 8 / 12, "foot")
  7109. },
  7110. {
  7111. name: "Minimacro",
  7112. height: math.unit(15, "foot")
  7113. },
  7114. {
  7115. name: "Macro",
  7116. height: math.unit(60, "foot"),
  7117. default: true
  7118. },
  7119. {
  7120. name: "Megamacro",
  7121. height: math.unit(5, "miles")
  7122. },
  7123. {
  7124. name: "Gigamacro",
  7125. height: math.unit(6000, "miles")
  7126. },
  7127. ]
  7128. ))
  7129. characterMakers.push(() => makeCharacter(
  7130. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7131. {
  7132. front: {
  7133. height: math.unit(6, "feet"),
  7134. weight: math.unit(150, "lbs"),
  7135. name: "Front",
  7136. image: {
  7137. source: "./media/characters/cobalt/front.svg"
  7138. }
  7139. }
  7140. },
  7141. [
  7142. {
  7143. name: "Normal",
  7144. height: math.unit(8 + 1 / 12, "foot")
  7145. },
  7146. {
  7147. name: "Macro",
  7148. height: math.unit(111, "foot"),
  7149. default: true
  7150. },
  7151. {
  7152. name: "Supracosmic",
  7153. height: math.unit(1e42, "feet")
  7154. },
  7155. ]
  7156. ))
  7157. characterMakers.push(() => makeCharacter(
  7158. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7159. {
  7160. front: {
  7161. height: math.unit(6, "feet"),
  7162. weight: math.unit(140, "lbs"),
  7163. name: "Front",
  7164. image: {
  7165. source: "./media/characters/amanda/front.svg"
  7166. }
  7167. }
  7168. },
  7169. [
  7170. {
  7171. name: "Micro",
  7172. height: math.unit(5, "inches"),
  7173. default: true
  7174. },
  7175. ]
  7176. ))
  7177. characterMakers.push(() => makeCharacter(
  7178. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7179. {
  7180. front: {
  7181. height: math.unit(2.75, "meters"),
  7182. weight: math.unit(1200, "lb"),
  7183. name: "Front",
  7184. image: {
  7185. source: "./media/characters/teal/front.svg",
  7186. extra: 2463 / 2320,
  7187. bottom: 166 / 2629
  7188. }
  7189. },
  7190. back: {
  7191. height: math.unit(2.75, "meters"),
  7192. weight: math.unit(1200, "lb"),
  7193. name: "Back",
  7194. image: {
  7195. source: "./media/characters/teal/back.svg",
  7196. extra: 2580 / 2489,
  7197. bottom: 151 / 2731
  7198. }
  7199. },
  7200. sitting: {
  7201. height: math.unit(1.9, "meters"),
  7202. weight: math.unit(1200, "lb"),
  7203. name: "Sitting",
  7204. image: {
  7205. source: "./media/characters/teal/sitting.svg",
  7206. extra: 623 / 590,
  7207. bottom: 121 / 744
  7208. }
  7209. },
  7210. standing: {
  7211. height: math.unit(2.75, "meters"),
  7212. weight: math.unit(1200, "lb"),
  7213. name: "Standing",
  7214. image: {
  7215. source: "./media/characters/teal/standing.svg",
  7216. extra: 923 / 893,
  7217. bottom: 60 / 983
  7218. }
  7219. },
  7220. stretching: {
  7221. height: math.unit(3.65, "meters"),
  7222. weight: math.unit(1200, "lb"),
  7223. name: "Stretching",
  7224. image: {
  7225. source: "./media/characters/teal/stretching.svg",
  7226. extra: 1276 / 1244,
  7227. bottom: 0 / 1276
  7228. }
  7229. },
  7230. legged: {
  7231. height: math.unit(1.3, "meters"),
  7232. weight: math.unit(100, "lb"),
  7233. name: "Legged",
  7234. image: {
  7235. source: "./media/characters/teal/legged.svg",
  7236. extra: 462 / 437,
  7237. bottom: 24 / 486
  7238. }
  7239. },
  7240. naga: {
  7241. height: math.unit(5.4, "meters"),
  7242. weight: math.unit(4000, "lb"),
  7243. name: "Naga",
  7244. image: {
  7245. source: "./media/characters/teal/naga.svg",
  7246. extra: 1902 / 1858,
  7247. bottom: 0 / 1902
  7248. }
  7249. },
  7250. hand: {
  7251. height: math.unit(0.52, "meters"),
  7252. name: "Hand",
  7253. image: {
  7254. source: "./media/characters/teal/hand.svg"
  7255. }
  7256. },
  7257. maw: {
  7258. height: math.unit(0.43, "meters"),
  7259. name: "Maw",
  7260. image: {
  7261. source: "./media/characters/teal/maw.svg"
  7262. }
  7263. },
  7264. slit: {
  7265. height: math.unit(0.25, "meters"),
  7266. name: "Slit",
  7267. image: {
  7268. source: "./media/characters/teal/slit.svg"
  7269. }
  7270. },
  7271. },
  7272. [
  7273. {
  7274. name: "Normal",
  7275. height: math.unit(2.75, "meters"),
  7276. default: true
  7277. },
  7278. {
  7279. name: "Macro",
  7280. height: math.unit(300, "feet")
  7281. },
  7282. {
  7283. name: "Macro+",
  7284. height: math.unit(2000, "feet")
  7285. },
  7286. ]
  7287. ))
  7288. characterMakers.push(() => makeCharacter(
  7289. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7290. {
  7291. frontCat: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(180, "lbs"),
  7294. name: "Front (Cat)",
  7295. image: {
  7296. source: "./media/characters/ravin-amulet/front-cat.svg"
  7297. }
  7298. },
  7299. frontCatAlt: {
  7300. height: math.unit(6, "feet"),
  7301. weight: math.unit(180, "lbs"),
  7302. name: "Front (Alt, Cat)",
  7303. image: {
  7304. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7305. }
  7306. },
  7307. frontWerewolf: {
  7308. height: math.unit(6 * 1.2, "feet"),
  7309. weight: math.unit(225, "lbs"),
  7310. name: "Front (Werewolf)",
  7311. image: {
  7312. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7313. }
  7314. },
  7315. backWerewolf: {
  7316. height: math.unit(6 * 1.2, "feet"),
  7317. weight: math.unit(225, "lbs"),
  7318. name: "Back (Werewolf)",
  7319. image: {
  7320. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7321. }
  7322. },
  7323. },
  7324. [
  7325. {
  7326. name: "Nano",
  7327. height: math.unit(1, "micrometer")
  7328. },
  7329. {
  7330. name: "Micro",
  7331. height: math.unit(1, "inch")
  7332. },
  7333. {
  7334. name: "Normal",
  7335. height: math.unit(6, "feet"),
  7336. default: true
  7337. },
  7338. {
  7339. name: "Macro",
  7340. height: math.unit(60, "feet")
  7341. }
  7342. ]
  7343. ))
  7344. characterMakers.push(() => makeCharacter(
  7345. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7346. {
  7347. front: {
  7348. height: math.unit(6, "feet"),
  7349. weight: math.unit(165, "lbs"),
  7350. name: "Front",
  7351. image: {
  7352. source: "./media/characters/fluoresce/front.svg"
  7353. }
  7354. }
  7355. },
  7356. [
  7357. {
  7358. name: "Micro",
  7359. height: math.unit(6, "cm")
  7360. },
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(5 + 7 / 12, "feet"),
  7364. default: true
  7365. },
  7366. {
  7367. name: "Macro",
  7368. height: math.unit(56, "feet")
  7369. },
  7370. {
  7371. name: "Megamacro",
  7372. height: math.unit(1.9, "miles")
  7373. },
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7378. {
  7379. front: {
  7380. height: math.unit(9 + 6 / 12, "feet"),
  7381. weight: math.unit(523, "lbs"),
  7382. name: "Side",
  7383. image: {
  7384. source: "./media/characters/aurora/side.svg"
  7385. }
  7386. }
  7387. },
  7388. [
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(9 + 6 / 12, "feet")
  7392. },
  7393. {
  7394. name: "Macro",
  7395. height: math.unit(96, "feet"),
  7396. default: true
  7397. },
  7398. {
  7399. name: "Macro+",
  7400. height: math.unit(243, "feet")
  7401. },
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7406. {
  7407. front: {
  7408. height: math.unit(194, "cm"),
  7409. weight: math.unit(90, "kg"),
  7410. name: "Front",
  7411. image: {
  7412. source: "./media/characters/ranek/front.svg"
  7413. }
  7414. },
  7415. side: {
  7416. height: math.unit(194, "cm"),
  7417. weight: math.unit(90, "kg"),
  7418. name: "Side",
  7419. image: {
  7420. source: "./media/characters/ranek/side.svg"
  7421. }
  7422. },
  7423. back: {
  7424. height: math.unit(194, "cm"),
  7425. weight: math.unit(90, "kg"),
  7426. name: "Back",
  7427. image: {
  7428. source: "./media/characters/ranek/back.svg"
  7429. }
  7430. },
  7431. feral: {
  7432. height: math.unit(30, "cm"),
  7433. weight: math.unit(1.6, "lbs"),
  7434. name: "Feral",
  7435. image: {
  7436. source: "./media/characters/ranek/feral.svg"
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(194, "cm"),
  7444. default: true
  7445. },
  7446. {
  7447. name: "Macro",
  7448. height: math.unit(100, "meters")
  7449. },
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7454. {
  7455. front: {
  7456. height: math.unit(5 + 6 / 12, "feet"),
  7457. weight: math.unit(153, "lbs"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/andrew-cooper/front.svg"
  7461. }
  7462. },
  7463. },
  7464. [
  7465. {
  7466. name: "Nano",
  7467. height: math.unit(1, "mm")
  7468. },
  7469. {
  7470. name: "Micro",
  7471. height: math.unit(2, "inches")
  7472. },
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(5 + 6 / 12, "feet"),
  7476. default: true
  7477. }
  7478. ]
  7479. ))
  7480. characterMakers.push(() => makeCharacter(
  7481. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7482. {
  7483. front: {
  7484. height: math.unit(6, "feet"),
  7485. weight: math.unit(180, "lbs"),
  7486. name: "Front",
  7487. image: {
  7488. source: "./media/characters/akane-sato/front.svg",
  7489. extra: 1219 / 1140
  7490. }
  7491. },
  7492. back: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(180, "lbs"),
  7495. name: "Back",
  7496. image: {
  7497. source: "./media/characters/akane-sato/back.svg",
  7498. extra: 1219 / 1170
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Normal",
  7505. height: math.unit(2.5, "meters")
  7506. },
  7507. {
  7508. name: "Macro",
  7509. height: math.unit(250, "meters"),
  7510. default: true
  7511. },
  7512. {
  7513. name: "Megamacro",
  7514. height: math.unit(25, "km")
  7515. },
  7516. ]
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7520. {
  7521. front: {
  7522. height: math.unit(6, "feet"),
  7523. weight: math.unit(65, "kg"),
  7524. name: "Front",
  7525. image: {
  7526. source: "./media/characters/rook/front.svg",
  7527. extra: 960 / 950
  7528. }
  7529. }
  7530. },
  7531. [
  7532. {
  7533. name: "Normal",
  7534. height: math.unit(8.8, "feet")
  7535. },
  7536. {
  7537. name: "Macro",
  7538. height: math.unit(88, "feet"),
  7539. default: true
  7540. },
  7541. {
  7542. name: "Megamacro",
  7543. height: math.unit(8, "miles")
  7544. },
  7545. ]
  7546. ))
  7547. characterMakers.push(() => makeCharacter(
  7548. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7549. {
  7550. front: {
  7551. height: math.unit(12 + 2 / 12, "feet"),
  7552. weight: math.unit(808, "lbs"),
  7553. name: "Front",
  7554. image: {
  7555. source: "./media/characters/prodigy/front.svg"
  7556. }
  7557. }
  7558. },
  7559. [
  7560. {
  7561. name: "Normal",
  7562. height: math.unit(12 + 2 / 12, "feet"),
  7563. default: true
  7564. },
  7565. {
  7566. name: "Macro",
  7567. height: math.unit(143, "feet")
  7568. },
  7569. {
  7570. name: "Macro+",
  7571. height: math.unit(400, "feet")
  7572. },
  7573. ]
  7574. ))
  7575. characterMakers.push(() => makeCharacter(
  7576. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7577. {
  7578. front: {
  7579. height: math.unit(6, "feet"),
  7580. weight: math.unit(225, "lbs"),
  7581. name: "Front",
  7582. image: {
  7583. source: "./media/characters/daniel/front.svg"
  7584. }
  7585. },
  7586. leaning: {
  7587. height: math.unit(6, "feet"),
  7588. weight: math.unit(225, "lbs"),
  7589. name: "Leaning",
  7590. image: {
  7591. source: "./media/characters/daniel/leaning.svg"
  7592. }
  7593. },
  7594. },
  7595. [
  7596. {
  7597. name: "Macro",
  7598. height: math.unit(1000, "feet"),
  7599. default: true
  7600. },
  7601. ]
  7602. ))
  7603. characterMakers.push(() => makeCharacter(
  7604. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7605. {
  7606. front: {
  7607. height: math.unit(6, "feet"),
  7608. weight: math.unit(88, "lbs"),
  7609. name: "Front",
  7610. image: {
  7611. source: "./media/characters/chiros/front.svg",
  7612. extra: 306 / 226
  7613. }
  7614. },
  7615. side: {
  7616. height: math.unit(6, "feet"),
  7617. weight: math.unit(88, "lbs"),
  7618. name: "Side",
  7619. image: {
  7620. source: "./media/characters/chiros/side.svg",
  7621. extra: 306 / 226
  7622. }
  7623. },
  7624. },
  7625. [
  7626. {
  7627. name: "Normal",
  7628. height: math.unit(6, "cm"),
  7629. default: true
  7630. },
  7631. ]
  7632. ))
  7633. characterMakers.push(() => makeCharacter(
  7634. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7635. {
  7636. front: {
  7637. height: math.unit(6, "feet"),
  7638. weight: math.unit(100, "lbs"),
  7639. name: "Front",
  7640. image: {
  7641. source: "./media/characters/selka/front.svg",
  7642. extra: 947 / 887
  7643. }
  7644. }
  7645. },
  7646. [
  7647. {
  7648. name: "Normal",
  7649. height: math.unit(5, "cm"),
  7650. default: true
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(8 + 3 / 12, "feet"),
  7659. weight: math.unit(424, "lbs"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/verin/front.svg",
  7663. extra: 1845 / 1550
  7664. }
  7665. },
  7666. frontArmored: {
  7667. height: math.unit(8 + 3 / 12, "feet"),
  7668. weight: math.unit(424, "lbs"),
  7669. name: "Front (Armored)",
  7670. image: {
  7671. source: "./media/characters/verin/front-armor.svg",
  7672. extra: 1845 / 1550,
  7673. bottom: 0.01
  7674. }
  7675. },
  7676. back: {
  7677. height: math.unit(8 + 3 / 12, "feet"),
  7678. weight: math.unit(424, "lbs"),
  7679. name: "Back",
  7680. image: {
  7681. source: "./media/characters/verin/back.svg",
  7682. bottom: 0.1,
  7683. extra: 1
  7684. }
  7685. },
  7686. foot: {
  7687. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7688. name: "Foot",
  7689. image: {
  7690. source: "./media/characters/verin/foot.svg"
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Normal",
  7697. height: math.unit(8 + 3 / 12, "feet")
  7698. },
  7699. {
  7700. name: "Minimacro",
  7701. height: math.unit(21, "feet"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(626, "feet")
  7707. },
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(2.718, "meters"),
  7715. weight: math.unit(150, "lbs"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/sovrim-terraquian/front.svg"
  7719. }
  7720. },
  7721. back: {
  7722. height: math.unit(2.718, "meters"),
  7723. weight: math.unit(150, "lbs"),
  7724. name: "Back",
  7725. image: {
  7726. source: "./media/characters/sovrim-terraquian/back.svg"
  7727. }
  7728. }
  7729. },
  7730. [
  7731. {
  7732. name: "Micro",
  7733. height: math.unit(2, "inches")
  7734. },
  7735. {
  7736. name: "Small",
  7737. height: math.unit(1, "meter")
  7738. },
  7739. {
  7740. name: "Normal",
  7741. height: math.unit(Math.E, "meters"),
  7742. default: true
  7743. },
  7744. {
  7745. name: "Macro",
  7746. height: math.unit(20, "meters")
  7747. },
  7748. {
  7749. name: "Macro+",
  7750. height: math.unit(400, "meters")
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7756. {
  7757. front: {
  7758. height: math.unit(7, "feet"),
  7759. weight: math.unit(489, "lbs"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/reece-silvermane/front.svg",
  7763. bottom: 0.02,
  7764. extra: 1
  7765. }
  7766. },
  7767. },
  7768. [
  7769. {
  7770. name: "Macro",
  7771. height: math.unit(1.5, "miles"),
  7772. default: true
  7773. },
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7778. {
  7779. front: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(78, "kg"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/kane/front.svg",
  7785. extra: 978 / 899
  7786. }
  7787. },
  7788. },
  7789. [
  7790. {
  7791. name: "Normal",
  7792. height: math.unit(2.1, "m"),
  7793. },
  7794. {
  7795. name: "Macro",
  7796. height: math.unit(1, "km"),
  7797. default: true
  7798. },
  7799. ]
  7800. ))
  7801. characterMakers.push(() => makeCharacter(
  7802. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7803. {
  7804. front: {
  7805. height: math.unit(6, "feet"),
  7806. weight: math.unit(200, "kg"),
  7807. name: "Front",
  7808. image: {
  7809. source: "./media/characters/tegon/front.svg",
  7810. bottom: 0.01,
  7811. extra: 1
  7812. }
  7813. },
  7814. },
  7815. [
  7816. {
  7817. name: "Micro",
  7818. height: math.unit(1, "inch")
  7819. },
  7820. {
  7821. name: "Normal",
  7822. height: math.unit(6 + 3 / 12, "feet"),
  7823. default: true
  7824. },
  7825. {
  7826. name: "Macro",
  7827. height: math.unit(300, "feet")
  7828. },
  7829. {
  7830. name: "Megamacro",
  7831. height: math.unit(69, "miles")
  7832. },
  7833. ]
  7834. ))
  7835. characterMakers.push(() => makeCharacter(
  7836. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7837. {
  7838. side: {
  7839. height: math.unit(6, "feet"),
  7840. weight: math.unit(2304, "lbs"),
  7841. name: "Side",
  7842. image: {
  7843. source: "./media/characters/arcturax/side.svg",
  7844. extra: 790 / 376,
  7845. bottom: 0.01
  7846. }
  7847. },
  7848. },
  7849. [
  7850. {
  7851. name: "Micro",
  7852. height: math.unit(2, "inch")
  7853. },
  7854. {
  7855. name: "Normal",
  7856. height: math.unit(6, "feet")
  7857. },
  7858. {
  7859. name: "Macro",
  7860. height: math.unit(39, "feet"),
  7861. default: true
  7862. },
  7863. {
  7864. name: "Megamacro",
  7865. height: math.unit(7, "miles")
  7866. },
  7867. ]
  7868. ))
  7869. characterMakers.push(() => makeCharacter(
  7870. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7871. {
  7872. front: {
  7873. height: math.unit(6, "feet"),
  7874. weight: math.unit(50, "lbs"),
  7875. name: "Front",
  7876. image: {
  7877. source: "./media/characters/sentri/front.svg",
  7878. extra: 1750 / 1570,
  7879. bottom: 0.025
  7880. }
  7881. },
  7882. frontAlt: {
  7883. height: math.unit(6, "feet"),
  7884. weight: math.unit(50, "lbs"),
  7885. name: "Front (Alt)",
  7886. image: {
  7887. source: "./media/characters/sentri/front-alt.svg",
  7888. extra: 1750 / 1570,
  7889. bottom: 0.025
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Normal",
  7896. height: math.unit(15, "feet"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Macro",
  7901. height: math.unit(2500, "feet")
  7902. }
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(5 + 8 / 12, "feet"),
  7910. weight: math.unit(130, "lbs"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/corvin/front.svg",
  7914. extra: 1803 / 1629
  7915. }
  7916. },
  7917. frontShirt: {
  7918. height: math.unit(5 + 8 / 12, "feet"),
  7919. weight: math.unit(130, "lbs"),
  7920. name: "Front (Shirt)",
  7921. image: {
  7922. source: "./media/characters/corvin/front-shirt.svg",
  7923. extra: 1803 / 1629
  7924. }
  7925. },
  7926. frontPoncho: {
  7927. height: math.unit(5 + 8 / 12, "feet"),
  7928. weight: math.unit(130, "lbs"),
  7929. name: "Front (Poncho)",
  7930. image: {
  7931. source: "./media/characters/corvin/front-poncho.svg",
  7932. extra: 1803 / 1629
  7933. }
  7934. },
  7935. side: {
  7936. height: math.unit(5 + 8 / 12, "feet"),
  7937. weight: math.unit(130, "lbs"),
  7938. name: "Side",
  7939. image: {
  7940. source: "./media/characters/corvin/side.svg",
  7941. extra: 1012 / 945
  7942. }
  7943. },
  7944. back: {
  7945. height: math.unit(5 + 8 / 12, "feet"),
  7946. weight: math.unit(130, "lbs"),
  7947. name: "Back",
  7948. image: {
  7949. source: "./media/characters/corvin/back.svg",
  7950. extra: 1803 / 1629
  7951. }
  7952. },
  7953. },
  7954. [
  7955. {
  7956. name: "Micro",
  7957. height: math.unit(3, "inches")
  7958. },
  7959. {
  7960. name: "Normal",
  7961. height: math.unit(5 + 8 / 12, "feet")
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(300, "feet"),
  7966. default: true
  7967. },
  7968. {
  7969. name: "Megamacro",
  7970. height: math.unit(500, "miles")
  7971. }
  7972. ]
  7973. ))
  7974. characterMakers.push(() => makeCharacter(
  7975. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7976. {
  7977. front: {
  7978. height: math.unit(6, "feet"),
  7979. weight: math.unit(135, "lbs"),
  7980. name: "Front",
  7981. image: {
  7982. source: "./media/characters/q/front.svg",
  7983. extra: 854 / 752,
  7984. bottom: 0.005
  7985. }
  7986. },
  7987. back: {
  7988. height: math.unit(6, "feet"),
  7989. weight: math.unit(130, "lbs"),
  7990. name: "Back",
  7991. image: {
  7992. source: "./media/characters/q/back.svg",
  7993. extra: 854 / 752
  7994. }
  7995. },
  7996. },
  7997. [
  7998. {
  7999. name: "Macro",
  8000. height: math.unit(90, "feet"),
  8001. default: true
  8002. },
  8003. {
  8004. name: "Extra Macro",
  8005. height: math.unit(300, "feet"),
  8006. },
  8007. {
  8008. name: "BIG WALF",
  8009. height: math.unit(750, "feet"),
  8010. },
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(150, "lbs"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/carley/front.svg",
  8022. extra: 3927 / 3540,
  8023. bottom: 29.2 / 735
  8024. }
  8025. }
  8026. },
  8027. [
  8028. {
  8029. name: "Normal",
  8030. height: math.unit(6 + 3 / 12, "feet")
  8031. },
  8032. {
  8033. name: "Macro",
  8034. height: math.unit(185, "feet"),
  8035. default: true
  8036. },
  8037. {
  8038. name: "Megamacro",
  8039. height: math.unit(8, "miles"),
  8040. },
  8041. ]
  8042. ))
  8043. characterMakers.push(() => makeCharacter(
  8044. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8045. {
  8046. front: {
  8047. height: math.unit(3, "feet"),
  8048. weight: math.unit(28, "lbs"),
  8049. name: "Front",
  8050. image: {
  8051. source: "./media/characters/citrine/front.svg"
  8052. }
  8053. }
  8054. },
  8055. [
  8056. {
  8057. name: "Normal",
  8058. height: math.unit(3, "feet"),
  8059. default: true
  8060. }
  8061. ]
  8062. ))
  8063. characterMakers.push(() => makeCharacter(
  8064. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8065. {
  8066. front: {
  8067. height: math.unit(14, "feet"),
  8068. weight: math.unit(1450, "kg"),
  8069. capacity: math.unit(15, "people"),
  8070. name: "Front",
  8071. image: {
  8072. source: "./media/characters/aura-starwind/front.svg",
  8073. extra: 1455 / 1335
  8074. }
  8075. },
  8076. side: {
  8077. height: math.unit(14, "feet"),
  8078. weight: math.unit(1450, "kg"),
  8079. capacity: math.unit(15, "people"),
  8080. name: "Side",
  8081. image: {
  8082. source: "./media/characters/aura-starwind/side.svg",
  8083. extra: 1654 / 1497
  8084. }
  8085. },
  8086. taur: {
  8087. height: math.unit(18, "feet"),
  8088. weight: math.unit(5500, "kg"),
  8089. capacity: math.unit(50, "people"),
  8090. name: "Taur",
  8091. image: {
  8092. source: "./media/characters/aura-starwind/taur.svg",
  8093. extra: 1760 / 1650
  8094. }
  8095. },
  8096. feral: {
  8097. height: math.unit(46, "feet"),
  8098. weight: math.unit(25000, "kg"),
  8099. capacity: math.unit(120, "people"),
  8100. name: "Feral",
  8101. image: {
  8102. source: "./media/characters/aura-starwind/feral.svg"
  8103. }
  8104. },
  8105. },
  8106. [
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(14, "feet"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Macro",
  8114. height: math.unit(50, "meters")
  8115. },
  8116. {
  8117. name: "Megamacro",
  8118. height: math.unit(5000, "meters")
  8119. },
  8120. {
  8121. name: "Gigamacro",
  8122. height: math.unit(100000, "kilometers")
  8123. },
  8124. ]
  8125. ))
  8126. characterMakers.push(() => makeCharacter(
  8127. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8128. {
  8129. front: {
  8130. height: math.unit(2 + 7 / 12, "feet"),
  8131. weight: math.unit(32, "lbs"),
  8132. name: "Front",
  8133. image: {
  8134. source: "./media/characters/rivet/front.svg",
  8135. extra: 1716 / 1658,
  8136. bottom: 0.03
  8137. }
  8138. },
  8139. foot: {
  8140. height: math.unit(0.551, "feet"),
  8141. name: "Rivet's Foot",
  8142. image: {
  8143. source: "./media/characters/rivet/foot.svg"
  8144. },
  8145. rename: true
  8146. }
  8147. },
  8148. [
  8149. {
  8150. name: "Micro",
  8151. height: math.unit(1.5, "inches"),
  8152. },
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(2 + 7 / 12, "feet"),
  8156. default: true
  8157. },
  8158. {
  8159. name: "Macro",
  8160. height: math.unit(85, "feet")
  8161. },
  8162. {
  8163. name: "Megamacro",
  8164. height: math.unit(2.2, "km")
  8165. }
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8170. {
  8171. front: {
  8172. height: math.unit(5 + 9 / 12, "feet"),
  8173. weight: math.unit(150, "lbs"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/coffee/front.svg",
  8177. extra: 3666 / 3032,
  8178. bottom: 0.04
  8179. }
  8180. },
  8181. foot: {
  8182. height: math.unit(1.29, "feet"),
  8183. name: "Foot",
  8184. image: {
  8185. source: "./media/characters/coffee/foot.svg"
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Micro",
  8192. height: math.unit(2, "inches"),
  8193. },
  8194. {
  8195. name: "Normal",
  8196. height: math.unit(5 + 9 / 12, "feet"),
  8197. default: true
  8198. },
  8199. {
  8200. name: "Macro",
  8201. height: math.unit(800, "feet")
  8202. },
  8203. {
  8204. name: "Megamacro",
  8205. height: math.unit(25, "miles")
  8206. }
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(200, "lbs"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/chari-gal/front.svg",
  8218. extra: 1568 / 1385,
  8219. bottom: 0.047
  8220. }
  8221. },
  8222. gigantamax: {
  8223. height: math.unit(6 * 16, "feet"),
  8224. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8225. name: "Gigantamax",
  8226. image: {
  8227. source: "./media/characters/chari-gal/gigantamax.svg",
  8228. extra: 1124 / 888,
  8229. bottom: 0.03
  8230. }
  8231. },
  8232. },
  8233. [
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(5 + 7 / 12, "feet")
  8237. },
  8238. {
  8239. name: "Macro",
  8240. height: math.unit(200, "feet"),
  8241. default: true
  8242. }
  8243. ]
  8244. ))
  8245. characterMakers.push(() => makeCharacter(
  8246. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8247. {
  8248. front: {
  8249. height: math.unit(6, "feet"),
  8250. weight: math.unit(150, "lbs"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/nova/front.svg",
  8254. extra: 5000 / 4722,
  8255. bottom: 0.02
  8256. }
  8257. }
  8258. },
  8259. [
  8260. {
  8261. name: "Micro-",
  8262. height: math.unit(0.8, "inches")
  8263. },
  8264. {
  8265. name: "Micro",
  8266. height: math.unit(2, "inches"),
  8267. default: true
  8268. },
  8269. ]
  8270. ))
  8271. characterMakers.push(() => makeCharacter(
  8272. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8273. {
  8274. front: {
  8275. height: math.unit(3 + 1 / 12, "feet"),
  8276. weight: math.unit(21.7, "lbs"),
  8277. name: "Front",
  8278. image: {
  8279. source: "./media/characters/argent/front.svg",
  8280. extra: 1471 / 1331,
  8281. bottom: 100.8 / 1575.5
  8282. }
  8283. }
  8284. },
  8285. [
  8286. {
  8287. name: "Micro",
  8288. height: math.unit(2, "inches")
  8289. },
  8290. {
  8291. name: "Normal",
  8292. height: math.unit(3 + 1 / 12, "feet"),
  8293. default: true
  8294. },
  8295. {
  8296. name: "Macro",
  8297. height: math.unit(120, "feet")
  8298. },
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8303. {
  8304. lamp: {
  8305. height: math.unit(7 * 1559 / 989, "feet"),
  8306. name: "Magic Lamp",
  8307. image: {
  8308. source: "./media/characters/mira-al-cul/lamp.svg",
  8309. extra: 1617 / 1559
  8310. }
  8311. },
  8312. front: {
  8313. height: math.unit(7, "feet"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/mira-al-cul/front.svg",
  8317. extra: 1044 / 990
  8318. }
  8319. },
  8320. },
  8321. [
  8322. {
  8323. name: "Heavily Restricted",
  8324. height: math.unit(7 * 1559 / 989, "feet")
  8325. },
  8326. {
  8327. name: "Freshly Freed",
  8328. height: math.unit(50 * 1559 / 989, "feet")
  8329. },
  8330. {
  8331. name: "World Encompassing",
  8332. height: math.unit(10000 * 1559 / 989, "miles")
  8333. },
  8334. {
  8335. name: "Galactic",
  8336. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8337. },
  8338. {
  8339. name: "Palmed Universe",
  8340. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8341. default: true
  8342. },
  8343. {
  8344. name: "Multiversal Matriarch",
  8345. height: math.unit(8.87e10, "yottameters")
  8346. },
  8347. {
  8348. name: "Void Mother",
  8349. height: math.unit(3.14e110, "yottaparsecs")
  8350. },
  8351. {
  8352. name: "Toying with Transcendence",
  8353. height: math.unit(1e307, "meters")
  8354. },
  8355. ]
  8356. ))
  8357. characterMakers.push(() => makeCharacter(
  8358. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8359. {
  8360. front: {
  8361. height: math.unit(17 + 1 / 12, "feet"),
  8362. weight: math.unit(476.2 * 5, "lbs"),
  8363. name: "Front",
  8364. image: {
  8365. source: "./media/characters/kuro-shi-uchū/front.svg",
  8366. extra: 2329 / 1835,
  8367. bottom: 0.02
  8368. }
  8369. },
  8370. },
  8371. [
  8372. {
  8373. name: "Micro",
  8374. height: math.unit(2, "inches")
  8375. },
  8376. {
  8377. name: "Normal",
  8378. height: math.unit(12, "meters")
  8379. },
  8380. {
  8381. name: "Planetary",
  8382. height: math.unit(0.00929, "AU"),
  8383. default: true
  8384. },
  8385. {
  8386. name: "Universal",
  8387. height: math.unit(20, "gigaparsecs")
  8388. },
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(5 + 2 / 12, "feet"),
  8396. weight: math.unit(120, "lbs"),
  8397. name: "Front",
  8398. image: {
  8399. source: "./media/characters/katherine/front.svg",
  8400. extra: 2075 / 1969
  8401. }
  8402. },
  8403. dress: {
  8404. height: math.unit(5 + 2 / 12, "feet"),
  8405. weight: math.unit(120, "lbs"),
  8406. name: "Dress",
  8407. image: {
  8408. source: "./media/characters/katherine/dress.svg",
  8409. extra: 2258 / 2064
  8410. }
  8411. },
  8412. },
  8413. [
  8414. {
  8415. name: "Micro",
  8416. height: math.unit(1, "inches"),
  8417. default: true
  8418. },
  8419. {
  8420. name: "Normal",
  8421. height: math.unit(5 + 2 / 12, "feet")
  8422. },
  8423. {
  8424. name: "Macro",
  8425. height: math.unit(100, "meters")
  8426. },
  8427. {
  8428. name: "Megamacro",
  8429. height: math.unit(80, "miles")
  8430. },
  8431. ]
  8432. ))
  8433. characterMakers.push(() => makeCharacter(
  8434. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8435. {
  8436. front: {
  8437. height: math.unit(7 + 8 / 12, "feet"),
  8438. weight: math.unit(250, "lbs"),
  8439. name: "Front",
  8440. image: {
  8441. source: "./media/characters/yevis/front.svg",
  8442. extra: 1938 / 1755
  8443. }
  8444. }
  8445. },
  8446. [
  8447. {
  8448. name: "Mortal",
  8449. height: math.unit(7 + 8 / 12, "feet")
  8450. },
  8451. {
  8452. name: "Battle",
  8453. height: math.unit(25 + 11 / 12, "feet")
  8454. },
  8455. {
  8456. name: "Wrath",
  8457. height: math.unit(1654 + 11 / 12, "feet")
  8458. },
  8459. {
  8460. name: "Planet Destroyer",
  8461. height: math.unit(12000, "miles")
  8462. },
  8463. {
  8464. name: "Galaxy Conqueror",
  8465. height: math.unit(1.45, "zettameters"),
  8466. default: true
  8467. },
  8468. {
  8469. name: "Universal War",
  8470. height: math.unit(184, "gigaparsecs")
  8471. },
  8472. {
  8473. name: "Eternity War",
  8474. height: math.unit(1.98e55, "yottaparsecs")
  8475. },
  8476. ]
  8477. ))
  8478. characterMakers.push(() => makeCharacter(
  8479. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8480. {
  8481. front: {
  8482. height: math.unit(5 + 8 / 12, "feet"),
  8483. weight: math.unit(63, "kg"),
  8484. name: "Front",
  8485. image: {
  8486. source: "./media/characters/xavier/front.svg",
  8487. extra: 944 / 883
  8488. }
  8489. },
  8490. frontStretch: {
  8491. height: math.unit(5 + 8 / 12, "feet"),
  8492. weight: math.unit(63, "kg"),
  8493. name: "Stretching",
  8494. image: {
  8495. source: "./media/characters/xavier/front-stretch.svg",
  8496. extra: 962 / 820
  8497. }
  8498. },
  8499. },
  8500. [
  8501. {
  8502. name: "Normal",
  8503. height: math.unit(5 + 8 / 12, "feet")
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(100, "meters"),
  8508. default: true
  8509. },
  8510. {
  8511. name: "McLargeHuge",
  8512. height: math.unit(10, "miles")
  8513. },
  8514. ]
  8515. ))
  8516. characterMakers.push(() => makeCharacter(
  8517. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8518. {
  8519. front: {
  8520. height: math.unit(5 + 5 / 12, "feet"),
  8521. weight: math.unit(150, "lb"),
  8522. name: "Front",
  8523. image: {
  8524. source: "./media/characters/joshii/front.svg",
  8525. extra: 765 / 653,
  8526. bottom: 51 / 816
  8527. }
  8528. },
  8529. foot: {
  8530. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8531. name: "Foot",
  8532. image: {
  8533. source: "./media/characters/joshii/foot.svg"
  8534. }
  8535. },
  8536. },
  8537. [
  8538. {
  8539. name: "Micro",
  8540. height: math.unit(2, "inches"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Normal",
  8545. height: math.unit(5 + 5 / 12, "feet")
  8546. },
  8547. {
  8548. name: "Macro",
  8549. height: math.unit(785, "feet")
  8550. },
  8551. {
  8552. name: "Megamacro",
  8553. height: math.unit(24.5, "miles")
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8559. {
  8560. front: {
  8561. height: math.unit(6, "feet"),
  8562. weight: math.unit(150, "lb"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/goddess-elizabeth/front.svg",
  8566. extra: 1800 / 1525,
  8567. bottom: 0.005
  8568. }
  8569. },
  8570. foot: {
  8571. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8572. name: "Foot",
  8573. image: {
  8574. source: "./media/characters/goddess-elizabeth/foot.svg"
  8575. }
  8576. },
  8577. mouth: {
  8578. height: math.unit(6, "feet"),
  8579. name: "Mouth",
  8580. image: {
  8581. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8582. }
  8583. },
  8584. },
  8585. [
  8586. {
  8587. name: "Micro",
  8588. height: math.unit(12, "feet")
  8589. },
  8590. {
  8591. name: "Normal",
  8592. height: math.unit(80, "miles"),
  8593. default: true
  8594. },
  8595. {
  8596. name: "Macro",
  8597. height: math.unit(15000, "parsecs")
  8598. },
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8603. {
  8604. front: {
  8605. height: math.unit(5 + 9 / 12, "feet"),
  8606. weight: math.unit(144, "lb"),
  8607. name: "Front",
  8608. image: {
  8609. source: "./media/characters/kara/front.svg"
  8610. }
  8611. },
  8612. feet: {
  8613. height: math.unit(6 / 6.765, "feet"),
  8614. name: "Kara's Feet",
  8615. rename: true,
  8616. image: {
  8617. source: "./media/characters/kara/feet.svg"
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Normal",
  8624. height: math.unit(5 + 9 / 12, "feet")
  8625. },
  8626. {
  8627. name: "Macro",
  8628. height: math.unit(174, "feet"),
  8629. default: true
  8630. },
  8631. ]
  8632. ))
  8633. characterMakers.push(() => makeCharacter(
  8634. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8635. {
  8636. front: {
  8637. height: math.unit(18, "feet"),
  8638. weight: math.unit(4050, "lb"),
  8639. name: "Front",
  8640. image: {
  8641. source: "./media/characters/tyrone/front.svg",
  8642. extra: 2405 / 2270,
  8643. bottom: 182 / 2587
  8644. }
  8645. },
  8646. },
  8647. [
  8648. {
  8649. name: "Normal",
  8650. height: math.unit(18, "feet"),
  8651. default: true
  8652. },
  8653. {
  8654. name: "Macro",
  8655. height: math.unit(300, "feet")
  8656. },
  8657. {
  8658. name: "Megamacro",
  8659. height: math.unit(15, "km")
  8660. },
  8661. {
  8662. name: "Gigamacro",
  8663. height: math.unit(500, "km")
  8664. },
  8665. {
  8666. name: "Teramacro",
  8667. height: math.unit(0.5, "gigameters")
  8668. },
  8669. {
  8670. name: "Omnimacro",
  8671. height: math.unit(1e252, "yottauniverse")
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(7 + 8 / 12, "feet"),
  8680. weight: math.unit(120, "lb"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/danny/front.svg",
  8684. extra: 1490 / 1350
  8685. }
  8686. },
  8687. back: {
  8688. height: math.unit(7 + 8 / 12, "feet"),
  8689. weight: math.unit(120, "lb"),
  8690. name: "Back",
  8691. image: {
  8692. source: "./media/characters/danny/back.svg",
  8693. extra: 1490 / 1350
  8694. }
  8695. },
  8696. },
  8697. [
  8698. {
  8699. name: "Normal",
  8700. height: math.unit(7 + 8 / 12, "feet"),
  8701. default: true
  8702. },
  8703. ]
  8704. ))
  8705. characterMakers.push(() => makeCharacter(
  8706. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8707. {
  8708. front: {
  8709. height: math.unit(3.5, "inches"),
  8710. weight: math.unit(19, "grams"),
  8711. name: "Front",
  8712. image: {
  8713. source: "./media/characters/mallow/front.svg",
  8714. extra: 471 / 431
  8715. }
  8716. },
  8717. back: {
  8718. height: math.unit(3.5, "inches"),
  8719. weight: math.unit(19, "grams"),
  8720. name: "Back",
  8721. image: {
  8722. source: "./media/characters/mallow/back.svg",
  8723. extra: 471 / 431
  8724. }
  8725. },
  8726. },
  8727. [
  8728. {
  8729. name: "Normal",
  8730. height: math.unit(3.5, "inches"),
  8731. default: true
  8732. },
  8733. ]
  8734. ))
  8735. characterMakers.push(() => makeCharacter(
  8736. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8737. {
  8738. front: {
  8739. height: math.unit(9, "feet"),
  8740. weight: math.unit(230, "kg"),
  8741. name: "Front",
  8742. image: {
  8743. source: "./media/characters/starry-aqua/front.svg"
  8744. }
  8745. },
  8746. back: {
  8747. height: math.unit(9, "feet"),
  8748. weight: math.unit(230, "kg"),
  8749. name: "Back",
  8750. image: {
  8751. source: "./media/characters/starry-aqua/back.svg"
  8752. }
  8753. },
  8754. hand: {
  8755. height: math.unit(9 * 0.1168, "feet"),
  8756. name: "Hand",
  8757. image: {
  8758. source: "./media/characters/starry-aqua/hand.svg"
  8759. }
  8760. },
  8761. foot: {
  8762. height: math.unit(9 * 0.18, "feet"),
  8763. name: "Foot",
  8764. image: {
  8765. source: "./media/characters/starry-aqua/foot.svg"
  8766. }
  8767. }
  8768. },
  8769. [
  8770. {
  8771. name: "Micro",
  8772. height: math.unit(3, "inches")
  8773. },
  8774. {
  8775. name: "Normal",
  8776. height: math.unit(9, "feet")
  8777. },
  8778. {
  8779. name: "Macro",
  8780. height: math.unit(300, "feet"),
  8781. default: true
  8782. },
  8783. {
  8784. name: "Megamacro",
  8785. height: math.unit(3200, "feet")
  8786. }
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(6, "feet"),
  8794. weight: math.unit(230, "lb"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/luka/front.svg",
  8798. extra: 1,
  8799. bottom: 0.025
  8800. }
  8801. },
  8802. },
  8803. [
  8804. {
  8805. name: "Normal",
  8806. height: math.unit(12 + 8 / 12, "feet"),
  8807. default: true
  8808. },
  8809. {
  8810. name: "Minimacro",
  8811. height: math.unit(20, "feet")
  8812. },
  8813. {
  8814. name: "Macro",
  8815. height: math.unit(250, "feet")
  8816. },
  8817. {
  8818. name: "Megamacro",
  8819. height: math.unit(5, "miles")
  8820. },
  8821. {
  8822. name: "Gigamacro",
  8823. height: math.unit(8000, "miles")
  8824. },
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8829. {
  8830. front: {
  8831. height: math.unit(6, "feet"),
  8832. weight: math.unit(150, "lb"),
  8833. name: "Front",
  8834. image: {
  8835. source: "./media/characters/natalie-nightring/front.svg",
  8836. extra: 1,
  8837. bottom: 0.06
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Uh Oh",
  8844. height: math.unit(0.1, "mm")
  8845. },
  8846. {
  8847. name: "Small",
  8848. height: math.unit(3, "inches")
  8849. },
  8850. {
  8851. name: "Human Scale",
  8852. height: math.unit(6, "feet")
  8853. },
  8854. {
  8855. name: "Librarian",
  8856. height: math.unit(50, "feet"),
  8857. default: true
  8858. },
  8859. {
  8860. name: "Immense",
  8861. height: math.unit(200, "miles")
  8862. },
  8863. ]
  8864. ))
  8865. characterMakers.push(() => makeCharacter(
  8866. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8867. {
  8868. front: {
  8869. height: math.unit(6, "feet"),
  8870. weight: math.unit(180, "lbs"),
  8871. name: "Front",
  8872. image: {
  8873. source: "./media/characters/danni-rosie/front.svg",
  8874. extra: 1260 / 1128,
  8875. bottom: 0.022
  8876. }
  8877. },
  8878. },
  8879. [
  8880. {
  8881. name: "Micro",
  8882. height: math.unit(2, "inches"),
  8883. default: true
  8884. },
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8889. {
  8890. front: {
  8891. height: math.unit(5 + 9 / 12, "feet"),
  8892. weight: math.unit(220, "lb"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/samantha-kruse/front.svg",
  8896. extra: (985 / 935),
  8897. bottom: 0.03
  8898. }
  8899. },
  8900. frontUndressed: {
  8901. height: math.unit(5 + 9 / 12, "feet"),
  8902. weight: math.unit(220, "lb"),
  8903. name: "Front (Undressed)",
  8904. image: {
  8905. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8906. extra: (973 / 923),
  8907. bottom: 0.025
  8908. }
  8909. },
  8910. fat: {
  8911. height: math.unit(5 + 9 / 12, "feet"),
  8912. weight: math.unit(900, "lb"),
  8913. name: "Front (Fat)",
  8914. image: {
  8915. source: "./media/characters/samantha-kruse/fat.svg",
  8916. extra: 2688 / 2561
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(5 + 9 / 12, "feet"),
  8924. default: true
  8925. }
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8930. {
  8931. back: {
  8932. height: math.unit(5 + 4 / 12, "feet"),
  8933. weight: math.unit(4963, "lb"),
  8934. name: "Back",
  8935. image: {
  8936. source: "./media/characters/amelia-rosie/back.svg",
  8937. extra: 1113 / 963,
  8938. bottom: 0.01
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Level 0",
  8945. height: math.unit(5 + 4 / 12, "feet")
  8946. },
  8947. {
  8948. name: "Level 1",
  8949. height: math.unit(164597, "feet"),
  8950. default: true
  8951. },
  8952. {
  8953. name: "Level 2",
  8954. height: math.unit(956243, "miles")
  8955. },
  8956. {
  8957. name: "Level 3",
  8958. height: math.unit(29421709423, "miles")
  8959. },
  8960. {
  8961. name: "Level 4",
  8962. height: math.unit(154, "lightyears")
  8963. },
  8964. {
  8965. name: "Level 5",
  8966. height: math.unit(4738272, "lightyears")
  8967. },
  8968. {
  8969. name: "Level 6",
  8970. height: math.unit(145787152896, "lightyears")
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8976. {
  8977. front: {
  8978. height: math.unit(5 + 11 / 12, "feet"),
  8979. weight: math.unit(65, "kg"),
  8980. name: "Front",
  8981. image: {
  8982. source: "./media/characters/rook-kitara/front.svg",
  8983. extra: 1347 / 1274,
  8984. bottom: 0.005
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Totally Unfair",
  8991. height: math.unit(1.8, "mm")
  8992. },
  8993. {
  8994. name: "Lap Rookie",
  8995. height: math.unit(1.4, "feet")
  8996. },
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(5 + 11 / 12, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "How Did This Happen",
  9004. height: math.unit(80, "miles")
  9005. }
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(7, "feet"),
  9013. weight: math.unit(300, "lb"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/pisces/front.svg",
  9017. extra: 2255 / 2115,
  9018. bottom: 0.03
  9019. }
  9020. },
  9021. back: {
  9022. height: math.unit(7, "feet"),
  9023. weight: math.unit(300, "lb"),
  9024. name: "Back",
  9025. image: {
  9026. source: "./media/characters/pisces/back.svg",
  9027. extra: 2146 / 2055,
  9028. bottom: 0.04
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(7, "feet"),
  9036. default: true
  9037. },
  9038. {
  9039. name: "Swimming Pool",
  9040. height: math.unit(12.2, "meters")
  9041. },
  9042. {
  9043. name: "Olympic Swimming Pool",
  9044. height: math.unit(56.3, "meters")
  9045. },
  9046. {
  9047. name: "Lake Superior",
  9048. height: math.unit(93900, "meters")
  9049. },
  9050. {
  9051. name: "Mediterranean Sea",
  9052. height: math.unit(644457, "meters")
  9053. },
  9054. {
  9055. name: "World's Oceans",
  9056. height: math.unit(4567491, "meters")
  9057. },
  9058. ]
  9059. ))
  9060. characterMakers.push(() => makeCharacter(
  9061. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9062. {
  9063. front: {
  9064. height: math.unit(2.3, "meters"),
  9065. weight: math.unit(120, "kg"),
  9066. name: "Front",
  9067. image: {
  9068. source: "./media/characters/zelas/front.svg"
  9069. }
  9070. },
  9071. side: {
  9072. height: math.unit(2.3, "meters"),
  9073. weight: math.unit(120, "kg"),
  9074. name: "Side",
  9075. image: {
  9076. source: "./media/characters/zelas/side.svg"
  9077. }
  9078. },
  9079. back: {
  9080. height: math.unit(2.3, "meters"),
  9081. weight: math.unit(120, "kg"),
  9082. name: "Back",
  9083. image: {
  9084. source: "./media/characters/zelas/back.svg"
  9085. }
  9086. },
  9087. foot: {
  9088. height: math.unit(1.116, "feet"),
  9089. name: "Foot",
  9090. image: {
  9091. source: "./media/characters/zelas/foot.svg"
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Normal",
  9098. height: math.unit(2.3, "meters")
  9099. },
  9100. {
  9101. name: "Macro",
  9102. height: math.unit(30, "meters"),
  9103. default: true
  9104. },
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9109. {
  9110. front: {
  9111. height: math.unit(1, "inch"),
  9112. weight: math.unit(0.21, "grams"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/talbot/front.svg",
  9116. extra: 594 / 544
  9117. }
  9118. },
  9119. },
  9120. [
  9121. {
  9122. name: "Micro",
  9123. height: math.unit(1, "inch"),
  9124. default: true
  9125. },
  9126. ]
  9127. ))
  9128. characterMakers.push(() => makeCharacter(
  9129. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9130. {
  9131. front: {
  9132. height: math.unit(3 + 3 / 12, "feet"),
  9133. weight: math.unit(51.8, "lb"),
  9134. name: "Front",
  9135. image: {
  9136. source: "./media/characters/fliss/front.svg",
  9137. extra: 840 / 640
  9138. }
  9139. },
  9140. },
  9141. [
  9142. {
  9143. name: "Teeny Tiny",
  9144. height: math.unit(1, "mm")
  9145. },
  9146. {
  9147. name: "Small",
  9148. height: math.unit(1, "inch"),
  9149. default: true
  9150. },
  9151. {
  9152. name: "Standard Sylveon",
  9153. height: math.unit(3 + 3 / 12, "feet")
  9154. },
  9155. {
  9156. name: "Large Nuisance",
  9157. height: math.unit(33, "feet")
  9158. },
  9159. {
  9160. name: "City Filler",
  9161. height: math.unit(3000, "feet")
  9162. },
  9163. {
  9164. name: "New Horizon",
  9165. height: math.unit(6000, "miles")
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(5, "cm"),
  9174. weight: math.unit(1.94, "g"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/fleta/front.svg",
  9178. extra: 835 / 803
  9179. }
  9180. },
  9181. back: {
  9182. height: math.unit(5, "cm"),
  9183. weight: math.unit(1.94, "g"),
  9184. name: "Back",
  9185. image: {
  9186. source: "./media/characters/fleta/back.svg",
  9187. extra: 835 / 803
  9188. }
  9189. },
  9190. },
  9191. [
  9192. {
  9193. name: "Micro",
  9194. height: math.unit(5, "cm"),
  9195. default: true
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(6, "feet"),
  9204. weight: math.unit(225, "lb"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/dominic/front.svg",
  9208. extra: 1770 / 1620,
  9209. bottom: 0.025
  9210. }
  9211. },
  9212. back: {
  9213. height: math.unit(6, "feet"),
  9214. weight: math.unit(225, "lb"),
  9215. name: "Back",
  9216. image: {
  9217. source: "./media/characters/dominic/back.svg",
  9218. extra: 1745 / 1620,
  9219. bottom: 0.065
  9220. }
  9221. },
  9222. },
  9223. [
  9224. {
  9225. name: "Nano",
  9226. height: math.unit(0.1, "mm")
  9227. },
  9228. {
  9229. name: "Micro-",
  9230. height: math.unit(1, "mm")
  9231. },
  9232. {
  9233. name: "Micro",
  9234. height: math.unit(4, "inches")
  9235. },
  9236. {
  9237. name: "Normal",
  9238. height: math.unit(6 + 4 / 12, "feet"),
  9239. default: true
  9240. },
  9241. {
  9242. name: "Macro",
  9243. height: math.unit(115, "feet")
  9244. },
  9245. {
  9246. name: "Macro+",
  9247. height: math.unit(955, "feet")
  9248. },
  9249. {
  9250. name: "Megamacro",
  9251. height: math.unit(8990, "feet")
  9252. },
  9253. {
  9254. name: "Gigmacro",
  9255. height: math.unit(9310, "miles")
  9256. },
  9257. {
  9258. name: "Teramacro",
  9259. height: math.unit(1567005010, "miles")
  9260. },
  9261. {
  9262. name: "Examacro",
  9263. height: math.unit(1425, "parsecs")
  9264. },
  9265. ]
  9266. ))
  9267. characterMakers.push(() => makeCharacter(
  9268. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9269. {
  9270. front: {
  9271. height: math.unit(400, "feet"),
  9272. weight: math.unit(44444444, "lb"),
  9273. name: "Front",
  9274. image: {
  9275. source: "./media/characters/major-colonel/front.svg"
  9276. }
  9277. },
  9278. back: {
  9279. height: math.unit(400, "feet"),
  9280. weight: math.unit(44444444, "lb"),
  9281. name: "Back",
  9282. image: {
  9283. source: "./media/characters/major-colonel/back.svg"
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Macro",
  9290. height: math.unit(400, "feet"),
  9291. default: true
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9297. {
  9298. catFront: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(120, "lb"),
  9301. name: "Front (Cat Side)",
  9302. image: {
  9303. source: "./media/characters/axel-lycan/cat-front.svg",
  9304. extra: 430 / 402,
  9305. bottom: 43 / 472.35
  9306. }
  9307. },
  9308. catBack: {
  9309. height: math.unit(6, "feet"),
  9310. weight: math.unit(120, "lb"),
  9311. name: "Back (Cat Side)",
  9312. image: {
  9313. source: "./media/characters/axel-lycan/cat-back.svg",
  9314. extra: 447 / 419,
  9315. bottom: 23.3 / 469
  9316. }
  9317. },
  9318. wolfFront: {
  9319. height: math.unit(6, "feet"),
  9320. weight: math.unit(120, "lb"),
  9321. name: "Front (Wolf Side)",
  9322. image: {
  9323. source: "./media/characters/axel-lycan/wolf-front.svg",
  9324. extra: 485 / 456,
  9325. bottom: 19 / 504
  9326. }
  9327. },
  9328. wolfBack: {
  9329. height: math.unit(6, "feet"),
  9330. weight: math.unit(120, "lb"),
  9331. name: "Back (Wolf Side)",
  9332. image: {
  9333. source: "./media/characters/axel-lycan/wolf-back.svg",
  9334. extra: 475 / 438,
  9335. bottom: 39.2 / 514
  9336. }
  9337. },
  9338. },
  9339. [
  9340. {
  9341. name: "Macro",
  9342. height: math.unit(1, "km"),
  9343. default: true
  9344. },
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9349. {
  9350. front: {
  9351. height: math.unit(5 + 9 / 12, "feet"),
  9352. weight: math.unit(175, "lb"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/vanrel-hyena/front.svg",
  9356. extra: 1086 / 1010,
  9357. bottom: 0.04
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Normal",
  9364. height: math.unit(5 + 9 / 12, "feet"),
  9365. default: true
  9366. },
  9367. ]
  9368. ))
  9369. characterMakers.push(() => makeCharacter(
  9370. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9371. {
  9372. front: {
  9373. height: math.unit(6, "feet"),
  9374. weight: math.unit(103, "lb"),
  9375. name: "Front",
  9376. image: {
  9377. source: "./media/characters/abbott-absol/front.svg",
  9378. extra: 2010 / 1842
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Megamicro",
  9385. height: math.unit(0.1, "mm")
  9386. },
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(1, "inch")
  9390. },
  9391. {
  9392. name: "Normal",
  9393. height: math.unit(6, "feet"),
  9394. default: true
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(6, "feet"),
  9403. weight: math.unit(264, "lb"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/hector/front.svg",
  9407. extra: 2280 / 2130,
  9408. bottom: 0.07
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(12.25, "foot"),
  9416. default: true
  9417. },
  9418. {
  9419. name: "Macro",
  9420. height: math.unit(160, "feet")
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9426. {
  9427. front: {
  9428. height: math.unit(6, "feet"),
  9429. weight: math.unit(150, "lb"),
  9430. name: "Front",
  9431. image: {
  9432. source: "./media/characters/sal/front.svg",
  9433. extra: 1846 / 1699,
  9434. bottom: 0.04
  9435. }
  9436. },
  9437. },
  9438. [
  9439. {
  9440. name: "Megamacro",
  9441. height: math.unit(10, "miles"),
  9442. default: true
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9448. {
  9449. front: {
  9450. height: math.unit(3, "meters"),
  9451. weight: math.unit(450, "kg"),
  9452. name: "front",
  9453. image: {
  9454. source: "./media/characters/ranger/front.svg",
  9455. extra: 2401 / 2243,
  9456. bottom: 0.05
  9457. }
  9458. },
  9459. },
  9460. [
  9461. {
  9462. name: "Normal",
  9463. height: math.unit(3, "meters"),
  9464. default: true
  9465. },
  9466. ]
  9467. ))
  9468. characterMakers.push(() => makeCharacter(
  9469. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9470. {
  9471. front: {
  9472. height: math.unit(14, "feet"),
  9473. weight: math.unit(800, "kg"),
  9474. name: "Front",
  9475. image: {
  9476. source: "./media/characters/theresa/front.svg",
  9477. extra: 3575 / 3346,
  9478. bottom: 0.03
  9479. }
  9480. },
  9481. },
  9482. [
  9483. {
  9484. name: "Normal",
  9485. height: math.unit(14, "feet"),
  9486. default: true
  9487. },
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9492. {
  9493. front: {
  9494. height: math.unit(6, "feet"),
  9495. weight: math.unit(3, "kg"),
  9496. name: "Front",
  9497. image: {
  9498. source: "./media/characters/ine/front.svg",
  9499. extra: 678 / 539,
  9500. bottom: 0.023
  9501. }
  9502. },
  9503. },
  9504. [
  9505. {
  9506. name: "Normal",
  9507. height: math.unit(2.265, "feet"),
  9508. default: true
  9509. },
  9510. ]
  9511. ))
  9512. characterMakers.push(() => makeCharacter(
  9513. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9514. {
  9515. front: {
  9516. height: math.unit(5, "feet"),
  9517. weight: math.unit(30, "kg"),
  9518. name: "Front",
  9519. image: {
  9520. source: "./media/characters/vial/front.svg",
  9521. extra: 1365 / 1277,
  9522. bottom: 0.04
  9523. }
  9524. },
  9525. },
  9526. [
  9527. {
  9528. name: "Normal",
  9529. height: math.unit(5, "feet"),
  9530. default: true
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9536. {
  9537. side: {
  9538. height: math.unit(3.4, "meters"),
  9539. weight: math.unit(1000, "lb"),
  9540. name: "Side",
  9541. image: {
  9542. source: "./media/characters/rovoska/side.svg",
  9543. extra: 4403 / 1515
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(3.4, "meters"),
  9551. default: true
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(8, "feet"),
  9560. weight: math.unit(315, "lb"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/gunner-rotthbauer/front.svg"
  9564. }
  9565. },
  9566. back: {
  9567. height: math.unit(8, "feet"),
  9568. weight: math.unit(315, "lb"),
  9569. name: "Back",
  9570. image: {
  9571. source: "./media/characters/gunner-rotthbauer/back.svg"
  9572. }
  9573. },
  9574. },
  9575. [
  9576. {
  9577. name: "Micro",
  9578. height: math.unit(3.5, "inches")
  9579. },
  9580. {
  9581. name: "Normal",
  9582. height: math.unit(8, "feet"),
  9583. default: true
  9584. },
  9585. {
  9586. name: "Macro",
  9587. height: math.unit(250, "feet")
  9588. },
  9589. {
  9590. name: "Megamacro",
  9591. height: math.unit(1, "AU")
  9592. },
  9593. ]
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9597. {
  9598. front: {
  9599. height: math.unit(5 + 5 / 12, "feet"),
  9600. weight: math.unit(140, "lb"),
  9601. name: "Front",
  9602. image: {
  9603. source: "./media/characters/allatia/front.svg",
  9604. extra: 1227 / 1180,
  9605. bottom: 0.027
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(5 + 5 / 12, "feet")
  9613. },
  9614. {
  9615. name: "Macro",
  9616. height: math.unit(250, "feet"),
  9617. default: true
  9618. },
  9619. {
  9620. name: "Megamacro",
  9621. height: math.unit(8, "miles")
  9622. }
  9623. ]
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9627. {
  9628. front: {
  9629. height: math.unit(6, "feet"),
  9630. weight: math.unit(120, "lb"),
  9631. name: "Front",
  9632. image: {
  9633. source: "./media/characters/tene/front.svg",
  9634. extra: 1728 / 1578,
  9635. bottom: 0.022
  9636. }
  9637. },
  9638. stomping: {
  9639. height: math.unit(2.025, "meters"),
  9640. weight: math.unit(120, "lb"),
  9641. name: "Stomping",
  9642. image: {
  9643. source: "./media/characters/tene/stomping.svg",
  9644. extra: 938 / 873,
  9645. bottom: 0.01
  9646. }
  9647. },
  9648. sitting: {
  9649. height: math.unit(1, "meter"),
  9650. weight: math.unit(120, "lb"),
  9651. name: "Sitting",
  9652. image: {
  9653. source: "./media/characters/tene/sitting.svg",
  9654. extra: 437 / 415,
  9655. bottom: 0.1
  9656. }
  9657. },
  9658. feral: {
  9659. height: math.unit(3.9, "feet"),
  9660. weight: math.unit(250, "lb"),
  9661. name: "Feral",
  9662. image: {
  9663. source: "./media/characters/tene/feral.svg",
  9664. extra: 717 / 458,
  9665. bottom: 0.179
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Normal",
  9672. height: math.unit(6, "feet")
  9673. },
  9674. {
  9675. name: "Macro",
  9676. height: math.unit(300, "feet"),
  9677. default: true
  9678. },
  9679. {
  9680. name: "Megamacro",
  9681. height: math.unit(5, "miles")
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9687. {
  9688. side: {
  9689. height: math.unit(6, "feet"),
  9690. name: "Side",
  9691. image: {
  9692. source: "./media/characters/evander/side.svg",
  9693. extra: 877 / 477
  9694. }
  9695. },
  9696. },
  9697. [
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(0.83, "meters"),
  9701. default: true
  9702. },
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9707. {
  9708. front: {
  9709. height: math.unit(12, "feet"),
  9710. weight: math.unit(1000, "lb"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9714. extra: 1762 / 1611
  9715. }
  9716. },
  9717. back: {
  9718. height: math.unit(12, "feet"),
  9719. weight: math.unit(1000, "lb"),
  9720. name: "Back",
  9721. image: {
  9722. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9723. extra: 1762 / 1611
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Normal",
  9730. height: math.unit(12, "feet"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "Kaiju",
  9735. height: math.unit(150, "feet")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(150, "lb"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/zero-alurus/front.svg"
  9748. }
  9749. },
  9750. back: {
  9751. height: math.unit(6, "feet"),
  9752. weight: math.unit(150, "lb"),
  9753. name: "Back",
  9754. image: {
  9755. source: "./media/characters/zero-alurus/back.svg"
  9756. }
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Normal",
  9762. height: math.unit(5 + 10 / 12, "feet")
  9763. },
  9764. {
  9765. name: "Macro",
  9766. height: math.unit(60, "feet"),
  9767. default: true
  9768. },
  9769. {
  9770. name: "Macro+",
  9771. height: math.unit(450, "feet")
  9772. },
  9773. ]
  9774. ))
  9775. characterMakers.push(() => makeCharacter(
  9776. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9777. {
  9778. front: {
  9779. height: math.unit(6, "feet"),
  9780. weight: math.unit(200, "lb"),
  9781. name: "Front",
  9782. image: {
  9783. source: "./media/characters/mega-shi/front.svg",
  9784. extra: 1279 / 1250,
  9785. bottom: 0.02
  9786. }
  9787. },
  9788. back: {
  9789. height: math.unit(6, "feet"),
  9790. weight: math.unit(200, "lb"),
  9791. name: "Back",
  9792. image: {
  9793. source: "./media/characters/mega-shi/back.svg",
  9794. extra: 1279 / 1250,
  9795. bottom: 0.02
  9796. }
  9797. },
  9798. },
  9799. [
  9800. {
  9801. name: "Micro",
  9802. height: math.unit(16 + 6 / 12, "feet")
  9803. },
  9804. {
  9805. name: "Third Dimension",
  9806. height: math.unit(40, "meters")
  9807. },
  9808. {
  9809. name: "Normal",
  9810. height: math.unit(660, "feet"),
  9811. default: true
  9812. },
  9813. {
  9814. name: "Megamacro",
  9815. height: math.unit(10, "miles")
  9816. },
  9817. {
  9818. name: "Planetary Launch",
  9819. height: math.unit(500, "miles")
  9820. },
  9821. {
  9822. name: "Interstellar",
  9823. height: math.unit(1e9, "miles")
  9824. },
  9825. {
  9826. name: "Leaving the Universe",
  9827. height: math.unit(1, "gigaparsec")
  9828. },
  9829. {
  9830. name: "Travelling Universes",
  9831. height: math.unit(30e15, "parsecs")
  9832. },
  9833. ]
  9834. ))
  9835. characterMakers.push(() => makeCharacter(
  9836. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9837. {
  9838. front: {
  9839. height: math.unit(6, "feet"),
  9840. weight: math.unit(150, "lb"),
  9841. name: "Front",
  9842. image: {
  9843. source: "./media/characters/odyssey/front.svg",
  9844. extra: 1782 / 1582,
  9845. bottom: 0.01
  9846. }
  9847. },
  9848. side: {
  9849. height: math.unit(5.7, "feet"),
  9850. weight: math.unit(140, "lb"),
  9851. name: "Side",
  9852. image: {
  9853. source: "./media/characters/odyssey/side.svg",
  9854. extra: 6462 / 5700
  9855. }
  9856. },
  9857. },
  9858. [
  9859. {
  9860. name: "Normal",
  9861. height: math.unit(5 + 4 / 12, "feet")
  9862. },
  9863. {
  9864. name: "Macro",
  9865. height: math.unit(1, "km")
  9866. },
  9867. {
  9868. name: "Megamacro",
  9869. height: math.unit(3000, "km")
  9870. },
  9871. {
  9872. name: "Gigamacro",
  9873. height: math.unit(1, "AU"),
  9874. default: true
  9875. },
  9876. {
  9877. name: "Omniversal",
  9878. height: math.unit(100e14, "lightyears")
  9879. },
  9880. ]
  9881. ))
  9882. characterMakers.push(() => makeCharacter(
  9883. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9884. {
  9885. front: {
  9886. height: math.unit(6, "feet"),
  9887. weight: math.unit(300, "lb"),
  9888. name: "Front",
  9889. image: {
  9890. source: "./media/characters/mekuto/front.svg",
  9891. extra: 921 / 832,
  9892. bottom: 0.03
  9893. }
  9894. },
  9895. hand: {
  9896. height: math.unit(6 / 10.24, "feet"),
  9897. name: "Hand",
  9898. image: {
  9899. source: "./media/characters/mekuto/hand.svg"
  9900. }
  9901. },
  9902. foot: {
  9903. height: math.unit(6 / 5.05, "feet"),
  9904. name: "Foot",
  9905. image: {
  9906. source: "./media/characters/mekuto/foot.svg"
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Minimicro",
  9913. height: math.unit(0.2, "inches")
  9914. },
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(1.5, "inches")
  9918. },
  9919. {
  9920. name: "Normal",
  9921. height: math.unit(5 + 11 / 12, "feet"),
  9922. default: true
  9923. },
  9924. {
  9925. name: "Minimacro",
  9926. height: math.unit(17 + 9 / 12, "feet")
  9927. },
  9928. {
  9929. name: "Macro",
  9930. height: math.unit(177.5, "feet")
  9931. },
  9932. {
  9933. name: "Megamacro",
  9934. height: math.unit(152, "miles")
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9940. {
  9941. front: {
  9942. height: math.unit(6.5, "inches"),
  9943. weight: math.unit(13, "oz"),
  9944. name: "Front",
  9945. image: {
  9946. source: "./media/characters/dafydd-tomos/front.svg",
  9947. extra: 2990 / 2603,
  9948. bottom: 0.03
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Micro",
  9955. height: math.unit(6.5, "inches"),
  9956. default: true
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(6, "feet"),
  9965. weight: math.unit(150, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/splinter/front.svg",
  9969. extra: 2990 / 2882,
  9970. bottom: 0.04
  9971. }
  9972. },
  9973. back: {
  9974. height: math.unit(6, "feet"),
  9975. weight: math.unit(150, "lb"),
  9976. name: "Back",
  9977. image: {
  9978. source: "./media/characters/splinter/back.svg",
  9979. extra: 2990 / 2882,
  9980. bottom: 0.04
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(6, "feet")
  9988. },
  9989. {
  9990. name: "Macro",
  9991. height: math.unit(230, "meters"),
  9992. default: true
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(4 + 10 / 12, "feet"),
  10001. weight: math.unit(480, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/snow-gabumon/front.svg",
  10005. extra: 1140 / 963,
  10006. bottom: 0.058
  10007. }
  10008. },
  10009. back: {
  10010. height: math.unit(4 + 10 / 12, "feet"),
  10011. weight: math.unit(480, "lb"),
  10012. name: "Back",
  10013. image: {
  10014. source: "./media/characters/snow-gabumon/back.svg",
  10015. extra: 1115 / 962,
  10016. bottom: 0.041
  10017. }
  10018. },
  10019. frontUndresed: {
  10020. height: math.unit(4 + 10 / 12, "feet"),
  10021. weight: math.unit(480, "lb"),
  10022. name: "Front (Undressed)",
  10023. image: {
  10024. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10025. extra: 1061 / 960,
  10026. bottom: 0.045
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Micro",
  10033. height: math.unit(1, "inch")
  10034. },
  10035. {
  10036. name: "Normal",
  10037. height: math.unit(4 + 10 / 12, "feet"),
  10038. default: true
  10039. },
  10040. {
  10041. name: "Macro",
  10042. height: math.unit(200, "feet")
  10043. },
  10044. {
  10045. name: "Megamacro",
  10046. height: math.unit(120, "miles")
  10047. },
  10048. {
  10049. name: "Gigamacro",
  10050. height: math.unit(9800, "miles")
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10056. {
  10057. front: {
  10058. height: math.unit(1.7, "meters"),
  10059. weight: math.unit(140, "lb"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/moody/front.svg",
  10063. extra: 3226 / 3007,
  10064. bottom: 0.087
  10065. }
  10066. },
  10067. },
  10068. [
  10069. {
  10070. name: "Micro",
  10071. height: math.unit(1, "mm")
  10072. },
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(1.7, "meters"),
  10076. default: true
  10077. },
  10078. {
  10079. name: "Macro",
  10080. height: math.unit(80, "meters")
  10081. },
  10082. {
  10083. name: "Macro+",
  10084. height: math.unit(500, "meters")
  10085. },
  10086. ]
  10087. ))
  10088. characterMakers.push(() => makeCharacter(
  10089. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10090. {
  10091. front: {
  10092. height: math.unit(6, "feet"),
  10093. weight: math.unit(150, "lb"),
  10094. name: "Front",
  10095. image: {
  10096. source: "./media/characters/zyas/front.svg",
  10097. extra: 1180 / 1120,
  10098. bottom: 0.045
  10099. }
  10100. },
  10101. },
  10102. [
  10103. {
  10104. name: "Normal",
  10105. height: math.unit(10, "feet"),
  10106. default: true
  10107. },
  10108. {
  10109. name: "Macro",
  10110. height: math.unit(500, "feet")
  10111. },
  10112. {
  10113. name: "Megamacro",
  10114. height: math.unit(5, "miles")
  10115. },
  10116. {
  10117. name: "Teramacro",
  10118. height: math.unit(150000, "miles")
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(6, "feet"),
  10127. weight: math.unit(150, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/cuon/front.svg",
  10131. extra: 1390 / 1320,
  10132. bottom: 0.008
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Micro",
  10139. height: math.unit(3, "inches")
  10140. },
  10141. {
  10142. name: "Normal",
  10143. height: math.unit(18 + 9 / 12, "feet"),
  10144. default: true
  10145. },
  10146. {
  10147. name: "Macro",
  10148. height: math.unit(360, "feet")
  10149. },
  10150. {
  10151. name: "Megamacro",
  10152. height: math.unit(360, "miles")
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10158. {
  10159. front: {
  10160. height: math.unit(2.4, "meters"),
  10161. weight: math.unit(70, "kg"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/nyanuxk/front.svg",
  10165. extra: 1172 / 1084,
  10166. bottom: 0.065
  10167. }
  10168. },
  10169. side: {
  10170. height: math.unit(2.4, "meters"),
  10171. weight: math.unit(70, "kg"),
  10172. name: "Side",
  10173. image: {
  10174. source: "./media/characters/nyanuxk/side.svg",
  10175. extra: 1190 / 1132,
  10176. bottom: 0.007
  10177. }
  10178. },
  10179. back: {
  10180. height: math.unit(2.4, "meters"),
  10181. weight: math.unit(70, "kg"),
  10182. name: "Back",
  10183. image: {
  10184. source: "./media/characters/nyanuxk/back.svg",
  10185. extra: 1200 / 1141,
  10186. bottom: 0.015
  10187. }
  10188. },
  10189. foot: {
  10190. height: math.unit(0.52, "meters"),
  10191. name: "Foot",
  10192. image: {
  10193. source: "./media/characters/nyanuxk/foot.svg"
  10194. }
  10195. },
  10196. },
  10197. [
  10198. {
  10199. name: "Micro",
  10200. height: math.unit(2, "cm")
  10201. },
  10202. {
  10203. name: "Normal",
  10204. height: math.unit(2.4, "meters"),
  10205. default: true
  10206. },
  10207. {
  10208. name: "Smaller Macro",
  10209. height: math.unit(120, "meters")
  10210. },
  10211. {
  10212. name: "Bigger Macro",
  10213. height: math.unit(1.2, "km")
  10214. },
  10215. {
  10216. name: "Megamacro",
  10217. height: math.unit(15, "kilometers")
  10218. },
  10219. {
  10220. name: "Gigamacro",
  10221. height: math.unit(2000, "km")
  10222. },
  10223. {
  10224. name: "Teramacro",
  10225. height: math.unit(500000, "km")
  10226. },
  10227. ]
  10228. ))
  10229. characterMakers.push(() => makeCharacter(
  10230. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10231. {
  10232. side: {
  10233. height: math.unit(6, "feet"),
  10234. name: "Side",
  10235. image: {
  10236. source: "./media/characters/ailbhe/side.svg",
  10237. extra: 757 / 464,
  10238. bottom: 0.041
  10239. }
  10240. },
  10241. },
  10242. [
  10243. {
  10244. name: "Normal",
  10245. height: math.unit(1.07, "meters"),
  10246. default: true
  10247. },
  10248. ]
  10249. ))
  10250. characterMakers.push(() => makeCharacter(
  10251. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10252. {
  10253. front: {
  10254. height: math.unit(6, "feet"),
  10255. weight: math.unit(120, "kg"),
  10256. name: "Front",
  10257. image: {
  10258. source: "./media/characters/zevulfius/front.svg",
  10259. extra: 965 / 903
  10260. }
  10261. },
  10262. side: {
  10263. height: math.unit(6, "feet"),
  10264. weight: math.unit(120, "kg"),
  10265. name: "Side",
  10266. image: {
  10267. source: "./media/characters/zevulfius/side.svg",
  10268. extra: 939 / 900
  10269. }
  10270. },
  10271. back: {
  10272. height: math.unit(6, "feet"),
  10273. weight: math.unit(120, "kg"),
  10274. name: "Back",
  10275. image: {
  10276. source: "./media/characters/zevulfius/back.svg",
  10277. extra: 918 / 854,
  10278. bottom: 0.005
  10279. }
  10280. },
  10281. foot: {
  10282. height: math.unit(6 / 3.72, "feet"),
  10283. name: "Foot",
  10284. image: {
  10285. source: "./media/characters/zevulfius/foot.svg"
  10286. }
  10287. },
  10288. },
  10289. [
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(750, "meters")
  10293. },
  10294. {
  10295. name: "Megamacro",
  10296. height: math.unit(20, "km"),
  10297. default: true
  10298. },
  10299. {
  10300. name: "Gigamacro",
  10301. height: math.unit(2000, "km")
  10302. },
  10303. {
  10304. name: "Teramacro",
  10305. height: math.unit(250000, "km")
  10306. },
  10307. ]
  10308. ))
  10309. characterMakers.push(() => makeCharacter(
  10310. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10311. {
  10312. front: {
  10313. height: math.unit(100, "feet"),
  10314. weight: math.unit(350, "kg"),
  10315. name: "Front",
  10316. image: {
  10317. source: "./media/characters/rikes/front.svg",
  10318. extra: 1565 / 1483,
  10319. bottom: 0.017
  10320. }
  10321. },
  10322. },
  10323. [
  10324. {
  10325. name: "Macro",
  10326. height: math.unit(100, "feet"),
  10327. default: true
  10328. },
  10329. ]
  10330. ))
  10331. characterMakers.push(() => makeCharacter(
  10332. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10333. {
  10334. anthro: {
  10335. height: math.unit(8, "feet"),
  10336. weight: math.unit(120, "kg"),
  10337. name: "Anthro",
  10338. image: {
  10339. source: "./media/characters/adam-silver-mane/anthro.svg",
  10340. extra: 5743 / 5339,
  10341. bottom: 0.07
  10342. }
  10343. },
  10344. taur: {
  10345. height: math.unit(16, "feet"),
  10346. weight: math.unit(1500, "kg"),
  10347. name: "Taur",
  10348. image: {
  10349. source: "./media/characters/adam-silver-mane/taur.svg",
  10350. extra: 1713 / 1571,
  10351. bottom: 0.01
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Normal",
  10358. height: math.unit(8, "feet")
  10359. },
  10360. {
  10361. name: "Minimacro",
  10362. height: math.unit(80, "feet")
  10363. },
  10364. {
  10365. name: "Macro",
  10366. height: math.unit(800, "feet"),
  10367. default: true
  10368. },
  10369. {
  10370. name: "Megamacro",
  10371. height: math.unit(8000, "feet")
  10372. },
  10373. {
  10374. name: "Gigamacro",
  10375. height: math.unit(800, "miles")
  10376. },
  10377. {
  10378. name: "Teramacro",
  10379. height: math.unit(80000, "miles")
  10380. },
  10381. {
  10382. name: "Celestial",
  10383. height: math.unit(8e6, "miles")
  10384. },
  10385. {
  10386. name: "Star Dragon",
  10387. height: math.unit(800000, "parsecs")
  10388. },
  10389. {
  10390. name: "Godly",
  10391. height: math.unit(800, "teraparsecs")
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10397. {
  10398. front: {
  10399. height: math.unit(6, "feet"),
  10400. weight: math.unit(150, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/ky'owin/front.svg",
  10404. extra: 3888 / 3068,
  10405. bottom: 0.015
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Normal",
  10412. height: math.unit(6 + 8 / 12, "feet")
  10413. },
  10414. {
  10415. name: "Large",
  10416. height: math.unit(68, "feet")
  10417. },
  10418. {
  10419. name: "Macro",
  10420. height: math.unit(132, "feet")
  10421. },
  10422. {
  10423. name: "Macro+",
  10424. height: math.unit(340, "feet")
  10425. },
  10426. {
  10427. name: "Macro++",
  10428. height: math.unit(680, "feet"),
  10429. default: true
  10430. },
  10431. {
  10432. name: "Megamacro",
  10433. height: math.unit(1, "mile")
  10434. },
  10435. {
  10436. name: "Megamacro+",
  10437. height: math.unit(10, "miles")
  10438. },
  10439. ]
  10440. ))
  10441. characterMakers.push(() => makeCharacter(
  10442. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10443. {
  10444. front: {
  10445. height: math.unit(4, "feet"),
  10446. weight: math.unit(50, "lb"),
  10447. name: "Front",
  10448. image: {
  10449. source: "./media/characters/mal/front.svg",
  10450. extra: 785 / 724,
  10451. bottom: 0.07
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Micro",
  10458. height: math.unit(4, "inches")
  10459. },
  10460. {
  10461. name: "Normal",
  10462. height: math.unit(4, "feet"),
  10463. default: true
  10464. },
  10465. {
  10466. name: "Macro",
  10467. height: math.unit(200, "feet")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10473. {
  10474. front: {
  10475. height: math.unit(6, "feet"),
  10476. weight: math.unit(150, "lb"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/jordan-deware/front.svg",
  10480. extra: 1191 / 1012
  10481. }
  10482. },
  10483. },
  10484. [
  10485. {
  10486. name: "Nano",
  10487. height: math.unit(0.01, "mm")
  10488. },
  10489. {
  10490. name: "Minimicro",
  10491. height: math.unit(1, "mm")
  10492. },
  10493. {
  10494. name: "Micro",
  10495. height: math.unit(0.5, "inches")
  10496. },
  10497. {
  10498. name: "Normal",
  10499. height: math.unit(4, "feet"),
  10500. default: true
  10501. },
  10502. {
  10503. name: "Minimacro",
  10504. height: math.unit(40, "meters")
  10505. },
  10506. {
  10507. name: "Small Macro",
  10508. height: math.unit(400, "meters")
  10509. },
  10510. {
  10511. name: "Macro",
  10512. height: math.unit(4, "miles")
  10513. },
  10514. {
  10515. name: "Megamacro",
  10516. height: math.unit(40, "miles")
  10517. },
  10518. {
  10519. name: "Megamacro+",
  10520. height: math.unit(400, "miles")
  10521. },
  10522. {
  10523. name: "Gigamacro",
  10524. height: math.unit(400000, "miles")
  10525. },
  10526. ]
  10527. ))
  10528. characterMakers.push(() => makeCharacter(
  10529. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10530. {
  10531. side: {
  10532. height: math.unit(6, "feet"),
  10533. weight: math.unit(150, "lb"),
  10534. name: "Side",
  10535. image: {
  10536. source: "./media/characters/kimiko/side.svg",
  10537. extra: 600 / 358
  10538. }
  10539. },
  10540. },
  10541. [
  10542. {
  10543. name: "Normal",
  10544. height: math.unit(15, "feet"),
  10545. default: true
  10546. },
  10547. {
  10548. name: "Macro",
  10549. height: math.unit(220, "feet")
  10550. },
  10551. {
  10552. name: "Macro+",
  10553. height: math.unit(1450, "feet")
  10554. },
  10555. {
  10556. name: "Megamacro",
  10557. height: math.unit(11500, "feet")
  10558. },
  10559. {
  10560. name: "Gigamacro",
  10561. height: math.unit(9500, "miles")
  10562. },
  10563. {
  10564. name: "Teramacro",
  10565. height: math.unit(2208005005, "miles")
  10566. },
  10567. {
  10568. name: "Examacro",
  10569. height: math.unit(2750, "parsecs")
  10570. },
  10571. {
  10572. name: "Zettamacro",
  10573. height: math.unit(101500, "parsecs")
  10574. },
  10575. ]
  10576. ))
  10577. characterMakers.push(() => makeCharacter(
  10578. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10579. {
  10580. front: {
  10581. height: math.unit(6, "feet"),
  10582. weight: math.unit(70, "kg"),
  10583. name: "Front",
  10584. image: {
  10585. source: "./media/characters/andrew-sleepy/front.svg"
  10586. }
  10587. },
  10588. side: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(70, "kg"),
  10591. name: "Side",
  10592. image: {
  10593. source: "./media/characters/andrew-sleepy/side.svg"
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Micro",
  10600. height: math.unit(1, "mm"),
  10601. default: true
  10602. },
  10603. ]
  10604. ))
  10605. characterMakers.push(() => makeCharacter(
  10606. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10607. {
  10608. front: {
  10609. height: math.unit(6, "feet"),
  10610. weight: math.unit(150, "lb"),
  10611. name: "Front",
  10612. image: {
  10613. source: "./media/characters/judio/front.svg",
  10614. extra: 1258 / 1110
  10615. }
  10616. },
  10617. },
  10618. [
  10619. {
  10620. name: "Normal",
  10621. height: math.unit(5 + 6 / 12, "feet")
  10622. },
  10623. {
  10624. name: "Macro",
  10625. height: math.unit(1000, "feet"),
  10626. default: true
  10627. },
  10628. {
  10629. name: "Megamacro",
  10630. height: math.unit(10, "miles")
  10631. },
  10632. ]
  10633. ))
  10634. characterMakers.push(() => makeCharacter(
  10635. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10636. {
  10637. front: {
  10638. height: math.unit(6, "feet"),
  10639. weight: math.unit(68, "kg"),
  10640. name: "Front",
  10641. image: {
  10642. source: "./media/characters/nomaxice/front.svg",
  10643. extra: 1498 / 1073,
  10644. bottom: 0.075
  10645. }
  10646. },
  10647. foot: {
  10648. height: math.unit(1.1, "feet"),
  10649. name: "Foot",
  10650. image: {
  10651. source: "./media/characters/nomaxice/foot.svg"
  10652. }
  10653. },
  10654. },
  10655. [
  10656. {
  10657. name: "Micro",
  10658. height: math.unit(8, "cm")
  10659. },
  10660. {
  10661. name: "Norm",
  10662. height: math.unit(1.82, "m")
  10663. },
  10664. {
  10665. name: "Norm+",
  10666. height: math.unit(8.8, "feet")
  10667. },
  10668. {
  10669. name: "Big",
  10670. height: math.unit(8, "meters"),
  10671. default: true
  10672. },
  10673. {
  10674. name: "Macro",
  10675. height: math.unit(18, "meters")
  10676. },
  10677. {
  10678. name: "Macro+",
  10679. height: math.unit(88, "meters")
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10685. {
  10686. front: {
  10687. height: math.unit(12, "feet"),
  10688. weight: math.unit(1.5, "tons"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/dydros/front.svg",
  10692. extra: 863 / 800,
  10693. bottom: 0.015
  10694. }
  10695. },
  10696. back: {
  10697. height: math.unit(12, "feet"),
  10698. weight: math.unit(1.5, "tons"),
  10699. name: "Back",
  10700. image: {
  10701. source: "./media/characters/dydros/back.svg",
  10702. extra: 900 / 843,
  10703. bottom: 0.005
  10704. }
  10705. },
  10706. },
  10707. [
  10708. {
  10709. name: "Normal",
  10710. height: math.unit(12, "feet"),
  10711. default: true
  10712. },
  10713. ]
  10714. ))
  10715. characterMakers.push(() => makeCharacter(
  10716. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10717. {
  10718. front: {
  10719. height: math.unit(6, "feet"),
  10720. weight: math.unit(100, "kg"),
  10721. name: "Front",
  10722. image: {
  10723. source: "./media/characters/riggi/front.svg",
  10724. extra: 5787 / 5303
  10725. }
  10726. },
  10727. hyper: {
  10728. height: math.unit(6 * 5 / 3, "feet"),
  10729. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10730. name: "Hyper",
  10731. image: {
  10732. source: "./media/characters/riggi/hyper.svg",
  10733. extra: 3595 / 3485
  10734. }
  10735. },
  10736. },
  10737. [
  10738. {
  10739. name: "Small Macro",
  10740. height: math.unit(50, "feet")
  10741. },
  10742. {
  10743. name: "Default",
  10744. height: math.unit(200, "feet"),
  10745. default: true
  10746. },
  10747. {
  10748. name: "Loom",
  10749. height: math.unit(10000, "feet")
  10750. },
  10751. {
  10752. name: "Cruising Altitude",
  10753. height: math.unit(30000, "feet")
  10754. },
  10755. {
  10756. name: "Megamacro",
  10757. height: math.unit(100, "miles")
  10758. },
  10759. {
  10760. name: "Continent Sized",
  10761. height: math.unit(2800, "miles")
  10762. },
  10763. {
  10764. name: "Earth Sized",
  10765. height: math.unit(8000, "miles")
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(6, "feet"),
  10774. weight: math.unit(250, "lb"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/alexi/front.svg",
  10778. extra: 3483 / 3291,
  10779. bottom: 0.04
  10780. }
  10781. },
  10782. back: {
  10783. height: math.unit(6, "feet"),
  10784. weight: math.unit(250, "lb"),
  10785. name: "Back",
  10786. image: {
  10787. source: "./media/characters/alexi/back.svg",
  10788. extra: 3533 / 3356,
  10789. bottom: 0.021
  10790. }
  10791. },
  10792. frontTransforming: {
  10793. height: math.unit(8.58, "feet"),
  10794. weight: math.unit(1300, "lb"),
  10795. name: "Transforming",
  10796. image: {
  10797. source: "./media/characters/alexi/front-transforming.svg",
  10798. extra: 437 / 409,
  10799. bottom: 19 / 458.66
  10800. }
  10801. },
  10802. frontTransformed: {
  10803. height: math.unit(12.5, "feet"),
  10804. weight: math.unit(4000, "lb"),
  10805. name: "Transformed",
  10806. image: {
  10807. source: "./media/characters/alexi/front-transformed.svg",
  10808. extra: 639 / 614,
  10809. bottom: 30.55 / 671
  10810. }
  10811. },
  10812. },
  10813. [
  10814. {
  10815. name: "Normal",
  10816. height: math.unit(14, "feet"),
  10817. default: true
  10818. },
  10819. {
  10820. name: "Minimacro",
  10821. height: math.unit(30, "meters")
  10822. },
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(500, "meters")
  10826. },
  10827. {
  10828. name: "Megamacro",
  10829. height: math.unit(9000, "km")
  10830. },
  10831. {
  10832. name: "Teramacro",
  10833. height: math.unit(384000, "km")
  10834. },
  10835. ]
  10836. ))
  10837. characterMakers.push(() => makeCharacter(
  10838. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10839. {
  10840. front: {
  10841. height: math.unit(6, "feet"),
  10842. weight: math.unit(150, "lb"),
  10843. name: "Front",
  10844. image: {
  10845. source: "./media/characters/kayroo/front.svg",
  10846. extra: 1153 / 1038,
  10847. bottom: 0.06
  10848. }
  10849. },
  10850. foot: {
  10851. height: math.unit(6, "feet"),
  10852. weight: math.unit(150, "lb"),
  10853. name: "Foot",
  10854. image: {
  10855. source: "./media/characters/kayroo/foot.svg"
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Normal",
  10862. height: math.unit(8, "feet"),
  10863. default: true
  10864. },
  10865. {
  10866. name: "Minimacro",
  10867. height: math.unit(250, "feet")
  10868. },
  10869. {
  10870. name: "Macro",
  10871. height: math.unit(2800, "feet")
  10872. },
  10873. {
  10874. name: "Megamacro",
  10875. height: math.unit(5200, "feet")
  10876. },
  10877. {
  10878. name: "Gigamacro",
  10879. height: math.unit(27000, "feet")
  10880. },
  10881. {
  10882. name: "Omega",
  10883. height: math.unit(45000, "feet")
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10889. {
  10890. front: {
  10891. height: math.unit(18, "feet"),
  10892. weight: math.unit(5800, "lb"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/rhys/front.svg",
  10896. extra: 3386 / 3090,
  10897. bottom: 0.07
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Normal",
  10904. height: math.unit(18, "feet"),
  10905. default: true
  10906. },
  10907. {
  10908. name: "Working Size",
  10909. height: math.unit(200, "feet")
  10910. },
  10911. {
  10912. name: "Demolition Size",
  10913. height: math.unit(2000, "feet")
  10914. },
  10915. {
  10916. name: "Maximum Licensed Size",
  10917. height: math.unit(5, "miles")
  10918. },
  10919. {
  10920. name: "Maximum Observed Size",
  10921. height: math.unit(10, "yottameters")
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10927. {
  10928. front: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(250, "lb"),
  10931. name: "Front",
  10932. image: {
  10933. source: "./media/characters/toto/front.svg",
  10934. extra: 527 / 479,
  10935. bottom: 0.05
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Micro",
  10942. height: math.unit(3, "feet")
  10943. },
  10944. {
  10945. name: "Normal",
  10946. height: math.unit(10, "feet")
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(150, "feet"),
  10951. default: true
  10952. },
  10953. {
  10954. name: "Megamacro",
  10955. height: math.unit(1200, "feet")
  10956. },
  10957. ]
  10958. ))
  10959. characterMakers.push(() => makeCharacter(
  10960. { name: "King", species: ["lion"], tags: ["anthro"] },
  10961. {
  10962. back: {
  10963. height: math.unit(6, "feet"),
  10964. weight: math.unit(150, "lb"),
  10965. name: "Back",
  10966. image: {
  10967. source: "./media/characters/king/back.svg"
  10968. }
  10969. },
  10970. },
  10971. [
  10972. {
  10973. name: "Micro",
  10974. height: math.unit(2, "inches")
  10975. },
  10976. {
  10977. name: "Normal",
  10978. height: math.unit(8, "feet")
  10979. },
  10980. {
  10981. name: "Macro",
  10982. height: math.unit(200, "feet"),
  10983. default: true
  10984. },
  10985. {
  10986. name: "Megamacro",
  10987. height: math.unit(50, "miles")
  10988. },
  10989. ]
  10990. ))
  10991. characterMakers.push(() => makeCharacter(
  10992. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10993. {
  10994. anthro: {
  10995. height: math.unit(6 + 5 / 12, "feet"),
  10996. weight: math.unit(280, "lb"),
  10997. name: "Anthro",
  10998. image: {
  10999. source: "./media/characters/cordite/anthro.svg",
  11000. extra: 1986 / 1905,
  11001. bottom: 0.025
  11002. }
  11003. },
  11004. feral: {
  11005. height: math.unit(2, "feet"),
  11006. weight: math.unit(90, "lb"),
  11007. name: "Feral",
  11008. image: {
  11009. source: "./media/characters/cordite/feral.svg",
  11010. extra: 1260 / 755,
  11011. bottom: 0.05
  11012. }
  11013. },
  11014. },
  11015. [
  11016. {
  11017. name: "Normal",
  11018. height: math.unit(6 + 5 / 12, "feet"),
  11019. default: true
  11020. },
  11021. ]
  11022. ))
  11023. characterMakers.push(() => makeCharacter(
  11024. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11025. {
  11026. front: {
  11027. height: math.unit(6, "feet"),
  11028. weight: math.unit(150, "lb"),
  11029. name: "Front",
  11030. image: {
  11031. source: "./media/characters/pianostrong/front.svg",
  11032. extra: 6577 / 6254,
  11033. bottom: 0.02
  11034. }
  11035. },
  11036. side: {
  11037. height: math.unit(6, "feet"),
  11038. weight: math.unit(150, "lb"),
  11039. name: "Side",
  11040. image: {
  11041. source: "./media/characters/pianostrong/side.svg",
  11042. extra: 6106 / 5730
  11043. }
  11044. },
  11045. back: {
  11046. height: math.unit(6, "feet"),
  11047. weight: math.unit(150, "lb"),
  11048. name: "Back",
  11049. image: {
  11050. source: "./media/characters/pianostrong/back.svg",
  11051. extra: 6085 / 5733,
  11052. bottom: 0.01
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Macro",
  11059. height: math.unit(100, "feet")
  11060. },
  11061. {
  11062. name: "Macro+",
  11063. height: math.unit(300, "feet"),
  11064. default: true
  11065. },
  11066. {
  11067. name: "Macro++",
  11068. height: math.unit(1000, "feet")
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11074. {
  11075. front: {
  11076. height: math.unit(6, "feet"),
  11077. weight: math.unit(150, "lb"),
  11078. name: "Front",
  11079. image: {
  11080. source: "./media/characters/kona/front.svg",
  11081. extra: 2960 / 2629,
  11082. bottom: 0.005
  11083. }
  11084. },
  11085. },
  11086. [
  11087. {
  11088. name: "Normal",
  11089. height: math.unit(11 + 8 / 12, "feet")
  11090. },
  11091. {
  11092. name: "Macro",
  11093. height: math.unit(850, "feet"),
  11094. default: true
  11095. },
  11096. {
  11097. name: "Macro+",
  11098. height: math.unit(1.5, "km"),
  11099. default: true
  11100. },
  11101. {
  11102. name: "Megamacro",
  11103. height: math.unit(80, "miles")
  11104. },
  11105. {
  11106. name: "Gigamacro",
  11107. height: math.unit(3500, "miles")
  11108. },
  11109. ]
  11110. ))
  11111. characterMakers.push(() => makeCharacter(
  11112. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11113. {
  11114. side: {
  11115. height: math.unit(1.9, "meters"),
  11116. weight: math.unit(326, "kg"),
  11117. name: "Side",
  11118. image: {
  11119. source: "./media/characters/levi/side.svg",
  11120. extra: 1704 / 1334,
  11121. bottom: 0.02
  11122. }
  11123. },
  11124. },
  11125. [
  11126. {
  11127. name: "Normal",
  11128. height: math.unit(1.9, "meters"),
  11129. default: true
  11130. },
  11131. {
  11132. name: "Macro",
  11133. height: math.unit(20, "meters")
  11134. },
  11135. {
  11136. name: "Macro+",
  11137. height: math.unit(200, "meters")
  11138. },
  11139. {
  11140. name: "Megamacro",
  11141. height: math.unit(2, "km")
  11142. },
  11143. {
  11144. name: "Megamacro+",
  11145. height: math.unit(20, "km")
  11146. },
  11147. {
  11148. name: "Gigamacro",
  11149. height: math.unit(2500, "km")
  11150. },
  11151. {
  11152. name: "Gigamacro+",
  11153. height: math.unit(120000, "km")
  11154. },
  11155. {
  11156. name: "Teramacro",
  11157. height: math.unit(7.77e6, "km")
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11163. {
  11164. front: {
  11165. height: math.unit(6 + 4 / 12, "feet"),
  11166. weight: math.unit(188, "lb"),
  11167. name: "Front",
  11168. image: {
  11169. source: "./media/characters/bmc/front.svg",
  11170. extra: 1067 / 1022,
  11171. bottom: 0.047
  11172. }
  11173. },
  11174. },
  11175. [
  11176. {
  11177. name: "Human-sized",
  11178. height: math.unit(6 + 4 / 12, "feet")
  11179. },
  11180. {
  11181. name: "Small",
  11182. height: math.unit(250, "feet")
  11183. },
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(1250, "feet"),
  11187. default: true
  11188. },
  11189. {
  11190. name: "Good Day",
  11191. height: math.unit(88, "miles")
  11192. },
  11193. {
  11194. name: "Largest Measured Size",
  11195. height: math.unit(11.2e6, "lightyears")
  11196. },
  11197. ]
  11198. ))
  11199. characterMakers.push(() => makeCharacter(
  11200. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11201. {
  11202. front: {
  11203. height: math.unit(20, "feet"),
  11204. weight: math.unit(2016, "kg"),
  11205. name: "Front",
  11206. image: {
  11207. source: "./media/characters/sven-the-kaiju/front.svg",
  11208. extra: 1277/1250,
  11209. bottom: 35/1312
  11210. }
  11211. },
  11212. mouth: {
  11213. height: math.unit(1.85, "feet"),
  11214. name: "Mouth",
  11215. image: {
  11216. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Fairy",
  11223. height: math.unit(6, "inches")
  11224. },
  11225. {
  11226. name: "Normal",
  11227. height: math.unit(20, "feet"),
  11228. default: true
  11229. },
  11230. {
  11231. name: "Rampage",
  11232. height: math.unit(200, "feet")
  11233. },
  11234. {
  11235. name: "Archfey Forest Guardian",
  11236. height: math.unit(1, "mile")
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(4, "meters"),
  11245. weight: math.unit(2, "tons"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/marik/front.svg",
  11249. extra: 1057 / 1003,
  11250. bottom: 0.08
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Normal",
  11257. height: math.unit(4, "meters"),
  11258. default: true
  11259. },
  11260. {
  11261. name: "Macro",
  11262. height: math.unit(20, "meters")
  11263. },
  11264. {
  11265. name: "Megamacro",
  11266. height: math.unit(50, "km")
  11267. },
  11268. {
  11269. name: "Gigamacro",
  11270. height: math.unit(100, "km")
  11271. },
  11272. {
  11273. name: "Alpha Macro",
  11274. height: math.unit(7.88e7, "yottameters")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(6, "feet"),
  11283. weight: math.unit(110, "lb"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/mel/front.svg",
  11287. extra: 736 / 617,
  11288. bottom: 0.017
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Pico",
  11295. height: math.unit(3, "pm")
  11296. },
  11297. {
  11298. name: "Nano",
  11299. height: math.unit(3, "nm")
  11300. },
  11301. {
  11302. name: "Micro",
  11303. height: math.unit(0.3, "mm"),
  11304. default: true
  11305. },
  11306. {
  11307. name: "Micro+",
  11308. height: math.unit(3, "mm")
  11309. },
  11310. {
  11311. name: "Normal",
  11312. height: math.unit(5 + 10.5 / 12, "feet")
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11318. {
  11319. kaiju: {
  11320. height: math.unit(1.75, "meters"),
  11321. weight: math.unit(55, "kg"),
  11322. name: "Kaiju",
  11323. image: {
  11324. source: "./media/characters/lykonous/kaiju.svg",
  11325. extra: 1055 / 946,
  11326. bottom: 0.135
  11327. }
  11328. },
  11329. },
  11330. [
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(2.5, "meters"),
  11334. default: true
  11335. },
  11336. {
  11337. name: "Kaiju Dragon",
  11338. height: math.unit(60, "meters")
  11339. },
  11340. {
  11341. name: "Mega Kaiju",
  11342. height: math.unit(120, "km")
  11343. },
  11344. {
  11345. name: "Giga Kaiju",
  11346. height: math.unit(200, "megameters")
  11347. },
  11348. {
  11349. name: "Terra Kaiju",
  11350. height: math.unit(400, "gigameters")
  11351. },
  11352. {
  11353. name: "Kaiju Dragon God",
  11354. height: math.unit(13000, "exaparsecs")
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11360. {
  11361. front: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(150, "lb"),
  11364. name: "Front",
  11365. image: {
  11366. source: "./media/characters/blü/front.svg",
  11367. extra: 1883 / 1564,
  11368. bottom: 0.031
  11369. }
  11370. },
  11371. },
  11372. [
  11373. {
  11374. name: "Normal",
  11375. height: math.unit(13, "feet"),
  11376. default: true
  11377. },
  11378. {
  11379. name: "Big Boi",
  11380. height: math.unit(150, "meters")
  11381. },
  11382. {
  11383. name: "Mini Stomper",
  11384. height: math.unit(300, "meters")
  11385. },
  11386. {
  11387. name: "Macro",
  11388. height: math.unit(1000, "meters")
  11389. },
  11390. {
  11391. name: "Megamacro",
  11392. height: math.unit(11000, "meters")
  11393. },
  11394. {
  11395. name: "Gigamacro",
  11396. height: math.unit(11000, "km")
  11397. },
  11398. {
  11399. name: "Teramacro",
  11400. height: math.unit(420000, "km")
  11401. },
  11402. {
  11403. name: "Examacro",
  11404. height: math.unit(120, "parsecs")
  11405. },
  11406. {
  11407. name: "God Tho",
  11408. height: math.unit(98000000000, "parsecs")
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11414. {
  11415. taurFront: {
  11416. height: math.unit(6, "feet"),
  11417. weight: math.unit(200, "lb"),
  11418. name: "Taur (Front)",
  11419. image: {
  11420. source: "./media/characters/scales/taur-front.svg",
  11421. extra: 1,
  11422. bottom: 0.05
  11423. }
  11424. },
  11425. taurBack: {
  11426. height: math.unit(6, "feet"),
  11427. weight: math.unit(200, "lb"),
  11428. name: "Taur (Back)",
  11429. image: {
  11430. source: "./media/characters/scales/taur-back.svg",
  11431. extra: 1,
  11432. bottom: 0.08
  11433. }
  11434. },
  11435. anthro: {
  11436. height: math.unit(6 * 7 / 12, "feet"),
  11437. weight: math.unit(100, "lb"),
  11438. name: "Anthro",
  11439. image: {
  11440. source: "./media/characters/scales/anthro.svg",
  11441. extra: 1,
  11442. bottom: 0.06
  11443. }
  11444. },
  11445. },
  11446. [
  11447. {
  11448. name: "Normal",
  11449. height: math.unit(12, "feet"),
  11450. default: true
  11451. },
  11452. ]
  11453. ))
  11454. characterMakers.push(() => makeCharacter(
  11455. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11456. {
  11457. front: {
  11458. height: math.unit(6, "feet"),
  11459. weight: math.unit(150, "lb"),
  11460. name: "Front",
  11461. image: {
  11462. source: "./media/characters/koragos/front.svg",
  11463. extra: 841 / 794,
  11464. bottom: 0.035
  11465. }
  11466. },
  11467. back: {
  11468. height: math.unit(6, "feet"),
  11469. weight: math.unit(150, "lb"),
  11470. name: "Back",
  11471. image: {
  11472. source: "./media/characters/koragos/back.svg",
  11473. extra: 841 / 810,
  11474. bottom: 0.022
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(6 + 11 / 12, "feet"),
  11482. default: true
  11483. },
  11484. {
  11485. name: "Macro",
  11486. height: math.unit(490, "feet")
  11487. },
  11488. {
  11489. name: "Megamacro",
  11490. height: math.unit(10, "miles")
  11491. },
  11492. {
  11493. name: "Gigamacro",
  11494. height: math.unit(50, "miles")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11500. {
  11501. front: {
  11502. height: math.unit(6, "feet"),
  11503. weight: math.unit(250, "lb"),
  11504. name: "Front",
  11505. image: {
  11506. source: "./media/characters/xylrem/front.svg",
  11507. extra: 3323 / 3050,
  11508. bottom: 0.065
  11509. }
  11510. },
  11511. },
  11512. [
  11513. {
  11514. name: "Micro",
  11515. height: math.unit(4, "feet")
  11516. },
  11517. {
  11518. name: "Normal",
  11519. height: math.unit(16, "feet"),
  11520. default: true
  11521. },
  11522. {
  11523. name: "Macro",
  11524. height: math.unit(2720, "feet")
  11525. },
  11526. {
  11527. name: "Megamacro",
  11528. height: math.unit(25000, "miles")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(8, "feet"),
  11537. weight: math.unit(250, "kg"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/ikideru/front.svg",
  11541. extra: 930 / 870,
  11542. bottom: 0.087
  11543. }
  11544. },
  11545. back: {
  11546. height: math.unit(8, "feet"),
  11547. weight: math.unit(250, "kg"),
  11548. name: "Back",
  11549. image: {
  11550. source: "./media/characters/ikideru/back.svg",
  11551. extra: 919 / 852,
  11552. bottom: 0.055
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Rare",
  11559. height: math.unit(8, "feet"),
  11560. default: true
  11561. },
  11562. {
  11563. name: "Playful Loom",
  11564. height: math.unit(80, "feet")
  11565. },
  11566. {
  11567. name: "City Leaner",
  11568. height: math.unit(230, "feet")
  11569. },
  11570. {
  11571. name: "Megamacro",
  11572. height: math.unit(2500, "feet")
  11573. },
  11574. {
  11575. name: "Gigamacro",
  11576. height: math.unit(26400, "feet")
  11577. },
  11578. {
  11579. name: "Tectonic Shifter",
  11580. height: math.unit(1.7, "megameters")
  11581. },
  11582. {
  11583. name: "Planet Carer",
  11584. height: math.unit(21, "megameters")
  11585. },
  11586. {
  11587. name: "God",
  11588. height: math.unit(11157.22, "parsecs")
  11589. },
  11590. ]
  11591. ))
  11592. characterMakers.push(() => makeCharacter(
  11593. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11594. {
  11595. front: {
  11596. height: math.unit(6, "feet"),
  11597. weight: math.unit(120, "lb"),
  11598. name: "Front",
  11599. image: {
  11600. source: "./media/characters/neo/front.svg"
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Micro",
  11607. height: math.unit(2, "inches"),
  11608. default: true
  11609. },
  11610. {
  11611. name: "Human Size",
  11612. height: math.unit(5 + 8 / 12, "feet")
  11613. },
  11614. ]
  11615. ))
  11616. characterMakers.push(() => makeCharacter(
  11617. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11618. {
  11619. front: {
  11620. height: math.unit(13 + 10 / 12, "feet"),
  11621. weight: math.unit(5320, "lb"),
  11622. name: "Front",
  11623. image: {
  11624. source: "./media/characters/chauncey-chantz/front.svg",
  11625. extra: 1587 / 1435,
  11626. bottom: 0.02
  11627. }
  11628. },
  11629. },
  11630. [
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(13 + 10 / 12, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(45, "feet")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(250, "miles")
  11643. },
  11644. {
  11645. name: "Planetary",
  11646. height: math.unit(10000, "miles")
  11647. },
  11648. {
  11649. name: "Galactic",
  11650. height: math.unit(40000, "parsecs")
  11651. },
  11652. {
  11653. name: "Universal",
  11654. height: math.unit(1, "yottameter")
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11660. {
  11661. front: {
  11662. height: math.unit(6, "feet"),
  11663. weight: math.unit(150, "lb"),
  11664. name: "Front",
  11665. image: {
  11666. source: "./media/characters/epifox/front.svg",
  11667. extra: 1,
  11668. bottom: 0.075
  11669. }
  11670. },
  11671. },
  11672. [
  11673. {
  11674. name: "Micro",
  11675. height: math.unit(6, "inches")
  11676. },
  11677. {
  11678. name: "Normal",
  11679. height: math.unit(12, "feet"),
  11680. default: true
  11681. },
  11682. {
  11683. name: "Macro",
  11684. height: math.unit(3810, "feet")
  11685. },
  11686. {
  11687. name: "Megamacro",
  11688. height: math.unit(500, "miles")
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(1.8796, "m"),
  11697. weight: math.unit(230, "lb"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/colin-t/front.svg",
  11701. extra: 1272 / 1193,
  11702. bottom: 0.07
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Micro",
  11709. height: math.unit(0.571, "meters")
  11710. },
  11711. {
  11712. name: "Normal",
  11713. height: math.unit(1.8796, "meters"),
  11714. default: true
  11715. },
  11716. {
  11717. name: "Tall",
  11718. height: math.unit(4, "meters")
  11719. },
  11720. {
  11721. name: "Macro",
  11722. height: math.unit(67.241, "meters")
  11723. },
  11724. {
  11725. name: "Megamacro",
  11726. height: math.unit(371.856, "meters")
  11727. },
  11728. {
  11729. name: "Planetary",
  11730. height: math.unit(12631.5689, "km")
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11736. {
  11737. front: {
  11738. height: math.unit(1.85, "meters"),
  11739. weight: math.unit(80, "kg"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/matvei/front.svg",
  11743. extra: 614 / 594,
  11744. bottom: 0.01
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(1.85, "meters"),
  11752. default: true
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11758. {
  11759. front: {
  11760. height: math.unit(5 + 9 / 12, "feet"),
  11761. weight: math.unit(70, "lb"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/quincy/front.svg",
  11765. extra: 3041 / 2751
  11766. }
  11767. },
  11768. back: {
  11769. height: math.unit(5 + 9 / 12, "feet"),
  11770. weight: math.unit(70, "lb"),
  11771. name: "Back",
  11772. image: {
  11773. source: "./media/characters/quincy/back.svg",
  11774. extra: 3041 / 2751
  11775. }
  11776. },
  11777. flying: {
  11778. height: math.unit(5 + 4 / 12, "feet"),
  11779. weight: math.unit(70, "lb"),
  11780. name: "Flying",
  11781. image: {
  11782. source: "./media/characters/quincy/flying.svg",
  11783. extra: 1044 / 930
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Micro",
  11790. height: math.unit(3, "cm")
  11791. },
  11792. {
  11793. name: "Normal",
  11794. height: math.unit(5 + 9 / 12, "feet")
  11795. },
  11796. {
  11797. name: "Macro",
  11798. height: math.unit(200, "meters"),
  11799. default: true
  11800. },
  11801. {
  11802. name: "Megamacro",
  11803. height: math.unit(1000, "meters")
  11804. },
  11805. ]
  11806. ))
  11807. characterMakers.push(() => makeCharacter(
  11808. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11809. {
  11810. front: {
  11811. height: math.unit(3 + 11/12, "feet"),
  11812. weight: math.unit(50, "lb"),
  11813. name: "Front",
  11814. image: {
  11815. source: "./media/characters/vanrel/front.svg",
  11816. extra: 1104/949,
  11817. bottom: 52/1156
  11818. }
  11819. },
  11820. back: {
  11821. height: math.unit(3 + 11/12, "feet"),
  11822. weight: math.unit(50, "lb"),
  11823. name: "Back",
  11824. image: {
  11825. source: "./media/characters/vanrel/back.svg",
  11826. extra: 1119/976,
  11827. bottom: 37/1156
  11828. }
  11829. },
  11830. tome: {
  11831. height: math.unit(1.35, "feet"),
  11832. weight: math.unit(10, "lb"),
  11833. name: "Vanrel's Tome",
  11834. rename: true,
  11835. image: {
  11836. source: "./media/characters/vanrel/tome.svg"
  11837. }
  11838. },
  11839. beans: {
  11840. height: math.unit(0.89, "feet"),
  11841. name: "Beans",
  11842. image: {
  11843. source: "./media/characters/vanrel/beans.svg"
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(3 + 11/12, "feet"),
  11851. default: true
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11857. {
  11858. front: {
  11859. height: math.unit(7 + 5 / 12, "feet"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/kuiper-vanrel/front.svg",
  11863. extra: 1219/1169,
  11864. bottom: 69/1288
  11865. }
  11866. },
  11867. back: {
  11868. height: math.unit(7 + 5 / 12, "feet"),
  11869. name: "Back",
  11870. image: {
  11871. source: "./media/characters/kuiper-vanrel/back.svg",
  11872. extra: 1236/1193,
  11873. bottom: 27/1263
  11874. }
  11875. },
  11876. foot: {
  11877. height: math.unit(0.55, "meters"),
  11878. name: "Foot",
  11879. image: {
  11880. source: "./media/characters/kuiper-vanrel/foot.svg",
  11881. }
  11882. },
  11883. battle: {
  11884. height: math.unit(6.824, "feet"),
  11885. name: "Battle",
  11886. image: {
  11887. source: "./media/characters/kuiper-vanrel/battle.svg",
  11888. extra: 1466 / 1327,
  11889. bottom: 29 / 1492.5
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(7 + 5 / 12, "feet"),
  11897. default: true
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(8 + 5 / 12, "feet"),
  11906. name: "Front",
  11907. image: {
  11908. source: "./media/characters/keset-vanrel/front.svg",
  11909. extra: 1231/1148,
  11910. bottom: 82/1313
  11911. }
  11912. },
  11913. back: {
  11914. height: math.unit(8 + 5 / 12, "feet"),
  11915. name: "Back",
  11916. image: {
  11917. source: "./media/characters/keset-vanrel/back.svg",
  11918. extra: 1240/1174,
  11919. bottom: 33/1273
  11920. }
  11921. },
  11922. hand: {
  11923. height: math.unit(0.6, "meters"),
  11924. name: "Hand",
  11925. image: {
  11926. source: "./media/characters/keset-vanrel/hand.svg"
  11927. }
  11928. },
  11929. foot: {
  11930. height: math.unit(0.94978, "meters"),
  11931. name: "Foot",
  11932. image: {
  11933. source: "./media/characters/keset-vanrel/foot.svg"
  11934. }
  11935. },
  11936. battle: {
  11937. height: math.unit(7.408, "feet"),
  11938. name: "Battle",
  11939. image: {
  11940. source: "./media/characters/keset-vanrel/battle.svg",
  11941. extra: 1890 / 1386,
  11942. bottom: 73.28 / 1970
  11943. }
  11944. },
  11945. },
  11946. [
  11947. {
  11948. name: "Normal",
  11949. height: math.unit(8 + 5 / 12, "feet"),
  11950. default: true
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11956. {
  11957. front: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(150, "lb"),
  11960. name: "Front",
  11961. image: {
  11962. source: "./media/characters/neos/front.svg",
  11963. extra: 1696 / 992,
  11964. bottom: 0.14
  11965. }
  11966. },
  11967. },
  11968. [
  11969. {
  11970. name: "Normal",
  11971. height: math.unit(54, "cm"),
  11972. default: true
  11973. },
  11974. {
  11975. name: "Macro",
  11976. height: math.unit(100, "m")
  11977. },
  11978. {
  11979. name: "Megamacro",
  11980. height: math.unit(10, "km")
  11981. },
  11982. {
  11983. name: "Megamacro+",
  11984. height: math.unit(100, "km")
  11985. },
  11986. {
  11987. name: "Gigamacro",
  11988. height: math.unit(100, "Mm")
  11989. },
  11990. {
  11991. name: "Teramacro",
  11992. height: math.unit(100, "Gm")
  11993. },
  11994. {
  11995. name: "Examacro",
  11996. height: math.unit(100, "Em")
  11997. },
  11998. {
  11999. name: "Godly",
  12000. height: math.unit(10000, "Ym")
  12001. },
  12002. {
  12003. name: "Beyond Godly",
  12004. height: math.unit(25, "multiverses")
  12005. },
  12006. ]
  12007. ))
  12008. characterMakers.push(() => makeCharacter(
  12009. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12010. {
  12011. feminine: {
  12012. height: math.unit(5, "feet"),
  12013. weight: math.unit(100, "lb"),
  12014. name: "Feminine",
  12015. image: {
  12016. source: "./media/characters/sammy-mouse/feminine.svg",
  12017. extra: 2526 / 2425,
  12018. bottom: 0.123
  12019. }
  12020. },
  12021. masculine: {
  12022. height: math.unit(5, "feet"),
  12023. weight: math.unit(100, "lb"),
  12024. name: "Masculine",
  12025. image: {
  12026. source: "./media/characters/sammy-mouse/masculine.svg",
  12027. extra: 2526 / 2425,
  12028. bottom: 0.123
  12029. }
  12030. },
  12031. },
  12032. [
  12033. {
  12034. name: "Micro",
  12035. height: math.unit(5, "inches")
  12036. },
  12037. {
  12038. name: "Normal",
  12039. height: math.unit(5, "feet"),
  12040. default: true
  12041. },
  12042. {
  12043. name: "Macro",
  12044. height: math.unit(60, "feet")
  12045. },
  12046. ]
  12047. ))
  12048. characterMakers.push(() => makeCharacter(
  12049. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12050. {
  12051. front: {
  12052. height: math.unit(4, "feet"),
  12053. weight: math.unit(50, "lb"),
  12054. name: "Front",
  12055. image: {
  12056. source: "./media/characters/kole/front.svg",
  12057. extra: 1423 / 1303,
  12058. bottom: 0.025
  12059. }
  12060. },
  12061. back: {
  12062. height: math.unit(4, "feet"),
  12063. weight: math.unit(50, "lb"),
  12064. name: "Back",
  12065. image: {
  12066. source: "./media/characters/kole/back.svg",
  12067. extra: 1426 / 1280,
  12068. bottom: 0.02
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Normal",
  12075. height: math.unit(4, "feet"),
  12076. default: true
  12077. },
  12078. ]
  12079. ))
  12080. characterMakers.push(() => makeCharacter(
  12081. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12082. {
  12083. front: {
  12084. height: math.unit(2.5, "feet"),
  12085. weight: math.unit(32, "lb"),
  12086. name: "Front",
  12087. image: {
  12088. source: "./media/characters/rufran/front.svg",
  12089. extra: 1313/885,
  12090. bottom: 94/1407
  12091. }
  12092. },
  12093. side: {
  12094. height: math.unit(2.5, "feet"),
  12095. weight: math.unit(32, "lb"),
  12096. name: "Side",
  12097. image: {
  12098. source: "./media/characters/rufran/side.svg",
  12099. extra: 1109/852,
  12100. bottom: 118/1227
  12101. }
  12102. },
  12103. back: {
  12104. height: math.unit(2.5, "feet"),
  12105. weight: math.unit(32, "lb"),
  12106. name: "Back",
  12107. image: {
  12108. source: "./media/characters/rufran/back.svg",
  12109. extra: 1280/878,
  12110. bottom: 131/1411
  12111. }
  12112. },
  12113. mouth: {
  12114. height: math.unit(1.13, "feet"),
  12115. name: "Mouth",
  12116. image: {
  12117. source: "./media/characters/rufran/mouth.svg"
  12118. }
  12119. },
  12120. foot: {
  12121. height: math.unit(1.33, "feet"),
  12122. name: "Foot",
  12123. image: {
  12124. source: "./media/characters/rufran/foot.svg"
  12125. }
  12126. },
  12127. koboldFront: {
  12128. height: math.unit(2 + 6 / 12, "feet"),
  12129. weight: math.unit(20, "lb"),
  12130. name: "Front (Kobold)",
  12131. image: {
  12132. source: "./media/characters/rufran/kobold-front.svg",
  12133. extra: 2041 / 1839,
  12134. bottom: 0.055
  12135. }
  12136. },
  12137. koboldBack: {
  12138. height: math.unit(2 + 6 / 12, "feet"),
  12139. weight: math.unit(20, "lb"),
  12140. name: "Back (Kobold)",
  12141. image: {
  12142. source: "./media/characters/rufran/kobold-back.svg",
  12143. extra: 2054 / 1839,
  12144. bottom: 0.01
  12145. }
  12146. },
  12147. koboldHand: {
  12148. height: math.unit(0.2166, "meters"),
  12149. name: "Hand (Kobold)",
  12150. image: {
  12151. source: "./media/characters/rufran/kobold-hand.svg"
  12152. }
  12153. },
  12154. koboldFoot: {
  12155. height: math.unit(0.185, "meters"),
  12156. name: "Foot (Kobold)",
  12157. image: {
  12158. source: "./media/characters/rufran/kobold-foot.svg"
  12159. }
  12160. },
  12161. },
  12162. [
  12163. {
  12164. name: "Micro",
  12165. height: math.unit(1, "inch")
  12166. },
  12167. {
  12168. name: "Normal",
  12169. height: math.unit(2 + 6 / 12, "feet"),
  12170. default: true
  12171. },
  12172. {
  12173. name: "Big",
  12174. height: math.unit(60, "feet")
  12175. },
  12176. {
  12177. name: "Macro",
  12178. height: math.unit(325, "feet")
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(0.3, "meters"),
  12187. weight: math.unit(3.5, "kg"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/chip/front.svg",
  12191. extra: 748 / 674
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Micro",
  12198. height: math.unit(1, "inch"),
  12199. default: true
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12205. {
  12206. side: {
  12207. height: math.unit(2.3, "meters"),
  12208. weight: math.unit(3500, "lb"),
  12209. name: "Side",
  12210. image: {
  12211. source: "./media/characters/torvid/side.svg",
  12212. extra: 1972 / 722,
  12213. bottom: 0.035
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Normal",
  12220. height: math.unit(2.3, "meters"),
  12221. default: true
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(2, "meters"),
  12230. weight: math.unit(150.5, "kg"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/susan/front.svg",
  12234. extra: 693 / 635,
  12235. bottom: 0.05
  12236. }
  12237. },
  12238. },
  12239. [
  12240. {
  12241. name: "Megamacro",
  12242. height: math.unit(505, "miles"),
  12243. default: true
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(6, "feet"),
  12252. weight: math.unit(150, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/raindrops/front.svg",
  12256. extra: 2655 / 2461,
  12257. bottom: 49 / 2705
  12258. }
  12259. },
  12260. back: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(150, "lb"),
  12263. name: "Back",
  12264. image: {
  12265. source: "./media/characters/raindrops/back.svg",
  12266. extra: 2574 / 2400,
  12267. bottom: 65 / 2634
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Micro",
  12274. height: math.unit(6, "inches")
  12275. },
  12276. {
  12277. name: "Normal",
  12278. height: math.unit(6 + 2 / 12, "feet")
  12279. },
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(131, "feet"),
  12283. default: true
  12284. },
  12285. {
  12286. name: "Megamacro",
  12287. height: math.unit(15, "miles")
  12288. },
  12289. {
  12290. name: "Gigamacro",
  12291. height: math.unit(4000, "miles")
  12292. },
  12293. {
  12294. name: "Teramacro",
  12295. height: math.unit(315000, "miles")
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(2.794, "meters"),
  12304. weight: math.unit(325, "kg"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/tezwa/front.svg",
  12308. extra: 2083 / 1906,
  12309. bottom: 0.031
  12310. }
  12311. },
  12312. foot: {
  12313. height: math.unit(0.687, "meters"),
  12314. name: "Foot",
  12315. image: {
  12316. source: "./media/characters/tezwa/foot.svg"
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(9 + 2 / 12, "feet"),
  12324. default: true
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12330. {
  12331. front: {
  12332. height: math.unit(58, "feet"),
  12333. weight: math.unit(89000, "lb"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/typhus/front.svg",
  12337. extra: 816 / 800,
  12338. bottom: 0.065
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Macro",
  12345. height: math.unit(58, "feet"),
  12346. default: true
  12347. },
  12348. ]
  12349. ))
  12350. characterMakers.push(() => makeCharacter(
  12351. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12352. {
  12353. front: {
  12354. height: math.unit(12, "feet"),
  12355. weight: math.unit(6, "tonnes"),
  12356. name: "Front",
  12357. image: {
  12358. source: "./media/characters/lyra-von-wulf/front.svg",
  12359. extra: 1,
  12360. bottom: 0.10
  12361. }
  12362. },
  12363. frontMecha: {
  12364. height: math.unit(12, "feet"),
  12365. weight: math.unit(12, "tonnes"),
  12366. name: "Front (Mecha)",
  12367. image: {
  12368. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12369. extra: 1,
  12370. bottom: 0.042
  12371. }
  12372. },
  12373. maw: {
  12374. height: math.unit(2.2, "feet"),
  12375. name: "Maw",
  12376. image: {
  12377. source: "./media/characters/lyra-von-wulf/maw.svg"
  12378. }
  12379. },
  12380. },
  12381. [
  12382. {
  12383. name: "Normal",
  12384. height: math.unit(12, "feet"),
  12385. default: true
  12386. },
  12387. {
  12388. name: "Classic",
  12389. height: math.unit(50, "feet")
  12390. },
  12391. {
  12392. name: "Macro",
  12393. height: math.unit(500, "feet")
  12394. },
  12395. {
  12396. name: "Megamacro",
  12397. height: math.unit(1, "mile")
  12398. },
  12399. {
  12400. name: "Gigamacro",
  12401. height: math.unit(400, "miles")
  12402. },
  12403. {
  12404. name: "Teramacro",
  12405. height: math.unit(22000, "miles")
  12406. },
  12407. {
  12408. name: "Solarmacro",
  12409. height: math.unit(8600000, "miles")
  12410. },
  12411. {
  12412. name: "Galactic",
  12413. height: math.unit(1057000, "lightyears")
  12414. },
  12415. ]
  12416. ))
  12417. characterMakers.push(() => makeCharacter(
  12418. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12419. {
  12420. front: {
  12421. height: math.unit(6 + 10 / 12, "feet"),
  12422. weight: math.unit(150, "lb"),
  12423. name: "Front",
  12424. image: {
  12425. source: "./media/characters/dixon/front.svg",
  12426. extra: 3361 / 3209,
  12427. bottom: 0.01
  12428. }
  12429. },
  12430. },
  12431. [
  12432. {
  12433. name: "Normal",
  12434. height: math.unit(6 + 10 / 12, "feet"),
  12435. default: true
  12436. },
  12437. {
  12438. name: "Big",
  12439. height: math.unit(12, "meters")
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(500, "meters")
  12444. },
  12445. {
  12446. name: "Megamacro",
  12447. height: math.unit(2, "km")
  12448. },
  12449. ]
  12450. ))
  12451. characterMakers.push(() => makeCharacter(
  12452. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12453. {
  12454. front: {
  12455. height: math.unit(185, "cm"),
  12456. weight: math.unit(68, "kg"),
  12457. name: "Front",
  12458. image: {
  12459. source: "./media/characters/kauko/front.svg",
  12460. extra: 1455 / 1421,
  12461. bottom: 0.03
  12462. }
  12463. },
  12464. back: {
  12465. height: math.unit(185, "cm"),
  12466. weight: math.unit(68, "kg"),
  12467. name: "Back",
  12468. image: {
  12469. source: "./media/characters/kauko/back.svg",
  12470. extra: 1455 / 1421,
  12471. bottom: 0.004
  12472. }
  12473. },
  12474. },
  12475. [
  12476. {
  12477. name: "Normal",
  12478. height: math.unit(185, "cm"),
  12479. default: true
  12480. },
  12481. ]
  12482. ))
  12483. characterMakers.push(() => makeCharacter(
  12484. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12485. {
  12486. front: {
  12487. height: math.unit(6, "feet"),
  12488. weight: math.unit(150, "kg"),
  12489. name: "Front",
  12490. image: {
  12491. source: "./media/characters/varg/front.svg",
  12492. extra: 1108 / 1018,
  12493. bottom: 0.0375
  12494. }
  12495. },
  12496. },
  12497. [
  12498. {
  12499. name: "Normal",
  12500. height: math.unit(5, "meters")
  12501. },
  12502. {
  12503. name: "Macro",
  12504. height: math.unit(200, "meters")
  12505. },
  12506. {
  12507. name: "Megamacro",
  12508. height: math.unit(20, "kilometers")
  12509. },
  12510. {
  12511. name: "True Size",
  12512. height: math.unit(211, "km"),
  12513. default: true
  12514. },
  12515. {
  12516. name: "Gigamacro",
  12517. height: math.unit(1000, "km")
  12518. },
  12519. {
  12520. name: "Gigamacro+",
  12521. height: math.unit(8000, "km")
  12522. },
  12523. {
  12524. name: "Teramacro",
  12525. height: math.unit(1000000, "km")
  12526. },
  12527. ]
  12528. ))
  12529. characterMakers.push(() => makeCharacter(
  12530. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12531. {
  12532. front: {
  12533. height: math.unit(7 + 7 / 12, "feet"),
  12534. weight: math.unit(267, "lb"),
  12535. name: "Front",
  12536. image: {
  12537. source: "./media/characters/dayza/front.svg",
  12538. extra: 1262 / 1200,
  12539. bottom: 0.035
  12540. }
  12541. },
  12542. side: {
  12543. height: math.unit(7 + 7 / 12, "feet"),
  12544. weight: math.unit(267, "lb"),
  12545. name: "Side",
  12546. image: {
  12547. source: "./media/characters/dayza/side.svg",
  12548. extra: 1295 / 1245,
  12549. bottom: 0.05
  12550. }
  12551. },
  12552. back: {
  12553. height: math.unit(7 + 7 / 12, "feet"),
  12554. weight: math.unit(267, "lb"),
  12555. name: "Back",
  12556. image: {
  12557. source: "./media/characters/dayza/back.svg",
  12558. extra: 1241 / 1170
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(7 + 7 / 12, "feet"),
  12566. default: true
  12567. },
  12568. {
  12569. name: "Macro",
  12570. height: math.unit(155, "feet")
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12576. {
  12577. front: {
  12578. height: math.unit(6 + 5 / 12, "feet"),
  12579. weight: math.unit(160, "lb"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/xanthos/front.svg",
  12583. extra: 1,
  12584. bottom: 0.04
  12585. }
  12586. },
  12587. back: {
  12588. height: math.unit(6 + 5 / 12, "feet"),
  12589. weight: math.unit(160, "lb"),
  12590. name: "Back",
  12591. image: {
  12592. source: "./media/characters/xanthos/back.svg",
  12593. extra: 1,
  12594. bottom: 0.03
  12595. }
  12596. },
  12597. hand: {
  12598. height: math.unit(0.928, "feet"),
  12599. name: "Hand",
  12600. image: {
  12601. source: "./media/characters/xanthos/hand.svg"
  12602. }
  12603. },
  12604. foot: {
  12605. height: math.unit(1.286, "feet"),
  12606. name: "Foot",
  12607. image: {
  12608. source: "./media/characters/xanthos/foot.svg"
  12609. }
  12610. },
  12611. },
  12612. [
  12613. {
  12614. name: "Normal",
  12615. height: math.unit(6 + 5 / 12, "feet"),
  12616. default: true
  12617. },
  12618. {
  12619. name: "Normal+",
  12620. height: math.unit(6, "meters")
  12621. },
  12622. {
  12623. name: "Macro",
  12624. height: math.unit(40, "feet")
  12625. },
  12626. {
  12627. name: "Macro+",
  12628. height: math.unit(200, "meters")
  12629. },
  12630. {
  12631. name: "Megamacro",
  12632. height: math.unit(20, "km")
  12633. },
  12634. {
  12635. name: "Megamacro+",
  12636. height: math.unit(100, "km")
  12637. },
  12638. ]
  12639. ))
  12640. characterMakers.push(() => makeCharacter(
  12641. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12642. {
  12643. front: {
  12644. height: math.unit(6 + 3 / 12, "feet"),
  12645. weight: math.unit(215, "lb"),
  12646. name: "Front",
  12647. image: {
  12648. source: "./media/characters/grynn/front.svg",
  12649. extra: 4627 / 4209,
  12650. bottom: 0.047
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Micro",
  12657. height: math.unit(6, "inches")
  12658. },
  12659. {
  12660. name: "Normal",
  12661. height: math.unit(6 + 3 / 12, "feet"),
  12662. default: true
  12663. },
  12664. {
  12665. name: "Big",
  12666. height: math.unit(104, "feet")
  12667. },
  12668. {
  12669. name: "Macro",
  12670. height: math.unit(944, "feet")
  12671. },
  12672. {
  12673. name: "Macro+",
  12674. height: math.unit(9480, "feet")
  12675. },
  12676. {
  12677. name: "Megamacro",
  12678. height: math.unit(78752, "feet")
  12679. },
  12680. {
  12681. name: "Megamacro+",
  12682. height: math.unit(630128, "feet")
  12683. },
  12684. {
  12685. name: "Megamacro++",
  12686. height: math.unit(3150695, "feet")
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12692. {
  12693. front: {
  12694. height: math.unit(7 + 5 / 12, "feet"),
  12695. weight: math.unit(450, "lb"),
  12696. name: "Front",
  12697. image: {
  12698. source: "./media/characters/mocha-aura/front.svg",
  12699. extra: 1907 / 1817,
  12700. bottom: 0.04
  12701. }
  12702. },
  12703. back: {
  12704. height: math.unit(7 + 5 / 12, "feet"),
  12705. weight: math.unit(450, "lb"),
  12706. name: "Back",
  12707. image: {
  12708. source: "./media/characters/mocha-aura/back.svg",
  12709. extra: 1900 / 1825,
  12710. bottom: 0.045
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Nano",
  12717. height: math.unit(1, "nm")
  12718. },
  12719. {
  12720. name: "Megamicro",
  12721. height: math.unit(1, "mm")
  12722. },
  12723. {
  12724. name: "Micro",
  12725. height: math.unit(3, "inches")
  12726. },
  12727. {
  12728. name: "Normal",
  12729. height: math.unit(7 + 5 / 12, "feet"),
  12730. default: true
  12731. },
  12732. {
  12733. name: "Macro",
  12734. height: math.unit(30, "feet")
  12735. },
  12736. {
  12737. name: "Megamacro",
  12738. height: math.unit(3500, "feet")
  12739. },
  12740. {
  12741. name: "Teramacro",
  12742. height: math.unit(500000, "miles")
  12743. },
  12744. {
  12745. name: "Petamacro",
  12746. height: math.unit(50000000000000000, "parsecs")
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12752. {
  12753. front: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(150, "lb"),
  12756. name: "Front",
  12757. image: {
  12758. source: "./media/characters/ilisha-devya/front.svg",
  12759. extra: 1,
  12760. bottom: 0.175
  12761. }
  12762. },
  12763. back: {
  12764. height: math.unit(6, "feet"),
  12765. weight: math.unit(150, "lb"),
  12766. name: "Back",
  12767. image: {
  12768. source: "./media/characters/ilisha-devya/back.svg",
  12769. extra: 1,
  12770. bottom: 0.015
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Macro",
  12777. height: math.unit(500, "feet"),
  12778. default: true
  12779. },
  12780. {
  12781. name: "Megamacro",
  12782. height: math.unit(10, "miles")
  12783. },
  12784. {
  12785. name: "Gigamacro",
  12786. height: math.unit(100000, "miles")
  12787. },
  12788. {
  12789. name: "Examacro",
  12790. height: math.unit(1e9, "lightyears")
  12791. },
  12792. {
  12793. name: "Omniversal",
  12794. height: math.unit(1e33, "lightyears")
  12795. },
  12796. {
  12797. name: "Beyond Infinite",
  12798. height: math.unit(1e100, "lightyears")
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12804. {
  12805. Side: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(150, "lb"),
  12808. name: "Side",
  12809. image: {
  12810. source: "./media/characters/mira/side.svg",
  12811. extra: 900 / 799,
  12812. bottom: 0.02
  12813. }
  12814. },
  12815. },
  12816. [
  12817. {
  12818. name: "Human Size",
  12819. height: math.unit(6, "feet")
  12820. },
  12821. {
  12822. name: "Macro",
  12823. height: math.unit(100, "feet"),
  12824. default: true
  12825. },
  12826. {
  12827. name: "Megamacro",
  12828. height: math.unit(10, "miles")
  12829. },
  12830. {
  12831. name: "Gigamacro",
  12832. height: math.unit(25000, "miles")
  12833. },
  12834. {
  12835. name: "Teramacro",
  12836. height: math.unit(300, "AU")
  12837. },
  12838. {
  12839. name: "Full Size",
  12840. height: math.unit(4.5e10, "lightyears")
  12841. },
  12842. ]
  12843. ))
  12844. characterMakers.push(() => makeCharacter(
  12845. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12846. {
  12847. front: {
  12848. height: math.unit(6, "feet"),
  12849. weight: math.unit(150, "lb"),
  12850. name: "Front",
  12851. image: {
  12852. source: "./media/characters/holly/front.svg",
  12853. extra: 639 / 606
  12854. }
  12855. },
  12856. back: {
  12857. height: math.unit(6, "feet"),
  12858. weight: math.unit(150, "lb"),
  12859. name: "Back",
  12860. image: {
  12861. source: "./media/characters/holly/back.svg",
  12862. extra: 623 / 598
  12863. }
  12864. },
  12865. frontWorking: {
  12866. height: math.unit(6, "feet"),
  12867. weight: math.unit(150, "lb"),
  12868. name: "Front (Working)",
  12869. image: {
  12870. source: "./media/characters/holly/front-working.svg",
  12871. extra: 607 / 577,
  12872. bottom: 0.048
  12873. }
  12874. },
  12875. },
  12876. [
  12877. {
  12878. name: "Normal",
  12879. height: math.unit(12 + 3 / 12, "feet"),
  12880. default: true
  12881. },
  12882. ]
  12883. ))
  12884. characterMakers.push(() => makeCharacter(
  12885. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12886. {
  12887. front: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Front",
  12891. image: {
  12892. source: "./media/characters/porter/front.svg",
  12893. extra: 1,
  12894. bottom: 0.01
  12895. }
  12896. },
  12897. frontRobes: {
  12898. height: math.unit(6, "feet"),
  12899. weight: math.unit(150, "lb"),
  12900. name: "Front (Robes)",
  12901. image: {
  12902. source: "./media/characters/porter/front-robes.svg",
  12903. extra: 1.01,
  12904. bottom: 0.01
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Normal",
  12911. height: math.unit(11 + 9 / 12, "feet"),
  12912. default: true
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12918. {
  12919. legendary: {
  12920. height: math.unit(6, "feet"),
  12921. weight: math.unit(150, "lb"),
  12922. name: "Legendary",
  12923. image: {
  12924. source: "./media/characters/lucy/legendary.svg",
  12925. extra: 1355 / 1100,
  12926. bottom: 0.045
  12927. }
  12928. },
  12929. },
  12930. [
  12931. {
  12932. name: "Legendary",
  12933. height: math.unit(86882 * 2, "miles"),
  12934. default: true
  12935. },
  12936. ]
  12937. ))
  12938. characterMakers.push(() => makeCharacter(
  12939. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12940. {
  12941. front: {
  12942. height: math.unit(6, "feet"),
  12943. weight: math.unit(150, "lb"),
  12944. name: "Front",
  12945. image: {
  12946. source: "./media/characters/drusilla/front.svg",
  12947. extra: 678 / 635,
  12948. bottom: 0.03
  12949. }
  12950. },
  12951. back: {
  12952. height: math.unit(6, "feet"),
  12953. weight: math.unit(150, "lb"),
  12954. name: "Back",
  12955. image: {
  12956. source: "./media/characters/drusilla/back.svg",
  12957. extra: 678 / 635,
  12958. bottom: 0.005
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Macro",
  12965. height: math.unit(100, "feet")
  12966. },
  12967. {
  12968. name: "Canon Height",
  12969. height: math.unit(2000, "feet"),
  12970. default: true
  12971. },
  12972. ]
  12973. ))
  12974. characterMakers.push(() => makeCharacter(
  12975. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12976. {
  12977. front: {
  12978. height: math.unit(6, "feet"),
  12979. weight: math.unit(180, "lb"),
  12980. name: "Front",
  12981. image: {
  12982. source: "./media/characters/renard-thatch/front.svg",
  12983. extra: 2411 / 2275,
  12984. bottom: 0.01
  12985. }
  12986. },
  12987. frontPosing: {
  12988. height: math.unit(6, "feet"),
  12989. weight: math.unit(180, "lb"),
  12990. name: "Front (Posing)",
  12991. image: {
  12992. source: "./media/characters/renard-thatch/front-posing.svg",
  12993. extra: 2381 / 2261,
  12994. bottom: 0.01
  12995. }
  12996. },
  12997. back: {
  12998. height: math.unit(6, "feet"),
  12999. weight: math.unit(180, "lb"),
  13000. name: "Back",
  13001. image: {
  13002. source: "./media/characters/renard-thatch/back.svg",
  13003. extra: 2428 / 2288
  13004. }
  13005. },
  13006. },
  13007. [
  13008. {
  13009. name: "Micro",
  13010. height: math.unit(3, "inches")
  13011. },
  13012. {
  13013. name: "Default",
  13014. height: math.unit(6, "feet"),
  13015. default: true
  13016. },
  13017. {
  13018. name: "Macro",
  13019. height: math.unit(75, "feet")
  13020. },
  13021. ]
  13022. ))
  13023. characterMakers.push(() => makeCharacter(
  13024. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13025. {
  13026. front: {
  13027. height: math.unit(1450, "feet"),
  13028. weight: math.unit(1.21e6, "tons"),
  13029. name: "Front",
  13030. image: {
  13031. source: "./media/characters/sekvra/front.svg",
  13032. extra: 1,
  13033. bottom: 0.03
  13034. }
  13035. },
  13036. frontClothed: {
  13037. height: math.unit(1450, "feet"),
  13038. weight: math.unit(1.21e6, "tons"),
  13039. name: "Front (Clothed)",
  13040. image: {
  13041. source: "./media/characters/sekvra/front-clothed.svg",
  13042. extra: 1,
  13043. bottom: 0.03
  13044. }
  13045. },
  13046. side: {
  13047. height: math.unit(1450, "feet"),
  13048. weight: math.unit(1.21e6, "tons"),
  13049. name: "Side",
  13050. image: {
  13051. source: "./media/characters/sekvra/side.svg",
  13052. extra: 1,
  13053. bottom: 0.025
  13054. }
  13055. },
  13056. back: {
  13057. height: math.unit(1450, "feet"),
  13058. weight: math.unit(1.21e6, "tons"),
  13059. name: "Back",
  13060. image: {
  13061. source: "./media/characters/sekvra/back.svg",
  13062. extra: 1,
  13063. bottom: 0.005
  13064. }
  13065. },
  13066. },
  13067. [
  13068. {
  13069. name: "Macro",
  13070. height: math.unit(1450, "feet"),
  13071. default: true
  13072. },
  13073. {
  13074. name: "Megamacro",
  13075. height: math.unit(15000, "feet")
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13081. {
  13082. front: {
  13083. height: math.unit(6, "feet"),
  13084. weight: math.unit(150, "lb"),
  13085. name: "Front",
  13086. image: {
  13087. source: "./media/characters/carmine/front.svg",
  13088. extra: 1,
  13089. bottom: 0.035
  13090. }
  13091. },
  13092. frontArmor: {
  13093. height: math.unit(6, "feet"),
  13094. weight: math.unit(150, "lb"),
  13095. name: "Front (Armor)",
  13096. image: {
  13097. source: "./media/characters/carmine/front-armor.svg",
  13098. extra: 1,
  13099. bottom: 0.035
  13100. }
  13101. },
  13102. },
  13103. [
  13104. {
  13105. name: "Large",
  13106. height: math.unit(1, "mile")
  13107. },
  13108. {
  13109. name: "Huge",
  13110. height: math.unit(40, "miles"),
  13111. default: true
  13112. },
  13113. {
  13114. name: "Colossal",
  13115. height: math.unit(2500, "miles")
  13116. },
  13117. ]
  13118. ))
  13119. characterMakers.push(() => makeCharacter(
  13120. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13121. {
  13122. front: {
  13123. height: math.unit(6, "feet"),
  13124. weight: math.unit(150, "lb"),
  13125. name: "Front",
  13126. image: {
  13127. source: "./media/characters/elyssia/front.svg",
  13128. extra: 2201 / 2035,
  13129. bottom: 0.05
  13130. }
  13131. },
  13132. frontClothed: {
  13133. height: math.unit(6, "feet"),
  13134. weight: math.unit(150, "lb"),
  13135. name: "Front (Clothed)",
  13136. image: {
  13137. source: "./media/characters/elyssia/front-clothed.svg",
  13138. extra: 2201 / 2035,
  13139. bottom: 0.05
  13140. }
  13141. },
  13142. back: {
  13143. height: math.unit(6, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Back",
  13146. image: {
  13147. source: "./media/characters/elyssia/back.svg",
  13148. extra: 2201 / 2035,
  13149. bottom: 0.013
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Smaller",
  13156. height: math.unit(150, "feet")
  13157. },
  13158. {
  13159. name: "Standard",
  13160. height: math.unit(1400, "feet"),
  13161. default: true
  13162. },
  13163. {
  13164. name: "Distracted",
  13165. height: math.unit(15000, "feet")
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13171. {
  13172. front: {
  13173. height: math.unit(7 + 4 / 12, "feet"),
  13174. weight: math.unit(500, "lb"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/geno-maxwell/front.svg",
  13178. extra: 2207 / 2040,
  13179. bottom: 0.015
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Micro",
  13186. height: math.unit(3, "inches")
  13187. },
  13188. {
  13189. name: "Normal",
  13190. height: math.unit(7 + 4 / 12, "feet"),
  13191. default: true
  13192. },
  13193. {
  13194. name: "Macro",
  13195. height: math.unit(220, "feet")
  13196. },
  13197. {
  13198. name: "Megamacro",
  13199. height: math.unit(11, "miles")
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(7 + 4 / 12, "feet"),
  13208. weight: math.unit(500, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/regena-maxwell/front.svg",
  13212. extra: 3115 / 2770,
  13213. bottom: 0.02
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Normal",
  13220. height: math.unit(7 + 4 / 12, "feet"),
  13221. default: true
  13222. },
  13223. {
  13224. name: "Macro",
  13225. height: math.unit(220, "feet")
  13226. },
  13227. {
  13228. name: "Megamacro",
  13229. height: math.unit(11, "miles")
  13230. },
  13231. ]
  13232. ))
  13233. characterMakers.push(() => makeCharacter(
  13234. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13235. {
  13236. front: {
  13237. height: math.unit(6, "feet"),
  13238. weight: math.unit(150, "lb"),
  13239. name: "Front",
  13240. image: {
  13241. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13242. extra: 860 / 690,
  13243. bottom: 0.03
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Normal",
  13250. height: math.unit(1.7, "meters"),
  13251. default: true
  13252. },
  13253. ]
  13254. ))
  13255. characterMakers.push(() => makeCharacter(
  13256. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13257. {
  13258. front: {
  13259. height: math.unit(6, "feet"),
  13260. weight: math.unit(150, "lb"),
  13261. name: "Front",
  13262. image: {
  13263. source: "./media/characters/quilly/front.svg",
  13264. extra: 890 / 776
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Gigamacro",
  13271. height: math.unit(404090, "miles"),
  13272. default: true
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13278. {
  13279. front: {
  13280. height: math.unit(7 + 8 / 12, "feet"),
  13281. weight: math.unit(350, "lb"),
  13282. name: "Front",
  13283. image: {
  13284. source: "./media/characters/tempest/front.svg",
  13285. extra: 1175 / 1086,
  13286. bottom: 0.02
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Normal",
  13293. height: math.unit(7 + 8 / 12, "feet"),
  13294. default: true
  13295. },
  13296. ]
  13297. ))
  13298. characterMakers.push(() => makeCharacter(
  13299. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13300. {
  13301. side: {
  13302. height: math.unit(4 + 5 / 12, "feet"),
  13303. weight: math.unit(80, "lb"),
  13304. name: "Side",
  13305. image: {
  13306. source: "./media/characters/rodger/side.svg",
  13307. extra: 1235 / 1118
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Micro",
  13314. height: math.unit(1, "inch")
  13315. },
  13316. {
  13317. name: "Normal",
  13318. height: math.unit(4 + 5 / 12, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(120, "feet")
  13324. },
  13325. ]
  13326. ))
  13327. characterMakers.push(() => makeCharacter(
  13328. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13329. {
  13330. front: {
  13331. height: math.unit(6, "feet"),
  13332. weight: math.unit(150, "lb"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/danyel/front.svg",
  13336. extra: 1185 / 1123,
  13337. bottom: 0.05
  13338. }
  13339. },
  13340. },
  13341. [
  13342. {
  13343. name: "Shrunken",
  13344. height: math.unit(0.5, "mm")
  13345. },
  13346. {
  13347. name: "Micro",
  13348. height: math.unit(1, "mm"),
  13349. default: true
  13350. },
  13351. {
  13352. name: "Upsized",
  13353. height: math.unit(5 + 5 / 12, "feet")
  13354. },
  13355. ]
  13356. ))
  13357. characterMakers.push(() => makeCharacter(
  13358. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13359. {
  13360. front: {
  13361. height: math.unit(5 + 6 / 12, "feet"),
  13362. weight: math.unit(200, "lb"),
  13363. name: "Front",
  13364. image: {
  13365. source: "./media/characters/vivian-bijoux/front.svg",
  13366. extra: 1,
  13367. bottom: 0.072
  13368. }
  13369. },
  13370. },
  13371. [
  13372. {
  13373. name: "Normal",
  13374. height: math.unit(5 + 6 / 12, "feet"),
  13375. default: true
  13376. },
  13377. {
  13378. name: "Bad Dream",
  13379. height: math.unit(500, "feet")
  13380. },
  13381. {
  13382. name: "Nightmare",
  13383. height: math.unit(500, "miles")
  13384. },
  13385. ]
  13386. ))
  13387. characterMakers.push(() => makeCharacter(
  13388. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13389. {
  13390. front: {
  13391. height: math.unit(6 + 1 / 12, "feet"),
  13392. weight: math.unit(260, "lb"),
  13393. name: "Front",
  13394. image: {
  13395. source: "./media/characters/zeta/front.svg",
  13396. extra: 1968 / 1889,
  13397. bottom: 0.06
  13398. }
  13399. },
  13400. back: {
  13401. height: math.unit(6 + 1 / 12, "feet"),
  13402. weight: math.unit(260, "lb"),
  13403. name: "Back",
  13404. image: {
  13405. source: "./media/characters/zeta/back.svg",
  13406. extra: 1944 / 1858,
  13407. bottom: 0.03
  13408. }
  13409. },
  13410. hand: {
  13411. height: math.unit(1.112, "feet"),
  13412. name: "Hand",
  13413. image: {
  13414. source: "./media/characters/zeta/hand.svg"
  13415. }
  13416. },
  13417. foot: {
  13418. height: math.unit(1.48, "feet"),
  13419. name: "Foot",
  13420. image: {
  13421. source: "./media/characters/zeta/foot.svg"
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Micro",
  13428. height: math.unit(6, "inches")
  13429. },
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(6 + 1 / 12, "feet"),
  13433. default: true
  13434. },
  13435. {
  13436. name: "Macro",
  13437. height: math.unit(20, "feet")
  13438. },
  13439. ]
  13440. ))
  13441. characterMakers.push(() => makeCharacter(
  13442. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13443. {
  13444. front: {
  13445. height: math.unit(6, "feet"),
  13446. weight: math.unit(150, "lb"),
  13447. name: "Front",
  13448. image: {
  13449. source: "./media/characters/jamie-larsen/front.svg",
  13450. extra: 962 / 933,
  13451. bottom: 0.02
  13452. }
  13453. },
  13454. back: {
  13455. height: math.unit(6, "feet"),
  13456. weight: math.unit(150, "lb"),
  13457. name: "Back",
  13458. image: {
  13459. source: "./media/characters/jamie-larsen/back.svg",
  13460. extra: 997 / 946
  13461. }
  13462. },
  13463. },
  13464. [
  13465. {
  13466. name: "Macro",
  13467. height: math.unit(28 + 7 / 12, "feet"),
  13468. default: true
  13469. },
  13470. {
  13471. name: "Macro+",
  13472. height: math.unit(180, "feet")
  13473. },
  13474. {
  13475. name: "Megamacro",
  13476. height: math.unit(10, "miles")
  13477. },
  13478. {
  13479. name: "Gigamacro",
  13480. height: math.unit(200000, "miles")
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13486. {
  13487. front: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(120, "lb"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/vance/front.svg",
  13493. extra: 1980 / 1890,
  13494. bottom: 0.09
  13495. }
  13496. },
  13497. back: {
  13498. height: math.unit(6, "feet"),
  13499. weight: math.unit(120, "lb"),
  13500. name: "Back",
  13501. image: {
  13502. source: "./media/characters/vance/back.svg",
  13503. extra: 2081 / 1994,
  13504. bottom: 0.014
  13505. }
  13506. },
  13507. hand: {
  13508. height: math.unit(0.88, "feet"),
  13509. name: "Hand",
  13510. image: {
  13511. source: "./media/characters/vance/hand.svg"
  13512. }
  13513. },
  13514. foot: {
  13515. height: math.unit(0.64, "feet"),
  13516. name: "Foot",
  13517. image: {
  13518. source: "./media/characters/vance/foot.svg"
  13519. }
  13520. },
  13521. },
  13522. [
  13523. {
  13524. name: "Small",
  13525. height: math.unit(90, "feet"),
  13526. default: true
  13527. },
  13528. {
  13529. name: "Macro",
  13530. height: math.unit(100, "meters")
  13531. },
  13532. {
  13533. name: "Megamacro",
  13534. height: math.unit(15, "miles")
  13535. },
  13536. ]
  13537. ))
  13538. characterMakers.push(() => makeCharacter(
  13539. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13540. {
  13541. front: {
  13542. height: math.unit(6, "feet"),
  13543. weight: math.unit(180, "lb"),
  13544. name: "Front",
  13545. image: {
  13546. source: "./media/characters/xochitl/front.svg",
  13547. extra: 2297 / 2261,
  13548. bottom: 0.065
  13549. }
  13550. },
  13551. back: {
  13552. height: math.unit(6, "feet"),
  13553. weight: math.unit(180, "lb"),
  13554. name: "Back",
  13555. image: {
  13556. source: "./media/characters/xochitl/back.svg",
  13557. extra: 2386 / 2354,
  13558. bottom: 0.01
  13559. }
  13560. },
  13561. foot: {
  13562. height: math.unit(6 / 5 * 1.15, "feet"),
  13563. weight: math.unit(150, "lb"),
  13564. name: "Foot",
  13565. image: {
  13566. source: "./media/characters/xochitl/foot.svg"
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Macro",
  13573. height: math.unit(80, "feet")
  13574. },
  13575. {
  13576. name: "Macro+",
  13577. height: math.unit(400, "feet"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Gigamacro",
  13582. height: math.unit(80000, "miles")
  13583. },
  13584. {
  13585. name: "Gigamacro+",
  13586. height: math.unit(400000, "miles")
  13587. },
  13588. {
  13589. name: "Teramacro",
  13590. height: math.unit(300, "AU")
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(6, "feet"),
  13599. weight: math.unit(150, "lb"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/vincent/front.svg",
  13603. extra: 1130 / 1080,
  13604. bottom: 0.055
  13605. }
  13606. },
  13607. beak: {
  13608. height: math.unit(6 * 0.1, "feet"),
  13609. name: "Beak",
  13610. image: {
  13611. source: "./media/characters/vincent/beak.svg"
  13612. }
  13613. },
  13614. hand: {
  13615. height: math.unit(6 * 0.85, "feet"),
  13616. weight: math.unit(150, "lb"),
  13617. name: "Hand",
  13618. image: {
  13619. source: "./media/characters/vincent/hand.svg"
  13620. }
  13621. },
  13622. foot: {
  13623. height: math.unit(6 * 0.19, "feet"),
  13624. weight: math.unit(150, "lb"),
  13625. name: "Foot",
  13626. image: {
  13627. source: "./media/characters/vincent/foot.svg"
  13628. }
  13629. },
  13630. },
  13631. [
  13632. {
  13633. name: "Base",
  13634. height: math.unit(6 + 5 / 12, "feet"),
  13635. default: true
  13636. },
  13637. {
  13638. name: "Macro",
  13639. height: math.unit(300, "feet")
  13640. },
  13641. {
  13642. name: "Megamacro",
  13643. height: math.unit(2, "miles")
  13644. },
  13645. {
  13646. name: "Gigamacro",
  13647. height: math.unit(1000, "miles")
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13653. {
  13654. front: {
  13655. height: math.unit(2, "meters"),
  13656. weight: math.unit(500, "kg"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/coatl/front.svg",
  13660. extra: 3948 / 3500,
  13661. bottom: 0.082
  13662. }
  13663. },
  13664. },
  13665. [
  13666. {
  13667. name: "Normal",
  13668. height: math.unit(4, "meters")
  13669. },
  13670. {
  13671. name: "Macro",
  13672. height: math.unit(100, "meters"),
  13673. default: true
  13674. },
  13675. {
  13676. name: "Macro+",
  13677. height: math.unit(300, "meters")
  13678. },
  13679. {
  13680. name: "Megamacro",
  13681. height: math.unit(3, "gigameters")
  13682. },
  13683. {
  13684. name: "Megamacro+",
  13685. height: math.unit(300, "terameters")
  13686. },
  13687. {
  13688. name: "Megamacro++",
  13689. height: math.unit(3, "lightyears")
  13690. },
  13691. ]
  13692. ))
  13693. characterMakers.push(() => makeCharacter(
  13694. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13695. {
  13696. front: {
  13697. height: math.unit(6, "feet"),
  13698. weight: math.unit(50, "kg"),
  13699. name: "front",
  13700. image: {
  13701. source: "./media/characters/shiroryu/front.svg",
  13702. extra: 1990 / 1935
  13703. }
  13704. },
  13705. },
  13706. [
  13707. {
  13708. name: "Mortal Mingling",
  13709. height: math.unit(3, "meters")
  13710. },
  13711. {
  13712. name: "Kaiju-ish",
  13713. height: math.unit(250, "meters")
  13714. },
  13715. {
  13716. name: "Somewhat Godly",
  13717. height: math.unit(400, "km"),
  13718. default: true
  13719. },
  13720. {
  13721. name: "Planetary",
  13722. height: math.unit(300, "megameters")
  13723. },
  13724. {
  13725. name: "Galaxy-dwarfing",
  13726. height: math.unit(450, "kiloparsecs")
  13727. },
  13728. {
  13729. name: "Universe Eater",
  13730. height: math.unit(150, "gigaparsecs")
  13731. },
  13732. {
  13733. name: "Almost Immeasurable",
  13734. height: math.unit(1.3e266, "yottaparsecs")
  13735. },
  13736. ]
  13737. ))
  13738. characterMakers.push(() => makeCharacter(
  13739. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13740. {
  13741. front: {
  13742. height: math.unit(6, "feet"),
  13743. weight: math.unit(150, "lb"),
  13744. name: "Front",
  13745. image: {
  13746. source: "./media/characters/umeko/front.svg",
  13747. extra: 1,
  13748. bottom: 0.019
  13749. }
  13750. },
  13751. frontArmored: {
  13752. height: math.unit(6, "feet"),
  13753. weight: math.unit(150, "lb"),
  13754. name: "Front (Armored)",
  13755. image: {
  13756. source: "./media/characters/umeko/front-armored.svg",
  13757. extra: 1,
  13758. bottom: 0.021
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Macro",
  13765. height: math.unit(220, "feet"),
  13766. default: true
  13767. },
  13768. {
  13769. name: "Guardian Dragon",
  13770. height: math.unit(50, "miles")
  13771. },
  13772. {
  13773. name: "Cosmic",
  13774. height: math.unit(800000, "miles")
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13780. {
  13781. front: {
  13782. height: math.unit(6, "feet"),
  13783. weight: math.unit(150, "lb"),
  13784. name: "Front",
  13785. image: {
  13786. source: "./media/characters/cassidy/front.svg",
  13787. extra: 1,
  13788. bottom: 0.043
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Canon Height",
  13795. height: math.unit(120, "feet"),
  13796. default: true
  13797. },
  13798. {
  13799. name: "Macro+",
  13800. height: math.unit(400, "feet")
  13801. },
  13802. {
  13803. name: "Macro++",
  13804. height: math.unit(4000, "feet")
  13805. },
  13806. {
  13807. name: "Megamacro",
  13808. height: math.unit(3, "miles")
  13809. },
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13814. {
  13815. front: {
  13816. height: math.unit(6, "feet"),
  13817. weight: math.unit(150, "lb"),
  13818. name: "Front",
  13819. image: {
  13820. source: "./media/characters/isaac/front.svg",
  13821. extra: 896 / 815,
  13822. bottom: 0.11
  13823. }
  13824. },
  13825. },
  13826. [
  13827. {
  13828. name: "Human Size",
  13829. height: math.unit(8, "feet"),
  13830. default: true
  13831. },
  13832. {
  13833. name: "Macro",
  13834. height: math.unit(400, "feet")
  13835. },
  13836. {
  13837. name: "Megamacro",
  13838. height: math.unit(50, "miles")
  13839. },
  13840. {
  13841. name: "Canon Height",
  13842. height: math.unit(200, "AU")
  13843. },
  13844. ]
  13845. ))
  13846. characterMakers.push(() => makeCharacter(
  13847. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13848. {
  13849. front: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(72, "kg"),
  13852. name: "Front",
  13853. image: {
  13854. source: "./media/characters/sleekit/front.svg",
  13855. extra: 4693 / 4487,
  13856. bottom: 0.012
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Minimum Height",
  13863. height: math.unit(10, "meters")
  13864. },
  13865. {
  13866. name: "Smaller",
  13867. height: math.unit(25, "meters")
  13868. },
  13869. {
  13870. name: "Larger",
  13871. height: math.unit(38, "meters"),
  13872. default: true
  13873. },
  13874. {
  13875. name: "Maximum height",
  13876. height: math.unit(100, "meters")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/nillia/front.svg",
  13889. extra: 2195 / 2037,
  13890. bottom: 0.005
  13891. }
  13892. },
  13893. back: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(150, "lb"),
  13896. name: "Back",
  13897. image: {
  13898. source: "./media/characters/nillia/back.svg",
  13899. extra: 2195 / 2037,
  13900. bottom: 0.005
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Canon Height",
  13907. height: math.unit(489, "feet"),
  13908. default: true
  13909. }
  13910. ]
  13911. ))
  13912. characterMakers.push(() => makeCharacter(
  13913. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13914. {
  13915. front: {
  13916. height: math.unit(6, "feet"),
  13917. weight: math.unit(150, "lb"),
  13918. name: "Front",
  13919. image: {
  13920. source: "./media/characters/mesmyriza/front.svg",
  13921. extra: 2067 / 1784,
  13922. bottom: 0.035
  13923. }
  13924. },
  13925. foot: {
  13926. height: math.unit(6 / (250 / 35), "feet"),
  13927. name: "Foot",
  13928. image: {
  13929. source: "./media/characters/mesmyriza/foot.svg"
  13930. }
  13931. },
  13932. },
  13933. [
  13934. {
  13935. name: "Macro",
  13936. height: math.unit(457, "meters"),
  13937. default: true
  13938. },
  13939. {
  13940. name: "Megamacro",
  13941. height: math.unit(8, "megameters")
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13947. {
  13948. front: {
  13949. height: math.unit(6, "feet"),
  13950. weight: math.unit(250, "lb"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/saudade/front.svg",
  13954. extra: 1172 / 1139,
  13955. bottom: 0.035
  13956. }
  13957. },
  13958. },
  13959. [
  13960. {
  13961. name: "Micro",
  13962. height: math.unit(3, "inches")
  13963. },
  13964. {
  13965. name: "Normal",
  13966. height: math.unit(6, "feet"),
  13967. default: true
  13968. },
  13969. {
  13970. name: "Macro",
  13971. height: math.unit(50, "feet")
  13972. },
  13973. {
  13974. name: "Megamacro",
  13975. height: math.unit(2800, "feet")
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(5 + 4 / 12, "feet"),
  13984. weight: math.unit(100, "lb"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/keireer/front.svg",
  13988. extra: 716 / 666,
  13989. bottom: 0.05
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Normal",
  13996. height: math.unit(5 + 4 / 12, "feet"),
  13997. default: true
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14003. {
  14004. front: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(90, "kg"),
  14007. name: "Front",
  14008. image: {
  14009. source: "./media/characters/mirja/front.svg",
  14010. extra: 1789 / 1683,
  14011. bottom: 0.05
  14012. }
  14013. },
  14014. frontDressed: {
  14015. height: math.unit(6, "feet"),
  14016. weight: math.unit(90, "lb"),
  14017. name: "Front (Dressed)",
  14018. image: {
  14019. source: "./media/characters/mirja/front-dressed.svg",
  14020. extra: 1789 / 1683,
  14021. bottom: 0.05
  14022. }
  14023. },
  14024. back: {
  14025. height: math.unit(6, "feet"),
  14026. weight: math.unit(90, "lb"),
  14027. name: "Back",
  14028. image: {
  14029. source: "./media/characters/mirja/back.svg",
  14030. extra: 953 / 917,
  14031. bottom: 0.017
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "\"Incognito\"",
  14038. height: math.unit(3, "meters")
  14039. },
  14040. {
  14041. name: "Strolling Size",
  14042. height: math.unit(15, "km")
  14043. },
  14044. {
  14045. name: "Larger Strolling Size",
  14046. height: math.unit(400, "km")
  14047. },
  14048. {
  14049. name: "Preferred Size",
  14050. height: math.unit(5000, "km")
  14051. },
  14052. {
  14053. name: "True Size",
  14054. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14055. default: true
  14056. },
  14057. ]
  14058. ))
  14059. characterMakers.push(() => makeCharacter(
  14060. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14061. {
  14062. front: {
  14063. height: math.unit(15, "feet"),
  14064. weight: math.unit(880, "kg"),
  14065. name: "Front",
  14066. image: {
  14067. source: "./media/characters/nightraver/front.svg",
  14068. extra: 2444 / 2160,
  14069. bottom: 0.027
  14070. }
  14071. },
  14072. back: {
  14073. height: math.unit(15, "feet"),
  14074. weight: math.unit(880, "kg"),
  14075. name: "Back",
  14076. image: {
  14077. source: "./media/characters/nightraver/back.svg",
  14078. extra: 2309 / 2180,
  14079. bottom: 0.005
  14080. }
  14081. },
  14082. sole: {
  14083. height: math.unit(2.878, "feet"),
  14084. name: "Sole",
  14085. image: {
  14086. source: "./media/characters/nightraver/sole.svg"
  14087. }
  14088. },
  14089. foot: {
  14090. height: math.unit(2.285, "feet"),
  14091. name: "Foot",
  14092. image: {
  14093. source: "./media/characters/nightraver/foot.svg"
  14094. }
  14095. },
  14096. maw: {
  14097. height: math.unit(2.67, "feet"),
  14098. name: "Maw",
  14099. image: {
  14100. source: "./media/characters/nightraver/maw.svg"
  14101. }
  14102. },
  14103. },
  14104. [
  14105. {
  14106. name: "Micro",
  14107. height: math.unit(1, "cm")
  14108. },
  14109. {
  14110. name: "Normal",
  14111. height: math.unit(15, "feet"),
  14112. default: true
  14113. },
  14114. {
  14115. name: "Macro",
  14116. height: math.unit(300, "feet")
  14117. },
  14118. {
  14119. name: "Megamacro",
  14120. height: math.unit(300, "miles")
  14121. },
  14122. {
  14123. name: "Gigamacro",
  14124. height: math.unit(10000, "miles")
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14130. {
  14131. side: {
  14132. height: math.unit(2, "inches"),
  14133. weight: math.unit(5, "grams"),
  14134. name: "Side",
  14135. image: {
  14136. source: "./media/characters/arc/side.svg"
  14137. }
  14138. },
  14139. },
  14140. [
  14141. {
  14142. name: "Micro",
  14143. height: math.unit(2, "inches"),
  14144. default: true
  14145. },
  14146. ]
  14147. ))
  14148. characterMakers.push(() => makeCharacter(
  14149. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14150. {
  14151. front: {
  14152. height: math.unit(1.1938, "meters"),
  14153. weight: math.unit(54, "kg"),
  14154. name: "Front",
  14155. image: {
  14156. source: "./media/characters/nebula-shahar/front.svg",
  14157. extra: 1642 / 1436,
  14158. bottom: 0.06
  14159. }
  14160. },
  14161. },
  14162. [
  14163. {
  14164. name: "Megamicro",
  14165. height: math.unit(0.3, "mm")
  14166. },
  14167. {
  14168. name: "Micro",
  14169. height: math.unit(3, "cm")
  14170. },
  14171. {
  14172. name: "Normal",
  14173. height: math.unit(138, "cm"),
  14174. default: true
  14175. },
  14176. {
  14177. name: "Macro",
  14178. height: math.unit(30, "m")
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14184. {
  14185. front: {
  14186. height: math.unit(5.24, "feet"),
  14187. weight: math.unit(150, "lb"),
  14188. name: "Front",
  14189. image: {
  14190. source: "./media/characters/shayla/front.svg",
  14191. extra: 1512 / 1414,
  14192. bottom: 0.01
  14193. }
  14194. },
  14195. back: {
  14196. height: math.unit(5.24, "feet"),
  14197. weight: math.unit(150, "lb"),
  14198. name: "Back",
  14199. image: {
  14200. source: "./media/characters/shayla/back.svg",
  14201. extra: 1512 / 1414
  14202. }
  14203. },
  14204. hand: {
  14205. height: math.unit(0.7781496062992126, "feet"),
  14206. name: "Hand",
  14207. image: {
  14208. source: "./media/characters/shayla/hand.svg"
  14209. }
  14210. },
  14211. foot: {
  14212. height: math.unit(1.4206036745406823, "feet"),
  14213. name: "Foot",
  14214. image: {
  14215. source: "./media/characters/shayla/foot.svg"
  14216. }
  14217. },
  14218. },
  14219. [
  14220. {
  14221. name: "Micro",
  14222. height: math.unit(0.32, "feet")
  14223. },
  14224. {
  14225. name: "Normal",
  14226. height: math.unit(5.24, "feet"),
  14227. default: true
  14228. },
  14229. {
  14230. name: "Macro",
  14231. height: math.unit(492.12, "feet")
  14232. },
  14233. {
  14234. name: "Megamacro",
  14235. height: math.unit(186.41, "miles")
  14236. },
  14237. ]
  14238. ))
  14239. characterMakers.push(() => makeCharacter(
  14240. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14241. {
  14242. front: {
  14243. height: math.unit(2.2, "m"),
  14244. weight: math.unit(120, "kg"),
  14245. name: "Front",
  14246. image: {
  14247. source: "./media/characters/pia-jr/front.svg",
  14248. extra: 1000 / 970,
  14249. bottom: 0.035
  14250. }
  14251. },
  14252. hand: {
  14253. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14254. name: "Hand",
  14255. image: {
  14256. source: "./media/characters/pia-jr/hand.svg"
  14257. }
  14258. },
  14259. paw: {
  14260. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14261. name: "Paw",
  14262. image: {
  14263. source: "./media/characters/pia-jr/paw.svg"
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Micro",
  14270. height: math.unit(1.2, "cm")
  14271. },
  14272. {
  14273. name: "Normal",
  14274. height: math.unit(2.2, "m"),
  14275. default: true
  14276. },
  14277. {
  14278. name: "Macro",
  14279. height: math.unit(180, "m")
  14280. },
  14281. {
  14282. name: "Megamacro",
  14283. height: math.unit(420, "km")
  14284. },
  14285. ]
  14286. ))
  14287. characterMakers.push(() => makeCharacter(
  14288. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14289. {
  14290. front: {
  14291. height: math.unit(2, "m"),
  14292. weight: math.unit(115, "kg"),
  14293. name: "Front",
  14294. image: {
  14295. source: "./media/characters/pia-sr/front.svg",
  14296. extra: 760 / 730,
  14297. bottom: 0.015
  14298. }
  14299. },
  14300. back: {
  14301. height: math.unit(2, "m"),
  14302. weight: math.unit(115, "kg"),
  14303. name: "Back",
  14304. image: {
  14305. source: "./media/characters/pia-sr/back.svg",
  14306. extra: 760 / 730,
  14307. bottom: 0.01
  14308. }
  14309. },
  14310. hand: {
  14311. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14312. name: "Hand",
  14313. image: {
  14314. source: "./media/characters/pia-sr/hand.svg"
  14315. }
  14316. },
  14317. foot: {
  14318. height: math.unit(1.83, "feet"),
  14319. name: "Foot",
  14320. image: {
  14321. source: "./media/characters/pia-sr/foot.svg"
  14322. }
  14323. },
  14324. },
  14325. [
  14326. {
  14327. name: "Micro",
  14328. height: math.unit(88, "mm")
  14329. },
  14330. {
  14331. name: "Normal",
  14332. height: math.unit(2, "m"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Macro",
  14337. height: math.unit(200, "m")
  14338. },
  14339. {
  14340. name: "Megamacro",
  14341. height: math.unit(420, "km")
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14347. {
  14348. front: {
  14349. height: math.unit(8 + 2 / 12, "feet"),
  14350. weight: math.unit(300, "lb"),
  14351. name: "Front",
  14352. image: {
  14353. source: "./media/characters/kibibyte/front.svg",
  14354. extra: 2221 / 2098,
  14355. bottom: 0.04
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(8 + 2 / 12, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Socialable Macro",
  14367. height: math.unit(50, "feet")
  14368. },
  14369. {
  14370. name: "Macro",
  14371. height: math.unit(300, "feet")
  14372. },
  14373. {
  14374. name: "Megamacro",
  14375. height: math.unit(500, "miles")
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14381. {
  14382. front: {
  14383. height: math.unit(6, "feet"),
  14384. weight: math.unit(150, "lb"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/felix/front.svg",
  14388. extra: 762 / 722,
  14389. bottom: 0.02
  14390. }
  14391. },
  14392. frontClothed: {
  14393. height: math.unit(6, "feet"),
  14394. weight: math.unit(150, "lb"),
  14395. name: "Front (Clothed)",
  14396. image: {
  14397. source: "./media/characters/felix/front-clothed.svg",
  14398. extra: 762 / 722,
  14399. bottom: 0.02
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(6 + 8 / 12, "feet"),
  14407. default: true
  14408. },
  14409. {
  14410. name: "Macro",
  14411. height: math.unit(2600, "feet")
  14412. },
  14413. {
  14414. name: "Megamacro",
  14415. height: math.unit(450, "miles")
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(6 + 1 / 12, "feet"),
  14424. weight: math.unit(250, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/tobo/front.svg",
  14428. extra: 608 / 586,
  14429. bottom: 0.023
  14430. }
  14431. },
  14432. back: {
  14433. height: math.unit(6 + 1 / 12, "feet"),
  14434. weight: math.unit(250, "lb"),
  14435. name: "Back",
  14436. image: {
  14437. source: "./media/characters/tobo/back.svg",
  14438. extra: 608 / 586
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Nano",
  14445. height: math.unit(2, "nm")
  14446. },
  14447. {
  14448. name: "Megamicro",
  14449. height: math.unit(0.1, "mm")
  14450. },
  14451. {
  14452. name: "Micro",
  14453. height: math.unit(1, "inch"),
  14454. default: true
  14455. },
  14456. {
  14457. name: "Human-sized",
  14458. height: math.unit(6 + 1 / 12, "feet")
  14459. },
  14460. {
  14461. name: "Macro",
  14462. height: math.unit(250, "feet")
  14463. },
  14464. {
  14465. name: "Megamacro",
  14466. height: math.unit(75, "miles")
  14467. },
  14468. {
  14469. name: "Texas-sized",
  14470. height: math.unit(750, "miles")
  14471. },
  14472. {
  14473. name: "Teramacro",
  14474. height: math.unit(50000, "miles")
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14480. {
  14481. front: {
  14482. height: math.unit(6, "feet"),
  14483. weight: math.unit(269, "lb"),
  14484. name: "Front",
  14485. image: {
  14486. source: "./media/characters/danny-kapowsky/front.svg",
  14487. extra: 766 / 736,
  14488. bottom: 0.044
  14489. }
  14490. },
  14491. back: {
  14492. height: math.unit(6, "feet"),
  14493. weight: math.unit(269, "lb"),
  14494. name: "Back",
  14495. image: {
  14496. source: "./media/characters/danny-kapowsky/back.svg",
  14497. extra: 797 / 760,
  14498. bottom: 0.025
  14499. }
  14500. },
  14501. },
  14502. [
  14503. {
  14504. name: "Macro",
  14505. height: math.unit(150, "feet"),
  14506. default: true
  14507. },
  14508. {
  14509. name: "Macro+",
  14510. height: math.unit(200, "feet")
  14511. },
  14512. {
  14513. name: "Macro++",
  14514. height: math.unit(300, "feet")
  14515. },
  14516. {
  14517. name: "Macro+++",
  14518. height: math.unit(400, "feet")
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14524. {
  14525. side: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(170, "lb"),
  14528. name: "Side",
  14529. image: {
  14530. source: "./media/characters/finn/side.svg",
  14531. extra: 1953 / 1807,
  14532. bottom: 0.057
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Megamacro",
  14539. height: math.unit(14445, "feet"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(5 + 6 / 12, "feet"),
  14549. weight: math.unit(125, "lb"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/roy/front.svg",
  14553. extra: 1,
  14554. bottom: 0.11
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Micro",
  14561. height: math.unit(3, "inches"),
  14562. default: true
  14563. },
  14564. {
  14565. name: "Normal",
  14566. height: math.unit(5 + 6 / 12, "feet")
  14567. },
  14568. {
  14569. name: "Lesser Macro",
  14570. height: math.unit(60, "feet")
  14571. },
  14572. {
  14573. name: "Greater Macro",
  14574. height: math.unit(120, "feet")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(6, "feet"),
  14583. weight: math.unit(100, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/aevsivs/front.svg",
  14587. extra: 1,
  14588. bottom: 0.03
  14589. }
  14590. },
  14591. back: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(100, "lb"),
  14594. name: "Back",
  14595. image: {
  14596. source: "./media/characters/aevsivs/back.svg"
  14597. }
  14598. },
  14599. },
  14600. [
  14601. {
  14602. name: "Micro",
  14603. height: math.unit(2, "inches"),
  14604. default: true
  14605. },
  14606. {
  14607. name: "Normal",
  14608. height: math.unit(5, "feet")
  14609. },
  14610. ]
  14611. ))
  14612. characterMakers.push(() => makeCharacter(
  14613. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14614. {
  14615. front: {
  14616. height: math.unit(5 + 7 / 12, "feet"),
  14617. weight: math.unit(159, "lb"),
  14618. name: "Front",
  14619. image: {
  14620. source: "./media/characters/hildegard/front.svg",
  14621. extra: 289 / 269,
  14622. bottom: 7.63 / 297.8
  14623. }
  14624. },
  14625. back: {
  14626. height: math.unit(5 + 7 / 12, "feet"),
  14627. weight: math.unit(159, "lb"),
  14628. name: "Back",
  14629. image: {
  14630. source: "./media/characters/hildegard/back.svg",
  14631. extra: 280 / 260,
  14632. bottom: 2.3 / 282
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(5 + 7 / 12, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14646. {
  14647. bernard: {
  14648. height: math.unit(2 + 7 / 12, "feet"),
  14649. weight: math.unit(66, "lb"),
  14650. name: "Bernard",
  14651. rename: true,
  14652. image: {
  14653. source: "./media/characters/bernard-wilder/bernard.svg",
  14654. extra: 192 / 128,
  14655. bottom: 0.05
  14656. }
  14657. },
  14658. wilder: {
  14659. height: math.unit(5 + 8 / 12, "feet"),
  14660. weight: math.unit(143, "lb"),
  14661. name: "Wilder",
  14662. rename: true,
  14663. image: {
  14664. source: "./media/characters/bernard-wilder/wilder.svg",
  14665. extra: 361 / 312,
  14666. bottom: 0.02
  14667. }
  14668. },
  14669. },
  14670. [
  14671. {
  14672. name: "Normal",
  14673. height: math.unit(2 + 7 / 12, "feet"),
  14674. default: true
  14675. },
  14676. ]
  14677. ))
  14678. characterMakers.push(() => makeCharacter(
  14679. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14680. {
  14681. anthro: {
  14682. height: math.unit(6 + 1 / 12, "feet"),
  14683. weight: math.unit(155, "lb"),
  14684. name: "Anthro",
  14685. image: {
  14686. source: "./media/characters/hearth/anthro.svg",
  14687. extra: 260 / 250,
  14688. bottom: 0.02
  14689. }
  14690. },
  14691. feral: {
  14692. height: math.unit(3.78, "feet"),
  14693. weight: math.unit(35, "kg"),
  14694. name: "Feral",
  14695. image: {
  14696. source: "./media/characters/hearth/feral.svg",
  14697. extra: 153 / 135,
  14698. bottom: 0.03
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(6 + 1 / 12, "feet"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(6, "feet"),
  14715. weight: math.unit(182, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/ingrid/front.svg",
  14719. extra: 294 / 268,
  14720. bottom: 0.027
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(6, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14734. {
  14735. eevee: {
  14736. height: math.unit(2 + 10 / 12, "feet"),
  14737. weight: math.unit(86, "lb"),
  14738. name: "Malgam",
  14739. image: {
  14740. source: "./media/characters/malgam/eevee.svg",
  14741. extra: 218 / 180,
  14742. bottom: 0.2
  14743. }
  14744. },
  14745. sylveon: {
  14746. height: math.unit(4, "feet"),
  14747. weight: math.unit(101, "lb"),
  14748. name: "Future Malgam",
  14749. rename: true,
  14750. image: {
  14751. source: "./media/characters/malgam/sylveon.svg",
  14752. extra: 371 / 325,
  14753. bottom: 0.015
  14754. }
  14755. },
  14756. gigantamax: {
  14757. height: math.unit(50, "feet"),
  14758. name: "Gigantamax Malgam",
  14759. rename: true,
  14760. image: {
  14761. source: "./media/characters/malgam/gigantamax.svg"
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Normal",
  14768. height: math.unit(2 + 10 / 12, "feet"),
  14769. default: true
  14770. },
  14771. ]
  14772. ))
  14773. characterMakers.push(() => makeCharacter(
  14774. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14775. {
  14776. front: {
  14777. height: math.unit(5 + 11 / 12, "feet"),
  14778. weight: math.unit(188, "lb"),
  14779. name: "Front",
  14780. image: {
  14781. source: "./media/characters/fleur/front.svg",
  14782. extra: 309 / 283,
  14783. bottom: 0.007
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Normal",
  14790. height: math.unit(5 + 11 / 12, "feet"),
  14791. default: true
  14792. },
  14793. ]
  14794. ))
  14795. characterMakers.push(() => makeCharacter(
  14796. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14797. {
  14798. front: {
  14799. height: math.unit(5 + 4 / 12, "feet"),
  14800. weight: math.unit(122, "lb"),
  14801. name: "Front",
  14802. image: {
  14803. source: "./media/characters/jude/front.svg",
  14804. extra: 288 / 273,
  14805. bottom: 0.03
  14806. }
  14807. },
  14808. },
  14809. [
  14810. {
  14811. name: "Normal",
  14812. height: math.unit(5 + 4 / 12, "feet"),
  14813. default: true
  14814. },
  14815. ]
  14816. ))
  14817. characterMakers.push(() => makeCharacter(
  14818. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14819. {
  14820. front: {
  14821. height: math.unit(5 + 11 / 12, "feet"),
  14822. weight: math.unit(190, "lb"),
  14823. name: "Front",
  14824. image: {
  14825. source: "./media/characters/seara/front.svg",
  14826. extra: 1,
  14827. bottom: 0.05
  14828. }
  14829. },
  14830. },
  14831. [
  14832. {
  14833. name: "Normal",
  14834. height: math.unit(5 + 11 / 12, "feet"),
  14835. default: true
  14836. },
  14837. ]
  14838. ))
  14839. characterMakers.push(() => makeCharacter(
  14840. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14841. {
  14842. front: {
  14843. height: math.unit(16 + 5 / 12, "feet"),
  14844. weight: math.unit(524, "lb"),
  14845. name: "Front",
  14846. image: {
  14847. source: "./media/characters/caspian/front.svg",
  14848. extra: 1,
  14849. bottom: 0.04
  14850. }
  14851. },
  14852. },
  14853. [
  14854. {
  14855. name: "Normal",
  14856. height: math.unit(16 + 5 / 12, "feet"),
  14857. default: true
  14858. },
  14859. ]
  14860. ))
  14861. characterMakers.push(() => makeCharacter(
  14862. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14863. {
  14864. front: {
  14865. height: math.unit(5 + 7 / 12, "feet"),
  14866. weight: math.unit(170, "lb"),
  14867. name: "Front",
  14868. image: {
  14869. source: "./media/characters/mika/front.svg",
  14870. extra: 1,
  14871. bottom: 0.016
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Normal",
  14878. height: math.unit(5 + 7 / 12, "feet"),
  14879. default: true
  14880. },
  14881. ]
  14882. ))
  14883. characterMakers.push(() => makeCharacter(
  14884. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14885. {
  14886. front: {
  14887. height: math.unit(6 + 2 / 12, "feet"),
  14888. weight: math.unit(268, "lb"),
  14889. name: "Front",
  14890. image: {
  14891. source: "./media/characters/sol/front.svg",
  14892. extra: 247 / 231,
  14893. bottom: 0.05
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Normal",
  14900. height: math.unit(6 + 2 / 12, "feet"),
  14901. default: true
  14902. },
  14903. ]
  14904. ))
  14905. characterMakers.push(() => makeCharacter(
  14906. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14907. {
  14908. buizel: {
  14909. height: math.unit(2 + 5 / 12, "feet"),
  14910. weight: math.unit(87, "lb"),
  14911. name: "Buizel",
  14912. image: {
  14913. source: "./media/characters/umiko/buizel.svg",
  14914. extra: 172 / 157,
  14915. bottom: 0.01
  14916. }
  14917. },
  14918. floatzel: {
  14919. height: math.unit(5 + 9 / 12, "feet"),
  14920. weight: math.unit(250, "lb"),
  14921. name: "Floatzel",
  14922. image: {
  14923. source: "./media/characters/umiko/floatzel.svg",
  14924. extra: 262 / 248
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Normal",
  14931. height: math.unit(2 + 5 / 12, "feet"),
  14932. default: true
  14933. },
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14938. {
  14939. front: {
  14940. height: math.unit(6 + 2 / 12, "feet"),
  14941. weight: math.unit(146, "lb"),
  14942. name: "Front",
  14943. image: {
  14944. source: "./media/characters/iliac/front.svg",
  14945. extra: 389 / 365,
  14946. bottom: 0.035
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Normal",
  14953. height: math.unit(6 + 2 / 12, "feet"),
  14954. default: true
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14960. {
  14961. front: {
  14962. height: math.unit(6, "feet"),
  14963. weight: math.unit(170, "lb"),
  14964. name: "Front",
  14965. image: {
  14966. source: "./media/characters/topaz/front.svg",
  14967. extra: 317 / 303,
  14968. bottom: 0.055
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(6, "feet"),
  14976. default: true
  14977. },
  14978. ]
  14979. ))
  14980. characterMakers.push(() => makeCharacter(
  14981. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14982. {
  14983. front: {
  14984. height: math.unit(5 + 11 / 12, "feet"),
  14985. weight: math.unit(144, "lb"),
  14986. name: "Front",
  14987. image: {
  14988. source: "./media/characters/gabriel/front.svg",
  14989. extra: 285 / 262,
  14990. bottom: 0.004
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(5 + 11 / 12, "feet"),
  14998. default: true
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15004. {
  15005. side: {
  15006. height: math.unit(6 + 5 / 12, "feet"),
  15007. weight: math.unit(300, "lb"),
  15008. name: "Side",
  15009. image: {
  15010. source: "./media/characters/tempest-suicune/side.svg",
  15011. extra: 195 / 154,
  15012. bottom: 0.04
  15013. }
  15014. },
  15015. },
  15016. [
  15017. {
  15018. name: "Normal",
  15019. height: math.unit(6 + 5 / 12, "feet"),
  15020. default: true
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(7 + 2 / 12, "feet"),
  15029. weight: math.unit(322, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/vulcan/front.svg",
  15033. extra: 154 / 147,
  15034. bottom: 0.04
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(7 + 2 / 12, "feet"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15048. {
  15049. front: {
  15050. height: math.unit(5 + 10 / 12, "feet"),
  15051. weight: math.unit(264, "lb"),
  15052. name: "Front",
  15053. image: {
  15054. source: "./media/characters/gault/front.svg",
  15055. extra: 161 / 140,
  15056. bottom: 0.028
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(5 + 10 / 12, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(6, "feet"),
  15073. weight: math.unit(150, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/shard/front.svg",
  15077. extra: 273 / 238,
  15078. bottom: 0.02
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(3 + 6 / 12, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(5 + 11 / 12, "feet"),
  15095. weight: math.unit(146, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/ashe/front.svg",
  15099. extra: 400 / 373,
  15100. bottom: 0.01
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(5 + 11 / 12, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(5 + 5 / 12, "feet"),
  15117. weight: math.unit(135, "lb"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/beatrix/front.svg",
  15121. extra: 392 / 379,
  15122. bottom: 0.01
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(6, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(6, "feet"),
  15139. weight: math.unit(150, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/ignatius/front.svg",
  15143. extra: 245 / 222,
  15144. bottom: 0.01
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(5 + 5 / 12, "feet"),
  15152. default: true
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(6 + 2 / 12, "feet"),
  15161. weight: math.unit(138, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/mei-li/front.svg",
  15165. extra: 237 / 229,
  15166. bottom: 0.03
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(6 + 2 / 12, "feet"),
  15174. default: true
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(2 + 4 / 12, "feet"),
  15183. weight: math.unit(62, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/puru/front.svg",
  15187. extra: 206 / 149,
  15188. bottom: 0.06
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(2 + 4 / 12, "feet"),
  15196. default: true
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15202. {
  15203. anthro: {
  15204. height: math.unit(5 + 8/12, "feet"),
  15205. weight: math.unit(200, "lb"),
  15206. energyNeed: math.unit(2000, "kcal"),
  15207. name: "Anthro",
  15208. image: {
  15209. source: "./media/characters/kee/anthro.svg",
  15210. extra: 3251/3184,
  15211. bottom: 250/3501
  15212. }
  15213. },
  15214. taur: {
  15215. height: math.unit(11, "feet"),
  15216. weight: math.unit(500, "lb"),
  15217. energyNeed: math.unit(5000, "kcal"),
  15218. name: "Taur",
  15219. image: {
  15220. source: "./media/characters/kee/taur.svg",
  15221. extra: 1362/1320,
  15222. bottom: 83/1445
  15223. }
  15224. },
  15225. },
  15226. [
  15227. {
  15228. name: "Normal",
  15229. height: math.unit(5 + 8/12, "feet"),
  15230. default: true
  15231. },
  15232. {
  15233. name: "Macro",
  15234. height: math.unit(35, "feet")
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15240. {
  15241. anthro: {
  15242. height: math.unit(7, "feet"),
  15243. weight: math.unit(190, "lb"),
  15244. name: "Anthro",
  15245. image: {
  15246. source: "./media/characters/cobalt-dracha/anthro.svg",
  15247. extra: 231 / 225,
  15248. bottom: 0.04
  15249. }
  15250. },
  15251. feral: {
  15252. height: math.unit(9 + 7 / 12, "feet"),
  15253. weight: math.unit(294, "lb"),
  15254. name: "Feral",
  15255. image: {
  15256. source: "./media/characters/cobalt-dracha/feral.svg",
  15257. extra: 692 / 633,
  15258. bottom: 0.05
  15259. }
  15260. },
  15261. },
  15262. [
  15263. {
  15264. name: "Normal",
  15265. height: math.unit(7, "feet"),
  15266. default: true
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15272. {
  15273. fallen: {
  15274. height: math.unit(11 + 8 / 12, "feet"),
  15275. weight: math.unit(485, "lb"),
  15276. name: "Java (Fallen)",
  15277. rename: true,
  15278. image: {
  15279. source: "./media/characters/java/fallen.svg",
  15280. extra: 226 / 208,
  15281. bottom: 0.005
  15282. }
  15283. },
  15284. godkin: {
  15285. height: math.unit(10 + 6 / 12, "feet"),
  15286. weight: math.unit(328, "lb"),
  15287. name: "Java (Godkin)",
  15288. rename: true,
  15289. image: {
  15290. source: "./media/characters/java/godkin.svg",
  15291. extra: 270 / 262,
  15292. bottom: 0.02
  15293. }
  15294. },
  15295. },
  15296. [
  15297. {
  15298. name: "Normal",
  15299. height: math.unit(11 + 8 / 12, "feet"),
  15300. default: true
  15301. },
  15302. ]
  15303. ))
  15304. characterMakers.push(() => makeCharacter(
  15305. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15306. {
  15307. front: {
  15308. height: math.unit(7 + 8 / 12, "feet"),
  15309. weight: math.unit(320, "lb"),
  15310. name: "Front",
  15311. image: {
  15312. source: "./media/characters/skoll/front.svg",
  15313. extra: 232 / 220,
  15314. bottom: 0.02
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Normal",
  15321. height: math.unit(7 + 8 / 12, "feet"),
  15322. default: true
  15323. },
  15324. ]
  15325. ))
  15326. characterMakers.push(() => makeCharacter(
  15327. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15328. {
  15329. front: {
  15330. height: math.unit(5 + 9 / 12, "feet"),
  15331. weight: math.unit(170, "lb"),
  15332. name: "Front",
  15333. image: {
  15334. source: "./media/characters/purna/front.svg",
  15335. extra: 239 / 229,
  15336. bottom: 0.01
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Normal",
  15343. height: math.unit(5 + 9 / 12, "feet"),
  15344. default: true
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15350. {
  15351. front: {
  15352. height: math.unit(5 + 9 / 12, "feet"),
  15353. weight: math.unit(142, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/kuva/front.svg",
  15357. extra: 281 / 271,
  15358. bottom: 0.006
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(5 + 9 / 12, "feet"),
  15366. default: true
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15372. {
  15373. anthro: {
  15374. height: math.unit(9 + 2 / 12, "feet"),
  15375. weight: math.unit(270, "lb"),
  15376. name: "Anthro",
  15377. image: {
  15378. source: "./media/characters/embra/anthro.svg",
  15379. extra: 200 / 187,
  15380. bottom: 0.02
  15381. }
  15382. },
  15383. feral: {
  15384. height: math.unit(18 + 8 / 12, "feet"),
  15385. weight: math.unit(576, "lb"),
  15386. name: "Feral",
  15387. image: {
  15388. source: "./media/characters/embra/feral.svg",
  15389. extra: 152 / 137,
  15390. bottom: 0.037
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Normal",
  15397. height: math.unit(9 + 2 / 12, "feet"),
  15398. default: true
  15399. },
  15400. ]
  15401. ))
  15402. characterMakers.push(() => makeCharacter(
  15403. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15404. {
  15405. anthro: {
  15406. height: math.unit(10 + 9 / 12, "feet"),
  15407. weight: math.unit(224, "lb"),
  15408. name: "Anthro",
  15409. image: {
  15410. source: "./media/characters/grottos/anthro.svg",
  15411. extra: 350 / 332,
  15412. bottom: 0.045
  15413. }
  15414. },
  15415. feral: {
  15416. height: math.unit(20 + 7 / 12, "feet"),
  15417. weight: math.unit(629, "lb"),
  15418. name: "Feral",
  15419. image: {
  15420. source: "./media/characters/grottos/feral.svg",
  15421. extra: 207 / 190,
  15422. bottom: 0.05
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Normal",
  15429. height: math.unit(10 + 9 / 12, "feet"),
  15430. default: true
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15436. {
  15437. anthro: {
  15438. height: math.unit(9 + 6 / 12, "feet"),
  15439. weight: math.unit(298, "lb"),
  15440. name: "Anthro",
  15441. image: {
  15442. source: "./media/characters/frifna/anthro.svg",
  15443. extra: 282 / 269,
  15444. bottom: 0.015
  15445. }
  15446. },
  15447. feral: {
  15448. height: math.unit(16 + 2 / 12, "feet"),
  15449. weight: math.unit(624, "lb"),
  15450. name: "Feral",
  15451. image: {
  15452. source: "./media/characters/frifna/feral.svg"
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Normal",
  15459. height: math.unit(9 + 6 / 12, "feet"),
  15460. default: true
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(6 + 2 / 12, "feet"),
  15469. weight: math.unit(168, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/elise/front.svg",
  15473. extra: 276 / 271
  15474. }
  15475. },
  15476. },
  15477. [
  15478. {
  15479. name: "Normal",
  15480. height: math.unit(6 + 2 / 12, "feet"),
  15481. default: true
  15482. },
  15483. ]
  15484. ))
  15485. characterMakers.push(() => makeCharacter(
  15486. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15487. {
  15488. front: {
  15489. height: math.unit(5 + 10 / 12, "feet"),
  15490. weight: math.unit(210, "lb"),
  15491. name: "Front",
  15492. image: {
  15493. source: "./media/characters/glade/front.svg",
  15494. extra: 258 / 247,
  15495. bottom: 0.008
  15496. }
  15497. },
  15498. },
  15499. [
  15500. {
  15501. name: "Normal",
  15502. height: math.unit(5 + 10 / 12, "feet"),
  15503. default: true
  15504. },
  15505. ]
  15506. ))
  15507. characterMakers.push(() => makeCharacter(
  15508. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15509. {
  15510. front: {
  15511. height: math.unit(5 + 10 / 12, "feet"),
  15512. weight: math.unit(129, "lb"),
  15513. name: "Front",
  15514. image: {
  15515. source: "./media/characters/rina/front.svg",
  15516. extra: 266 / 255,
  15517. bottom: 0.005
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Normal",
  15524. height: math.unit(5 + 10 / 12, "feet"),
  15525. default: true
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15531. {
  15532. front: {
  15533. height: math.unit(6 + 1 / 12, "feet"),
  15534. weight: math.unit(192, "lb"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/veronica/front.svg",
  15538. extra: 319 / 309,
  15539. bottom: 0.005
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Normal",
  15546. height: math.unit(6 + 1 / 12, "feet"),
  15547. default: true
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15553. {
  15554. front: {
  15555. height: math.unit(9 + 3 / 12, "feet"),
  15556. weight: math.unit(1100, "lb"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/braxton/front.svg",
  15560. extra: 1057 / 984,
  15561. bottom: 0.05
  15562. }
  15563. },
  15564. },
  15565. [
  15566. {
  15567. name: "Normal",
  15568. height: math.unit(9 + 3 / 12, "feet")
  15569. },
  15570. {
  15571. name: "Giant",
  15572. height: math.unit(300, "feet"),
  15573. default: true
  15574. },
  15575. {
  15576. name: "Macro",
  15577. height: math.unit(700, "feet")
  15578. },
  15579. {
  15580. name: "Megamacro",
  15581. height: math.unit(6000, "feet")
  15582. },
  15583. ]
  15584. ))
  15585. characterMakers.push(() => makeCharacter(
  15586. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15587. {
  15588. front: {
  15589. height: math.unit(6 + 7 / 12, "feet"),
  15590. weight: math.unit(150, "lb"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/blue-feyonics/front.svg",
  15594. extra: 1403 / 1306,
  15595. bottom: 0.047
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Normal",
  15602. height: math.unit(6 + 7 / 12, "feet"),
  15603. default: true
  15604. },
  15605. ]
  15606. ))
  15607. characterMakers.push(() => makeCharacter(
  15608. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15609. {
  15610. front: {
  15611. height: math.unit(1.8, "meters"),
  15612. weight: math.unit(60, "kg"),
  15613. name: "Front",
  15614. image: {
  15615. source: "./media/characters/maxwell/front.svg",
  15616. extra: 2060 / 1873
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Micro",
  15623. height: math.unit(1, "mm")
  15624. },
  15625. {
  15626. name: "Normal",
  15627. height: math.unit(1.8, "meter"),
  15628. default: true
  15629. },
  15630. {
  15631. name: "Macro",
  15632. height: math.unit(30, "meters")
  15633. },
  15634. {
  15635. name: "Megamacro",
  15636. height: math.unit(10, "km")
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(6, "feet"),
  15645. weight: math.unit(150, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/jack/front.svg",
  15649. extra: 1754 / 1640,
  15650. bottom: 0.01
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(80000, "feet"),
  15658. default: true
  15659. },
  15660. {
  15661. name: "Max size",
  15662. height: math.unit(10, "lightyears")
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15668. {
  15669. urban: {
  15670. height: math.unit(5, "feet"),
  15671. weight: math.unit(240, "lb"),
  15672. name: "Urban",
  15673. image: {
  15674. source: "./media/characters/cafat/urban.svg",
  15675. extra: 1223/1126,
  15676. bottom: 205/1428
  15677. }
  15678. },
  15679. summer: {
  15680. height: math.unit(5, "feet"),
  15681. weight: math.unit(240, "lb"),
  15682. name: "Summer",
  15683. image: {
  15684. source: "./media/characters/cafat/summer.svg",
  15685. extra: 1223/1126,
  15686. bottom: 205/1428
  15687. }
  15688. },
  15689. winter: {
  15690. height: math.unit(5, "feet"),
  15691. weight: math.unit(240, "lb"),
  15692. name: "Winter",
  15693. image: {
  15694. source: "./media/characters/cafat/winter.svg",
  15695. extra: 1223/1126,
  15696. bottom: 205/1428
  15697. }
  15698. },
  15699. lingerie: {
  15700. height: math.unit(5, "feet"),
  15701. weight: math.unit(240, "lb"),
  15702. name: "Lingerie",
  15703. image: {
  15704. source: "./media/characters/cafat/lingerie.svg",
  15705. extra: 1223/1126,
  15706. bottom: 205/1428
  15707. }
  15708. },
  15709. upright: {
  15710. height: math.unit(6.3, "feet"),
  15711. weight: math.unit(240, "lb"),
  15712. name: "Upright",
  15713. image: {
  15714. source: "./media/characters/cafat/upright.svg",
  15715. bottom: 0.01
  15716. }
  15717. },
  15718. uprightFull: {
  15719. height: math.unit(6.3, "feet"),
  15720. weight: math.unit(240, "lb"),
  15721. name: "Upright (Full)",
  15722. image: {
  15723. source: "./media/characters/cafat/upright-full.svg",
  15724. bottom: 0.01
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Small",
  15731. height: math.unit(5, "feet"),
  15732. default: true
  15733. },
  15734. {
  15735. name: "Large",
  15736. height: math.unit(13, "feet")
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(6, "feet"),
  15745. weight: math.unit(150, "lb"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/verin-raharra/front.svg",
  15749. extra: 5019 / 4835,
  15750. bottom: 0.023
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(7 + 5 / 12, "feet"),
  15758. default: true
  15759. },
  15760. {
  15761. name: "Upsized",
  15762. height: math.unit(20, "feet")
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(7, "feet"),
  15771. weight: math.unit(230, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/nakata/front.svg",
  15775. extra: 1.005,
  15776. bottom: 0.01
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Normal",
  15783. height: math.unit(7, "feet"),
  15784. default: true
  15785. },
  15786. {
  15787. name: "Big",
  15788. height: math.unit(14, "feet")
  15789. },
  15790. {
  15791. name: "Macro",
  15792. height: math.unit(400, "feet")
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15798. {
  15799. front: {
  15800. height: math.unit(4.91, "feet"),
  15801. weight: math.unit(100, "lb"),
  15802. name: "Front",
  15803. image: {
  15804. source: "./media/characters/lily/front.svg",
  15805. extra: 1585 / 1415,
  15806. bottom: 0.02
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Normal",
  15813. height: math.unit(4.91, "feet"),
  15814. default: true
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15820. {
  15821. laying: {
  15822. height: math.unit(4 + 4 / 12, "feet"),
  15823. weight: math.unit(600, "lb"),
  15824. name: "Laying",
  15825. image: {
  15826. source: "./media/characters/sheila/laying.svg",
  15827. extra: 1333 / 1265,
  15828. bottom: 0.16
  15829. }
  15830. },
  15831. },
  15832. [
  15833. {
  15834. name: "Normal",
  15835. height: math.unit(4 + 4 / 12, "feet"),
  15836. default: true
  15837. },
  15838. ]
  15839. ))
  15840. characterMakers.push(() => makeCharacter(
  15841. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15842. {
  15843. front: {
  15844. height: math.unit(6, "feet"),
  15845. weight: math.unit(190, "lb"),
  15846. name: "Front",
  15847. image: {
  15848. source: "./media/characters/sax/front.svg",
  15849. extra: 1187 / 973,
  15850. bottom: 0.042
  15851. }
  15852. },
  15853. },
  15854. [
  15855. {
  15856. name: "Micro",
  15857. height: math.unit(4, "inches"),
  15858. default: true
  15859. },
  15860. ]
  15861. ))
  15862. characterMakers.push(() => makeCharacter(
  15863. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15864. {
  15865. front: {
  15866. height: math.unit(6, "feet"),
  15867. weight: math.unit(150, "lb"),
  15868. name: "Front",
  15869. image: {
  15870. source: "./media/characters/pandora/front.svg",
  15871. extra: 2720 / 2556,
  15872. bottom: 0.015
  15873. }
  15874. },
  15875. back: {
  15876. height: math.unit(6, "feet"),
  15877. weight: math.unit(150, "lb"),
  15878. name: "Back",
  15879. image: {
  15880. source: "./media/characters/pandora/back.svg",
  15881. extra: 2720 / 2556,
  15882. bottom: 0.01
  15883. }
  15884. },
  15885. beans: {
  15886. height: math.unit(6 / 8, "feet"),
  15887. name: "Beans",
  15888. image: {
  15889. source: "./media/characters/pandora/beans.svg"
  15890. }
  15891. },
  15892. collar: {
  15893. height: math.unit(0.31, "feet"),
  15894. name: "Collar",
  15895. image: {
  15896. source: "./media/characters/pandora/collar.svg"
  15897. }
  15898. },
  15899. skirt: {
  15900. height: math.unit(6, "feet"),
  15901. weight: math.unit(150, "lb"),
  15902. name: "Skirt",
  15903. image: {
  15904. source: "./media/characters/pandora/skirt.svg",
  15905. extra: 1622 / 1525,
  15906. bottom: 0.015
  15907. }
  15908. },
  15909. hoodie: {
  15910. height: math.unit(6, "feet"),
  15911. weight: math.unit(150, "lb"),
  15912. name: "Hoodie",
  15913. image: {
  15914. source: "./media/characters/pandora/hoodie.svg",
  15915. extra: 1622 / 1525,
  15916. bottom: 0.015
  15917. }
  15918. },
  15919. casual: {
  15920. height: math.unit(6, "feet"),
  15921. weight: math.unit(150, "lb"),
  15922. name: "Casual",
  15923. image: {
  15924. source: "./media/characters/pandora/casual.svg",
  15925. extra: 1622 / 1525,
  15926. bottom: 0.015
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Normal",
  15933. height: math.unit(6, "feet")
  15934. },
  15935. {
  15936. name: "Big Steppy",
  15937. height: math.unit(1, "km"),
  15938. default: true
  15939. },
  15940. {
  15941. name: "Galactic Steppy",
  15942. height: math.unit(2, "gigameters")
  15943. },
  15944. ]
  15945. ))
  15946. characterMakers.push(() => makeCharacter(
  15947. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15948. {
  15949. side: {
  15950. height: math.unit(10, "feet"),
  15951. weight: math.unit(800, "kg"),
  15952. name: "Side",
  15953. image: {
  15954. source: "./media/characters/venio-darcony/side.svg",
  15955. extra: 1373 / 1003,
  15956. bottom: 0.037
  15957. }
  15958. },
  15959. front: {
  15960. height: math.unit(19, "feet"),
  15961. weight: math.unit(800, "kg"),
  15962. name: "Front",
  15963. image: {
  15964. source: "./media/characters/venio-darcony/front.svg"
  15965. }
  15966. },
  15967. back: {
  15968. height: math.unit(19, "feet"),
  15969. weight: math.unit(800, "kg"),
  15970. name: "Back",
  15971. image: {
  15972. source: "./media/characters/venio-darcony/back.svg"
  15973. }
  15974. },
  15975. sideNsfw: {
  15976. height: math.unit(10, "feet"),
  15977. weight: math.unit(800, "kg"),
  15978. name: "Side (NSFW)",
  15979. image: {
  15980. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15981. extra: 1373 / 1003,
  15982. bottom: 0.037
  15983. }
  15984. },
  15985. frontNsfw: {
  15986. height: math.unit(19, "feet"),
  15987. weight: math.unit(800, "kg"),
  15988. name: "Front (NSFW)",
  15989. image: {
  15990. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15991. }
  15992. },
  15993. backNsfw: {
  15994. height: math.unit(19, "feet"),
  15995. weight: math.unit(800, "kg"),
  15996. name: "Back (NSFW)",
  15997. image: {
  15998. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15999. }
  16000. },
  16001. sideArmored: {
  16002. height: math.unit(10, "feet"),
  16003. weight: math.unit(800, "kg"),
  16004. name: "Side (Armored)",
  16005. image: {
  16006. source: "./media/characters/venio-darcony/side-armored.svg",
  16007. extra: 1373 / 1003,
  16008. bottom: 0.037
  16009. }
  16010. },
  16011. frontArmored: {
  16012. height: math.unit(19, "feet"),
  16013. weight: math.unit(900, "kg"),
  16014. name: "Front (Armored)",
  16015. image: {
  16016. source: "./media/characters/venio-darcony/front-armored.svg"
  16017. }
  16018. },
  16019. backArmored: {
  16020. height: math.unit(19, "feet"),
  16021. weight: math.unit(900, "kg"),
  16022. name: "Back (Armored)",
  16023. image: {
  16024. source: "./media/characters/venio-darcony/back-armored.svg"
  16025. }
  16026. },
  16027. sword: {
  16028. height: math.unit(10, "feet"),
  16029. weight: math.unit(50, "lb"),
  16030. name: "Sword",
  16031. image: {
  16032. source: "./media/characters/venio-darcony/sword.svg"
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(10, "feet")
  16040. },
  16041. {
  16042. name: "Macro",
  16043. height: math.unit(130, "feet"),
  16044. default: true
  16045. },
  16046. {
  16047. name: "Macro+",
  16048. height: math.unit(240, "feet")
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16054. {
  16055. front: {
  16056. height: math.unit(6, "feet"),
  16057. weight: math.unit(150, "lb"),
  16058. name: "Front",
  16059. image: {
  16060. source: "./media/characters/veski/front.svg",
  16061. extra: 1299 / 1225,
  16062. bottom: 0.04
  16063. }
  16064. },
  16065. back: {
  16066. height: math.unit(6, "feet"),
  16067. weight: math.unit(150, "lb"),
  16068. name: "Back",
  16069. image: {
  16070. source: "./media/characters/veski/back.svg",
  16071. extra: 1299 / 1225,
  16072. bottom: 0.008
  16073. }
  16074. },
  16075. maw: {
  16076. height: math.unit(1.5 * 1.21, "feet"),
  16077. name: "Maw",
  16078. image: {
  16079. source: "./media/characters/veski/maw.svg"
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Macro",
  16086. height: math.unit(2, "km"),
  16087. default: true
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16093. {
  16094. front: {
  16095. height: math.unit(5 + 7 / 12, "feet"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/isabelle/front.svg",
  16099. extra: 2130 / 1976,
  16100. bottom: 0.05
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Supermicro",
  16107. height: math.unit(10, "micrometers")
  16108. },
  16109. {
  16110. name: "Micro",
  16111. height: math.unit(1, "inch")
  16112. },
  16113. {
  16114. name: "Tiny",
  16115. height: math.unit(5, "inches")
  16116. },
  16117. {
  16118. name: "Standard",
  16119. height: math.unit(5 + 7 / 12, "inches")
  16120. },
  16121. {
  16122. name: "Macro",
  16123. height: math.unit(80, "meters"),
  16124. default: true
  16125. },
  16126. {
  16127. name: "Megamacro",
  16128. height: math.unit(250, "meters")
  16129. },
  16130. {
  16131. name: "Gigamacro",
  16132. height: math.unit(5, "km")
  16133. },
  16134. {
  16135. name: "Cosmic",
  16136. height: math.unit(2.5e6, "miles")
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16142. {
  16143. front: {
  16144. height: math.unit(6, "feet"),
  16145. weight: math.unit(150, "lb"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/hanzo/front.svg",
  16149. extra: 374 / 344,
  16150. bottom: 0.02
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Normal",
  16157. height: math.unit(8, "feet"),
  16158. default: true
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(7, "feet"),
  16167. weight: math.unit(130, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/anna/front.svg",
  16171. extra: 169 / 145,
  16172. bottom: 0.06
  16173. }
  16174. },
  16175. full: {
  16176. height: math.unit(4.96, "feet"),
  16177. weight: math.unit(220, "lb"),
  16178. name: "Full",
  16179. image: {
  16180. source: "./media/characters/anna/full.svg",
  16181. extra: 138 / 114,
  16182. bottom: 0.15
  16183. }
  16184. },
  16185. tongue: {
  16186. height: math.unit(2.53, "feet"),
  16187. name: "Tongue",
  16188. image: {
  16189. source: "./media/characters/anna/tongue.svg"
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Normal",
  16196. height: math.unit(7, "feet"),
  16197. default: true
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16203. {
  16204. front: {
  16205. height: math.unit(7, "feet"),
  16206. weight: math.unit(150, "lb"),
  16207. name: "Front",
  16208. image: {
  16209. source: "./media/characters/ian-corvid/front.svg",
  16210. extra: 150 / 142,
  16211. bottom: 0.02
  16212. }
  16213. },
  16214. back: {
  16215. height: math.unit(7, "feet"),
  16216. weight: math.unit(150, "lb"),
  16217. name: "Back",
  16218. image: {
  16219. source: "./media/characters/ian-corvid/back.svg",
  16220. extra: 150 / 143,
  16221. bottom: 0.01
  16222. }
  16223. },
  16224. stomping: {
  16225. height: math.unit(7, "feet"),
  16226. weight: math.unit(150, "lb"),
  16227. name: "Stomping",
  16228. image: {
  16229. source: "./media/characters/ian-corvid/stomping.svg",
  16230. extra: 76 / 72
  16231. }
  16232. },
  16233. sitting: {
  16234. height: math.unit(7 / 1.8, "feet"),
  16235. weight: math.unit(150, "lb"),
  16236. name: "Sitting",
  16237. image: {
  16238. source: "./media/characters/ian-corvid/sitting.svg",
  16239. extra: 1400 / 1269,
  16240. bottom: 0.15
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Tiny Microw",
  16247. height: math.unit(1, "inch")
  16248. },
  16249. {
  16250. name: "Microw",
  16251. height: math.unit(6, "inches")
  16252. },
  16253. {
  16254. name: "Crow",
  16255. height: math.unit(7 + 1 / 12, "feet"),
  16256. default: true
  16257. },
  16258. {
  16259. name: "Macrow",
  16260. height: math.unit(176, "feet")
  16261. },
  16262. ]
  16263. ))
  16264. characterMakers.push(() => makeCharacter(
  16265. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16266. {
  16267. front: {
  16268. height: math.unit(5 + 7 / 12, "feet"),
  16269. weight: math.unit(147, "lb"),
  16270. name: "Front",
  16271. image: {
  16272. source: "./media/characters/natalie-kellon/front.svg",
  16273. extra: 1214 / 1141,
  16274. bottom: 0.02
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Micro",
  16281. height: math.unit(1 / 16, "inch")
  16282. },
  16283. {
  16284. name: "Tiny",
  16285. height: math.unit(4, "inches")
  16286. },
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(5 + 7 / 12, "feet"),
  16290. default: true
  16291. },
  16292. {
  16293. name: "Amazon",
  16294. height: math.unit(12, "feet")
  16295. },
  16296. {
  16297. name: "Giantess",
  16298. height: math.unit(160, "meters")
  16299. },
  16300. {
  16301. name: "Titaness",
  16302. height: math.unit(800, "meters")
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16308. {
  16309. front: {
  16310. height: math.unit(6, "feet"),
  16311. weight: math.unit(150, "lb"),
  16312. name: "Front",
  16313. image: {
  16314. source: "./media/characters/alluria/front.svg",
  16315. extra: 806 / 738,
  16316. bottom: 0.01
  16317. }
  16318. },
  16319. side: {
  16320. height: math.unit(6, "feet"),
  16321. weight: math.unit(150, "lb"),
  16322. name: "Side",
  16323. image: {
  16324. source: "./media/characters/alluria/side.svg",
  16325. extra: 800 / 750,
  16326. }
  16327. },
  16328. back: {
  16329. height: math.unit(6, "feet"),
  16330. weight: math.unit(150, "lb"),
  16331. name: "Back",
  16332. image: {
  16333. source: "./media/characters/alluria/back.svg",
  16334. extra: 806 / 738,
  16335. }
  16336. },
  16337. frontMaid: {
  16338. height: math.unit(6, "feet"),
  16339. weight: math.unit(150, "lb"),
  16340. name: "Front (Maid)",
  16341. image: {
  16342. source: "./media/characters/alluria/front-maid.svg",
  16343. extra: 806 / 738,
  16344. bottom: 0.01
  16345. }
  16346. },
  16347. sideMaid: {
  16348. height: math.unit(6, "feet"),
  16349. weight: math.unit(150, "lb"),
  16350. name: "Side (Maid)",
  16351. image: {
  16352. source: "./media/characters/alluria/side-maid.svg",
  16353. extra: 800 / 750,
  16354. bottom: 0.005
  16355. }
  16356. },
  16357. backMaid: {
  16358. height: math.unit(6, "feet"),
  16359. weight: math.unit(150, "lb"),
  16360. name: "Back (Maid)",
  16361. image: {
  16362. source: "./media/characters/alluria/back-maid.svg",
  16363. extra: 806 / 738,
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Micro",
  16370. height: math.unit(6, "inches"),
  16371. default: true
  16372. },
  16373. ]
  16374. ))
  16375. characterMakers.push(() => makeCharacter(
  16376. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16377. {
  16378. front: {
  16379. height: math.unit(6, "feet"),
  16380. weight: math.unit(150, "lb"),
  16381. name: "Front",
  16382. image: {
  16383. source: "./media/characters/kyle/front.svg",
  16384. extra: 1069 / 962,
  16385. bottom: 77.228 / 1727.45
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Macro",
  16392. height: math.unit(150, "feet"),
  16393. default: true
  16394. },
  16395. ]
  16396. ))
  16397. characterMakers.push(() => makeCharacter(
  16398. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16399. {
  16400. front: {
  16401. height: math.unit(6, "feet"),
  16402. weight: math.unit(300, "lb"),
  16403. name: "Front",
  16404. image: {
  16405. source: "./media/characters/duncan/front.svg",
  16406. extra: 1650 / 1482,
  16407. bottom: 0.05
  16408. }
  16409. },
  16410. },
  16411. [
  16412. {
  16413. name: "Macro",
  16414. height: math.unit(100, "feet"),
  16415. default: true
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(5 + 4 / 12, "feet"),
  16424. weight: math.unit(220, "lb"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/memory/front.svg",
  16428. extra: 3641 / 3545,
  16429. bottom: 0.03
  16430. }
  16431. },
  16432. back: {
  16433. height: math.unit(5 + 4 / 12, "feet"),
  16434. weight: math.unit(220, "lb"),
  16435. name: "Back",
  16436. image: {
  16437. source: "./media/characters/memory/back.svg",
  16438. extra: 3641 / 3545,
  16439. bottom: 0.025
  16440. }
  16441. },
  16442. frontSkirt: {
  16443. height: math.unit(5 + 4 / 12, "feet"),
  16444. weight: math.unit(220, "lb"),
  16445. name: "Front (Skirt)",
  16446. image: {
  16447. source: "./media/characters/memory/front-skirt.svg",
  16448. extra: 3641 / 3545,
  16449. bottom: 0.03
  16450. }
  16451. },
  16452. frontDress: {
  16453. height: math.unit(5 + 4 / 12, "feet"),
  16454. weight: math.unit(220, "lb"),
  16455. name: "Front (Dress)",
  16456. image: {
  16457. source: "./media/characters/memory/front-dress.svg",
  16458. extra: 3641 / 3545,
  16459. bottom: 0.03
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Micro",
  16466. height: math.unit(6, "inches"),
  16467. default: true
  16468. },
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(5 + 4 / 12, "feet")
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(4 + 11 / 12, "feet"),
  16480. weight: math.unit(100, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/luno/front.svg",
  16484. extra: 1535 / 1487,
  16485. bottom: 0.03
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Micro",
  16492. height: math.unit(3, "inches")
  16493. },
  16494. {
  16495. name: "Normal",
  16496. height: math.unit(4 + 11 / 12, "feet"),
  16497. default: true
  16498. },
  16499. {
  16500. name: "Macro",
  16501. height: math.unit(300, "feet")
  16502. },
  16503. {
  16504. name: "Megamacro",
  16505. height: math.unit(700, "miles")
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(6 + 2 / 12, "feet"),
  16514. weight: math.unit(170, "lb"),
  16515. name: "Front",
  16516. image: {
  16517. source: "./media/characters/jamesy/front.svg",
  16518. extra: 440 / 382,
  16519. bottom: 0.005
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Micro",
  16526. height: math.unit(3, "inches")
  16527. },
  16528. {
  16529. name: "Normal",
  16530. height: math.unit(6 + 2 / 12, "feet"),
  16531. default: true
  16532. },
  16533. {
  16534. name: "Macro",
  16535. height: math.unit(300, "feet")
  16536. },
  16537. {
  16538. name: "Megamacro",
  16539. height: math.unit(700, "miles")
  16540. },
  16541. ]
  16542. ))
  16543. characterMakers.push(() => makeCharacter(
  16544. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16545. {
  16546. front: {
  16547. height: math.unit(6, "feet"),
  16548. weight: math.unit(160, "lb"),
  16549. name: "Front",
  16550. image: {
  16551. source: "./media/characters/mark/front.svg",
  16552. extra: 3300 / 3100,
  16553. bottom: 136.42 / 3440.47
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Macro",
  16560. height: math.unit(120, "meters")
  16561. },
  16562. {
  16563. name: "Bigger Macro",
  16564. height: math.unit(350, "meters")
  16565. },
  16566. {
  16567. name: "Megamacro",
  16568. height: math.unit(8, "km"),
  16569. default: true
  16570. },
  16571. {
  16572. name: "Continental",
  16573. height: math.unit(4550, "km")
  16574. },
  16575. {
  16576. name: "Planetary",
  16577. height: math.unit(65000, "km")
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16583. {
  16584. front: {
  16585. height: math.unit(6, "feet"),
  16586. weight: math.unit(400, "lb"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/mac/front.svg",
  16590. extra: 1048 / 987.7,
  16591. bottom: 60 / 1107.6,
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Macro",
  16598. height: math.unit(500, "feet"),
  16599. default: true
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16605. {
  16606. front: {
  16607. height: math.unit(5 + 2 / 12, "feet"),
  16608. weight: math.unit(190, "lb"),
  16609. name: "Front",
  16610. image: {
  16611. source: "./media/characters/bari/front.svg",
  16612. extra: 3156 / 2880,
  16613. bottom: 0.03
  16614. }
  16615. },
  16616. back: {
  16617. height: math.unit(5 + 2 / 12, "feet"),
  16618. weight: math.unit(190, "lb"),
  16619. name: "Back",
  16620. image: {
  16621. source: "./media/characters/bari/back.svg",
  16622. extra: 3260 / 2834,
  16623. bottom: 0.025
  16624. }
  16625. },
  16626. frontPlush: {
  16627. height: math.unit(5 + 2 / 12, "feet"),
  16628. weight: math.unit(190, "lb"),
  16629. name: "Front (Plush)",
  16630. image: {
  16631. source: "./media/characters/bari/front-plush.svg",
  16632. extra: 1112 / 1061,
  16633. bottom: 0.002
  16634. }
  16635. },
  16636. },
  16637. [
  16638. {
  16639. name: "Micro",
  16640. height: math.unit(3, "inches")
  16641. },
  16642. {
  16643. name: "Normal",
  16644. height: math.unit(5 + 2 / 12, "feet"),
  16645. default: true
  16646. },
  16647. {
  16648. name: "Macro",
  16649. height: math.unit(20, "feet")
  16650. },
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16655. {
  16656. front: {
  16657. height: math.unit(6 + 1 / 12, "feet"),
  16658. weight: math.unit(275, "lb"),
  16659. name: "Front",
  16660. image: {
  16661. source: "./media/characters/hunter-misha-raven/front.svg"
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Mortal",
  16668. height: math.unit(6 + 1 / 12, "feet")
  16669. },
  16670. {
  16671. name: "Divine",
  16672. height: math.unit(1.12134e34, "parsecs"),
  16673. default: true
  16674. },
  16675. ]
  16676. ))
  16677. characterMakers.push(() => makeCharacter(
  16678. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16679. {
  16680. front: {
  16681. height: math.unit(6 + 3 / 12, "feet"),
  16682. weight: math.unit(220, "lb"),
  16683. name: "Front",
  16684. image: {
  16685. source: "./media/characters/max-calore/front.svg",
  16686. extra: 1700 / 1648,
  16687. bottom: 0.01
  16688. }
  16689. },
  16690. back: {
  16691. height: math.unit(6 + 3 / 12, "feet"),
  16692. weight: math.unit(220, "lb"),
  16693. name: "Back",
  16694. image: {
  16695. source: "./media/characters/max-calore/back.svg",
  16696. extra: 1700 / 1648,
  16697. bottom: 0.01
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(6 + 3 / 12, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16711. {
  16712. side: {
  16713. height: math.unit(2 + 8 / 12, "feet"),
  16714. weight: math.unit(99, "lb"),
  16715. name: "Side",
  16716. image: {
  16717. source: "./media/characters/aspen/side.svg",
  16718. extra: 152 / 138,
  16719. bottom: 0.032
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(2 + 8 / 12, "feet"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16733. {
  16734. side: {
  16735. height: math.unit(3 + 2 / 12, "feet"),
  16736. weight: math.unit(224, "lb"),
  16737. name: "Side",
  16738. image: {
  16739. source: "./media/characters/sheila-feral-wolf/side.svg",
  16740. extra: 179 / 166,
  16741. bottom: 0.03
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(3 + 2 / 12, "feet"),
  16749. default: true
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16755. {
  16756. side: {
  16757. height: math.unit(1 + 9 / 12, "feet"),
  16758. weight: math.unit(38, "lb"),
  16759. name: "Side",
  16760. image: {
  16761. source: "./media/characters/michelle/side.svg",
  16762. extra: 147 / 136.7,
  16763. bottom: 0.03
  16764. }
  16765. },
  16766. },
  16767. [
  16768. {
  16769. name: "Normal",
  16770. height: math.unit(1 + 9 / 12, "feet"),
  16771. default: true
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(1 + 1 / 12, "feet"),
  16780. weight: math.unit(18, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/nino/front.svg"
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(1 + 1 / 12, "feet"),
  16791. default: true
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(1, "feet"),
  16800. weight: math.unit(16, "lb"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/viola/front.svg"
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(1, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(6 + 5 / 12, "feet"),
  16820. weight: math.unit(580, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/atlas/front.svg",
  16824. extra: 298.5 / 290,
  16825. bottom: 0.015
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Normal",
  16832. height: math.unit(6 + 5 / 12, "feet"),
  16833. default: true
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16839. {
  16840. side: {
  16841. height: math.unit(1 + 10 / 12, "feet"),
  16842. weight: math.unit(25, "lb"),
  16843. name: "Side",
  16844. image: {
  16845. source: "./media/characters/davy/side.svg",
  16846. extra: 200 / 170,
  16847. bottom: 0.01
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(1 + 10 / 12, "feet"),
  16855. default: true
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16861. {
  16862. side: {
  16863. height: math.unit(4 + 8 / 12, "feet"),
  16864. weight: math.unit(166, "lb"),
  16865. name: "Side",
  16866. image: {
  16867. source: "./media/characters/fiona/side.svg",
  16868. extra: 232 / 220,
  16869. bottom: 0.03
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(4 + 8 / 12, "feet"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16883. {
  16884. front: {
  16885. height: math.unit(2, "feet"),
  16886. weight: math.unit(62, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/lyla/front.svg",
  16890. bottom: 0.1
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(2, "feet"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16904. {
  16905. side: {
  16906. height: math.unit(1.8, "feet"),
  16907. weight: math.unit(44, "lb"),
  16908. name: "Side",
  16909. image: {
  16910. source: "./media/characters/perseus/side.svg",
  16911. bottom: 0.21
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(1.8, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16925. {
  16926. side: {
  16927. height: math.unit(4 + 2 / 12, "feet"),
  16928. weight: math.unit(20, "lb"),
  16929. name: "Side",
  16930. image: {
  16931. source: "./media/characters/remus/side.svg"
  16932. }
  16933. },
  16934. },
  16935. [
  16936. {
  16937. name: "Normal",
  16938. height: math.unit(4 + 2 / 12, "feet"),
  16939. default: true
  16940. },
  16941. ]
  16942. ))
  16943. characterMakers.push(() => makeCharacter(
  16944. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16945. {
  16946. front: {
  16947. height: math.unit(4 + 11 / 12, "feet"),
  16948. weight: math.unit(114, "lb"),
  16949. name: "Front",
  16950. image: {
  16951. source: "./media/characters/raf/front.svg",
  16952. bottom: 20.5 / 1863
  16953. }
  16954. },
  16955. side: {
  16956. height: math.unit(4 + 11 / 12, "feet"),
  16957. weight: math.unit(114, "lb"),
  16958. name: "Side",
  16959. image: {
  16960. source: "./media/characters/raf/side.svg",
  16961. bottom: 22 / 1822
  16962. }
  16963. },
  16964. },
  16965. [
  16966. {
  16967. name: "Micro",
  16968. height: math.unit(2, "inches")
  16969. },
  16970. {
  16971. name: "Normal",
  16972. height: math.unit(4 + 11 / 12, "feet"),
  16973. default: true
  16974. },
  16975. {
  16976. name: "Macro",
  16977. height: math.unit(70, "feet")
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16983. {
  16984. front: {
  16985. height: math.unit(1.5, "meters"),
  16986. weight: math.unit(68, "kg"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/liam-einarr/front.svg",
  16990. extra: 2822 / 2666
  16991. }
  16992. },
  16993. back: {
  16994. height: math.unit(1.5, "meters"),
  16995. weight: math.unit(68, "kg"),
  16996. name: "Back",
  16997. image: {
  16998. source: "./media/characters/liam-einarr/back.svg",
  16999. extra: 2822 / 2666,
  17000. bottom: 0.015
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(1.5, "meters"),
  17008. default: true
  17009. },
  17010. {
  17011. name: "Macro",
  17012. height: math.unit(150, "meters")
  17013. },
  17014. {
  17015. name: "Megamacro",
  17016. height: math.unit(35, "km")
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(6, "feet"),
  17025. weight: math.unit(75, "kg"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/linda/front.svg",
  17029. extra: 930 / 874,
  17030. bottom: 0.004
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(6, "feet"),
  17038. default: true
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17044. {
  17045. front: {
  17046. height: math.unit(6 + 8 / 12, "feet"),
  17047. weight: math.unit(220, "lb"),
  17048. name: "Front",
  17049. image: {
  17050. source: "./media/characters/caylex/front.svg",
  17051. extra: 821 / 772,
  17052. bottom: 0.07
  17053. }
  17054. },
  17055. back: {
  17056. height: math.unit(6 + 8 / 12, "feet"),
  17057. weight: math.unit(220, "lb"),
  17058. name: "Back",
  17059. image: {
  17060. source: "./media/characters/caylex/back.svg",
  17061. extra: 821 / 772,
  17062. bottom: 0.022
  17063. }
  17064. },
  17065. hand: {
  17066. height: math.unit(1.25, "feet"),
  17067. name: "Hand",
  17068. image: {
  17069. source: "./media/characters/caylex/hand.svg"
  17070. }
  17071. },
  17072. foot: {
  17073. height: math.unit(1.6, "feet"),
  17074. name: "Foot",
  17075. image: {
  17076. source: "./media/characters/caylex/foot.svg"
  17077. }
  17078. },
  17079. armored: {
  17080. height: math.unit(6 + 8 / 12, "feet"),
  17081. weight: math.unit(250, "lb"),
  17082. name: "Armored",
  17083. image: {
  17084. source: "./media/characters/caylex/armored.svg",
  17085. extra: 1420 / 1310,
  17086. bottom: 0.045
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(6 + 8 / 12, "feet"),
  17094. default: true
  17095. },
  17096. {
  17097. name: "Normal+",
  17098. height: math.unit(12, "feet")
  17099. },
  17100. ]
  17101. ))
  17102. characterMakers.push(() => makeCharacter(
  17103. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17104. {
  17105. front: {
  17106. height: math.unit(7 + 6 / 12, "feet"),
  17107. weight: math.unit(288, "lb"),
  17108. name: "Front",
  17109. image: {
  17110. source: "./media/characters/alana/front.svg",
  17111. extra: 679 / 653,
  17112. bottom: 22.5 / 701
  17113. }
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Normal",
  17119. height: math.unit(7 + 6 / 12, "feet")
  17120. },
  17121. {
  17122. name: "Large",
  17123. height: math.unit(50, "feet")
  17124. },
  17125. {
  17126. name: "Macro",
  17127. height: math.unit(100, "feet"),
  17128. default: true
  17129. },
  17130. {
  17131. name: "Macro+",
  17132. height: math.unit(200, "feet")
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17138. {
  17139. front: {
  17140. height: math.unit(6 + 1 / 12, "feet"),
  17141. weight: math.unit(210, "lb"),
  17142. name: "Front",
  17143. image: {
  17144. source: "./media/characters/hasani/front.svg",
  17145. extra: 244 / 232,
  17146. bottom: 0.01
  17147. }
  17148. },
  17149. back: {
  17150. height: math.unit(6 + 1 / 12, "feet"),
  17151. weight: math.unit(210, "lb"),
  17152. name: "Back",
  17153. image: {
  17154. source: "./media/characters/hasani/back.svg",
  17155. extra: 244 / 232,
  17156. bottom: 0.01
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(6 + 1 / 12, "feet")
  17164. },
  17165. {
  17166. name: "Macro",
  17167. height: math.unit(175, "feet"),
  17168. default: true
  17169. },
  17170. ]
  17171. ))
  17172. characterMakers.push(() => makeCharacter(
  17173. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17174. {
  17175. front: {
  17176. height: math.unit(1.82, "meters"),
  17177. weight: math.unit(140, "lb"),
  17178. name: "Front",
  17179. image: {
  17180. source: "./media/characters/nita/front.svg",
  17181. extra: 2473 / 2363,
  17182. bottom: 0.01
  17183. }
  17184. },
  17185. },
  17186. [
  17187. {
  17188. name: "Normal",
  17189. height: math.unit(1.82, "m")
  17190. },
  17191. {
  17192. name: "Macro",
  17193. height: math.unit(300, "m")
  17194. },
  17195. {
  17196. name: "Mistake Canon",
  17197. height: math.unit(0.5, "miles"),
  17198. default: true
  17199. },
  17200. {
  17201. name: "Big Mistake",
  17202. height: math.unit(13, "miles")
  17203. },
  17204. {
  17205. name: "Playing God",
  17206. height: math.unit(2450, "miles")
  17207. },
  17208. ]
  17209. ))
  17210. characterMakers.push(() => makeCharacter(
  17211. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17212. {
  17213. front: {
  17214. height: math.unit(4, "feet"),
  17215. weight: math.unit(120, "lb"),
  17216. name: "Front",
  17217. image: {
  17218. source: "./media/characters/shiriko/front.svg",
  17219. extra: 970/934,
  17220. bottom: 5/975
  17221. }
  17222. },
  17223. },
  17224. [
  17225. {
  17226. name: "Normal",
  17227. height: math.unit(4, "feet"),
  17228. default: true
  17229. },
  17230. ]
  17231. ))
  17232. characterMakers.push(() => makeCharacter(
  17233. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17234. {
  17235. front: {
  17236. height: math.unit(6, "feet"),
  17237. name: "front",
  17238. image: {
  17239. source: "./media/characters/deja/front.svg",
  17240. extra: 926 / 840,
  17241. bottom: 0.07
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Planck Length",
  17248. height: math.unit(1.6e-35, "meters")
  17249. },
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(30.48, "meters"),
  17253. default: true
  17254. },
  17255. {
  17256. name: "Universal",
  17257. height: math.unit(8.8e26, "meters")
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17263. {
  17264. side: {
  17265. height: math.unit(8, "feet"),
  17266. weight: math.unit(6300, "lb"),
  17267. name: "Side",
  17268. image: {
  17269. source: "./media/characters/anima/side.svg",
  17270. bottom: 0.035
  17271. }
  17272. },
  17273. },
  17274. [
  17275. {
  17276. name: "Normal",
  17277. height: math.unit(8, "feet"),
  17278. default: true
  17279. },
  17280. ]
  17281. ))
  17282. characterMakers.push(() => makeCharacter(
  17283. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17284. {
  17285. front: {
  17286. height: math.unit(8, "feet"),
  17287. weight: math.unit(350, "lb"),
  17288. name: "Front",
  17289. image: {
  17290. source: "./media/characters/bianca/front.svg",
  17291. extra: 234 / 225,
  17292. bottom: 0.03
  17293. }
  17294. },
  17295. },
  17296. [
  17297. {
  17298. name: "Normal",
  17299. height: math.unit(8, "feet"),
  17300. default: true
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17306. {
  17307. front: {
  17308. height: math.unit(6, "feet"),
  17309. weight: math.unit(150, "lb"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/adinia/front.svg",
  17313. extra: 1845 / 1672,
  17314. bottom: 0.02
  17315. }
  17316. },
  17317. back: {
  17318. height: math.unit(6, "feet"),
  17319. weight: math.unit(150, "lb"),
  17320. name: "Back",
  17321. image: {
  17322. source: "./media/characters/adinia/back.svg",
  17323. extra: 1845 / 1672,
  17324. bottom: 0.002
  17325. }
  17326. },
  17327. },
  17328. [
  17329. {
  17330. name: "Normal",
  17331. height: math.unit(11 + 5 / 12, "feet"),
  17332. default: true
  17333. },
  17334. ]
  17335. ))
  17336. characterMakers.push(() => makeCharacter(
  17337. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17338. {
  17339. front: {
  17340. height: math.unit(3, "meters"),
  17341. weight: math.unit(200, "kg"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/lykasa/front.svg",
  17345. extra: 1076 / 976,
  17346. bottom: 0.06
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(3, "meters")
  17354. },
  17355. {
  17356. name: "Kaiju",
  17357. height: math.unit(120, "meters"),
  17358. default: true
  17359. },
  17360. {
  17361. name: "Mega Kaiju",
  17362. height: math.unit(240, "km")
  17363. },
  17364. {
  17365. name: "Giga Kaiju",
  17366. height: math.unit(400, "megameters")
  17367. },
  17368. {
  17369. name: "Tera Kaiju",
  17370. height: math.unit(800, "gigameters")
  17371. },
  17372. {
  17373. name: "Kaiju Dragon Goddess",
  17374. height: math.unit(26, "zettaparsecs")
  17375. },
  17376. ]
  17377. ))
  17378. characterMakers.push(() => makeCharacter(
  17379. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17380. {
  17381. side: {
  17382. height: math.unit(283 / 124 * 6, "feet"),
  17383. weight: math.unit(35000, "lb"),
  17384. name: "Side",
  17385. image: {
  17386. source: "./media/characters/malfaren/side.svg",
  17387. extra: 2500 / 1010,
  17388. bottom: 0.01
  17389. }
  17390. },
  17391. front: {
  17392. height: math.unit(22.36, "feet"),
  17393. weight: math.unit(35000, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/malfaren/front.svg",
  17397. extra: 1631 / 1476,
  17398. bottom: 0.01
  17399. }
  17400. },
  17401. maw: {
  17402. height: math.unit(6.9, "feet"),
  17403. name: "Maw",
  17404. image: {
  17405. source: "./media/characters/malfaren/maw.svg"
  17406. }
  17407. },
  17408. },
  17409. [
  17410. {
  17411. name: "Big",
  17412. height: math.unit(283 / 162 * 6, "feet"),
  17413. },
  17414. {
  17415. name: "Bigger",
  17416. height: math.unit(283 / 124 * 6, "feet")
  17417. },
  17418. {
  17419. name: "Massive",
  17420. height: math.unit(283 / 92 * 6, "feet"),
  17421. default: true
  17422. },
  17423. {
  17424. name: "👀💦",
  17425. height: math.unit(283 / 73 * 6, "feet"),
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17431. {
  17432. front: {
  17433. height: math.unit(1.7, "m"),
  17434. weight: math.unit(70, "kg"),
  17435. name: "Front",
  17436. image: {
  17437. source: "./media/characters/kernel/front.svg",
  17438. extra: 222 / 210,
  17439. bottom: 0.007
  17440. }
  17441. },
  17442. },
  17443. [
  17444. {
  17445. name: "Nano",
  17446. height: math.unit(17, "micrometers")
  17447. },
  17448. {
  17449. name: "Micro",
  17450. height: math.unit(1.7, "mm")
  17451. },
  17452. {
  17453. name: "Small",
  17454. height: math.unit(1.7, "cm")
  17455. },
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(1.7, "m"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17465. {
  17466. front: {
  17467. height: math.unit(1.75, "meters"),
  17468. weight: math.unit(65, "kg"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/jayne-folest/front.svg",
  17472. extra: 2115 / 2007,
  17473. bottom: 0.02
  17474. }
  17475. },
  17476. back: {
  17477. height: math.unit(1.75, "meters"),
  17478. weight: math.unit(65, "kg"),
  17479. name: "Back",
  17480. image: {
  17481. source: "./media/characters/jayne-folest/back.svg",
  17482. extra: 2115 / 2007,
  17483. bottom: 0.005
  17484. }
  17485. },
  17486. frontClothed: {
  17487. height: math.unit(1.75, "meters"),
  17488. weight: math.unit(65, "kg"),
  17489. name: "Front (Clothed)",
  17490. image: {
  17491. source: "./media/characters/jayne-folest/front-clothed.svg",
  17492. extra: 2115 / 2007,
  17493. bottom: 0.035
  17494. }
  17495. },
  17496. hand: {
  17497. height: math.unit(1 / 1.260, "feet"),
  17498. name: "Hand",
  17499. image: {
  17500. source: "./media/characters/jayne-folest/hand.svg"
  17501. }
  17502. },
  17503. foot: {
  17504. height: math.unit(1 / 0.918, "feet"),
  17505. name: "Foot",
  17506. image: {
  17507. source: "./media/characters/jayne-folest/foot.svg"
  17508. }
  17509. },
  17510. },
  17511. [
  17512. {
  17513. name: "Micro",
  17514. height: math.unit(4, "cm")
  17515. },
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(1.75, "meters")
  17519. },
  17520. {
  17521. name: "Macro",
  17522. height: math.unit(47.5, "meters"),
  17523. default: true
  17524. },
  17525. ]
  17526. ))
  17527. characterMakers.push(() => makeCharacter(
  17528. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17529. {
  17530. front: {
  17531. height: math.unit(180, "cm"),
  17532. weight: math.unit(70, "kg"),
  17533. name: "Front",
  17534. image: {
  17535. source: "./media/characters/algier/front.svg",
  17536. extra: 596 / 572,
  17537. bottom: 0.04
  17538. }
  17539. },
  17540. back: {
  17541. height: math.unit(180, "cm"),
  17542. weight: math.unit(70, "kg"),
  17543. name: "Back",
  17544. image: {
  17545. source: "./media/characters/algier/back.svg",
  17546. extra: 596 / 572,
  17547. bottom: 0.025
  17548. }
  17549. },
  17550. frontdressed: {
  17551. height: math.unit(180, "cm"),
  17552. weight: math.unit(150, "kg"),
  17553. name: "Front-dressed",
  17554. image: {
  17555. source: "./media/characters/algier/front-dressed.svg",
  17556. extra: 596 / 572,
  17557. bottom: 0.038
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Micro",
  17564. height: math.unit(5, "cm")
  17565. },
  17566. {
  17567. name: "Normal",
  17568. height: math.unit(180, "cm"),
  17569. default: true
  17570. },
  17571. {
  17572. name: "Macro",
  17573. height: math.unit(64, "m")
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17579. {
  17580. upright: {
  17581. height: math.unit(7, "feet"),
  17582. weight: math.unit(300, "lb"),
  17583. name: "Upright",
  17584. image: {
  17585. source: "./media/characters/pretzel/upright.svg",
  17586. extra: 534 / 522,
  17587. bottom: 0.065
  17588. }
  17589. },
  17590. sprawling: {
  17591. height: math.unit(3.75, "feet"),
  17592. weight: math.unit(300, "lb"),
  17593. name: "Sprawling",
  17594. image: {
  17595. source: "./media/characters/pretzel/sprawling.svg",
  17596. extra: 314 / 281,
  17597. bottom: 0.1
  17598. }
  17599. },
  17600. tongue: {
  17601. height: math.unit(2, "feet"),
  17602. name: "Tongue",
  17603. image: {
  17604. source: "./media/characters/pretzel/tongue.svg"
  17605. }
  17606. },
  17607. },
  17608. [
  17609. {
  17610. name: "Normal",
  17611. height: math.unit(7, "feet"),
  17612. default: true
  17613. },
  17614. {
  17615. name: "Oversized",
  17616. height: math.unit(15, "feet")
  17617. },
  17618. {
  17619. name: "Huge",
  17620. height: math.unit(30, "feet")
  17621. },
  17622. {
  17623. name: "Macro",
  17624. height: math.unit(250, "feet")
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17630. {
  17631. sideFront: {
  17632. height: math.unit(5 + 2 / 12, "feet"),
  17633. weight: math.unit(120, "lb"),
  17634. name: "Front Side",
  17635. image: {
  17636. source: "./media/characters/roxi/side-front.svg",
  17637. extra: 2924 / 2717,
  17638. bottom: 0.08
  17639. }
  17640. },
  17641. sideBack: {
  17642. height: math.unit(5 + 2 / 12, "feet"),
  17643. weight: math.unit(120, "lb"),
  17644. name: "Back Side",
  17645. image: {
  17646. source: "./media/characters/roxi/side-back.svg",
  17647. extra: 2904 / 2693,
  17648. bottom: 0.06
  17649. }
  17650. },
  17651. front: {
  17652. height: math.unit(5 + 2 / 12, "feet"),
  17653. weight: math.unit(120, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/roxi/front.svg",
  17657. extra: 2028 / 1907,
  17658. bottom: 0.01
  17659. }
  17660. },
  17661. frontAlt: {
  17662. height: math.unit(5 + 2 / 12, "feet"),
  17663. weight: math.unit(120, "lb"),
  17664. name: "Front (Alt)",
  17665. image: {
  17666. source: "./media/characters/roxi/front-alt.svg",
  17667. extra: 1828 / 1798,
  17668. bottom: 0.01
  17669. }
  17670. },
  17671. sitting: {
  17672. height: math.unit(2.8, "feet"),
  17673. weight: math.unit(120, "lb"),
  17674. name: "Sitting",
  17675. image: {
  17676. source: "./media/characters/roxi/sitting.svg",
  17677. extra: 2660 / 2462,
  17678. bottom: 0.1
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(5 + 2 / 12, "feet"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17692. {
  17693. side: {
  17694. height: math.unit(55, "feet"),
  17695. weight: math.unit(153, "tons"),
  17696. name: "Side",
  17697. image: {
  17698. source: "./media/characters/shadow/side.svg",
  17699. extra: 701 / 628,
  17700. bottom: 0.02
  17701. }
  17702. },
  17703. flying: {
  17704. height: math.unit(145, "feet"),
  17705. weight: math.unit(153, "tons"),
  17706. name: "Flying",
  17707. image: {
  17708. source: "./media/characters/shadow/flying.svg"
  17709. }
  17710. },
  17711. },
  17712. [
  17713. {
  17714. name: "Normal",
  17715. height: math.unit(55, "feet"),
  17716. default: true
  17717. },
  17718. ]
  17719. ))
  17720. characterMakers.push(() => makeCharacter(
  17721. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17722. {
  17723. front: {
  17724. height: math.unit(6, "feet"),
  17725. weight: math.unit(200, "lb"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/marcie/front.svg",
  17729. extra: 960 / 876,
  17730. bottom: 58 / 1017.87
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Macro",
  17737. height: math.unit(1, "mile"),
  17738. default: true
  17739. },
  17740. ]
  17741. ))
  17742. characterMakers.push(() => makeCharacter(
  17743. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17744. {
  17745. front: {
  17746. height: math.unit(7, "feet"),
  17747. weight: math.unit(200, "lb"),
  17748. name: "Front",
  17749. image: {
  17750. source: "./media/characters/kachina/front.svg",
  17751. extra: 1290.68 / 1119,
  17752. bottom: 36.5 / 1327.18
  17753. }
  17754. },
  17755. },
  17756. [
  17757. {
  17758. name: "Normal",
  17759. height: math.unit(7, "feet"),
  17760. default: true
  17761. },
  17762. ]
  17763. ))
  17764. characterMakers.push(() => makeCharacter(
  17765. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17766. {
  17767. looking: {
  17768. height: math.unit(2, "meters"),
  17769. weight: math.unit(300, "kg"),
  17770. name: "Looking",
  17771. image: {
  17772. source: "./media/characters/kash/looking.svg",
  17773. extra: 474 / 344,
  17774. bottom: 0.03
  17775. }
  17776. },
  17777. side: {
  17778. height: math.unit(2, "meters"),
  17779. weight: math.unit(300, "kg"),
  17780. name: "Side",
  17781. image: {
  17782. source: "./media/characters/kash/side.svg",
  17783. extra: 302 / 251,
  17784. bottom: 0.03
  17785. }
  17786. },
  17787. front: {
  17788. height: math.unit(2, "meters"),
  17789. weight: math.unit(300, "kg"),
  17790. name: "Front",
  17791. image: {
  17792. source: "./media/characters/kash/front.svg",
  17793. extra: 495 / 360,
  17794. bottom: 0.015
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(2, "meters"),
  17802. default: true
  17803. },
  17804. {
  17805. name: "Big",
  17806. height: math.unit(3, "meters")
  17807. },
  17808. {
  17809. name: "Large",
  17810. height: math.unit(5, "meters")
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17816. {
  17817. feeding: {
  17818. height: math.unit(6.7, "feet"),
  17819. weight: math.unit(350, "lb"),
  17820. name: "Feeding",
  17821. image: {
  17822. source: "./media/characters/lalim/feeding.svg",
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(6.7, "feet"),
  17830. default: true
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17836. {
  17837. front: {
  17838. height: math.unit(9.5, "feet"),
  17839. weight: math.unit(600, "lb"),
  17840. name: "Front",
  17841. image: {
  17842. source: "./media/characters/de'vout/front.svg",
  17843. extra: 1443 / 1328,
  17844. bottom: 0.025
  17845. }
  17846. },
  17847. back: {
  17848. height: math.unit(9.5, "feet"),
  17849. weight: math.unit(600, "lb"),
  17850. name: "Back",
  17851. image: {
  17852. source: "./media/characters/de'vout/back.svg",
  17853. extra: 1443 / 1328
  17854. }
  17855. },
  17856. frontDressed: {
  17857. height: math.unit(9.5, "feet"),
  17858. weight: math.unit(600, "lb"),
  17859. name: "Front (Dressed",
  17860. image: {
  17861. source: "./media/characters/de'vout/front-dressed.svg",
  17862. extra: 1443 / 1328,
  17863. bottom: 0.025
  17864. }
  17865. },
  17866. backDressed: {
  17867. height: math.unit(9.5, "feet"),
  17868. weight: math.unit(600, "lb"),
  17869. name: "Back (Dressed",
  17870. image: {
  17871. source: "./media/characters/de'vout/back-dressed.svg",
  17872. extra: 1443 / 1328
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(9.5, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(8, "feet"),
  17889. weight: math.unit(225, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/talana/front.svg",
  17893. extra: 1410 / 1300,
  17894. bottom: 0.015
  17895. }
  17896. },
  17897. frontDressed: {
  17898. height: math.unit(8, "feet"),
  17899. weight: math.unit(225, "lb"),
  17900. name: "Front (Dressed",
  17901. image: {
  17902. source: "./media/characters/talana/front-dressed.svg",
  17903. extra: 1410 / 1300,
  17904. bottom: 0.015
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(8, "feet"),
  17912. default: true
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17918. {
  17919. side: {
  17920. height: math.unit(7.2, "feet"),
  17921. weight: math.unit(150, "lb"),
  17922. name: "Side",
  17923. image: {
  17924. source: "./media/characters/xeauvok/side.svg",
  17925. extra: 1975 / 1523,
  17926. bottom: 0.07
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Normal",
  17933. height: math.unit(7.2, "feet"),
  17934. default: true
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17940. {
  17941. side: {
  17942. height: math.unit(10, "feet"),
  17943. weight: math.unit(900, "kg"),
  17944. name: "Side",
  17945. image: {
  17946. source: "./media/characters/zara/side.svg",
  17947. extra: 504 / 498
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Normal",
  17954. height: math.unit(10, "feet"),
  17955. default: true
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17961. {
  17962. side: {
  17963. height: math.unit(6, "feet"),
  17964. weight: math.unit(150, "lb"),
  17965. name: "Side",
  17966. image: {
  17967. source: "./media/characters/richard-dragon/side.svg",
  17968. extra: 845 / 340,
  17969. bottom: 0.017
  17970. }
  17971. },
  17972. maw: {
  17973. height: math.unit(2.97, "feet"),
  17974. name: "Maw",
  17975. image: {
  17976. source: "./media/characters/richard-dragon/maw.svg"
  17977. }
  17978. },
  17979. },
  17980. [
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(4, "feet"),
  17988. weight: math.unit(100, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/richard-smeargle/front.svg",
  17992. extra: 2952 / 2820,
  17993. bottom: 0.028
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(4, "feet"),
  18001. default: true
  18002. },
  18003. {
  18004. name: "Dynamax",
  18005. height: math.unit(20, "meters")
  18006. },
  18007. ]
  18008. ))
  18009. characterMakers.push(() => makeCharacter(
  18010. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18011. {
  18012. front: {
  18013. height: math.unit(6, "feet"),
  18014. weight: math.unit(110, "lb"),
  18015. name: "Front",
  18016. image: {
  18017. source: "./media/characters/klay/front.svg",
  18018. extra: 962 / 883,
  18019. bottom: 0.04
  18020. }
  18021. },
  18022. back: {
  18023. height: math.unit(6, "feet"),
  18024. weight: math.unit(110, "lb"),
  18025. name: "Back",
  18026. image: {
  18027. source: "./media/characters/klay/back.svg",
  18028. extra: 962 / 883
  18029. }
  18030. },
  18031. beans: {
  18032. height: math.unit(1.15, "feet"),
  18033. name: "Beans",
  18034. image: {
  18035. source: "./media/characters/klay/beans.svg"
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Micro",
  18042. height: math.unit(6, "inches")
  18043. },
  18044. {
  18045. name: "Mini",
  18046. height: math.unit(3, "feet")
  18047. },
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(6, "feet"),
  18051. default: true
  18052. },
  18053. {
  18054. name: "Big",
  18055. height: math.unit(25, "feet")
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(100, "feet")
  18060. },
  18061. {
  18062. name: "Megamacro",
  18063. height: math.unit(400, "feet")
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(6, "feet"),
  18072. weight: math.unit(160, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/marcus/front.svg",
  18076. extra: 734 / 676,
  18077. bottom: 0.03
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Little",
  18084. height: math.unit(6, "feet")
  18085. },
  18086. {
  18087. name: "Normal",
  18088. height: math.unit(110, "feet"),
  18089. default: true
  18090. },
  18091. {
  18092. name: "Macro",
  18093. height: math.unit(250, "feet")
  18094. },
  18095. {
  18096. name: "Megamacro",
  18097. height: math.unit(1000, "feet")
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18103. {
  18104. front: {
  18105. height: math.unit(7, "feet"),
  18106. weight: math.unit(275, "lb"),
  18107. name: "Front",
  18108. image: {
  18109. source: "./media/characters/claude-delroute/front.svg",
  18110. extra: 230 / 214,
  18111. bottom: 0.007
  18112. }
  18113. },
  18114. side: {
  18115. height: math.unit(7, "feet"),
  18116. weight: math.unit(275, "lb"),
  18117. name: "Side",
  18118. image: {
  18119. source: "./media/characters/claude-delroute/side.svg",
  18120. extra: 222 / 214,
  18121. bottom: 0.01
  18122. }
  18123. },
  18124. back: {
  18125. height: math.unit(7, "feet"),
  18126. weight: math.unit(275, "lb"),
  18127. name: "Back",
  18128. image: {
  18129. source: "./media/characters/claude-delroute/back.svg",
  18130. extra: 230 / 214,
  18131. bottom: 0.015
  18132. }
  18133. },
  18134. maw: {
  18135. height: math.unit(0.6407, "meters"),
  18136. name: "Maw",
  18137. image: {
  18138. source: "./media/characters/claude-delroute/maw.svg"
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Normal",
  18145. height: math.unit(7, "feet"),
  18146. default: true
  18147. },
  18148. {
  18149. name: "Lorge",
  18150. height: math.unit(20, "feet")
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18156. {
  18157. front: {
  18158. height: math.unit(8 + 4 / 12, "feet"),
  18159. weight: math.unit(600, "lb"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/dragonien/front.svg",
  18163. extra: 100 / 94,
  18164. bottom: 3.3 / 103.3445
  18165. }
  18166. },
  18167. back: {
  18168. height: math.unit(8 + 4 / 12, "feet"),
  18169. weight: math.unit(600, "lb"),
  18170. name: "Back",
  18171. image: {
  18172. source: "./media/characters/dragonien/back.svg",
  18173. extra: 776 / 746,
  18174. bottom: 6.4 / 782.0616
  18175. }
  18176. },
  18177. foot: {
  18178. height: math.unit(1.54, "feet"),
  18179. name: "Foot",
  18180. image: {
  18181. source: "./media/characters/dragonien/foot.svg",
  18182. }
  18183. },
  18184. },
  18185. [
  18186. {
  18187. name: "Normal",
  18188. height: math.unit(8 + 4 / 12, "feet"),
  18189. default: true
  18190. },
  18191. {
  18192. name: "Macro",
  18193. height: math.unit(200, "feet")
  18194. },
  18195. {
  18196. name: "Megamacro",
  18197. height: math.unit(1, "mile")
  18198. },
  18199. {
  18200. name: "Gigamacro",
  18201. height: math.unit(1000, "miles")
  18202. },
  18203. ]
  18204. ))
  18205. characterMakers.push(() => makeCharacter(
  18206. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18207. {
  18208. front: {
  18209. height: math.unit(5 + 2 / 12, "feet"),
  18210. weight: math.unit(110, "lb"),
  18211. name: "Front",
  18212. image: {
  18213. source: "./media/characters/desta/front.svg",
  18214. extra: 767 / 726,
  18215. bottom: 11.7 / 779
  18216. }
  18217. },
  18218. back: {
  18219. height: math.unit(5 + 2 / 12, "feet"),
  18220. weight: math.unit(110, "lb"),
  18221. name: "Back",
  18222. image: {
  18223. source: "./media/characters/desta/back.svg",
  18224. extra: 777 / 728,
  18225. bottom: 6 / 784
  18226. }
  18227. },
  18228. frontAlt: {
  18229. height: math.unit(5 + 2 / 12, "feet"),
  18230. weight: math.unit(110, "lb"),
  18231. name: "Front",
  18232. image: {
  18233. source: "./media/characters/desta/front-alt.svg",
  18234. extra: 1482 / 1417
  18235. }
  18236. },
  18237. side: {
  18238. height: math.unit(5 + 2 / 12, "feet"),
  18239. weight: math.unit(110, "lb"),
  18240. name: "Side",
  18241. image: {
  18242. source: "./media/characters/desta/side.svg",
  18243. extra: 2579 / 2491,
  18244. bottom: 0.053
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Micro",
  18251. height: math.unit(6, "inches")
  18252. },
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(5 + 2 / 12, "feet"),
  18256. default: true
  18257. },
  18258. {
  18259. name: "Macro",
  18260. height: math.unit(62, "feet")
  18261. },
  18262. {
  18263. name: "Megamacro",
  18264. height: math.unit(1800, "feet")
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(10, "feet"),
  18273. weight: math.unit(700, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/storm-alystar/front.svg",
  18277. extra: 2112 / 1898,
  18278. bottom: 0.034
  18279. }
  18280. },
  18281. },
  18282. [
  18283. {
  18284. name: "Micro",
  18285. height: math.unit(3.5, "inches")
  18286. },
  18287. {
  18288. name: "Normal",
  18289. height: math.unit(10, "feet"),
  18290. default: true
  18291. },
  18292. {
  18293. name: "Macro",
  18294. height: math.unit(400, "feet")
  18295. },
  18296. {
  18297. name: "Deific",
  18298. height: math.unit(60, "miles")
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18304. {
  18305. front: {
  18306. height: math.unit(2.35, "meters"),
  18307. weight: math.unit(119, "kg"),
  18308. name: "Front",
  18309. image: {
  18310. source: "./media/characters/ilia/front.svg",
  18311. extra: 1285 / 1255,
  18312. bottom: 0.06
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Normal",
  18319. height: math.unit(2.35, "meters")
  18320. },
  18321. {
  18322. name: "Macro",
  18323. height: math.unit(140, "meters"),
  18324. default: true
  18325. },
  18326. {
  18327. name: "Megamacro",
  18328. height: math.unit(100, "miles")
  18329. },
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18334. {
  18335. front: {
  18336. height: math.unit(6 + 5 / 12, "feet"),
  18337. weight: math.unit(190, "lb"),
  18338. name: "Front",
  18339. image: {
  18340. source: "./media/characters/kingdead/front.svg",
  18341. extra: 1228 / 1177
  18342. }
  18343. },
  18344. },
  18345. [
  18346. {
  18347. name: "Micro",
  18348. height: math.unit(7, "inches")
  18349. },
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(6 + 5 / 12, "feet")
  18353. },
  18354. {
  18355. name: "Macro",
  18356. height: math.unit(150, "feet"),
  18357. default: true
  18358. },
  18359. {
  18360. name: "Megamacro",
  18361. height: math.unit(200, "miles")
  18362. },
  18363. ]
  18364. ))
  18365. characterMakers.push(() => makeCharacter(
  18366. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18367. {
  18368. front: {
  18369. height: math.unit(8, "feet"),
  18370. weight: math.unit(600, "lb"),
  18371. name: "Front",
  18372. image: {
  18373. source: "./media/characters/kyrehx/front.svg",
  18374. extra: 1195 / 1095,
  18375. bottom: 0.034
  18376. }
  18377. },
  18378. },
  18379. [
  18380. {
  18381. name: "Micro",
  18382. height: math.unit(2, "inches")
  18383. },
  18384. {
  18385. name: "Normal",
  18386. height: math.unit(8, "feet"),
  18387. default: true
  18388. },
  18389. {
  18390. name: "Macro",
  18391. height: math.unit(255, "feet")
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18400. weight: math.unit(184, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/xang/front.svg",
  18404. extra: 845 / 755
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18412. default: true
  18413. },
  18414. {
  18415. name: "Macro",
  18416. height: math.unit(0.935 * 146, "feet")
  18417. },
  18418. {
  18419. name: "Megamacro",
  18420. height: math.unit(0.935 * 3, "miles")
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18426. {
  18427. frontDressed: {
  18428. height: math.unit(5 + 7 / 12, "feet"),
  18429. weight: math.unit(140, "lb"),
  18430. name: "Front (Dressed)",
  18431. image: {
  18432. source: "./media/characters/doc-weardno/front-dressed.svg",
  18433. extra: 263 / 234
  18434. }
  18435. },
  18436. backDressed: {
  18437. height: math.unit(5 + 7 / 12, "feet"),
  18438. weight: math.unit(140, "lb"),
  18439. name: "Back (Dressed)",
  18440. image: {
  18441. source: "./media/characters/doc-weardno/back-dressed.svg",
  18442. extra: 266 / 238
  18443. }
  18444. },
  18445. front: {
  18446. height: math.unit(5 + 7 / 12, "feet"),
  18447. weight: math.unit(140, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/doc-weardno/front.svg",
  18451. extra: 254 / 233
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Micro",
  18458. height: math.unit(3, "inches")
  18459. },
  18460. {
  18461. name: "Normal",
  18462. height: math.unit(5 + 7 / 12, "feet"),
  18463. default: true
  18464. },
  18465. {
  18466. name: "Macro",
  18467. height: math.unit(25, "feet")
  18468. },
  18469. {
  18470. name: "Megamacro",
  18471. height: math.unit(2, "miles")
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18477. {
  18478. front: {
  18479. height: math.unit(6 + 2 / 12, "feet"),
  18480. weight: math.unit(153, "lb"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/seth-whilst/front.svg",
  18484. bottom: 0.07
  18485. }
  18486. },
  18487. },
  18488. [
  18489. {
  18490. name: "Micro",
  18491. height: math.unit(5, "inches")
  18492. },
  18493. {
  18494. name: "Normal",
  18495. height: math.unit(6 + 2 / 12, "feet"),
  18496. default: true
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18502. {
  18503. front: {
  18504. height: math.unit(3, "inches"),
  18505. weight: math.unit(8, "grams"),
  18506. name: "Front",
  18507. image: {
  18508. source: "./media/characters/pocket-jabari/front.svg",
  18509. extra: 1024 / 974,
  18510. bottom: 0.039
  18511. }
  18512. },
  18513. },
  18514. [
  18515. {
  18516. name: "Minimicro",
  18517. height: math.unit(8, "mm")
  18518. },
  18519. {
  18520. name: "Micro",
  18521. height: math.unit(3, "inches"),
  18522. default: true
  18523. },
  18524. {
  18525. name: "Normal",
  18526. height: math.unit(3, "feet")
  18527. },
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18532. {
  18533. front: {
  18534. height: math.unit(15, "feet"),
  18535. weight: math.unit(3280, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/sapphy/front.svg",
  18539. extra: 671 / 577,
  18540. bottom: 0.085
  18541. }
  18542. },
  18543. back: {
  18544. height: math.unit(15, "feet"),
  18545. weight: math.unit(3280, "lb"),
  18546. name: "Back",
  18547. image: {
  18548. source: "./media/characters/sapphy/back.svg",
  18549. extra: 631 / 607,
  18550. bottom: 0.045
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(15, "feet")
  18558. },
  18559. {
  18560. name: "Casual Macro",
  18561. height: math.unit(120, "feet")
  18562. },
  18563. {
  18564. name: "Macro",
  18565. height: math.unit(2150, "feet"),
  18566. default: true
  18567. },
  18568. {
  18569. name: "Megamacro",
  18570. height: math.unit(8, "miles")
  18571. },
  18572. {
  18573. name: "Galaxy Mom",
  18574. height: math.unit(6, "megalightyears")
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(6, "feet"),
  18583. weight: math.unit(170, "lb"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/kiro/front.svg",
  18587. extra: 1064 / 1012,
  18588. bottom: 0.052
  18589. }
  18590. },
  18591. },
  18592. [
  18593. {
  18594. name: "Micro",
  18595. height: math.unit(6, "inches")
  18596. },
  18597. {
  18598. name: "Normal",
  18599. height: math.unit(6, "feet"),
  18600. default: true
  18601. },
  18602. {
  18603. name: "Macro",
  18604. height: math.unit(72, "feet")
  18605. },
  18606. ]
  18607. ))
  18608. characterMakers.push(() => makeCharacter(
  18609. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18610. {
  18611. front: {
  18612. height: math.unit(5 + 9 / 12, "feet"),
  18613. weight: math.unit(175, "lb"),
  18614. name: "Front",
  18615. image: {
  18616. source: "./media/characters/irishfox/front.svg",
  18617. extra: 1912 / 1680,
  18618. bottom: 0.02
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Nano",
  18625. height: math.unit(1, "mm")
  18626. },
  18627. {
  18628. name: "Micro",
  18629. height: math.unit(2, "inches")
  18630. },
  18631. {
  18632. name: "Normal",
  18633. height: math.unit(5 + 9 / 12, "feet"),
  18634. default: true
  18635. },
  18636. {
  18637. name: "Macro",
  18638. height: math.unit(45, "feet")
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18644. {
  18645. front: {
  18646. height: math.unit(6 + 1 / 12, "feet"),
  18647. weight: math.unit(75, "lb"),
  18648. name: "Front",
  18649. image: {
  18650. source: "./media/characters/aronai-sieyes/front.svg",
  18651. extra: 1556 / 1480,
  18652. bottom: 0.015
  18653. }
  18654. },
  18655. side: {
  18656. height: math.unit(6 + 1 / 12, "feet"),
  18657. weight: math.unit(75, "lb"),
  18658. name: "Side",
  18659. image: {
  18660. source: "./media/characters/aronai-sieyes/side.svg",
  18661. extra: 1433 / 1390,
  18662. bottom: 0.0393
  18663. }
  18664. },
  18665. back: {
  18666. height: math.unit(6 + 1 / 12, "feet"),
  18667. weight: math.unit(75, "lb"),
  18668. name: "Back",
  18669. image: {
  18670. source: "./media/characters/aronai-sieyes/back.svg",
  18671. extra: 1544 / 1494,
  18672. bottom: 0.02
  18673. }
  18674. },
  18675. frontClothed: {
  18676. height: math.unit(6 + 1 / 12, "feet"),
  18677. weight: math.unit(75, "lb"),
  18678. name: "Front (Clothed)",
  18679. image: {
  18680. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18681. extra: 1582 / 1527
  18682. }
  18683. },
  18684. feral: {
  18685. height: math.unit(18, "feet"),
  18686. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18687. name: "Feral",
  18688. image: {
  18689. source: "./media/characters/aronai-sieyes/feral.svg",
  18690. extra: 1530 / 1240,
  18691. bottom: 0.035
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Micro",
  18698. height: math.unit(2, "inches")
  18699. },
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(6 + 1 / 12, "feet"),
  18703. default: true
  18704. }
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18709. {
  18710. front: {
  18711. height: math.unit(12, "feet"),
  18712. weight: math.unit(410, "kg"),
  18713. name: "Front",
  18714. image: {
  18715. source: "./media/characters/xuna/front.svg",
  18716. extra: 2184 / 1980
  18717. }
  18718. },
  18719. side: {
  18720. height: math.unit(12, "feet"),
  18721. weight: math.unit(410, "kg"),
  18722. name: "Side",
  18723. image: {
  18724. source: "./media/characters/xuna/side.svg",
  18725. extra: 2184 / 1980
  18726. }
  18727. },
  18728. back: {
  18729. height: math.unit(12, "feet"),
  18730. weight: math.unit(410, "kg"),
  18731. name: "Back",
  18732. image: {
  18733. source: "./media/characters/xuna/back.svg",
  18734. extra: 2184 / 1980
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Nano glow",
  18741. height: math.unit(10, "nm")
  18742. },
  18743. {
  18744. name: "Micro floof",
  18745. height: math.unit(0.3, "m")
  18746. },
  18747. {
  18748. name: "Huggable softy boi",
  18749. height: math.unit(3.6576, "m"),
  18750. default: true
  18751. },
  18752. {
  18753. name: "Admirable floof",
  18754. height: math.unit(80, "meters")
  18755. },
  18756. {
  18757. name: "Gentle macro",
  18758. height: math.unit(300, "meters")
  18759. },
  18760. {
  18761. name: "Very careful floof",
  18762. height: math.unit(3200, "meters")
  18763. },
  18764. {
  18765. name: "The mega floof",
  18766. height: math.unit(36000, "meters")
  18767. },
  18768. {
  18769. name: "Giga-fur-Wicker",
  18770. height: math.unit(4800000, "meters")
  18771. },
  18772. {
  18773. name: "Licky world",
  18774. height: math.unit(20000000, "meters")
  18775. },
  18776. {
  18777. name: "Floofy cyan sun",
  18778. height: math.unit(1500000000, "meters")
  18779. },
  18780. {
  18781. name: "Milky Wicker",
  18782. height: math.unit(1000000000000000000000, "meters")
  18783. },
  18784. {
  18785. name: "The observing Wicker",
  18786. height: math.unit(999999999999999999999999999, "meters")
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18792. {
  18793. front: {
  18794. height: math.unit(5 + 9 / 12, "feet"),
  18795. weight: math.unit(150, "lb"),
  18796. name: "Front",
  18797. image: {
  18798. source: "./media/characters/arokha-sieyes/front.svg",
  18799. extra: 1425 / 1284,
  18800. bottom: 0.05
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Normal",
  18807. height: math.unit(5 + 9 / 12, "feet")
  18808. },
  18809. {
  18810. name: "Macro",
  18811. height: math.unit(30, "meters"),
  18812. default: true
  18813. },
  18814. ]
  18815. ))
  18816. characterMakers.push(() => makeCharacter(
  18817. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18818. {
  18819. front: {
  18820. height: math.unit(6, "feet"),
  18821. weight: math.unit(180, "lb"),
  18822. name: "Front",
  18823. image: {
  18824. source: "./media/characters/arokh-sieyes/front.svg",
  18825. extra: 1830 / 1769,
  18826. bottom: 0.01
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Normal",
  18833. height: math.unit(6, "feet")
  18834. },
  18835. {
  18836. name: "Macro",
  18837. height: math.unit(30, "meters"),
  18838. default: true
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18844. {
  18845. side: {
  18846. height: math.unit(13 + 1 / 12, "feet"),
  18847. weight: math.unit(8.5, "tonnes"),
  18848. name: "Side",
  18849. image: {
  18850. source: "./media/characters/goldeneye/side.svg",
  18851. extra: 1182 / 778,
  18852. bottom: 0.067
  18853. }
  18854. },
  18855. paw: {
  18856. height: math.unit(3.4, "feet"),
  18857. name: "Paw",
  18858. image: {
  18859. source: "./media/characters/goldeneye/paw.svg"
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(13 + 1 / 12, "feet"),
  18867. default: true
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18873. {
  18874. front: {
  18875. height: math.unit(6 + 1 / 12, "feet"),
  18876. weight: math.unit(210, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/leonardo-lycheborne/front.svg",
  18880. extra: 390 / 365,
  18881. bottom: 0.032
  18882. }
  18883. },
  18884. side: {
  18885. height: math.unit(6 + 1 / 12, "feet"),
  18886. weight: math.unit(210, "lb"),
  18887. name: "Side",
  18888. image: {
  18889. source: "./media/characters/leonardo-lycheborne/side.svg",
  18890. extra: 390 / 365,
  18891. bottom: 0.005
  18892. }
  18893. },
  18894. back: {
  18895. height: math.unit(6 + 1 / 12, "feet"),
  18896. weight: math.unit(210, "lb"),
  18897. name: "Back",
  18898. image: {
  18899. source: "./media/characters/leonardo-lycheborne/back.svg",
  18900. extra: 392 / 366,
  18901. bottom: 0.01
  18902. }
  18903. },
  18904. hand: {
  18905. height: math.unit(1.08, "feet"),
  18906. name: "Hand",
  18907. image: {
  18908. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18909. }
  18910. },
  18911. foot: {
  18912. height: math.unit(1.32, "feet"),
  18913. name: "Foot",
  18914. image: {
  18915. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18916. }
  18917. },
  18918. were: {
  18919. height: math.unit(20, "feet"),
  18920. weight: math.unit(7800, "lb"),
  18921. name: "Were",
  18922. image: {
  18923. source: "./media/characters/leonardo-lycheborne/were.svg",
  18924. extra: 308 / 294,
  18925. bottom: 0.048
  18926. }
  18927. },
  18928. feral: {
  18929. height: math.unit(7.5, "feet"),
  18930. weight: math.unit(600, "lb"),
  18931. name: "Feral",
  18932. image: {
  18933. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18934. extra: 210 / 186,
  18935. bottom: 0.108
  18936. }
  18937. },
  18938. taur: {
  18939. height: math.unit(11, "feet"),
  18940. weight: math.unit(3300, "lb"),
  18941. name: "Taur",
  18942. image: {
  18943. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18944. extra: 320 / 303,
  18945. bottom: 0.025
  18946. }
  18947. },
  18948. barghest: {
  18949. height: math.unit(11, "feet"),
  18950. weight: math.unit(1300, "lb"),
  18951. name: "Barghest",
  18952. image: {
  18953. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18954. extra: 323 / 302,
  18955. bottom: 0.027
  18956. }
  18957. },
  18958. dick: {
  18959. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18960. name: "Dick",
  18961. image: {
  18962. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18963. }
  18964. },
  18965. dickWere: {
  18966. height: math.unit((20) / 3.8, "feet"),
  18967. name: "Dick (Were)",
  18968. image: {
  18969. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(6 + 1 / 12, "feet"),
  18977. default: true
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18983. {
  18984. front: {
  18985. height: math.unit(10, "feet"),
  18986. weight: math.unit(350, "lb"),
  18987. name: "Front",
  18988. image: {
  18989. source: "./media/characters/jet/front.svg",
  18990. extra: 2050 / 1980,
  18991. bottom: 0.013
  18992. }
  18993. },
  18994. back: {
  18995. height: math.unit(10, "feet"),
  18996. weight: math.unit(350, "lb"),
  18997. name: "Back",
  18998. image: {
  18999. source: "./media/characters/jet/back.svg",
  19000. extra: 2050 / 1980,
  19001. bottom: 0.013
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Micro",
  19008. height: math.unit(6, "inches")
  19009. },
  19010. {
  19011. name: "Normal",
  19012. height: math.unit(10, "feet"),
  19013. default: true
  19014. },
  19015. {
  19016. name: "Macro",
  19017. height: math.unit(100, "feet")
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19023. {
  19024. front: {
  19025. height: math.unit(15, "feet"),
  19026. weight: math.unit(2800, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/tanarath/front.svg",
  19030. extra: 2392 / 2220,
  19031. bottom: 0.03
  19032. }
  19033. },
  19034. back: {
  19035. height: math.unit(15, "feet"),
  19036. weight: math.unit(2800, "lb"),
  19037. name: "Back",
  19038. image: {
  19039. source: "./media/characters/tanarath/back.svg",
  19040. extra: 2392 / 2220,
  19041. bottom: 0.03
  19042. }
  19043. },
  19044. },
  19045. [
  19046. {
  19047. name: "Normal",
  19048. height: math.unit(15, "feet"),
  19049. default: true
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(7 + 1 / 12, "feet"),
  19058. weight: math.unit(175, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/patty-cattybatty/front.svg",
  19062. extra: 908 / 874,
  19063. bottom: 0.025
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Micro",
  19070. height: math.unit(1, "inch")
  19071. },
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(7 + 1 / 12, "feet")
  19075. },
  19076. {
  19077. name: "Mini Macro",
  19078. height: math.unit(155, "feet")
  19079. },
  19080. {
  19081. name: "Macro",
  19082. height: math.unit(1077, "feet")
  19083. },
  19084. {
  19085. name: "Mega Macro",
  19086. height: math.unit(47650, "feet"),
  19087. default: true
  19088. },
  19089. {
  19090. name: "Giga Macro",
  19091. height: math.unit(440, "miles")
  19092. },
  19093. {
  19094. name: "Tera Macro",
  19095. height: math.unit(8700, "miles")
  19096. },
  19097. {
  19098. name: "Planetary Macro",
  19099. height: math.unit(32700, "miles")
  19100. },
  19101. {
  19102. name: "Solar Macro",
  19103. height: math.unit(550000, "miles")
  19104. },
  19105. {
  19106. name: "Celestial Macro",
  19107. height: math.unit(2.5, "AU")
  19108. },
  19109. ]
  19110. ))
  19111. characterMakers.push(() => makeCharacter(
  19112. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19113. {
  19114. front: {
  19115. height: math.unit(4 + 5 / 12, "feet"),
  19116. weight: math.unit(90, "lb"),
  19117. name: "Front",
  19118. image: {
  19119. source: "./media/characters/cappu/front.svg",
  19120. extra: 1247 / 1152,
  19121. bottom: 0.012
  19122. }
  19123. },
  19124. },
  19125. [
  19126. {
  19127. name: "Normal",
  19128. height: math.unit(4 + 5 / 12, "feet"),
  19129. default: true
  19130. },
  19131. ]
  19132. ))
  19133. characterMakers.push(() => makeCharacter(
  19134. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19135. {
  19136. frontDressed: {
  19137. height: math.unit(70, "cm"),
  19138. weight: math.unit(6, "kg"),
  19139. name: "Front (Dressed)",
  19140. image: {
  19141. source: "./media/characters/sebi/front-dressed.svg",
  19142. extra: 713.5 / 686.5,
  19143. bottom: 0.003
  19144. }
  19145. },
  19146. front: {
  19147. height: math.unit(70, "cm"),
  19148. weight: math.unit(5, "kg"),
  19149. name: "Front",
  19150. image: {
  19151. source: "./media/characters/sebi/front.svg",
  19152. extra: 713.5 / 686.5,
  19153. bottom: 0.003
  19154. }
  19155. }
  19156. },
  19157. [
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(70, "cm"),
  19161. default: true
  19162. },
  19163. {
  19164. name: "Macro",
  19165. height: math.unit(8, "meters")
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(6, "feet"),
  19174. weight: math.unit(150, "lb"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/typhek/front.svg",
  19178. extra: 1948 / 1929,
  19179. bottom: 0.025
  19180. }
  19181. },
  19182. side: {
  19183. height: math.unit(6, "feet"),
  19184. weight: math.unit(150, "lb"),
  19185. name: "Side",
  19186. image: {
  19187. source: "./media/characters/typhek/side.svg",
  19188. extra: 2034 / 2010,
  19189. bottom: 0.003
  19190. }
  19191. },
  19192. back: {
  19193. height: math.unit(6, "feet"),
  19194. weight: math.unit(150, "lb"),
  19195. name: "Back",
  19196. image: {
  19197. source: "./media/characters/typhek/back.svg",
  19198. extra: 2005 / 1978,
  19199. bottom: 0.004
  19200. }
  19201. },
  19202. palm: {
  19203. height: math.unit(1.2, "feet"),
  19204. name: "Palm",
  19205. image: {
  19206. source: "./media/characters/typhek/palm.svg"
  19207. }
  19208. },
  19209. fist: {
  19210. height: math.unit(1.1, "feet"),
  19211. name: "Fist",
  19212. image: {
  19213. source: "./media/characters/typhek/fist.svg"
  19214. }
  19215. },
  19216. foot: {
  19217. height: math.unit(1.57, "feet"),
  19218. name: "Foot",
  19219. image: {
  19220. source: "./media/characters/typhek/foot.svg"
  19221. }
  19222. },
  19223. sole: {
  19224. height: math.unit(2.05, "feet"),
  19225. name: "Sole",
  19226. image: {
  19227. source: "./media/characters/typhek/sole.svg"
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Macro",
  19234. height: math.unit(40, "stories"),
  19235. default: true
  19236. },
  19237. {
  19238. name: "Megamacro",
  19239. height: math.unit(1, "mile")
  19240. },
  19241. {
  19242. name: "Gigamacro",
  19243. height: math.unit(4000, "solarradii")
  19244. },
  19245. {
  19246. name: "Universal",
  19247. height: math.unit(1.1, "universes")
  19248. }
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19253. {
  19254. side: {
  19255. height: math.unit(5 + 7 / 12, "feet"),
  19256. weight: math.unit(150, "lb"),
  19257. name: "Side",
  19258. image: {
  19259. source: "./media/characters/kassy/side.svg",
  19260. extra: 1280 / 1225,
  19261. bottom: 0.002
  19262. }
  19263. },
  19264. front: {
  19265. height: math.unit(5 + 7 / 12, "feet"),
  19266. weight: math.unit(150, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/kassy/front.svg",
  19270. extra: 1280 / 1225,
  19271. bottom: 0.025
  19272. }
  19273. },
  19274. back: {
  19275. height: math.unit(5 + 7 / 12, "feet"),
  19276. weight: math.unit(150, "lb"),
  19277. name: "Back",
  19278. image: {
  19279. source: "./media/characters/kassy/back.svg",
  19280. extra: 1280 / 1225,
  19281. bottom: 0.002
  19282. }
  19283. },
  19284. foot: {
  19285. height: math.unit(1.266, "feet"),
  19286. name: "Foot",
  19287. image: {
  19288. source: "./media/characters/kassy/foot.svg"
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(5 + 7 / 12, "feet")
  19296. },
  19297. {
  19298. name: "Macro",
  19299. height: math.unit(137, "feet"),
  19300. default: true
  19301. },
  19302. {
  19303. name: "Megamacro",
  19304. height: math.unit(1, "mile")
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19310. {
  19311. front: {
  19312. height: math.unit(6 + 1 / 12, "feet"),
  19313. weight: math.unit(200, "lb"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/neil/front.svg",
  19317. extra: 1326 / 1250,
  19318. bottom: 0.023
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Normal",
  19325. height: math.unit(6 + 1 / 12, "feet"),
  19326. default: true
  19327. },
  19328. {
  19329. name: "Macro",
  19330. height: math.unit(200, "feet")
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19336. {
  19337. front: {
  19338. height: math.unit(5 + 9 / 12, "feet"),
  19339. weight: math.unit(190, "lb"),
  19340. name: "Front",
  19341. image: {
  19342. source: "./media/characters/atticus/front.svg",
  19343. extra: 2934 / 2785,
  19344. bottom: 0.025
  19345. }
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(5 + 9 / 12, "feet"),
  19352. default: true
  19353. },
  19354. {
  19355. name: "Macro",
  19356. height: math.unit(180, "feet")
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19362. {
  19363. side: {
  19364. height: math.unit(9, "feet"),
  19365. weight: math.unit(650, "lb"),
  19366. name: "Side",
  19367. image: {
  19368. source: "./media/characters/milo/side.svg",
  19369. extra: 2644 / 2310,
  19370. bottom: 0.032
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(9, "feet"),
  19378. default: true
  19379. },
  19380. {
  19381. name: "Macro",
  19382. height: math.unit(300, "feet")
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19388. {
  19389. side: {
  19390. height: math.unit(8, "meters"),
  19391. weight: math.unit(90000, "kg"),
  19392. name: "Side",
  19393. image: {
  19394. source: "./media/characters/ijzer/side.svg",
  19395. extra: 2756 / 1600,
  19396. bottom: 0.01
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Small",
  19403. height: math.unit(3, "meters")
  19404. },
  19405. {
  19406. name: "Normal",
  19407. height: math.unit(8, "meters"),
  19408. default: true
  19409. },
  19410. {
  19411. name: "Normal+",
  19412. height: math.unit(10, "meters")
  19413. },
  19414. {
  19415. name: "Bigger",
  19416. height: math.unit(24, "meters")
  19417. },
  19418. {
  19419. name: "Huge",
  19420. height: math.unit(80, "meters")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(6 + 2 / 12, "feet"),
  19429. weight: math.unit(153, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/luca-cervicum/front.svg",
  19433. extra: 370 / 327,
  19434. bottom: 0.015
  19435. }
  19436. },
  19437. back: {
  19438. height: math.unit(6 + 2 / 12, "feet"),
  19439. weight: math.unit(153, "lb"),
  19440. name: "Back",
  19441. image: {
  19442. source: "./media/characters/luca-cervicum/back.svg",
  19443. extra: 367 / 333,
  19444. bottom: 0.005
  19445. }
  19446. },
  19447. frontGear: {
  19448. height: math.unit(6 + 2 / 12, "feet"),
  19449. weight: math.unit(173, "lb"),
  19450. name: "Front (Gear)",
  19451. image: {
  19452. source: "./media/characters/luca-cervicum/front-gear.svg",
  19453. extra: 377 / 333,
  19454. bottom: 0.006
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(6 + 2 / 12, "feet"),
  19462. default: true
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19468. {
  19469. front: {
  19470. height: math.unit(6 + 1 / 12, "feet"),
  19471. weight: math.unit(304, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/oliver/front.svg",
  19475. extra: 157 / 143,
  19476. bottom: 0.08
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(6 + 1 / 12, "feet"),
  19484. default: true
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19490. {
  19491. front: {
  19492. height: math.unit(5 + 7 / 12, "feet"),
  19493. weight: math.unit(140, "lb"),
  19494. name: "Front",
  19495. image: {
  19496. source: "./media/characters/shane/front.svg",
  19497. extra: 304 / 289,
  19498. bottom: 0.005
  19499. }
  19500. },
  19501. },
  19502. [
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(5 + 7 / 12, "feet"),
  19506. default: true
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19512. {
  19513. front: {
  19514. height: math.unit(5 + 9 / 12, "feet"),
  19515. weight: math.unit(178, "lb"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/shin/front.svg",
  19519. extra: 159 / 151,
  19520. bottom: 0.015
  19521. }
  19522. },
  19523. },
  19524. [
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(5 + 9 / 12, "feet"),
  19528. default: true
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19534. {
  19535. front: {
  19536. height: math.unit(5 + 10 / 12, "feet"),
  19537. weight: math.unit(168, "lb"),
  19538. name: "Front",
  19539. image: {
  19540. source: "./media/characters/xerxes/front.svg",
  19541. extra: 282 / 260,
  19542. bottom: 0.045
  19543. }
  19544. },
  19545. },
  19546. [
  19547. {
  19548. name: "Normal",
  19549. height: math.unit(5 + 10 / 12, "feet"),
  19550. default: true
  19551. },
  19552. ]
  19553. ))
  19554. characterMakers.push(() => makeCharacter(
  19555. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19556. {
  19557. front: {
  19558. height: math.unit(6 + 7 / 12, "feet"),
  19559. weight: math.unit(208, "lb"),
  19560. name: "Front",
  19561. image: {
  19562. source: "./media/characters/chaska/front.svg",
  19563. extra: 332 / 319,
  19564. bottom: 0.015
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(6 + 7 / 12, "feet"),
  19572. default: true
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(5 + 8 / 12, "feet"),
  19581. weight: math.unit(208, "lb"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/enuk/front.svg",
  19585. extra: 437 / 406,
  19586. bottom: 0.02
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Normal",
  19593. height: math.unit(5 + 8 / 12, "feet"),
  19594. default: true
  19595. },
  19596. ]
  19597. ))
  19598. characterMakers.push(() => makeCharacter(
  19599. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19600. {
  19601. front: {
  19602. height: math.unit(5 + 10 / 12, "feet"),
  19603. weight: math.unit(252, "lb"),
  19604. name: "Front",
  19605. image: {
  19606. source: "./media/characters/bruun/front.svg",
  19607. extra: 197 / 187,
  19608. bottom: 0.012
  19609. }
  19610. },
  19611. },
  19612. [
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(5 + 10 / 12, "feet"),
  19616. default: true
  19617. },
  19618. ]
  19619. ))
  19620. characterMakers.push(() => makeCharacter(
  19621. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19622. {
  19623. front: {
  19624. height: math.unit(6 + 10 / 12, "feet"),
  19625. weight: math.unit(255, "lb"),
  19626. name: "Front",
  19627. image: {
  19628. source: "./media/characters/alexeev/front.svg",
  19629. extra: 213 / 200,
  19630. bottom: 0.05
  19631. }
  19632. },
  19633. },
  19634. [
  19635. {
  19636. name: "Normal",
  19637. height: math.unit(6 + 10 / 12, "feet"),
  19638. default: true
  19639. },
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19644. {
  19645. front: {
  19646. height: math.unit(2 + 8 / 12, "feet"),
  19647. weight: math.unit(22, "lb"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/evelyn/front.svg",
  19651. extra: 208 / 180
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Normal",
  19658. height: math.unit(2 + 8 / 12, "feet"),
  19659. default: true
  19660. },
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19665. {
  19666. front: {
  19667. height: math.unit(5 + 9 / 12, "feet"),
  19668. weight: math.unit(139, "lb"),
  19669. name: "Front",
  19670. image: {
  19671. source: "./media/characters/inca/front.svg",
  19672. extra: 294 / 291,
  19673. bottom: 0.03
  19674. }
  19675. },
  19676. },
  19677. [
  19678. {
  19679. name: "Normal",
  19680. height: math.unit(5 + 9 / 12, "feet"),
  19681. default: true
  19682. },
  19683. ]
  19684. ))
  19685. characterMakers.push(() => makeCharacter(
  19686. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19687. {
  19688. front: {
  19689. height: math.unit(5 + 1 / 12, "feet"),
  19690. weight: math.unit(84, "lb"),
  19691. name: "Front",
  19692. image: {
  19693. source: "./media/characters/magdalene/front.svg",
  19694. extra: 293 / 273
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(5 + 1 / 12, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(6 + 3 / 12, "feet"),
  19711. weight: math.unit(185, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/mera/front.svg",
  19715. extra: 291 / 277,
  19716. bottom: 0.03
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(6 + 3 / 12, "feet"),
  19724. default: true
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19730. {
  19731. front: {
  19732. height: math.unit(6 + 7 / 12, "feet"),
  19733. weight: math.unit(160, "lb"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/ceres/front.svg",
  19737. extra: 1023 / 950,
  19738. bottom: 0.027
  19739. }
  19740. },
  19741. back: {
  19742. height: math.unit(6 + 7 / 12, "feet"),
  19743. weight: math.unit(160, "lb"),
  19744. name: "Back",
  19745. image: {
  19746. source: "./media/characters/ceres/back.svg",
  19747. extra: 1023 / 950
  19748. }
  19749. },
  19750. },
  19751. [
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(6 + 7 / 12, "feet"),
  19755. default: true
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19761. {
  19762. front: {
  19763. height: math.unit(5 + 10 / 12, "feet"),
  19764. weight: math.unit(150, "lb"),
  19765. name: "Front",
  19766. image: {
  19767. source: "./media/characters/kris/front.svg",
  19768. extra: 885 / 803,
  19769. bottom: 0.03
  19770. }
  19771. },
  19772. },
  19773. [
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(5 + 10 / 12, "feet"),
  19777. default: true
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19783. {
  19784. front: {
  19785. height: math.unit(7, "feet"),
  19786. weight: math.unit(120, "kg"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/taluthus/front.svg",
  19790. extra: 903 / 833,
  19791. bottom: 0.015
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Normal",
  19798. height: math.unit(7, "feet"),
  19799. default: true
  19800. },
  19801. {
  19802. name: "Macro",
  19803. height: math.unit(300, "feet")
  19804. },
  19805. ]
  19806. ))
  19807. characterMakers.push(() => makeCharacter(
  19808. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19809. {
  19810. front: {
  19811. height: math.unit(5 + 9 / 12, "feet"),
  19812. weight: math.unit(145, "lb"),
  19813. name: "Front",
  19814. image: {
  19815. source: "./media/characters/dawn/front.svg",
  19816. extra: 2094 / 2016,
  19817. bottom: 0.025
  19818. }
  19819. },
  19820. back: {
  19821. height: math.unit(5 + 9 / 12, "feet"),
  19822. weight: math.unit(160, "lb"),
  19823. name: "Back",
  19824. image: {
  19825. source: "./media/characters/dawn/back.svg",
  19826. extra: 2112 / 2080,
  19827. bottom: 0.005
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(6 + 7 / 12, "feet"),
  19835. default: true
  19836. },
  19837. ]
  19838. ))
  19839. characterMakers.push(() => makeCharacter(
  19840. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19841. {
  19842. anthro: {
  19843. height: math.unit(8 + 3 / 12, "feet"),
  19844. weight: math.unit(450, "lb"),
  19845. name: "Anthro",
  19846. image: {
  19847. source: "./media/characters/arador/anthro.svg",
  19848. extra: 1835 / 1718,
  19849. bottom: 0.025
  19850. }
  19851. },
  19852. feral: {
  19853. height: math.unit(4, "feet"),
  19854. weight: math.unit(200, "lb"),
  19855. name: "Feral",
  19856. image: {
  19857. source: "./media/characters/arador/feral.svg",
  19858. extra: 1683 / 1514,
  19859. bottom: 0.07
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(8 + 3 / 12, "feet")
  19867. },
  19868. {
  19869. name: "Macro",
  19870. height: math.unit(82.5, "feet"),
  19871. default: true
  19872. },
  19873. ]
  19874. ))
  19875. characterMakers.push(() => makeCharacter(
  19876. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19877. {
  19878. front: {
  19879. height: math.unit(5 + 10 / 12, "feet"),
  19880. weight: math.unit(125, "lb"),
  19881. name: "Front",
  19882. image: {
  19883. source: "./media/characters/dharsi/front.svg",
  19884. extra: 716 / 630,
  19885. bottom: 0.035
  19886. }
  19887. },
  19888. },
  19889. [
  19890. {
  19891. name: "Nano",
  19892. height: math.unit(100, "nm")
  19893. },
  19894. {
  19895. name: "Micro",
  19896. height: math.unit(2, "inches")
  19897. },
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(5 + 10 / 12, "feet"),
  19901. default: true
  19902. },
  19903. {
  19904. name: "Macro",
  19905. height: math.unit(1000, "feet")
  19906. },
  19907. {
  19908. name: "Megamacro",
  19909. height: math.unit(10, "miles")
  19910. },
  19911. {
  19912. name: "Gigamacro",
  19913. height: math.unit(3000, "miles")
  19914. },
  19915. {
  19916. name: "Teramacro",
  19917. height: math.unit(500000, "miles")
  19918. },
  19919. {
  19920. name: "Teramacro+",
  19921. height: math.unit(30, "galaxies")
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(6, "feet"),
  19930. weight: math.unit(150, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/deathy/front.svg",
  19934. extra: 1552 / 1463,
  19935. bottom: 0.025
  19936. }
  19937. },
  19938. side: {
  19939. height: math.unit(6, "feet"),
  19940. weight: math.unit(150, "lb"),
  19941. name: "Side",
  19942. image: {
  19943. source: "./media/characters/deathy/side.svg",
  19944. extra: 1604 / 1455,
  19945. bottom: 0.025
  19946. }
  19947. },
  19948. back: {
  19949. height: math.unit(6, "feet"),
  19950. weight: math.unit(150, "lb"),
  19951. name: "Back",
  19952. image: {
  19953. source: "./media/characters/deathy/back.svg",
  19954. extra: 1580 / 1463,
  19955. bottom: 0.005
  19956. }
  19957. },
  19958. },
  19959. [
  19960. {
  19961. name: "Micro",
  19962. height: math.unit(5, "millimeters")
  19963. },
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(6 + 5 / 12, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19973. {
  19974. front: {
  19975. height: math.unit(16, "feet"),
  19976. weight: math.unit(4000, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/juniper/front.svg",
  19980. bottom: 0.04
  19981. }
  19982. },
  19983. },
  19984. [
  19985. {
  19986. name: "Normal",
  19987. height: math.unit(16, "feet"),
  19988. default: true
  19989. },
  19990. ]
  19991. ))
  19992. characterMakers.push(() => makeCharacter(
  19993. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19994. {
  19995. front: {
  19996. height: math.unit(6, "feet"),
  19997. weight: math.unit(150, "lb"),
  19998. name: "Front",
  19999. image: {
  20000. source: "./media/characters/hipster/front.svg",
  20001. extra: 1312 / 1209,
  20002. bottom: 0.025
  20003. }
  20004. },
  20005. back: {
  20006. height: math.unit(6, "feet"),
  20007. weight: math.unit(150, "lb"),
  20008. name: "Back",
  20009. image: {
  20010. source: "./media/characters/hipster/back.svg",
  20011. extra: 1281 / 1196,
  20012. bottom: 0.01
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Micro",
  20019. height: math.unit(1, "mm")
  20020. },
  20021. {
  20022. name: "Normal",
  20023. height: math.unit(4, "inches"),
  20024. default: true
  20025. },
  20026. {
  20027. name: "Macro",
  20028. height: math.unit(500, "feet")
  20029. },
  20030. {
  20031. name: "Megamacro",
  20032. height: math.unit(1000, "miles")
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20038. {
  20039. front: {
  20040. height: math.unit(6, "feet"),
  20041. weight: math.unit(150, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/tendirmuldr/front.svg",
  20045. extra: 1878 / 1772,
  20046. bottom: 0.015
  20047. }
  20048. },
  20049. },
  20050. [
  20051. {
  20052. name: "Megamacro",
  20053. height: math.unit(1500, "miles"),
  20054. default: true
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20060. {
  20061. front: {
  20062. height: math.unit(14, "feet"),
  20063. weight: math.unit(12000, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/mort/front.svg",
  20067. extra: 365 / 318,
  20068. bottom: 0.01
  20069. }
  20070. },
  20071. side: {
  20072. height: math.unit(14, "feet"),
  20073. weight: math.unit(12000, "lb"),
  20074. name: "Side",
  20075. image: {
  20076. source: "./media/characters/mort/side.svg",
  20077. extra: 365 / 318,
  20078. bottom: 0.052
  20079. },
  20080. default: true
  20081. },
  20082. back: {
  20083. height: math.unit(14, "feet"),
  20084. weight: math.unit(12000, "lb"),
  20085. name: "Back",
  20086. image: {
  20087. source: "./media/characters/mort/back.svg",
  20088. extra: 371 / 332,
  20089. bottom: 0.18
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(14, "feet"),
  20097. default: true
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20103. {
  20104. front: {
  20105. height: math.unit(8, "feet"),
  20106. weight: math.unit(1, "ton"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/lycoa/front.svg",
  20110. extra: 1875 / 1789,
  20111. bottom: 0.022
  20112. }
  20113. },
  20114. back: {
  20115. height: math.unit(8, "feet"),
  20116. weight: math.unit(1, "ton"),
  20117. name: "Back",
  20118. image: {
  20119. source: "./media/characters/lycoa/back.svg",
  20120. extra: 1835 / 1781,
  20121. bottom: 0.03
  20122. }
  20123. },
  20124. head: {
  20125. height: math.unit(2.1, "feet"),
  20126. name: "Head",
  20127. image: {
  20128. source: "./media/characters/lycoa/head.svg"
  20129. }
  20130. },
  20131. tailmaw: {
  20132. height: math.unit(1.9, "feet"),
  20133. name: "Tailmaw",
  20134. image: {
  20135. source: "./media/characters/lycoa/tailmaw.svg"
  20136. }
  20137. },
  20138. tentacles: {
  20139. height: math.unit(2.1, "feet"),
  20140. name: "Tentacles",
  20141. image: {
  20142. source: "./media/characters/lycoa/tentacles.svg"
  20143. }
  20144. },
  20145. dick: {
  20146. height: math.unit(1.73, "feet"),
  20147. name: "Dick",
  20148. image: {
  20149. source: "./media/characters/lycoa/dick.svg"
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Normal",
  20156. height: math.unit(8, "feet"),
  20157. default: true
  20158. },
  20159. {
  20160. name: "Macro",
  20161. height: math.unit(30, "feet")
  20162. },
  20163. ]
  20164. ))
  20165. characterMakers.push(() => makeCharacter(
  20166. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20167. {
  20168. front: {
  20169. height: math.unit(4 + 2 / 12, "feet"),
  20170. weight: math.unit(70, "lb"),
  20171. name: "Front",
  20172. image: {
  20173. source: "./media/characters/naldara/front.svg",
  20174. extra: 841 / 720,
  20175. bottom: 0.04
  20176. }
  20177. },
  20178. naga: {
  20179. height: math.unit(23, "feet"),
  20180. weight: math.unit(15000, "kg"),
  20181. name: "Naga",
  20182. image: {
  20183. source: "./media/characters/naldara/naga.svg",
  20184. extra: 3290 / 2959,
  20185. bottom: 124 / 3432
  20186. }
  20187. },
  20188. },
  20189. [
  20190. {
  20191. name: "Normal",
  20192. height: math.unit(4 + 2 / 12, "feet"),
  20193. default: true
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20199. {
  20200. front: {
  20201. height: math.unit(13 + 7 / 12, "feet"),
  20202. weight: math.unit(1500, "lb"),
  20203. name: "Front",
  20204. image: {
  20205. source: "./media/characters/briar/front.svg",
  20206. extra: 626 / 596,
  20207. bottom: 0.08
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(13 + 7 / 12, "feet"),
  20215. default: true
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20221. {
  20222. side: {
  20223. height: math.unit(10, "feet"),
  20224. weight: math.unit(500, "lb"),
  20225. name: "Side",
  20226. image: {
  20227. source: "./media/characters/vanguard/side.svg",
  20228. extra: 502 / 425,
  20229. bottom: 0.087
  20230. }
  20231. },
  20232. },
  20233. [
  20234. {
  20235. name: "Normal",
  20236. height: math.unit(10, "feet"),
  20237. default: true
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(7.5, "feet"),
  20246. weight: math.unit(2, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/artemis/front.svg",
  20250. extra: 1192 / 1075,
  20251. bottom: 0.07
  20252. }
  20253. },
  20254. frontNsfw: {
  20255. height: math.unit(7.5, "feet"),
  20256. weight: math.unit(2, "lb"),
  20257. name: "Front (NSFW)",
  20258. image: {
  20259. source: "./media/characters/artemis/front-nsfw.svg",
  20260. extra: 1192 / 1075,
  20261. bottom: 0.07
  20262. }
  20263. },
  20264. frontNsfwer: {
  20265. height: math.unit(7.5, "feet"),
  20266. weight: math.unit(2, "lb"),
  20267. name: "Front (NSFW-er)",
  20268. image: {
  20269. source: "./media/characters/artemis/front-nsfwer.svg",
  20270. extra: 1192 / 1075,
  20271. bottom: 0.07
  20272. }
  20273. },
  20274. side: {
  20275. height: math.unit(7.5, "feet"),
  20276. weight: math.unit(2, "lb"),
  20277. name: "Side",
  20278. image: {
  20279. source: "./media/characters/artemis/side.svg",
  20280. extra: 1192 / 1075,
  20281. bottom: 0.07
  20282. }
  20283. },
  20284. sideNsfw: {
  20285. height: math.unit(7.5, "feet"),
  20286. weight: math.unit(2, "lb"),
  20287. name: "Side (NSFW)",
  20288. image: {
  20289. source: "./media/characters/artemis/side-nsfw.svg",
  20290. extra: 1192 / 1075,
  20291. bottom: 0.07
  20292. }
  20293. },
  20294. sideNsfwer: {
  20295. height: math.unit(7.5, "feet"),
  20296. weight: math.unit(2, "lb"),
  20297. name: "Side (NSFW-er)",
  20298. image: {
  20299. source: "./media/characters/artemis/side-nsfwer.svg",
  20300. extra: 1192 / 1075,
  20301. bottom: 0.07
  20302. }
  20303. },
  20304. maw: {
  20305. height: math.unit(1.1, "feet"),
  20306. name: "Maw",
  20307. image: {
  20308. source: "./media/characters/artemis/maw.svg"
  20309. }
  20310. },
  20311. stomach: {
  20312. height: math.unit(0.95, "feet"),
  20313. name: "Stomach",
  20314. image: {
  20315. source: "./media/characters/artemis/stomach.svg"
  20316. }
  20317. },
  20318. dickCanine: {
  20319. height: math.unit(1, "feet"),
  20320. name: "Dick (Canine)",
  20321. image: {
  20322. source: "./media/characters/artemis/dick-canine.svg"
  20323. }
  20324. },
  20325. dickEquine: {
  20326. height: math.unit(0.85, "feet"),
  20327. name: "Dick (Equine)",
  20328. image: {
  20329. source: "./media/characters/artemis/dick-equine.svg"
  20330. }
  20331. },
  20332. dickExotic: {
  20333. height: math.unit(0.85, "feet"),
  20334. name: "Dick (Exotic)",
  20335. image: {
  20336. source: "./media/characters/artemis/dick-exotic.svg"
  20337. }
  20338. },
  20339. },
  20340. [
  20341. {
  20342. name: "Normal",
  20343. height: math.unit(7.5, "feet"),
  20344. default: true
  20345. },
  20346. {
  20347. name: "Enlarged",
  20348. height: math.unit(12, "feet")
  20349. },
  20350. ]
  20351. ))
  20352. characterMakers.push(() => makeCharacter(
  20353. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20354. {
  20355. front: {
  20356. height: math.unit(5 + 3 / 12, "feet"),
  20357. weight: math.unit(160, "lb"),
  20358. name: "Front",
  20359. image: {
  20360. source: "./media/characters/kira/front.svg",
  20361. extra: 906 / 786,
  20362. bottom: 0.01
  20363. }
  20364. },
  20365. back: {
  20366. height: math.unit(5 + 3 / 12, "feet"),
  20367. weight: math.unit(160, "lb"),
  20368. name: "Back",
  20369. image: {
  20370. source: "./media/characters/kira/back.svg",
  20371. extra: 882 / 757,
  20372. bottom: 0.005
  20373. }
  20374. },
  20375. frontDressed: {
  20376. height: math.unit(5 + 3 / 12, "feet"),
  20377. weight: math.unit(160, "lb"),
  20378. name: "Front (Dressed)",
  20379. image: {
  20380. source: "./media/characters/kira/front-dressed.svg",
  20381. extra: 906 / 786,
  20382. bottom: 0.01
  20383. }
  20384. },
  20385. beans: {
  20386. height: math.unit(0.92, "feet"),
  20387. name: "Beans",
  20388. image: {
  20389. source: "./media/characters/kira/beans.svg"
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(5 + 3 / 12, "feet"),
  20397. default: true
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20403. {
  20404. front: {
  20405. height: math.unit(5 + 4 / 12, "feet"),
  20406. weight: math.unit(145, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/scramble/front.svg",
  20410. extra: 763 / 727,
  20411. bottom: 0.05
  20412. }
  20413. },
  20414. back: {
  20415. height: math.unit(5 + 4 / 12, "feet"),
  20416. weight: math.unit(145, "lb"),
  20417. name: "Back",
  20418. image: {
  20419. source: "./media/characters/scramble/back.svg",
  20420. extra: 826 / 737,
  20421. bottom: 0.002
  20422. }
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(5 + 4 / 12, "feet"),
  20429. default: true
  20430. },
  20431. ]
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20435. {
  20436. side: {
  20437. height: math.unit(6 + 2 / 12, "feet"),
  20438. weight: math.unit(190, "lb"),
  20439. name: "Side",
  20440. image: {
  20441. source: "./media/characters/biscuit/side.svg",
  20442. extra: 858 / 791,
  20443. bottom: 0.044
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(6 + 2 / 12, "feet"),
  20451. default: true
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20457. {
  20458. front: {
  20459. height: math.unit(5 + 2 / 12, "feet"),
  20460. weight: math.unit(120, "lb"),
  20461. name: "Front",
  20462. image: {
  20463. source: "./media/characters/poffin/front.svg",
  20464. extra: 786 / 680,
  20465. bottom: 0.005
  20466. }
  20467. },
  20468. },
  20469. [
  20470. {
  20471. name: "Normal",
  20472. height: math.unit(5 + 2 / 12, "feet"),
  20473. default: true
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(6 + 3 / 12, "feet"),
  20482. weight: math.unit(519, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/dhari/front.svg",
  20486. extra: 1048 / 946,
  20487. bottom: 0.015
  20488. }
  20489. },
  20490. back: {
  20491. height: math.unit(6 + 3 / 12, "feet"),
  20492. weight: math.unit(519, "lb"),
  20493. name: "Back",
  20494. image: {
  20495. source: "./media/characters/dhari/back.svg",
  20496. extra: 1048 / 931,
  20497. bottom: 0.005
  20498. }
  20499. },
  20500. frontDressed: {
  20501. height: math.unit(6 + 3 / 12, "feet"),
  20502. weight: math.unit(519, "lb"),
  20503. name: "Front (Dressed)",
  20504. image: {
  20505. source: "./media/characters/dhari/front-dressed.svg",
  20506. extra: 1713 / 1546,
  20507. bottom: 0.02
  20508. }
  20509. },
  20510. backDressed: {
  20511. height: math.unit(6 + 3 / 12, "feet"),
  20512. weight: math.unit(519, "lb"),
  20513. name: "Back (Dressed)",
  20514. image: {
  20515. source: "./media/characters/dhari/back-dressed.svg",
  20516. extra: 1699 / 1537,
  20517. bottom: 0.01
  20518. }
  20519. },
  20520. maw: {
  20521. height: math.unit(0.95, "feet"),
  20522. name: "Maw",
  20523. image: {
  20524. source: "./media/characters/dhari/maw.svg"
  20525. }
  20526. },
  20527. wereFront: {
  20528. height: math.unit(12 + 8 / 12, "feet"),
  20529. weight: math.unit(4000, "lb"),
  20530. name: "Front (Were)",
  20531. image: {
  20532. source: "./media/characters/dhari/were-front.svg",
  20533. extra: 1065 / 969,
  20534. bottom: 0.015
  20535. }
  20536. },
  20537. wereBack: {
  20538. height: math.unit(12 + 8 / 12, "feet"),
  20539. weight: math.unit(4000, "lb"),
  20540. name: "Back (Were)",
  20541. image: {
  20542. source: "./media/characters/dhari/were-back.svg",
  20543. extra: 1065 / 969,
  20544. bottom: 0.012
  20545. }
  20546. },
  20547. wereMaw: {
  20548. height: math.unit(0.625, "meters"),
  20549. name: "Maw (Were)",
  20550. image: {
  20551. source: "./media/characters/dhari/were-maw.svg"
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Normal",
  20558. height: math.unit(6 + 3 / 12, "feet"),
  20559. default: true
  20560. },
  20561. ]
  20562. ))
  20563. characterMakers.push(() => makeCharacter(
  20564. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20565. {
  20566. anthro: {
  20567. height: math.unit(5 + 7 / 12, "feet"),
  20568. weight: math.unit(175, "lb"),
  20569. name: "Anthro",
  20570. image: {
  20571. source: "./media/characters/rena-dyne/anthro.svg",
  20572. extra: 1849 / 1785,
  20573. bottom: 0.005
  20574. }
  20575. },
  20576. taur: {
  20577. height: math.unit(15 + 6 / 12, "feet"),
  20578. weight: math.unit(8000, "lb"),
  20579. name: "Taur",
  20580. image: {
  20581. source: "./media/characters/rena-dyne/taur.svg",
  20582. extra: 2315 / 2234,
  20583. bottom: 0.033
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(5 + 7 / 12, "feet"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(8, "feet"),
  20600. weight: math.unit(600, "lb"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/weremeep/front.svg",
  20604. extra: 967 / 862,
  20605. bottom: 0.01
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(8, "feet"),
  20613. default: true
  20614. },
  20615. {
  20616. name: "Lorg",
  20617. height: math.unit(12, "feet")
  20618. },
  20619. {
  20620. name: "Oh Lawd She Comin'",
  20621. height: math.unit(20, "feet")
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20627. {
  20628. front: {
  20629. height: math.unit(4, "feet"),
  20630. weight: math.unit(90, "lb"),
  20631. name: "Front",
  20632. image: {
  20633. source: "./media/characters/reza/front.svg",
  20634. extra: 1183 / 1111,
  20635. bottom: 0.017
  20636. }
  20637. },
  20638. back: {
  20639. height: math.unit(4, "feet"),
  20640. weight: math.unit(90, "lb"),
  20641. name: "Back",
  20642. image: {
  20643. source: "./media/characters/reza/back.svg",
  20644. extra: 1183 / 1111,
  20645. bottom: 0.01
  20646. }
  20647. },
  20648. drake: {
  20649. height: math.unit(30, "feet"),
  20650. weight: math.unit(246960, "lb"),
  20651. name: "Drake",
  20652. image: {
  20653. source: "./media/characters/reza/drake.svg",
  20654. extra: 2350 / 2024,
  20655. bottom: 60.7 / 2403
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(4, "feet"),
  20663. default: true
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20669. {
  20670. side: {
  20671. height: math.unit(15, "feet"),
  20672. weight: math.unit(14, "tons"),
  20673. name: "Side",
  20674. image: {
  20675. source: "./media/characters/athea/side.svg",
  20676. extra: 960 / 540,
  20677. bottom: 0.003
  20678. }
  20679. },
  20680. sitting: {
  20681. height: math.unit(6 * 2.85, "feet"),
  20682. weight: math.unit(14, "tons"),
  20683. name: "Sitting",
  20684. image: {
  20685. source: "./media/characters/athea/sitting.svg",
  20686. extra: 621 / 581,
  20687. bottom: 0.075
  20688. }
  20689. },
  20690. maw: {
  20691. height: math.unit(7.59498031496063, "feet"),
  20692. name: "Maw",
  20693. image: {
  20694. source: "./media/characters/athea/maw.svg"
  20695. }
  20696. },
  20697. },
  20698. [
  20699. {
  20700. name: "Lap Cat",
  20701. height: math.unit(2.5, "feet")
  20702. },
  20703. {
  20704. name: "Minimacro",
  20705. height: math.unit(15, "feet"),
  20706. default: true
  20707. },
  20708. {
  20709. name: "Macro",
  20710. height: math.unit(120, "feet")
  20711. },
  20712. {
  20713. name: "Macro+",
  20714. height: math.unit(640, "feet")
  20715. },
  20716. {
  20717. name: "Colossus",
  20718. height: math.unit(2.2, "miles")
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20724. {
  20725. front: {
  20726. height: math.unit(8 + 8 / 12, "feet"),
  20727. weight: math.unit(130, "kg"),
  20728. name: "Front",
  20729. image: {
  20730. source: "./media/characters/seroko/front.svg",
  20731. extra: 1385 / 1280,
  20732. bottom: 0.025
  20733. }
  20734. },
  20735. back: {
  20736. height: math.unit(8 + 8 / 12, "feet"),
  20737. weight: math.unit(130, "kg"),
  20738. name: "Back",
  20739. image: {
  20740. source: "./media/characters/seroko/back.svg",
  20741. extra: 1369 / 1238,
  20742. bottom: 0.018
  20743. }
  20744. },
  20745. frontDressed: {
  20746. height: math.unit(8 + 8 / 12, "feet"),
  20747. weight: math.unit(130, "kg"),
  20748. name: "Front (Dressed)",
  20749. image: {
  20750. source: "./media/characters/seroko/front-dressed.svg",
  20751. extra: 1366 / 1275,
  20752. bottom: 0.03
  20753. }
  20754. },
  20755. },
  20756. [
  20757. {
  20758. name: "Normal",
  20759. height: math.unit(8 + 8 / 12, "feet"),
  20760. default: true
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20766. {
  20767. front: {
  20768. height: math.unit(5.5, "feet"),
  20769. weight: math.unit(160, "lb"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/quatzi/front.svg",
  20773. extra: 2346 / 2242,
  20774. bottom: 0.015
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Normal",
  20781. height: math.unit(5.5, "feet"),
  20782. default: true
  20783. },
  20784. {
  20785. name: "Big",
  20786. height: math.unit(7.7, "feet")
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20792. {
  20793. front: {
  20794. height: math.unit(5 + 11 / 12, "feet"),
  20795. weight: math.unit(180, "lb"),
  20796. name: "Front",
  20797. image: {
  20798. source: "./media/characters/sen/front.svg",
  20799. extra: 1321 / 1254,
  20800. bottom: 0.015
  20801. }
  20802. },
  20803. side: {
  20804. height: math.unit(5 + 11 / 12, "feet"),
  20805. weight: math.unit(180, "lb"),
  20806. name: "Side",
  20807. image: {
  20808. source: "./media/characters/sen/side.svg",
  20809. extra: 1321 / 1254,
  20810. bottom: 0.007
  20811. }
  20812. },
  20813. back: {
  20814. height: math.unit(5 + 11 / 12, "feet"),
  20815. weight: math.unit(180, "lb"),
  20816. name: "Back",
  20817. image: {
  20818. source: "./media/characters/sen/back.svg",
  20819. extra: 1321 / 1254
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(5 + 11 / 12, "feet"),
  20827. default: true
  20828. },
  20829. ]
  20830. ))
  20831. characterMakers.push(() => makeCharacter(
  20832. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20833. {
  20834. front: {
  20835. height: math.unit(166.6, "cm"),
  20836. weight: math.unit(66.6, "kg"),
  20837. name: "Front",
  20838. image: {
  20839. source: "./media/characters/fruity/front.svg",
  20840. extra: 1510 / 1386,
  20841. bottom: 0.04
  20842. }
  20843. },
  20844. back: {
  20845. height: math.unit(166.6, "cm"),
  20846. weight: math.unit(66.6, "lb"),
  20847. name: "Back",
  20848. image: {
  20849. source: "./media/characters/fruity/back.svg",
  20850. extra: 1563 / 1435,
  20851. bottom: 0.005
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Normal",
  20858. height: math.unit(166.6, "cm"),
  20859. default: true
  20860. },
  20861. {
  20862. name: "Demonic",
  20863. height: math.unit(166.6, "feet")
  20864. },
  20865. ]
  20866. ))
  20867. characterMakers.push(() => makeCharacter(
  20868. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20869. {
  20870. side: {
  20871. height: math.unit(10, "feet"),
  20872. weight: math.unit(500, "lb"),
  20873. name: "Side",
  20874. image: {
  20875. source: "./media/characters/zost/side.svg",
  20876. extra: 966 / 880,
  20877. bottom: 0.075
  20878. }
  20879. },
  20880. mawFront: {
  20881. height: math.unit(1.08, "meters"),
  20882. name: "Maw (Front)",
  20883. image: {
  20884. source: "./media/characters/zost/maw-front.svg"
  20885. }
  20886. },
  20887. mawSide: {
  20888. height: math.unit(2.66, "feet"),
  20889. name: "Maw (Side)",
  20890. image: {
  20891. source: "./media/characters/zost/maw-side.svg"
  20892. }
  20893. },
  20894. },
  20895. [
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(10, "feet"),
  20899. default: true
  20900. },
  20901. ]
  20902. ))
  20903. characterMakers.push(() => makeCharacter(
  20904. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20905. {
  20906. front: {
  20907. height: math.unit(5 + 4 / 12, "feet"),
  20908. weight: math.unit(120, "lb"),
  20909. name: "Front",
  20910. image: {
  20911. source: "./media/characters/luci/front.svg",
  20912. extra: 1985 / 1884,
  20913. bottom: 0.04
  20914. }
  20915. },
  20916. back: {
  20917. height: math.unit(5 + 4 / 12, "feet"),
  20918. weight: math.unit(120, "lb"),
  20919. name: "Back",
  20920. image: {
  20921. source: "./media/characters/luci/back.svg",
  20922. extra: 1892 / 1791,
  20923. bottom: 0.002
  20924. }
  20925. },
  20926. },
  20927. [
  20928. {
  20929. name: "Normal",
  20930. height: math.unit(5 + 4 / 12, "feet"),
  20931. default: true
  20932. },
  20933. ]
  20934. ))
  20935. characterMakers.push(() => makeCharacter(
  20936. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20937. {
  20938. front: {
  20939. height: math.unit(1500, "feet"),
  20940. weight: math.unit(3.8e6, "tons"),
  20941. name: "Front",
  20942. image: {
  20943. source: "./media/characters/2th/front.svg",
  20944. extra: 3489 / 3350,
  20945. bottom: 0.1
  20946. }
  20947. },
  20948. foot: {
  20949. height: math.unit(461, "feet"),
  20950. name: "Foot",
  20951. image: {
  20952. source: "./media/characters/2th/foot.svg"
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "\"Micro\"",
  20959. height: math.unit(15 + 7 / 12, "feet")
  20960. },
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(1500, "feet"),
  20964. default: true
  20965. },
  20966. {
  20967. name: "Macro",
  20968. height: math.unit(5000, "feet")
  20969. },
  20970. {
  20971. name: "Megamacro",
  20972. height: math.unit(15, "miles")
  20973. },
  20974. {
  20975. name: "Gigamacro",
  20976. height: math.unit(4000, "miles")
  20977. },
  20978. {
  20979. name: "Galactic",
  20980. height: math.unit(50, "AU")
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(5 + 6 / 12, "feet"),
  20989. weight: math.unit(220, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/amethyst/front.svg",
  20993. extra: 2078 / 2040,
  20994. bottom: 0.045
  20995. }
  20996. },
  20997. back: {
  20998. height: math.unit(5 + 6 / 12, "feet"),
  20999. weight: math.unit(220, "lb"),
  21000. name: "Back",
  21001. image: {
  21002. source: "./media/characters/amethyst/back.svg",
  21003. extra: 2021 / 1989,
  21004. bottom: 0.02
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(5 + 6 / 12, "feet"),
  21012. default: true
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21018. {
  21019. front: {
  21020. height: math.unit(4 + 11 / 12, "feet"),
  21021. weight: math.unit(120, "lb"),
  21022. name: "Front",
  21023. image: {
  21024. source: "./media/characters/yumi-akiyama/front.svg",
  21025. extra: 1327 / 1235,
  21026. bottom: 0.02
  21027. }
  21028. },
  21029. back: {
  21030. height: math.unit(4 + 11 / 12, "feet"),
  21031. weight: math.unit(120, "lb"),
  21032. name: "Back",
  21033. image: {
  21034. source: "./media/characters/yumi-akiyama/back.svg",
  21035. extra: 1287 / 1245,
  21036. bottom: 0.002
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Galactic",
  21043. height: math.unit(50, "galaxies"),
  21044. default: true
  21045. },
  21046. {
  21047. name: "Universal",
  21048. height: math.unit(100, "universes")
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21054. {
  21055. front: {
  21056. height: math.unit(8, "feet"),
  21057. weight: math.unit(500, "lb"),
  21058. name: "Front",
  21059. image: {
  21060. source: "./media/characters/rifter-yrmori/front.svg",
  21061. extra: 1180 / 1125,
  21062. bottom: 0.02
  21063. }
  21064. },
  21065. back: {
  21066. height: math.unit(8, "feet"),
  21067. weight: math.unit(500, "lb"),
  21068. name: "Back",
  21069. image: {
  21070. source: "./media/characters/rifter-yrmori/back.svg",
  21071. extra: 1190 / 1145,
  21072. bottom: 0.001
  21073. }
  21074. },
  21075. wings: {
  21076. height: math.unit(7.75, "feet"),
  21077. weight: math.unit(500, "lb"),
  21078. name: "Wings",
  21079. image: {
  21080. source: "./media/characters/rifter-yrmori/wings.svg",
  21081. extra: 1357 / 1285
  21082. }
  21083. },
  21084. maw: {
  21085. height: math.unit(0.8, "feet"),
  21086. name: "Maw",
  21087. image: {
  21088. source: "./media/characters/rifter-yrmori/maw.svg"
  21089. }
  21090. },
  21091. mawfront: {
  21092. height: math.unit(1.45, "feet"),
  21093. name: "Maw (Front)",
  21094. image: {
  21095. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21096. }
  21097. },
  21098. },
  21099. [
  21100. {
  21101. name: "Normal",
  21102. height: math.unit(8, "feet"),
  21103. default: true
  21104. },
  21105. {
  21106. name: "Macro",
  21107. height: math.unit(42, "meters")
  21108. },
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21113. {
  21114. were: {
  21115. height: math.unit(25 + 6 / 12, "feet"),
  21116. weight: math.unit(10000, "lb"),
  21117. name: "Were",
  21118. image: {
  21119. source: "./media/characters/tahajin/were.svg",
  21120. extra: 801 / 770,
  21121. bottom: 0.042
  21122. }
  21123. },
  21124. aquatic: {
  21125. height: math.unit(6 + 4 / 12, "feet"),
  21126. weight: math.unit(160, "lb"),
  21127. name: "Aquatic",
  21128. image: {
  21129. source: "./media/characters/tahajin/aquatic.svg",
  21130. extra: 572 / 542,
  21131. bottom: 0.04
  21132. }
  21133. },
  21134. chow: {
  21135. height: math.unit(8 + 11 / 12, "feet"),
  21136. weight: math.unit(450, "lb"),
  21137. name: "Chow",
  21138. image: {
  21139. source: "./media/characters/tahajin/chow.svg",
  21140. extra: 660 / 640,
  21141. bottom: 0.015
  21142. }
  21143. },
  21144. demiNaga: {
  21145. height: math.unit(6 + 8 / 12, "feet"),
  21146. weight: math.unit(300, "lb"),
  21147. name: "Demi Naga",
  21148. image: {
  21149. source: "./media/characters/tahajin/demi-naga.svg",
  21150. extra: 643 / 615,
  21151. bottom: 0.1
  21152. }
  21153. },
  21154. data: {
  21155. height: math.unit(5, "inches"),
  21156. weight: math.unit(0.1, "lb"),
  21157. name: "Data",
  21158. image: {
  21159. source: "./media/characters/tahajin/data.svg"
  21160. }
  21161. },
  21162. fluu: {
  21163. height: math.unit(5 + 7 / 12, "feet"),
  21164. weight: math.unit(140, "lb"),
  21165. name: "Fluu",
  21166. image: {
  21167. source: "./media/characters/tahajin/fluu.svg",
  21168. extra: 628 / 592,
  21169. bottom: 0.02
  21170. }
  21171. },
  21172. starWarrior: {
  21173. height: math.unit(4 + 5 / 12, "feet"),
  21174. weight: math.unit(50, "lb"),
  21175. name: "Star Warrior",
  21176. image: {
  21177. source: "./media/characters/tahajin/star-warrior.svg"
  21178. }
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(25 + 6 / 12, "feet"),
  21185. default: true
  21186. },
  21187. ]
  21188. ))
  21189. characterMakers.push(() => makeCharacter(
  21190. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21191. {
  21192. front: {
  21193. height: math.unit(8, "feet"),
  21194. weight: math.unit(350, "lb"),
  21195. name: "Front",
  21196. image: {
  21197. source: "./media/characters/gabira/front.svg",
  21198. extra: 608 / 580,
  21199. bottom: 0.03
  21200. }
  21201. },
  21202. back: {
  21203. height: math.unit(8, "feet"),
  21204. weight: math.unit(350, "lb"),
  21205. name: "Back",
  21206. image: {
  21207. source: "./media/characters/gabira/back.svg",
  21208. extra: 608 / 580,
  21209. bottom: 0.03
  21210. }
  21211. },
  21212. },
  21213. [
  21214. {
  21215. name: "Normal",
  21216. height: math.unit(8, "feet"),
  21217. default: true
  21218. },
  21219. ]
  21220. ))
  21221. characterMakers.push(() => makeCharacter(
  21222. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21223. {
  21224. front: {
  21225. height: math.unit(5 + 3 / 12, "feet"),
  21226. weight: math.unit(137, "lb"),
  21227. name: "Front",
  21228. image: {
  21229. source: "./media/characters/sasha-katraine/front.svg",
  21230. bottom: 0.045
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Micro",
  21237. height: math.unit(5, "inches")
  21238. },
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(5 + 3 / 12, "feet"),
  21242. default: true
  21243. },
  21244. ]
  21245. ))
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21248. {
  21249. side: {
  21250. height: math.unit(4, "inches"),
  21251. weight: math.unit(200, "grams"),
  21252. name: "Side",
  21253. image: {
  21254. source: "./media/characters/der/side.svg",
  21255. extra: 719 / 400,
  21256. bottom: 30.6 / 749.9187
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Micro",
  21263. height: math.unit(4, "inches"),
  21264. default: true
  21265. },
  21266. ]
  21267. ))
  21268. characterMakers.push(() => makeCharacter(
  21269. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21270. {
  21271. side: {
  21272. height: math.unit(30, "meters"),
  21273. weight: math.unit(700, "tonnes"),
  21274. name: "Side",
  21275. image: {
  21276. source: "./media/characters/fixerdragon/side.svg",
  21277. extra: (1293.0514 - 116.03) / 1106.86,
  21278. bottom: 116.03 / 1293.0514
  21279. }
  21280. },
  21281. },
  21282. [
  21283. {
  21284. name: "Planck",
  21285. height: math.unit(1.6e-35, "meters")
  21286. },
  21287. {
  21288. name: "Micro",
  21289. height: math.unit(0.4, "meters")
  21290. },
  21291. {
  21292. name: "Normal",
  21293. height: math.unit(30, "meters"),
  21294. default: true
  21295. },
  21296. {
  21297. name: "Megamacro",
  21298. height: math.unit(1.2, "megameters")
  21299. },
  21300. {
  21301. name: "Teramacro",
  21302. height: math.unit(130, "terameters")
  21303. },
  21304. {
  21305. name: "Yottamacro",
  21306. height: math.unit(6200, "yottameters")
  21307. },
  21308. ]
  21309. ));
  21310. characterMakers.push(() => makeCharacter(
  21311. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21312. {
  21313. front: {
  21314. height: math.unit(8, "feet"),
  21315. weight: math.unit(250, "lb"),
  21316. name: "Front",
  21317. image: {
  21318. source: "./media/characters/kite/front.svg",
  21319. extra: 2796 / 2659,
  21320. bottom: 0.002
  21321. }
  21322. },
  21323. },
  21324. [
  21325. {
  21326. name: "Normal",
  21327. height: math.unit(8, "feet"),
  21328. default: true
  21329. },
  21330. {
  21331. name: "Macro",
  21332. height: math.unit(360, "feet")
  21333. },
  21334. {
  21335. name: "Megamacro",
  21336. height: math.unit(1500, "feet")
  21337. },
  21338. ]
  21339. ))
  21340. characterMakers.push(() => makeCharacter(
  21341. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21342. {
  21343. front: {
  21344. height: math.unit(5 + 10 / 12, "feet"),
  21345. weight: math.unit(150, "lb"),
  21346. name: "Front",
  21347. image: {
  21348. source: "./media/characters/poojawa-vynar/front.svg",
  21349. extra: (1506.1547 - 55) / 1356.6,
  21350. bottom: 55 / 1506.1547
  21351. }
  21352. },
  21353. frontTailless: {
  21354. height: math.unit(5 + 10 / 12, "feet"),
  21355. weight: math.unit(150, "lb"),
  21356. name: "Front (Tailless)",
  21357. image: {
  21358. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21359. extra: (1506.1547 - 55) / 1356.6,
  21360. bottom: 55 / 1506.1547
  21361. }
  21362. },
  21363. },
  21364. [
  21365. {
  21366. name: "Normal",
  21367. height: math.unit(5 + 10 / 12, "feet"),
  21368. default: true
  21369. },
  21370. ]
  21371. ))
  21372. characterMakers.push(() => makeCharacter(
  21373. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21374. {
  21375. front: {
  21376. height: math.unit(293, "meters"),
  21377. weight: math.unit(70400, "tons"),
  21378. name: "Front",
  21379. image: {
  21380. source: "./media/characters/violette/front.svg",
  21381. extra: 1227 / 1180,
  21382. bottom: 0.005
  21383. }
  21384. },
  21385. back: {
  21386. height: math.unit(293, "meters"),
  21387. weight: math.unit(70400, "tons"),
  21388. name: "Back",
  21389. image: {
  21390. source: "./media/characters/violette/back.svg",
  21391. extra: 1227 / 1180,
  21392. bottom: 0.005
  21393. }
  21394. },
  21395. },
  21396. [
  21397. {
  21398. name: "Macro",
  21399. height: math.unit(293, "meters"),
  21400. default: true
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21406. {
  21407. front: {
  21408. height: math.unit(1050, "feet"),
  21409. weight: math.unit(200000, "tons"),
  21410. name: "Front",
  21411. image: {
  21412. source: "./media/characters/alessandra/front.svg",
  21413. extra: 960 / 912,
  21414. bottom: 0.06
  21415. }
  21416. },
  21417. },
  21418. [
  21419. {
  21420. name: "Macro",
  21421. height: math.unit(1050, "feet")
  21422. },
  21423. {
  21424. name: "Macro+",
  21425. height: math.unit(900, "meters"),
  21426. default: true
  21427. },
  21428. ]
  21429. ))
  21430. characterMakers.push(() => makeCharacter(
  21431. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21432. {
  21433. front: {
  21434. height: math.unit(5, "feet"),
  21435. weight: math.unit(187, "lb"),
  21436. name: "Front",
  21437. image: {
  21438. source: "./media/characters/person/front.svg",
  21439. extra: 3087 / 2945,
  21440. bottom: 91 / 3181
  21441. }
  21442. },
  21443. },
  21444. [
  21445. {
  21446. name: "Micro",
  21447. height: math.unit(3, "inches")
  21448. },
  21449. {
  21450. name: "Normal",
  21451. height: math.unit(5, "feet"),
  21452. default: true
  21453. },
  21454. {
  21455. name: "Macro",
  21456. height: math.unit(90, "feet")
  21457. },
  21458. {
  21459. name: "Max Size",
  21460. height: math.unit(280, "feet")
  21461. },
  21462. ]
  21463. ))
  21464. characterMakers.push(() => makeCharacter(
  21465. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21466. {
  21467. front: {
  21468. height: math.unit(4.5, "meters"),
  21469. weight: math.unit(3200, "lb"),
  21470. name: "Front",
  21471. image: {
  21472. source: "./media/characters/ty/front.svg",
  21473. extra: 1038 / 960,
  21474. bottom: 31.156 / 1068
  21475. }
  21476. },
  21477. back: {
  21478. height: math.unit(4.5, "meters"),
  21479. weight: math.unit(3200, "lb"),
  21480. name: "Back",
  21481. image: {
  21482. source: "./media/characters/ty/back.svg",
  21483. extra: 1044 / 966,
  21484. bottom: 7.48 / 1049
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(4.5, "meters"),
  21492. default: true
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21498. {
  21499. front: {
  21500. height: math.unit(5 + 4 / 12, "feet"),
  21501. weight: math.unit(115, "lb"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/rocky/front.svg",
  21505. extra: 1012 / 975,
  21506. bottom: 54 / 1066
  21507. }
  21508. },
  21509. },
  21510. [
  21511. {
  21512. name: "Normal",
  21513. height: math.unit(5 + 4 / 12, "feet"),
  21514. default: true
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21520. {
  21521. upright: {
  21522. height: math.unit(6, "meters"),
  21523. weight: math.unit(4000, "kg"),
  21524. name: "Upright",
  21525. image: {
  21526. source: "./media/characters/ruin/upright.svg",
  21527. extra: 668 / 661,
  21528. bottom: 42 / 799.8396
  21529. }
  21530. },
  21531. },
  21532. [
  21533. {
  21534. name: "Normal",
  21535. height: math.unit(6, "meters"),
  21536. default: true
  21537. },
  21538. ]
  21539. ))
  21540. characterMakers.push(() => makeCharacter(
  21541. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21542. {
  21543. front: {
  21544. height: math.unit(5, "feet"),
  21545. weight: math.unit(106, "lb"),
  21546. name: "Front",
  21547. image: {
  21548. source: "./media/characters/robin/front.svg",
  21549. extra: 862 / 799,
  21550. bottom: 42.4 / 914.8856
  21551. }
  21552. },
  21553. },
  21554. [
  21555. {
  21556. name: "Normal",
  21557. height: math.unit(5, "feet"),
  21558. default: true
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21564. {
  21565. side: {
  21566. height: math.unit(3, "feet"),
  21567. weight: math.unit(225, "lb"),
  21568. name: "Side",
  21569. image: {
  21570. source: "./media/characters/saian/side.svg",
  21571. extra: 566 / 356,
  21572. bottom: 79.7 / 643
  21573. }
  21574. },
  21575. maw: {
  21576. height: math.unit(2.85, "feet"),
  21577. name: "Maw",
  21578. image: {
  21579. source: "./media/characters/saian/maw.svg"
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Normal",
  21586. height: math.unit(3, "feet"),
  21587. default: true
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21593. {
  21594. side: {
  21595. height: math.unit(8, "feet"),
  21596. weight: math.unit(300, "lb"),
  21597. name: "Side",
  21598. image: {
  21599. source: "./media/characters/equus-silvermane/side.svg",
  21600. extra: 2176 / 2050,
  21601. bottom: 65.7 / 2245
  21602. }
  21603. },
  21604. front: {
  21605. height: math.unit(8, "feet"),
  21606. weight: math.unit(300, "lb"),
  21607. name: "Front",
  21608. image: {
  21609. source: "./media/characters/equus-silvermane/front.svg",
  21610. extra: 4633 / 4400,
  21611. bottom: 71.3 / 4706.915
  21612. }
  21613. },
  21614. sideStepping: {
  21615. height: math.unit(8, "feet"),
  21616. weight: math.unit(300, "lb"),
  21617. name: "Side (Stepping)",
  21618. image: {
  21619. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21620. extra: 1968 / 1860,
  21621. bottom: 16.4 / 1989
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Normal",
  21628. height: math.unit(8, "feet")
  21629. },
  21630. {
  21631. name: "Minimacro",
  21632. height: math.unit(75, "feet"),
  21633. default: true
  21634. },
  21635. {
  21636. name: "Macro",
  21637. height: math.unit(150, "feet")
  21638. },
  21639. {
  21640. name: "Macro+",
  21641. height: math.unit(1000, "feet")
  21642. },
  21643. {
  21644. name: "Megamacro",
  21645. height: math.unit(1, "mile")
  21646. },
  21647. ]
  21648. ))
  21649. characterMakers.push(() => makeCharacter(
  21650. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21651. {
  21652. side: {
  21653. height: math.unit(20, "feet"),
  21654. weight: math.unit(30000, "kg"),
  21655. name: "Side",
  21656. image: {
  21657. source: "./media/characters/windar/side.svg",
  21658. extra: 1491 / 1248,
  21659. bottom: 82.56 / 1568
  21660. }
  21661. },
  21662. },
  21663. [
  21664. {
  21665. name: "Normal",
  21666. height: math.unit(20, "feet"),
  21667. default: true
  21668. },
  21669. ]
  21670. ))
  21671. characterMakers.push(() => makeCharacter(
  21672. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21673. {
  21674. side: {
  21675. height: math.unit(15.66, "feet"),
  21676. weight: math.unit(150, "lb"),
  21677. name: "Side",
  21678. image: {
  21679. source: "./media/characters/melody/side.svg",
  21680. extra: 1097 / 944,
  21681. bottom: 11.8 / 1109
  21682. }
  21683. },
  21684. sideOutfit: {
  21685. height: math.unit(15.66, "feet"),
  21686. weight: math.unit(150, "lb"),
  21687. name: "Side (Outfit)",
  21688. image: {
  21689. source: "./media/characters/melody/side-outfit.svg",
  21690. extra: 1097 / 944,
  21691. bottom: 11.8 / 1109
  21692. }
  21693. },
  21694. },
  21695. [
  21696. {
  21697. name: "Normal",
  21698. height: math.unit(15.66, "feet"),
  21699. default: true
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21705. {
  21706. front: {
  21707. height: math.unit(8, "feet"),
  21708. weight: math.unit(325, "lb"),
  21709. name: "Front",
  21710. image: {
  21711. source: "./media/characters/windera/front.svg",
  21712. extra: 3180 / 2845,
  21713. bottom: 178 / 3365
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(8, "feet"),
  21721. default: true
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21727. {
  21728. front: {
  21729. height: math.unit(28.75, "feet"),
  21730. weight: math.unit(2000, "kg"),
  21731. name: "Front",
  21732. image: {
  21733. source: "./media/characters/sonear/front.svg",
  21734. extra: 1041.1 / 964.9,
  21735. bottom: 53.7 / 1096.6
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Normal",
  21742. height: math.unit(28.75, "feet"),
  21743. default: true
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21749. {
  21750. side: {
  21751. height: math.unit(25.5, "feet"),
  21752. weight: math.unit(23000, "kg"),
  21753. name: "Side",
  21754. image: {
  21755. source: "./media/characters/kanara/side.svg"
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(25.5, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21769. {
  21770. side: {
  21771. height: math.unit(10, "feet"),
  21772. weight: math.unit(1000, "kg"),
  21773. name: "Side",
  21774. image: {
  21775. source: "./media/characters/ereus/side.svg",
  21776. extra: 1157 / 959,
  21777. bottom: 153 / 1312.5
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(10, "feet"),
  21785. default: true
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21791. {
  21792. side: {
  21793. height: math.unit(4.5, "feet"),
  21794. weight: math.unit(500, "lb"),
  21795. name: "Side",
  21796. image: {
  21797. source: "./media/characters/e-ter/side.svg",
  21798. extra: 1550 / 1248,
  21799. bottom: 146 / 1694
  21800. }
  21801. },
  21802. },
  21803. [
  21804. {
  21805. name: "Normal",
  21806. height: math.unit(4.5, "feet"),
  21807. default: true
  21808. },
  21809. ]
  21810. ))
  21811. characterMakers.push(() => makeCharacter(
  21812. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21813. {
  21814. side: {
  21815. height: math.unit(9.7, "feet"),
  21816. weight: math.unit(4000, "kg"),
  21817. name: "Side",
  21818. image: {
  21819. source: "./media/characters/yamie/side.svg"
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Normal",
  21826. height: math.unit(9.7, "feet"),
  21827. default: true
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21833. {
  21834. front: {
  21835. height: math.unit(50, "feet"),
  21836. weight: math.unit(50000, "kg"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/anders/front.svg",
  21840. extra: 570 / 539,
  21841. bottom: 14.7 / 586.7
  21842. }
  21843. },
  21844. },
  21845. [
  21846. {
  21847. name: "Large",
  21848. height: math.unit(50, "feet")
  21849. },
  21850. {
  21851. name: "Macro",
  21852. height: math.unit(2000, "feet"),
  21853. default: true
  21854. },
  21855. {
  21856. name: "Megamacro",
  21857. height: math.unit(12, "miles")
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21863. {
  21864. front: {
  21865. height: math.unit(7 + 2 / 12, "feet"),
  21866. weight: math.unit(300, "lb"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/reban/front.svg",
  21870. extra: 516 / 487,
  21871. bottom: 42.82 / 558.356
  21872. }
  21873. },
  21874. dick: {
  21875. height: math.unit(7 / 5, "feet"),
  21876. name: "Dick",
  21877. image: {
  21878. source: "./media/characters/reban/dick.svg"
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Natural Height",
  21885. height: math.unit(7 + 2 / 12, "feet")
  21886. },
  21887. {
  21888. name: "Macro",
  21889. height: math.unit(500, "feet"),
  21890. default: true
  21891. },
  21892. {
  21893. name: "Canon Height",
  21894. height: math.unit(50, "AU")
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(6, "feet"),
  21903. weight: math.unit(150, "lb"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/terrance-keayes/front.svg",
  21907. extra: 1.005,
  21908. bottom: 151 / 1615
  21909. }
  21910. },
  21911. side: {
  21912. height: math.unit(6, "feet"),
  21913. weight: math.unit(150, "lb"),
  21914. name: "Side",
  21915. image: {
  21916. source: "./media/characters/terrance-keayes/side.svg",
  21917. extra: 1.005,
  21918. bottom: 129.4 / 1544
  21919. }
  21920. },
  21921. back: {
  21922. height: math.unit(6, "feet"),
  21923. weight: math.unit(150, "lb"),
  21924. name: "Back",
  21925. image: {
  21926. source: "./media/characters/terrance-keayes/back.svg",
  21927. extra: 1.005,
  21928. bottom: 58.4 / 1557.3
  21929. }
  21930. },
  21931. dick: {
  21932. height: math.unit(6 * 0.208, "feet"),
  21933. name: "Dick",
  21934. image: {
  21935. source: "./media/characters/terrance-keayes/dick.svg"
  21936. }
  21937. },
  21938. },
  21939. [
  21940. {
  21941. name: "Canon Height",
  21942. height: math.unit(35, "miles"),
  21943. default: true
  21944. },
  21945. ]
  21946. ))
  21947. characterMakers.push(() => makeCharacter(
  21948. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21949. {
  21950. front: {
  21951. height: math.unit(6, "feet"),
  21952. weight: math.unit(150, "lb"),
  21953. name: "Front",
  21954. image: {
  21955. source: "./media/characters/ofelia/front.svg",
  21956. extra: 546 / 541,
  21957. bottom: 39 / 583
  21958. }
  21959. },
  21960. back: {
  21961. height: math.unit(6, "feet"),
  21962. weight: math.unit(150, "lb"),
  21963. name: "Back",
  21964. image: {
  21965. source: "./media/characters/ofelia/back.svg",
  21966. extra: 564 / 559.5,
  21967. bottom: 8.69 / 573.02
  21968. }
  21969. },
  21970. maw: {
  21971. height: math.unit(1, "feet"),
  21972. name: "Maw",
  21973. image: {
  21974. source: "./media/characters/ofelia/maw.svg"
  21975. }
  21976. },
  21977. foot: {
  21978. height: math.unit(1.949, "feet"),
  21979. name: "Foot",
  21980. image: {
  21981. source: "./media/characters/ofelia/foot.svg"
  21982. }
  21983. },
  21984. },
  21985. [
  21986. {
  21987. name: "Canon Height",
  21988. height: math.unit(2000, "miles"),
  21989. default: true
  21990. },
  21991. ]
  21992. ))
  21993. characterMakers.push(() => makeCharacter(
  21994. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21995. {
  21996. front: {
  21997. height: math.unit(6, "feet"),
  21998. weight: math.unit(150, "lb"),
  21999. name: "Front",
  22000. image: {
  22001. source: "./media/characters/samuel/front.svg",
  22002. extra: 265 / 258,
  22003. bottom: 2 / 266.1566
  22004. }
  22005. },
  22006. },
  22007. [
  22008. {
  22009. name: "Macro",
  22010. height: math.unit(100, "feet"),
  22011. default: true
  22012. },
  22013. {
  22014. name: "Full Size",
  22015. height: math.unit(1000, "miles")
  22016. },
  22017. ]
  22018. ))
  22019. characterMakers.push(() => makeCharacter(
  22020. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22021. {
  22022. front: {
  22023. height: math.unit(6, "feet"),
  22024. weight: math.unit(300, "lb"),
  22025. name: "Front",
  22026. image: {
  22027. source: "./media/characters/beishir-kiel/front.svg",
  22028. extra: 569 / 547,
  22029. bottom: 41.9 / 609
  22030. }
  22031. },
  22032. maw: {
  22033. height: math.unit(6 * 0.202, "feet"),
  22034. name: "Maw",
  22035. image: {
  22036. source: "./media/characters/beishir-kiel/maw.svg"
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Macro",
  22043. height: math.unit(300, "feet"),
  22044. default: true
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22050. {
  22051. front: {
  22052. height: math.unit(5 + 7/12, "feet"),
  22053. weight: math.unit(120, "lb"),
  22054. name: "Front",
  22055. image: {
  22056. source: "./media/characters/logan-grey/front.svg",
  22057. extra: 1836/1738,
  22058. bottom: 108/1944
  22059. }
  22060. },
  22061. back: {
  22062. height: math.unit(5 + 7/12, "feet"),
  22063. weight: math.unit(120, "lb"),
  22064. name: "Back",
  22065. image: {
  22066. source: "./media/characters/logan-grey/back.svg",
  22067. extra: 1880/1794,
  22068. bottom: 24/1904
  22069. }
  22070. },
  22071. frontSfw: {
  22072. height: math.unit(5 + 7/12, "feet"),
  22073. weight: math.unit(120, "lb"),
  22074. name: "Front (SFW)",
  22075. image: {
  22076. source: "./media/characters/logan-grey/front-sfw.svg",
  22077. extra: 1836/1738,
  22078. bottom: 108/1944
  22079. }
  22080. },
  22081. backSfw: {
  22082. height: math.unit(5 + 7/12, "feet"),
  22083. weight: math.unit(120, "lb"),
  22084. name: "Back (SFW)",
  22085. image: {
  22086. source: "./media/characters/logan-grey/back-sfw.svg",
  22087. extra: 1880/1794,
  22088. bottom: 24/1904
  22089. }
  22090. },
  22091. hands: {
  22092. height: math.unit(0.84, "feet"),
  22093. name: "Hands",
  22094. image: {
  22095. source: "./media/characters/logan-grey/hands.svg"
  22096. }
  22097. },
  22098. paws: {
  22099. height: math.unit(0.72, "feet"),
  22100. name: "Paws",
  22101. image: {
  22102. source: "./media/characters/logan-grey/paws.svg"
  22103. }
  22104. },
  22105. cock: {
  22106. height: math.unit(1.45, "feet"),
  22107. name: "Cock",
  22108. image: {
  22109. source: "./media/characters/logan-grey/cock.svg"
  22110. }
  22111. },
  22112. cockAlt: {
  22113. height: math.unit(1.437, "feet"),
  22114. name: "Cock (alt)",
  22115. image: {
  22116. source: "./media/characters/logan-grey/cock-alt.svg"
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(5 + 8 / 12, "feet")
  22124. },
  22125. {
  22126. name: "The 500 Foot Femboy",
  22127. height: math.unit(500, "feet"),
  22128. default: true
  22129. },
  22130. {
  22131. name: "Megmacro",
  22132. height: math.unit(20, "miles")
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22138. {
  22139. front: {
  22140. height: math.unit(8 + 2 / 12, "feet"),
  22141. weight: math.unit(275, "lb"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/draganta/front.svg",
  22145. extra: 1177 / 1135,
  22146. bottom: 33.46 / 1212.1
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Normal",
  22153. height: math.unit(8 + 6 / 12, "feet"),
  22154. default: true
  22155. },
  22156. {
  22157. name: "Macro",
  22158. height: math.unit(150, "feet")
  22159. },
  22160. {
  22161. name: "Megamacro",
  22162. height: math.unit(1000, "miles")
  22163. },
  22164. ]
  22165. ))
  22166. characterMakers.push(() => makeCharacter(
  22167. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22168. {
  22169. front: {
  22170. height: math.unit(1.72, "m"),
  22171. weight: math.unit(80, "lb"),
  22172. name: "Front",
  22173. image: {
  22174. source: "./media/characters/voski/front.svg",
  22175. extra: 2076.22 / 2022.4,
  22176. bottom: 102.7 / 2177.3866
  22177. }
  22178. },
  22179. frontNsfw: {
  22180. height: math.unit(1.72, "m"),
  22181. weight: math.unit(80, "lb"),
  22182. name: "Front (NSFW)",
  22183. image: {
  22184. source: "./media/characters/voski/front-nsfw.svg",
  22185. extra: 2076.22 / 2022.4,
  22186. bottom: 102.7 / 2177.3866
  22187. }
  22188. },
  22189. back: {
  22190. height: math.unit(1.72, "m"),
  22191. weight: math.unit(80, "lb"),
  22192. name: "Back",
  22193. image: {
  22194. source: "./media/characters/voski/back.svg",
  22195. extra: 2104 / 2051,
  22196. bottom: 10.45 / 2113.63
  22197. }
  22198. },
  22199. },
  22200. [
  22201. {
  22202. name: "Normal",
  22203. height: math.unit(1.72, "m")
  22204. },
  22205. {
  22206. name: "Macro",
  22207. height: math.unit(55, "m"),
  22208. default: true
  22209. },
  22210. {
  22211. name: "Macro+",
  22212. height: math.unit(300, "m")
  22213. },
  22214. {
  22215. name: "Macro++",
  22216. height: math.unit(700, "m")
  22217. },
  22218. {
  22219. name: "Macro+++",
  22220. height: math.unit(4500, "m")
  22221. },
  22222. {
  22223. name: "Macro++++",
  22224. height: math.unit(45, "km")
  22225. },
  22226. {
  22227. name: "Macro+++++",
  22228. height: math.unit(1220, "km")
  22229. },
  22230. ]
  22231. ))
  22232. characterMakers.push(() => makeCharacter(
  22233. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22234. {
  22235. front: {
  22236. height: math.unit(2.3, "m"),
  22237. weight: math.unit(304, "kg"),
  22238. name: "Front",
  22239. image: {
  22240. source: "./media/characters/icowom-lee/front.svg",
  22241. extra: 985 / 955,
  22242. bottom: 25.4 / 1012
  22243. }
  22244. },
  22245. fronttentacles: {
  22246. height: math.unit(2.3, "m"),
  22247. weight: math.unit(304, "kg"),
  22248. name: "Front-tentacles",
  22249. image: {
  22250. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22251. extra: 985 / 955,
  22252. bottom: 25.4 / 1012
  22253. }
  22254. },
  22255. back: {
  22256. height: math.unit(2.3, "m"),
  22257. weight: math.unit(304, "kg"),
  22258. name: "Back",
  22259. image: {
  22260. source: "./media/characters/icowom-lee/back.svg",
  22261. extra: 975 / 954,
  22262. bottom: 9.5 / 985
  22263. }
  22264. },
  22265. backtentacles: {
  22266. height: math.unit(2.3, "m"),
  22267. weight: math.unit(304, "kg"),
  22268. name: "Back-tentacles",
  22269. image: {
  22270. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22271. extra: 975 / 954,
  22272. bottom: 9.5 / 985
  22273. }
  22274. },
  22275. frontDressed: {
  22276. height: math.unit(2.3, "m"),
  22277. weight: math.unit(304, "kg"),
  22278. name: "Front (Dressed)",
  22279. image: {
  22280. source: "./media/characters/icowom-lee/front-dressed.svg",
  22281. extra: 3076 / 2933,
  22282. bottom: 51.4 / 3125.1889
  22283. }
  22284. },
  22285. rump: {
  22286. height: math.unit(0.776, "meters"),
  22287. name: "Rump",
  22288. image: {
  22289. source: "./media/characters/icowom-lee/rump.svg"
  22290. }
  22291. },
  22292. genitals: {
  22293. height: math.unit(0.78, "meters"),
  22294. name: "Genitals",
  22295. image: {
  22296. source: "./media/characters/icowom-lee/genitals.svg"
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(2.3, "meters"),
  22304. default: true
  22305. },
  22306. {
  22307. name: "Macro",
  22308. height: math.unit(94, "meters"),
  22309. default: true
  22310. },
  22311. ]
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22315. {
  22316. front: {
  22317. height: math.unit(22, "meters"),
  22318. weight: math.unit(21000, "kg"),
  22319. name: "Front",
  22320. image: {
  22321. source: "./media/characters/shock-diamond/front.svg",
  22322. extra: 2204 / 2053,
  22323. bottom: 65 / 2239.47
  22324. }
  22325. },
  22326. frontNude: {
  22327. height: math.unit(22, "meters"),
  22328. weight: math.unit(21000, "kg"),
  22329. name: "Front (Nude)",
  22330. image: {
  22331. source: "./media/characters/shock-diamond/front-nude.svg",
  22332. extra: 2514 / 2285,
  22333. bottom: 13 / 2527.56
  22334. }
  22335. },
  22336. },
  22337. [
  22338. {
  22339. name: "Normal",
  22340. height: math.unit(3, "meters")
  22341. },
  22342. {
  22343. name: "Macro",
  22344. height: math.unit(22, "meters"),
  22345. default: true
  22346. },
  22347. ]
  22348. ))
  22349. characterMakers.push(() => makeCharacter(
  22350. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22351. {
  22352. front: {
  22353. height: math.unit(5 + 4 / 12, "feet"),
  22354. weight: math.unit(120, "lb"),
  22355. name: "Front",
  22356. image: {
  22357. source: "./media/characters/rory/front.svg",
  22358. extra: 1318/1241,
  22359. bottom: 42/1360
  22360. }
  22361. },
  22362. back: {
  22363. height: math.unit(5 + 4 / 12, "feet"),
  22364. weight: math.unit(120, "lb"),
  22365. name: "Back",
  22366. image: {
  22367. source: "./media/characters/rory/back.svg",
  22368. extra: 1318/1241,
  22369. bottom: 42/1360
  22370. }
  22371. },
  22372. butt: {
  22373. height: math.unit(1.74, "feet"),
  22374. name: "Butt",
  22375. image: {
  22376. source: "./media/characters/rory/butt.svg"
  22377. }
  22378. },
  22379. dick: {
  22380. height: math.unit(1.02, "feet"),
  22381. name: "Dick",
  22382. image: {
  22383. source: "./media/characters/rory/dick.svg"
  22384. }
  22385. },
  22386. paws: {
  22387. height: math.unit(1, "feet"),
  22388. name: "Paws",
  22389. image: {
  22390. source: "./media/characters/rory/paws.svg"
  22391. }
  22392. },
  22393. frontAlt: {
  22394. height: math.unit(5 + 4 / 12, "feet"),
  22395. weight: math.unit(120, "lb"),
  22396. name: "Front (Alt)",
  22397. image: {
  22398. source: "./media/characters/rory/front-alt.svg",
  22399. extra: 589 / 556,
  22400. bottom: 45.7 / 635.76
  22401. }
  22402. },
  22403. frontAltNude: {
  22404. height: math.unit(5 + 4 / 12, "feet"),
  22405. weight: math.unit(120, "lb"),
  22406. name: "Front (Alt, Nude)",
  22407. image: {
  22408. source: "./media/characters/rory/front-alt-nude.svg",
  22409. extra: 589 / 556,
  22410. bottom: 45.7 / 635.76
  22411. }
  22412. },
  22413. side: {
  22414. height: math.unit(5 + 4 / 12, "feet"),
  22415. weight: math.unit(120, "lb"),
  22416. name: "Side",
  22417. image: {
  22418. source: "./media/characters/rory/side.svg",
  22419. extra: 597 / 564,
  22420. bottom: 55 / 653
  22421. }
  22422. },
  22423. backAlt: {
  22424. height: math.unit(5 + 4 / 12, "feet"),
  22425. weight: math.unit(120, "lb"),
  22426. name: "Back (Alt)",
  22427. image: {
  22428. source: "./media/characters/rory/back-alt.svg",
  22429. extra: 620 / 585,
  22430. bottom: 8.86 / 630.43
  22431. }
  22432. },
  22433. dickAlt: {
  22434. height: math.unit(0.86, "feet"),
  22435. name: "Dick (Alt)",
  22436. image: {
  22437. source: "./media/characters/rory/dick-alt.svg"
  22438. }
  22439. },
  22440. },
  22441. [
  22442. {
  22443. name: "Normal",
  22444. height: math.unit(5 + 4 / 12, "feet"),
  22445. default: true
  22446. },
  22447. {
  22448. name: "Macro",
  22449. height: math.unit(100, "feet")
  22450. },
  22451. {
  22452. name: "Macro+",
  22453. height: math.unit(140, "feet")
  22454. },
  22455. {
  22456. name: "Macro++",
  22457. height: math.unit(300, "feet")
  22458. },
  22459. ]
  22460. ))
  22461. characterMakers.push(() => makeCharacter(
  22462. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22463. {
  22464. front: {
  22465. height: math.unit(5 + 9 / 12, "feet"),
  22466. weight: math.unit(190, "lb"),
  22467. name: "Front",
  22468. image: {
  22469. source: "./media/characters/sprisk/front.svg",
  22470. extra: 1225 / 1180,
  22471. bottom: 42.7 / 1266.4
  22472. }
  22473. },
  22474. frontNsfw: {
  22475. height: math.unit(5 + 9 / 12, "feet"),
  22476. weight: math.unit(190, "lb"),
  22477. name: "Front (NSFW)",
  22478. image: {
  22479. source: "./media/characters/sprisk/front-nsfw.svg",
  22480. extra: 1225 / 1180,
  22481. bottom: 42.7 / 1266.4
  22482. }
  22483. },
  22484. back: {
  22485. height: math.unit(5 + 9 / 12, "feet"),
  22486. weight: math.unit(190, "lb"),
  22487. name: "Back",
  22488. image: {
  22489. source: "./media/characters/sprisk/back.svg",
  22490. extra: 1247 / 1200,
  22491. bottom: 5.6 / 1253.04
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Tiny",
  22498. height: math.unit(2, "inches")
  22499. },
  22500. {
  22501. name: "Normal",
  22502. height: math.unit(5 + 9 / 12, "feet"),
  22503. default: true
  22504. },
  22505. {
  22506. name: "Mini Macro",
  22507. height: math.unit(18, "feet")
  22508. },
  22509. {
  22510. name: "Macro",
  22511. height: math.unit(100, "feet")
  22512. },
  22513. {
  22514. name: "MACRO",
  22515. height: math.unit(50, "miles")
  22516. },
  22517. {
  22518. name: "M A C R O",
  22519. height: math.unit(300, "miles")
  22520. },
  22521. ]
  22522. ))
  22523. characterMakers.push(() => makeCharacter(
  22524. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22525. {
  22526. side: {
  22527. height: math.unit(15.6, "meters"),
  22528. weight: math.unit(700000, "kg"),
  22529. name: "Side",
  22530. image: {
  22531. source: "./media/characters/bunsen/side.svg",
  22532. extra: 1644 / 358
  22533. }
  22534. },
  22535. foot: {
  22536. height: math.unit(1.611 * 1644 / 358, "meter"),
  22537. name: "Foot",
  22538. image: {
  22539. source: "./media/characters/bunsen/foot.svg"
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Small",
  22546. height: math.unit(10, "feet")
  22547. },
  22548. {
  22549. name: "Normal",
  22550. height: math.unit(15.6, "meters"),
  22551. default: true
  22552. },
  22553. ]
  22554. ))
  22555. characterMakers.push(() => makeCharacter(
  22556. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22557. {
  22558. front: {
  22559. height: math.unit(4 + 11 / 12, "feet"),
  22560. weight: math.unit(140, "lb"),
  22561. name: "Front",
  22562. image: {
  22563. source: "./media/characters/sesh/front.svg",
  22564. extra: 3420 / 3231,
  22565. bottom: 72 / 3949.5
  22566. }
  22567. },
  22568. },
  22569. [
  22570. {
  22571. name: "Normal",
  22572. height: math.unit(4 + 11 / 12, "feet")
  22573. },
  22574. {
  22575. name: "Grown",
  22576. height: math.unit(15, "feet"),
  22577. default: true
  22578. },
  22579. {
  22580. name: "Macro",
  22581. height: math.unit(1500, "feet")
  22582. },
  22583. {
  22584. name: "Megamacro",
  22585. height: math.unit(30, "miles")
  22586. },
  22587. {
  22588. name: "Continental",
  22589. height: math.unit(3000, "miles")
  22590. },
  22591. {
  22592. name: "Gravity Mass",
  22593. height: math.unit(300000, "miles")
  22594. },
  22595. {
  22596. name: "Planet Buster",
  22597. height: math.unit(30000000, "miles")
  22598. },
  22599. {
  22600. name: "Big",
  22601. height: math.unit(3000000000, "miles")
  22602. },
  22603. ]
  22604. ))
  22605. characterMakers.push(() => makeCharacter(
  22606. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22607. {
  22608. front: {
  22609. height: math.unit(9, "feet"),
  22610. weight: math.unit(350, "lb"),
  22611. name: "Front",
  22612. image: {
  22613. source: "./media/characters/pepper/front.svg",
  22614. extra: 1448 / 1312,
  22615. bottom: 9.4 / 1457.88
  22616. }
  22617. },
  22618. back: {
  22619. height: math.unit(9, "feet"),
  22620. weight: math.unit(350, "lb"),
  22621. name: "Back",
  22622. image: {
  22623. source: "./media/characters/pepper/back.svg",
  22624. extra: 1423 / 1300,
  22625. bottom: 4.6 / 1429
  22626. }
  22627. },
  22628. maw: {
  22629. height: math.unit(0.932, "feet"),
  22630. name: "Maw",
  22631. image: {
  22632. source: "./media/characters/pepper/maw.svg"
  22633. }
  22634. },
  22635. },
  22636. [
  22637. {
  22638. name: "Normal",
  22639. height: math.unit(9, "feet"),
  22640. default: true
  22641. },
  22642. ]
  22643. ))
  22644. characterMakers.push(() => makeCharacter(
  22645. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22646. {
  22647. front: {
  22648. height: math.unit(6, "feet"),
  22649. weight: math.unit(150, "lb"),
  22650. name: "Front",
  22651. image: {
  22652. source: "./media/characters/maelstrom/front.svg",
  22653. extra: 2100 / 1883,
  22654. bottom: 94 / 2196.7
  22655. }
  22656. },
  22657. },
  22658. [
  22659. {
  22660. name: "Less Kaiju",
  22661. height: math.unit(200, "feet")
  22662. },
  22663. {
  22664. name: "Kaiju",
  22665. height: math.unit(400, "feet"),
  22666. default: true
  22667. },
  22668. {
  22669. name: "Kaiju-er",
  22670. height: math.unit(600, "feet")
  22671. },
  22672. ]
  22673. ))
  22674. characterMakers.push(() => makeCharacter(
  22675. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22676. {
  22677. front: {
  22678. height: math.unit(6 + 5 / 12, "feet"),
  22679. weight: math.unit(180, "lb"),
  22680. name: "Front",
  22681. image: {
  22682. source: "./media/characters/lexir/front.svg",
  22683. extra: 180 / 172,
  22684. bottom: 12 / 192
  22685. }
  22686. },
  22687. back: {
  22688. height: math.unit(6 + 5 / 12, "feet"),
  22689. weight: math.unit(180, "lb"),
  22690. name: "Back",
  22691. image: {
  22692. source: "./media/characters/lexir/back.svg",
  22693. extra: 183.84 / 175.5,
  22694. bottom: 3.1 / 187
  22695. }
  22696. },
  22697. },
  22698. [
  22699. {
  22700. name: "Very Smal",
  22701. height: math.unit(1, "nm")
  22702. },
  22703. {
  22704. name: "Normal",
  22705. height: math.unit(6 + 5 / 12, "feet"),
  22706. default: true
  22707. },
  22708. {
  22709. name: "Macro",
  22710. height: math.unit(1, "mile")
  22711. },
  22712. {
  22713. name: "Megamacro",
  22714. height: math.unit(50, "miles")
  22715. },
  22716. ]
  22717. ))
  22718. characterMakers.push(() => makeCharacter(
  22719. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22720. {
  22721. front: {
  22722. height: math.unit(1.5, "meters"),
  22723. weight: math.unit(100, "lb"),
  22724. name: "Front",
  22725. image: {
  22726. source: "./media/characters/maksio/front.svg",
  22727. extra: 1549 / 1531,
  22728. bottom: 123.7 / 1674.5429
  22729. }
  22730. },
  22731. back: {
  22732. height: math.unit(1.5, "meters"),
  22733. weight: math.unit(100, "lb"),
  22734. name: "Back",
  22735. image: {
  22736. source: "./media/characters/maksio/back.svg",
  22737. extra: 1541 / 1509,
  22738. bottom: 97 / 1639
  22739. }
  22740. },
  22741. hand: {
  22742. height: math.unit(0.621, "feet"),
  22743. name: "Hand",
  22744. image: {
  22745. source: "./media/characters/maksio/hand.svg"
  22746. }
  22747. },
  22748. foot: {
  22749. height: math.unit(1.611, "feet"),
  22750. name: "Foot",
  22751. image: {
  22752. source: "./media/characters/maksio/foot.svg"
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Shrunken",
  22759. height: math.unit(10, "cm")
  22760. },
  22761. {
  22762. name: "Normal",
  22763. height: math.unit(150, "cm"),
  22764. default: true
  22765. },
  22766. ]
  22767. ))
  22768. characterMakers.push(() => makeCharacter(
  22769. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22770. {
  22771. front: {
  22772. height: math.unit(100, "feet"),
  22773. name: "Front",
  22774. image: {
  22775. source: "./media/characters/erza-bear/front.svg",
  22776. extra: 2449 / 2390,
  22777. bottom: 46 / 2494
  22778. }
  22779. },
  22780. back: {
  22781. height: math.unit(100, "feet"),
  22782. name: "Back",
  22783. image: {
  22784. source: "./media/characters/erza-bear/back.svg",
  22785. extra: 2489 / 2430,
  22786. bottom: 85.4 / 2480
  22787. }
  22788. },
  22789. tail: {
  22790. height: math.unit(42, "feet"),
  22791. name: "Tail",
  22792. image: {
  22793. source: "./media/characters/erza-bear/tail.svg"
  22794. }
  22795. },
  22796. tongue: {
  22797. height: math.unit(8, "feet"),
  22798. name: "Tongue",
  22799. image: {
  22800. source: "./media/characters/erza-bear/tongue.svg"
  22801. }
  22802. },
  22803. dick: {
  22804. height: math.unit(10.5, "feet"),
  22805. name: "Dick",
  22806. image: {
  22807. source: "./media/characters/erza-bear/dick.svg"
  22808. }
  22809. },
  22810. dickVertical: {
  22811. height: math.unit(16.9, "feet"),
  22812. name: "Dick (Vertical)",
  22813. image: {
  22814. source: "./media/characters/erza-bear/dick-vertical.svg"
  22815. }
  22816. },
  22817. },
  22818. [
  22819. {
  22820. name: "Macro",
  22821. height: math.unit(100, "feet"),
  22822. default: true
  22823. },
  22824. ]
  22825. ))
  22826. characterMakers.push(() => makeCharacter(
  22827. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22828. {
  22829. front: {
  22830. height: math.unit(172, "cm"),
  22831. weight: math.unit(73, "kg"),
  22832. name: "Front",
  22833. image: {
  22834. source: "./media/characters/violet-flor/front.svg",
  22835. extra: 1530 / 1442,
  22836. bottom: 61.9 / 1588.8
  22837. }
  22838. },
  22839. back: {
  22840. height: math.unit(180, "cm"),
  22841. weight: math.unit(73, "kg"),
  22842. name: "Back",
  22843. image: {
  22844. source: "./media/characters/violet-flor/back.svg",
  22845. extra: 1692 / 1630,
  22846. bottom: 20 / 1712
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Normal",
  22853. height: math.unit(172, "cm"),
  22854. default: true
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(6, "feet"),
  22863. weight: math.unit(220, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/lynn-rhea/front.svg",
  22867. extra: 310 / 273
  22868. }
  22869. },
  22870. back: {
  22871. height: math.unit(6, "feet"),
  22872. weight: math.unit(220, "lb"),
  22873. name: "Back",
  22874. image: {
  22875. source: "./media/characters/lynn-rhea/back.svg",
  22876. extra: 310 / 273
  22877. }
  22878. },
  22879. dicks: {
  22880. height: math.unit(0.9, "feet"),
  22881. name: "Dicks",
  22882. image: {
  22883. source: "./media/characters/lynn-rhea/dicks.svg"
  22884. }
  22885. },
  22886. slit: {
  22887. height: math.unit(0.4, "feet"),
  22888. name: "Slit",
  22889. image: {
  22890. source: "./media/characters/lynn-rhea/slit.svg"
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Micro",
  22897. height: math.unit(1, "inch")
  22898. },
  22899. {
  22900. name: "Macro",
  22901. height: math.unit(60, "feet"),
  22902. default: true
  22903. },
  22904. {
  22905. name: "Megamacro",
  22906. height: math.unit(2, "miles")
  22907. },
  22908. {
  22909. name: "Gigamacro",
  22910. height: math.unit(3, "earths")
  22911. },
  22912. {
  22913. name: "Galactic",
  22914. height: math.unit(0.8, "galaxies")
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22920. {
  22921. front: {
  22922. height: math.unit(1600, "feet"),
  22923. weight: math.unit(85758785169, "kg"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/valathos/front.svg",
  22927. extra: 1451 / 1339
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Macro",
  22934. height: math.unit(1600, "feet"),
  22935. default: true
  22936. },
  22937. ]
  22938. ))
  22939. characterMakers.push(() => makeCharacter(
  22940. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22941. {
  22942. front: {
  22943. height: math.unit(7 + 5 / 12, "feet"),
  22944. weight: math.unit(300, "lb"),
  22945. name: "Front",
  22946. image: {
  22947. source: "./media/characters/azula/front.svg",
  22948. extra: 3208 / 2880,
  22949. bottom: 80.2 / 3277
  22950. }
  22951. },
  22952. back: {
  22953. height: math.unit(7 + 5 / 12, "feet"),
  22954. weight: math.unit(300, "lb"),
  22955. name: "Back",
  22956. image: {
  22957. source: "./media/characters/azula/back.svg",
  22958. extra: 3169 / 2822,
  22959. bottom: 150.6 / 3321
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "Normal",
  22966. height: math.unit(7 + 5 / 12, "feet"),
  22967. default: true
  22968. },
  22969. {
  22970. name: "Big",
  22971. height: math.unit(20, "feet")
  22972. },
  22973. ]
  22974. ))
  22975. characterMakers.push(() => makeCharacter(
  22976. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22977. {
  22978. front: {
  22979. height: math.unit(5 + 1 / 12, "feet"),
  22980. weight: math.unit(110, "lb"),
  22981. name: "Front",
  22982. image: {
  22983. source: "./media/characters/rupert/front.svg",
  22984. extra: 1549 / 1495,
  22985. bottom: 54.2 / 1604.4
  22986. }
  22987. },
  22988. },
  22989. [
  22990. {
  22991. name: "Normal",
  22992. height: math.unit(5 + 1 / 12, "feet"),
  22993. default: true
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22999. {
  23000. front: {
  23001. height: math.unit(8 + 4 / 12, "feet"),
  23002. weight: math.unit(350, "lb"),
  23003. name: "Front",
  23004. image: {
  23005. source: "./media/characters/sheera-castellar/front.svg",
  23006. extra: 1957 / 1894,
  23007. bottom: 26.97 / 1975.017
  23008. }
  23009. },
  23010. side: {
  23011. height: math.unit(8 + 4 / 12, "feet"),
  23012. weight: math.unit(350, "lb"),
  23013. name: "Side",
  23014. image: {
  23015. source: "./media/characters/sheera-castellar/side.svg",
  23016. extra: 1957 / 1894
  23017. }
  23018. },
  23019. back: {
  23020. height: math.unit(8 + 4 / 12, "feet"),
  23021. weight: math.unit(350, "lb"),
  23022. name: "Back",
  23023. image: {
  23024. source: "./media/characters/sheera-castellar/back.svg",
  23025. extra: 1957 / 1894
  23026. }
  23027. },
  23028. angled: {
  23029. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23030. weight: math.unit(350, "lb"),
  23031. name: "Angled",
  23032. image: {
  23033. source: "./media/characters/sheera-castellar/angled.svg",
  23034. extra: 1807 / 1707,
  23035. bottom: 68 / 1875
  23036. }
  23037. },
  23038. genitals: {
  23039. height: math.unit(2.2, "feet"),
  23040. name: "Genitals",
  23041. image: {
  23042. source: "./media/characters/sheera-castellar/genitals.svg"
  23043. }
  23044. },
  23045. taur: {
  23046. height: math.unit(10 + 6/12, "feet"),
  23047. name: "Taur",
  23048. image: {
  23049. source: "./media/characters/sheera-castellar/taur.svg",
  23050. extra: 2017/1909,
  23051. bottom: 185/2202
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(8 + 4 / 12, "feet")
  23059. },
  23060. {
  23061. name: "Macro",
  23062. height: math.unit(150, "feet"),
  23063. default: true
  23064. },
  23065. {
  23066. name: "Macro+",
  23067. height: math.unit(800, "feet")
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Jaipur", species: ["black-panther"], 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/jaipur/front.svg",
  23080. extra: 3860 / 3731,
  23081. bottom: 287 / 4140
  23082. }
  23083. },
  23084. back: {
  23085. height: math.unit(6, "feet"),
  23086. weight: math.unit(150, "lb"),
  23087. name: "Back",
  23088. image: {
  23089. source: "./media/characters/jaipur/back.svg",
  23090. extra: 4060 / 3930,
  23091. bottom: 151 / 4200
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Normal",
  23098. height: math.unit(1.85, "meters"),
  23099. default: true
  23100. },
  23101. {
  23102. name: "Macro",
  23103. height: math.unit(150, "meters")
  23104. },
  23105. {
  23106. name: "Macro+",
  23107. height: math.unit(0.5, "miles")
  23108. },
  23109. {
  23110. name: "Macro++",
  23111. height: math.unit(2.5, "miles")
  23112. },
  23113. {
  23114. name: "Macro+++",
  23115. height: math.unit(12, "miles")
  23116. },
  23117. {
  23118. name: "Macro++++",
  23119. height: math.unit(120, "miles")
  23120. },
  23121. {
  23122. name: "Macro+++++",
  23123. height: math.unit(1200, "miles")
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23129. {
  23130. front: {
  23131. height: math.unit(6, "feet"),
  23132. weight: math.unit(150, "lb"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/sheila-wolf/front.svg",
  23136. extra: 1931 / 1808,
  23137. bottom: 29.5 / 1960
  23138. }
  23139. },
  23140. dick: {
  23141. height: math.unit(1.464, "feet"),
  23142. name: "Dick",
  23143. image: {
  23144. source: "./media/characters/sheila-wolf/dick.svg"
  23145. }
  23146. },
  23147. muzzle: {
  23148. height: math.unit(0.513, "feet"),
  23149. name: "Muzzle",
  23150. image: {
  23151. source: "./media/characters/sheila-wolf/muzzle.svg"
  23152. }
  23153. },
  23154. },
  23155. [
  23156. {
  23157. name: "Macro",
  23158. height: math.unit(70, "feet"),
  23159. default: true
  23160. },
  23161. ]
  23162. ))
  23163. characterMakers.push(() => makeCharacter(
  23164. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23165. {
  23166. front: {
  23167. height: math.unit(32, "meters"),
  23168. weight: math.unit(300000, "kg"),
  23169. name: "Front",
  23170. image: {
  23171. source: "./media/characters/almor/front.svg",
  23172. extra: 1408 / 1322,
  23173. bottom: 94.6 / 1506.5
  23174. }
  23175. },
  23176. },
  23177. [
  23178. {
  23179. name: "Macro",
  23180. height: math.unit(32, "meters"),
  23181. default: true
  23182. },
  23183. ]
  23184. ))
  23185. characterMakers.push(() => makeCharacter(
  23186. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23187. {
  23188. front: {
  23189. height: math.unit(7, "feet"),
  23190. weight: math.unit(200, "lb"),
  23191. name: "Front",
  23192. image: {
  23193. source: "./media/characters/silver/front.svg",
  23194. extra: 472.1 / 450.5,
  23195. bottom: 26.5 / 499.424
  23196. }
  23197. },
  23198. },
  23199. [
  23200. {
  23201. name: "Normal",
  23202. height: math.unit(7, "feet"),
  23203. default: true
  23204. },
  23205. {
  23206. name: "Macro",
  23207. height: math.unit(800, "feet")
  23208. },
  23209. {
  23210. name: "Megamacro",
  23211. height: math.unit(250, "miles")
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23217. {
  23218. front: {
  23219. height: math.unit(6, "feet"),
  23220. weight: math.unit(150, "lb"),
  23221. name: "Front",
  23222. image: {
  23223. source: "./media/characters/pliskin/front.svg",
  23224. extra: 1469 / 1359,
  23225. bottom: 70 / 1540
  23226. }
  23227. },
  23228. },
  23229. [
  23230. {
  23231. name: "Micro",
  23232. height: math.unit(3, "inches")
  23233. },
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(5 + 11 / 12, "feet"),
  23237. default: true
  23238. },
  23239. {
  23240. name: "Macro",
  23241. height: math.unit(120, "feet")
  23242. },
  23243. ]
  23244. ))
  23245. characterMakers.push(() => makeCharacter(
  23246. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23247. {
  23248. front: {
  23249. height: math.unit(6, "feet"),
  23250. weight: math.unit(150, "lb"),
  23251. name: "Front",
  23252. image: {
  23253. source: "./media/characters/sammy/front.svg",
  23254. extra: 1193 / 1089,
  23255. bottom: 30.5 / 1226
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Macro",
  23262. height: math.unit(1700, "feet"),
  23263. default: true
  23264. },
  23265. {
  23266. name: "Examacro",
  23267. height: math.unit(2.5e9, "lightyears")
  23268. },
  23269. ]
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23273. {
  23274. front: {
  23275. height: math.unit(21, "meters"),
  23276. weight: math.unit(12, "tonnes"),
  23277. name: "Front",
  23278. image: {
  23279. source: "./media/characters/kuru/front.svg",
  23280. extra: 4301 / 3785,
  23281. bottom: 371.3 / 4691
  23282. }
  23283. },
  23284. },
  23285. [
  23286. {
  23287. name: "Macro",
  23288. height: math.unit(21, "meters"),
  23289. default: true
  23290. },
  23291. ]
  23292. ))
  23293. characterMakers.push(() => makeCharacter(
  23294. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23295. {
  23296. front: {
  23297. height: math.unit(23, "meters"),
  23298. weight: math.unit(12.2, "tonnes"),
  23299. name: "Front",
  23300. image: {
  23301. source: "./media/characters/rakka/front.svg",
  23302. extra: 4670 / 4169,
  23303. bottom: 301 / 4968.7
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Macro",
  23310. height: math.unit(23, "meters"),
  23311. default: true
  23312. },
  23313. ]
  23314. ))
  23315. characterMakers.push(() => makeCharacter(
  23316. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23317. {
  23318. front: {
  23319. height: math.unit(6, "feet"),
  23320. weight: math.unit(150, "lb"),
  23321. name: "Front",
  23322. image: {
  23323. source: "./media/characters/rhys-feline/front.svg",
  23324. extra: 2488 / 2308,
  23325. bottom: 35.67 / 2519.19
  23326. }
  23327. },
  23328. },
  23329. [
  23330. {
  23331. name: "Really Small",
  23332. height: math.unit(1, "nm")
  23333. },
  23334. {
  23335. name: "Micro",
  23336. height: math.unit(4, "inches")
  23337. },
  23338. {
  23339. name: "Normal",
  23340. height: math.unit(4 + 10 / 12, "feet"),
  23341. default: true
  23342. },
  23343. {
  23344. name: "Macro",
  23345. height: math.unit(100, "feet")
  23346. },
  23347. {
  23348. name: "Megamacto",
  23349. height: math.unit(50, "miles")
  23350. },
  23351. ]
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23355. {
  23356. side: {
  23357. height: math.unit(30, "feet"),
  23358. weight: math.unit(35000, "kg"),
  23359. name: "Side",
  23360. image: {
  23361. source: "./media/characters/alydar/side.svg",
  23362. extra: 234 / 222,
  23363. bottom: 6.5 / 241
  23364. }
  23365. },
  23366. front: {
  23367. height: math.unit(30, "feet"),
  23368. weight: math.unit(35000, "kg"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/alydar/front.svg",
  23372. extra: 223.37 / 210.2,
  23373. bottom: 22.3 / 246.76
  23374. }
  23375. },
  23376. top: {
  23377. height: math.unit(64.54, "feet"),
  23378. weight: math.unit(35000, "kg"),
  23379. name: "Top",
  23380. image: {
  23381. source: "./media/characters/alydar/top.svg"
  23382. }
  23383. },
  23384. anthro: {
  23385. height: math.unit(30, "feet"),
  23386. weight: math.unit(9000, "kg"),
  23387. name: "Anthro",
  23388. image: {
  23389. source: "./media/characters/alydar/anthro.svg",
  23390. extra: 432 / 421,
  23391. bottom: 7.18 / 440
  23392. }
  23393. },
  23394. maw: {
  23395. height: math.unit(11.693, "feet"),
  23396. name: "Maw",
  23397. image: {
  23398. source: "./media/characters/alydar/maw.svg"
  23399. }
  23400. },
  23401. head: {
  23402. height: math.unit(11.693, "feet"),
  23403. name: "Head",
  23404. image: {
  23405. source: "./media/characters/alydar/head.svg"
  23406. }
  23407. },
  23408. headAlt: {
  23409. height: math.unit(12.861, "feet"),
  23410. name: "Head (Alt)",
  23411. image: {
  23412. source: "./media/characters/alydar/head-alt.svg"
  23413. }
  23414. },
  23415. wing: {
  23416. height: math.unit(20.712, "feet"),
  23417. name: "Wing",
  23418. image: {
  23419. source: "./media/characters/alydar/wing.svg"
  23420. }
  23421. },
  23422. wingFeather: {
  23423. height: math.unit(9.662, "feet"),
  23424. name: "Wing Feather",
  23425. image: {
  23426. source: "./media/characters/alydar/wing-feather.svg"
  23427. }
  23428. },
  23429. countourFeather: {
  23430. height: math.unit(4.154, "feet"),
  23431. name: "Contour Feather",
  23432. image: {
  23433. source: "./media/characters/alydar/contour-feather.svg"
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Diplomatic",
  23440. height: math.unit(13, "feet"),
  23441. default: true
  23442. },
  23443. {
  23444. name: "Small",
  23445. height: math.unit(30, "feet")
  23446. },
  23447. {
  23448. name: "Normal",
  23449. height: math.unit(95, "feet"),
  23450. default: true
  23451. },
  23452. {
  23453. name: "Large",
  23454. height: math.unit(285, "feet")
  23455. },
  23456. {
  23457. name: "Incomprehensible",
  23458. height: math.unit(450, "megameters")
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23464. {
  23465. side: {
  23466. height: math.unit(11, "feet"),
  23467. weight: math.unit(1750, "kg"),
  23468. name: "Side",
  23469. image: {
  23470. source: "./media/characters/selicia/side.svg",
  23471. extra: 440 / 396,
  23472. bottom: 24.8 / 465.979
  23473. }
  23474. },
  23475. maw: {
  23476. height: math.unit(4.665, "feet"),
  23477. name: "Maw",
  23478. image: {
  23479. source: "./media/characters/selicia/maw.svg"
  23480. }
  23481. },
  23482. },
  23483. [
  23484. {
  23485. name: "Normal",
  23486. height: math.unit(11, "feet"),
  23487. default: true
  23488. },
  23489. ]
  23490. ))
  23491. characterMakers.push(() => makeCharacter(
  23492. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23493. {
  23494. side: {
  23495. height: math.unit(2 + 6 / 12, "feet"),
  23496. weight: math.unit(30, "lb"),
  23497. name: "Side",
  23498. image: {
  23499. source: "./media/characters/layla/side.svg",
  23500. extra: 244 / 188,
  23501. bottom: 18.2 / 262.1
  23502. }
  23503. },
  23504. back: {
  23505. height: math.unit(2 + 6 / 12, "feet"),
  23506. weight: math.unit(30, "lb"),
  23507. name: "Back",
  23508. image: {
  23509. source: "./media/characters/layla/back.svg",
  23510. extra: 308 / 241.5,
  23511. bottom: 8.9 / 316.8
  23512. }
  23513. },
  23514. cumming: {
  23515. height: math.unit(2 + 6 / 12, "feet"),
  23516. weight: math.unit(30, "lb"),
  23517. name: "Cumming",
  23518. image: {
  23519. source: "./media/characters/layla/cumming.svg",
  23520. extra: 342 / 279,
  23521. bottom: 595 / 938
  23522. }
  23523. },
  23524. dickFlaccid: {
  23525. height: math.unit(2.595, "feet"),
  23526. name: "Flaccid Genitals",
  23527. image: {
  23528. source: "./media/characters/layla/dick-flaccid.svg"
  23529. }
  23530. },
  23531. dickErect: {
  23532. height: math.unit(2.359, "feet"),
  23533. name: "Erect Genitals",
  23534. image: {
  23535. source: "./media/characters/layla/dick-erect.svg"
  23536. }
  23537. },
  23538. dragon: {
  23539. height: math.unit(40, "feet"),
  23540. name: "Dragon",
  23541. image: {
  23542. source: "./media/characters/layla/dragon.svg",
  23543. extra: 610/535,
  23544. bottom: 367/977
  23545. }
  23546. },
  23547. taur: {
  23548. height: math.unit(30, "feet"),
  23549. name: "Taur",
  23550. image: {
  23551. source: "./media/characters/layla/taur.svg",
  23552. extra: 1268/1199,
  23553. bottom: 112/1380
  23554. }
  23555. },
  23556. },
  23557. [
  23558. {
  23559. name: "Micro",
  23560. height: math.unit(1, "inch")
  23561. },
  23562. {
  23563. name: "Small",
  23564. height: math.unit(1, "foot")
  23565. },
  23566. {
  23567. name: "Normal",
  23568. height: math.unit(2 + 6 / 12, "feet"),
  23569. default: true
  23570. },
  23571. {
  23572. name: "Macro",
  23573. height: math.unit(200, "feet")
  23574. },
  23575. {
  23576. name: "Megamacro",
  23577. height: math.unit(1000, "miles")
  23578. },
  23579. {
  23580. name: "Planetary",
  23581. height: math.unit(8000, "miles")
  23582. },
  23583. {
  23584. name: "True Layla",
  23585. height: math.unit(200000 * 7, "multiverses")
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23591. {
  23592. back: {
  23593. height: math.unit(10.5, "feet"),
  23594. weight: math.unit(800, "lb"),
  23595. name: "Back",
  23596. image: {
  23597. source: "./media/characters/knox/back.svg",
  23598. extra: 1486 / 1089,
  23599. bottom: 107 / 1601.4
  23600. }
  23601. },
  23602. side: {
  23603. height: math.unit(10.5, "feet"),
  23604. weight: math.unit(800, "lb"),
  23605. name: "Side",
  23606. image: {
  23607. source: "./media/characters/knox/side.svg",
  23608. extra: 244 / 218,
  23609. bottom: 14 / 260
  23610. }
  23611. },
  23612. },
  23613. [
  23614. {
  23615. name: "Compact",
  23616. height: math.unit(10.5, "feet"),
  23617. default: true
  23618. },
  23619. {
  23620. name: "Dynamax",
  23621. height: math.unit(210, "feet")
  23622. },
  23623. {
  23624. name: "Full Macro",
  23625. height: math.unit(850, "feet")
  23626. },
  23627. ]
  23628. ))
  23629. characterMakers.push(() => makeCharacter(
  23630. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23631. {
  23632. front: {
  23633. height: math.unit(6, "feet"),
  23634. weight: math.unit(152, "lb"),
  23635. name: "Front",
  23636. image: {
  23637. source: "./media/characters/shin-pikachu/front.svg",
  23638. extra: 1854/1602,
  23639. bottom: 166/2020
  23640. }
  23641. },
  23642. hand: {
  23643. height: math.unit(1.055, "feet"),
  23644. name: "Hand",
  23645. image: {
  23646. source: "./media/characters/shin-pikachu/hand.svg"
  23647. }
  23648. },
  23649. foot: {
  23650. height: math.unit(1.1, "feet"),
  23651. name: "Foot",
  23652. image: {
  23653. source: "./media/characters/shin-pikachu/foot.svg"
  23654. }
  23655. },
  23656. collar: {
  23657. height: math.unit(0.386, "feet"),
  23658. name: "Collar",
  23659. image: {
  23660. source: "./media/characters/shin-pikachu/collar.svg"
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Smallest",
  23667. height: math.unit(0.5, "inches")
  23668. },
  23669. {
  23670. name: "Micro",
  23671. height: math.unit(6, "inches")
  23672. },
  23673. {
  23674. name: "Normal",
  23675. height: math.unit(6, "feet"),
  23676. default: true
  23677. },
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(150, "feet")
  23681. },
  23682. ]
  23683. ))
  23684. characterMakers.push(() => makeCharacter(
  23685. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23686. {
  23687. front: {
  23688. height: math.unit(28, "feet"),
  23689. weight: math.unit(10500, "lb"),
  23690. name: "Front",
  23691. image: {
  23692. source: "./media/characters/kayda/front.svg",
  23693. extra: 1536 / 1428,
  23694. bottom: 68.7 / 1603
  23695. }
  23696. },
  23697. back: {
  23698. height: math.unit(28, "feet"),
  23699. weight: math.unit(10500, "lb"),
  23700. name: "Back",
  23701. image: {
  23702. source: "./media/characters/kayda/back.svg",
  23703. extra: 1557 / 1464,
  23704. bottom: 39.5 / 1597.49
  23705. }
  23706. },
  23707. dick: {
  23708. height: math.unit(3.858, "feet"),
  23709. name: "Dick",
  23710. image: {
  23711. source: "./media/characters/kayda/dick.svg"
  23712. }
  23713. },
  23714. },
  23715. [
  23716. {
  23717. name: "Macro",
  23718. height: math.unit(28, "feet"),
  23719. default: true
  23720. },
  23721. ]
  23722. ))
  23723. characterMakers.push(() => makeCharacter(
  23724. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23725. {
  23726. front: {
  23727. height: math.unit(10 + 11 / 12, "feet"),
  23728. weight: math.unit(1400, "lb"),
  23729. name: "Front",
  23730. image: {
  23731. source: "./media/characters/brian/front.svg",
  23732. extra: 737 / 692,
  23733. bottom: 55.4 / 785
  23734. }
  23735. },
  23736. },
  23737. [
  23738. {
  23739. name: "Normal",
  23740. height: math.unit(10 + 11 / 12, "feet"),
  23741. default: true
  23742. },
  23743. ]
  23744. ))
  23745. characterMakers.push(() => makeCharacter(
  23746. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23747. {
  23748. front: {
  23749. height: math.unit(5 + 8 / 12, "feet"),
  23750. weight: math.unit(140, "lb"),
  23751. name: "Front",
  23752. image: {
  23753. source: "./media/characters/khemri/front.svg",
  23754. extra: 4780 / 4059,
  23755. bottom: 80.1 / 4859.25
  23756. }
  23757. },
  23758. },
  23759. [
  23760. {
  23761. name: "Micro",
  23762. height: math.unit(6, "inches")
  23763. },
  23764. {
  23765. name: "Normal",
  23766. height: math.unit(5 + 8 / 12, "feet"),
  23767. default: true
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23773. {
  23774. front: {
  23775. height: math.unit(13, "feet"),
  23776. weight: math.unit(1700, "lb"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/felix-braveheart/front.svg",
  23780. extra: 1222 / 1157,
  23781. bottom: 53.2 / 1280
  23782. }
  23783. },
  23784. back: {
  23785. height: math.unit(13, "feet"),
  23786. weight: math.unit(1700, "lb"),
  23787. name: "Back",
  23788. image: {
  23789. source: "./media/characters/felix-braveheart/back.svg",
  23790. extra: 1277 / 1203,
  23791. bottom: 50.2 / 1327
  23792. }
  23793. },
  23794. feral: {
  23795. height: math.unit(6, "feet"),
  23796. weight: math.unit(400, "lb"),
  23797. name: "Feral",
  23798. image: {
  23799. source: "./media/characters/felix-braveheart/feral.svg",
  23800. extra: 682 / 625,
  23801. bottom: 6.9 / 688
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Normal",
  23808. height: math.unit(13, "feet"),
  23809. default: true
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23815. {
  23816. side: {
  23817. height: math.unit(5 + 11 / 12, "feet"),
  23818. weight: math.unit(1400, "lb"),
  23819. name: "Side",
  23820. image: {
  23821. source: "./media/characters/shadow-blade/side.svg",
  23822. extra: 1726 / 1267,
  23823. bottom: 58.4 / 1785
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Normal",
  23830. height: math.unit(5 + 11 / 12, "feet"),
  23831. default: true
  23832. },
  23833. ]
  23834. ))
  23835. characterMakers.push(() => makeCharacter(
  23836. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23837. {
  23838. front: {
  23839. height: math.unit(1 + 6 / 12, "feet"),
  23840. weight: math.unit(25, "lb"),
  23841. name: "Front",
  23842. image: {
  23843. source: "./media/characters/karla-halldor/front.svg",
  23844. extra: 1459 / 1383,
  23845. bottom: 12 / 1472
  23846. }
  23847. },
  23848. },
  23849. [
  23850. {
  23851. name: "Normal",
  23852. height: math.unit(1 + 6 / 12, "feet"),
  23853. default: true
  23854. },
  23855. ]
  23856. ))
  23857. characterMakers.push(() => makeCharacter(
  23858. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23859. {
  23860. front: {
  23861. height: math.unit(6 + 2 / 12, "feet"),
  23862. weight: math.unit(160, "lb"),
  23863. name: "Front",
  23864. image: {
  23865. source: "./media/characters/ariam/front.svg",
  23866. extra: 714 / 617,
  23867. bottom: 23.4 / 737,
  23868. }
  23869. },
  23870. squatting: {
  23871. height: math.unit(4.1, "feet"),
  23872. weight: math.unit(160, "lb"),
  23873. name: "Squatting",
  23874. image: {
  23875. source: "./media/characters/ariam/squatting.svg",
  23876. extra: 2617 / 2112,
  23877. bottom: 61.2 / 2681,
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Normal",
  23884. height: math.unit(6 + 2 / 12, "feet"),
  23885. default: true
  23886. },
  23887. {
  23888. name: "Normal+",
  23889. height: math.unit(4, "meters")
  23890. },
  23891. {
  23892. name: "Macro",
  23893. height: math.unit(50, "meters")
  23894. },
  23895. {
  23896. name: "Macro+",
  23897. height: math.unit(100, "meters")
  23898. },
  23899. {
  23900. name: "Megamacro",
  23901. height: math.unit(20, "km")
  23902. },
  23903. ]
  23904. ))
  23905. characterMakers.push(() => makeCharacter(
  23906. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23907. {
  23908. front: {
  23909. height: math.unit(1.67, "meters"),
  23910. weight: math.unit(140, "lb"),
  23911. name: "Front",
  23912. image: {
  23913. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23914. extra: 438 / 410,
  23915. bottom: 0.75 / 439
  23916. }
  23917. },
  23918. },
  23919. [
  23920. {
  23921. name: "Shrunken",
  23922. height: math.unit(7.6, "cm")
  23923. },
  23924. {
  23925. name: "Human Scale",
  23926. height: math.unit(1.67, "meters")
  23927. },
  23928. {
  23929. name: "Wolxi Scale",
  23930. height: math.unit(36.7, "meters"),
  23931. default: true
  23932. },
  23933. ]
  23934. ))
  23935. characterMakers.push(() => makeCharacter(
  23936. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23937. {
  23938. front: {
  23939. height: math.unit(1.73, "meters"),
  23940. weight: math.unit(240, "lb"),
  23941. name: "Front",
  23942. image: {
  23943. source: "./media/characters/izue-two-mothers/front.svg",
  23944. extra: 469 / 437,
  23945. bottom: 1.24 / 470.6
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Shrunken",
  23952. height: math.unit(7.86, "cm")
  23953. },
  23954. {
  23955. name: "Human Scale",
  23956. height: math.unit(1.73, "meters")
  23957. },
  23958. {
  23959. name: "Wolxi Scale",
  23960. height: math.unit(38, "meters"),
  23961. default: true
  23962. },
  23963. ]
  23964. ))
  23965. characterMakers.push(() => makeCharacter(
  23966. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23967. {
  23968. front: {
  23969. height: math.unit(1.55, "meters"),
  23970. weight: math.unit(120, "lb"),
  23971. name: "Front",
  23972. image: {
  23973. source: "./media/characters/teeku-love-shack/front.svg",
  23974. extra: 387 / 362,
  23975. bottom: 1.51 / 388
  23976. }
  23977. },
  23978. },
  23979. [
  23980. {
  23981. name: "Shrunken",
  23982. height: math.unit(7, "cm")
  23983. },
  23984. {
  23985. name: "Human Scale",
  23986. height: math.unit(1.55, "meters")
  23987. },
  23988. {
  23989. name: "Wolxi Scale",
  23990. height: math.unit(34.1, "meters"),
  23991. default: true
  23992. },
  23993. ]
  23994. ))
  23995. characterMakers.push(() => makeCharacter(
  23996. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23997. {
  23998. front: {
  23999. height: math.unit(1.83, "meters"),
  24000. weight: math.unit(135, "lb"),
  24001. name: "Front",
  24002. image: {
  24003. source: "./media/characters/dejma-the-red/front.svg",
  24004. extra: 480 / 458,
  24005. bottom: 1.8 / 482
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "Shrunken",
  24012. height: math.unit(8.3, "cm")
  24013. },
  24014. {
  24015. name: "Human Scale",
  24016. height: math.unit(1.83, "meters")
  24017. },
  24018. {
  24019. name: "Wolxi Scale",
  24020. height: math.unit(40, "meters"),
  24021. default: true
  24022. },
  24023. ]
  24024. ))
  24025. characterMakers.push(() => makeCharacter(
  24026. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24027. {
  24028. front: {
  24029. height: math.unit(1.78, "meters"),
  24030. weight: math.unit(65, "kg"),
  24031. name: "Front",
  24032. image: {
  24033. source: "./media/characters/aki/front.svg",
  24034. extra: 452 / 415
  24035. }
  24036. },
  24037. frontNsfw: {
  24038. height: math.unit(1.78, "meters"),
  24039. weight: math.unit(65, "kg"),
  24040. name: "Front (NSFW)",
  24041. image: {
  24042. source: "./media/characters/aki/front-nsfw.svg",
  24043. extra: 452 / 415
  24044. }
  24045. },
  24046. back: {
  24047. height: math.unit(1.78, "meters"),
  24048. weight: math.unit(65, "kg"),
  24049. name: "Back",
  24050. image: {
  24051. source: "./media/characters/aki/back.svg",
  24052. extra: 452 / 415
  24053. }
  24054. },
  24055. rump: {
  24056. height: math.unit(2.05, "feet"),
  24057. name: "Rump",
  24058. image: {
  24059. source: "./media/characters/aki/rump.svg"
  24060. }
  24061. },
  24062. dick: {
  24063. height: math.unit(0.95, "feet"),
  24064. name: "Dick",
  24065. image: {
  24066. source: "./media/characters/aki/dick.svg"
  24067. }
  24068. },
  24069. },
  24070. [
  24071. {
  24072. name: "Micro",
  24073. height: math.unit(15, "cm")
  24074. },
  24075. {
  24076. name: "Normal",
  24077. height: math.unit(178, "cm"),
  24078. default: true
  24079. },
  24080. {
  24081. name: "Macro",
  24082. height: math.unit(214, "m")
  24083. },
  24084. {
  24085. name: "Macro+",
  24086. height: math.unit(534, "m")
  24087. },
  24088. ]
  24089. ))
  24090. characterMakers.push(() => makeCharacter(
  24091. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24092. {
  24093. front: {
  24094. height: math.unit(5 + 5 / 12, "feet"),
  24095. weight: math.unit(120, "lb"),
  24096. name: "Front",
  24097. image: {
  24098. source: "./media/characters/ari/front.svg",
  24099. extra: 714.5 / 682,
  24100. bottom: 8 / 722.5
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Normal",
  24107. height: math.unit(5 + 5 / 12, "feet")
  24108. },
  24109. {
  24110. name: "Macro",
  24111. height: math.unit(100, "feet"),
  24112. default: true
  24113. },
  24114. {
  24115. name: "Megamacro",
  24116. height: math.unit(100, "miles")
  24117. },
  24118. {
  24119. name: "Gigamacro",
  24120. height: math.unit(80000, "miles")
  24121. },
  24122. ]
  24123. ))
  24124. characterMakers.push(() => makeCharacter(
  24125. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24126. {
  24127. side: {
  24128. height: math.unit(9, "feet"),
  24129. weight: math.unit(400, "kg"),
  24130. name: "Side",
  24131. image: {
  24132. source: "./media/characters/bolt/side.svg",
  24133. extra: 1126 / 896,
  24134. bottom: 60 / 1187.3,
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Micro",
  24141. height: math.unit(5, "inches")
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(9, "feet"),
  24146. default: true
  24147. },
  24148. {
  24149. name: "Macro",
  24150. height: math.unit(700, "feet")
  24151. },
  24152. {
  24153. name: "Max Size",
  24154. height: math.unit(1.52e22, "yottameters")
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24160. {
  24161. front: {
  24162. height: math.unit(4.53, "meters"),
  24163. weight: math.unit(3, "tons"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/draekon-sylviar/front.svg",
  24167. extra: 1228 / 1068,
  24168. bottom: 41 / 1270
  24169. }
  24170. },
  24171. tail: {
  24172. height: math.unit(1.772, "meter"),
  24173. name: "Tail",
  24174. image: {
  24175. source: "./media/characters/draekon-sylviar/tail.svg"
  24176. }
  24177. },
  24178. head: {
  24179. height: math.unit(1.331, "meter"),
  24180. name: "Head",
  24181. image: {
  24182. source: "./media/characters/draekon-sylviar/head.svg"
  24183. }
  24184. },
  24185. hand: {
  24186. height: math.unit(0.564, "meter"),
  24187. name: "Hand",
  24188. image: {
  24189. source: "./media/characters/draekon-sylviar/hand.svg"
  24190. }
  24191. },
  24192. foot: {
  24193. height: math.unit(0.621, "meter"),
  24194. name: "Foot",
  24195. image: {
  24196. source: "./media/characters/draekon-sylviar/foot.svg",
  24197. bottom: 32 / 324
  24198. }
  24199. },
  24200. dick: {
  24201. height: math.unit(61, "cm"),
  24202. name: "Dick",
  24203. image: {
  24204. source: "./media/characters/draekon-sylviar/dick.svg"
  24205. }
  24206. },
  24207. dickseparated: {
  24208. height: math.unit(61, "cm"),
  24209. name: "Dick-separated",
  24210. image: {
  24211. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24212. }
  24213. },
  24214. },
  24215. [
  24216. {
  24217. name: "Small",
  24218. height: math.unit(4.53 / 2, "meters"),
  24219. default: true
  24220. },
  24221. {
  24222. name: "Normal",
  24223. height: math.unit(4.53, "meters"),
  24224. default: true
  24225. },
  24226. {
  24227. name: "Large",
  24228. height: math.unit(4.53 * 2, "meters"),
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24234. {
  24235. front: {
  24236. height: math.unit(6 + 2 / 12, "feet"),
  24237. weight: math.unit(180, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/brawler/front.svg",
  24241. extra: 3301 / 3027,
  24242. bottom: 138 / 3439
  24243. }
  24244. },
  24245. },
  24246. [
  24247. {
  24248. name: "Normal",
  24249. height: math.unit(6 + 2 / 12, "feet"),
  24250. default: true
  24251. },
  24252. ]
  24253. ))
  24254. characterMakers.push(() => makeCharacter(
  24255. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24256. {
  24257. front: {
  24258. height: math.unit(11, "feet"),
  24259. weight: math.unit(1000, "lb"),
  24260. name: "Front",
  24261. image: {
  24262. source: "./media/characters/alex/front.svg",
  24263. bottom: 44.5 / 620
  24264. }
  24265. },
  24266. },
  24267. [
  24268. {
  24269. name: "Micro",
  24270. height: math.unit(5, "inches")
  24271. },
  24272. {
  24273. name: "Normal",
  24274. height: math.unit(11, "feet"),
  24275. default: true
  24276. },
  24277. {
  24278. name: "Macro",
  24279. height: math.unit(9.5e9, "feet")
  24280. },
  24281. {
  24282. name: "Max Size",
  24283. height: math.unit(1.4e283, "yottameters")
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24289. {
  24290. female: {
  24291. height: math.unit(29.9, "m"),
  24292. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24293. name: "Female",
  24294. image: {
  24295. source: "./media/characters/zenari/female.svg",
  24296. extra: 3281.6 / 3217,
  24297. bottom: 72.2 / 3353
  24298. }
  24299. },
  24300. male: {
  24301. height: math.unit(27.7, "m"),
  24302. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24303. name: "Male",
  24304. image: {
  24305. source: "./media/characters/zenari/male.svg",
  24306. extra: 3008 / 2991,
  24307. bottom: 54.6 / 3069
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Macro",
  24314. height: math.unit(29.7, "meters"),
  24315. default: true
  24316. },
  24317. ]
  24318. ))
  24319. characterMakers.push(() => makeCharacter(
  24320. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24321. {
  24322. female: {
  24323. height: math.unit(23.8, "m"),
  24324. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24325. name: "Female",
  24326. image: {
  24327. source: "./media/characters/mactarian/female.svg",
  24328. extra: 2662 / 2569,
  24329. bottom: 73 / 2736
  24330. }
  24331. },
  24332. male: {
  24333. height: math.unit(23.8, "m"),
  24334. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24335. name: "Male",
  24336. image: {
  24337. source: "./media/characters/mactarian/male.svg",
  24338. extra: 2673 / 2600,
  24339. bottom: 76 / 2750
  24340. }
  24341. },
  24342. },
  24343. [
  24344. {
  24345. name: "Macro",
  24346. height: math.unit(23.8, "meters"),
  24347. default: true
  24348. },
  24349. ]
  24350. ))
  24351. characterMakers.push(() => makeCharacter(
  24352. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24353. {
  24354. female: {
  24355. height: math.unit(19.3, "m"),
  24356. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24357. name: "Female",
  24358. image: {
  24359. source: "./media/characters/umok/female.svg",
  24360. extra: 2186 / 2078,
  24361. bottom: 87 / 2277
  24362. }
  24363. },
  24364. male: {
  24365. height: math.unit(19.5, "m"),
  24366. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24367. name: "Male",
  24368. image: {
  24369. source: "./media/characters/umok/male.svg",
  24370. extra: 2233 / 2140,
  24371. bottom: 24.4 / 2258
  24372. }
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "Macro",
  24378. height: math.unit(19.3, "meters"),
  24379. default: true
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24385. {
  24386. female: {
  24387. height: math.unit(26.15, "m"),
  24388. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24389. name: "Female",
  24390. image: {
  24391. source: "./media/characters/joraxian/female.svg",
  24392. extra: 2912 / 2824,
  24393. bottom: 36 / 2956
  24394. }
  24395. },
  24396. male: {
  24397. height: math.unit(25.4, "m"),
  24398. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24399. name: "Male",
  24400. image: {
  24401. source: "./media/characters/joraxian/male.svg",
  24402. extra: 2877 / 2721,
  24403. bottom: 82 / 2967
  24404. }
  24405. },
  24406. },
  24407. [
  24408. {
  24409. name: "Macro",
  24410. height: math.unit(26.15, "meters"),
  24411. default: true
  24412. },
  24413. ]
  24414. ))
  24415. characterMakers.push(() => makeCharacter(
  24416. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24417. {
  24418. female: {
  24419. height: math.unit(21.6, "m"),
  24420. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24421. name: "Female",
  24422. image: {
  24423. source: "./media/characters/sthara/female.svg",
  24424. extra: 2516 / 2347,
  24425. bottom: 21.5 / 2537
  24426. }
  24427. },
  24428. male: {
  24429. height: math.unit(24, "m"),
  24430. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24431. name: "Male",
  24432. image: {
  24433. source: "./media/characters/sthara/male.svg",
  24434. extra: 2732 / 2607,
  24435. bottom: 23 / 2732
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Macro",
  24442. height: math.unit(21.6, "meters"),
  24443. default: true
  24444. },
  24445. ]
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24449. {
  24450. front: {
  24451. height: math.unit(6 + 4 / 12, "feet"),
  24452. weight: math.unit(175, "lb"),
  24453. name: "Front",
  24454. image: {
  24455. source: "./media/characters/luka-bryzant/front.svg",
  24456. extra: 311 / 289,
  24457. bottom: 4 / 315
  24458. }
  24459. },
  24460. back: {
  24461. height: math.unit(6 + 4 / 12, "feet"),
  24462. weight: math.unit(175, "lb"),
  24463. name: "Back",
  24464. image: {
  24465. source: "./media/characters/luka-bryzant/back.svg",
  24466. extra: 311 / 289,
  24467. bottom: 3.8 / 313.7
  24468. }
  24469. },
  24470. },
  24471. [
  24472. {
  24473. name: "Micro",
  24474. height: math.unit(10, "inches")
  24475. },
  24476. {
  24477. name: "Normal",
  24478. height: math.unit(6 + 4 / 12, "feet"),
  24479. default: true
  24480. },
  24481. {
  24482. name: "Large",
  24483. height: math.unit(12, "feet")
  24484. },
  24485. ]
  24486. ))
  24487. characterMakers.push(() => makeCharacter(
  24488. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24489. {
  24490. front: {
  24491. height: math.unit(5 + 7 / 12, "feet"),
  24492. weight: math.unit(185, "lb"),
  24493. name: "Front",
  24494. image: {
  24495. source: "./media/characters/aman-aquila/front.svg",
  24496. extra: 1013 / 976,
  24497. bottom: 45.6 / 1057
  24498. }
  24499. },
  24500. side: {
  24501. height: math.unit(5 + 7 / 12, "feet"),
  24502. weight: math.unit(185, "lb"),
  24503. name: "Side",
  24504. image: {
  24505. source: "./media/characters/aman-aquila/side.svg",
  24506. extra: 1054 / 1011,
  24507. bottom: 15 / 1070
  24508. }
  24509. },
  24510. back: {
  24511. height: math.unit(5 + 7 / 12, "feet"),
  24512. weight: math.unit(185, "lb"),
  24513. name: "Back",
  24514. image: {
  24515. source: "./media/characters/aman-aquila/back.svg",
  24516. extra: 1026 / 970,
  24517. bottom: 12 / 1039
  24518. }
  24519. },
  24520. head: {
  24521. height: math.unit(1.211, "feet"),
  24522. name: "Head",
  24523. image: {
  24524. source: "./media/characters/aman-aquila/head.svg",
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Minimicro",
  24531. height: math.unit(0.057, "inches")
  24532. },
  24533. {
  24534. name: "Micro",
  24535. height: math.unit(7, "inches")
  24536. },
  24537. {
  24538. name: "Mini",
  24539. height: math.unit(3 + 7 / 12, "feet")
  24540. },
  24541. {
  24542. name: "Normal",
  24543. height: math.unit(5 + 7 / 12, "feet"),
  24544. default: true
  24545. },
  24546. {
  24547. name: "Macro",
  24548. height: math.unit(157 + 7 / 12, "feet")
  24549. },
  24550. {
  24551. name: "Megamacro",
  24552. height: math.unit(1557 + 7 / 12, "feet")
  24553. },
  24554. {
  24555. name: "Gigamacro",
  24556. height: math.unit(15557 + 7 / 12, "feet")
  24557. },
  24558. ]
  24559. ))
  24560. characterMakers.push(() => makeCharacter(
  24561. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24562. {
  24563. front: {
  24564. height: math.unit(3 + 2 / 12, "inches"),
  24565. weight: math.unit(0.3, "ounces"),
  24566. name: "Front",
  24567. image: {
  24568. source: "./media/characters/hiphae/front.svg",
  24569. extra: 1931 / 1683,
  24570. bottom: 24 / 1955
  24571. }
  24572. },
  24573. },
  24574. [
  24575. {
  24576. name: "Normal",
  24577. height: math.unit(3 + 1 / 2, "inches"),
  24578. default: true
  24579. },
  24580. ]
  24581. ))
  24582. characterMakers.push(() => makeCharacter(
  24583. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24584. {
  24585. front: {
  24586. height: math.unit(5 + 10 / 12, "feet"),
  24587. weight: math.unit(165, "lb"),
  24588. name: "Front",
  24589. image: {
  24590. source: "./media/characters/nicky/front.svg",
  24591. extra: 3144 / 2886,
  24592. bottom: 45.6 / 3192
  24593. }
  24594. },
  24595. back: {
  24596. height: math.unit(5 + 10 / 12, "feet"),
  24597. weight: math.unit(165, "lb"),
  24598. name: "Back",
  24599. image: {
  24600. source: "./media/characters/nicky/back.svg",
  24601. extra: 3055 / 2804,
  24602. bottom: 28.4 / 3087
  24603. }
  24604. },
  24605. frontclothed: {
  24606. height: math.unit(5 + 10 / 12, "feet"),
  24607. weight: math.unit(165, "lb"),
  24608. name: "Front-clothed",
  24609. image: {
  24610. source: "./media/characters/nicky/front-clothed.svg",
  24611. extra: 3184.9 / 2926.9,
  24612. bottom: 86.5 / 3239.9
  24613. }
  24614. },
  24615. foot: {
  24616. height: math.unit(1.16, "feet"),
  24617. name: "Foot",
  24618. image: {
  24619. source: "./media/characters/nicky/foot.svg"
  24620. }
  24621. },
  24622. feet: {
  24623. height: math.unit(1.34, "feet"),
  24624. name: "Feet",
  24625. image: {
  24626. source: "./media/characters/nicky/feet.svg"
  24627. }
  24628. },
  24629. maw: {
  24630. height: math.unit(0.9, "feet"),
  24631. name: "Maw",
  24632. image: {
  24633. source: "./media/characters/nicky/maw.svg"
  24634. }
  24635. },
  24636. },
  24637. [
  24638. {
  24639. name: "Normal",
  24640. height: math.unit(5 + 10 / 12, "feet"),
  24641. default: true
  24642. },
  24643. {
  24644. name: "Macro",
  24645. height: math.unit(60, "feet")
  24646. },
  24647. {
  24648. name: "Megamacro",
  24649. height: math.unit(1, "mile")
  24650. },
  24651. ]
  24652. ))
  24653. characterMakers.push(() => makeCharacter(
  24654. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24655. {
  24656. side: {
  24657. height: math.unit(10, "feet"),
  24658. weight: math.unit(600, "lb"),
  24659. name: "Side",
  24660. image: {
  24661. source: "./media/characters/blair/side.svg",
  24662. bottom: 16.6 / 475,
  24663. extra: 458 / 431
  24664. }
  24665. },
  24666. },
  24667. [
  24668. {
  24669. name: "Micro",
  24670. height: math.unit(8, "inches")
  24671. },
  24672. {
  24673. name: "Normal",
  24674. height: math.unit(10, "feet"),
  24675. default: true
  24676. },
  24677. {
  24678. name: "Macro",
  24679. height: math.unit(180, "feet")
  24680. },
  24681. ]
  24682. ))
  24683. characterMakers.push(() => makeCharacter(
  24684. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24685. {
  24686. front: {
  24687. height: math.unit(5 + 4 / 12, "feet"),
  24688. weight: math.unit(125, "lb"),
  24689. name: "Front",
  24690. image: {
  24691. source: "./media/characters/fisher/front.svg",
  24692. extra: 444 / 390,
  24693. bottom: 2 / 444.8
  24694. }
  24695. },
  24696. },
  24697. [
  24698. {
  24699. name: "Micro",
  24700. height: math.unit(4, "inches")
  24701. },
  24702. {
  24703. name: "Normal",
  24704. height: math.unit(5 + 4 / 12, "feet"),
  24705. default: true
  24706. },
  24707. {
  24708. name: "Macro",
  24709. height: math.unit(100, "feet")
  24710. },
  24711. ]
  24712. ))
  24713. characterMakers.push(() => makeCharacter(
  24714. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24715. {
  24716. front: {
  24717. height: math.unit(6.71, "feet"),
  24718. weight: math.unit(200, "lb"),
  24719. capacity: math.unit(1000000, "people"),
  24720. name: "Front",
  24721. image: {
  24722. source: "./media/characters/gliss/front.svg",
  24723. extra: 2347 / 2231,
  24724. bottom: 113 / 2462
  24725. }
  24726. },
  24727. hammerspaceSize: {
  24728. height: math.unit(6.71 * 717, "feet"),
  24729. weight: math.unit(200, "lb"),
  24730. capacity: math.unit(1000000, "people"),
  24731. name: "Hammerspace Size",
  24732. image: {
  24733. source: "./media/characters/gliss/front.svg",
  24734. extra: 2347 / 2231,
  24735. bottom: 113 / 2462
  24736. }
  24737. },
  24738. },
  24739. [
  24740. {
  24741. name: "Normal",
  24742. height: math.unit(6.71, "feet"),
  24743. default: true
  24744. },
  24745. ]
  24746. ))
  24747. characterMakers.push(() => makeCharacter(
  24748. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24749. {
  24750. side: {
  24751. height: math.unit(1.44, "m"),
  24752. weight: math.unit(80, "kg"),
  24753. name: "Side",
  24754. image: {
  24755. source: "./media/characters/dune-anderson/side.svg",
  24756. bottom: 49 / 1426
  24757. }
  24758. },
  24759. },
  24760. [
  24761. {
  24762. name: "Wolf-sized",
  24763. height: math.unit(1.44, "meters")
  24764. },
  24765. {
  24766. name: "Normal",
  24767. height: math.unit(5.05, "meters"),
  24768. default: true
  24769. },
  24770. {
  24771. name: "Big",
  24772. height: math.unit(14.4, "meters")
  24773. },
  24774. {
  24775. name: "Huge",
  24776. height: math.unit(144, "meters")
  24777. },
  24778. ]
  24779. ))
  24780. characterMakers.push(() => makeCharacter(
  24781. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24782. {
  24783. front: {
  24784. height: math.unit(7, "feet"),
  24785. weight: math.unit(425, "lb"),
  24786. name: "Front",
  24787. image: {
  24788. source: "./media/characters/hind/front.svg",
  24789. extra: 2091 / 1860,
  24790. bottom: 129 / 2220
  24791. }
  24792. },
  24793. back: {
  24794. height: math.unit(7, "feet"),
  24795. weight: math.unit(425, "lb"),
  24796. name: "Back",
  24797. image: {
  24798. source: "./media/characters/hind/back.svg",
  24799. extra: 2091 / 1860,
  24800. bottom: 24.6 / 2309
  24801. }
  24802. },
  24803. tail: {
  24804. height: math.unit(2.8, "feet"),
  24805. name: "Tail",
  24806. image: {
  24807. source: "./media/characters/hind/tail.svg"
  24808. }
  24809. },
  24810. head: {
  24811. height: math.unit(2.55, "feet"),
  24812. name: "Head",
  24813. image: {
  24814. source: "./media/characters/hind/head.svg"
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "XS",
  24821. height: math.unit(0.7, "feet")
  24822. },
  24823. {
  24824. name: "Normal",
  24825. height: math.unit(7, "feet"),
  24826. default: true
  24827. },
  24828. {
  24829. name: "XL",
  24830. height: math.unit(70, "feet")
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(6, "feet"),
  24839. weight: math.unit(150, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/tharquench-sizestealer/front.svg",
  24843. extra: 2318 / 2063,
  24844. bottom: 93.4 / 2410
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Nano",
  24851. height: math.unit(1, "mm")
  24852. },
  24853. {
  24854. name: "Micro",
  24855. height: math.unit(1, "cm")
  24856. },
  24857. {
  24858. name: "Normal",
  24859. height: math.unit(2.1, "meters"),
  24860. default: true
  24861. },
  24862. ]
  24863. ))
  24864. characterMakers.push(() => makeCharacter(
  24865. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24866. {
  24867. front: {
  24868. height: math.unit(7 + 5 / 12, "feet"),
  24869. weight: math.unit(357, "lb"),
  24870. name: "Front",
  24871. image: {
  24872. source: "./media/characters/solex-draconov/front.svg",
  24873. extra: 1993 / 1865,
  24874. bottom: 117 / 2111
  24875. }
  24876. },
  24877. },
  24878. [
  24879. {
  24880. name: "Natural Height",
  24881. height: math.unit(7 + 5 / 12, "feet"),
  24882. default: true
  24883. },
  24884. {
  24885. name: "Macro",
  24886. height: math.unit(350, "feet")
  24887. },
  24888. {
  24889. name: "Macro+",
  24890. height: math.unit(1000, "feet")
  24891. },
  24892. {
  24893. name: "Megamacro",
  24894. height: math.unit(20, "km")
  24895. },
  24896. {
  24897. name: "Megamacro+",
  24898. height: math.unit(1000, "km")
  24899. },
  24900. {
  24901. name: "Gigamacro",
  24902. height: math.unit(2.5, "Gm")
  24903. },
  24904. {
  24905. name: "Teramacro",
  24906. height: math.unit(15, "Tm")
  24907. },
  24908. {
  24909. name: "Galactic",
  24910. height: math.unit(30, "Zm")
  24911. },
  24912. {
  24913. name: "Universal",
  24914. height: math.unit(21000, "Ym")
  24915. },
  24916. {
  24917. name: "Omniversal",
  24918. height: math.unit(9.861e50, "Ym")
  24919. },
  24920. {
  24921. name: "Existential",
  24922. height: math.unit(1e300, "meters")
  24923. },
  24924. ]
  24925. ))
  24926. characterMakers.push(() => makeCharacter(
  24927. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24928. {
  24929. side: {
  24930. height: math.unit(25, "feet"),
  24931. weight: math.unit(90000, "lb"),
  24932. name: "Side",
  24933. image: {
  24934. source: "./media/characters/mandarax/side.svg",
  24935. extra: 614 / 332,
  24936. bottom: 55 / 630
  24937. }
  24938. },
  24939. head: {
  24940. height: math.unit(11.4, "feet"),
  24941. name: "Head",
  24942. image: {
  24943. source: "./media/characters/mandarax/head.svg"
  24944. }
  24945. },
  24946. belly: {
  24947. height: math.unit(33, "feet"),
  24948. name: "Belly",
  24949. capacity: math.unit(500, "people"),
  24950. image: {
  24951. source: "./media/characters/mandarax/belly.svg"
  24952. }
  24953. },
  24954. dick: {
  24955. height: math.unit(8.46, "feet"),
  24956. name: "Dick",
  24957. image: {
  24958. source: "./media/characters/mandarax/dick.svg"
  24959. }
  24960. },
  24961. top: {
  24962. height: math.unit(28, "meters"),
  24963. name: "Top",
  24964. image: {
  24965. source: "./media/characters/mandarax/top.svg"
  24966. }
  24967. },
  24968. },
  24969. [
  24970. {
  24971. name: "Normal",
  24972. height: math.unit(25, "feet"),
  24973. default: true
  24974. },
  24975. ]
  24976. ))
  24977. characterMakers.push(() => makeCharacter(
  24978. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24979. {
  24980. front: {
  24981. height: math.unit(5, "feet"),
  24982. weight: math.unit(90, "lb"),
  24983. name: "Front",
  24984. image: {
  24985. source: "./media/characters/pixil/front.svg",
  24986. extra: 2000 / 1618,
  24987. bottom: 12.3 / 2011
  24988. }
  24989. },
  24990. },
  24991. [
  24992. {
  24993. name: "Normal",
  24994. height: math.unit(5, "feet"),
  24995. default: true
  24996. },
  24997. {
  24998. name: "Megamacro",
  24999. height: math.unit(10, "miles"),
  25000. },
  25001. ]
  25002. ))
  25003. characterMakers.push(() => makeCharacter(
  25004. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25005. {
  25006. front: {
  25007. height: math.unit(7 + 2 / 12, "feet"),
  25008. weight: math.unit(200, "lb"),
  25009. name: "Front",
  25010. image: {
  25011. source: "./media/characters/angel/front.svg",
  25012. extra: 1830 / 1737,
  25013. bottom: 22.6 / 1854,
  25014. }
  25015. },
  25016. },
  25017. [
  25018. {
  25019. name: "Normal",
  25020. height: math.unit(7 + 2 / 12, "feet"),
  25021. default: true
  25022. },
  25023. {
  25024. name: "Macro",
  25025. height: math.unit(1000, "feet")
  25026. },
  25027. {
  25028. name: "Megamacro",
  25029. height: math.unit(2, "miles")
  25030. },
  25031. {
  25032. name: "Gigamacro",
  25033. height: math.unit(20, "earths")
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(5, "feet"),
  25042. weight: math.unit(180, "lb"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/mekana/front.svg",
  25046. extra: 1671 / 1605,
  25047. bottom: 3.5 / 1691
  25048. }
  25049. },
  25050. side: {
  25051. height: math.unit(5, "feet"),
  25052. weight: math.unit(180, "lb"),
  25053. name: "Side",
  25054. image: {
  25055. source: "./media/characters/mekana/side.svg",
  25056. extra: 1671 / 1605,
  25057. bottom: 3.5 / 1691
  25058. }
  25059. },
  25060. back: {
  25061. height: math.unit(5, "feet"),
  25062. weight: math.unit(180, "lb"),
  25063. name: "Back",
  25064. image: {
  25065. source: "./media/characters/mekana/back.svg",
  25066. extra: 1671 / 1605,
  25067. bottom: 3.5 / 1691
  25068. }
  25069. },
  25070. },
  25071. [
  25072. {
  25073. name: "Normal",
  25074. height: math.unit(5, "feet"),
  25075. default: true
  25076. },
  25077. ]
  25078. ))
  25079. characterMakers.push(() => makeCharacter(
  25080. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25081. {
  25082. front: {
  25083. height: math.unit(4 + 6 / 12, "feet"),
  25084. weight: math.unit(80, "lb"),
  25085. name: "Front",
  25086. image: {
  25087. source: "./media/characters/pixie/front.svg",
  25088. extra: 1924 / 1825,
  25089. bottom: 22.4 / 1946
  25090. }
  25091. },
  25092. },
  25093. [
  25094. {
  25095. name: "Normal",
  25096. height: math.unit(4 + 6 / 12, "feet"),
  25097. default: true
  25098. },
  25099. {
  25100. name: "Macro",
  25101. height: math.unit(40, "feet")
  25102. },
  25103. ]
  25104. ))
  25105. characterMakers.push(() => makeCharacter(
  25106. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25107. {
  25108. front: {
  25109. height: math.unit(2.1, "meters"),
  25110. weight: math.unit(200, "lb"),
  25111. name: "Front",
  25112. image: {
  25113. source: "./media/characters/the-lascivious/front.svg",
  25114. extra: 1 / 0.893,
  25115. bottom: 3.5 / 573.7
  25116. }
  25117. },
  25118. },
  25119. [
  25120. {
  25121. name: "Human Scale",
  25122. height: math.unit(2.1, "meters")
  25123. },
  25124. {
  25125. name: "Wolxi Scale",
  25126. height: math.unit(46.2, "m"),
  25127. default: true
  25128. },
  25129. {
  25130. name: "Boinker of Buildings",
  25131. height: math.unit(10, "km")
  25132. },
  25133. {
  25134. name: "Shagger of Skyscrapers",
  25135. height: math.unit(40, "km")
  25136. },
  25137. {
  25138. name: "Banger of Boroughs",
  25139. height: math.unit(4000, "km")
  25140. },
  25141. {
  25142. name: "Screwer of States",
  25143. height: math.unit(100000, "km")
  25144. },
  25145. {
  25146. name: "Pounder of Planets",
  25147. height: math.unit(2000000, "km")
  25148. },
  25149. ]
  25150. ))
  25151. characterMakers.push(() => makeCharacter(
  25152. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25153. {
  25154. front: {
  25155. height: math.unit(6, "feet"),
  25156. weight: math.unit(150, "lb"),
  25157. name: "Front",
  25158. image: {
  25159. source: "./media/characters/aj/front.svg",
  25160. extra: 2039 / 1562,
  25161. bottom: 40 / 2079
  25162. }
  25163. },
  25164. },
  25165. [
  25166. {
  25167. name: "Normal",
  25168. height: math.unit(11 + 6 / 12, "feet"),
  25169. default: true
  25170. },
  25171. {
  25172. name: "Megamacro",
  25173. height: math.unit(60, "megameters")
  25174. },
  25175. ]
  25176. ))
  25177. characterMakers.push(() => makeCharacter(
  25178. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25179. {
  25180. side: {
  25181. height: math.unit(31 + 8 / 12, "feet"),
  25182. weight: math.unit(75000, "kg"),
  25183. name: "Side",
  25184. image: {
  25185. source: "./media/characters/koros/side.svg",
  25186. extra: 1442 / 1297,
  25187. bottom: 122.7 / 1562
  25188. }
  25189. },
  25190. dicksKingsCrown: {
  25191. height: math.unit(6, "feet"),
  25192. name: "Dicks (King's Crown)",
  25193. image: {
  25194. source: "./media/characters/koros/dicks-kings-crown.svg"
  25195. }
  25196. },
  25197. dicksTailSet: {
  25198. height: math.unit(3, "feet"),
  25199. name: "Dicks (Tail Set)",
  25200. image: {
  25201. source: "./media/characters/koros/dicks-tail-set.svg"
  25202. }
  25203. },
  25204. dickCumming: {
  25205. height: math.unit(7.98, "feet"),
  25206. name: "Dick (Cumming)",
  25207. image: {
  25208. source: "./media/characters/koros/dick-cumming.svg"
  25209. }
  25210. },
  25211. dicksBack: {
  25212. height: math.unit(5.9, "feet"),
  25213. name: "Dicks (Back)",
  25214. image: {
  25215. source: "./media/characters/koros/dicks-back.svg"
  25216. }
  25217. },
  25218. dicksFront: {
  25219. height: math.unit(3.72, "feet"),
  25220. name: "Dicks (Front)",
  25221. image: {
  25222. source: "./media/characters/koros/dicks-front.svg"
  25223. }
  25224. },
  25225. dicksPeeking: {
  25226. height: math.unit(3.0, "feet"),
  25227. name: "Dicks (Peeking)",
  25228. image: {
  25229. source: "./media/characters/koros/dicks-peeking.svg"
  25230. }
  25231. },
  25232. eye: {
  25233. height: math.unit(1.7, "feet"),
  25234. name: "Eye",
  25235. image: {
  25236. source: "./media/characters/koros/eye.svg"
  25237. }
  25238. },
  25239. headFront: {
  25240. height: math.unit(11.69, "feet"),
  25241. name: "Head (Front)",
  25242. image: {
  25243. source: "./media/characters/koros/head-front.svg"
  25244. }
  25245. },
  25246. headSide: {
  25247. height: math.unit(14, "feet"),
  25248. name: "Head (Side)",
  25249. image: {
  25250. source: "./media/characters/koros/head-side.svg"
  25251. }
  25252. },
  25253. leg: {
  25254. height: math.unit(17, "feet"),
  25255. name: "Leg",
  25256. image: {
  25257. source: "./media/characters/koros/leg.svg"
  25258. }
  25259. },
  25260. mawSide: {
  25261. height: math.unit(12.8, "feet"),
  25262. name: "Maw (Side)",
  25263. image: {
  25264. source: "./media/characters/koros/maw-side.svg"
  25265. }
  25266. },
  25267. mawSpitting: {
  25268. height: math.unit(17, "feet"),
  25269. name: "Maw (Spitting)",
  25270. image: {
  25271. source: "./media/characters/koros/maw-spitting.svg"
  25272. }
  25273. },
  25274. slit: {
  25275. height: math.unit(2.8, "feet"),
  25276. name: "Slit",
  25277. image: {
  25278. source: "./media/characters/koros/slit.svg"
  25279. }
  25280. },
  25281. stomach: {
  25282. height: math.unit(6.8, "feet"),
  25283. capacity: math.unit(20, "people"),
  25284. name: "Stomach",
  25285. image: {
  25286. source: "./media/characters/koros/stomach.svg"
  25287. }
  25288. },
  25289. wingspanBottom: {
  25290. height: math.unit(114, "feet"),
  25291. name: "Wingspan (Bottom)",
  25292. image: {
  25293. source: "./media/characters/koros/wingspan-bottom.svg"
  25294. }
  25295. },
  25296. wingspanTop: {
  25297. height: math.unit(104, "feet"),
  25298. name: "Wingspan (Top)",
  25299. image: {
  25300. source: "./media/characters/koros/wingspan-top.svg"
  25301. }
  25302. },
  25303. },
  25304. [
  25305. {
  25306. name: "Normal",
  25307. height: math.unit(31 + 8 / 12, "feet"),
  25308. default: true
  25309. },
  25310. ]
  25311. ))
  25312. characterMakers.push(() => makeCharacter(
  25313. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25314. {
  25315. front: {
  25316. height: math.unit(18 + 5 / 12, "feet"),
  25317. weight: math.unit(3750, "kg"),
  25318. name: "Front",
  25319. image: {
  25320. source: "./media/characters/vexx/front.svg",
  25321. extra: 426 / 396,
  25322. bottom: 31.5 / 458
  25323. }
  25324. },
  25325. maw: {
  25326. height: math.unit(6, "feet"),
  25327. name: "Maw",
  25328. image: {
  25329. source: "./media/characters/vexx/maw.svg"
  25330. }
  25331. },
  25332. },
  25333. [
  25334. {
  25335. name: "Normal",
  25336. height: math.unit(18 + 5 / 12, "feet"),
  25337. default: true
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25343. {
  25344. front: {
  25345. height: math.unit(17 + 6 / 12, "feet"),
  25346. weight: math.unit(150, "lb"),
  25347. name: "Front",
  25348. image: {
  25349. source: "./media/characters/baadra/front.svg",
  25350. extra: 3137 / 2890,
  25351. bottom: 168.4 / 3305
  25352. }
  25353. },
  25354. back: {
  25355. height: math.unit(17 + 6 / 12, "feet"),
  25356. weight: math.unit(150, "lb"),
  25357. name: "Back",
  25358. image: {
  25359. source: "./media/characters/baadra/back.svg",
  25360. extra: 3142 / 2890,
  25361. bottom: 220 / 3371
  25362. }
  25363. },
  25364. head: {
  25365. height: math.unit(5.45, "feet"),
  25366. name: "Head",
  25367. image: {
  25368. source: "./media/characters/baadra/head.svg"
  25369. }
  25370. },
  25371. headAngry: {
  25372. height: math.unit(4.95, "feet"),
  25373. name: "Head (Angry)",
  25374. image: {
  25375. source: "./media/characters/baadra/head-angry.svg"
  25376. }
  25377. },
  25378. headOpen: {
  25379. height: math.unit(6, "feet"),
  25380. name: "Head (Open)",
  25381. image: {
  25382. source: "./media/characters/baadra/head-open.svg"
  25383. }
  25384. },
  25385. },
  25386. [
  25387. {
  25388. name: "Normal",
  25389. height: math.unit(17 + 6 / 12, "feet"),
  25390. default: true
  25391. },
  25392. ]
  25393. ))
  25394. characterMakers.push(() => makeCharacter(
  25395. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25396. {
  25397. front: {
  25398. height: math.unit(7 + 3 / 12, "feet"),
  25399. weight: math.unit(180, "lb"),
  25400. name: "Front",
  25401. image: {
  25402. source: "./media/characters/juri/front.svg",
  25403. extra: 1401 / 1237,
  25404. bottom: 18.5 / 1418
  25405. }
  25406. },
  25407. side: {
  25408. height: math.unit(7 + 3 / 12, "feet"),
  25409. weight: math.unit(180, "lb"),
  25410. name: "Side",
  25411. image: {
  25412. source: "./media/characters/juri/side.svg",
  25413. extra: 1424 / 1242,
  25414. bottom: 18.5 / 1447
  25415. }
  25416. },
  25417. sitting: {
  25418. height: math.unit(6, "feet"),
  25419. weight: math.unit(180, "lb"),
  25420. name: "Sitting",
  25421. image: {
  25422. source: "./media/characters/juri/sitting.svg",
  25423. extra: 1270 / 1143,
  25424. bottom: 100 / 1343
  25425. }
  25426. },
  25427. back: {
  25428. height: math.unit(7 + 3 / 12, "feet"),
  25429. weight: math.unit(180, "lb"),
  25430. name: "Back",
  25431. image: {
  25432. source: "./media/characters/juri/back.svg",
  25433. extra: 1377 / 1240,
  25434. bottom: 23.7 / 1405
  25435. }
  25436. },
  25437. maw: {
  25438. height: math.unit(2.8, "feet"),
  25439. name: "Maw",
  25440. image: {
  25441. source: "./media/characters/juri/maw.svg"
  25442. }
  25443. },
  25444. stomach: {
  25445. height: math.unit(0.89, "feet"),
  25446. capacity: math.unit(4, "liters"),
  25447. name: "Stomach",
  25448. image: {
  25449. source: "./media/characters/juri/stomach.svg"
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(7 + 3 / 12, "feet"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25463. {
  25464. fox: {
  25465. height: math.unit(5 + 6 / 12, "feet"),
  25466. weight: math.unit(140, "lb"),
  25467. name: "Fox",
  25468. image: {
  25469. source: "./media/characters/maxene-sita/fox.svg",
  25470. extra: 146 / 138,
  25471. bottom: 2.1 / 148.19
  25472. }
  25473. },
  25474. foxLaying: {
  25475. height: math.unit(1.70, "feet"),
  25476. weight: math.unit(140, "lb"),
  25477. name: "Fox (Laying)",
  25478. image: {
  25479. source: "./media/characters/maxene-sita/fox-laying.svg",
  25480. extra: 910 / 572,
  25481. bottom: 71 / 981
  25482. }
  25483. },
  25484. kitsune: {
  25485. height: math.unit(10, "feet"),
  25486. weight: math.unit(800, "lb"),
  25487. name: "Kitsune",
  25488. image: {
  25489. source: "./media/characters/maxene-sita/kitsune.svg",
  25490. extra: 185 / 176,
  25491. bottom: 4.7 / 189.9
  25492. }
  25493. },
  25494. hellhound: {
  25495. height: math.unit(10, "feet"),
  25496. weight: math.unit(700, "lb"),
  25497. name: "Hellhound",
  25498. image: {
  25499. source: "./media/characters/maxene-sita/hellhound.svg",
  25500. extra: 1600 / 1545,
  25501. bottom: 81 / 1681
  25502. }
  25503. },
  25504. },
  25505. [
  25506. {
  25507. name: "Normal",
  25508. height: math.unit(5 + 6 / 12, "feet"),
  25509. default: true
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25515. {
  25516. front: {
  25517. height: math.unit(3 + 4 / 12, "feet"),
  25518. weight: math.unit(70, "lb"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/maia/front.svg",
  25522. extra: 227 / 219.5,
  25523. bottom: 40 / 267
  25524. }
  25525. },
  25526. back: {
  25527. height: math.unit(3 + 4 / 12, "feet"),
  25528. weight: math.unit(70, "lb"),
  25529. name: "Back",
  25530. image: {
  25531. source: "./media/characters/maia/back.svg",
  25532. extra: 237 / 225
  25533. }
  25534. },
  25535. },
  25536. [
  25537. {
  25538. name: "Normal",
  25539. height: math.unit(3 + 4 / 12, "feet"),
  25540. default: true
  25541. },
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25546. {
  25547. front: {
  25548. height: math.unit(5 + 10 / 12, "feet"),
  25549. weight: math.unit(197, "lb"),
  25550. name: "Front",
  25551. image: {
  25552. source: "./media/characters/jabaro/front.svg",
  25553. extra: 225 / 216,
  25554. bottom: 5.06 / 230
  25555. }
  25556. },
  25557. back: {
  25558. height: math.unit(5 + 10 / 12, "feet"),
  25559. weight: math.unit(197, "lb"),
  25560. name: "Back",
  25561. image: {
  25562. source: "./media/characters/jabaro/back.svg",
  25563. extra: 225 / 219,
  25564. bottom: 1.9 / 227
  25565. }
  25566. },
  25567. },
  25568. [
  25569. {
  25570. name: "Normal",
  25571. height: math.unit(5 + 10 / 12, "feet"),
  25572. default: true
  25573. },
  25574. ]
  25575. ))
  25576. characterMakers.push(() => makeCharacter(
  25577. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25578. {
  25579. front: {
  25580. height: math.unit(5 + 8 / 12, "feet"),
  25581. weight: math.unit(139, "lb"),
  25582. name: "Front",
  25583. image: {
  25584. source: "./media/characters/risa/front.svg",
  25585. extra: 270 / 260,
  25586. bottom: 11.2 / 282
  25587. }
  25588. },
  25589. back: {
  25590. height: math.unit(5 + 8 / 12, "feet"),
  25591. weight: math.unit(139, "lb"),
  25592. name: "Back",
  25593. image: {
  25594. source: "./media/characters/risa/back.svg",
  25595. extra: 264 / 255,
  25596. bottom: 4 / 268
  25597. }
  25598. },
  25599. },
  25600. [
  25601. {
  25602. name: "Normal",
  25603. height: math.unit(5 + 8 / 12, "feet"),
  25604. default: true
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25610. {
  25611. front: {
  25612. height: math.unit(2 + 11 / 12, "feet"),
  25613. weight: math.unit(30, "lb"),
  25614. name: "Front",
  25615. image: {
  25616. source: "./media/characters/weatley/front.svg",
  25617. bottom: 10.7 / 414,
  25618. extra: 403.5 / 362
  25619. }
  25620. },
  25621. back: {
  25622. height: math.unit(2 + 11 / 12, "feet"),
  25623. weight: math.unit(30, "lb"),
  25624. name: "Back",
  25625. image: {
  25626. source: "./media/characters/weatley/back.svg",
  25627. bottom: 10.7 / 414,
  25628. extra: 403.5 / 362
  25629. }
  25630. },
  25631. },
  25632. [
  25633. {
  25634. name: "Normal",
  25635. height: math.unit(2 + 11 / 12, "feet"),
  25636. default: true
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25642. {
  25643. front: {
  25644. height: math.unit(5 + 2 / 12, "feet"),
  25645. weight: math.unit(50, "kg"),
  25646. name: "Front",
  25647. image: {
  25648. source: "./media/characters/mercury-crescent/front.svg",
  25649. extra: 1088 / 1033,
  25650. bottom: 18.9 / 1109
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Normal",
  25657. height: math.unit(5 + 2 / 12, "feet"),
  25658. default: true
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25664. {
  25665. front: {
  25666. height: math.unit(2, "feet"),
  25667. weight: math.unit(15, "kg"),
  25668. name: "Front",
  25669. image: {
  25670. source: "./media/characters/diamond-jones/front.svg",
  25671. extra: 727/723,
  25672. bottom: 46/773
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Normal",
  25679. height: math.unit(2, "feet"),
  25680. default: true
  25681. },
  25682. ]
  25683. ))
  25684. characterMakers.push(() => makeCharacter(
  25685. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25686. {
  25687. front: {
  25688. height: math.unit(3, "feet"),
  25689. weight: math.unit(30, "kg"),
  25690. name: "Front",
  25691. image: {
  25692. source: "./media/characters/sweet-bit/front.svg",
  25693. extra: 675 / 567,
  25694. bottom: 27.7 / 703
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Normal",
  25701. height: math.unit(3, "feet"),
  25702. default: true
  25703. },
  25704. ]
  25705. ))
  25706. characterMakers.push(() => makeCharacter(
  25707. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25708. {
  25709. side: {
  25710. height: math.unit(9.178, "feet"),
  25711. weight: math.unit(500, "lb"),
  25712. name: "Side",
  25713. image: {
  25714. source: "./media/characters/umbrazen/side.svg",
  25715. extra: 1730 / 1473,
  25716. bottom: 34.6 / 1765
  25717. }
  25718. },
  25719. },
  25720. [
  25721. {
  25722. name: "Normal",
  25723. height: math.unit(9.178, "feet"),
  25724. default: true
  25725. },
  25726. ]
  25727. ))
  25728. characterMakers.push(() => makeCharacter(
  25729. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25730. {
  25731. front: {
  25732. height: math.unit(10, "feet"),
  25733. weight: math.unit(750, "lb"),
  25734. name: "Front",
  25735. image: {
  25736. source: "./media/characters/arlist/front.svg",
  25737. extra: 961 / 778,
  25738. bottom: 6.2 / 986
  25739. }
  25740. },
  25741. },
  25742. [
  25743. {
  25744. name: "Normal",
  25745. height: math.unit(10, "feet"),
  25746. default: true
  25747. },
  25748. ]
  25749. ))
  25750. characterMakers.push(() => makeCharacter(
  25751. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25752. {
  25753. front: {
  25754. height: math.unit(5 + 1 / 12, "feet"),
  25755. weight: math.unit(110, "lb"),
  25756. name: "Front",
  25757. image: {
  25758. source: "./media/characters/aradel/front.svg",
  25759. extra: 324 / 303,
  25760. bottom: 3.6 / 329.4
  25761. }
  25762. },
  25763. },
  25764. [
  25765. {
  25766. name: "Normal",
  25767. height: math.unit(5 + 1 / 12, "feet"),
  25768. default: true
  25769. },
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25774. {
  25775. front: {
  25776. height: math.unit(3 + 8 / 12, "feet"),
  25777. weight: math.unit(50, "lb"),
  25778. name: "Front",
  25779. image: {
  25780. source: "./media/characters/serryn/front.svg",
  25781. extra: 1792 / 1656,
  25782. bottom: 43.5 / 1840
  25783. }
  25784. },
  25785. },
  25786. [
  25787. {
  25788. name: "Normal",
  25789. height: math.unit(3 + 8 / 12, "feet"),
  25790. default: true
  25791. },
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25796. {
  25797. front: {
  25798. height: math.unit(7 + 10 / 12, "feet"),
  25799. weight: math.unit(255, "lb"),
  25800. name: "Front",
  25801. image: {
  25802. source: "./media/characters/xavier-thyme/front.svg",
  25803. extra: 3733 / 3642,
  25804. bottom: 131 / 3869
  25805. }
  25806. },
  25807. frontRaven: {
  25808. height: math.unit(7 + 10 / 12, "feet"),
  25809. weight: math.unit(255, "lb"),
  25810. name: "Front (Raven)",
  25811. image: {
  25812. source: "./media/characters/xavier-thyme/front-raven.svg",
  25813. extra: 4385 / 3642,
  25814. bottom: 131 / 4517
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Normal",
  25821. height: math.unit(7 + 10 / 12, "feet"),
  25822. default: true
  25823. },
  25824. ]
  25825. ))
  25826. characterMakers.push(() => makeCharacter(
  25827. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25828. {
  25829. front: {
  25830. height: math.unit(1.6, "m"),
  25831. weight: math.unit(50, "kg"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/kiki/front.svg",
  25835. extra: 4682 / 3610,
  25836. bottom: 115 / 4777
  25837. }
  25838. },
  25839. },
  25840. [
  25841. {
  25842. name: "Normal",
  25843. height: math.unit(1.6, "meters"),
  25844. default: true
  25845. },
  25846. ]
  25847. ))
  25848. characterMakers.push(() => makeCharacter(
  25849. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25850. {
  25851. front: {
  25852. height: math.unit(50, "m"),
  25853. weight: math.unit(500, "tonnes"),
  25854. name: "Front",
  25855. image: {
  25856. source: "./media/characters/ryoko/front.svg",
  25857. extra: 4632 / 3926,
  25858. bottom: 193 / 4823
  25859. }
  25860. },
  25861. },
  25862. [
  25863. {
  25864. name: "Normal",
  25865. height: math.unit(50, "meters"),
  25866. default: true
  25867. },
  25868. ]
  25869. ))
  25870. characterMakers.push(() => makeCharacter(
  25871. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25872. {
  25873. front: {
  25874. height: math.unit(30, "m"),
  25875. weight: math.unit(22, "tonnes"),
  25876. name: "Front",
  25877. image: {
  25878. source: "./media/characters/elio/front.svg",
  25879. extra: 4582 / 3720,
  25880. bottom: 236 / 4828
  25881. }
  25882. },
  25883. },
  25884. [
  25885. {
  25886. name: "Normal",
  25887. height: math.unit(30, "meters"),
  25888. default: true
  25889. },
  25890. ]
  25891. ))
  25892. characterMakers.push(() => makeCharacter(
  25893. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25894. {
  25895. front: {
  25896. height: math.unit(6 + 3 / 12, "feet"),
  25897. weight: math.unit(120, "lb"),
  25898. name: "Front",
  25899. image: {
  25900. source: "./media/characters/azura/front.svg",
  25901. extra: 1149 / 1135,
  25902. bottom: 45 / 1194
  25903. }
  25904. },
  25905. frontClothed: {
  25906. height: math.unit(6 + 3 / 12, "feet"),
  25907. weight: math.unit(120, "lb"),
  25908. name: "Front (Clothed)",
  25909. image: {
  25910. source: "./media/characters/azura/front-clothed.svg",
  25911. extra: 1149 / 1135,
  25912. bottom: 45 / 1194
  25913. }
  25914. },
  25915. },
  25916. [
  25917. {
  25918. name: "Normal",
  25919. height: math.unit(6 + 3 / 12, "feet"),
  25920. default: true
  25921. },
  25922. {
  25923. name: "Macro",
  25924. height: math.unit(20 + 6 / 12, "feet")
  25925. },
  25926. {
  25927. name: "Megamacro",
  25928. height: math.unit(12, "miles")
  25929. },
  25930. {
  25931. name: "Gigamacro",
  25932. height: math.unit(10000, "miles")
  25933. },
  25934. {
  25935. name: "Teramacro",
  25936. height: math.unit(900000, "miles")
  25937. },
  25938. ]
  25939. ))
  25940. characterMakers.push(() => makeCharacter(
  25941. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25942. {
  25943. front: {
  25944. height: math.unit(12, "feet"),
  25945. weight: math.unit(1, "ton"),
  25946. capacity: math.unit(660000, "gallons"),
  25947. name: "Front",
  25948. image: {
  25949. source: "./media/characters/zeus/front.svg",
  25950. extra: 5005 / 4717,
  25951. bottom: 363 / 5388
  25952. }
  25953. },
  25954. },
  25955. [
  25956. {
  25957. name: "Normal",
  25958. height: math.unit(12, "feet")
  25959. },
  25960. {
  25961. name: "Preferred Size",
  25962. height: math.unit(0.5, "miles"),
  25963. default: true
  25964. },
  25965. {
  25966. name: "Giga Horse",
  25967. height: math.unit(300, "miles")
  25968. },
  25969. {
  25970. name: "Riding Planets",
  25971. height: math.unit(30, "megameters")
  25972. },
  25973. {
  25974. name: "Cosmic Giant",
  25975. height: math.unit(3, "zettameters")
  25976. },
  25977. {
  25978. name: "Breeding God",
  25979. height: math.unit(9.92e22, "yottameters")
  25980. },
  25981. ]
  25982. ))
  25983. characterMakers.push(() => makeCharacter(
  25984. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25985. {
  25986. side: {
  25987. height: math.unit(9, "feet"),
  25988. weight: math.unit(1500, "kg"),
  25989. name: "Side",
  25990. image: {
  25991. source: "./media/characters/fang/side.svg",
  25992. extra: 924 / 866,
  25993. bottom: 47.5 / 972.3
  25994. }
  25995. },
  25996. },
  25997. [
  25998. {
  25999. name: "Normal",
  26000. height: math.unit(9, "feet"),
  26001. default: true
  26002. },
  26003. {
  26004. name: "Macro",
  26005. height: math.unit(75 + 6 / 12, "feet")
  26006. },
  26007. {
  26008. name: "Teramacro",
  26009. height: math.unit(50000, "miles")
  26010. },
  26011. ]
  26012. ))
  26013. characterMakers.push(() => makeCharacter(
  26014. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26015. {
  26016. front: {
  26017. height: math.unit(10, "feet"),
  26018. weight: math.unit(2, "tons"),
  26019. name: "Front",
  26020. image: {
  26021. source: "./media/characters/rekhit/front.svg",
  26022. extra: 2796 / 2590,
  26023. bottom: 225 / 3022
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Normal",
  26030. height: math.unit(10, "feet"),
  26031. default: true
  26032. },
  26033. {
  26034. name: "Macro",
  26035. height: math.unit(500, "feet")
  26036. },
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26041. {
  26042. front: {
  26043. height: math.unit(7 + 6.451 / 12, "feet"),
  26044. weight: math.unit(310, "lb"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/dahlia-verrick/front.svg",
  26048. extra: 1488 / 1365,
  26049. bottom: 6.2 / 1495
  26050. }
  26051. },
  26052. back: {
  26053. height: math.unit(7 + 6.451 / 12, "feet"),
  26054. weight: math.unit(310, "lb"),
  26055. name: "Back",
  26056. image: {
  26057. source: "./media/characters/dahlia-verrick/back.svg",
  26058. extra: 1472 / 1351,
  26059. bottom: 5.28 / 1477
  26060. }
  26061. },
  26062. frontBusiness: {
  26063. height: math.unit(7 + 6.451 / 12, "feet"),
  26064. weight: math.unit(200, "lb"),
  26065. name: "Front (Business)",
  26066. image: {
  26067. source: "./media/characters/dahlia-verrick/front-business.svg",
  26068. extra: 1478 / 1381,
  26069. bottom: 5.5 / 1484
  26070. }
  26071. },
  26072. frontCasual: {
  26073. height: math.unit(7 + 6.451 / 12, "feet"),
  26074. weight: math.unit(200, "lb"),
  26075. name: "Front (Casual)",
  26076. image: {
  26077. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26078. extra: 1478 / 1381,
  26079. bottom: 5.5 / 1484
  26080. }
  26081. },
  26082. },
  26083. [
  26084. {
  26085. name: "Travel-Sized",
  26086. height: math.unit(7.45, "inches")
  26087. },
  26088. {
  26089. name: "Normal",
  26090. height: math.unit(7 + 6.451 / 12, "feet"),
  26091. default: true
  26092. },
  26093. {
  26094. name: "Hitting the Town",
  26095. height: math.unit(37 + 8 / 12, "feet")
  26096. },
  26097. {
  26098. name: "Stomp in the Suburbs",
  26099. height: math.unit(964 + 9.728 / 12, "feet")
  26100. },
  26101. {
  26102. name: "Sit on the City",
  26103. height: math.unit(61747 + 10.592 / 12, "feet")
  26104. },
  26105. {
  26106. name: "Glomp the Globe",
  26107. height: math.unit(252919327 + 4.832 / 12, "feet")
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26113. {
  26114. front: {
  26115. height: math.unit(6 + 4 / 12, "feet"),
  26116. weight: math.unit(320, "lb"),
  26117. name: "Front",
  26118. image: {
  26119. source: "./media/characters/balina-mahigan/front.svg",
  26120. extra: 447 / 428,
  26121. bottom: 18 / 466
  26122. }
  26123. },
  26124. back: {
  26125. height: math.unit(6 + 4 / 12, "feet"),
  26126. weight: math.unit(320, "lb"),
  26127. name: "Back",
  26128. image: {
  26129. source: "./media/characters/balina-mahigan/back.svg",
  26130. extra: 445 / 428,
  26131. bottom: 4.07 / 448
  26132. }
  26133. },
  26134. arm: {
  26135. height: math.unit(1.88, "feet"),
  26136. name: "Arm",
  26137. image: {
  26138. source: "./media/characters/balina-mahigan/arm.svg"
  26139. }
  26140. },
  26141. backPort: {
  26142. height: math.unit(0.685, "feet"),
  26143. name: "Back Port",
  26144. image: {
  26145. source: "./media/characters/balina-mahigan/back-port.svg"
  26146. }
  26147. },
  26148. hoofpaw: {
  26149. height: math.unit(1.41, "feet"),
  26150. name: "Hoofpaw",
  26151. image: {
  26152. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26153. }
  26154. },
  26155. leftHandBack: {
  26156. height: math.unit(0.938, "feet"),
  26157. name: "Left Hand (Back)",
  26158. image: {
  26159. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26160. }
  26161. },
  26162. leftHandFront: {
  26163. height: math.unit(0.938, "feet"),
  26164. name: "Left Hand (Front)",
  26165. image: {
  26166. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26167. }
  26168. },
  26169. rightHandBack: {
  26170. height: math.unit(0.95, "feet"),
  26171. name: "Right Hand (Back)",
  26172. image: {
  26173. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26174. }
  26175. },
  26176. rightHandFront: {
  26177. height: math.unit(0.95, "feet"),
  26178. name: "Right Hand (Front)",
  26179. image: {
  26180. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Normal",
  26187. height: math.unit(6 + 4 / 12, "feet"),
  26188. default: true
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(6, "feet"),
  26197. weight: math.unit(320, "lb"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/balina-mejeri/front.svg",
  26201. extra: 517 / 488,
  26202. bottom: 44.2 / 561
  26203. }
  26204. },
  26205. },
  26206. [
  26207. {
  26208. name: "Normal",
  26209. height: math.unit(6 + 4 / 12, "feet")
  26210. },
  26211. {
  26212. name: "Business",
  26213. height: math.unit(155, "feet"),
  26214. default: true
  26215. },
  26216. ]
  26217. ))
  26218. characterMakers.push(() => makeCharacter(
  26219. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26220. {
  26221. kneeling: {
  26222. height: math.unit(6 + 4 / 12, "feet"),
  26223. weight: math.unit(300 * 20, "lb"),
  26224. name: "Kneeling",
  26225. image: {
  26226. source: "./media/characters/balbarian/kneeling.svg",
  26227. extra: 922 / 862,
  26228. bottom: 42.4 / 965
  26229. }
  26230. },
  26231. },
  26232. [
  26233. {
  26234. name: "Normal",
  26235. height: math.unit(6 + 4 / 12, "feet")
  26236. },
  26237. {
  26238. name: "Treasured",
  26239. height: math.unit(18 + 9 / 12, "feet"),
  26240. default: true
  26241. },
  26242. {
  26243. name: "Macro",
  26244. height: math.unit(900, "feet")
  26245. },
  26246. ]
  26247. ))
  26248. characterMakers.push(() => makeCharacter(
  26249. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26250. {
  26251. front: {
  26252. height: math.unit(6 + 4 / 12, "feet"),
  26253. weight: math.unit(325, "lb"),
  26254. name: "Front",
  26255. image: {
  26256. source: "./media/characters/balina-amarini/front.svg",
  26257. extra: 415 / 403,
  26258. bottom: 19 / 433.4
  26259. }
  26260. },
  26261. back: {
  26262. height: math.unit(6 + 4 / 12, "feet"),
  26263. weight: math.unit(325, "lb"),
  26264. name: "Back",
  26265. image: {
  26266. source: "./media/characters/balina-amarini/back.svg",
  26267. extra: 415 / 403,
  26268. bottom: 13.5 / 432
  26269. }
  26270. },
  26271. overdrive: {
  26272. height: math.unit(6 + 4 / 12, "feet"),
  26273. weight: math.unit(400, "lb"),
  26274. name: "Overdrive",
  26275. image: {
  26276. source: "./media/characters/balina-amarini/overdrive.svg",
  26277. extra: 269 / 259,
  26278. bottom: 12 / 282
  26279. }
  26280. },
  26281. },
  26282. [
  26283. {
  26284. name: "Boom",
  26285. height: math.unit(9 + 10 / 12, "feet"),
  26286. default: true
  26287. },
  26288. {
  26289. name: "Macro",
  26290. height: math.unit(280, "feet")
  26291. },
  26292. ]
  26293. ))
  26294. characterMakers.push(() => makeCharacter(
  26295. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26296. {
  26297. goddess: {
  26298. height: math.unit(600, "feet"),
  26299. weight: math.unit(2000000, "tons"),
  26300. name: "Goddess",
  26301. image: {
  26302. source: "./media/characters/lady-kubwa/goddess.svg",
  26303. extra: 1240.5 / 1223,
  26304. bottom: 22 / 1263
  26305. }
  26306. },
  26307. goddesser: {
  26308. height: math.unit(900, "feet"),
  26309. weight: math.unit(20000000, "lb"),
  26310. name: "Goddess-er",
  26311. image: {
  26312. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26313. extra: 899 / 888,
  26314. bottom: 12.6 / 912
  26315. }
  26316. },
  26317. },
  26318. [
  26319. {
  26320. name: "Macro",
  26321. height: math.unit(600, "feet"),
  26322. default: true
  26323. },
  26324. {
  26325. name: "Megamacro",
  26326. height: math.unit(250, "miles")
  26327. },
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26332. {
  26333. front: {
  26334. height: math.unit(7 + 7 / 12, "feet"),
  26335. weight: math.unit(250, "lb"),
  26336. name: "Front",
  26337. image: {
  26338. source: "./media/characters/tala-grovehorn/front.svg",
  26339. extra: 2636 / 2525,
  26340. bottom: 147 / 2781
  26341. }
  26342. },
  26343. back: {
  26344. height: math.unit(7 + 7 / 12, "feet"),
  26345. weight: math.unit(250, "lb"),
  26346. name: "Back",
  26347. image: {
  26348. source: "./media/characters/tala-grovehorn/back.svg",
  26349. extra: 2635 / 2539,
  26350. bottom: 100 / 2732.8
  26351. }
  26352. },
  26353. mouth: {
  26354. height: math.unit(1.15, "feet"),
  26355. name: "Mouth",
  26356. image: {
  26357. source: "./media/characters/tala-grovehorn/mouth.svg"
  26358. }
  26359. },
  26360. dick: {
  26361. height: math.unit(2.36, "feet"),
  26362. name: "Dick",
  26363. image: {
  26364. source: "./media/characters/tala-grovehorn/dick.svg"
  26365. }
  26366. },
  26367. slit: {
  26368. height: math.unit(0.61, "feet"),
  26369. name: "Slit",
  26370. image: {
  26371. source: "./media/characters/tala-grovehorn/slit.svg"
  26372. }
  26373. },
  26374. },
  26375. [
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(7 + 7 / 12, "feet"),
  26383. weight: math.unit(225, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/epona/front.svg",
  26387. extra: 2445 / 2290,
  26388. bottom: 251 / 2696
  26389. }
  26390. },
  26391. back: {
  26392. height: math.unit(7 + 7 / 12, "feet"),
  26393. weight: math.unit(225, "lb"),
  26394. name: "Back",
  26395. image: {
  26396. source: "./media/characters/epona/back.svg",
  26397. extra: 2546 / 2408,
  26398. bottom: 44 / 2589
  26399. }
  26400. },
  26401. genitals: {
  26402. height: math.unit(1.5, "feet"),
  26403. name: "Genitals",
  26404. image: {
  26405. source: "./media/characters/epona/genitals.svg"
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Normal",
  26412. height: math.unit(7 + 7 / 12, "feet"),
  26413. default: true
  26414. },
  26415. ]
  26416. ))
  26417. characterMakers.push(() => makeCharacter(
  26418. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26419. {
  26420. front: {
  26421. height: math.unit(7, "feet"),
  26422. weight: math.unit(518, "lb"),
  26423. name: "Front",
  26424. image: {
  26425. source: "./media/characters/avia-bloodbourn/front.svg",
  26426. extra: 1466 / 1350,
  26427. bottom: 65 / 1527
  26428. }
  26429. },
  26430. },
  26431. [
  26432. ]
  26433. ))
  26434. characterMakers.push(() => makeCharacter(
  26435. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26436. {
  26437. front: {
  26438. height: math.unit(9.35, "feet"),
  26439. weight: math.unit(600, "lb"),
  26440. name: "Front",
  26441. image: {
  26442. source: "./media/characters/amera/front.svg",
  26443. extra: 891 / 818,
  26444. bottom: 30 / 922.7
  26445. }
  26446. },
  26447. back: {
  26448. height: math.unit(9.35, "feet"),
  26449. weight: math.unit(600, "lb"),
  26450. name: "Back",
  26451. image: {
  26452. source: "./media/characters/amera/back.svg",
  26453. extra: 876 / 824,
  26454. bottom: 6.8 / 884
  26455. }
  26456. },
  26457. dick: {
  26458. height: math.unit(2.14, "feet"),
  26459. name: "Dick",
  26460. image: {
  26461. source: "./media/characters/amera/dick.svg"
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(9.35, "feet"),
  26469. default: true
  26470. },
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26475. {
  26476. kneeling: {
  26477. height: math.unit(3 + 4 / 12, "feet"),
  26478. weight: math.unit(90, "lb"),
  26479. name: "Kneeling",
  26480. image: {
  26481. source: "./media/characters/rosewen/kneeling.svg",
  26482. extra: 1835 / 1571,
  26483. bottom: 27.7 / 1862
  26484. }
  26485. },
  26486. },
  26487. [
  26488. {
  26489. name: "Normal",
  26490. height: math.unit(3 + 4 / 12, "feet"),
  26491. default: true
  26492. },
  26493. ]
  26494. ))
  26495. characterMakers.push(() => makeCharacter(
  26496. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26497. {
  26498. front: {
  26499. height: math.unit(5 + 10 / 12, "feet"),
  26500. weight: math.unit(200, "lb"),
  26501. name: "Front",
  26502. image: {
  26503. source: "./media/characters/sabah/front.svg",
  26504. extra: 849 / 763,
  26505. bottom: 33.9 / 881
  26506. }
  26507. },
  26508. },
  26509. [
  26510. {
  26511. name: "Normal",
  26512. height: math.unit(5 + 10 / 12, "feet"),
  26513. default: true
  26514. },
  26515. ]
  26516. ))
  26517. characterMakers.push(() => makeCharacter(
  26518. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26519. {
  26520. front: {
  26521. height: math.unit(3 + 5 / 12, "feet"),
  26522. weight: math.unit(40, "kg"),
  26523. name: "Front",
  26524. image: {
  26525. source: "./media/characters/purple-flame/front.svg",
  26526. extra: 1577 / 1412,
  26527. bottom: 97 / 1694
  26528. }
  26529. },
  26530. frontDressed: {
  26531. height: math.unit(3 + 5 / 12, "feet"),
  26532. weight: math.unit(40, "kg"),
  26533. name: "Front (Dressed)",
  26534. image: {
  26535. source: "./media/characters/purple-flame/front-dressed.svg",
  26536. extra: 1577 / 1412,
  26537. bottom: 97 / 1694
  26538. }
  26539. },
  26540. headphones: {
  26541. height: math.unit(0.85, "feet"),
  26542. name: "Headphones",
  26543. image: {
  26544. source: "./media/characters/purple-flame/headphones.svg"
  26545. }
  26546. },
  26547. },
  26548. [
  26549. {
  26550. name: "Really Small",
  26551. height: math.unit(5, "cm")
  26552. },
  26553. {
  26554. name: "Micro",
  26555. height: math.unit(1 + 5 / 12, "feet")
  26556. },
  26557. {
  26558. name: "Normal",
  26559. height: math.unit(3 + 5 / 12, "feet"),
  26560. default: true
  26561. },
  26562. {
  26563. name: "Minimacro",
  26564. height: math.unit(125, "feet")
  26565. },
  26566. {
  26567. name: "Macro",
  26568. height: math.unit(0.5, "miles")
  26569. },
  26570. {
  26571. name: "Megamacro",
  26572. height: math.unit(50, "miles")
  26573. },
  26574. {
  26575. name: "Gigantic",
  26576. height: math.unit(750, "miles")
  26577. },
  26578. {
  26579. name: "Planetary",
  26580. height: math.unit(15000, "miles")
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26586. {
  26587. front: {
  26588. height: math.unit(14, "feet"),
  26589. weight: math.unit(959, "lb"),
  26590. name: "Front",
  26591. image: {
  26592. source: "./media/characters/arsenal/front.svg",
  26593. extra: 2357 / 2157,
  26594. bottom: 93 / 2458
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(14, "feet"),
  26602. default: true
  26603. },
  26604. ]
  26605. ))
  26606. characterMakers.push(() => makeCharacter(
  26607. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26608. {
  26609. front: {
  26610. height: math.unit(6, "feet"),
  26611. weight: math.unit(150, "lb"),
  26612. name: "Front",
  26613. image: {
  26614. source: "./media/characters/adira/front.svg",
  26615. extra: 1078 / 1029,
  26616. bottom: 87 / 1166
  26617. }
  26618. },
  26619. },
  26620. [
  26621. {
  26622. name: "Micro",
  26623. height: math.unit(4, "inches"),
  26624. default: true
  26625. },
  26626. {
  26627. name: "Macro",
  26628. height: math.unit(50, "feet")
  26629. },
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26634. {
  26635. front: {
  26636. height: math.unit(16, "feet"),
  26637. weight: math.unit(1000, "lb"),
  26638. name: "Front",
  26639. image: {
  26640. source: "./media/characters/grim/front.svg",
  26641. extra: 622 / 614,
  26642. bottom: 18.1 / 642
  26643. }
  26644. },
  26645. back: {
  26646. height: math.unit(16, "feet"),
  26647. weight: math.unit(1000, "lb"),
  26648. name: "Back",
  26649. image: {
  26650. source: "./media/characters/grim/back.svg",
  26651. extra: 610.6 / 602,
  26652. bottom: 40.8 / 652
  26653. }
  26654. },
  26655. hunched: {
  26656. height: math.unit(9.75, "feet"),
  26657. weight: math.unit(1000, "lb"),
  26658. name: "Hunched",
  26659. image: {
  26660. source: "./media/characters/grim/hunched.svg",
  26661. extra: 304 / 297,
  26662. bottom: 35.4 / 394
  26663. }
  26664. },
  26665. },
  26666. [
  26667. {
  26668. name: "Normal",
  26669. height: math.unit(16, "feet"),
  26670. default: true
  26671. },
  26672. ]
  26673. ))
  26674. characterMakers.push(() => makeCharacter(
  26675. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26676. {
  26677. front: {
  26678. height: math.unit(2.3, "meters"),
  26679. weight: math.unit(300, "lb"),
  26680. name: "Front",
  26681. image: {
  26682. source: "./media/characters/sinja/front-sfw.svg",
  26683. extra: 1393 / 1294,
  26684. bottom: 70 / 1463
  26685. }
  26686. },
  26687. frontNsfw: {
  26688. height: math.unit(2.3, "meters"),
  26689. weight: math.unit(300, "lb"),
  26690. name: "Front (NSFW)",
  26691. image: {
  26692. source: "./media/characters/sinja/front-nsfw.svg",
  26693. extra: 1393 / 1294,
  26694. bottom: 70 / 1463
  26695. }
  26696. },
  26697. back: {
  26698. height: math.unit(2.3, "meters"),
  26699. weight: math.unit(300, "lb"),
  26700. name: "Back",
  26701. image: {
  26702. source: "./media/characters/sinja/back.svg",
  26703. extra: 1393 / 1294,
  26704. bottom: 70 / 1463
  26705. }
  26706. },
  26707. head: {
  26708. height: math.unit(1.771, "feet"),
  26709. name: "Head",
  26710. image: {
  26711. source: "./media/characters/sinja/head.svg"
  26712. }
  26713. },
  26714. slit: {
  26715. height: math.unit(0.8, "feet"),
  26716. name: "Slit",
  26717. image: {
  26718. source: "./media/characters/sinja/slit.svg"
  26719. }
  26720. },
  26721. },
  26722. [
  26723. {
  26724. name: "Normal",
  26725. height: math.unit(2.3, "meters")
  26726. },
  26727. {
  26728. name: "Macro",
  26729. height: math.unit(91, "meters"),
  26730. default: true
  26731. },
  26732. {
  26733. name: "Megamacro",
  26734. height: math.unit(91440, "meters")
  26735. },
  26736. {
  26737. name: "Gigamacro",
  26738. height: math.unit(60960000, "meters")
  26739. },
  26740. {
  26741. name: "Teramacro",
  26742. height: math.unit(9144000000, "meters")
  26743. },
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26748. {
  26749. front: {
  26750. height: math.unit(1.7, "meters"),
  26751. weight: math.unit(130, "lb"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/kyu/front.svg",
  26755. extra: 415 / 395,
  26756. bottom: 5 / 420
  26757. }
  26758. },
  26759. head: {
  26760. height: math.unit(1.75, "feet"),
  26761. name: "Head",
  26762. image: {
  26763. source: "./media/characters/kyu/head.svg"
  26764. }
  26765. },
  26766. foot: {
  26767. height: math.unit(0.81, "feet"),
  26768. name: "Foot",
  26769. image: {
  26770. source: "./media/characters/kyu/foot.svg"
  26771. }
  26772. },
  26773. },
  26774. [
  26775. {
  26776. name: "Normal",
  26777. height: math.unit(1.7, "meters")
  26778. },
  26779. {
  26780. name: "Macro",
  26781. height: math.unit(131, "feet"),
  26782. default: true
  26783. },
  26784. {
  26785. name: "Megamacro",
  26786. height: math.unit(91440, "meters")
  26787. },
  26788. {
  26789. name: "Gigamacro",
  26790. height: math.unit(60960000, "meters")
  26791. },
  26792. {
  26793. name: "Teramacro",
  26794. height: math.unit(9144000000, "meters")
  26795. },
  26796. ]
  26797. ))
  26798. characterMakers.push(() => makeCharacter(
  26799. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26800. {
  26801. front: {
  26802. height: math.unit(7 + 1 / 12, "feet"),
  26803. weight: math.unit(250, "lb"),
  26804. name: "Front",
  26805. image: {
  26806. source: "./media/characters/joey/front.svg",
  26807. extra: 1791 / 1537,
  26808. bottom: 28 / 1816
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Micro",
  26815. height: math.unit(3, "inches")
  26816. },
  26817. {
  26818. name: "Normal",
  26819. height: math.unit(7 + 1 / 12, "feet"),
  26820. default: true
  26821. },
  26822. ]
  26823. ))
  26824. characterMakers.push(() => makeCharacter(
  26825. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26826. {
  26827. front: {
  26828. height: math.unit(165, "cm"),
  26829. weight: math.unit(140, "lb"),
  26830. name: "Front",
  26831. image: {
  26832. source: "./media/characters/sam-evans/front.svg",
  26833. extra: 3417 / 3230,
  26834. bottom: 41.3 / 3417
  26835. }
  26836. },
  26837. frontSixTails: {
  26838. height: math.unit(165, "cm"),
  26839. weight: math.unit(140, "lb"),
  26840. name: "Front-six-tails",
  26841. image: {
  26842. source: "./media/characters/sam-evans/front-six-tails.svg",
  26843. extra: 3417 / 3230,
  26844. bottom: 41.3 / 3417
  26845. }
  26846. },
  26847. back: {
  26848. height: math.unit(165, "cm"),
  26849. weight: math.unit(140, "lb"),
  26850. name: "Back",
  26851. image: {
  26852. source: "./media/characters/sam-evans/back.svg",
  26853. extra: 3227 / 3032,
  26854. bottom: 6.8 / 3234
  26855. }
  26856. },
  26857. face: {
  26858. height: math.unit(0.68, "feet"),
  26859. name: "Face",
  26860. image: {
  26861. source: "./media/characters/sam-evans/face.svg"
  26862. }
  26863. },
  26864. },
  26865. [
  26866. {
  26867. name: "Normal",
  26868. height: math.unit(165, "cm"),
  26869. default: true
  26870. },
  26871. {
  26872. name: "Macro",
  26873. height: math.unit(100, "meters")
  26874. },
  26875. {
  26876. name: "Macro+",
  26877. height: math.unit(800, "meters")
  26878. },
  26879. {
  26880. name: "Macro++",
  26881. height: math.unit(3, "km")
  26882. },
  26883. {
  26884. name: "Macro+++",
  26885. height: math.unit(30, "km")
  26886. },
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26891. {
  26892. front: {
  26893. height: math.unit(10, "feet"),
  26894. weight: math.unit(750, "lb"),
  26895. name: "Front",
  26896. image: {
  26897. source: "./media/characters/juliet-a/front.svg",
  26898. extra: 1766 / 1720,
  26899. bottom: 43 / 1809
  26900. }
  26901. },
  26902. back: {
  26903. height: math.unit(10, "feet"),
  26904. weight: math.unit(750, "lb"),
  26905. name: "Back",
  26906. image: {
  26907. source: "./media/characters/juliet-a/back.svg",
  26908. extra: 1781 / 1734,
  26909. bottom: 35 / 1810,
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(10, "feet"),
  26917. default: true
  26918. },
  26919. {
  26920. name: "Dragon Form",
  26921. height: math.unit(250, "feet")
  26922. },
  26923. {
  26924. name: "Macro",
  26925. height: math.unit(1000, "feet")
  26926. },
  26927. {
  26928. name: "Megamacro",
  26929. height: math.unit(10000, "feet")
  26930. }
  26931. ]
  26932. ))
  26933. characterMakers.push(() => makeCharacter(
  26934. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26935. {
  26936. regular: {
  26937. height: math.unit(7 + 3 / 12, "feet"),
  26938. weight: math.unit(260, "lb"),
  26939. name: "Regular",
  26940. image: {
  26941. source: "./media/characters/wild/regular.svg",
  26942. extra: 97.45 / 92,
  26943. bottom: 6.8 / 104.3
  26944. }
  26945. },
  26946. biggums: {
  26947. height: math.unit(8 + 6 / 12, "feet"),
  26948. weight: math.unit(425, "lb"),
  26949. name: "Biggums",
  26950. image: {
  26951. source: "./media/characters/wild/biggums.svg",
  26952. extra: 97.45 / 92,
  26953. bottom: 7.5 / 132.34
  26954. }
  26955. },
  26956. mawRegular: {
  26957. height: math.unit(1.24, "feet"),
  26958. name: "Maw (Regular)",
  26959. image: {
  26960. source: "./media/characters/wild/maw.svg"
  26961. }
  26962. },
  26963. mawBiggums: {
  26964. height: math.unit(1.47, "feet"),
  26965. name: "Maw (Biggums)",
  26966. image: {
  26967. source: "./media/characters/wild/maw.svg"
  26968. }
  26969. },
  26970. },
  26971. [
  26972. {
  26973. name: "Normal",
  26974. height: math.unit(7 + 3 / 12, "feet"),
  26975. default: true
  26976. },
  26977. ]
  26978. ))
  26979. characterMakers.push(() => makeCharacter(
  26980. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26981. {
  26982. front: {
  26983. height: math.unit(2.5, "meters"),
  26984. weight: math.unit(200, "kg"),
  26985. name: "Front",
  26986. image: {
  26987. source: "./media/characters/vidar/front.svg",
  26988. extra: 2994 / 2795,
  26989. bottom: 56 / 3061
  26990. }
  26991. },
  26992. back: {
  26993. height: math.unit(2.5, "meters"),
  26994. weight: math.unit(200, "kg"),
  26995. name: "Back",
  26996. image: {
  26997. source: "./media/characters/vidar/back.svg",
  26998. extra: 3131 / 2928,
  26999. bottom: 13.5 / 3141.5
  27000. }
  27001. },
  27002. feral: {
  27003. height: math.unit(2.5, "meters"),
  27004. weight: math.unit(2000, "kg"),
  27005. name: "Feral",
  27006. image: {
  27007. source: "./media/characters/vidar/feral.svg",
  27008. extra: 2790 / 1765,
  27009. bottom: 6 / 2796
  27010. }
  27011. },
  27012. },
  27013. [
  27014. {
  27015. name: "Normal",
  27016. height: math.unit(2.5, "meters"),
  27017. default: true
  27018. },
  27019. {
  27020. name: "Macro",
  27021. height: math.unit(100, "meters")
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27027. {
  27028. front: {
  27029. height: math.unit(5 + 9 / 12, "feet"),
  27030. weight: math.unit(120, "lb"),
  27031. name: "Front",
  27032. image: {
  27033. source: "./media/characters/ash/front.svg",
  27034. extra: 2189 / 1961,
  27035. bottom: 5.2 / 2194
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Normal",
  27042. height: math.unit(5 + 9 / 12, "feet"),
  27043. default: true
  27044. },
  27045. ]
  27046. ))
  27047. characterMakers.push(() => makeCharacter(
  27048. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27049. {
  27050. front: {
  27051. height: math.unit(9, "feet"),
  27052. weight: math.unit(10000, "lb"),
  27053. name: "Front",
  27054. image: {
  27055. source: "./media/characters/gygabite/front.svg",
  27056. bottom: 31.7 / 537.8,
  27057. extra: 505 / 370
  27058. }
  27059. },
  27060. },
  27061. [
  27062. {
  27063. name: "Normal",
  27064. height: math.unit(9, "feet"),
  27065. default: true
  27066. },
  27067. ]
  27068. ))
  27069. characterMakers.push(() => makeCharacter(
  27070. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27071. {
  27072. front: {
  27073. height: math.unit(12, "feet"),
  27074. weight: math.unit(35000, "lb"),
  27075. name: "Front",
  27076. image: {
  27077. source: "./media/characters/p0tat0/front.svg",
  27078. extra: 1065 / 921,
  27079. bottom: 55.7 / 1121.25
  27080. }
  27081. },
  27082. },
  27083. [
  27084. {
  27085. name: "Normal",
  27086. height: math.unit(12, "feet"),
  27087. default: true
  27088. },
  27089. ]
  27090. ))
  27091. characterMakers.push(() => makeCharacter(
  27092. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27093. {
  27094. side: {
  27095. height: math.unit(6.5, "feet"),
  27096. weight: math.unit(800, "lb"),
  27097. name: "Side",
  27098. image: {
  27099. source: "./media/characters/dusk/side.svg",
  27100. extra: 615 / 373,
  27101. bottom: 53 / 664
  27102. }
  27103. },
  27104. sitting: {
  27105. height: math.unit(7, "feet"),
  27106. weight: math.unit(800, "lb"),
  27107. name: "Sitting",
  27108. image: {
  27109. source: "./media/characters/dusk/sitting.svg",
  27110. extra: 753 / 425,
  27111. bottom: 33 / 774
  27112. }
  27113. },
  27114. head: {
  27115. height: math.unit(6.1, "feet"),
  27116. name: "Head",
  27117. image: {
  27118. source: "./media/characters/dusk/head.svg"
  27119. }
  27120. },
  27121. },
  27122. [
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(7, "feet"),
  27126. default: true
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27132. {
  27133. front: {
  27134. height: math.unit(15, "feet"),
  27135. weight: math.unit(7000, "lb"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/jay-direwolf/front.svg",
  27139. extra: 1810 / 1732,
  27140. bottom: 66 / 1892
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Normal",
  27147. height: math.unit(15, "feet"),
  27148. default: true
  27149. },
  27150. ]
  27151. ))
  27152. characterMakers.push(() => makeCharacter(
  27153. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27154. {
  27155. front: {
  27156. height: math.unit(4 + 9 / 12, "feet"),
  27157. weight: math.unit(130, "lb"),
  27158. name: "Front",
  27159. image: {
  27160. source: "./media/characters/anchovie/front.svg",
  27161. extra: 382 / 350,
  27162. bottom: 25 / 409
  27163. }
  27164. },
  27165. back: {
  27166. height: math.unit(4 + 9 / 12, "feet"),
  27167. weight: math.unit(130, "lb"),
  27168. name: "Back",
  27169. image: {
  27170. source: "./media/characters/anchovie/back.svg",
  27171. extra: 385 / 352,
  27172. bottom: 16.6 / 402
  27173. }
  27174. },
  27175. frontDressed: {
  27176. height: math.unit(4 + 9 / 12, "feet"),
  27177. weight: math.unit(130, "lb"),
  27178. name: "Front (Dressed)",
  27179. image: {
  27180. source: "./media/characters/anchovie/front-dressed.svg",
  27181. extra: 382 / 350,
  27182. bottom: 25 / 409
  27183. }
  27184. },
  27185. backDressed: {
  27186. height: math.unit(4 + 9 / 12, "feet"),
  27187. weight: math.unit(130, "lb"),
  27188. name: "Back (Dressed)",
  27189. image: {
  27190. source: "./media/characters/anchovie/back-dressed.svg",
  27191. extra: 385 / 352,
  27192. bottom: 16.6 / 402
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Micro",
  27199. height: math.unit(6.4, "inches")
  27200. },
  27201. {
  27202. name: "Normal",
  27203. height: math.unit(4 + 9 / 12, "feet"),
  27204. default: true
  27205. },
  27206. ]
  27207. ))
  27208. characterMakers.push(() => makeCharacter(
  27209. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27210. {
  27211. front: {
  27212. height: math.unit(2, "meters"),
  27213. weight: math.unit(180, "lb"),
  27214. name: "Front",
  27215. image: {
  27216. source: "./media/characters/acidrenamon/front.svg",
  27217. extra: 987 / 890,
  27218. bottom: 22.8 / 1009
  27219. }
  27220. },
  27221. back: {
  27222. height: math.unit(2, "meters"),
  27223. weight: math.unit(180, "lb"),
  27224. name: "Back",
  27225. image: {
  27226. source: "./media/characters/acidrenamon/back.svg",
  27227. extra: 983 / 891,
  27228. bottom: 8.4 / 992
  27229. }
  27230. },
  27231. head: {
  27232. height: math.unit(1.92, "feet"),
  27233. name: "Head",
  27234. image: {
  27235. source: "./media/characters/acidrenamon/head.svg"
  27236. }
  27237. },
  27238. rump: {
  27239. height: math.unit(1.72, "feet"),
  27240. name: "Rump",
  27241. image: {
  27242. source: "./media/characters/acidrenamon/rump.svg"
  27243. }
  27244. },
  27245. tail: {
  27246. height: math.unit(4.2, "feet"),
  27247. name: "Tail",
  27248. image: {
  27249. source: "./media/characters/acidrenamon/tail.svg"
  27250. }
  27251. },
  27252. },
  27253. [
  27254. {
  27255. name: "Normal",
  27256. height: math.unit(2, "meters"),
  27257. default: true
  27258. },
  27259. {
  27260. name: "Minimacro",
  27261. height: math.unit(7, "meters")
  27262. },
  27263. {
  27264. name: "Macro",
  27265. height: math.unit(200, "meters")
  27266. },
  27267. {
  27268. name: "Gigamacro",
  27269. height: math.unit(0.2, "earths")
  27270. },
  27271. ]
  27272. ))
  27273. characterMakers.push(() => makeCharacter(
  27274. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27275. {
  27276. front: {
  27277. height: math.unit(6, "feet"),
  27278. weight: math.unit(150, "lb"),
  27279. name: "Front",
  27280. image: {
  27281. source: "./media/characters/kenzie-lee/front.svg",
  27282. extra: 1525 / 1465,
  27283. bottom: 45 / 1570
  27284. }
  27285. },
  27286. side: {
  27287. height: math.unit(6, "feet"),
  27288. weight: math.unit(150, "lb"),
  27289. name: "Side",
  27290. image: {
  27291. source: "./media/characters/kenzie-lee/side.svg",
  27292. extra: 5505 / 5383,
  27293. bottom: 60 / 5573
  27294. }
  27295. },
  27296. paw: {
  27297. height: math.unit(0.57, "feet"),
  27298. name: "Paw",
  27299. image: {
  27300. source: "./media/characters/kenzie-lee/paw.svg"
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(152, "feet"),
  27308. default: true
  27309. },
  27310. {
  27311. name: "Megamacro",
  27312. height: math.unit(7, "miles")
  27313. },
  27314. {
  27315. name: "Gigamacro",
  27316. height: math.unit(8000, "miles")
  27317. },
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27322. {
  27323. side: {
  27324. height: math.unit(6, "feet"),
  27325. weight: math.unit(150, "lb"),
  27326. name: "Side",
  27327. image: {
  27328. source: "./media/characters/withers/side.svg",
  27329. extra: 1830 / 1728,
  27330. bottom: 96 / 1927
  27331. }
  27332. },
  27333. front: {
  27334. height: math.unit(6, "feet"),
  27335. weight: math.unit(150, "lb"),
  27336. name: "Front",
  27337. image: {
  27338. source: "./media/characters/withers/front.svg",
  27339. extra: 1514 / 1438,
  27340. bottom: 118 / 1632
  27341. }
  27342. },
  27343. },
  27344. [
  27345. {
  27346. name: "Macro",
  27347. height: math.unit(168, "feet"),
  27348. default: true
  27349. },
  27350. {
  27351. name: "Megamacro",
  27352. height: math.unit(15, "miles")
  27353. }
  27354. ]
  27355. ))
  27356. characterMakers.push(() => makeCharacter(
  27357. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27358. {
  27359. front: {
  27360. height: math.unit(6 + 7 / 12, "feet"),
  27361. weight: math.unit(250, "lb"),
  27362. name: "Front",
  27363. image: {
  27364. source: "./media/characters/nemoskii/front.svg",
  27365. extra: 2270 / 1734,
  27366. bottom: 86 / 2354
  27367. }
  27368. },
  27369. back: {
  27370. height: math.unit(6 + 7 / 12, "feet"),
  27371. weight: math.unit(250, "lb"),
  27372. name: "Back",
  27373. image: {
  27374. source: "./media/characters/nemoskii/back.svg",
  27375. extra: 1845 / 1788,
  27376. bottom: 10.5 / 1852
  27377. }
  27378. },
  27379. head: {
  27380. height: math.unit(1.31, "feet"),
  27381. name: "Head",
  27382. image: {
  27383. source: "./media/characters/nemoskii/head.svg"
  27384. }
  27385. },
  27386. },
  27387. [
  27388. {
  27389. name: "Micro",
  27390. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27391. },
  27392. {
  27393. name: "Normal",
  27394. height: math.unit(6 + 7 / 12, "feet"),
  27395. default: true
  27396. },
  27397. {
  27398. name: "Macro",
  27399. height: math.unit((6 + 7 / 12) * 150, "feet")
  27400. },
  27401. {
  27402. name: "Macro+",
  27403. height: math.unit((6 + 7 / 12) * 500, "feet")
  27404. },
  27405. {
  27406. name: "Megamacro",
  27407. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27408. },
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27413. {
  27414. front: {
  27415. height: math.unit(1, "mile"),
  27416. weight: math.unit(265261.9, "lb"),
  27417. name: "Front",
  27418. image: {
  27419. source: "./media/characters/shui/front.svg",
  27420. extra: 1633 / 1564,
  27421. bottom: 91.5 / 1726
  27422. }
  27423. },
  27424. },
  27425. [
  27426. {
  27427. name: "Macro",
  27428. height: math.unit(1, "mile"),
  27429. default: true
  27430. },
  27431. ]
  27432. ))
  27433. characterMakers.push(() => makeCharacter(
  27434. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27435. {
  27436. front: {
  27437. height: math.unit(12 + 6 / 12, "feet"),
  27438. weight: math.unit(1342, "lb"),
  27439. name: "Front",
  27440. image: {
  27441. source: "./media/characters/arokh-takakura/front.svg",
  27442. extra: 1089 / 1043,
  27443. bottom: 77.4 / 1176.7
  27444. }
  27445. },
  27446. back: {
  27447. height: math.unit(12 + 6 / 12, "feet"),
  27448. weight: math.unit(1342, "lb"),
  27449. name: "Back",
  27450. image: {
  27451. source: "./media/characters/arokh-takakura/back.svg",
  27452. extra: 1046 / 1019,
  27453. bottom: 102 / 1150
  27454. }
  27455. },
  27456. },
  27457. [
  27458. {
  27459. name: "Big",
  27460. height: math.unit(12 + 6 / 12, "feet"),
  27461. default: true
  27462. },
  27463. ]
  27464. ))
  27465. characterMakers.push(() => makeCharacter(
  27466. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27467. {
  27468. front: {
  27469. height: math.unit(5 + 6 / 12, "feet"),
  27470. weight: math.unit(150, "lb"),
  27471. name: "Front",
  27472. image: {
  27473. source: "./media/characters/theo/front.svg",
  27474. extra: 1184 / 1131,
  27475. bottom: 7.4 / 1191
  27476. }
  27477. },
  27478. },
  27479. [
  27480. {
  27481. name: "Micro",
  27482. height: math.unit(5, "inches")
  27483. },
  27484. {
  27485. name: "Normal",
  27486. height: math.unit(5 + 6 / 12, "feet"),
  27487. default: true
  27488. },
  27489. ]
  27490. ))
  27491. characterMakers.push(() => makeCharacter(
  27492. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27493. {
  27494. front: {
  27495. height: math.unit(5 + 9 / 12, "feet"),
  27496. weight: math.unit(130, "lb"),
  27497. name: "Front",
  27498. image: {
  27499. source: "./media/characters/cecelia-swift/front.svg",
  27500. extra: 502 / 484,
  27501. bottom: 23 / 523
  27502. }
  27503. },
  27504. back: {
  27505. height: math.unit(5 + 9 / 12, "feet"),
  27506. weight: math.unit(130, "lb"),
  27507. name: "Back",
  27508. image: {
  27509. source: "./media/characters/cecelia-swift/back.svg",
  27510. extra: 499 / 485,
  27511. bottom: 12 / 511
  27512. }
  27513. },
  27514. head: {
  27515. height: math.unit(0.90, "feet"),
  27516. name: "Head",
  27517. image: {
  27518. source: "./media/characters/cecelia-swift/head.svg"
  27519. }
  27520. },
  27521. rump: {
  27522. height: math.unit(1.75, "feet"),
  27523. name: "Rump",
  27524. image: {
  27525. source: "./media/characters/cecelia-swift/rump.svg"
  27526. }
  27527. },
  27528. },
  27529. [
  27530. {
  27531. name: "Normal",
  27532. height: math.unit(5 + 9 / 12, "feet"),
  27533. default: true
  27534. },
  27535. {
  27536. name: "Big",
  27537. height: math.unit(50, "feet")
  27538. },
  27539. {
  27540. name: "Macro",
  27541. height: math.unit(100, "feet")
  27542. },
  27543. {
  27544. name: "Macro+",
  27545. height: math.unit(500, "feet")
  27546. },
  27547. {
  27548. name: "Macro++",
  27549. height: math.unit(1000, "feet")
  27550. },
  27551. ]
  27552. ))
  27553. characterMakers.push(() => makeCharacter(
  27554. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27555. {
  27556. front: {
  27557. height: math.unit(6, "feet"),
  27558. weight: math.unit(150, "lb"),
  27559. name: "Front",
  27560. image: {
  27561. source: "./media/characters/kaunan/front.svg",
  27562. extra: 2890 / 2523,
  27563. bottom: 49 / 2939
  27564. }
  27565. },
  27566. },
  27567. [
  27568. {
  27569. name: "Macro",
  27570. height: math.unit(150, "feet"),
  27571. default: true
  27572. },
  27573. ]
  27574. ))
  27575. characterMakers.push(() => makeCharacter(
  27576. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27577. {
  27578. front: {
  27579. height: math.unit(175, "cm"),
  27580. weight: math.unit(60, "kg"),
  27581. name: "Front",
  27582. image: {
  27583. source: "./media/characters/fei/front.svg",
  27584. extra: 1873/1723,
  27585. bottom: 53/1926
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Mortal",
  27592. height: math.unit(175, "cm")
  27593. },
  27594. {
  27595. name: "Normal",
  27596. height: math.unit(3500, "m"),
  27597. default: true
  27598. },
  27599. {
  27600. name: "Stroll",
  27601. height: math.unit(17.5, "km")
  27602. },
  27603. {
  27604. name: "Showoff",
  27605. height: math.unit(175, "km")
  27606. },
  27607. ]
  27608. ))
  27609. characterMakers.push(() => makeCharacter(
  27610. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27611. {
  27612. front: {
  27613. height: math.unit(7, "feet"),
  27614. weight: math.unit(1000, "kg"),
  27615. name: "Front",
  27616. image: {
  27617. source: "./media/characters/edrax/front.svg",
  27618. extra: 2838 / 2550,
  27619. bottom: 130 / 2968
  27620. }
  27621. },
  27622. },
  27623. [
  27624. {
  27625. name: "Small",
  27626. height: math.unit(7, "feet")
  27627. },
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(1500, "meters")
  27631. },
  27632. {
  27633. name: "Mega",
  27634. height: math.unit(12000000, "km"),
  27635. default: true
  27636. },
  27637. {
  27638. name: "Megamacro",
  27639. height: math.unit(10600000, "lightyears")
  27640. },
  27641. {
  27642. name: "Hypermacro",
  27643. height: math.unit(256, "yottameters")
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27649. {
  27650. front: {
  27651. height: math.unit(10, "feet"),
  27652. weight: math.unit(750, "lb"),
  27653. name: "Front",
  27654. image: {
  27655. source: "./media/characters/clove/front.svg",
  27656. extra: 2031 / 1860,
  27657. bottom: 47.8 / 2080
  27658. }
  27659. },
  27660. back: {
  27661. height: math.unit(10, "feet"),
  27662. weight: math.unit(750, "lb"),
  27663. name: "Back",
  27664. image: {
  27665. source: "./media/characters/clove/back.svg",
  27666. extra: 2025 / 1859,
  27667. bottom: 46 / 2071
  27668. }
  27669. },
  27670. },
  27671. [
  27672. {
  27673. name: "Normal",
  27674. height: math.unit(10, "feet"),
  27675. default: true
  27676. },
  27677. ]
  27678. ))
  27679. characterMakers.push(() => makeCharacter(
  27680. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27681. {
  27682. front: {
  27683. height: math.unit(4, "feet"),
  27684. weight: math.unit(50, "lb"),
  27685. name: "Front",
  27686. image: {
  27687. source: "./media/characters/alex-rabbit/front.svg",
  27688. extra: 507 / 458,
  27689. bottom: 18.5 / 527
  27690. }
  27691. },
  27692. back: {
  27693. height: math.unit(4, "feet"),
  27694. weight: math.unit(50, "lb"),
  27695. name: "Back",
  27696. image: {
  27697. source: "./media/characters/alex-rabbit/back.svg",
  27698. extra: 502 / 460,
  27699. bottom: 18.9 / 521
  27700. }
  27701. },
  27702. },
  27703. [
  27704. {
  27705. name: "Normal",
  27706. height: math.unit(4, "feet"),
  27707. default: true
  27708. },
  27709. ]
  27710. ))
  27711. characterMakers.push(() => makeCharacter(
  27712. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27713. {
  27714. front: {
  27715. height: math.unit(1 + 3 / 12, "feet"),
  27716. weight: math.unit(80, "lb"),
  27717. name: "Front",
  27718. image: {
  27719. source: "./media/characters/zander-rose/front.svg",
  27720. extra: 916 / 797,
  27721. bottom: 17 / 933
  27722. }
  27723. },
  27724. back: {
  27725. height: math.unit(1 + 3 / 12, "feet"),
  27726. weight: math.unit(80, "lb"),
  27727. name: "Back",
  27728. image: {
  27729. source: "./media/characters/zander-rose/back.svg",
  27730. extra: 903 / 779,
  27731. bottom: 31 / 934
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(1 + 3 / 12, "feet"),
  27739. default: true
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27745. {
  27746. anthro: {
  27747. height: math.unit(6, "feet"),
  27748. weight: math.unit(150, "lb"),
  27749. name: "Anthro",
  27750. image: {
  27751. source: "./media/characters/razz/anthro.svg",
  27752. extra: 1437 / 1343,
  27753. bottom: 48 / 1485
  27754. }
  27755. },
  27756. feral: {
  27757. height: math.unit(6, "feet"),
  27758. weight: math.unit(150, "lb"),
  27759. name: "Feral",
  27760. image: {
  27761. source: "./media/characters/razz/feral.svg",
  27762. extra: 2569 / 1385,
  27763. bottom: 95 / 2664
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(6, "feet"),
  27771. default: true
  27772. },
  27773. ]
  27774. ))
  27775. characterMakers.push(() => makeCharacter(
  27776. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27777. {
  27778. front: {
  27779. height: math.unit(9 + 4 / 12, "feet"),
  27780. weight: math.unit(500, "lb"),
  27781. name: "Front",
  27782. image: {
  27783. source: "./media/characters/morrigan/front.svg",
  27784. extra: 2707 / 2579,
  27785. bottom: 156 / 2863
  27786. }
  27787. },
  27788. },
  27789. [
  27790. {
  27791. name: "Normal",
  27792. height: math.unit(9 + 4 / 12, "feet"),
  27793. default: true
  27794. },
  27795. ]
  27796. ))
  27797. characterMakers.push(() => makeCharacter(
  27798. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27799. {
  27800. front: {
  27801. height: math.unit(5, "stories"),
  27802. weight: math.unit(4000, "lb"),
  27803. name: "Front",
  27804. image: {
  27805. source: "./media/characters/jenene/front.svg",
  27806. extra: 1780 / 1710,
  27807. bottom: 57 / 1837
  27808. }
  27809. },
  27810. },
  27811. [
  27812. {
  27813. name: "Normal",
  27814. height: math.unit(5, "stories"),
  27815. default: true
  27816. },
  27817. ]
  27818. ))
  27819. characterMakers.push(() => makeCharacter(
  27820. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27821. {
  27822. taurSfw: {
  27823. height: math.unit(10, "meters"),
  27824. weight: math.unit(17500, "kg"),
  27825. name: "Taur",
  27826. image: {
  27827. source: "./media/characters/faey/taur-sfw.svg",
  27828. extra: 1200 / 968,
  27829. bottom: 41 / 1241
  27830. }
  27831. },
  27832. chestmaw: {
  27833. height: math.unit(2.01, "meters"),
  27834. name: "Chestmaw",
  27835. image: {
  27836. source: "./media/characters/faey/chestmaw.svg"
  27837. }
  27838. },
  27839. foot: {
  27840. height: math.unit(2.43, "meters"),
  27841. name: "Foot",
  27842. image: {
  27843. source: "./media/characters/faey/foot.svg"
  27844. }
  27845. },
  27846. jaws: {
  27847. height: math.unit(1.66, "meters"),
  27848. name: "Jaws",
  27849. image: {
  27850. source: "./media/characters/faey/jaws.svg"
  27851. }
  27852. },
  27853. tongues: {
  27854. height: math.unit(2.01, "meters"),
  27855. name: "Tongues",
  27856. image: {
  27857. source: "./media/characters/faey/tongues.svg"
  27858. }
  27859. },
  27860. },
  27861. [
  27862. {
  27863. name: "Small",
  27864. height: math.unit(10, "meters"),
  27865. default: true
  27866. },
  27867. {
  27868. name: "Big",
  27869. height: math.unit(500000, "km")
  27870. },
  27871. ]
  27872. ))
  27873. characterMakers.push(() => makeCharacter(
  27874. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27875. {
  27876. front: {
  27877. height: math.unit(7, "feet"),
  27878. weight: math.unit(275, "lb"),
  27879. name: "Front",
  27880. image: {
  27881. source: "./media/characters/roku/front.svg",
  27882. extra: 903 / 878,
  27883. bottom: 37 / 940
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Normal",
  27890. height: math.unit(7, "feet"),
  27891. default: true
  27892. },
  27893. {
  27894. name: "Macro",
  27895. height: math.unit(500, "feet")
  27896. },
  27897. {
  27898. name: "Megamacro",
  27899. height: math.unit(200, "miles")
  27900. },
  27901. ]
  27902. ))
  27903. characterMakers.push(() => makeCharacter(
  27904. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27905. {
  27906. front: {
  27907. height: math.unit(6 + 2 / 12, "feet"),
  27908. weight: math.unit(150, "lb"),
  27909. name: "Front",
  27910. image: {
  27911. source: "./media/characters/lira/front.svg",
  27912. extra: 1727 / 1605,
  27913. bottom: 26 / 1753
  27914. }
  27915. },
  27916. back: {
  27917. height: math.unit(6 + 2 / 12, "feet"),
  27918. weight: math.unit(150, "lb"),
  27919. name: "Back",
  27920. image: {
  27921. source: "./media/characters/lira/back.svg",
  27922. extra: 1713/1621,
  27923. bottom: 20/1733
  27924. }
  27925. },
  27926. hand: {
  27927. height: math.unit(0.75, "feet"),
  27928. name: "Hand",
  27929. image: {
  27930. source: "./media/characters/lira/hand.svg"
  27931. }
  27932. },
  27933. maw: {
  27934. height: math.unit(0.65, "feet"),
  27935. name: "Maw",
  27936. image: {
  27937. source: "./media/characters/lira/maw.svg"
  27938. }
  27939. },
  27940. pawDigi: {
  27941. height: math.unit(1.6, "feet"),
  27942. name: "Paw Digi",
  27943. image: {
  27944. source: "./media/characters/lira/paw-digi.svg"
  27945. }
  27946. },
  27947. pawPlanti: {
  27948. height: math.unit(1.4, "feet"),
  27949. name: "Paw Planti",
  27950. image: {
  27951. source: "./media/characters/lira/paw-planti.svg"
  27952. }
  27953. },
  27954. },
  27955. [
  27956. {
  27957. name: "Normal",
  27958. height: math.unit(6 + 2 / 12, "feet"),
  27959. default: true
  27960. },
  27961. {
  27962. name: "Macro",
  27963. height: math.unit(100, "feet")
  27964. },
  27965. {
  27966. name: "Macro²",
  27967. height: math.unit(1600, "feet")
  27968. },
  27969. {
  27970. name: "Planetary",
  27971. height: math.unit(20, "earths")
  27972. },
  27973. ]
  27974. ))
  27975. characterMakers.push(() => makeCharacter(
  27976. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27977. {
  27978. front: {
  27979. height: math.unit(6, "feet"),
  27980. weight: math.unit(150, "lb"),
  27981. name: "Front",
  27982. image: {
  27983. source: "./media/characters/hadjet/front.svg",
  27984. extra: 1480 / 1346,
  27985. bottom: 26 / 1506
  27986. }
  27987. },
  27988. frontNsfw: {
  27989. height: math.unit(6, "feet"),
  27990. weight: math.unit(150, "lb"),
  27991. name: "Front (NSFW)",
  27992. image: {
  27993. source: "./media/characters/hadjet/front-nsfw.svg",
  27994. extra: 1440 / 1358,
  27995. bottom: 52 / 1492
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Macro",
  28002. height: math.unit(10, "stories"),
  28003. default: true
  28004. },
  28005. {
  28006. name: "Megamacro",
  28007. height: math.unit(1.5, "miles")
  28008. },
  28009. {
  28010. name: "Megamacro+",
  28011. height: math.unit(5, "miles")
  28012. },
  28013. ]
  28014. ))
  28015. characterMakers.push(() => makeCharacter(
  28016. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28017. {
  28018. side: {
  28019. height: math.unit(106, "feet"),
  28020. weight: math.unit(500, "tonnes"),
  28021. name: "Side",
  28022. image: {
  28023. source: "./media/characters/kodran/side.svg",
  28024. extra: 553 / 480,
  28025. bottom: 33 / 586
  28026. }
  28027. },
  28028. front: {
  28029. height: math.unit(132, "feet"),
  28030. weight: math.unit(500, "tonnes"),
  28031. name: "Front",
  28032. image: {
  28033. source: "./media/characters/kodran/front.svg",
  28034. extra: 667 / 643,
  28035. bottom: 42 / 709
  28036. }
  28037. },
  28038. flying: {
  28039. height: math.unit(350, "feet"),
  28040. weight: math.unit(500, "tonnes"),
  28041. name: "Flying",
  28042. image: {
  28043. source: "./media/characters/kodran/flying.svg"
  28044. }
  28045. },
  28046. foot: {
  28047. height: math.unit(33, "feet"),
  28048. name: "Foot",
  28049. image: {
  28050. source: "./media/characters/kodran/foot.svg"
  28051. }
  28052. },
  28053. footFront: {
  28054. height: math.unit(19, "feet"),
  28055. name: "Foot (Front)",
  28056. image: {
  28057. source: "./media/characters/kodran/foot-front.svg",
  28058. extra: 261 / 261,
  28059. bottom: 91 / 352
  28060. }
  28061. },
  28062. headFront: {
  28063. height: math.unit(53, "feet"),
  28064. name: "Head (Front)",
  28065. image: {
  28066. source: "./media/characters/kodran/head-front.svg"
  28067. }
  28068. },
  28069. headSide: {
  28070. height: math.unit(65, "feet"),
  28071. name: "Head (Side)",
  28072. image: {
  28073. source: "./media/characters/kodran/head-side.svg"
  28074. }
  28075. },
  28076. throat: {
  28077. height: math.unit(79, "feet"),
  28078. name: "Throat",
  28079. image: {
  28080. source: "./media/characters/kodran/throat.svg"
  28081. }
  28082. },
  28083. },
  28084. [
  28085. {
  28086. name: "Large",
  28087. height: math.unit(106, "feet"),
  28088. default: true
  28089. },
  28090. ]
  28091. ))
  28092. characterMakers.push(() => makeCharacter(
  28093. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28094. {
  28095. side: {
  28096. height: math.unit(11, "feet"),
  28097. weight: math.unit(150, "lb"),
  28098. name: "Side",
  28099. image: {
  28100. source: "./media/characters/pyxaron/side.svg",
  28101. extra: 305 / 195,
  28102. bottom: 17 / 322
  28103. }
  28104. },
  28105. },
  28106. [
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(11, "feet"),
  28110. default: true
  28111. },
  28112. ]
  28113. ))
  28114. characterMakers.push(() => makeCharacter(
  28115. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28116. {
  28117. front: {
  28118. height: math.unit(6, "feet"),
  28119. weight: math.unit(150, "lb"),
  28120. name: "Front",
  28121. image: {
  28122. source: "./media/characters/meep/front.svg",
  28123. extra: 88 / 80,
  28124. bottom: 6 / 94
  28125. }
  28126. },
  28127. },
  28128. [
  28129. {
  28130. name: "Fun Sized",
  28131. height: math.unit(2, "inches"),
  28132. default: true
  28133. },
  28134. {
  28135. name: "Friend Sized",
  28136. height: math.unit(8, "inches")
  28137. },
  28138. ]
  28139. ))
  28140. characterMakers.push(() => makeCharacter(
  28141. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28142. {
  28143. front: {
  28144. height: math.unit(15, "feet"),
  28145. weight: math.unit(2500, "lb"),
  28146. name: "Front",
  28147. image: {
  28148. source: "./media/characters/holly-rabbit/front.svg",
  28149. extra: 1433 / 1233,
  28150. bottom: 125 / 1558
  28151. }
  28152. },
  28153. dick: {
  28154. height: math.unit(4.6, "feet"),
  28155. name: "Dick",
  28156. image: {
  28157. source: "./media/characters/holly-rabbit/dick.svg"
  28158. }
  28159. },
  28160. },
  28161. [
  28162. {
  28163. name: "Normal",
  28164. height: math.unit(15, "feet"),
  28165. default: true
  28166. },
  28167. {
  28168. name: "Macro",
  28169. height: math.unit(250, "feet")
  28170. },
  28171. {
  28172. name: "Macro+",
  28173. height: math.unit(2500, "feet")
  28174. },
  28175. ]
  28176. ))
  28177. characterMakers.push(() => makeCharacter(
  28178. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28179. {
  28180. front: {
  28181. height: math.unit(3.02, "meters"),
  28182. weight: math.unit(500, "kg"),
  28183. name: "Front",
  28184. image: {
  28185. source: "./media/characters/drena/front.svg",
  28186. extra: 282 / 243,
  28187. bottom: 8 / 290
  28188. }
  28189. },
  28190. side: {
  28191. height: math.unit(3.02, "meters"),
  28192. weight: math.unit(500, "kg"),
  28193. name: "Side",
  28194. image: {
  28195. source: "./media/characters/drena/side.svg",
  28196. extra: 280 / 245,
  28197. bottom: 10 / 290
  28198. }
  28199. },
  28200. back: {
  28201. height: math.unit(3.02, "meters"),
  28202. weight: math.unit(500, "kg"),
  28203. name: "Back",
  28204. image: {
  28205. source: "./media/characters/drena/back.svg",
  28206. extra: 278 / 243,
  28207. bottom: 2 / 280
  28208. }
  28209. },
  28210. foot: {
  28211. height: math.unit(0.75, "meters"),
  28212. name: "Foot",
  28213. image: {
  28214. source: "./media/characters/drena/foot.svg"
  28215. }
  28216. },
  28217. maw: {
  28218. height: math.unit(0.82, "meters"),
  28219. name: "Maw",
  28220. image: {
  28221. source: "./media/characters/drena/maw.svg"
  28222. }
  28223. },
  28224. rump: {
  28225. height: math.unit(0.93, "meters"),
  28226. name: "Rump",
  28227. image: {
  28228. source: "./media/characters/drena/rump.svg"
  28229. }
  28230. },
  28231. },
  28232. [
  28233. {
  28234. name: "Normal",
  28235. height: math.unit(3.02, "meters"),
  28236. default: true
  28237. },
  28238. ]
  28239. ))
  28240. characterMakers.push(() => makeCharacter(
  28241. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28242. {
  28243. front: {
  28244. height: math.unit(6 + 4 / 12, "feet"),
  28245. weight: math.unit(250, "lb"),
  28246. name: "Front",
  28247. image: {
  28248. source: "./media/characters/remmyzilla/front.svg",
  28249. extra: 4033 / 3588,
  28250. bottom: 123 / 4156
  28251. }
  28252. },
  28253. back: {
  28254. height: math.unit(6 + 4 / 12, "feet"),
  28255. weight: math.unit(250, "lb"),
  28256. name: "Back",
  28257. image: {
  28258. source: "./media/characters/remmyzilla/back.svg",
  28259. extra: 2687 / 2555,
  28260. bottom: 48 / 2735
  28261. }
  28262. },
  28263. paw: {
  28264. height: math.unit(1.73, "feet"),
  28265. name: "Paw",
  28266. image: {
  28267. source: "./media/characters/remmyzilla/paw.svg"
  28268. }
  28269. },
  28270. maw: {
  28271. height: math.unit(1.73, "feet"),
  28272. name: "Maw",
  28273. image: {
  28274. source: "./media/characters/remmyzilla/maw.svg"
  28275. }
  28276. },
  28277. },
  28278. [
  28279. {
  28280. name: "Normal",
  28281. height: math.unit(6 + 4 / 12, "feet")
  28282. },
  28283. {
  28284. name: "Minimacro",
  28285. height: math.unit(12 + 8 / 12, "feet")
  28286. },
  28287. {
  28288. name: "Normal",
  28289. height: math.unit(640, "feet"),
  28290. default: true
  28291. },
  28292. {
  28293. name: "Megamacro",
  28294. height: math.unit(6400, "feet")
  28295. },
  28296. {
  28297. name: "Gigamacro",
  28298. height: math.unit(64000, "miles")
  28299. },
  28300. ]
  28301. ))
  28302. characterMakers.push(() => makeCharacter(
  28303. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28304. {
  28305. front: {
  28306. height: math.unit(2.5, "meters"),
  28307. weight: math.unit(300, "lb"),
  28308. name: "Front",
  28309. image: {
  28310. source: "./media/characters/lawrence/front.svg",
  28311. extra: 357 / 335,
  28312. bottom: 30 / 387
  28313. }
  28314. },
  28315. back: {
  28316. height: math.unit(2.5, "meters"),
  28317. weight: math.unit(300, "lb"),
  28318. name: "Back",
  28319. image: {
  28320. source: "./media/characters/lawrence/back.svg",
  28321. extra: 357 / 338,
  28322. bottom: 16 / 373
  28323. }
  28324. },
  28325. head: {
  28326. height: math.unit(0.9, "meter"),
  28327. name: "Head",
  28328. image: {
  28329. source: "./media/characters/lawrence/head.svg"
  28330. }
  28331. },
  28332. maw: {
  28333. height: math.unit(0.7, "meter"),
  28334. name: "Maw",
  28335. image: {
  28336. source: "./media/characters/lawrence/maw.svg"
  28337. }
  28338. },
  28339. footBottom: {
  28340. height: math.unit(0.5, "meter"),
  28341. name: "Foot (Bottom)",
  28342. image: {
  28343. source: "./media/characters/lawrence/foot-bottom.svg"
  28344. }
  28345. },
  28346. footTop: {
  28347. height: math.unit(0.5, "meter"),
  28348. name: "Foot (Top)",
  28349. image: {
  28350. source: "./media/characters/lawrence/foot-top.svg"
  28351. }
  28352. },
  28353. },
  28354. [
  28355. {
  28356. name: "Normal",
  28357. height: math.unit(2.5, "meters"),
  28358. default: true
  28359. },
  28360. {
  28361. name: "Macro",
  28362. height: math.unit(95, "meters")
  28363. },
  28364. {
  28365. name: "Megamacro",
  28366. height: math.unit(150, "km")
  28367. },
  28368. ]
  28369. ))
  28370. characterMakers.push(() => makeCharacter(
  28371. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28372. {
  28373. front: {
  28374. height: math.unit(4.2, "meters"),
  28375. name: "Front",
  28376. image: {
  28377. source: "./media/characters/sydney/front.svg",
  28378. extra: 1323 / 1277,
  28379. bottom: 111 / 1434
  28380. }
  28381. },
  28382. },
  28383. [
  28384. {
  28385. name: "Normal",
  28386. height: math.unit(4.2, "meters"),
  28387. default: true
  28388. },
  28389. ]
  28390. ))
  28391. characterMakers.push(() => makeCharacter(
  28392. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28393. {
  28394. back: {
  28395. height: math.unit(201, "feet"),
  28396. name: "Back",
  28397. image: {
  28398. source: "./media/characters/jessica/back.svg",
  28399. extra: 273 / 259,
  28400. bottom: 7 / 280
  28401. }
  28402. },
  28403. },
  28404. [
  28405. {
  28406. name: "Normal",
  28407. height: math.unit(201, "feet"),
  28408. default: true
  28409. },
  28410. {
  28411. name: "Megamacro",
  28412. height: math.unit(8, "miles")
  28413. },
  28414. ]
  28415. ))
  28416. characterMakers.push(() => makeCharacter(
  28417. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28418. {
  28419. side: {
  28420. height: math.unit(320, "cm"),
  28421. name: "Side",
  28422. image: {
  28423. source: "./media/characters/victoria/side.svg",
  28424. extra: 778 / 346,
  28425. bottom: 56 / 834
  28426. }
  28427. },
  28428. maw: {
  28429. height: math.unit(5.9, "feet"),
  28430. name: "Maw",
  28431. image: {
  28432. source: "./media/characters/victoria/maw.svg"
  28433. }
  28434. },
  28435. },
  28436. [
  28437. {
  28438. name: "Normal",
  28439. height: math.unit(320, "cm"),
  28440. default: true
  28441. },
  28442. ]
  28443. ))
  28444. characterMakers.push(() => makeCharacter(
  28445. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28446. {
  28447. front: {
  28448. height: math.unit(5 + 6 / 12, "feet"),
  28449. name: "Front",
  28450. image: {
  28451. source: "./media/characters/cat/front.svg",
  28452. extra: 1449/1295,
  28453. bottom: 34/1483
  28454. }
  28455. },
  28456. back: {
  28457. height: math.unit(5 + 6 / 12, "feet"),
  28458. name: "Back",
  28459. image: {
  28460. source: "./media/characters/cat/back.svg",
  28461. extra: 1466/1301,
  28462. bottom: 19/1485
  28463. }
  28464. },
  28465. taur: {
  28466. height: math.unit(7, "feet"),
  28467. name: "Taur",
  28468. image: {
  28469. source: "./media/characters/cat/taur.svg",
  28470. extra: 1389/1233,
  28471. bottom: 83/1472
  28472. }
  28473. },
  28474. lucarioFront: {
  28475. height: math.unit(4, "feet"),
  28476. name: "Lucario (Front)",
  28477. image: {
  28478. source: "./media/characters/cat/lucario-front.svg",
  28479. extra: 1149/1019,
  28480. bottom: 84/1233
  28481. }
  28482. },
  28483. lucarioBack: {
  28484. height: math.unit(4, "feet"),
  28485. name: "Lucario (Back)",
  28486. image: {
  28487. source: "./media/characters/cat/lucario-back.svg",
  28488. extra: 1190/1059,
  28489. bottom: 33/1223
  28490. }
  28491. },
  28492. megaLucario: {
  28493. height: math.unit(4, "feet"),
  28494. name: "Mega Lucario",
  28495. image: {
  28496. source: "./media/characters/cat/mega-lucario.svg",
  28497. extra: 1515 / 1319,
  28498. bottom: 63 / 1578
  28499. }
  28500. },
  28501. nickit: {
  28502. height: math.unit(2, "feet"),
  28503. name: "Nickit",
  28504. image: {
  28505. source: "./media/characters/cat/nickit.svg",
  28506. extra: 1980 / 1585,
  28507. bottom: 102 / 2082
  28508. }
  28509. },
  28510. lopunnyFront: {
  28511. height: math.unit(5, "feet"),
  28512. name: "Lopunny (Front)",
  28513. image: {
  28514. source: "./media/characters/cat/lopunny-front.svg",
  28515. extra: 1782 / 1469,
  28516. bottom: 38 / 1820
  28517. }
  28518. },
  28519. lopunnyBack: {
  28520. height: math.unit(5, "feet"),
  28521. name: "Lopunny (Back)",
  28522. image: {
  28523. source: "./media/characters/cat/lopunny-back.svg",
  28524. extra: 1660 / 1490,
  28525. bottom: 25 / 1685
  28526. }
  28527. },
  28528. },
  28529. [
  28530. {
  28531. name: "Really small",
  28532. height: math.unit(1, "nm")
  28533. },
  28534. {
  28535. name: "Micro",
  28536. height: math.unit(5, "inches")
  28537. },
  28538. {
  28539. name: "Normal",
  28540. height: math.unit(5 + 6 / 12, "feet"),
  28541. default: true
  28542. },
  28543. {
  28544. name: "Macro",
  28545. height: math.unit(50, "feet")
  28546. },
  28547. {
  28548. name: "Macro+",
  28549. height: math.unit(150, "feet")
  28550. },
  28551. {
  28552. name: "Megamacro",
  28553. height: math.unit(100, "miles")
  28554. },
  28555. ]
  28556. ))
  28557. characterMakers.push(() => makeCharacter(
  28558. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28559. {
  28560. front: {
  28561. height: math.unit(63.4, "meters"),
  28562. weight: math.unit(3.28349e+6, "kilograms"),
  28563. name: "Front",
  28564. image: {
  28565. source: "./media/characters/kirina-violet/front.svg",
  28566. extra: 2812 / 2725,
  28567. bottom: 0 / 2812
  28568. }
  28569. },
  28570. back: {
  28571. height: math.unit(63.4, "meters"),
  28572. weight: math.unit(3.28349e+6, "kilograms"),
  28573. name: "Back",
  28574. image: {
  28575. source: "./media/characters/kirina-violet/back.svg",
  28576. extra: 2812 / 2725,
  28577. bottom: 0 / 2812
  28578. }
  28579. },
  28580. mouth: {
  28581. height: math.unit(4.35, "meters"),
  28582. name: "Mouth",
  28583. image: {
  28584. source: "./media/characters/kirina-violet/mouth.svg"
  28585. }
  28586. },
  28587. paw: {
  28588. height: math.unit(5.6, "meters"),
  28589. name: "Paw",
  28590. image: {
  28591. source: "./media/characters/kirina-violet/paw.svg"
  28592. }
  28593. },
  28594. tail: {
  28595. height: math.unit(18, "meters"),
  28596. name: "Tail",
  28597. image: {
  28598. source: "./media/characters/kirina-violet/tail.svg"
  28599. }
  28600. },
  28601. },
  28602. [
  28603. {
  28604. name: "Macro",
  28605. height: math.unit(63.4, "meters"),
  28606. default: true
  28607. },
  28608. ]
  28609. ))
  28610. characterMakers.push(() => makeCharacter(
  28611. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28612. {
  28613. front: {
  28614. height: math.unit(75, "feet"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/cat-gigachu/front.svg",
  28618. extra: 1239/1027,
  28619. bottom: 32/1271
  28620. }
  28621. },
  28622. back: {
  28623. height: math.unit(75, "feet"),
  28624. name: "Back",
  28625. image: {
  28626. source: "./media/characters/cat-gigachu/back.svg",
  28627. extra: 1229/1030,
  28628. bottom: 9/1238
  28629. }
  28630. },
  28631. },
  28632. [
  28633. {
  28634. name: "Dynamax",
  28635. height: math.unit(75, "feet"),
  28636. default: true
  28637. },
  28638. ]
  28639. ))
  28640. characterMakers.push(() => makeCharacter(
  28641. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28642. {
  28643. front: {
  28644. height: math.unit(6, "feet"),
  28645. weight: math.unit(150, "lb"),
  28646. name: "Front",
  28647. image: {
  28648. source: "./media/characters/sfaiyan/front.svg",
  28649. extra: 999 / 978,
  28650. bottom: 5 / 1004
  28651. }
  28652. },
  28653. },
  28654. [
  28655. {
  28656. name: "Normal",
  28657. height: math.unit(1.82, "meters")
  28658. },
  28659. {
  28660. name: "Giant",
  28661. height: math.unit(2.27, "km"),
  28662. default: true
  28663. },
  28664. ]
  28665. ))
  28666. characterMakers.push(() => makeCharacter(
  28667. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28668. {
  28669. front: {
  28670. height: math.unit(179, "cm"),
  28671. weight: math.unit(100, "kg"),
  28672. name: "Front",
  28673. image: {
  28674. source: "./media/characters/raunehkeli/front.svg",
  28675. extra: 1934 / 1926,
  28676. bottom: 0 / 1934
  28677. }
  28678. },
  28679. },
  28680. [
  28681. {
  28682. name: "Normal",
  28683. height: math.unit(179, "cm")
  28684. },
  28685. {
  28686. name: "Maximum",
  28687. height: math.unit(575, "meters"),
  28688. default: true
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28694. {
  28695. front: {
  28696. height: math.unit(6, "feet"),
  28697. weight: math.unit(150, "lb"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28701. extra: 2625 / 2518,
  28702. bottom: 60 / 2685
  28703. }
  28704. },
  28705. },
  28706. [
  28707. {
  28708. name: "Normal",
  28709. height: math.unit(6 + 2 / 12, "feet")
  28710. },
  28711. {
  28712. name: "Macro",
  28713. height: math.unit(1180, "feet"),
  28714. default: true
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28720. {
  28721. front: {
  28722. height: math.unit(5 + 6 / 12, "feet"),
  28723. weight: math.unit(108, "lb"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/lilith-zott/front.svg",
  28727. extra: 2510 / 2238,
  28728. bottom: 100 / 2610
  28729. }
  28730. },
  28731. frontDressed: {
  28732. height: math.unit(5 + 6 / 12, "feet"),
  28733. weight: math.unit(108, "lb"),
  28734. name: "Front (Dressed)",
  28735. image: {
  28736. source: "./media/characters/lilith-zott/front-dressed.svg",
  28737. extra: 2510 / 2238,
  28738. bottom: 100 / 2610
  28739. }
  28740. },
  28741. },
  28742. [
  28743. {
  28744. name: "Normal",
  28745. height: math.unit(5 + 6 / 12, "feet")
  28746. },
  28747. {
  28748. name: "Macro",
  28749. height: math.unit(1030, "feet"),
  28750. default: true
  28751. },
  28752. ]
  28753. ))
  28754. characterMakers.push(() => makeCharacter(
  28755. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28756. {
  28757. front: {
  28758. height: math.unit(6, "feet"),
  28759. weight: math.unit(150, "lb"),
  28760. name: "Front",
  28761. image: {
  28762. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28763. extra: 2567 / 2435,
  28764. bottom: 39 / 2606
  28765. }
  28766. },
  28767. frontSuper: {
  28768. height: math.unit(6, "feet"),
  28769. name: "Front (Super)",
  28770. image: {
  28771. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28772. extra: 2567 / 2435,
  28773. bottom: 39 / 2606
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Normal",
  28780. height: math.unit(5 + 10 / 12, "feet")
  28781. },
  28782. {
  28783. name: "Macro",
  28784. height: math.unit(1100, "feet"),
  28785. default: true
  28786. },
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28791. {
  28792. front: {
  28793. height: math.unit(100, "miles"),
  28794. name: "Front",
  28795. image: {
  28796. source: "./media/characters/sona/front.svg",
  28797. extra: 2433 / 2201,
  28798. bottom: 53 / 2486
  28799. }
  28800. },
  28801. foot: {
  28802. height: math.unit(16.1, "miles"),
  28803. name: "Foot",
  28804. image: {
  28805. source: "./media/characters/sona/foot.svg"
  28806. }
  28807. },
  28808. },
  28809. [
  28810. {
  28811. name: "Macro",
  28812. height: math.unit(100, "miles"),
  28813. default: true
  28814. },
  28815. ]
  28816. ))
  28817. characterMakers.push(() => makeCharacter(
  28818. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28819. {
  28820. front: {
  28821. height: math.unit(6, "feet"),
  28822. weight: math.unit(150, "lb"),
  28823. name: "Front",
  28824. image: {
  28825. source: "./media/characters/bailey/front.svg",
  28826. extra: 1778 / 1724,
  28827. bottom: 30 / 1808
  28828. }
  28829. },
  28830. },
  28831. [
  28832. {
  28833. name: "Micro",
  28834. height: math.unit(4, "inches")
  28835. },
  28836. {
  28837. name: "Normal",
  28838. height: math.unit(5 + 5 / 12, "feet"),
  28839. default: true
  28840. },
  28841. {
  28842. name: "Macro",
  28843. height: math.unit(250, "feet")
  28844. },
  28845. {
  28846. name: "Megamacro",
  28847. height: math.unit(100, "miles")
  28848. },
  28849. ]
  28850. ))
  28851. characterMakers.push(() => makeCharacter(
  28852. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28853. {
  28854. front: {
  28855. height: math.unit(5 + 2 / 12, "feet"),
  28856. weight: math.unit(120, "lb"),
  28857. name: "Front",
  28858. image: {
  28859. source: "./media/characters/snaps/front.svg",
  28860. extra: 2370 / 2177,
  28861. bottom: 48 / 2418
  28862. }
  28863. },
  28864. back: {
  28865. height: math.unit(5 + 2 / 12, "feet"),
  28866. weight: math.unit(120, "lb"),
  28867. name: "Back",
  28868. image: {
  28869. source: "./media/characters/snaps/back.svg",
  28870. extra: 2408 / 2258,
  28871. bottom: 15 / 2423
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Micro",
  28878. height: math.unit(9, "inches")
  28879. },
  28880. {
  28881. name: "Normal",
  28882. height: math.unit(5 + 2 / 12, "feet"),
  28883. default: true
  28884. },
  28885. {
  28886. name: "Mini Macro",
  28887. height: math.unit(10, "feet")
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28893. {
  28894. front: {
  28895. height: math.unit(1.8, "meters"),
  28896. weight: math.unit(85, "kg"),
  28897. name: "Front",
  28898. image: {
  28899. source: "./media/characters/azteck/front.svg",
  28900. extra: 2815 / 2625,
  28901. bottom: 89 / 2904
  28902. }
  28903. },
  28904. back: {
  28905. height: math.unit(1.8, "meters"),
  28906. weight: math.unit(85, "kg"),
  28907. name: "Back",
  28908. image: {
  28909. source: "./media/characters/azteck/back.svg",
  28910. extra: 2856 / 2648,
  28911. bottom: 85 / 2941
  28912. }
  28913. },
  28914. frontDressed: {
  28915. height: math.unit(1.8, "meters"),
  28916. weight: math.unit(85, "kg"),
  28917. name: "Front (Dressed)",
  28918. image: {
  28919. source: "./media/characters/azteck/front-dressed.svg",
  28920. extra: 2147 / 2003,
  28921. bottom: 68 / 2215
  28922. }
  28923. },
  28924. head: {
  28925. height: math.unit(0.47, "meters"),
  28926. weight: math.unit(85, "kg"),
  28927. name: "Head",
  28928. image: {
  28929. source: "./media/characters/azteck/head.svg"
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Bite sized",
  28936. height: math.unit(16, "cm")
  28937. },
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(1.8, "meters"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(6, "feet"),
  28950. weight: math.unit(150, "lb"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/pidge/front.svg",
  28954. extra: 620 / 588,
  28955. bottom: 9 / 629
  28956. }
  28957. },
  28958. back: {
  28959. height: math.unit(6, "feet"),
  28960. weight: math.unit(150, "lb"),
  28961. name: "Back",
  28962. image: {
  28963. source: "./media/characters/pidge/back.svg",
  28964. extra: 620 / 588,
  28965. bottom: 9 / 629
  28966. }
  28967. },
  28968. },
  28969. [
  28970. {
  28971. name: "Macro",
  28972. height: math.unit(1, "mile"),
  28973. default: true
  28974. },
  28975. ]
  28976. ))
  28977. characterMakers.push(() => makeCharacter(
  28978. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28979. {
  28980. front: {
  28981. height: math.unit(6, "feet"),
  28982. weight: math.unit(150, "lb"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/en/front.svg",
  28986. extra: 1697 / 1563,
  28987. bottom: 103 / 1800
  28988. }
  28989. },
  28990. back: {
  28991. height: math.unit(6, "feet"),
  28992. weight: math.unit(150, "lb"),
  28993. name: "Back",
  28994. image: {
  28995. source: "./media/characters/en/back.svg",
  28996. extra: 1700 / 1570,
  28997. bottom: 51 / 1751
  28998. }
  28999. },
  29000. frontDressed: {
  29001. height: math.unit(6, "feet"),
  29002. weight: math.unit(150, "lb"),
  29003. name: "Front (Dressed)",
  29004. image: {
  29005. source: "./media/characters/en/front-dressed.svg",
  29006. extra: 1697 / 1563,
  29007. bottom: 103 / 1800
  29008. }
  29009. },
  29010. backDressed: {
  29011. height: math.unit(6, "feet"),
  29012. weight: math.unit(150, "lb"),
  29013. name: "Back (Dressed)",
  29014. image: {
  29015. source: "./media/characters/en/back-dressed.svg",
  29016. extra: 1700 / 1570,
  29017. bottom: 51 / 1751
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Macro",
  29024. height: math.unit(210, "feet"),
  29025. default: true
  29026. },
  29027. ]
  29028. ))
  29029. characterMakers.push(() => makeCharacter(
  29030. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29031. {
  29032. front: {
  29033. height: math.unit(6, "feet"),
  29034. weight: math.unit(150, "lb"),
  29035. name: "Front",
  29036. image: {
  29037. source: "./media/characters/haze-orris/front.svg",
  29038. extra: 3975 / 3525,
  29039. bottom: 137 / 4112
  29040. }
  29041. },
  29042. },
  29043. [
  29044. {
  29045. name: "Micro",
  29046. height: math.unit(150, "mm"),
  29047. default: true
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(6, "feet"),
  29056. weight: math.unit(150, "lb"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/casselene-yaro/front.svg",
  29060. extra: 4721 / 4541,
  29061. bottom: 82 / 4803
  29062. }
  29063. },
  29064. back: {
  29065. height: math.unit(6, "feet"),
  29066. weight: math.unit(150, "lb"),
  29067. name: "Back",
  29068. image: {
  29069. source: "./media/characters/casselene-yaro/back.svg",
  29070. extra: 4569 / 4377,
  29071. bottom: 69 / 4638
  29072. }
  29073. },
  29074. frontDressed: {
  29075. height: math.unit(6, "feet"),
  29076. weight: math.unit(150, "lb"),
  29077. name: "Front-dressed",
  29078. image: {
  29079. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29080. extra: 4721 / 4541,
  29081. bottom: 82 / 4803
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Macro",
  29088. height: math.unit(190, "feet"),
  29089. default: true
  29090. },
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29095. {
  29096. front: {
  29097. height: math.unit(6, "feet"),
  29098. weight: math.unit(150, "lb"),
  29099. name: "Front",
  29100. image: {
  29101. source: "./media/characters/myra-rue-delore/front.svg",
  29102. extra: 1340 / 1308,
  29103. bottom: 67 / 1407
  29104. }
  29105. },
  29106. back: {
  29107. height: math.unit(6, "feet"),
  29108. weight: math.unit(150, "lb"),
  29109. name: "Back",
  29110. image: {
  29111. source: "./media/characters/myra-rue-delore/back.svg",
  29112. extra: 1341 / 1310,
  29113. bottom: 40 / 1381
  29114. }
  29115. },
  29116. frontDressed: {
  29117. height: math.unit(6, "feet"),
  29118. weight: math.unit(150, "lb"),
  29119. name: "Front (Dressed)",
  29120. image: {
  29121. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29122. extra: 1340 / 1308,
  29123. bottom: 67 / 1407
  29124. }
  29125. },
  29126. },
  29127. [
  29128. {
  29129. name: "Macro",
  29130. height: math.unit(150, "feet"),
  29131. default: true
  29132. },
  29133. ]
  29134. ))
  29135. characterMakers.push(() => makeCharacter(
  29136. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29137. {
  29138. front: {
  29139. height: math.unit(10, "feet"),
  29140. weight: math.unit(15015, "lb"),
  29141. name: "Front",
  29142. image: {
  29143. source: "./media/characters/fem!plat/front.svg",
  29144. extra: 2799 / 2604,
  29145. bottom: 149 / 2948
  29146. }
  29147. },
  29148. },
  29149. [
  29150. {
  29151. name: "Normal",
  29152. height: math.unit(10, "feet"),
  29153. default: true
  29154. },
  29155. {
  29156. name: "Macro",
  29157. height: math.unit(100, "feet")
  29158. },
  29159. {
  29160. name: "Megamacro",
  29161. height: math.unit(1000, "feet")
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29167. {
  29168. front: {
  29169. height: math.unit(15 + 5 / 12, "feet"),
  29170. weight: math.unit(4600, "lb"),
  29171. name: "Front",
  29172. image: {
  29173. source: "./media/characters/neapolitan-ananassa/front.svg",
  29174. extra: 2903 / 2736,
  29175. bottom: 0 / 2903
  29176. }
  29177. },
  29178. side: {
  29179. height: math.unit(15 + 5 / 12, "feet"),
  29180. weight: math.unit(4600, "lb"),
  29181. name: "Side",
  29182. image: {
  29183. source: "./media/characters/neapolitan-ananassa/side.svg",
  29184. extra: 2925 / 2719,
  29185. bottom: 0 / 2925
  29186. }
  29187. },
  29188. back: {
  29189. height: math.unit(15 + 5 / 12, "feet"),
  29190. weight: math.unit(4600, "lb"),
  29191. name: "Back",
  29192. image: {
  29193. source: "./media/characters/neapolitan-ananassa/back.svg",
  29194. extra: 2903 / 2736,
  29195. bottom: 0 / 2903
  29196. }
  29197. },
  29198. },
  29199. [
  29200. {
  29201. name: "Normal",
  29202. height: math.unit(15 + 5 / 12, "feet"),
  29203. default: true
  29204. },
  29205. {
  29206. name: "Post-Millenium",
  29207. height: math.unit(35 + 5 / 12, "feet")
  29208. },
  29209. {
  29210. name: "Post-Era",
  29211. height: math.unit(450 + 5 / 12, "feet")
  29212. },
  29213. ]
  29214. ))
  29215. characterMakers.push(() => makeCharacter(
  29216. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29217. {
  29218. front: {
  29219. height: math.unit(300, "meters"),
  29220. weight: math.unit(125000, "tonnes"),
  29221. name: "Front",
  29222. image: {
  29223. source: "./media/characters/pazuzu/front.svg",
  29224. extra: 877 / 794,
  29225. bottom: 47 / 924
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "Macro",
  29232. height: math.unit(300, "meters"),
  29233. default: true
  29234. },
  29235. ]
  29236. ))
  29237. characterMakers.push(() => makeCharacter(
  29238. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29239. {
  29240. side: {
  29241. height: math.unit(10 + 7 / 12, "feet"),
  29242. weight: math.unit(2.5, "tons"),
  29243. name: "Side",
  29244. image: {
  29245. source: "./media/characters/aasha/side.svg",
  29246. extra: 1345 / 1245,
  29247. bottom: 111 / 1456
  29248. }
  29249. },
  29250. back: {
  29251. height: math.unit(10 + 7 / 12, "feet"),
  29252. weight: math.unit(2.5, "tons"),
  29253. name: "Back",
  29254. image: {
  29255. source: "./media/characters/aasha/back.svg",
  29256. extra: 1133 / 1057,
  29257. bottom: 257 / 1390
  29258. }
  29259. },
  29260. },
  29261. [
  29262. {
  29263. name: "Normal",
  29264. height: math.unit(10 + 7 / 12, "feet"),
  29265. default: true
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(6 + 3 / 12, "feet"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/nevan/front.svg",
  29277. extra: 704 / 704,
  29278. bottom: 28 / 732
  29279. }
  29280. },
  29281. back: {
  29282. height: math.unit(6 + 3 / 12, "feet"),
  29283. name: "Back",
  29284. image: {
  29285. source: "./media/characters/nevan/back.svg",
  29286. extra: 714 / 714,
  29287. bottom: 21 / 735
  29288. }
  29289. },
  29290. frontFlaccid: {
  29291. height: math.unit(6 + 3 / 12, "feet"),
  29292. name: "Front (Flaccid)",
  29293. image: {
  29294. source: "./media/characters/nevan/front-flaccid.svg",
  29295. extra: 704 / 704,
  29296. bottom: 28 / 732
  29297. }
  29298. },
  29299. frontErect: {
  29300. height: math.unit(6 + 3 / 12, "feet"),
  29301. name: "Front (Erect)",
  29302. image: {
  29303. source: "./media/characters/nevan/front-erect.svg",
  29304. extra: 704 / 704,
  29305. bottom: 28 / 732
  29306. }
  29307. },
  29308. backFlaccid: {
  29309. height: math.unit(6 + 3 / 12, "feet"),
  29310. name: "Back (Flaccid)",
  29311. image: {
  29312. source: "./media/characters/nevan/back-flaccid.svg",
  29313. extra: 714 / 714,
  29314. bottom: 21 / 735
  29315. }
  29316. },
  29317. },
  29318. [
  29319. {
  29320. name: "Normal",
  29321. height: math.unit(6 + 3 / 12, "feet"),
  29322. default: true
  29323. },
  29324. ]
  29325. ))
  29326. characterMakers.push(() => makeCharacter(
  29327. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29328. {
  29329. front: {
  29330. height: math.unit(4, "feet"),
  29331. name: "Front",
  29332. image: {
  29333. source: "./media/characters/arhan/front.svg",
  29334. extra: 3368 / 3133,
  29335. bottom: 0 / 3368
  29336. }
  29337. },
  29338. side: {
  29339. height: math.unit(4, "feet"),
  29340. name: "Side",
  29341. image: {
  29342. source: "./media/characters/arhan/side.svg",
  29343. extra: 3347 / 3105,
  29344. bottom: 0 / 3347
  29345. }
  29346. },
  29347. tongue: {
  29348. height: math.unit(1.42, "feet"),
  29349. name: "Tongue",
  29350. image: {
  29351. source: "./media/characters/arhan/tongue.svg"
  29352. }
  29353. },
  29354. head: {
  29355. height: math.unit(0.85, "feet"),
  29356. name: "Head",
  29357. image: {
  29358. source: "./media/characters/arhan/head.svg"
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "Normal",
  29365. height: math.unit(4, "feet"),
  29366. default: true
  29367. },
  29368. ]
  29369. ))
  29370. characterMakers.push(() => makeCharacter(
  29371. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29372. {
  29373. front: {
  29374. height: math.unit(5 + 7.5 / 12, "feet"),
  29375. weight: math.unit(120, "lb"),
  29376. name: "Front",
  29377. image: {
  29378. source: "./media/characters/digi-duncan/front.svg",
  29379. extra: 330 / 326,
  29380. bottom: 16 / 346
  29381. }
  29382. },
  29383. side: {
  29384. height: math.unit(5 + 7.5 / 12, "feet"),
  29385. weight: math.unit(120, "lb"),
  29386. name: "Side",
  29387. image: {
  29388. source: "./media/characters/digi-duncan/side.svg",
  29389. extra: 341 / 337,
  29390. bottom: 1 / 342
  29391. }
  29392. },
  29393. back: {
  29394. height: math.unit(5 + 7.5 / 12, "feet"),
  29395. weight: math.unit(120, "lb"),
  29396. name: "Back",
  29397. image: {
  29398. source: "./media/characters/digi-duncan/back.svg",
  29399. extra: 330 / 326,
  29400. bottom: 12 / 342
  29401. }
  29402. },
  29403. },
  29404. [
  29405. {
  29406. name: "Speck",
  29407. height: math.unit(0.25, "mm")
  29408. },
  29409. {
  29410. name: "Micro",
  29411. height: math.unit(5, "mm")
  29412. },
  29413. {
  29414. name: "Tiny",
  29415. height: math.unit(0.5, "inches"),
  29416. default: true
  29417. },
  29418. {
  29419. name: "Human",
  29420. height: math.unit(5 + 7.5 / 12, "feet")
  29421. },
  29422. {
  29423. name: "Minigiant",
  29424. height: math.unit(8 + 5.25, "feet")
  29425. },
  29426. {
  29427. name: "Giant",
  29428. height: math.unit(2000, "feet")
  29429. },
  29430. {
  29431. name: "Mega",
  29432. height: math.unit(371.1, "miles")
  29433. },
  29434. ]
  29435. ))
  29436. characterMakers.push(() => makeCharacter(
  29437. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29438. {
  29439. front: {
  29440. height: math.unit(2, "meters"),
  29441. weight: math.unit(350, "kg"),
  29442. name: "Front",
  29443. image: {
  29444. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29445. extra: 898 / 838,
  29446. bottom: 9 / 907
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Micro",
  29453. height: math.unit(8, "meters")
  29454. },
  29455. {
  29456. name: "Normal",
  29457. height: math.unit(50, "meters"),
  29458. default: true
  29459. },
  29460. {
  29461. name: "Macro",
  29462. height: math.unit(500, "meters")
  29463. },
  29464. ]
  29465. ))
  29466. characterMakers.push(() => makeCharacter(
  29467. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29468. {
  29469. front: {
  29470. height: math.unit(6 + 6 / 12, "feet"),
  29471. name: "Front",
  29472. image: {
  29473. source: "./media/characters/khardesh/front.svg",
  29474. extra: 888 / 797,
  29475. bottom: 25 / 913
  29476. }
  29477. },
  29478. },
  29479. [
  29480. {
  29481. name: "Normal",
  29482. height: math.unit(6 + 6 / 12, "feet"),
  29483. default: true
  29484. },
  29485. {
  29486. name: "Normal+",
  29487. height: math.unit(4, "meters")
  29488. },
  29489. {
  29490. name: "Macro",
  29491. height: math.unit(50, "meters")
  29492. },
  29493. {
  29494. name: "Macro+",
  29495. height: math.unit(100, "meters")
  29496. },
  29497. {
  29498. name: "Megamacro",
  29499. height: math.unit(20, "km")
  29500. },
  29501. ]
  29502. ))
  29503. characterMakers.push(() => makeCharacter(
  29504. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29505. {
  29506. front: {
  29507. height: math.unit(6, "feet"),
  29508. weight: math.unit(150, "lb"),
  29509. name: "Front",
  29510. image: {
  29511. source: "./media/characters/kosho/front.svg",
  29512. extra: 1847 / 1847,
  29513. bottom: 86 / 1933
  29514. }
  29515. },
  29516. },
  29517. [
  29518. {
  29519. name: "Second-stage micro",
  29520. height: math.unit(0.5, "inches")
  29521. },
  29522. {
  29523. name: "First-stage micro",
  29524. height: math.unit(6, "inches")
  29525. },
  29526. {
  29527. name: "Normal",
  29528. height: math.unit(6, "feet"),
  29529. default: true
  29530. },
  29531. {
  29532. name: "First-stage macro",
  29533. height: math.unit(72, "feet")
  29534. },
  29535. {
  29536. name: "Second-stage macro",
  29537. height: math.unit(864, "feet")
  29538. },
  29539. ]
  29540. ))
  29541. characterMakers.push(() => makeCharacter(
  29542. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29543. {
  29544. normal: {
  29545. height: math.unit(4 + 6 / 12, "feet"),
  29546. name: "Normal",
  29547. image: {
  29548. source: "./media/characters/hydra/normal.svg",
  29549. extra: 2833 / 2634,
  29550. bottom: 68 / 2901
  29551. }
  29552. },
  29553. smol: {
  29554. height: math.unit(0.705, "inches"),
  29555. name: "Smol",
  29556. image: {
  29557. source: "./media/characters/hydra/smol.svg",
  29558. extra: 2715 / 2540,
  29559. bottom: 0 / 2715
  29560. }
  29561. },
  29562. },
  29563. [
  29564. {
  29565. name: "Normal",
  29566. height: math.unit(4 + 6 / 12, "feet"),
  29567. default: true
  29568. }
  29569. ]
  29570. ))
  29571. characterMakers.push(() => makeCharacter(
  29572. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29573. {
  29574. front: {
  29575. height: math.unit(0.6, "cm"),
  29576. name: "Front",
  29577. image: {
  29578. source: "./media/characters/daz/front.svg",
  29579. extra: 1682 / 1164,
  29580. bottom: 42 / 1724
  29581. }
  29582. },
  29583. },
  29584. [
  29585. {
  29586. name: "Normal",
  29587. height: math.unit(0.6, "cm"),
  29588. default: true
  29589. },
  29590. ]
  29591. ))
  29592. characterMakers.push(() => makeCharacter(
  29593. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29594. {
  29595. front: {
  29596. height: math.unit(6, "feet"),
  29597. weight: math.unit(235, "lb"),
  29598. name: "Front",
  29599. image: {
  29600. source: "./media/characters/theo-pangolin/front.svg",
  29601. extra: 1996 / 1969,
  29602. bottom: 115 / 2111
  29603. }
  29604. },
  29605. back: {
  29606. height: math.unit(6, "feet"),
  29607. weight: math.unit(235, "lb"),
  29608. name: "Back",
  29609. image: {
  29610. source: "./media/characters/theo-pangolin/back.svg",
  29611. extra: 1979 / 1979,
  29612. bottom: 40 / 2019
  29613. }
  29614. },
  29615. feral: {
  29616. height: math.unit(2, "feet"),
  29617. weight: math.unit(30, "lb"),
  29618. name: "Feral",
  29619. image: {
  29620. source: "./media/characters/theo-pangolin/feral.svg",
  29621. extra: 803 / 791,
  29622. bottom: 181 / 984
  29623. }
  29624. },
  29625. footFive: {
  29626. height: math.unit(1.43, "feet"),
  29627. name: "Foot (Five Toes)",
  29628. image: {
  29629. source: "./media/characters/theo-pangolin/foot-five.svg"
  29630. }
  29631. },
  29632. footFour: {
  29633. height: math.unit(1.43, "feet"),
  29634. name: "Foot (Four Toes)",
  29635. image: {
  29636. source: "./media/characters/theo-pangolin/foot-four.svg"
  29637. }
  29638. },
  29639. handFour: {
  29640. height: math.unit(0.81, "feet"),
  29641. name: "Hand (Four Fingers)",
  29642. image: {
  29643. source: "./media/characters/theo-pangolin/hand-four.svg"
  29644. }
  29645. },
  29646. handThree: {
  29647. height: math.unit(0.81, "feet"),
  29648. name: "Hand (Three Fingers)",
  29649. image: {
  29650. source: "./media/characters/theo-pangolin/hand-three.svg"
  29651. }
  29652. },
  29653. headFront: {
  29654. height: math.unit(1.37, "feet"),
  29655. name: "Head (Front)",
  29656. image: {
  29657. source: "./media/characters/theo-pangolin/head-front.svg"
  29658. }
  29659. },
  29660. headSide: {
  29661. height: math.unit(1.43, "feet"),
  29662. name: "Head (Side)",
  29663. image: {
  29664. source: "./media/characters/theo-pangolin/head-side.svg"
  29665. }
  29666. },
  29667. tongue: {
  29668. height: math.unit(2.29, "feet"),
  29669. name: "Tongue",
  29670. image: {
  29671. source: "./media/characters/theo-pangolin/tongue.svg"
  29672. }
  29673. },
  29674. },
  29675. [
  29676. {
  29677. name: "Normal",
  29678. height: math.unit(6, "feet")
  29679. },
  29680. {
  29681. name: "Macro",
  29682. height: math.unit(400, "feet"),
  29683. default: true
  29684. },
  29685. ]
  29686. ))
  29687. characterMakers.push(() => makeCharacter(
  29688. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29689. {
  29690. front: {
  29691. height: math.unit(6, "inches"),
  29692. weight: math.unit(0.036, "kg"),
  29693. name: "Front",
  29694. image: {
  29695. source: "./media/characters/renée/front.svg",
  29696. extra: 900 / 886,
  29697. bottom: 8 / 908
  29698. }
  29699. },
  29700. },
  29701. [
  29702. {
  29703. name: "Nano",
  29704. height: math.unit(1, "nm")
  29705. },
  29706. {
  29707. name: "Micro",
  29708. height: math.unit(1, "mm")
  29709. },
  29710. {
  29711. name: "Normal",
  29712. height: math.unit(6, "inches")
  29713. },
  29714. {
  29715. name: "Macro",
  29716. height: math.unit(2000, "feet"),
  29717. default: true
  29718. },
  29719. {
  29720. name: "Megamacro",
  29721. height: math.unit(2, "km")
  29722. },
  29723. {
  29724. name: "Gigamacro",
  29725. height: math.unit(2000, "km")
  29726. },
  29727. {
  29728. name: "Teramacro",
  29729. height: math.unit(250000, "km")
  29730. },
  29731. ]
  29732. ))
  29733. characterMakers.push(() => makeCharacter(
  29734. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29735. {
  29736. front: {
  29737. height: math.unit(4, "meters"),
  29738. weight: math.unit(150, "kg"),
  29739. name: "Front",
  29740. image: {
  29741. source: "./media/characters/caledvwlch/front.svg",
  29742. extra: 1760 / 1551,
  29743. bottom: 28 / 1788
  29744. }
  29745. },
  29746. side: {
  29747. height: math.unit(4, "meters"),
  29748. weight: math.unit(150, "kg"),
  29749. name: "Side",
  29750. image: {
  29751. source: "./media/characters/caledvwlch/side.svg",
  29752. extra: 1605 / 1536,
  29753. bottom: 31 / 1636
  29754. }
  29755. },
  29756. back: {
  29757. height: math.unit(4, "meters"),
  29758. weight: math.unit(150, "kg"),
  29759. name: "Back",
  29760. image: {
  29761. source: "./media/characters/caledvwlch/back.svg",
  29762. extra: 1635 / 1565,
  29763. bottom: 27 / 1662
  29764. }
  29765. },
  29766. },
  29767. [
  29768. {
  29769. name: "\"Incognito\"",
  29770. height: math.unit(4, "meters")
  29771. },
  29772. {
  29773. name: "Small rampage",
  29774. height: math.unit(600, "meters")
  29775. },
  29776. {
  29777. name: "Mega",
  29778. height: math.unit(30, "km")
  29779. },
  29780. {
  29781. name: "Home-size",
  29782. height: math.unit(50, "km"),
  29783. default: true
  29784. },
  29785. {
  29786. name: "Giga",
  29787. height: math.unit(300, "km")
  29788. },
  29789. {
  29790. name: "Lounging",
  29791. height: math.unit(11000, "km")
  29792. },
  29793. {
  29794. name: "Planet snacking",
  29795. height: math.unit(2000000, "km")
  29796. },
  29797. ]
  29798. ))
  29799. characterMakers.push(() => makeCharacter(
  29800. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29801. {
  29802. front: {
  29803. height: math.unit(6, "feet"),
  29804. weight: math.unit(215, "lb"),
  29805. name: "Front",
  29806. image: {
  29807. source: "./media/characters/sapphire-svell/front.svg",
  29808. extra: 495 / 455,
  29809. bottom: 20 / 515
  29810. }
  29811. },
  29812. back: {
  29813. height: math.unit(6, "feet"),
  29814. weight: math.unit(216, "lb"),
  29815. name: "Back",
  29816. image: {
  29817. source: "./media/characters/sapphire-svell/back.svg",
  29818. extra: 497 / 477,
  29819. bottom: 7 / 504
  29820. }
  29821. },
  29822. maw: {
  29823. height: math.unit(1.57, "feet"),
  29824. name: "Maw",
  29825. image: {
  29826. source: "./media/characters/sapphire-svell/maw.svg"
  29827. }
  29828. },
  29829. foot: {
  29830. height: math.unit(1.07, "feet"),
  29831. name: "Foot",
  29832. image: {
  29833. source: "./media/characters/sapphire-svell/foot.svg"
  29834. }
  29835. },
  29836. toering: {
  29837. height: math.unit(1.7, "inch"),
  29838. name: "Toering",
  29839. image: {
  29840. source: "./media/characters/sapphire-svell/toering.svg"
  29841. }
  29842. },
  29843. },
  29844. [
  29845. {
  29846. name: "Normal",
  29847. height: math.unit(300, "feet"),
  29848. default: true
  29849. },
  29850. {
  29851. name: "Augmented",
  29852. height: math.unit(1250, "feet")
  29853. },
  29854. {
  29855. name: "Unleashed",
  29856. height: math.unit(3000, "feet")
  29857. },
  29858. ]
  29859. ))
  29860. characterMakers.push(() => makeCharacter(
  29861. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29862. {
  29863. side: {
  29864. height: math.unit(2 + 3 / 12, "feet"),
  29865. weight: math.unit(110, "lb"),
  29866. name: "Side",
  29867. image: {
  29868. source: "./media/characters/glitch-flux/side.svg",
  29869. extra: 997 / 805,
  29870. bottom: 20 / 1017
  29871. }
  29872. },
  29873. },
  29874. [
  29875. {
  29876. name: "Normal",
  29877. height: math.unit(2 + 3 / 12, "feet"),
  29878. default: true
  29879. },
  29880. ]
  29881. ))
  29882. characterMakers.push(() => makeCharacter(
  29883. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29884. {
  29885. front: {
  29886. height: math.unit(4, "meters"),
  29887. name: "Front",
  29888. image: {
  29889. source: "./media/characters/mid/front.svg",
  29890. extra: 507 / 476,
  29891. bottom: 17 / 524
  29892. }
  29893. },
  29894. back: {
  29895. height: math.unit(4, "meters"),
  29896. name: "Back",
  29897. image: {
  29898. source: "./media/characters/mid/back.svg",
  29899. extra: 519 / 487,
  29900. bottom: 7 / 526
  29901. }
  29902. },
  29903. stuck: {
  29904. height: math.unit(2.2, "meters"),
  29905. name: "Stuck",
  29906. image: {
  29907. source: "./media/characters/mid/stuck.svg",
  29908. extra: 1951 / 1869,
  29909. bottom: 88 / 2039
  29910. }
  29911. }
  29912. },
  29913. [
  29914. {
  29915. name: "Normal",
  29916. height: math.unit(4, "meters"),
  29917. default: true
  29918. },
  29919. {
  29920. name: "Big",
  29921. height: math.unit(10, "meters")
  29922. },
  29923. {
  29924. name: "Macro",
  29925. height: math.unit(800, "meters")
  29926. },
  29927. {
  29928. name: "Megamacro",
  29929. height: math.unit(100, "km")
  29930. },
  29931. {
  29932. name: "Overgrown",
  29933. height: math.unit(1, "parsec")
  29934. },
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(2.5, "meters"),
  29942. weight: math.unit(225, "kg"),
  29943. name: "Front",
  29944. image: {
  29945. source: "./media/characters/iris/front.svg",
  29946. extra: 3348 / 3251,
  29947. bottom: 205 / 3553
  29948. }
  29949. },
  29950. maw: {
  29951. height: math.unit(0.56, "meter"),
  29952. name: "Maw",
  29953. image: {
  29954. source: "./media/characters/iris/maw.svg"
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Mewter cat",
  29961. height: math.unit(1.2, "meters")
  29962. },
  29963. {
  29964. name: "Minimacro",
  29965. height: math.unit(2.5, "meters"),
  29966. default: true
  29967. },
  29968. {
  29969. name: "Macro",
  29970. height: math.unit(180, "meters")
  29971. },
  29972. {
  29973. name: "Megamacro",
  29974. height: math.unit(2746, "meters")
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29980. {
  29981. front: {
  29982. height: math.unit(6, "feet"),
  29983. weight: math.unit(135, "lb"),
  29984. name: "Front",
  29985. image: {
  29986. source: "./media/characters/axel/front.svg",
  29987. extra: 908 / 908,
  29988. bottom: 58 / 966
  29989. }
  29990. },
  29991. side: {
  29992. height: math.unit(6, "feet"),
  29993. weight: math.unit(135, "lb"),
  29994. name: "Side",
  29995. image: {
  29996. source: "./media/characters/axel/side.svg",
  29997. extra: 958 / 958,
  29998. bottom: 11 / 969
  29999. }
  30000. },
  30001. back: {
  30002. height: math.unit(6, "feet"),
  30003. weight: math.unit(135, "lb"),
  30004. name: "Back",
  30005. image: {
  30006. source: "./media/characters/axel/back.svg",
  30007. extra: 887 / 887,
  30008. bottom: 34 / 921
  30009. }
  30010. },
  30011. head: {
  30012. height: math.unit(1.07, "feet"),
  30013. name: "Head",
  30014. image: {
  30015. source: "./media/characters/axel/head.svg"
  30016. }
  30017. },
  30018. beak: {
  30019. height: math.unit(1.4, "feet"),
  30020. name: "Beak",
  30021. image: {
  30022. source: "./media/characters/axel/beak.svg"
  30023. }
  30024. },
  30025. beakSide: {
  30026. height: math.unit(1.4, "feet"),
  30027. name: "Beak Side",
  30028. image: {
  30029. source: "./media/characters/axel/beak-side.svg"
  30030. }
  30031. },
  30032. sheath: {
  30033. height: math.unit(0.5, "feet"),
  30034. name: "Sheath",
  30035. image: {
  30036. source: "./media/characters/axel/sheath.svg"
  30037. }
  30038. },
  30039. dick: {
  30040. height: math.unit(0.98, "feet"),
  30041. name: "Dick",
  30042. image: {
  30043. source: "./media/characters/axel/dick.svg"
  30044. }
  30045. },
  30046. },
  30047. [
  30048. {
  30049. name: "Macro",
  30050. height: math.unit(68, "meters"),
  30051. default: true
  30052. },
  30053. ]
  30054. ))
  30055. characterMakers.push(() => makeCharacter(
  30056. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30057. {
  30058. front: {
  30059. height: math.unit(3.5, "meters"),
  30060. weight: math.unit(1200, "kg"),
  30061. name: "Front",
  30062. image: {
  30063. source: "./media/characters/joanna/front.svg",
  30064. extra: 1596 / 1488,
  30065. bottom: 29 / 1625
  30066. }
  30067. },
  30068. back: {
  30069. height: math.unit(3.5, "meters"),
  30070. weight: math.unit(1200, "kg"),
  30071. name: "Back",
  30072. image: {
  30073. source: "./media/characters/joanna/back.svg",
  30074. extra: 1594 / 1495,
  30075. bottom: 26 / 1620
  30076. }
  30077. },
  30078. frontShorts: {
  30079. height: math.unit(3.5, "meters"),
  30080. weight: math.unit(1200, "kg"),
  30081. name: "Front (Shorts)",
  30082. image: {
  30083. source: "./media/characters/joanna/front-shorts.svg",
  30084. extra: 1596 / 1488,
  30085. bottom: 29 / 1625
  30086. }
  30087. },
  30088. frontBiker: {
  30089. height: math.unit(3.5, "meters"),
  30090. weight: math.unit(1200, "kg"),
  30091. name: "Front (Biker)",
  30092. image: {
  30093. source: "./media/characters/joanna/front-biker.svg",
  30094. extra: 1596 / 1488,
  30095. bottom: 29 / 1625
  30096. }
  30097. },
  30098. backBiker: {
  30099. height: math.unit(3.5, "meters"),
  30100. weight: math.unit(1200, "kg"),
  30101. name: "Back (Biker)",
  30102. image: {
  30103. source: "./media/characters/joanna/back-biker.svg",
  30104. extra: 1594 / 1495,
  30105. bottom: 88 / 1682
  30106. }
  30107. },
  30108. bikeLeft: {
  30109. height: math.unit(2.4, "meters"),
  30110. weight: math.unit(1600, "kg"),
  30111. name: "Bike (Left)",
  30112. image: {
  30113. source: "./media/characters/joanna/bike-left.svg",
  30114. extra: 720 / 720,
  30115. bottom: 8 / 728
  30116. }
  30117. },
  30118. bikeRight: {
  30119. height: math.unit(2.4, "meters"),
  30120. weight: math.unit(1600, "kg"),
  30121. name: "Bike (Right)",
  30122. image: {
  30123. source: "./media/characters/joanna/bike-right.svg",
  30124. extra: 720 / 720,
  30125. bottom: 8 / 728
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Incognito",
  30132. height: math.unit(3.5, "meters")
  30133. },
  30134. {
  30135. name: "Casual Big",
  30136. height: math.unit(200, "meters")
  30137. },
  30138. {
  30139. name: "Macro",
  30140. height: math.unit(600, "meters")
  30141. },
  30142. {
  30143. name: "Original",
  30144. height: math.unit(20, "km"),
  30145. default: true
  30146. },
  30147. {
  30148. name: "Giga",
  30149. height: math.unit(400, "km")
  30150. },
  30151. {
  30152. name: "Lounging",
  30153. height: math.unit(1500, "km")
  30154. },
  30155. {
  30156. name: "Planetary",
  30157. height: math.unit(200000, "km")
  30158. },
  30159. ]
  30160. ))
  30161. characterMakers.push(() => makeCharacter(
  30162. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30163. {
  30164. front: {
  30165. height: math.unit(6, "feet"),
  30166. weight: math.unit(150, "lb"),
  30167. name: "Front",
  30168. image: {
  30169. source: "./media/characters/hugo-sigil/front.svg",
  30170. extra: 522 / 500,
  30171. bottom: 2 / 524
  30172. }
  30173. },
  30174. back: {
  30175. height: math.unit(6, "feet"),
  30176. weight: math.unit(150, "lb"),
  30177. name: "Back",
  30178. image: {
  30179. source: "./media/characters/hugo-sigil/back.svg",
  30180. extra: 519 / 495,
  30181. bottom: 5 / 524
  30182. }
  30183. },
  30184. maw: {
  30185. height: math.unit(1.4, "feet"),
  30186. weight: math.unit(150, "lb"),
  30187. name: "Maw",
  30188. image: {
  30189. source: "./media/characters/hugo-sigil/maw.svg"
  30190. }
  30191. },
  30192. feet: {
  30193. height: math.unit(1.56, "feet"),
  30194. weight: math.unit(150, "lb"),
  30195. name: "Feet",
  30196. image: {
  30197. source: "./media/characters/hugo-sigil/feet.svg",
  30198. extra: 177 / 177,
  30199. bottom: 12 / 189
  30200. }
  30201. },
  30202. },
  30203. [
  30204. {
  30205. name: "Normal",
  30206. height: math.unit(6, "feet")
  30207. },
  30208. {
  30209. name: "Macro",
  30210. height: math.unit(200, "feet"),
  30211. default: true
  30212. },
  30213. ]
  30214. ))
  30215. characterMakers.push(() => makeCharacter(
  30216. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30217. {
  30218. front: {
  30219. height: math.unit(6, "feet"),
  30220. weight: math.unit(150, "lb"),
  30221. name: "Front",
  30222. image: {
  30223. source: "./media/characters/peri/front.svg",
  30224. extra: 2354 / 2233,
  30225. bottom: 49 / 2403
  30226. }
  30227. },
  30228. },
  30229. [
  30230. {
  30231. name: "Really Small",
  30232. height: math.unit(1, "nm")
  30233. },
  30234. {
  30235. name: "Micro",
  30236. height: math.unit(4, "inches")
  30237. },
  30238. {
  30239. name: "Normal",
  30240. height: math.unit(7, "inches"),
  30241. default: true
  30242. },
  30243. {
  30244. name: "Macro",
  30245. height: math.unit(400, "feet")
  30246. },
  30247. {
  30248. name: "Megamacro",
  30249. height: math.unit(100, "miles")
  30250. },
  30251. ]
  30252. ))
  30253. characterMakers.push(() => makeCharacter(
  30254. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30255. {
  30256. frontSlim: {
  30257. height: math.unit(7, "feet"),
  30258. name: "Front (Slim)",
  30259. image: {
  30260. source: "./media/characters/issilora/front-slim.svg",
  30261. extra: 529 / 449,
  30262. bottom: 53 / 582
  30263. }
  30264. },
  30265. sideSlim: {
  30266. height: math.unit(7, "feet"),
  30267. name: "Side (Slim)",
  30268. image: {
  30269. source: "./media/characters/issilora/side-slim.svg",
  30270. extra: 570 / 480,
  30271. bottom: 30 / 600
  30272. }
  30273. },
  30274. backSlim: {
  30275. height: math.unit(7, "feet"),
  30276. name: "Back (Slim)",
  30277. image: {
  30278. source: "./media/characters/issilora/back-slim.svg",
  30279. extra: 537 / 455,
  30280. bottom: 46 / 583
  30281. }
  30282. },
  30283. frontBuff: {
  30284. height: math.unit(7, "feet"),
  30285. name: "Front (Buff)",
  30286. image: {
  30287. source: "./media/characters/issilora/front-buff.svg",
  30288. extra: 2310 / 2035,
  30289. bottom: 335 / 2645
  30290. }
  30291. },
  30292. head: {
  30293. height: math.unit(1.94, "feet"),
  30294. name: "Head",
  30295. image: {
  30296. source: "./media/characters/issilora/head.svg"
  30297. }
  30298. },
  30299. },
  30300. [
  30301. {
  30302. name: "Minimum",
  30303. height: math.unit(7, "feet")
  30304. },
  30305. {
  30306. name: "Comfortable",
  30307. height: math.unit(17, "feet")
  30308. },
  30309. {
  30310. name: "Fun Size",
  30311. height: math.unit(47, "feet")
  30312. },
  30313. {
  30314. name: "Natural Macro",
  30315. height: math.unit(137, "feet"),
  30316. default: true
  30317. },
  30318. {
  30319. name: "Maximum Kaiju",
  30320. height: math.unit(397, "feet")
  30321. },
  30322. ]
  30323. ))
  30324. characterMakers.push(() => makeCharacter(
  30325. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30326. {
  30327. front: {
  30328. height: math.unit(50 + 9/12, "feet"),
  30329. weight: math.unit(32.8, "tons"),
  30330. name: "Front",
  30331. image: {
  30332. source: "./media/characters/irb'iiritaahn/front.svg",
  30333. extra: 1878/1826,
  30334. bottom: 326/2204
  30335. }
  30336. },
  30337. back: {
  30338. height: math.unit(50 + 9/12, "feet"),
  30339. weight: math.unit(32.8, "tons"),
  30340. name: "Back",
  30341. image: {
  30342. source: "./media/characters/irb'iiritaahn/back.svg",
  30343. extra: 2052/2018,
  30344. bottom: 152/2204
  30345. }
  30346. },
  30347. head: {
  30348. height: math.unit(12.86, "feet"),
  30349. name: "Head",
  30350. image: {
  30351. source: "./media/characters/irb'iiritaahn/head.svg"
  30352. }
  30353. },
  30354. maw: {
  30355. height: math.unit(9.66, "feet"),
  30356. name: "Maw",
  30357. image: {
  30358. source: "./media/characters/irb'iiritaahn/maw.svg"
  30359. }
  30360. },
  30361. frontDick: {
  30362. height: math.unit(8.78461, "feet"),
  30363. name: "Front Dick",
  30364. image: {
  30365. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30366. }
  30367. },
  30368. rearDick: {
  30369. height: math.unit(8.78461, "feet"),
  30370. name: "Rear Dick",
  30371. image: {
  30372. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30373. }
  30374. },
  30375. rearDickUnfolded: {
  30376. height: math.unit(8.78, "feet"),
  30377. name: "Rear Dick (Unfolded)",
  30378. image: {
  30379. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30380. }
  30381. },
  30382. wings: {
  30383. height: math.unit(43, "feet"),
  30384. name: "Wings",
  30385. image: {
  30386. source: "./media/characters/irb'iiritaahn/wings.svg"
  30387. }
  30388. },
  30389. },
  30390. [
  30391. {
  30392. name: "Macro",
  30393. height: math.unit(50 + 9/12, "feet"),
  30394. default: true
  30395. },
  30396. ]
  30397. ))
  30398. characterMakers.push(() => makeCharacter(
  30399. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30400. {
  30401. front: {
  30402. height: math.unit(205, "cm"),
  30403. weight: math.unit(102, "kg"),
  30404. name: "Front",
  30405. image: {
  30406. source: "./media/characters/irbisgreif/front.svg",
  30407. extra: 785/706,
  30408. bottom: 13/798
  30409. }
  30410. },
  30411. back: {
  30412. height: math.unit(205, "cm"),
  30413. weight: math.unit(102, "kg"),
  30414. name: "Back",
  30415. image: {
  30416. source: "./media/characters/irbisgreif/back.svg",
  30417. extra: 713/701,
  30418. bottom: 26/739
  30419. }
  30420. },
  30421. frontDressed: {
  30422. height: math.unit(216, "cm"),
  30423. weight: math.unit(102, "kg"),
  30424. name: "Front-dressed",
  30425. image: {
  30426. source: "./media/characters/irbisgreif/front-dressed.svg",
  30427. extra: 902/776,
  30428. bottom: 14/916
  30429. }
  30430. },
  30431. sideDressed: {
  30432. height: math.unit(195, "cm"),
  30433. weight: math.unit(102, "kg"),
  30434. name: "Side-dressed",
  30435. image: {
  30436. source: "./media/characters/irbisgreif/side-dressed.svg",
  30437. extra: 788/688,
  30438. bottom: 21/809
  30439. }
  30440. },
  30441. backDressed: {
  30442. height: math.unit(216, "cm"),
  30443. weight: math.unit(102, "kg"),
  30444. name: "Back-dressed",
  30445. image: {
  30446. source: "./media/characters/irbisgreif/back-dressed.svg",
  30447. extra: 901/783,
  30448. bottom: 10/911
  30449. }
  30450. },
  30451. dick: {
  30452. height: math.unit(0.49, "feet"),
  30453. name: "Dick",
  30454. image: {
  30455. source: "./media/characters/irbisgreif/dick.svg"
  30456. }
  30457. },
  30458. wingTop: {
  30459. height: math.unit(1.93 , "feet"),
  30460. name: "Wing-top",
  30461. image: {
  30462. source: "./media/characters/irbisgreif/wing-top.svg"
  30463. }
  30464. },
  30465. wingBottom: {
  30466. height: math.unit(1.93 , "feet"),
  30467. name: "Wing-bottom",
  30468. image: {
  30469. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30470. }
  30471. },
  30472. },
  30473. [
  30474. {
  30475. name: "Normal",
  30476. height: math.unit(216, "cm"),
  30477. default: true
  30478. },
  30479. ]
  30480. ))
  30481. characterMakers.push(() => makeCharacter(
  30482. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30483. {
  30484. front: {
  30485. height: math.unit(6, "feet"),
  30486. weight: math.unit(150, "lb"),
  30487. name: "Front",
  30488. image: {
  30489. source: "./media/characters/pride/front.svg",
  30490. extra: 1299/1230,
  30491. bottom: 18/1317
  30492. }
  30493. },
  30494. },
  30495. [
  30496. {
  30497. name: "Normal",
  30498. height: math.unit(7, "feet")
  30499. },
  30500. {
  30501. name: "Mini-macro",
  30502. height: math.unit(11, "feet")
  30503. },
  30504. {
  30505. name: "Macro",
  30506. height: math.unit(15, "meters"),
  30507. default: true
  30508. },
  30509. {
  30510. name: "Macro+",
  30511. height: math.unit(40, "meters")
  30512. },
  30513. ]
  30514. ))
  30515. characterMakers.push(() => makeCharacter(
  30516. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30517. {
  30518. front: {
  30519. height: math.unit(4 + 2 / 12, "feet"),
  30520. weight: math.unit(95, "lb"),
  30521. name: "Front",
  30522. image: {
  30523. source: "./media/characters/vaelophis-nyx/front.svg",
  30524. extra: 2532/2330,
  30525. bottom: 0/2532
  30526. }
  30527. },
  30528. back: {
  30529. height: math.unit(4 + 2 / 12, "feet"),
  30530. weight: math.unit(95, "lb"),
  30531. name: "Back",
  30532. image: {
  30533. source: "./media/characters/vaelophis-nyx/back.svg",
  30534. extra: 2484/2361,
  30535. bottom: 0/2484
  30536. }
  30537. },
  30538. feralSide: {
  30539. height: math.unit(2 + 1/12, "feet"),
  30540. weight: math.unit(20, "lb"),
  30541. name: "Feral (Side)",
  30542. image: {
  30543. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30544. extra: 1721/1581,
  30545. bottom: 70/1791
  30546. }
  30547. },
  30548. feralLazing: {
  30549. height: math.unit(1.08, "feet"),
  30550. weight: math.unit(20, "lb"),
  30551. name: "Feral (Lazing)",
  30552. image: {
  30553. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30554. extra: 822/822,
  30555. bottom: 248/1070
  30556. }
  30557. },
  30558. ear: {
  30559. height: math.unit(0.416, "feet"),
  30560. name: "Ear",
  30561. image: {
  30562. source: "./media/characters/vaelophis-nyx/ear.svg"
  30563. }
  30564. },
  30565. eye: {
  30566. height: math.unit(0.0748, "feet"),
  30567. name: "Eye",
  30568. image: {
  30569. source: "./media/characters/vaelophis-nyx/eye.svg"
  30570. }
  30571. },
  30572. mouth: {
  30573. height: math.unit(0.378, "feet"),
  30574. name: "Mouth",
  30575. image: {
  30576. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30577. }
  30578. },
  30579. spade: {
  30580. height: math.unit(0.55, "feet"),
  30581. name: "Spade",
  30582. image: {
  30583. source: "./media/characters/vaelophis-nyx/spade.svg"
  30584. }
  30585. },
  30586. },
  30587. [
  30588. {
  30589. name: "Normal",
  30590. height: math.unit(4 + 2/12, "feet"),
  30591. default: true
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30597. {
  30598. front: {
  30599. height: math.unit(7, "feet"),
  30600. weight: math.unit(231, "lb"),
  30601. name: "Front",
  30602. image: {
  30603. source: "./media/characters/flux/front.svg",
  30604. extra: 919/871,
  30605. bottom: 0/919
  30606. }
  30607. },
  30608. back: {
  30609. height: math.unit(7, "feet"),
  30610. weight: math.unit(231, "lb"),
  30611. name: "Back",
  30612. image: {
  30613. source: "./media/characters/flux/back.svg",
  30614. extra: 1040/992,
  30615. bottom: 0/1040
  30616. }
  30617. },
  30618. frontDressed: {
  30619. height: math.unit(7, "feet"),
  30620. weight: math.unit(231, "lb"),
  30621. name: "Front (Dressed)",
  30622. image: {
  30623. source: "./media/characters/flux/front-dressed.svg",
  30624. extra: 919/871,
  30625. bottom: 0/919
  30626. }
  30627. },
  30628. feralSide: {
  30629. height: math.unit(5, "feet"),
  30630. weight: math.unit(150, "lb"),
  30631. name: "Feral (Side)",
  30632. image: {
  30633. source: "./media/characters/flux/feral-side.svg",
  30634. extra: 598/528,
  30635. bottom: 28/626
  30636. }
  30637. },
  30638. head: {
  30639. height: math.unit(1.585, "feet"),
  30640. name: "Head",
  30641. image: {
  30642. source: "./media/characters/flux/head.svg"
  30643. }
  30644. },
  30645. headSide: {
  30646. height: math.unit(1.74, "feet"),
  30647. name: "Head (Side)",
  30648. image: {
  30649. source: "./media/characters/flux/head-side.svg"
  30650. }
  30651. },
  30652. headSideFire: {
  30653. height: math.unit(1.76, "feet"),
  30654. name: "Head (Side, Fire)",
  30655. image: {
  30656. source: "./media/characters/flux/head-side-fire.svg"
  30657. }
  30658. },
  30659. },
  30660. [
  30661. {
  30662. name: "Normal",
  30663. height: math.unit(7, "feet"),
  30664. default: true
  30665. },
  30666. ]
  30667. ))
  30668. characterMakers.push(() => makeCharacter(
  30669. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30670. {
  30671. front: {
  30672. height: math.unit(9, "feet"),
  30673. weight: math.unit(1012, "lb"),
  30674. name: "Front",
  30675. image: {
  30676. source: "./media/characters/ulfra-lupae/front.svg",
  30677. extra: 1083/1011,
  30678. bottom: 67/1150
  30679. }
  30680. },
  30681. },
  30682. [
  30683. {
  30684. name: "Micro",
  30685. height: math.unit(6, "inches")
  30686. },
  30687. {
  30688. name: "Socializing",
  30689. height: math.unit(6 + 5/12, "feet")
  30690. },
  30691. {
  30692. name: "Normal",
  30693. height: math.unit(9, "feet"),
  30694. default: true
  30695. },
  30696. {
  30697. name: "Macro",
  30698. height: math.unit(150, "feet")
  30699. },
  30700. ]
  30701. ))
  30702. characterMakers.push(() => makeCharacter(
  30703. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30704. {
  30705. front: {
  30706. height: math.unit(5 + 2/12, "feet"),
  30707. weight: math.unit(120, "lb"),
  30708. name: "Front",
  30709. image: {
  30710. source: "./media/characters/timber/front.svg",
  30711. extra: 2814/2705,
  30712. bottom: 181/2995
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Normal",
  30719. height: math.unit(5 + 2/12, "feet"),
  30720. default: true
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30726. {
  30727. front: {
  30728. height: math.unit(5 + 7/12, "feet"),
  30729. weight: math.unit(220, "lb"),
  30730. name: "Front",
  30731. image: {
  30732. source: "./media/characters/nicki/front.svg",
  30733. extra: 453/419,
  30734. bottom: 7/460
  30735. }
  30736. },
  30737. frontAlt: {
  30738. height: math.unit(5 + 7/12, "feet"),
  30739. weight: math.unit(220, "lb"),
  30740. name: "Front-alt",
  30741. image: {
  30742. source: "./media/characters/nicki/front-alt.svg",
  30743. extra: 435/411,
  30744. bottom: 12/447
  30745. }
  30746. },
  30747. back: {
  30748. height: math.unit(5 + 7/12, "feet"),
  30749. weight: math.unit(220, "lb"),
  30750. name: "Back",
  30751. image: {
  30752. source: "./media/characters/nicki/back.svg",
  30753. extra: 440/413,
  30754. bottom: 19/459
  30755. }
  30756. },
  30757. taur: {
  30758. height: math.unit(7 + 6/12, "feet"),
  30759. weight: math.unit(700, "lb"),
  30760. name: "Taur",
  30761. image: {
  30762. source: "./media/characters/nicki/taur.svg",
  30763. extra: 975/773,
  30764. bottom: 0/975
  30765. }
  30766. },
  30767. frontNsfw: {
  30768. height: math.unit(5 + 7/12, "feet"),
  30769. weight: math.unit(220, "lb"),
  30770. name: "Front (NSFW)",
  30771. image: {
  30772. source: "./media/characters/nicki/front-nsfw.svg",
  30773. extra: 453/419,
  30774. bottom: 7/460
  30775. }
  30776. },
  30777. frontNsfwAlt: {
  30778. height: math.unit(5 + 7/12, "feet"),
  30779. weight: math.unit(220, "lb"),
  30780. name: "Front (Alt, NSFW)",
  30781. image: {
  30782. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30783. extra: 435/411,
  30784. bottom: 12/447
  30785. }
  30786. },
  30787. backNsfw: {
  30788. height: math.unit(5 + 7/12, "feet"),
  30789. weight: math.unit(220, "lb"),
  30790. name: "Back (NSFW)",
  30791. image: {
  30792. source: "./media/characters/nicki/back-nsfw.svg",
  30793. extra: 440/413,
  30794. bottom: 19/459
  30795. }
  30796. },
  30797. head: {
  30798. height: math.unit(2.1, "feet"),
  30799. name: "Head",
  30800. image: {
  30801. source: "./media/characters/nicki/head.svg"
  30802. }
  30803. },
  30804. paw: {
  30805. height: math.unit(1.88, "feet"),
  30806. name: "Paw",
  30807. image: {
  30808. source: "./media/characters/nicki/paw.svg"
  30809. }
  30810. },
  30811. },
  30812. [
  30813. {
  30814. name: "Normal",
  30815. height: math.unit(5 + 7/12, "feet"),
  30816. default: true
  30817. },
  30818. ]
  30819. ))
  30820. characterMakers.push(() => makeCharacter(
  30821. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30822. {
  30823. front: {
  30824. height: math.unit(7 + 10/12, "feet"),
  30825. weight: math.unit(3.5, "tons"),
  30826. name: "Front",
  30827. image: {
  30828. source: "./media/characters/lee/front.svg",
  30829. extra: 1773/1615,
  30830. bottom: 86/1859
  30831. }
  30832. },
  30833. hand: {
  30834. height: math.unit(1.78, "feet"),
  30835. name: "Hand",
  30836. image: {
  30837. source: "./media/characters/lee/hand.svg"
  30838. }
  30839. },
  30840. maw: {
  30841. height: math.unit(1.18, "feet"),
  30842. name: "Maw",
  30843. image: {
  30844. source: "./media/characters/lee/maw.svg"
  30845. }
  30846. },
  30847. },
  30848. [
  30849. {
  30850. name: "Normal",
  30851. height: math.unit(7 + 10/12, "feet"),
  30852. default: true
  30853. },
  30854. ]
  30855. ))
  30856. characterMakers.push(() => makeCharacter(
  30857. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30858. {
  30859. front: {
  30860. height: math.unit(9, "feet"),
  30861. name: "Front",
  30862. image: {
  30863. source: "./media/characters/guti/front.svg",
  30864. extra: 4551/4355,
  30865. bottom: 123/4674
  30866. }
  30867. },
  30868. tongue: {
  30869. height: math.unit(1, "feet"),
  30870. name: "Tongue",
  30871. image: {
  30872. source: "./media/characters/guti/tongue.svg"
  30873. }
  30874. },
  30875. paw: {
  30876. height: math.unit(1.18, "feet"),
  30877. name: "Paw",
  30878. image: {
  30879. source: "./media/characters/guti/paw.svg"
  30880. }
  30881. },
  30882. },
  30883. [
  30884. {
  30885. name: "Normal",
  30886. height: math.unit(9, "feet"),
  30887. default: true
  30888. },
  30889. ]
  30890. ))
  30891. characterMakers.push(() => makeCharacter(
  30892. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30893. {
  30894. side: {
  30895. height: math.unit(5, "meters"),
  30896. name: "Side",
  30897. image: {
  30898. source: "./media/characters/vesper/side.svg",
  30899. extra: 1605/1518,
  30900. bottom: 0/1605
  30901. }
  30902. },
  30903. },
  30904. [
  30905. {
  30906. name: "Small",
  30907. height: math.unit(5, "meters")
  30908. },
  30909. {
  30910. name: "Sage",
  30911. height: math.unit(100, "meters"),
  30912. default: true
  30913. },
  30914. {
  30915. name: "Fun Size",
  30916. height: math.unit(600, "meters")
  30917. },
  30918. {
  30919. name: "Goddess",
  30920. height: math.unit(20000, "km")
  30921. },
  30922. {
  30923. name: "Maximum",
  30924. height: math.unit(5, "galaxies")
  30925. },
  30926. ]
  30927. ))
  30928. characterMakers.push(() => makeCharacter(
  30929. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30930. {
  30931. front: {
  30932. height: math.unit(6 + 3/12, "feet"),
  30933. weight: math.unit(190, "lb"),
  30934. name: "Front",
  30935. image: {
  30936. source: "./media/characters/gawain/front.svg",
  30937. extra: 2222/2139,
  30938. bottom: 90/2312
  30939. }
  30940. },
  30941. back: {
  30942. height: math.unit(6 + 3/12, "feet"),
  30943. weight: math.unit(190, "lb"),
  30944. name: "Back",
  30945. image: {
  30946. source: "./media/characters/gawain/back.svg",
  30947. extra: 2199/2111,
  30948. bottom: 73/2272
  30949. }
  30950. },
  30951. },
  30952. [
  30953. {
  30954. name: "Normal",
  30955. height: math.unit(6 + 3/12, "feet"),
  30956. default: true
  30957. },
  30958. ]
  30959. ))
  30960. characterMakers.push(() => makeCharacter(
  30961. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30962. {
  30963. side: {
  30964. height: math.unit(3.5, "meters"),
  30965. weight: math.unit(16000, "lb"),
  30966. name: "Side",
  30967. image: {
  30968. source: "./media/characters/dascalti/side.svg",
  30969. extra: 392/273,
  30970. bottom: 47/439
  30971. }
  30972. },
  30973. breath: {
  30974. height: math.unit(7.4, "feet"),
  30975. name: "Breath",
  30976. image: {
  30977. source: "./media/characters/dascalti/breath.svg"
  30978. }
  30979. },
  30980. fed: {
  30981. height: math.unit(3.6, "meters"),
  30982. weight: math.unit(16000, "lb"),
  30983. name: "Fed",
  30984. image: {
  30985. source: "./media/characters/dascalti/fed.svg",
  30986. extra: 1419/820,
  30987. bottom: 95/1514
  30988. }
  30989. },
  30990. },
  30991. [
  30992. {
  30993. name: "Normal",
  30994. height: math.unit(3.5, "meters"),
  30995. default: true
  30996. },
  30997. ]
  30998. ))
  30999. characterMakers.push(() => makeCharacter(
  31000. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31001. {
  31002. front: {
  31003. height: math.unit(3 + 5/12, "feet"),
  31004. name: "Front",
  31005. image: {
  31006. source: "./media/characters/mauve/front.svg",
  31007. extra: 1126/1033,
  31008. bottom: 65/1191
  31009. }
  31010. },
  31011. side: {
  31012. height: math.unit(3 + 5/12, "feet"),
  31013. name: "Side",
  31014. image: {
  31015. source: "./media/characters/mauve/side.svg",
  31016. extra: 1089/1001,
  31017. bottom: 29/1118
  31018. }
  31019. },
  31020. back: {
  31021. height: math.unit(3 + 5/12, "feet"),
  31022. name: "Back",
  31023. image: {
  31024. source: "./media/characters/mauve/back.svg",
  31025. extra: 1173/1053,
  31026. bottom: 109/1282
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(3 + 5/12, "feet"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31040. {
  31041. front: {
  31042. height: math.unit(6 + 3/12, "feet"),
  31043. weight: math.unit(430, "lb"),
  31044. name: "Front",
  31045. image: {
  31046. source: "./media/characters/carlos/front.svg",
  31047. extra: 1964/1913,
  31048. bottom: 70/2034
  31049. }
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Normal",
  31055. height: math.unit(6 + 3/12, "feet"),
  31056. default: true
  31057. },
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31062. {
  31063. back: {
  31064. height: math.unit(5 + 10/12, "feet"),
  31065. weight: math.unit(200, "lb"),
  31066. name: "Back",
  31067. image: {
  31068. source: "./media/characters/jax/back.svg",
  31069. extra: 764/739,
  31070. bottom: 25/789
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Normal",
  31077. height: math.unit(5 + 10/12, "feet"),
  31078. default: true
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31084. {
  31085. front: {
  31086. height: math.unit(8, "feet"),
  31087. weight: math.unit(250, "lb"),
  31088. name: "Front",
  31089. image: {
  31090. source: "./media/characters/eikthynir/front.svg",
  31091. extra: 1332/1166,
  31092. bottom: 82/1414
  31093. }
  31094. },
  31095. back: {
  31096. height: math.unit(8, "feet"),
  31097. weight: math.unit(250, "lb"),
  31098. name: "Back",
  31099. image: {
  31100. source: "./media/characters/eikthynir/back.svg",
  31101. extra: 1342/1190,
  31102. bottom: 19/1361
  31103. }
  31104. },
  31105. dick: {
  31106. height: math.unit(2.35, "feet"),
  31107. name: "Dick",
  31108. image: {
  31109. source: "./media/characters/eikthynir/dick.svg"
  31110. }
  31111. },
  31112. },
  31113. [
  31114. {
  31115. name: "Normal",
  31116. height: math.unit(8, "feet"),
  31117. default: true
  31118. },
  31119. ]
  31120. ))
  31121. characterMakers.push(() => makeCharacter(
  31122. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31123. {
  31124. front: {
  31125. height: math.unit(99, "meters"),
  31126. weight: math.unit(13000, "tons"),
  31127. name: "Front",
  31128. image: {
  31129. source: "./media/characters/zlmos/front.svg",
  31130. extra: 2202/1992,
  31131. bottom: 315/2517
  31132. }
  31133. },
  31134. },
  31135. [
  31136. {
  31137. name: "Macro",
  31138. height: math.unit(99, "meters"),
  31139. default: true
  31140. },
  31141. ]
  31142. ))
  31143. characterMakers.push(() => makeCharacter(
  31144. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31145. {
  31146. front: {
  31147. height: math.unit(6 + 5/12, "feet"),
  31148. name: "Front",
  31149. image: {
  31150. source: "./media/characters/purri/front.svg",
  31151. extra: 1698/1610,
  31152. bottom: 32/1730
  31153. }
  31154. },
  31155. frontAlt: {
  31156. height: math.unit(6 + 5/12, "feet"),
  31157. name: "Front (Alt)",
  31158. image: {
  31159. source: "./media/characters/purri/front-alt.svg",
  31160. extra: 450/420,
  31161. bottom: 26/476
  31162. }
  31163. },
  31164. boots: {
  31165. height: math.unit(5.5, "feet"),
  31166. name: "Boots",
  31167. image: {
  31168. source: "./media/characters/purri/boots.svg",
  31169. extra: 905/853,
  31170. bottom: 18/923
  31171. }
  31172. },
  31173. lying: {
  31174. height: math.unit(2, "feet"),
  31175. name: "Lying",
  31176. image: {
  31177. source: "./media/characters/purri/lying.svg",
  31178. extra: 940/843,
  31179. bottom: 146/1086
  31180. }
  31181. },
  31182. devious: {
  31183. height: math.unit(1.77, "feet"),
  31184. name: "Devious",
  31185. image: {
  31186. source: "./media/characters/purri/devious.svg",
  31187. extra: 1440/1155,
  31188. bottom: 147/1587
  31189. }
  31190. },
  31191. bean: {
  31192. height: math.unit(1.94, "feet"),
  31193. name: "Bean",
  31194. image: {
  31195. source: "./media/characters/purri/bean.svg"
  31196. }
  31197. },
  31198. },
  31199. [
  31200. {
  31201. name: "Micro",
  31202. height: math.unit(1, "mm")
  31203. },
  31204. {
  31205. name: "Normal",
  31206. height: math.unit(6 + 5/12, "feet"),
  31207. default: true
  31208. },
  31209. {
  31210. name: "Macro :3c",
  31211. height: math.unit(2, "miles")
  31212. },
  31213. ]
  31214. ))
  31215. characterMakers.push(() => makeCharacter(
  31216. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31217. {
  31218. front: {
  31219. height: math.unit(6 + 2/12, "feet"),
  31220. weight: math.unit(250, "lb"),
  31221. name: "Front",
  31222. image: {
  31223. source: "./media/characters/moonlight/front.svg",
  31224. extra: 1044/908,
  31225. bottom: 56/1100
  31226. }
  31227. },
  31228. feral: {
  31229. height: math.unit(3 + 1/12, "feet"),
  31230. weight: math.unit(50, "kg"),
  31231. name: "Feral",
  31232. image: {
  31233. source: "./media/characters/moonlight/feral.svg",
  31234. extra: 3705/2791,
  31235. bottom: 145/3850
  31236. }
  31237. },
  31238. paw: {
  31239. height: math.unit(1, "feet"),
  31240. name: "Paw",
  31241. image: {
  31242. source: "./media/characters/moonlight/paw.svg"
  31243. }
  31244. },
  31245. paws: {
  31246. height: math.unit(0.98, "feet"),
  31247. name: "Paws",
  31248. image: {
  31249. source: "./media/characters/moonlight/paws.svg",
  31250. extra: 939/939,
  31251. bottom: 50/989
  31252. }
  31253. },
  31254. mouth: {
  31255. height: math.unit(0.48, "feet"),
  31256. name: "Mouth",
  31257. image: {
  31258. source: "./media/characters/moonlight/mouth.svg"
  31259. }
  31260. },
  31261. dick: {
  31262. height: math.unit(1.46, "feet"),
  31263. name: "Dick",
  31264. image: {
  31265. source: "./media/characters/moonlight/dick.svg"
  31266. }
  31267. },
  31268. },
  31269. [
  31270. {
  31271. name: "Normal",
  31272. height: math.unit(6 + 2/12, "feet"),
  31273. default: true
  31274. },
  31275. {
  31276. name: "Macro",
  31277. height: math.unit(300, "feet")
  31278. },
  31279. {
  31280. name: "Macro+",
  31281. height: math.unit(1, "mile")
  31282. },
  31283. {
  31284. name: "Mt. Moon",
  31285. height: math.unit(5, "miles")
  31286. },
  31287. {
  31288. name: "Megamacro",
  31289. height: math.unit(15, "miles")
  31290. },
  31291. ]
  31292. ))
  31293. characterMakers.push(() => makeCharacter(
  31294. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31295. {
  31296. back: {
  31297. height: math.unit(6, "feet"),
  31298. weight: math.unit(150, "lb"),
  31299. name: "Back",
  31300. image: {
  31301. source: "./media/characters/sylen/back.svg",
  31302. extra: 1335/1273,
  31303. bottom: 107/1442
  31304. }
  31305. },
  31306. },
  31307. [
  31308. {
  31309. name: "Normal",
  31310. height: math.unit(5 + 5/12, "feet")
  31311. },
  31312. {
  31313. name: "Megamacro",
  31314. height: math.unit(3, "miles"),
  31315. default: true
  31316. },
  31317. ]
  31318. ))
  31319. characterMakers.push(() => makeCharacter(
  31320. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31321. {
  31322. front: {
  31323. height: math.unit(6, "feet"),
  31324. weight: math.unit(190, "lb"),
  31325. name: "Front",
  31326. image: {
  31327. source: "./media/characters/huttser/front.svg",
  31328. extra: 1152/1058,
  31329. bottom: 23/1175
  31330. }
  31331. },
  31332. side: {
  31333. height: math.unit(6, "feet"),
  31334. weight: math.unit(190, "lb"),
  31335. name: "Side",
  31336. image: {
  31337. source: "./media/characters/huttser/side.svg",
  31338. extra: 1174/1065,
  31339. bottom: 18/1192
  31340. }
  31341. },
  31342. back: {
  31343. height: math.unit(6, "feet"),
  31344. weight: math.unit(190, "lb"),
  31345. name: "Back",
  31346. image: {
  31347. source: "./media/characters/huttser/back.svg",
  31348. extra: 1158/1056,
  31349. bottom: 12/1170
  31350. }
  31351. },
  31352. },
  31353. [
  31354. ]
  31355. ))
  31356. characterMakers.push(() => makeCharacter(
  31357. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31358. {
  31359. side: {
  31360. height: math.unit(12 + 9/12, "feet"),
  31361. weight: math.unit(15000, "lb"),
  31362. name: "Side",
  31363. image: {
  31364. source: "./media/characters/faan/side.svg",
  31365. extra: 2747/2697,
  31366. bottom: 0/2747
  31367. }
  31368. },
  31369. front: {
  31370. height: math.unit(12 + 9/12, "feet"),
  31371. weight: math.unit(15000, "lb"),
  31372. name: "Front",
  31373. image: {
  31374. source: "./media/characters/faan/front.svg",
  31375. extra: 607/571,
  31376. bottom: 24/631
  31377. }
  31378. },
  31379. head: {
  31380. height: math.unit(2.85, "feet"),
  31381. name: "Head",
  31382. image: {
  31383. source: "./media/characters/faan/head.svg"
  31384. }
  31385. },
  31386. headAlt: {
  31387. height: math.unit(3.13, "feet"),
  31388. name: "Head-alt",
  31389. image: {
  31390. source: "./media/characters/faan/head-alt.svg"
  31391. }
  31392. },
  31393. },
  31394. [
  31395. {
  31396. name: "Normal",
  31397. height: math.unit(12 + 9/12, "feet"),
  31398. default: true
  31399. },
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31404. {
  31405. front: {
  31406. height: math.unit(6, "feet"),
  31407. weight: math.unit(300, "lb"),
  31408. name: "Front",
  31409. image: {
  31410. source: "./media/characters/tanio/front.svg",
  31411. extra: 711/673,
  31412. bottom: 25/736
  31413. }
  31414. },
  31415. },
  31416. [
  31417. {
  31418. name: "Normal",
  31419. height: math.unit(6, "feet"),
  31420. default: true
  31421. },
  31422. ]
  31423. ))
  31424. characterMakers.push(() => makeCharacter(
  31425. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31426. {
  31427. front: {
  31428. height: math.unit(3, "inches"),
  31429. name: "Front",
  31430. image: {
  31431. source: "./media/characters/noboru/front.svg",
  31432. extra: 1039/932,
  31433. bottom: 18/1057
  31434. }
  31435. },
  31436. },
  31437. [
  31438. {
  31439. name: "Micro",
  31440. height: math.unit(3, "inches"),
  31441. default: true
  31442. },
  31443. ]
  31444. ))
  31445. characterMakers.push(() => makeCharacter(
  31446. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31447. {
  31448. front: {
  31449. height: math.unit(1.85, "meters"),
  31450. weight: math.unit(80, "kg"),
  31451. name: "Front",
  31452. image: {
  31453. source: "./media/characters/daniel-barrett/front.svg",
  31454. extra: 355/337,
  31455. bottom: 9/364
  31456. }
  31457. },
  31458. },
  31459. [
  31460. {
  31461. name: "Pico",
  31462. height: math.unit(0.0433, "mm")
  31463. },
  31464. {
  31465. name: "Nano",
  31466. height: math.unit(1.5, "mm")
  31467. },
  31468. {
  31469. name: "Micro",
  31470. height: math.unit(5.3, "cm"),
  31471. default: true
  31472. },
  31473. {
  31474. name: "Normal",
  31475. height: math.unit(1.85, "meters")
  31476. },
  31477. {
  31478. name: "Macro",
  31479. height: math.unit(64.7, "meters")
  31480. },
  31481. {
  31482. name: "Megamacro",
  31483. height: math.unit(2.26, "km")
  31484. },
  31485. {
  31486. name: "Gigamacro",
  31487. height: math.unit(79, "km")
  31488. },
  31489. {
  31490. name: "Teramacro",
  31491. height: math.unit(2765, "km")
  31492. },
  31493. {
  31494. name: "Petamacro",
  31495. height: math.unit(96678, "km")
  31496. },
  31497. ]
  31498. ))
  31499. characterMakers.push(() => makeCharacter(
  31500. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31501. {
  31502. front: {
  31503. height: math.unit(30, "meters"),
  31504. weight: math.unit(400, "tons"),
  31505. name: "Front",
  31506. image: {
  31507. source: "./media/characters/zeel/front.svg",
  31508. extra: 2599/2599,
  31509. bottom: 226/2825
  31510. }
  31511. },
  31512. },
  31513. [
  31514. {
  31515. name: "Macro",
  31516. height: math.unit(30, "meters"),
  31517. default: true
  31518. },
  31519. ]
  31520. ))
  31521. characterMakers.push(() => makeCharacter(
  31522. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31523. {
  31524. front: {
  31525. height: math.unit(6 + 7/12, "feet"),
  31526. weight: math.unit(210, "lb"),
  31527. name: "Front",
  31528. image: {
  31529. source: "./media/characters/tarn/front.svg",
  31530. extra: 3517/3220,
  31531. bottom: 91/3608
  31532. }
  31533. },
  31534. back: {
  31535. height: math.unit(6 + 7/12, "feet"),
  31536. weight: math.unit(210, "lb"),
  31537. name: "Back",
  31538. image: {
  31539. source: "./media/characters/tarn/back.svg",
  31540. extra: 3566/3241,
  31541. bottom: 34/3600
  31542. }
  31543. },
  31544. dick: {
  31545. height: math.unit(1.65, "feet"),
  31546. name: "Dick",
  31547. image: {
  31548. source: "./media/characters/tarn/dick.svg"
  31549. }
  31550. },
  31551. paw: {
  31552. height: math.unit(1.80, "feet"),
  31553. name: "Paw",
  31554. image: {
  31555. source: "./media/characters/tarn/paw.svg"
  31556. }
  31557. },
  31558. tongue: {
  31559. height: math.unit(0.97, "feet"),
  31560. name: "Tongue",
  31561. image: {
  31562. source: "./media/characters/tarn/tongue.svg"
  31563. }
  31564. },
  31565. },
  31566. [
  31567. {
  31568. name: "Micro",
  31569. height: math.unit(4, "inches")
  31570. },
  31571. {
  31572. name: "Normal",
  31573. height: math.unit(6 + 7/12, "feet"),
  31574. default: true
  31575. },
  31576. {
  31577. name: "Macro",
  31578. height: math.unit(300, "feet")
  31579. },
  31580. ]
  31581. ))
  31582. characterMakers.push(() => makeCharacter(
  31583. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31584. {
  31585. front: {
  31586. height: math.unit(5 + 7/12, "feet"),
  31587. weight: math.unit(80, "kg"),
  31588. name: "Front",
  31589. image: {
  31590. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31591. extra: 3023/2865,
  31592. bottom: 33/3056
  31593. }
  31594. },
  31595. back: {
  31596. height: math.unit(5 + 7/12, "feet"),
  31597. weight: math.unit(80, "kg"),
  31598. name: "Back",
  31599. image: {
  31600. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31601. extra: 3020/2886,
  31602. bottom: 30/3050
  31603. }
  31604. },
  31605. dick: {
  31606. height: math.unit(0.98, "feet"),
  31607. name: "Dick",
  31608. image: {
  31609. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31610. }
  31611. },
  31612. anatomy: {
  31613. height: math.unit(2.86, "feet"),
  31614. name: "Anatomy",
  31615. image: {
  31616. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31617. }
  31618. },
  31619. },
  31620. [
  31621. {
  31622. name: "Really Small",
  31623. height: math.unit(2, "inches")
  31624. },
  31625. {
  31626. name: "Micro",
  31627. height: math.unit(5.583, "inches")
  31628. },
  31629. {
  31630. name: "Normal",
  31631. height: math.unit(5 + 7/12, "feet"),
  31632. default: true
  31633. },
  31634. {
  31635. name: "Macro",
  31636. height: math.unit(67, "feet")
  31637. },
  31638. {
  31639. name: "Megamacro",
  31640. height: math.unit(134, "feet")
  31641. },
  31642. ]
  31643. ))
  31644. characterMakers.push(() => makeCharacter(
  31645. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31646. {
  31647. front: {
  31648. height: math.unit(9, "feet"),
  31649. weight: math.unit(120, "lb"),
  31650. name: "Front",
  31651. image: {
  31652. source: "./media/characters/sally/front.svg",
  31653. extra: 1506/1349,
  31654. bottom: 66/1572
  31655. }
  31656. },
  31657. },
  31658. [
  31659. {
  31660. name: "Normal",
  31661. height: math.unit(9, "feet"),
  31662. default: true
  31663. },
  31664. ]
  31665. ))
  31666. characterMakers.push(() => makeCharacter(
  31667. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31668. {
  31669. front: {
  31670. height: math.unit(8, "feet"),
  31671. weight: math.unit(900, "lb"),
  31672. name: "Front",
  31673. image: {
  31674. source: "./media/characters/owen/front.svg",
  31675. extra: 1761/1657,
  31676. bottom: 74/1835
  31677. }
  31678. },
  31679. side: {
  31680. height: math.unit(8, "feet"),
  31681. weight: math.unit(900, "lb"),
  31682. name: "Side",
  31683. image: {
  31684. source: "./media/characters/owen/side.svg",
  31685. extra: 1797/1734,
  31686. bottom: 30/1827
  31687. }
  31688. },
  31689. back: {
  31690. height: math.unit(8, "feet"),
  31691. weight: math.unit(900, "lb"),
  31692. name: "Back",
  31693. image: {
  31694. source: "./media/characters/owen/back.svg",
  31695. extra: 1796/1706,
  31696. bottom: 59/1855
  31697. }
  31698. },
  31699. maw: {
  31700. height: math.unit(1.76, "feet"),
  31701. name: "Maw",
  31702. image: {
  31703. source: "./media/characters/owen/maw.svg"
  31704. }
  31705. },
  31706. },
  31707. [
  31708. {
  31709. name: "Normal",
  31710. height: math.unit(8, "feet"),
  31711. default: true
  31712. },
  31713. ]
  31714. ))
  31715. characterMakers.push(() => makeCharacter(
  31716. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31717. {
  31718. front: {
  31719. height: math.unit(4, "feet"),
  31720. weight: math.unit(400, "lb"),
  31721. name: "Front",
  31722. image: {
  31723. source: "./media/characters/ryth/front.svg",
  31724. extra: 1920/1748,
  31725. bottom: 42/1962
  31726. }
  31727. },
  31728. back: {
  31729. height: math.unit(4, "feet"),
  31730. weight: math.unit(400, "lb"),
  31731. name: "Back",
  31732. image: {
  31733. source: "./media/characters/ryth/back.svg",
  31734. extra: 1897/1690,
  31735. bottom: 89/1986
  31736. }
  31737. },
  31738. mouth: {
  31739. height: math.unit(1.39, "feet"),
  31740. name: "Mouth",
  31741. image: {
  31742. source: "./media/characters/ryth/mouth.svg"
  31743. }
  31744. },
  31745. tailmaw: {
  31746. height: math.unit(1.23, "feet"),
  31747. name: "Tailmaw",
  31748. image: {
  31749. source: "./media/characters/ryth/tailmaw.svg"
  31750. }
  31751. },
  31752. goia: {
  31753. height: math.unit(12, "feet"),
  31754. weight: math.unit(10800, "lb"),
  31755. name: "Goia",
  31756. image: {
  31757. source: "./media/characters/ryth/goia.svg",
  31758. extra: 3450/3198,
  31759. bottom: 61/3511
  31760. }
  31761. },
  31762. },
  31763. [
  31764. {
  31765. name: "Normal",
  31766. height: math.unit(4, "feet"),
  31767. default: true
  31768. },
  31769. ]
  31770. ))
  31771. characterMakers.push(() => makeCharacter(
  31772. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31773. {
  31774. front: {
  31775. height: math.unit(7, "feet"),
  31776. weight: math.unit(180, "lb"),
  31777. name: "Front",
  31778. image: {
  31779. source: "./media/characters/necrolance/front.svg",
  31780. extra: 1062/947,
  31781. bottom: 41/1103
  31782. }
  31783. },
  31784. back: {
  31785. height: math.unit(7, "feet"),
  31786. weight: math.unit(180, "lb"),
  31787. name: "Back",
  31788. image: {
  31789. source: "./media/characters/necrolance/back.svg",
  31790. extra: 1045/984,
  31791. bottom: 14/1059
  31792. }
  31793. },
  31794. wing: {
  31795. height: math.unit(2.67, "feet"),
  31796. name: "Wing",
  31797. image: {
  31798. source: "./media/characters/necrolance/wing.svg"
  31799. }
  31800. },
  31801. },
  31802. [
  31803. {
  31804. name: "Normal",
  31805. height: math.unit(7, "feet"),
  31806. default: true
  31807. },
  31808. ]
  31809. ))
  31810. characterMakers.push(() => makeCharacter(
  31811. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31812. {
  31813. front: {
  31814. height: math.unit(76, "meters"),
  31815. weight: math.unit(30000, "tons"),
  31816. name: "Front",
  31817. image: {
  31818. source: "./media/characters/tyler/front.svg",
  31819. extra: 1640/1640,
  31820. bottom: 114/1754
  31821. }
  31822. },
  31823. },
  31824. [
  31825. {
  31826. name: "Macro",
  31827. height: math.unit(76, "meters"),
  31828. default: true
  31829. },
  31830. ]
  31831. ))
  31832. characterMakers.push(() => makeCharacter(
  31833. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31834. {
  31835. front: {
  31836. height: math.unit(4 + 11/12, "feet"),
  31837. weight: math.unit(132, "lb"),
  31838. name: "Front",
  31839. image: {
  31840. source: "./media/characters/icey/front.svg",
  31841. extra: 2750/2550,
  31842. bottom: 33/2783
  31843. }
  31844. },
  31845. back: {
  31846. height: math.unit(4 + 11/12, "feet"),
  31847. weight: math.unit(132, "lb"),
  31848. name: "Back",
  31849. image: {
  31850. source: "./media/characters/icey/back.svg",
  31851. extra: 2624/2481,
  31852. bottom: 35/2659
  31853. }
  31854. },
  31855. },
  31856. [
  31857. {
  31858. name: "Normal",
  31859. height: math.unit(4 + 11/12, "feet"),
  31860. default: true
  31861. },
  31862. ]
  31863. ))
  31864. characterMakers.push(() => makeCharacter(
  31865. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31866. {
  31867. front: {
  31868. height: math.unit(100, "feet"),
  31869. weight: math.unit(0, "lb"),
  31870. name: "Front",
  31871. image: {
  31872. source: "./media/characters/smile/front.svg",
  31873. extra: 2983/2912,
  31874. bottom: 162/3145
  31875. }
  31876. },
  31877. back: {
  31878. height: math.unit(100, "feet"),
  31879. weight: math.unit(0, "lb"),
  31880. name: "Back",
  31881. image: {
  31882. source: "./media/characters/smile/back.svg",
  31883. extra: 3143/3031,
  31884. bottom: 91/3234
  31885. }
  31886. },
  31887. head: {
  31888. height: math.unit(26.3, "feet"),
  31889. weight: math.unit(0, "lb"),
  31890. name: "Head",
  31891. image: {
  31892. source: "./media/characters/smile/head.svg"
  31893. }
  31894. },
  31895. collar: {
  31896. height: math.unit(5.3, "feet"),
  31897. weight: math.unit(0, "lb"),
  31898. name: "Collar",
  31899. image: {
  31900. source: "./media/characters/smile/collar.svg"
  31901. }
  31902. },
  31903. },
  31904. [
  31905. {
  31906. name: "Macro",
  31907. height: math.unit(100, "feet"),
  31908. default: true
  31909. },
  31910. ]
  31911. ))
  31912. characterMakers.push(() => makeCharacter(
  31913. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31914. {
  31915. dragon: {
  31916. height: math.unit(26, "feet"),
  31917. weight: math.unit(36, "tons"),
  31918. name: "Dragon",
  31919. image: {
  31920. source: "./media/characters/arimphae/dragon.svg",
  31921. extra: 1574/983,
  31922. bottom: 357/1931
  31923. }
  31924. },
  31925. drake: {
  31926. height: math.unit(9, "feet"),
  31927. weight: math.unit(1.5, "tons"),
  31928. name: "Drake",
  31929. image: {
  31930. source: "./media/characters/arimphae/drake.svg",
  31931. extra: 1120/925,
  31932. bottom: 435/1555
  31933. }
  31934. },
  31935. },
  31936. [
  31937. {
  31938. name: "Small",
  31939. height: math.unit(26*5/9, "feet")
  31940. },
  31941. {
  31942. name: "Normal",
  31943. height: math.unit(26, "feet"),
  31944. default: true
  31945. },
  31946. ]
  31947. ))
  31948. characterMakers.push(() => makeCharacter(
  31949. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31950. {
  31951. front: {
  31952. height: math.unit(8 + 9/12, "feet"),
  31953. name: "Front",
  31954. image: {
  31955. source: "./media/characters/xander/front.svg",
  31956. extra: 848/673,
  31957. bottom: 62/910
  31958. }
  31959. },
  31960. },
  31961. [
  31962. {
  31963. name: "Normal",
  31964. height: math.unit(8 + 9/12, "feet"),
  31965. default: true
  31966. },
  31967. {
  31968. name: "Gaze Grabber",
  31969. height: math.unit(13 + 8/12, "feet")
  31970. },
  31971. {
  31972. name: "Jaw Dropper",
  31973. height: math.unit(27, "feet")
  31974. },
  31975. {
  31976. name: "Show Stopper",
  31977. height: math.unit(136, "feet")
  31978. },
  31979. {
  31980. name: "Superstar",
  31981. height: math.unit(1.9e6, "miles")
  31982. },
  31983. ]
  31984. ))
  31985. characterMakers.push(() => makeCharacter(
  31986. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31987. {
  31988. side: {
  31989. height: math.unit(2100, "feet"),
  31990. name: "Side",
  31991. image: {
  31992. source: "./media/characters/osiris/side.svg",
  31993. extra: 1105/939,
  31994. bottom: 167/1272
  31995. }
  31996. },
  31997. },
  31998. [
  31999. {
  32000. name: "Macro",
  32001. height: math.unit(2100, "feet"),
  32002. default: true
  32003. },
  32004. ]
  32005. ))
  32006. characterMakers.push(() => makeCharacter(
  32007. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32008. {
  32009. front: {
  32010. height: math.unit(6 + 8/12, "feet"),
  32011. weight: math.unit(225, "lb"),
  32012. name: "Front",
  32013. image: {
  32014. source: "./media/characters/rhys-londe/front.svg",
  32015. extra: 2258/2141,
  32016. bottom: 188/2446
  32017. }
  32018. },
  32019. back: {
  32020. height: math.unit(6 + 8/12, "feet"),
  32021. weight: math.unit(225, "lb"),
  32022. name: "Back",
  32023. image: {
  32024. source: "./media/characters/rhys-londe/back.svg",
  32025. extra: 2237/2137,
  32026. bottom: 63/2300
  32027. }
  32028. },
  32029. frontNsfw: {
  32030. height: math.unit(6 + 8/12, "feet"),
  32031. weight: math.unit(225, "lb"),
  32032. name: "Front (NSFW)",
  32033. image: {
  32034. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32035. extra: 2258/2141,
  32036. bottom: 188/2446
  32037. }
  32038. },
  32039. backNsfw: {
  32040. height: math.unit(6 + 8/12, "feet"),
  32041. weight: math.unit(225, "lb"),
  32042. name: "Back (NSFW)",
  32043. image: {
  32044. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32045. extra: 2237/2137,
  32046. bottom: 63/2300
  32047. }
  32048. },
  32049. dick: {
  32050. height: math.unit(30, "inches"),
  32051. name: "Dick",
  32052. image: {
  32053. source: "./media/characters/rhys-londe/dick.svg"
  32054. }
  32055. },
  32056. maw: {
  32057. height: math.unit(1.6, "feet"),
  32058. name: "Maw",
  32059. image: {
  32060. source: "./media/characters/rhys-londe/maw.svg"
  32061. }
  32062. },
  32063. },
  32064. [
  32065. {
  32066. name: "Normal",
  32067. height: math.unit(6 + 8/12, "feet"),
  32068. default: true
  32069. },
  32070. ]
  32071. ))
  32072. characterMakers.push(() => makeCharacter(
  32073. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32074. {
  32075. front: {
  32076. height: math.unit(3 + 10/12, "feet"),
  32077. weight: math.unit(90, "lb"),
  32078. name: "Front",
  32079. image: {
  32080. source: "./media/characters/taivas-ensim/front.svg",
  32081. extra: 1327/1216,
  32082. bottom: 96/1423
  32083. }
  32084. },
  32085. back: {
  32086. height: math.unit(3 + 10/12, "feet"),
  32087. weight: math.unit(90, "lb"),
  32088. name: "Back",
  32089. image: {
  32090. source: "./media/characters/taivas-ensim/back.svg",
  32091. extra: 1355/1247,
  32092. bottom: 11/1366
  32093. }
  32094. },
  32095. frontNsfw: {
  32096. height: math.unit(3 + 10/12, "feet"),
  32097. weight: math.unit(90, "lb"),
  32098. name: "Front (NSFW)",
  32099. image: {
  32100. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32101. extra: 1327/1216,
  32102. bottom: 96/1423
  32103. }
  32104. },
  32105. backNsfw: {
  32106. height: math.unit(3 + 10/12, "feet"),
  32107. weight: math.unit(90, "lb"),
  32108. name: "Back (NSFW)",
  32109. image: {
  32110. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32111. extra: 1355/1247,
  32112. bottom: 11/1366
  32113. }
  32114. },
  32115. },
  32116. [
  32117. {
  32118. name: "Normal",
  32119. height: math.unit(3 + 10/12, "feet"),
  32120. default: true
  32121. },
  32122. ]
  32123. ))
  32124. characterMakers.push(() => makeCharacter(
  32125. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32126. {
  32127. front: {
  32128. height: math.unit(9 + 6/12, "feet"),
  32129. weight: math.unit(940, "lb"),
  32130. name: "Front",
  32131. image: {
  32132. source: "./media/characters/byliss/front.svg",
  32133. extra: 1327/1290,
  32134. bottom: 82/1409
  32135. }
  32136. },
  32137. back: {
  32138. height: math.unit(9 + 6/12, "feet"),
  32139. weight: math.unit(940, "lb"),
  32140. name: "Back",
  32141. image: {
  32142. source: "./media/characters/byliss/back.svg",
  32143. extra: 1376/1349,
  32144. bottom: 9/1385
  32145. }
  32146. },
  32147. frontNsfw: {
  32148. height: math.unit(9 + 6/12, "feet"),
  32149. weight: math.unit(940, "lb"),
  32150. name: "Front (NSFW)",
  32151. image: {
  32152. source: "./media/characters/byliss/front-nsfw.svg",
  32153. extra: 1327/1290,
  32154. bottom: 82/1409
  32155. }
  32156. },
  32157. backNsfw: {
  32158. height: math.unit(9 + 6/12, "feet"),
  32159. weight: math.unit(940, "lb"),
  32160. name: "Back (NSFW)",
  32161. image: {
  32162. source: "./media/characters/byliss/back-nsfw.svg",
  32163. extra: 1376/1349,
  32164. bottom: 9/1385
  32165. }
  32166. },
  32167. },
  32168. [
  32169. {
  32170. name: "Normal",
  32171. height: math.unit(9 + 6/12, "feet"),
  32172. default: true
  32173. },
  32174. ]
  32175. ))
  32176. characterMakers.push(() => makeCharacter(
  32177. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32178. {
  32179. front: {
  32180. height: math.unit(5 + 2/12, "feet"),
  32181. weight: math.unit(200, "lb"),
  32182. name: "Front",
  32183. image: {
  32184. source: "./media/characters/noraly/front.svg",
  32185. extra: 4985/4773,
  32186. bottom: 150/5135
  32187. }
  32188. },
  32189. full: {
  32190. height: math.unit(5 + 2/12, "feet"),
  32191. weight: math.unit(164, "lb"),
  32192. name: "Full",
  32193. image: {
  32194. source: "./media/characters/noraly/full.svg",
  32195. extra: 1114/1059,
  32196. bottom: 35/1149
  32197. }
  32198. },
  32199. fuller: {
  32200. height: math.unit(5 + 2/12, "feet"),
  32201. weight: math.unit(230, "lb"),
  32202. name: "Fuller",
  32203. image: {
  32204. source: "./media/characters/noraly/fuller.svg",
  32205. extra: 1114/1059,
  32206. bottom: 35/1149
  32207. }
  32208. },
  32209. fullest: {
  32210. height: math.unit(5 + 2/12, "feet"),
  32211. weight: math.unit(300, "lb"),
  32212. name: "Fullest",
  32213. image: {
  32214. source: "./media/characters/noraly/fullest.svg",
  32215. extra: 1114/1059,
  32216. bottom: 35/1149
  32217. }
  32218. },
  32219. },
  32220. [
  32221. {
  32222. name: "Normal",
  32223. height: math.unit(5 + 2/12, "feet"),
  32224. default: true
  32225. },
  32226. ]
  32227. ))
  32228. characterMakers.push(() => makeCharacter(
  32229. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32230. {
  32231. front: {
  32232. height: math.unit(5 + 2/12, "feet"),
  32233. weight: math.unit(210, "lb"),
  32234. name: "Front",
  32235. image: {
  32236. source: "./media/characters/pera/front.svg",
  32237. extra: 1560/1531,
  32238. bottom: 165/1725
  32239. }
  32240. },
  32241. back: {
  32242. height: math.unit(5 + 2/12, "feet"),
  32243. weight: math.unit(210, "lb"),
  32244. name: "Back",
  32245. image: {
  32246. source: "./media/characters/pera/back.svg",
  32247. extra: 1523/1493,
  32248. bottom: 152/1675
  32249. }
  32250. },
  32251. dick: {
  32252. height: math.unit(2.4, "feet"),
  32253. name: "Dick",
  32254. image: {
  32255. source: "./media/characters/pera/dick.svg"
  32256. }
  32257. },
  32258. },
  32259. [
  32260. {
  32261. name: "Normal",
  32262. height: math.unit(5 + 2/12, "feet"),
  32263. default: true
  32264. },
  32265. ]
  32266. ))
  32267. characterMakers.push(() => makeCharacter(
  32268. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32269. {
  32270. front: {
  32271. height: math.unit(12, "feet"),
  32272. weight: math.unit(3200, "lb"),
  32273. name: "Front",
  32274. image: {
  32275. source: "./media/characters/julian/front.svg",
  32276. extra: 2962/2701,
  32277. bottom: 184/3146
  32278. }
  32279. },
  32280. maw: {
  32281. height: math.unit(5.35, "feet"),
  32282. name: "Maw",
  32283. image: {
  32284. source: "./media/characters/julian/maw.svg"
  32285. }
  32286. },
  32287. paw: {
  32288. height: math.unit(3.07, "feet"),
  32289. name: "Paw",
  32290. image: {
  32291. source: "./media/characters/julian/paw.svg"
  32292. }
  32293. },
  32294. },
  32295. [
  32296. {
  32297. name: "Default",
  32298. height: math.unit(12, "feet"),
  32299. default: true
  32300. },
  32301. {
  32302. name: "Big",
  32303. height: math.unit(50, "feet")
  32304. },
  32305. {
  32306. name: "Really Big",
  32307. height: math.unit(1, "mile")
  32308. },
  32309. {
  32310. name: "Extremely Big",
  32311. height: math.unit(100, "miles")
  32312. },
  32313. {
  32314. name: "Planet Hugger",
  32315. height: math.unit(200, "megameters")
  32316. },
  32317. {
  32318. name: "Unreasonably Big",
  32319. height: math.unit(1e300, "meters")
  32320. },
  32321. ]
  32322. ))
  32323. characterMakers.push(() => makeCharacter(
  32324. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32325. {
  32326. solgooleo: {
  32327. height: math.unit(4, "meters"),
  32328. weight: math.unit(6000*1.5, "kg"),
  32329. volume: math.unit(6000, "liters"),
  32330. name: "Solgooleo",
  32331. image: {
  32332. source: "./media/characters/pi/solgooleo.svg",
  32333. extra: 388/331,
  32334. bottom: 29/417
  32335. }
  32336. },
  32337. },
  32338. [
  32339. {
  32340. name: "Normal",
  32341. height: math.unit(4, "meters"),
  32342. default: true
  32343. },
  32344. ]
  32345. ))
  32346. characterMakers.push(() => makeCharacter(
  32347. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32348. {
  32349. front: {
  32350. height: math.unit(8 + 2/12, "feet"),
  32351. weight: math.unit(4, "tons"),
  32352. name: "Front",
  32353. image: {
  32354. source: "./media/characters/shaun/front.svg",
  32355. extra: 1550/1505,
  32356. bottom: 353/1903
  32357. }
  32358. },
  32359. },
  32360. [
  32361. {
  32362. name: "Lorg",
  32363. height: math.unit(8 + 2/12, "feet"),
  32364. default: true
  32365. },
  32366. ]
  32367. ))
  32368. characterMakers.push(() => makeCharacter(
  32369. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32370. {
  32371. front: {
  32372. height: math.unit(7, "feet"),
  32373. name: "Front",
  32374. image: {
  32375. source: "./media/characters/sini/front.svg",
  32376. extra: 726/678,
  32377. bottom: 35/761
  32378. }
  32379. },
  32380. back: {
  32381. height: math.unit(7, "feet"),
  32382. name: "Back",
  32383. image: {
  32384. source: "./media/characters/sini/back.svg",
  32385. extra: 743/701,
  32386. bottom: 12/755
  32387. }
  32388. },
  32389. mawAnthro: {
  32390. height: math.unit(2.14, "feet"),
  32391. name: "Maw (Anthro)",
  32392. image: {
  32393. source: "./media/characters/sini/maw-anthro.svg"
  32394. }
  32395. },
  32396. dick: {
  32397. height: math.unit(1.45, "feet"),
  32398. name: "Dick (Anthro)",
  32399. image: {
  32400. source: "./media/characters/sini/dick-anthro.svg"
  32401. }
  32402. },
  32403. feral: {
  32404. height: math.unit(16, "feet"),
  32405. name: "Feral",
  32406. image: {
  32407. source: "./media/characters/sini/feral.svg",
  32408. extra: 814/605,
  32409. bottom: 11/825
  32410. }
  32411. },
  32412. mawFeral: {
  32413. height: math.unit(5.66, "feet"),
  32414. name: "Maw-feral",
  32415. image: {
  32416. source: "./media/characters/sini/maw-feral.svg"
  32417. }
  32418. },
  32419. footFeral: {
  32420. height: math.unit(5.17, "feet"),
  32421. name: "Foot-feral",
  32422. image: {
  32423. source: "./media/characters/sini/foot-feral.svg"
  32424. }
  32425. },
  32426. },
  32427. [
  32428. {
  32429. name: "Normal",
  32430. height: math.unit(7, "feet"),
  32431. default: true
  32432. },
  32433. ]
  32434. ))
  32435. characterMakers.push(() => makeCharacter(
  32436. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32437. {
  32438. side: {
  32439. height: math.unit(13, "meters"),
  32440. weight: math.unit(9072, "kg"),
  32441. name: "Side",
  32442. image: {
  32443. source: "./media/characters/raylldo/side.svg",
  32444. extra: 403/344,
  32445. bottom: 42/445
  32446. }
  32447. },
  32448. leaping: {
  32449. height: math.unit(12.3, "meters"),
  32450. weight: math.unit(9072, "kg"),
  32451. name: "Leaping",
  32452. image: {
  32453. source: "./media/characters/raylldo/leaping.svg",
  32454. extra: 470/249,
  32455. bottom: 13/483
  32456. }
  32457. },
  32458. flying: {
  32459. height: math.unit(18, "meters"),
  32460. weight: math.unit(9072, "kg"),
  32461. name: "Flying",
  32462. image: {
  32463. source: "./media/characters/raylldo/flying.svg"
  32464. }
  32465. },
  32466. head: {
  32467. height: math.unit(5.85, "meters"),
  32468. name: "Head",
  32469. image: {
  32470. source: "./media/characters/raylldo/head.svg"
  32471. }
  32472. },
  32473. maw: {
  32474. height: math.unit(5.32, "meters"),
  32475. name: "Maw",
  32476. image: {
  32477. source: "./media/characters/raylldo/maw.svg"
  32478. }
  32479. },
  32480. eye: {
  32481. height: math.unit(0.54, "meters"),
  32482. name: "Eye",
  32483. image: {
  32484. source: "./media/characters/raylldo/eye.svg"
  32485. }
  32486. },
  32487. },
  32488. [
  32489. {
  32490. name: "Normal",
  32491. height: math.unit(13, "meters"),
  32492. default: true
  32493. },
  32494. ]
  32495. ))
  32496. characterMakers.push(() => makeCharacter(
  32497. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32498. {
  32499. anthroFront: {
  32500. height: math.unit(9, "feet"),
  32501. weight: math.unit(600, "lb"),
  32502. name: "Anthro (Front)",
  32503. image: {
  32504. source: "./media/characters/glint/anthro-front.svg",
  32505. extra: 1097/1018,
  32506. bottom: 28/1125
  32507. }
  32508. },
  32509. anthroBack: {
  32510. height: math.unit(9, "feet"),
  32511. weight: math.unit(600, "lb"),
  32512. name: "Anthro (Back)",
  32513. image: {
  32514. source: "./media/characters/glint/anthro-back.svg",
  32515. extra: 1154/997,
  32516. bottom: 36/1190
  32517. }
  32518. },
  32519. feral: {
  32520. height: math.unit(11, "feet"),
  32521. weight: math.unit(50000, "lb"),
  32522. name: "Feral",
  32523. image: {
  32524. source: "./media/characters/glint/feral.svg",
  32525. extra: 3035/1585,
  32526. bottom: 1169/4204
  32527. }
  32528. },
  32529. dickAnthro: {
  32530. height: math.unit(0.7, "meters"),
  32531. name: "Dick (Anthro)",
  32532. image: {
  32533. source: "./media/characters/glint/dick-anthro.svg"
  32534. }
  32535. },
  32536. dickFeral: {
  32537. height: math.unit(2.65, "meters"),
  32538. name: "Dick (Feral)",
  32539. image: {
  32540. source: "./media/characters/glint/dick-feral.svg"
  32541. }
  32542. },
  32543. slitHidden: {
  32544. height: math.unit(5.85, "meters"),
  32545. name: "Slit (Hidden)",
  32546. image: {
  32547. source: "./media/characters/glint/slit-hidden.svg"
  32548. }
  32549. },
  32550. slitErect: {
  32551. height: math.unit(5.85, "meters"),
  32552. name: "Slit (Erect)",
  32553. image: {
  32554. source: "./media/characters/glint/slit-erect.svg"
  32555. }
  32556. },
  32557. mawAnthro: {
  32558. height: math.unit(0.63, "meters"),
  32559. name: "Maw (Anthro)",
  32560. image: {
  32561. source: "./media/characters/glint/maw.svg"
  32562. }
  32563. },
  32564. mawFeral: {
  32565. height: math.unit(2.89, "meters"),
  32566. name: "Maw (Feral)",
  32567. image: {
  32568. source: "./media/characters/glint/maw.svg"
  32569. }
  32570. },
  32571. },
  32572. [
  32573. {
  32574. name: "Normal",
  32575. height: math.unit(9, "feet"),
  32576. default: true
  32577. },
  32578. ]
  32579. ))
  32580. characterMakers.push(() => makeCharacter(
  32581. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32582. {
  32583. side: {
  32584. height: math.unit(15, "feet"),
  32585. weight: math.unit(5000, "kg"),
  32586. name: "Side",
  32587. image: {
  32588. source: "./media/characters/kairne/side.svg",
  32589. extra: 979/811,
  32590. bottom: 13/992
  32591. }
  32592. },
  32593. front: {
  32594. height: math.unit(15, "feet"),
  32595. weight: math.unit(5000, "kg"),
  32596. name: "Front",
  32597. image: {
  32598. source: "./media/characters/kairne/front.svg",
  32599. extra: 908/814,
  32600. bottom: 26/934
  32601. }
  32602. },
  32603. sideNsfw: {
  32604. height: math.unit(15, "feet"),
  32605. weight: math.unit(5000, "kg"),
  32606. name: "Side (NSFW)",
  32607. image: {
  32608. source: "./media/characters/kairne/side-nsfw.svg",
  32609. extra: 979/811,
  32610. bottom: 13/992
  32611. }
  32612. },
  32613. frontNsfw: {
  32614. height: math.unit(15, "feet"),
  32615. weight: math.unit(5000, "kg"),
  32616. name: "Front (NSFW)",
  32617. image: {
  32618. source: "./media/characters/kairne/front-nsfw.svg",
  32619. extra: 908/814,
  32620. bottom: 26/934
  32621. }
  32622. },
  32623. dickCaged: {
  32624. height: math.unit(0.65, "meters"),
  32625. name: "Dick-caged",
  32626. image: {
  32627. source: "./media/characters/kairne/dick-caged.svg"
  32628. }
  32629. },
  32630. dick: {
  32631. height: math.unit(0.79, "meters"),
  32632. name: "Dick",
  32633. image: {
  32634. source: "./media/characters/kairne/dick.svg"
  32635. }
  32636. },
  32637. genitals: {
  32638. height: math.unit(1.29, "meters"),
  32639. name: "Genitals",
  32640. image: {
  32641. source: "./media/characters/kairne/genitals.svg"
  32642. }
  32643. },
  32644. maw: {
  32645. height: math.unit(1.73, "meters"),
  32646. name: "Maw",
  32647. image: {
  32648. source: "./media/characters/kairne/maw.svg"
  32649. }
  32650. },
  32651. },
  32652. [
  32653. {
  32654. name: "Normal",
  32655. height: math.unit(15, "feet"),
  32656. default: true
  32657. },
  32658. ]
  32659. ))
  32660. characterMakers.push(() => makeCharacter(
  32661. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32662. {
  32663. front: {
  32664. height: math.unit(5 + 8/12, "feet"),
  32665. weight: math.unit(139, "lb"),
  32666. name: "Front",
  32667. image: {
  32668. source: "./media/characters/biscuit-jackal/front.svg",
  32669. extra: 2106/1961,
  32670. bottom: 58/2164
  32671. }
  32672. },
  32673. back: {
  32674. height: math.unit(5 + 8/12, "feet"),
  32675. weight: math.unit(139, "lb"),
  32676. name: "Back",
  32677. image: {
  32678. source: "./media/characters/biscuit-jackal/back.svg",
  32679. extra: 2132/1976,
  32680. bottom: 57/2189
  32681. }
  32682. },
  32683. werejackal: {
  32684. height: math.unit(6 + 3/12, "feet"),
  32685. weight: math.unit(188, "lb"),
  32686. name: "Werejackal",
  32687. image: {
  32688. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32689. extra: 2373/2178,
  32690. bottom: 53/2426
  32691. }
  32692. },
  32693. },
  32694. [
  32695. {
  32696. name: "Normal",
  32697. height: math.unit(5 + 8/12, "feet"),
  32698. default: true
  32699. },
  32700. ]
  32701. ))
  32702. characterMakers.push(() => makeCharacter(
  32703. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32704. {
  32705. front: {
  32706. height: math.unit(140, "cm"),
  32707. weight: math.unit(45, "kg"),
  32708. name: "Front",
  32709. image: {
  32710. source: "./media/characters/tayra-white/front.svg",
  32711. extra: 2229/2192,
  32712. bottom: 75/2304
  32713. }
  32714. },
  32715. },
  32716. [
  32717. {
  32718. name: "Normal",
  32719. height: math.unit(140, "cm"),
  32720. default: true
  32721. },
  32722. ]
  32723. ))
  32724. characterMakers.push(() => makeCharacter(
  32725. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32726. {
  32727. front: {
  32728. height: math.unit(4 + 5/12, "feet"),
  32729. name: "Front",
  32730. image: {
  32731. source: "./media/characters/scoop/front.svg",
  32732. extra: 1257/1136,
  32733. bottom: 69/1326
  32734. }
  32735. },
  32736. back: {
  32737. height: math.unit(4 + 5/12, "feet"),
  32738. name: "Back",
  32739. image: {
  32740. source: "./media/characters/scoop/back.svg",
  32741. extra: 1321/1152,
  32742. bottom: 32/1353
  32743. }
  32744. },
  32745. maw: {
  32746. height: math.unit(0.68, "feet"),
  32747. name: "Maw",
  32748. image: {
  32749. source: "./media/characters/scoop/maw.svg"
  32750. }
  32751. },
  32752. },
  32753. [
  32754. {
  32755. name: "Really Small",
  32756. height: math.unit(1, "mm")
  32757. },
  32758. {
  32759. name: "Micro",
  32760. height: math.unit(1, "inch")
  32761. },
  32762. {
  32763. name: "Normal",
  32764. height: math.unit(4 + 5/12, "feet"),
  32765. default: true
  32766. },
  32767. {
  32768. name: "Macro",
  32769. height: math.unit(200, "feet")
  32770. },
  32771. {
  32772. name: "Megamacro",
  32773. height: math.unit(3240, "feet")
  32774. },
  32775. {
  32776. name: "Teramacro",
  32777. height: math.unit(2500, "miles")
  32778. },
  32779. ]
  32780. ))
  32781. characterMakers.push(() => makeCharacter(
  32782. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32783. {
  32784. front: {
  32785. height: math.unit(15 + 7/12, "feet"),
  32786. name: "Front",
  32787. image: {
  32788. source: "./media/characters/saphinara/front.svg",
  32789. extra: 604/546,
  32790. bottom: 19/623
  32791. }
  32792. },
  32793. side: {
  32794. height: math.unit(15 + 7/12, "feet"),
  32795. name: "Side",
  32796. image: {
  32797. source: "./media/characters/saphinara/side.svg",
  32798. extra: 605/547,
  32799. bottom: 6/611
  32800. }
  32801. },
  32802. back: {
  32803. height: math.unit(15 + 7/12, "feet"),
  32804. name: "Back",
  32805. image: {
  32806. source: "./media/characters/saphinara/back.svg",
  32807. extra: 591/531,
  32808. bottom: 13/604
  32809. }
  32810. },
  32811. frontTail: {
  32812. height: math.unit(15 + 7/12, "feet"),
  32813. name: "Front (Full Tail)",
  32814. image: {
  32815. source: "./media/characters/saphinara/front-tail.svg",
  32816. extra: 748/547,
  32817. bottom: 66/814
  32818. }
  32819. },
  32820. },
  32821. [
  32822. {
  32823. name: "Normal",
  32824. height: math.unit(15 + 7/12, "feet"),
  32825. default: true
  32826. },
  32827. {
  32828. name: "Angry",
  32829. height: math.unit(30 + 6/12, "feet")
  32830. },
  32831. {
  32832. name: "Enraged",
  32833. height: math.unit(102 + 1/12, "feet")
  32834. },
  32835. ]
  32836. ))
  32837. characterMakers.push(() => makeCharacter(
  32838. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32839. {
  32840. front: {
  32841. height: math.unit(6 + 8/12, "feet"),
  32842. weight: math.unit(300, "lb"),
  32843. name: "Front",
  32844. image: {
  32845. source: "./media/characters/jrain/front.svg",
  32846. extra: 3039/2865,
  32847. bottom: 399/3438
  32848. }
  32849. },
  32850. back: {
  32851. height: math.unit(6 + 8/12, "feet"),
  32852. weight: math.unit(300, "lb"),
  32853. name: "Back",
  32854. image: {
  32855. source: "./media/characters/jrain/back.svg",
  32856. extra: 3089/2938,
  32857. bottom: 172/3261
  32858. }
  32859. },
  32860. head: {
  32861. height: math.unit(2.14, "feet"),
  32862. name: "Head",
  32863. image: {
  32864. source: "./media/characters/jrain/head.svg"
  32865. }
  32866. },
  32867. maw: {
  32868. height: math.unit(1.77, "feet"),
  32869. name: "Maw",
  32870. image: {
  32871. source: "./media/characters/jrain/maw.svg"
  32872. }
  32873. },
  32874. leftHand: {
  32875. height: math.unit(1.1, "feet"),
  32876. name: "Left Hand",
  32877. image: {
  32878. source: "./media/characters/jrain/left-hand.svg"
  32879. }
  32880. },
  32881. rightHand: {
  32882. height: math.unit(1.1, "feet"),
  32883. name: "Right Hand",
  32884. image: {
  32885. source: "./media/characters/jrain/right-hand.svg"
  32886. }
  32887. },
  32888. eye: {
  32889. height: math.unit(0.35, "feet"),
  32890. name: "Eye",
  32891. image: {
  32892. source: "./media/characters/jrain/eye.svg"
  32893. }
  32894. },
  32895. },
  32896. [
  32897. {
  32898. name: "Normal",
  32899. height: math.unit(6 + 8/12, "feet"),
  32900. default: true
  32901. },
  32902. {
  32903. name: "Casually Large",
  32904. height: math.unit(25, "feet")
  32905. },
  32906. {
  32907. name: "Giant",
  32908. height: math.unit(100, "feet")
  32909. },
  32910. {
  32911. name: "Kaiju",
  32912. height: math.unit(300, "feet")
  32913. },
  32914. ]
  32915. ))
  32916. characterMakers.push(() => makeCharacter(
  32917. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32918. {
  32919. dragon: {
  32920. height: math.unit(5, "meters"),
  32921. name: "Dragon",
  32922. image: {
  32923. source: "./media/characters/sabrina/dragon.svg",
  32924. extra: 3670 / 2365,
  32925. bottom: 333 / 4003
  32926. }
  32927. },
  32928. gryphon: {
  32929. height: math.unit(3, "meters"),
  32930. name: "Gryphon",
  32931. image: {
  32932. source: "./media/characters/sabrina/gryphon.svg",
  32933. extra: 1576 / 945,
  32934. bottom: 71 / 1647
  32935. }
  32936. },
  32937. snake: {
  32938. height: math.unit(12, "meters"),
  32939. name: "Snake",
  32940. image: {
  32941. source: "./media/characters/sabrina/snake.svg",
  32942. extra: 1758 / 1320,
  32943. bottom: 186 / 1944
  32944. }
  32945. },
  32946. collar: {
  32947. height: math.unit(1.86, "meters"),
  32948. name: "Collar",
  32949. image: {
  32950. source: "./media/characters/sabrina/collar.svg"
  32951. }
  32952. },
  32953. eye: {
  32954. height: math.unit(0.53, "meters"),
  32955. name: "Eye",
  32956. image: {
  32957. source: "./media/characters/sabrina/eye.svg"
  32958. }
  32959. },
  32960. foot: {
  32961. height: math.unit(1.86, "meters"),
  32962. name: "Foot",
  32963. image: {
  32964. source: "./media/characters/sabrina/foot.svg"
  32965. }
  32966. },
  32967. hand: {
  32968. height: math.unit(1.32, "meters"),
  32969. name: "Hand",
  32970. image: {
  32971. source: "./media/characters/sabrina/hand.svg"
  32972. }
  32973. },
  32974. head: {
  32975. height: math.unit(2.44, "meters"),
  32976. name: "Head",
  32977. image: {
  32978. source: "./media/characters/sabrina/head.svg"
  32979. }
  32980. },
  32981. headAngry: {
  32982. height: math.unit(2.44, "meters"),
  32983. name: "Head (Angry))",
  32984. image: {
  32985. source: "./media/characters/sabrina/head-angry.svg"
  32986. }
  32987. },
  32988. maw: {
  32989. height: math.unit(1.65, "meters"),
  32990. name: "Maw",
  32991. image: {
  32992. source: "./media/characters/sabrina/maw.svg"
  32993. }
  32994. },
  32995. spikes: {
  32996. height: math.unit(1.69, "meters"),
  32997. name: "Spikes",
  32998. image: {
  32999. source: "./media/characters/sabrina/spikes.svg"
  33000. }
  33001. },
  33002. stomach: {
  33003. height: math.unit(1.15, "meters"),
  33004. name: "Stomach",
  33005. image: {
  33006. source: "./media/characters/sabrina/stomach.svg"
  33007. }
  33008. },
  33009. tongue: {
  33010. height: math.unit(1.27, "meters"),
  33011. name: "Tongue",
  33012. image: {
  33013. source: "./media/characters/sabrina/tongue.svg"
  33014. }
  33015. },
  33016. wingDorsal: {
  33017. height: math.unit(4.85, "meters"),
  33018. name: "Wing (Dorsal)",
  33019. image: {
  33020. source: "./media/characters/sabrina/wing-dorsal.svg"
  33021. }
  33022. },
  33023. wingVentral: {
  33024. height: math.unit(4.85, "meters"),
  33025. name: "Wing (Ventral)",
  33026. image: {
  33027. source: "./media/characters/sabrina/wing-ventral.svg"
  33028. }
  33029. },
  33030. },
  33031. [
  33032. {
  33033. name: "Normal",
  33034. height: math.unit(5, "meters"),
  33035. default: true
  33036. },
  33037. ]
  33038. ))
  33039. characterMakers.push(() => makeCharacter(
  33040. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33041. {
  33042. frontMaid: {
  33043. height: math.unit(5 + 5/12, "feet"),
  33044. weight: math.unit(130, "lb"),
  33045. name: "Front (Maid)",
  33046. image: {
  33047. source: "./media/characters/midnight-tales/front-maid.svg",
  33048. extra: 489/454,
  33049. bottom: 61/550
  33050. }
  33051. },
  33052. frontFormal: {
  33053. height: math.unit(5 + 5/12, "feet"),
  33054. weight: math.unit(130, "lb"),
  33055. name: "Front (Formal)",
  33056. image: {
  33057. source: "./media/characters/midnight-tales/front-formal.svg",
  33058. extra: 489/454,
  33059. bottom: 61/550
  33060. }
  33061. },
  33062. back: {
  33063. height: math.unit(5 + 5/12, "feet"),
  33064. weight: math.unit(130, "lb"),
  33065. name: "Back",
  33066. image: {
  33067. source: "./media/characters/midnight-tales/back.svg",
  33068. extra: 498/456,
  33069. bottom: 33/531
  33070. }
  33071. },
  33072. frontBeast: {
  33073. height: math.unit(40, "feet"),
  33074. weight: math.unit(64000, "lb"),
  33075. name: "Front (Beast)",
  33076. image: {
  33077. source: "./media/characters/midnight-tales/front-beast.svg",
  33078. extra: 927/860,
  33079. bottom: 53/980
  33080. }
  33081. },
  33082. backBeast: {
  33083. height: math.unit(40, "feet"),
  33084. weight: math.unit(64000, "lb"),
  33085. name: "Back (Beast)",
  33086. image: {
  33087. source: "./media/characters/midnight-tales/back-beast.svg",
  33088. extra: 929/855,
  33089. bottom: 16/945
  33090. }
  33091. },
  33092. footBeast: {
  33093. height: math.unit(6.7, "feet"),
  33094. name: "Foot (Beast)",
  33095. image: {
  33096. source: "./media/characters/midnight-tales/foot-beast.svg"
  33097. }
  33098. },
  33099. headBeast: {
  33100. height: math.unit(8, "feet"),
  33101. name: "Head (Beast)",
  33102. image: {
  33103. source: "./media/characters/midnight-tales/head-beast.svg"
  33104. }
  33105. },
  33106. },
  33107. [
  33108. {
  33109. name: "Normal",
  33110. height: math.unit(5 + 5 / 12, "feet"),
  33111. default: true
  33112. },
  33113. {
  33114. name: "Macro",
  33115. height: math.unit(25, "feet")
  33116. },
  33117. ]
  33118. ))
  33119. characterMakers.push(() => makeCharacter(
  33120. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33121. {
  33122. front: {
  33123. height: math.unit(5 + 10/12, "feet"),
  33124. name: "Front",
  33125. image: {
  33126. source: "./media/characters/argon/front.svg",
  33127. extra: 2009/1935,
  33128. bottom: 118/2127
  33129. }
  33130. },
  33131. back: {
  33132. height: math.unit(5 + 10/12, "feet"),
  33133. name: "Back",
  33134. image: {
  33135. source: "./media/characters/argon/back.svg",
  33136. extra: 2047/1992,
  33137. bottom: 20/2067
  33138. }
  33139. },
  33140. frontDressed: {
  33141. height: math.unit(5 + 10/12, "feet"),
  33142. name: "Front (Dressed)",
  33143. image: {
  33144. source: "./media/characters/argon/front-dressed.svg",
  33145. extra: 2009/1935,
  33146. bottom: 118/2127
  33147. }
  33148. },
  33149. },
  33150. [
  33151. {
  33152. name: "Normal",
  33153. height: math.unit(5 + 10/12, "feet"),
  33154. default: true
  33155. },
  33156. ]
  33157. ))
  33158. characterMakers.push(() => makeCharacter(
  33159. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33160. {
  33161. front: {
  33162. height: math.unit(8 + 6/12, "feet"),
  33163. weight: math.unit(1150, "lb"),
  33164. name: "Front",
  33165. image: {
  33166. source: "./media/characters/kichi/front.svg",
  33167. extra: 1267/1164,
  33168. bottom: 61/1328
  33169. }
  33170. },
  33171. back: {
  33172. height: math.unit(8 + 6/12, "feet"),
  33173. weight: math.unit(1150, "lb"),
  33174. name: "Back",
  33175. image: {
  33176. source: "./media/characters/kichi/back.svg",
  33177. extra: 1273/1166,
  33178. bottom: 33/1306
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Normal",
  33185. height: math.unit(8 + 6/12, "feet"),
  33186. default: true
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(6, "feet"),
  33195. weight: math.unit(210, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/manetel-greyscale/front.svg",
  33199. extra: 350/312,
  33200. bottom: 8/358
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "Micro",
  33207. height: math.unit(2, "inches")
  33208. },
  33209. {
  33210. name: "Normal",
  33211. height: math.unit(6, "feet"),
  33212. default: true
  33213. },
  33214. {
  33215. name: "Minimacro",
  33216. height: math.unit(17, "feet")
  33217. },
  33218. {
  33219. name: "Macro",
  33220. height: math.unit(117, "feet")
  33221. },
  33222. ]
  33223. ))
  33224. characterMakers.push(() => makeCharacter(
  33225. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33226. {
  33227. side: {
  33228. height: math.unit(5 + 1/12, "feet"),
  33229. weight: math.unit(418, "lb"),
  33230. name: "Side",
  33231. image: {
  33232. source: "./media/characters/softpurr/side.svg",
  33233. extra: 1993/1945,
  33234. bottom: 134/2127
  33235. }
  33236. },
  33237. front: {
  33238. height: math.unit(5 + 1/12, "feet"),
  33239. weight: math.unit(418, "lb"),
  33240. name: "Front",
  33241. image: {
  33242. source: "./media/characters/softpurr/front.svg",
  33243. extra: 1950/1856,
  33244. bottom: 174/2124
  33245. }
  33246. },
  33247. paw: {
  33248. height: math.unit(1, "feet"),
  33249. name: "Paw",
  33250. image: {
  33251. source: "./media/characters/softpurr/paw.svg"
  33252. }
  33253. },
  33254. },
  33255. [
  33256. {
  33257. name: "Normal",
  33258. height: math.unit(5 + 1/12, "feet"),
  33259. default: true
  33260. },
  33261. ]
  33262. ))
  33263. characterMakers.push(() => makeCharacter(
  33264. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33265. {
  33266. front: {
  33267. height: math.unit(260, "meters"),
  33268. name: "Front",
  33269. image: {
  33270. source: "./media/characters/anahita/front.svg",
  33271. extra: 665/635,
  33272. bottom: 89/754
  33273. }
  33274. },
  33275. },
  33276. [
  33277. {
  33278. name: "Macro",
  33279. height: math.unit(260, "meters"),
  33280. default: true
  33281. },
  33282. ]
  33283. ))
  33284. characterMakers.push(() => makeCharacter(
  33285. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33286. {
  33287. front: {
  33288. height: math.unit(4 + 10/12, "feet"),
  33289. weight: math.unit(160, "lb"),
  33290. name: "Front",
  33291. image: {
  33292. source: "./media/characters/chip-mouse/front.svg",
  33293. extra: 3528/3408,
  33294. bottom: 0/3528
  33295. }
  33296. },
  33297. frontNsfw: {
  33298. height: math.unit(4 + 10/12, "feet"),
  33299. weight: math.unit(160, "lb"),
  33300. name: "Front (NSFW)",
  33301. image: {
  33302. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33303. extra: 3528/3408,
  33304. bottom: 0/3528
  33305. }
  33306. },
  33307. },
  33308. [
  33309. {
  33310. name: "Normal",
  33311. height: math.unit(4 + 10/12, "feet"),
  33312. default: true
  33313. },
  33314. ]
  33315. ))
  33316. characterMakers.push(() => makeCharacter(
  33317. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33318. {
  33319. side: {
  33320. height: math.unit(10, "feet"),
  33321. weight: math.unit(14000, "lb"),
  33322. name: "Side",
  33323. image: {
  33324. source: "./media/characters/kremm/side.svg",
  33325. extra: 1390/1053,
  33326. bottom: 90/1480
  33327. }
  33328. },
  33329. gut: {
  33330. height: math.unit(5.8, "feet"),
  33331. name: "Gut",
  33332. image: {
  33333. source: "./media/characters/kremm/gut.svg"
  33334. }
  33335. },
  33336. ass: {
  33337. height: math.unit(6.1, "feet"),
  33338. name: "Ass",
  33339. image: {
  33340. source: "./media/characters/kremm/ass.svg"
  33341. }
  33342. },
  33343. jaws: {
  33344. height: math.unit(2.2, "feet"),
  33345. name: "Jaws",
  33346. image: {
  33347. source: "./media/characters/kremm/jaws.svg"
  33348. }
  33349. },
  33350. dick: {
  33351. height: math.unit(4.26, "feet"),
  33352. name: "Dick",
  33353. image: {
  33354. source: "./media/characters/kremm/dick.svg"
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Normal",
  33361. height: math.unit(10, "feet"),
  33362. default: true
  33363. },
  33364. ]
  33365. ))
  33366. characterMakers.push(() => makeCharacter(
  33367. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33368. {
  33369. front: {
  33370. height: math.unit(30, "stories"),
  33371. name: "Front",
  33372. image: {
  33373. source: "./media/characters/kai/front.svg",
  33374. extra: 1892/1718,
  33375. bottom: 162/2054
  33376. }
  33377. },
  33378. },
  33379. [
  33380. {
  33381. name: "Macro",
  33382. height: math.unit(30, "stories"),
  33383. default: true
  33384. },
  33385. ]
  33386. ))
  33387. characterMakers.push(() => makeCharacter(
  33388. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33389. {
  33390. front: {
  33391. height: math.unit(6 + 4/12, "feet"),
  33392. weight: math.unit(145, "lb"),
  33393. name: "Front",
  33394. image: {
  33395. source: "./media/characters/sykes/front.svg",
  33396. extra: 1321 / 1187,
  33397. bottom: 66 / 1387
  33398. }
  33399. },
  33400. back: {
  33401. height: math.unit(6 + 4/12, "feet"),
  33402. weight: math.unit(145, "lb"),
  33403. name: "Back",
  33404. image: {
  33405. source: "./media/characters/sykes/back.svg",
  33406. extra: 1326/1181,
  33407. bottom: 31/1357
  33408. }
  33409. },
  33410. handBack: {
  33411. height: math.unit(0.9, "feet"),
  33412. name: "Hand (Back)",
  33413. image: {
  33414. source: "./media/characters/sykes/hand-back.svg"
  33415. }
  33416. },
  33417. handFront: {
  33418. height: math.unit(0.839, "feet"),
  33419. name: "Hand (Front)",
  33420. image: {
  33421. source: "./media/characters/sykes/hand-front.svg"
  33422. }
  33423. },
  33424. leftFoot: {
  33425. height: math.unit(1.2, "feet"),
  33426. name: "Foot (Left)",
  33427. image: {
  33428. source: "./media/characters/sykes/foot-left.svg"
  33429. }
  33430. },
  33431. rightFoot: {
  33432. height: math.unit(1.2, "feet"),
  33433. name: "Foot (Right)",
  33434. image: {
  33435. source: "./media/characters/sykes/foot-right.svg"
  33436. }
  33437. },
  33438. maw: {
  33439. height: math.unit(1.93, "feet"),
  33440. name: "Maw",
  33441. image: {
  33442. source: "./media/characters/sykes/maw.svg"
  33443. }
  33444. },
  33445. teeth: {
  33446. height: math.unit(0.51, "feet"),
  33447. name: "Teeth",
  33448. image: {
  33449. source: "./media/characters/sykes/teeth.svg"
  33450. }
  33451. },
  33452. tongue: {
  33453. height: math.unit(2.13, "feet"),
  33454. name: "Tongue",
  33455. image: {
  33456. source: "./media/characters/sykes/tongue.svg"
  33457. }
  33458. },
  33459. uvula: {
  33460. height: math.unit(0.16, "feet"),
  33461. name: "Uvula",
  33462. image: {
  33463. source: "./media/characters/sykes/uvula.svg"
  33464. }
  33465. },
  33466. collar: {
  33467. height: math.unit(0.287, "feet"),
  33468. name: "Collar",
  33469. image: {
  33470. source: "./media/characters/sykes/collar.svg"
  33471. }
  33472. },
  33473. },
  33474. [
  33475. {
  33476. name: "Shrunken",
  33477. height: math.unit(5, "inches")
  33478. },
  33479. {
  33480. name: "Normal",
  33481. height: math.unit(6 + 4 / 12, "feet"),
  33482. default: true
  33483. },
  33484. {
  33485. name: "Big",
  33486. height: math.unit(15, "feet")
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(5 + 8/12, "feet"),
  33495. weight: math.unit(190, "lb"),
  33496. name: "Front",
  33497. image: {
  33498. source: "./media/characters/oven-otter/front.svg",
  33499. extra: 1809/1740,
  33500. bottom: 181/1990
  33501. }
  33502. },
  33503. back: {
  33504. height: math.unit(5 + 8/12, "feet"),
  33505. weight: math.unit(190, "lb"),
  33506. name: "Back",
  33507. image: {
  33508. source: "./media/characters/oven-otter/back.svg",
  33509. extra: 1709/1635,
  33510. bottom: 118/1827
  33511. }
  33512. },
  33513. hand: {
  33514. height: math.unit(1.07, "feet"),
  33515. name: "Hand",
  33516. image: {
  33517. source: "./media/characters/oven-otter/hand.svg"
  33518. }
  33519. },
  33520. beans: {
  33521. height: math.unit(1.74, "feet"),
  33522. name: "Beans",
  33523. image: {
  33524. source: "./media/characters/oven-otter/beans.svg"
  33525. }
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Micro",
  33531. height: math.unit(0.5, "inches")
  33532. },
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(5 + 8/12, "feet"),
  33536. default: true
  33537. },
  33538. {
  33539. name: "Macro",
  33540. height: math.unit(250, "feet")
  33541. },
  33542. {
  33543. name: "Really High",
  33544. height: math.unit(420, "feet")
  33545. },
  33546. ]
  33547. ))
  33548. characterMakers.push(() => makeCharacter(
  33549. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33550. {
  33551. front: {
  33552. height: math.unit(5, "meters"),
  33553. weight: math.unit(292000000000000, "kg"),
  33554. name: "Front",
  33555. image: {
  33556. source: "./media/characters/devourer/front.svg",
  33557. extra: 1800/1733,
  33558. bottom: 211/2011
  33559. }
  33560. },
  33561. maw: {
  33562. height: math.unit(1.1, "meter"),
  33563. name: "Maw",
  33564. image: {
  33565. source: "./media/characters/devourer/maw.svg"
  33566. }
  33567. },
  33568. },
  33569. [
  33570. {
  33571. name: "Small",
  33572. height: math.unit(3, "meters")
  33573. },
  33574. {
  33575. name: "Large",
  33576. height: math.unit(5, "meters"),
  33577. default: true
  33578. },
  33579. ]
  33580. ))
  33581. characterMakers.push(() => makeCharacter(
  33582. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33583. {
  33584. front: {
  33585. height: math.unit(6, "feet"),
  33586. weight: math.unit(400, "lb"),
  33587. name: "Front",
  33588. image: {
  33589. source: "./media/characters/ellarby/front.svg",
  33590. extra: 1909/1763,
  33591. bottom: 80/1989
  33592. }
  33593. },
  33594. back: {
  33595. height: math.unit(6, "feet"),
  33596. weight: math.unit(400, "lb"),
  33597. name: "Back",
  33598. image: {
  33599. source: "./media/characters/ellarby/back.svg",
  33600. extra: 1914/1784,
  33601. bottom: 172/2086
  33602. }
  33603. },
  33604. },
  33605. [
  33606. {
  33607. name: "Mischief",
  33608. height: math.unit(18, "inches")
  33609. },
  33610. {
  33611. name: "Trouble",
  33612. height: math.unit(12, "feet")
  33613. },
  33614. {
  33615. name: "Havoc",
  33616. height: math.unit(200, "feet"),
  33617. default: true
  33618. },
  33619. {
  33620. name: "Pandemonium",
  33621. height: math.unit(1, "mile")
  33622. },
  33623. {
  33624. name: "Catastrophe",
  33625. height: math.unit(100, "miles")
  33626. },
  33627. ]
  33628. ))
  33629. characterMakers.push(() => makeCharacter(
  33630. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33631. {
  33632. front: {
  33633. height: math.unit(4.7, "meters"),
  33634. weight: math.unit(6500, "kg"),
  33635. name: "Front",
  33636. image: {
  33637. source: "./media/characters/vex/front.svg",
  33638. extra: 1288/1140,
  33639. bottom: 100/1388
  33640. }
  33641. },
  33642. },
  33643. [
  33644. {
  33645. name: "Normal",
  33646. height: math.unit(4.7, "meters"),
  33647. default: true
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33653. {
  33654. normal: {
  33655. height: math.unit(6, "feet"),
  33656. weight: math.unit(350, "lb"),
  33657. name: "Normal",
  33658. image: {
  33659. source: "./media/characters/teshy/normal.svg",
  33660. extra: 1795/1735,
  33661. bottom: 16/1811
  33662. }
  33663. },
  33664. monsterFront: {
  33665. height: math.unit(12, "feet"),
  33666. weight: math.unit(4700, "lb"),
  33667. name: "Monster (Front)",
  33668. image: {
  33669. source: "./media/characters/teshy/monster-front.svg",
  33670. extra: 2042/2034,
  33671. bottom: 128/2170
  33672. }
  33673. },
  33674. monsterSide: {
  33675. height: math.unit(12, "feet"),
  33676. weight: math.unit(4700, "lb"),
  33677. name: "Monster (Side)",
  33678. image: {
  33679. source: "./media/characters/teshy/monster-side.svg",
  33680. extra: 2067/2056,
  33681. bottom: 70/2137
  33682. }
  33683. },
  33684. monsterBack: {
  33685. height: math.unit(12, "feet"),
  33686. weight: math.unit(4700, "lb"),
  33687. name: "Monster (Back)",
  33688. image: {
  33689. source: "./media/characters/teshy/monster-back.svg",
  33690. extra: 1921/1914,
  33691. bottom: 171/2092
  33692. }
  33693. },
  33694. },
  33695. [
  33696. {
  33697. name: "Normal",
  33698. height: math.unit(6, "feet"),
  33699. default: true
  33700. },
  33701. ]
  33702. ))
  33703. characterMakers.push(() => makeCharacter(
  33704. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33705. {
  33706. front: {
  33707. height: math.unit(6, "feet"),
  33708. name: "Front",
  33709. image: {
  33710. source: "./media/characters/ramey/front.svg",
  33711. extra: 790/787,
  33712. bottom: 27/817
  33713. }
  33714. },
  33715. },
  33716. [
  33717. {
  33718. name: "Normal",
  33719. height: math.unit(6, "feet"),
  33720. default: true
  33721. },
  33722. ]
  33723. ))
  33724. characterMakers.push(() => makeCharacter(
  33725. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33726. {
  33727. front: {
  33728. height: math.unit(5 + 5/12, "feet"),
  33729. weight: math.unit(120, "lb"),
  33730. name: "Front",
  33731. image: {
  33732. source: "./media/characters/phirae/front.svg",
  33733. extra: 2491/2436,
  33734. bottom: 38/2529
  33735. }
  33736. },
  33737. },
  33738. [
  33739. {
  33740. name: "Normal",
  33741. height: math.unit(5 + 5/12, "feet"),
  33742. default: true
  33743. },
  33744. ]
  33745. ))
  33746. characterMakers.push(() => makeCharacter(
  33747. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33748. {
  33749. front: {
  33750. height: math.unit(6, "feet"),
  33751. weight: math.unit(150, "lb"),
  33752. name: "Front",
  33753. image: {
  33754. source: "./media/characters/stagglas/front.svg",
  33755. extra: 962/882,
  33756. bottom: 53/1015
  33757. }
  33758. },
  33759. },
  33760. [
  33761. {
  33762. name: "Normal",
  33763. height: math.unit(5 + 3/12, "feet"),
  33764. default: true
  33765. },
  33766. ]
  33767. ))
  33768. characterMakers.push(() => makeCharacter(
  33769. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33770. {
  33771. front: {
  33772. height: math.unit(5 + 4/12, "feet"),
  33773. weight: math.unit(145, "lb"),
  33774. name: "Front",
  33775. image: {
  33776. source: "./media/characters/starra/front.svg",
  33777. extra: 1790/1691,
  33778. bottom: 91/1881
  33779. }
  33780. },
  33781. },
  33782. [
  33783. {
  33784. name: "Normal",
  33785. height: math.unit(5 + 4/12, "feet"),
  33786. default: true
  33787. },
  33788. ]
  33789. ))
  33790. characterMakers.push(() => makeCharacter(
  33791. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33792. {
  33793. front: {
  33794. height: math.unit(2.2, "meters"),
  33795. name: "Front",
  33796. image: {
  33797. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33798. extra: 1194/1005,
  33799. bottom: 25/1219
  33800. }
  33801. },
  33802. },
  33803. [
  33804. {
  33805. name: "Normal",
  33806. height: math.unit(2.2, "meters"),
  33807. default: true
  33808. },
  33809. ]
  33810. ))
  33811. characterMakers.push(() => makeCharacter(
  33812. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33813. {
  33814. side: {
  33815. height: math.unit(8 + 2/12, "feet"),
  33816. weight: math.unit(1240, "lb"),
  33817. name: "Side",
  33818. image: {
  33819. source: "./media/characters/mika-valentine/side.svg",
  33820. extra: 2670/2501,
  33821. bottom: 250/2920
  33822. }
  33823. },
  33824. },
  33825. [
  33826. {
  33827. name: "Normal",
  33828. height: math.unit(8 + 2/12, "feet"),
  33829. default: true
  33830. },
  33831. ]
  33832. ))
  33833. characterMakers.push(() => makeCharacter(
  33834. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33835. {
  33836. front: {
  33837. height: math.unit(7 + 2/12, "feet"),
  33838. name: "Front",
  33839. image: {
  33840. source: "./media/characters/xoltol/front.svg",
  33841. extra: 2212/2124,
  33842. bottom: 84/2296
  33843. }
  33844. },
  33845. side: {
  33846. height: math.unit(7 + 2/12, "feet"),
  33847. name: "Side",
  33848. image: {
  33849. source: "./media/characters/xoltol/side.svg",
  33850. extra: 2273/2197,
  33851. bottom: 26/2299
  33852. }
  33853. },
  33854. hand: {
  33855. height: math.unit(2.5, "feet"),
  33856. name: "Hand",
  33857. image: {
  33858. source: "./media/characters/xoltol/hand.svg"
  33859. }
  33860. },
  33861. },
  33862. [
  33863. {
  33864. name: "Small-ish",
  33865. height: math.unit(5 + 11/12, "feet")
  33866. },
  33867. {
  33868. name: "Normal",
  33869. height: math.unit(7 + 2/12, "feet")
  33870. },
  33871. {
  33872. name: "\"Macro\"",
  33873. height: math.unit(14 + 9/12, "feet"),
  33874. default: true
  33875. },
  33876. {
  33877. name: "Alternate Height",
  33878. height: math.unit(20, "feet")
  33879. },
  33880. {
  33881. name: "Actually Macro",
  33882. height: math.unit(100, "feet")
  33883. },
  33884. ]
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33888. {
  33889. front: {
  33890. height: math.unit(5 + 2/12, "feet"),
  33891. name: "Front",
  33892. image: {
  33893. source: "./media/characters/kotetsu-redwood/front.svg",
  33894. extra: 1053/942,
  33895. bottom: 60/1113
  33896. }
  33897. },
  33898. },
  33899. [
  33900. {
  33901. name: "Normal",
  33902. height: math.unit(5 + 2/12, "feet"),
  33903. default: true
  33904. },
  33905. ]
  33906. ))
  33907. characterMakers.push(() => makeCharacter(
  33908. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33909. {
  33910. front: {
  33911. height: math.unit(2.4, "meters"),
  33912. weight: math.unit(125, "kg"),
  33913. name: "Front",
  33914. image: {
  33915. source: "./media/characters/lilith/front.svg",
  33916. extra: 1590/1513,
  33917. bottom: 203/1793
  33918. }
  33919. },
  33920. },
  33921. [
  33922. {
  33923. name: "Humanoid",
  33924. height: math.unit(2.4, "meters")
  33925. },
  33926. {
  33927. name: "Normal",
  33928. height: math.unit(6, "meters"),
  33929. default: true
  33930. },
  33931. {
  33932. name: "Largest",
  33933. height: math.unit(55, "meters")
  33934. },
  33935. ]
  33936. ))
  33937. characterMakers.push(() => makeCharacter(
  33938. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33939. {
  33940. front: {
  33941. height: math.unit(8 + 4/12, "feet"),
  33942. weight: math.unit(535, "lb"),
  33943. name: "Front",
  33944. image: {
  33945. source: "./media/characters/beh'kah-bolger/front.svg",
  33946. extra: 1660/1603,
  33947. bottom: 37/1697
  33948. }
  33949. },
  33950. },
  33951. [
  33952. {
  33953. name: "Normal",
  33954. height: math.unit(8 + 4/12, "feet"),
  33955. default: true
  33956. },
  33957. {
  33958. name: "Kaiju",
  33959. height: math.unit(250, "feet")
  33960. },
  33961. {
  33962. name: "Still Growing",
  33963. height: math.unit(10, "miles")
  33964. },
  33965. {
  33966. name: "Continental",
  33967. height: math.unit(5000, "miles")
  33968. },
  33969. {
  33970. name: "Final Form",
  33971. height: math.unit(2500000, "miles")
  33972. },
  33973. ]
  33974. ))
  33975. characterMakers.push(() => makeCharacter(
  33976. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33977. {
  33978. front: {
  33979. height: math.unit(7 + 2/12, "feet"),
  33980. weight: math.unit(230, "kg"),
  33981. name: "Front",
  33982. image: {
  33983. source: "./media/characters/tatyana-milewska/front.svg",
  33984. extra: 1199/1150,
  33985. bottom: 86/1285
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Normal",
  33992. height: math.unit(7 + 2/12, "feet"),
  33993. default: true
  33994. },
  33995. {
  33996. name: "Big",
  33997. height: math.unit(12, "feet")
  33998. },
  33999. {
  34000. name: "Minimacro",
  34001. height: math.unit(20, "feet")
  34002. },
  34003. {
  34004. name: "Macro",
  34005. height: math.unit(120, "feet")
  34006. },
  34007. ]
  34008. ))
  34009. characterMakers.push(() => makeCharacter(
  34010. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34011. {
  34012. front: {
  34013. height: math.unit(7 + 8/12, "feet"),
  34014. weight: math.unit(152, "kg"),
  34015. name: "Front",
  34016. image: {
  34017. source: "./media/characters/helen-arri/front.svg",
  34018. extra: 440/423,
  34019. bottom: 14/454
  34020. }
  34021. },
  34022. back: {
  34023. height: math.unit(7 + 8/12, "feet"),
  34024. weight: math.unit(152, "kg"),
  34025. name: "Back",
  34026. image: {
  34027. source: "./media/characters/helen-arri/back.svg",
  34028. extra: 443/426,
  34029. bottom: 8/451
  34030. }
  34031. },
  34032. },
  34033. [
  34034. {
  34035. name: "Normal",
  34036. height: math.unit(7 + 8/12, "feet"),
  34037. default: true
  34038. },
  34039. {
  34040. name: "Big",
  34041. height: math.unit(14, "feet")
  34042. },
  34043. {
  34044. name: "Minimacro",
  34045. height: math.unit(24, "feet")
  34046. },
  34047. {
  34048. name: "Macro",
  34049. height: math.unit(140, "feet")
  34050. },
  34051. ]
  34052. ))
  34053. characterMakers.push(() => makeCharacter(
  34054. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34055. {
  34056. front: {
  34057. height: math.unit(6, "meters"),
  34058. name: "Front",
  34059. image: {
  34060. source: "./media/characters/ehanu-rehu/front.svg",
  34061. extra: 1800/1800,
  34062. bottom: 59/1859
  34063. }
  34064. },
  34065. },
  34066. [
  34067. {
  34068. name: "Normal",
  34069. height: math.unit(6, "meters"),
  34070. default: true
  34071. },
  34072. ]
  34073. ))
  34074. characterMakers.push(() => makeCharacter(
  34075. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34076. {
  34077. front: {
  34078. height: math.unit(7 + 3/12, "feet"),
  34079. name: "Front",
  34080. image: {
  34081. source: "./media/characters/renholder/front.svg",
  34082. extra: 3096/2960,
  34083. bottom: 250/3346
  34084. }
  34085. },
  34086. },
  34087. [
  34088. {
  34089. name: "Normal Bat",
  34090. height: math.unit(7 + 3/12, "feet"),
  34091. default: true
  34092. },
  34093. {
  34094. name: "Slightly Tall Bat",
  34095. height: math.unit(100, "feet")
  34096. },
  34097. {
  34098. name: "Big Bat",
  34099. height: math.unit(1000, "feet")
  34100. },
  34101. {
  34102. name: "City-Sized Bat",
  34103. height: math.unit(200000, "feet")
  34104. },
  34105. {
  34106. name: "Bigger Bat",
  34107. height: math.unit(10000, "miles")
  34108. },
  34109. {
  34110. name: "Solar Sized Bat",
  34111. height: math.unit(100, "AU")
  34112. },
  34113. {
  34114. name: "Galactic Bat",
  34115. height: math.unit(200000, "lightyears")
  34116. },
  34117. {
  34118. name: "Universally Known Bat",
  34119. height: math.unit(1, "universe")
  34120. },
  34121. ]
  34122. ))
  34123. characterMakers.push(() => makeCharacter(
  34124. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34125. {
  34126. front: {
  34127. height: math.unit(6 + 11/12, "feet"),
  34128. weight: math.unit(250, "lb"),
  34129. name: "Front",
  34130. image: {
  34131. source: "./media/characters/cookiecat/front.svg",
  34132. extra: 893/827,
  34133. bottom: 14/907
  34134. }
  34135. },
  34136. },
  34137. [
  34138. {
  34139. name: "Micro",
  34140. height: math.unit(3, "inches")
  34141. },
  34142. {
  34143. name: "Normal",
  34144. height: math.unit(6 + 11/12, "feet"),
  34145. default: true
  34146. },
  34147. {
  34148. name: "Macro",
  34149. height: math.unit(100, "feet")
  34150. },
  34151. {
  34152. name: "Macro+",
  34153. height: math.unit(404, "feet")
  34154. },
  34155. {
  34156. name: "Megamacro",
  34157. height: math.unit(165, "miles")
  34158. },
  34159. {
  34160. name: "Planetary",
  34161. height: math.unit(4600, "miles")
  34162. },
  34163. ]
  34164. ))
  34165. characterMakers.push(() => makeCharacter(
  34166. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34167. {
  34168. front: {
  34169. height: math.unit(10 + 3/12, "feet"),
  34170. weight: math.unit(1500, "lb"),
  34171. name: "Front",
  34172. image: {
  34173. source: "./media/characters/tux-kusanagi/front.svg",
  34174. extra: 944/840,
  34175. bottom: 39/983
  34176. }
  34177. },
  34178. back: {
  34179. height: math.unit(10 + 3/12, "feet"),
  34180. weight: math.unit(1500, "lb"),
  34181. name: "Back",
  34182. image: {
  34183. source: "./media/characters/tux-kusanagi/back.svg",
  34184. extra: 941/842,
  34185. bottom: 28/969
  34186. }
  34187. },
  34188. rump: {
  34189. height: math.unit(5.25, "feet"),
  34190. name: "Rump",
  34191. image: {
  34192. source: "./media/characters/tux-kusanagi/rump.svg"
  34193. }
  34194. },
  34195. beak: {
  34196. height: math.unit(1.54, "feet"),
  34197. name: "Beak",
  34198. image: {
  34199. source: "./media/characters/tux-kusanagi/beak.svg"
  34200. }
  34201. },
  34202. },
  34203. [
  34204. {
  34205. name: "Normal",
  34206. height: math.unit(10 + 3/12, "feet"),
  34207. default: true
  34208. },
  34209. ]
  34210. ))
  34211. characterMakers.push(() => makeCharacter(
  34212. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34213. {
  34214. front: {
  34215. height: math.unit(58, "feet"),
  34216. weight: math.unit(200, "tons"),
  34217. name: "Front",
  34218. image: {
  34219. source: "./media/characters/uzarmazari/front.svg",
  34220. extra: 1575/1455,
  34221. bottom: 152/1727
  34222. }
  34223. },
  34224. back: {
  34225. height: math.unit(58, "feet"),
  34226. weight: math.unit(200, "tons"),
  34227. name: "Back",
  34228. image: {
  34229. source: "./media/characters/uzarmazari/back.svg",
  34230. extra: 1585/1510,
  34231. bottom: 157/1742
  34232. }
  34233. },
  34234. head: {
  34235. height: math.unit(26, "feet"),
  34236. name: "Head",
  34237. image: {
  34238. source: "./media/characters/uzarmazari/head.svg"
  34239. }
  34240. },
  34241. },
  34242. [
  34243. {
  34244. name: "Normal",
  34245. height: math.unit(58, "feet"),
  34246. default: true
  34247. },
  34248. ]
  34249. ))
  34250. characterMakers.push(() => makeCharacter(
  34251. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34252. {
  34253. side: {
  34254. height: math.unit(15, "feet"),
  34255. name: "Side",
  34256. image: {
  34257. source: "./media/characters/akitu/side.svg",
  34258. extra: 1421/1321,
  34259. bottom: 157/1578
  34260. }
  34261. },
  34262. front: {
  34263. height: math.unit(15, "feet"),
  34264. name: "Front",
  34265. image: {
  34266. source: "./media/characters/akitu/front.svg",
  34267. extra: 1435/1326,
  34268. bottom: 232/1667
  34269. }
  34270. },
  34271. },
  34272. [
  34273. {
  34274. name: "Normal",
  34275. height: math.unit(15, "feet"),
  34276. default: true
  34277. },
  34278. ]
  34279. ))
  34280. characterMakers.push(() => makeCharacter(
  34281. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34282. {
  34283. front: {
  34284. height: math.unit(10 + 8/12, "feet"),
  34285. name: "Front",
  34286. image: {
  34287. source: "./media/characters/azalie-croixland/front.svg",
  34288. extra: 1972/1856,
  34289. bottom: 31/2003
  34290. }
  34291. },
  34292. },
  34293. [
  34294. {
  34295. name: "Original Height",
  34296. height: math.unit(5 + 4/12, "feet")
  34297. },
  34298. {
  34299. name: "Normal Height",
  34300. height: math.unit(10 + 8/12, "feet"),
  34301. default: true
  34302. },
  34303. ]
  34304. ))
  34305. characterMakers.push(() => makeCharacter(
  34306. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34307. {
  34308. side: {
  34309. height: math.unit(7 + 1/12, "feet"),
  34310. weight: math.unit(245, "lb"),
  34311. name: "Side",
  34312. image: {
  34313. source: "./media/characters/kavus-kazian/side.svg",
  34314. extra: 349/342,
  34315. bottom: 15/364
  34316. }
  34317. },
  34318. },
  34319. [
  34320. {
  34321. name: "Normal",
  34322. height: math.unit(7 + 1/12, "feet"),
  34323. default: true
  34324. },
  34325. ]
  34326. ))
  34327. characterMakers.push(() => makeCharacter(
  34328. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34329. {
  34330. normal: {
  34331. height: math.unit(5 + 11/12, "feet"),
  34332. name: "Normal",
  34333. image: {
  34334. source: "./media/characters/moonlight-rose/normal.svg",
  34335. extra: 1979/1835,
  34336. bottom: 14/1993
  34337. }
  34338. },
  34339. demon: {
  34340. height: math.unit(5, "km"),
  34341. name: "Demon",
  34342. image: {
  34343. source: "./media/characters/moonlight-rose/demon.svg",
  34344. extra: 986/916,
  34345. bottom: 28/1014
  34346. }
  34347. },
  34348. },
  34349. [
  34350. {
  34351. name: "\"Natural\" height",
  34352. height: math.unit(5 + 11/12, "feet")
  34353. },
  34354. {
  34355. name: "Comfortable Size",
  34356. height: math.unit(40, "meters")
  34357. },
  34358. {
  34359. name: "Common Size",
  34360. height: math.unit(50, "km"),
  34361. default: true
  34362. },
  34363. {
  34364. name: "Demonic",
  34365. height: math.unit(1.24415e+21, "meters")
  34366. },
  34367. ]
  34368. ))
  34369. characterMakers.push(() => makeCharacter(
  34370. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34371. {
  34372. front: {
  34373. height: math.unit(16, "feet"),
  34374. weight: math.unit(610, "kg"),
  34375. name: "Front",
  34376. image: {
  34377. source: "./media/characters/huckle/front.svg",
  34378. extra: 1731/1625,
  34379. bottom: 33/1764
  34380. }
  34381. },
  34382. back: {
  34383. height: math.unit(16, "feet"),
  34384. weight: math.unit(610, "kg"),
  34385. name: "Back",
  34386. image: {
  34387. source: "./media/characters/huckle/back.svg",
  34388. extra: 1738/1651,
  34389. bottom: 37/1775
  34390. }
  34391. },
  34392. laughing: {
  34393. height: math.unit(3.75, "feet"),
  34394. name: "Laughing",
  34395. image: {
  34396. source: "./media/characters/huckle/laughing.svg"
  34397. }
  34398. },
  34399. angry: {
  34400. height: math.unit(4.15, "feet"),
  34401. name: "Angry",
  34402. image: {
  34403. source: "./media/characters/huckle/angry.svg"
  34404. }
  34405. },
  34406. },
  34407. [
  34408. {
  34409. name: "Normal",
  34410. height: math.unit(16, "feet"),
  34411. default: true
  34412. },
  34413. {
  34414. name: "Mini Macro",
  34415. height: math.unit(463, "feet")
  34416. },
  34417. {
  34418. name: "Macro",
  34419. height: math.unit(1680, "meters")
  34420. },
  34421. {
  34422. name: "Mega Macro",
  34423. height: math.unit(175, "km")
  34424. },
  34425. {
  34426. name: "Terra Macro",
  34427. height: math.unit(32, "gigameters")
  34428. },
  34429. {
  34430. name: "Multiverse+",
  34431. height: math.unit(2.56e23, "yottameters")
  34432. },
  34433. ]
  34434. ))
  34435. characterMakers.push(() => makeCharacter(
  34436. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34437. {
  34438. front: {
  34439. height: math.unit(6 + 9/12, "feet"),
  34440. weight: math.unit(280, "lb"),
  34441. name: "Front",
  34442. image: {
  34443. source: "./media/characters/candy/front.svg",
  34444. extra: 234/217,
  34445. bottom: 11/245
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Really Small",
  34452. height: math.unit(0.1, "nm")
  34453. },
  34454. {
  34455. name: "Micro",
  34456. height: math.unit(2, "inches")
  34457. },
  34458. {
  34459. name: "Normal",
  34460. height: math.unit(6 + 9/12, "feet"),
  34461. default: true
  34462. },
  34463. {
  34464. name: "Small Macro",
  34465. height: math.unit(69, "feet")
  34466. },
  34467. {
  34468. name: "Macro",
  34469. height: math.unit(160, "feet")
  34470. },
  34471. {
  34472. name: "Megamacro",
  34473. height: math.unit(22000, "miles")
  34474. },
  34475. {
  34476. name: "Gigamacro",
  34477. height: math.unit(50000, "miles")
  34478. },
  34479. ]
  34480. ))
  34481. characterMakers.push(() => makeCharacter(
  34482. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34483. {
  34484. front: {
  34485. height: math.unit(4, "feet"),
  34486. weight: math.unit(90, "lb"),
  34487. name: "Front",
  34488. image: {
  34489. source: "./media/characters/joey-mcdonald/front.svg",
  34490. extra: 1059/852,
  34491. bottom: 33/1092
  34492. }
  34493. },
  34494. back: {
  34495. height: math.unit(4, "feet"),
  34496. weight: math.unit(90, "lb"),
  34497. name: "Back",
  34498. image: {
  34499. source: "./media/characters/joey-mcdonald/back.svg",
  34500. extra: 1077/879,
  34501. bottom: 5/1082
  34502. }
  34503. },
  34504. },
  34505. [
  34506. {
  34507. name: "Normal",
  34508. height: math.unit(4, "feet"),
  34509. default: true
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(12 + 6/12, "feet"),
  34518. name: "Front",
  34519. image: {
  34520. source: "./media/characters/kass-lockheed/front.svg",
  34521. extra: 354/343,
  34522. bottom: 9/363
  34523. }
  34524. },
  34525. back: {
  34526. height: math.unit(12 + 6/12, "feet"),
  34527. name: "Back",
  34528. image: {
  34529. source: "./media/characters/kass-lockheed/back.svg",
  34530. extra: 364/352,
  34531. bottom: 3/367
  34532. }
  34533. },
  34534. dick: {
  34535. height: math.unit(3.12, "feet"),
  34536. name: "Dick",
  34537. image: {
  34538. source: "./media/characters/kass-lockheed/dick.svg"
  34539. }
  34540. },
  34541. head: {
  34542. height: math.unit(2.6, "feet"),
  34543. name: "Head",
  34544. image: {
  34545. source: "./media/characters/kass-lockheed/head.svg"
  34546. }
  34547. },
  34548. bleh: {
  34549. height: math.unit(2.85, "feet"),
  34550. name: "Bleh",
  34551. image: {
  34552. source: "./media/characters/kass-lockheed/bleh.svg"
  34553. }
  34554. },
  34555. smug: {
  34556. height: math.unit(2.85, "feet"),
  34557. name: "Smug",
  34558. image: {
  34559. source: "./media/characters/kass-lockheed/smug.svg"
  34560. }
  34561. },
  34562. },
  34563. [
  34564. {
  34565. name: "Normal",
  34566. height: math.unit(12 + 6/12, "feet"),
  34567. default: true
  34568. },
  34569. ]
  34570. ))
  34571. characterMakers.push(() => makeCharacter(
  34572. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34573. {
  34574. front: {
  34575. height: math.unit(6 + 2/12, "feet"),
  34576. name: "Front",
  34577. image: {
  34578. source: "./media/characters/taylor/front.svg",
  34579. extra: 639/495,
  34580. bottom: 12/651
  34581. }
  34582. },
  34583. },
  34584. [
  34585. {
  34586. name: "Normal",
  34587. height: math.unit(6 + 2/12, "feet"),
  34588. default: true
  34589. },
  34590. {
  34591. name: "Big",
  34592. height: math.unit(15, "feet")
  34593. },
  34594. {
  34595. name: "Lorg",
  34596. height: math.unit(80, "feet")
  34597. },
  34598. {
  34599. name: "Too Lorg",
  34600. height: math.unit(120, "feet")
  34601. },
  34602. ]
  34603. ))
  34604. characterMakers.push(() => makeCharacter(
  34605. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34606. {
  34607. front: {
  34608. height: math.unit(15, "feet"),
  34609. name: "Front",
  34610. image: {
  34611. source: "./media/characters/kaizer/front.svg",
  34612. extra: 1612/1436,
  34613. bottom: 43/1655
  34614. }
  34615. },
  34616. },
  34617. [
  34618. {
  34619. name: "Normal",
  34620. height: math.unit(15, "feet"),
  34621. default: true
  34622. },
  34623. ]
  34624. ))
  34625. characterMakers.push(() => makeCharacter(
  34626. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34627. {
  34628. front: {
  34629. height: math.unit(2, "feet"),
  34630. weight: math.unit(30, "lb"),
  34631. name: "Front",
  34632. image: {
  34633. source: "./media/characters/sandy/front.svg",
  34634. extra: 1439/1307,
  34635. bottom: 194/1633
  34636. }
  34637. },
  34638. },
  34639. [
  34640. {
  34641. name: "Normal",
  34642. height: math.unit(2, "feet"),
  34643. default: true
  34644. },
  34645. ]
  34646. ))
  34647. characterMakers.push(() => makeCharacter(
  34648. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34649. {
  34650. front: {
  34651. height: math.unit(3, "feet"),
  34652. name: "Front",
  34653. image: {
  34654. source: "./media/characters/mellvi/front.svg",
  34655. extra: 1831/1630,
  34656. bottom: 58/1889
  34657. }
  34658. },
  34659. },
  34660. [
  34661. {
  34662. name: "Normal",
  34663. height: math.unit(3, "feet"),
  34664. default: true
  34665. },
  34666. ]
  34667. ))
  34668. characterMakers.push(() => makeCharacter(
  34669. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34670. {
  34671. front: {
  34672. height: math.unit(5 + 11/12, "feet"),
  34673. weight: math.unit(200, "lb"),
  34674. name: "Front",
  34675. image: {
  34676. source: "./media/characters/shirou/front.svg",
  34677. extra: 2491/2383,
  34678. bottom: 189/2680
  34679. }
  34680. },
  34681. back: {
  34682. height: math.unit(5 + 11/12, "feet"),
  34683. weight: math.unit(200, "lb"),
  34684. name: "Back",
  34685. image: {
  34686. source: "./media/characters/shirou/back.svg",
  34687. extra: 2554/2450,
  34688. bottom: 76/2630
  34689. }
  34690. },
  34691. },
  34692. [
  34693. {
  34694. name: "Normal",
  34695. height: math.unit(5 + 11/12, "feet"),
  34696. default: true
  34697. },
  34698. ]
  34699. ))
  34700. characterMakers.push(() => makeCharacter(
  34701. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34702. {
  34703. front: {
  34704. height: math.unit(6 + 3/12, "feet"),
  34705. weight: math.unit(177, "lb"),
  34706. name: "Front",
  34707. image: {
  34708. source: "./media/characters/noryu/front.svg",
  34709. extra: 973/885,
  34710. bottom: 10/983
  34711. }
  34712. },
  34713. },
  34714. [
  34715. {
  34716. name: "Normal",
  34717. height: math.unit(6 + 3/12, "feet"),
  34718. default: true
  34719. },
  34720. ]
  34721. ))
  34722. characterMakers.push(() => makeCharacter(
  34723. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34724. {
  34725. front: {
  34726. height: math.unit(5 + 6/12, "feet"),
  34727. weight: math.unit(170, "lb"),
  34728. name: "Front",
  34729. image: {
  34730. source: "./media/characters/mevolas-rubenido/front.svg",
  34731. extra: 2109/1901,
  34732. bottom: 96/2205
  34733. }
  34734. },
  34735. },
  34736. [
  34737. {
  34738. name: "Normal",
  34739. height: math.unit(5 + 6/12, "feet"),
  34740. default: true
  34741. },
  34742. ]
  34743. ))
  34744. characterMakers.push(() => makeCharacter(
  34745. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34746. {
  34747. front: {
  34748. height: math.unit(100, "feet"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/dee/front.svg",
  34752. extra: 2153/2036,
  34753. bottom: 59/2212
  34754. }
  34755. },
  34756. back: {
  34757. height: math.unit(100, "feet"),
  34758. name: "Back",
  34759. image: {
  34760. source: "./media/characters/dee/back.svg",
  34761. extra: 2183/2058,
  34762. bottom: 75/2258
  34763. }
  34764. },
  34765. foot: {
  34766. height: math.unit(19.43, "feet"),
  34767. name: "Foot",
  34768. image: {
  34769. source: "./media/characters/dee/foot.svg"
  34770. }
  34771. },
  34772. hoof: {
  34773. height: math.unit(20.6, "feet"),
  34774. name: "Hoof",
  34775. image: {
  34776. source: "./media/characters/dee/hoof.svg"
  34777. }
  34778. },
  34779. },
  34780. [
  34781. {
  34782. name: "Macro",
  34783. height: math.unit(100, "feet"),
  34784. default: true
  34785. },
  34786. ]
  34787. ))
  34788. characterMakers.push(() => makeCharacter(
  34789. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34790. {
  34791. front: {
  34792. height: math.unit(5 + 6/12, "feet"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/teh/front.svg",
  34796. extra: 1002/847,
  34797. bottom: 62/1064
  34798. }
  34799. },
  34800. },
  34801. [
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(5 + 6/12, "feet"),
  34805. default: true
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34811. {
  34812. side: {
  34813. height: math.unit(6 + 1/12, "feet"),
  34814. weight: math.unit(204, "lb"),
  34815. name: "Side",
  34816. image: {
  34817. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34818. extra: 974/775,
  34819. bottom: 169/1143
  34820. }
  34821. },
  34822. sitting: {
  34823. height: math.unit(6 + 2/12, "feet"),
  34824. weight: math.unit(204, "lb"),
  34825. name: "Sitting",
  34826. image: {
  34827. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34828. extra: 1175/964,
  34829. bottom: 378/1553
  34830. }
  34831. },
  34832. },
  34833. [
  34834. {
  34835. name: "Normal",
  34836. height: math.unit(6 + 1/12, "feet"),
  34837. default: true
  34838. },
  34839. ]
  34840. ))
  34841. characterMakers.push(() => makeCharacter(
  34842. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34843. {
  34844. front: {
  34845. height: math.unit(6, "inches"),
  34846. name: "Front",
  34847. image: {
  34848. source: "./media/characters/tululi/front.svg",
  34849. extra: 1997/1876,
  34850. bottom: 20/2017
  34851. }
  34852. },
  34853. },
  34854. [
  34855. {
  34856. name: "Normal",
  34857. height: math.unit(6, "inches"),
  34858. default: true
  34859. },
  34860. ]
  34861. ))
  34862. characterMakers.push(() => makeCharacter(
  34863. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34864. {
  34865. front: {
  34866. height: math.unit(4 + 1/12, "feet"),
  34867. name: "Front",
  34868. image: {
  34869. source: "./media/characters/star/front.svg",
  34870. extra: 1493/1189,
  34871. bottom: 48/1541
  34872. }
  34873. },
  34874. },
  34875. [
  34876. {
  34877. name: "Normal",
  34878. height: math.unit(4 + 1/12, "feet"),
  34879. default: true
  34880. },
  34881. ]
  34882. ))
  34883. characterMakers.push(() => makeCharacter(
  34884. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34885. {
  34886. front: {
  34887. height: math.unit(6 + 3/12, "feet"),
  34888. name: "Front",
  34889. image: {
  34890. source: "./media/characters/comet/front.svg",
  34891. extra: 1681/1462,
  34892. bottom: 26/1707
  34893. }
  34894. },
  34895. },
  34896. [
  34897. {
  34898. name: "Normal",
  34899. height: math.unit(6 + 3/12, "feet"),
  34900. default: true
  34901. },
  34902. ]
  34903. ))
  34904. characterMakers.push(() => makeCharacter(
  34905. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34906. {
  34907. front: {
  34908. height: math.unit(950, "feet"),
  34909. name: "Front",
  34910. image: {
  34911. source: "./media/characters/vortex/front.svg",
  34912. extra: 1497/1434,
  34913. bottom: 56/1553
  34914. }
  34915. },
  34916. maw: {
  34917. height: math.unit(285, "feet"),
  34918. name: "Maw",
  34919. image: {
  34920. source: "./media/characters/vortex/maw.svg"
  34921. }
  34922. },
  34923. },
  34924. [
  34925. {
  34926. name: "Macro",
  34927. height: math.unit(950, "feet"),
  34928. default: true
  34929. },
  34930. ]
  34931. ))
  34932. characterMakers.push(() => makeCharacter(
  34933. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34934. {
  34935. front: {
  34936. height: math.unit(600, "feet"),
  34937. weight: math.unit(0.02, "grams"),
  34938. name: "Front",
  34939. image: {
  34940. source: "./media/characters/doodle/front.svg",
  34941. extra: 1578/1413,
  34942. bottom: 37/1615
  34943. }
  34944. },
  34945. },
  34946. [
  34947. {
  34948. name: "Macro",
  34949. height: math.unit(600, "feet"),
  34950. default: true
  34951. },
  34952. ]
  34953. ))
  34954. characterMakers.push(() => makeCharacter(
  34955. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34956. {
  34957. front: {
  34958. height: math.unit(6 + 6/12, "feet"),
  34959. name: "Front",
  34960. image: {
  34961. source: "./media/characters/jai/front.svg",
  34962. extra: 1645/1534,
  34963. bottom: 115/1760
  34964. }
  34965. },
  34966. },
  34967. [
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(6 + 6/12, "feet"),
  34971. default: true
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34977. {
  34978. front: {
  34979. height: math.unit(6 + 8/12, "feet"),
  34980. name: "Front",
  34981. image: {
  34982. source: "./media/characters/pixel/front.svg",
  34983. extra: 1900/1735,
  34984. bottom: 63/1963
  34985. }
  34986. },
  34987. },
  34988. [
  34989. {
  34990. name: "Normal",
  34991. height: math.unit(6 + 8/12, "feet"),
  34992. default: true
  34993. },
  34994. ]
  34995. ))
  34996. characterMakers.push(() => makeCharacter(
  34997. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34998. {
  34999. front: {
  35000. height: math.unit(4 + 11/12, "feet"),
  35001. weight: math.unit(111, "lb"),
  35002. name: "Front",
  35003. image: {
  35004. source: "./media/characters/rhett/front.svg",
  35005. extra: 1682/1586,
  35006. bottom: 92/1774
  35007. }
  35008. },
  35009. },
  35010. [
  35011. {
  35012. name: "Mini",
  35013. height: math.unit(1 + 1/12, "feet")
  35014. },
  35015. {
  35016. name: "Normal",
  35017. height: math.unit(4 + 11/12, "feet"),
  35018. default: true
  35019. },
  35020. ]
  35021. ))
  35022. characterMakers.push(() => makeCharacter(
  35023. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35024. {
  35025. front: {
  35026. height: math.unit(3 + 3/12, "feet"),
  35027. name: "Front",
  35028. image: {
  35029. source: "./media/characters/penny/front.svg",
  35030. extra: 1406/1311,
  35031. bottom: 26/1432
  35032. }
  35033. },
  35034. },
  35035. [
  35036. {
  35037. name: "Normal",
  35038. height: math.unit(3 + 3/12, "feet"),
  35039. default: true
  35040. },
  35041. ]
  35042. ))
  35043. characterMakers.push(() => makeCharacter(
  35044. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35045. {
  35046. front: {
  35047. height: math.unit(4 + 11/12, "feet"),
  35048. name: "Front",
  35049. image: {
  35050. source: "./media/characters/monty/front.svg",
  35051. extra: 1479/1209,
  35052. bottom: 0/1479
  35053. }
  35054. },
  35055. },
  35056. [
  35057. {
  35058. name: "Normal",
  35059. height: math.unit(4 + 11/12, "feet"),
  35060. default: true
  35061. },
  35062. ]
  35063. ))
  35064. characterMakers.push(() => makeCharacter(
  35065. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35066. {
  35067. front: {
  35068. height: math.unit(8 + 4/12, "feet"),
  35069. name: "Front",
  35070. image: {
  35071. source: "./media/characters/sterling/front.svg",
  35072. extra: 1420/1236,
  35073. bottom: 27/1447
  35074. }
  35075. },
  35076. },
  35077. [
  35078. {
  35079. name: "Normal",
  35080. height: math.unit(8 + 4/12, "feet"),
  35081. default: true
  35082. },
  35083. ]
  35084. ))
  35085. characterMakers.push(() => makeCharacter(
  35086. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35087. {
  35088. front: {
  35089. height: math.unit(15, "feet"),
  35090. name: "Front",
  35091. image: {
  35092. source: "./media/characters/marble/front.svg",
  35093. extra: 973/937,
  35094. bottom: 32/1005
  35095. }
  35096. },
  35097. },
  35098. [
  35099. {
  35100. name: "Normal",
  35101. height: math.unit(15, "feet"),
  35102. default: true
  35103. },
  35104. ]
  35105. ))
  35106. characterMakers.push(() => makeCharacter(
  35107. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35108. {
  35109. front: {
  35110. height: math.unit(3, "inches"),
  35111. name: "Front",
  35112. image: {
  35113. source: "./media/characters/powder/front.svg",
  35114. extra: 1504/1334,
  35115. bottom: 518/2022
  35116. }
  35117. },
  35118. },
  35119. [
  35120. {
  35121. name: "Normal",
  35122. height: math.unit(3, "inches"),
  35123. default: true
  35124. },
  35125. ]
  35126. ))
  35127. characterMakers.push(() => makeCharacter(
  35128. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35129. {
  35130. front: {
  35131. height: math.unit(4 + 5/12, "feet"),
  35132. name: "Front",
  35133. image: {
  35134. source: "./media/characters/joey-raccoon/front.svg",
  35135. extra: 1273/1197,
  35136. bottom: 0/1273
  35137. }
  35138. },
  35139. },
  35140. [
  35141. {
  35142. name: "Normal",
  35143. height: math.unit(4 + 5/12, "feet"),
  35144. default: true
  35145. },
  35146. ]
  35147. ))
  35148. characterMakers.push(() => makeCharacter(
  35149. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35150. {
  35151. front: {
  35152. height: math.unit(8 + 4/12, "feet"),
  35153. name: "Front",
  35154. image: {
  35155. source: "./media/characters/vick/front.svg",
  35156. extra: 2187/2118,
  35157. bottom: 47/2234
  35158. }
  35159. },
  35160. },
  35161. [
  35162. {
  35163. name: "Normal",
  35164. height: math.unit(8 + 4/12, "feet"),
  35165. default: true
  35166. },
  35167. ]
  35168. ))
  35169. characterMakers.push(() => makeCharacter(
  35170. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35171. {
  35172. front: {
  35173. height: math.unit(5 + 5/12, "feet"),
  35174. name: "Front",
  35175. image: {
  35176. source: "./media/characters/mitsy/front.svg",
  35177. extra: 1842/1695,
  35178. bottom: 0/1842
  35179. }
  35180. },
  35181. },
  35182. [
  35183. {
  35184. name: "Normal",
  35185. height: math.unit(5 + 5/12, "feet"),
  35186. default: true
  35187. },
  35188. ]
  35189. ))
  35190. characterMakers.push(() => makeCharacter(
  35191. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35192. {
  35193. front: {
  35194. height: math.unit(6 + 3/12, "feet"),
  35195. name: "Front",
  35196. image: {
  35197. source: "./media/characters/silvy/front.svg",
  35198. extra: 1995/1836,
  35199. bottom: 225/2220
  35200. }
  35201. },
  35202. },
  35203. [
  35204. {
  35205. name: "Normal",
  35206. height: math.unit(6 + 3/12, "feet"),
  35207. default: true
  35208. },
  35209. ]
  35210. ))
  35211. characterMakers.push(() => makeCharacter(
  35212. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35213. {
  35214. front: {
  35215. height: math.unit(3 + 8/12, "feet"),
  35216. name: "Front",
  35217. image: {
  35218. source: "./media/characters/rodney/front.svg",
  35219. extra: 1956/1747,
  35220. bottom: 31/1987
  35221. }
  35222. },
  35223. frontDressed: {
  35224. height: math.unit(2.9, "feet"),
  35225. name: "Front (Dressed)",
  35226. image: {
  35227. source: "./media/characters/rodney/front-dressed.svg",
  35228. extra: 1382/1241,
  35229. bottom: 385/1767
  35230. }
  35231. },
  35232. },
  35233. [
  35234. {
  35235. name: "Normal",
  35236. height: math.unit(3 + 8/12, "feet"),
  35237. default: true
  35238. },
  35239. ]
  35240. ))
  35241. characterMakers.push(() => makeCharacter(
  35242. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35243. {
  35244. front: {
  35245. height: math.unit(5 + 9/12, "feet"),
  35246. weight: math.unit(194, "lbs"),
  35247. name: "Front",
  35248. image: {
  35249. source: "./media/characters/zakail-sudekai/front.svg",
  35250. extra: 2696/2533,
  35251. bottom: 248/2944
  35252. }
  35253. },
  35254. maw: {
  35255. height: math.unit(1.35, "feet"),
  35256. name: "Maw",
  35257. image: {
  35258. source: "./media/characters/zakail-sudekai/maw.svg"
  35259. }
  35260. },
  35261. },
  35262. [
  35263. {
  35264. name: "Normal",
  35265. height: math.unit(5 + 9/12, "feet"),
  35266. default: true
  35267. },
  35268. ]
  35269. ))
  35270. characterMakers.push(() => makeCharacter(
  35271. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35272. {
  35273. front: {
  35274. height: math.unit(8 + 4/12, "feet"),
  35275. weight: math.unit(1200, "lb"),
  35276. name: "Front",
  35277. image: {
  35278. source: "./media/characters/eleanor/front.svg",
  35279. extra: 1226/1192,
  35280. bottom: 52/1278
  35281. }
  35282. },
  35283. back: {
  35284. height: math.unit(8 + 4/12, "feet"),
  35285. weight: math.unit(1200, "lb"),
  35286. name: "Back",
  35287. image: {
  35288. source: "./media/characters/eleanor/back.svg",
  35289. extra: 1242/1184,
  35290. bottom: 60/1302
  35291. }
  35292. },
  35293. head: {
  35294. height: math.unit(2.62, "feet"),
  35295. name: "Head",
  35296. image: {
  35297. source: "./media/characters/eleanor/head.svg"
  35298. }
  35299. },
  35300. },
  35301. [
  35302. {
  35303. name: "Normal",
  35304. height: math.unit(8 + 4/12, "feet"),
  35305. default: true
  35306. },
  35307. ]
  35308. ))
  35309. characterMakers.push(() => makeCharacter(
  35310. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35311. {
  35312. front: {
  35313. height: math.unit(8 + 4/12, "feet"),
  35314. weight: math.unit(750, "lb"),
  35315. name: "Front",
  35316. image: {
  35317. source: "./media/characters/tanya/front.svg",
  35318. extra: 1749/1615,
  35319. bottom: 33/1782
  35320. }
  35321. },
  35322. },
  35323. [
  35324. {
  35325. name: "Normal",
  35326. height: math.unit(8 + 4/12, "feet"),
  35327. default: true
  35328. },
  35329. ]
  35330. ))
  35331. characterMakers.push(() => makeCharacter(
  35332. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35333. {
  35334. front: {
  35335. height: math.unit(5, "feet"),
  35336. weight: math.unit(225, "lb"),
  35337. name: "Front",
  35338. image: {
  35339. source: "./media/characters/cindy/front.svg",
  35340. extra: 1320/1250,
  35341. bottom: 42/1362
  35342. }
  35343. },
  35344. frontDressed: {
  35345. height: math.unit(5, "feet"),
  35346. weight: math.unit(225, "lb"),
  35347. name: "Front (Dressed)",
  35348. image: {
  35349. source: "./media/characters/cindy/front-dressed.svg",
  35350. extra: 1320/1250,
  35351. bottom: 42/1362
  35352. }
  35353. },
  35354. back: {
  35355. height: math.unit(5, "feet"),
  35356. weight: math.unit(225, "lb"),
  35357. name: "Back",
  35358. image: {
  35359. source: "./media/characters/cindy/back.svg",
  35360. extra: 1384/1346,
  35361. bottom: 14/1398
  35362. }
  35363. },
  35364. },
  35365. [
  35366. {
  35367. name: "Normal",
  35368. height: math.unit(5, "feet"),
  35369. default: true
  35370. },
  35371. ]
  35372. ))
  35373. characterMakers.push(() => makeCharacter(
  35374. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35375. {
  35376. front: {
  35377. height: math.unit(6 + 9/12, "feet"),
  35378. weight: math.unit(440, "lb"),
  35379. name: "Front",
  35380. image: {
  35381. source: "./media/characters/wilbur-owen/front.svg",
  35382. extra: 1575/1448,
  35383. bottom: 72/1647
  35384. }
  35385. },
  35386. back: {
  35387. height: math.unit(6 + 9/12, "feet"),
  35388. weight: math.unit(440, "lb"),
  35389. name: "Back",
  35390. image: {
  35391. source: "./media/characters/wilbur-owen/back.svg",
  35392. extra: 1578/1445,
  35393. bottom: 36/1614
  35394. }
  35395. },
  35396. },
  35397. [
  35398. {
  35399. name: "Normal",
  35400. height: math.unit(6 + 9/12, "feet"),
  35401. default: true
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(6 + 5/12, "feet"),
  35410. weight: math.unit(650, "lb"),
  35411. name: "Front",
  35412. image: {
  35413. source: "./media/characters/keegan/front.svg",
  35414. extra: 2387/2198,
  35415. bottom: 33/2420
  35416. }
  35417. },
  35418. side: {
  35419. height: math.unit(6 + 5/12, "feet"),
  35420. weight: math.unit(650, "lb"),
  35421. name: "Side",
  35422. image: {
  35423. source: "./media/characters/keegan/side.svg",
  35424. extra: 2390/2202,
  35425. bottom: 47/2437
  35426. }
  35427. },
  35428. back: {
  35429. height: math.unit(6 + 5/12, "feet"),
  35430. weight: math.unit(650, "lb"),
  35431. name: "Back",
  35432. image: {
  35433. source: "./media/characters/keegan/back.svg",
  35434. extra: 2418/2268,
  35435. bottom: 15/2433
  35436. }
  35437. },
  35438. frontSfw: {
  35439. height: math.unit(6 + 5/12, "feet"),
  35440. weight: math.unit(650, "lb"),
  35441. name: "Front (SFW)",
  35442. image: {
  35443. source: "./media/characters/keegan/front-sfw.svg",
  35444. extra: 2387/2198,
  35445. bottom: 33/2420
  35446. }
  35447. },
  35448. beans: {
  35449. height: math.unit(1.85, "feet"),
  35450. name: "Beans",
  35451. image: {
  35452. source: "./media/characters/keegan/beans.svg"
  35453. }
  35454. },
  35455. },
  35456. [
  35457. {
  35458. name: "Normal",
  35459. height: math.unit(6 + 5/12, "feet"),
  35460. default: true
  35461. },
  35462. ]
  35463. ))
  35464. characterMakers.push(() => makeCharacter(
  35465. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35466. {
  35467. front: {
  35468. height: math.unit(9, "feet"),
  35469. name: "Front",
  35470. image: {
  35471. source: "./media/characters/colton/front.svg",
  35472. extra: 1589/1326,
  35473. bottom: 139/1728
  35474. }
  35475. },
  35476. },
  35477. [
  35478. {
  35479. name: "Normal",
  35480. height: math.unit(9, "feet"),
  35481. default: true
  35482. },
  35483. ]
  35484. ))
  35485. characterMakers.push(() => makeCharacter(
  35486. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35487. {
  35488. front: {
  35489. height: math.unit(2 + 9/12, "feet"),
  35490. name: "Front",
  35491. image: {
  35492. source: "./media/characters/bora/front.svg",
  35493. extra: 1265/1250,
  35494. bottom: 24/1289
  35495. }
  35496. },
  35497. },
  35498. [
  35499. {
  35500. name: "Normal",
  35501. height: math.unit(2 + 9/12, "feet"),
  35502. default: true
  35503. },
  35504. ]
  35505. ))
  35506. characterMakers.push(() => makeCharacter(
  35507. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35508. {
  35509. front: {
  35510. height: math.unit(8, "feet"),
  35511. name: "Front",
  35512. image: {
  35513. source: "./media/characters/myu-myu/front.svg",
  35514. extra: 1949/1857,
  35515. bottom: 90/2039
  35516. }
  35517. },
  35518. },
  35519. [
  35520. {
  35521. name: "Normal",
  35522. height: math.unit(8, "feet"),
  35523. default: true
  35524. },
  35525. {
  35526. name: "Big",
  35527. height: math.unit(15, "feet")
  35528. },
  35529. {
  35530. name: "BIG",
  35531. height: math.unit(25, "feet")
  35532. },
  35533. ]
  35534. ))
  35535. characterMakers.push(() => makeCharacter(
  35536. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35537. {
  35538. side: {
  35539. height: math.unit(7 + 5/12, "feet"),
  35540. weight: math.unit(2800, "lb"),
  35541. name: "Side",
  35542. image: {
  35543. source: "./media/characters/haloren/side.svg",
  35544. extra: 1793/409,
  35545. bottom: 59/1852
  35546. }
  35547. },
  35548. frontPaw: {
  35549. height: math.unit(2.36, "feet"),
  35550. name: "Front paw",
  35551. image: {
  35552. source: "./media/characters/haloren/front-paw.svg"
  35553. }
  35554. },
  35555. hindPaw: {
  35556. height: math.unit(3.18, "feet"),
  35557. name: "Hind paw",
  35558. image: {
  35559. source: "./media/characters/haloren/hind-paw.svg"
  35560. }
  35561. },
  35562. maw: {
  35563. height: math.unit(5.05, "feet"),
  35564. name: "Maw",
  35565. image: {
  35566. source: "./media/characters/haloren/maw.svg"
  35567. }
  35568. },
  35569. dick: {
  35570. height: math.unit(2.90, "feet"),
  35571. name: "Dick",
  35572. image: {
  35573. source: "./media/characters/haloren/dick.svg"
  35574. }
  35575. },
  35576. },
  35577. [
  35578. {
  35579. name: "Normal",
  35580. height: math.unit(7 + 5/12, "feet"),
  35581. default: true
  35582. },
  35583. {
  35584. name: "Enhanced",
  35585. height: math.unit(14 + 3/12, "feet")
  35586. },
  35587. ]
  35588. ))
  35589. characterMakers.push(() => makeCharacter(
  35590. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35591. {
  35592. front: {
  35593. height: math.unit(171, "cm"),
  35594. name: "Front",
  35595. image: {
  35596. source: "./media/characters/kimmy/front.svg",
  35597. extra: 1491/1435,
  35598. bottom: 53/1544
  35599. }
  35600. },
  35601. },
  35602. [
  35603. {
  35604. name: "Small",
  35605. height: math.unit(9, "cm")
  35606. },
  35607. {
  35608. name: "Normal",
  35609. height: math.unit(171, "cm"),
  35610. default: true
  35611. },
  35612. ]
  35613. ))
  35614. characterMakers.push(() => makeCharacter(
  35615. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35616. {
  35617. front: {
  35618. height: math.unit(8, "feet"),
  35619. weight: math.unit(300, "lb"),
  35620. name: "Front",
  35621. image: {
  35622. source: "./media/characters/galeboomer/front.svg",
  35623. extra: 4651/4415,
  35624. bottom: 162/4813
  35625. }
  35626. },
  35627. back: {
  35628. height: math.unit(8, "feet"),
  35629. weight: math.unit(300, "lb"),
  35630. name: "Back",
  35631. image: {
  35632. source: "./media/characters/galeboomer/back.svg",
  35633. extra: 4544/4314,
  35634. bottom: 16/4560
  35635. }
  35636. },
  35637. frontAlt: {
  35638. height: math.unit(8, "feet"),
  35639. weight: math.unit(300, "lb"),
  35640. name: "Front (Alt)",
  35641. image: {
  35642. source: "./media/characters/galeboomer/front-alt.svg",
  35643. extra: 4458/4228,
  35644. bottom: 68/4526
  35645. }
  35646. },
  35647. maw: {
  35648. height: math.unit(1.2, "feet"),
  35649. name: "Maw",
  35650. image: {
  35651. source: "./media/characters/galeboomer/maw.svg"
  35652. }
  35653. },
  35654. },
  35655. [
  35656. {
  35657. name: "Normal",
  35658. height: math.unit(8, "feet"),
  35659. default: true
  35660. },
  35661. ]
  35662. ))
  35663. characterMakers.push(() => makeCharacter(
  35664. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35665. {
  35666. front: {
  35667. height: math.unit(5 + 9/12, "feet"),
  35668. weight: math.unit(120, "lb"),
  35669. name: "Front",
  35670. image: {
  35671. source: "./media/characters/chyr/front.svg",
  35672. extra: 1323/1254,
  35673. bottom: 63/1386
  35674. }
  35675. },
  35676. back: {
  35677. height: math.unit(5 + 9/12, "feet"),
  35678. weight: math.unit(120, "lb"),
  35679. name: "Back",
  35680. image: {
  35681. source: "./media/characters/chyr/back.svg",
  35682. extra: 1323/1252,
  35683. bottom: 48/1371
  35684. }
  35685. },
  35686. },
  35687. [
  35688. {
  35689. name: "Normal",
  35690. height: math.unit(5 + 9/12, "feet"),
  35691. default: true
  35692. },
  35693. ]
  35694. ))
  35695. characterMakers.push(() => makeCharacter(
  35696. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35697. {
  35698. front: {
  35699. height: math.unit(7, "feet"),
  35700. weight: math.unit(310, "lb"),
  35701. name: "Front",
  35702. image: {
  35703. source: "./media/characters/solarus/front.svg",
  35704. extra: 2415/2021,
  35705. bottom: 103/2518
  35706. }
  35707. },
  35708. back: {
  35709. height: math.unit(7, "feet"),
  35710. weight: math.unit(310, "lb"),
  35711. name: "Back",
  35712. image: {
  35713. source: "./media/characters/solarus/back.svg",
  35714. extra: 2463/2089,
  35715. bottom: 79/2542
  35716. }
  35717. },
  35718. },
  35719. [
  35720. {
  35721. name: "Normal",
  35722. height: math.unit(7, "feet"),
  35723. default: true
  35724. },
  35725. ]
  35726. ))
  35727. characterMakers.push(() => makeCharacter(
  35728. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35729. {
  35730. front: {
  35731. height: math.unit(16, "feet"),
  35732. name: "Front",
  35733. image: {
  35734. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35735. extra: 1844/1780,
  35736. bottom: 58/1902
  35737. }
  35738. },
  35739. winterCoat: {
  35740. height: math.unit(16, "feet"),
  35741. name: "Winter Coat",
  35742. image: {
  35743. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35744. extra: 1807/1775,
  35745. bottom: 69/1876
  35746. }
  35747. },
  35748. },
  35749. [
  35750. {
  35751. name: "Normal",
  35752. height: math.unit(16, "feet"),
  35753. default: true
  35754. },
  35755. {
  35756. name: "Chicago Size",
  35757. height: math.unit(560, "feet")
  35758. },
  35759. ]
  35760. ))
  35761. characterMakers.push(() => makeCharacter(
  35762. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35763. {
  35764. front: {
  35765. height: math.unit(11 + 6/12, "feet"),
  35766. weight: math.unit(1366, "lb"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/lexor/front.svg",
  35770. extra: 1560/1481,
  35771. bottom: 211/1771
  35772. }
  35773. },
  35774. back: {
  35775. height: math.unit(11 + 6/12, "feet"),
  35776. weight: math.unit(1366, "lb"),
  35777. name: "Back",
  35778. image: {
  35779. source: "./media/characters/lexor/back.svg",
  35780. extra: 1614/1533,
  35781. bottom: 76/1690
  35782. }
  35783. },
  35784. maw: {
  35785. height: math.unit(3, "feet"),
  35786. name: "Maw",
  35787. image: {
  35788. source: "./media/characters/lexor/maw.svg"
  35789. }
  35790. },
  35791. dick: {
  35792. height: math.unit(2.59, "feet"),
  35793. name: "Dick",
  35794. image: {
  35795. source: "./media/characters/lexor/dick.svg"
  35796. }
  35797. },
  35798. },
  35799. [
  35800. {
  35801. name: "Normal",
  35802. height: math.unit(11 + 6/12, "feet"),
  35803. default: true
  35804. },
  35805. ]
  35806. ))
  35807. characterMakers.push(() => makeCharacter(
  35808. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35809. {
  35810. front: {
  35811. height: math.unit(5 + 8/12, "feet"),
  35812. name: "Front",
  35813. image: {
  35814. source: "./media/characters/magnum/front.svg",
  35815. extra: 942/855,
  35816. bottom: 26/968
  35817. }
  35818. },
  35819. },
  35820. [
  35821. {
  35822. name: "Normal",
  35823. height: math.unit(5 + 8/12, "feet"),
  35824. default: true
  35825. },
  35826. ]
  35827. ))
  35828. characterMakers.push(() => makeCharacter(
  35829. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35830. {
  35831. front: {
  35832. height: math.unit(18 + 4/12, "feet"),
  35833. weight: math.unit(1500, "kg"),
  35834. name: "Front",
  35835. image: {
  35836. source: "./media/characters/solas-sharpsman/front.svg",
  35837. extra: 1698/1589,
  35838. bottom: 0/1698
  35839. }
  35840. },
  35841. },
  35842. [
  35843. {
  35844. name: "Normal",
  35845. height: math.unit(18 + 4/12, "feet"),
  35846. default: true
  35847. },
  35848. ]
  35849. ))
  35850. characterMakers.push(() => makeCharacter(
  35851. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35852. {
  35853. front: {
  35854. height: math.unit(5 + 5/12, "feet"),
  35855. weight: math.unit(180, "lb"),
  35856. name: "Front",
  35857. image: {
  35858. source: "./media/characters/october/front.svg",
  35859. extra: 1800/1650,
  35860. bottom: 0/1800
  35861. }
  35862. },
  35863. frontNsfw: {
  35864. height: math.unit(5 + 5/12, "feet"),
  35865. weight: math.unit(180, "lb"),
  35866. name: "Front (NSFW)",
  35867. image: {
  35868. source: "./media/characters/october/front-nsfw.svg",
  35869. extra: 1392/1307,
  35870. bottom: 42/1434
  35871. }
  35872. },
  35873. },
  35874. [
  35875. {
  35876. name: "Normal",
  35877. height: math.unit(5 + 5/12, "feet"),
  35878. default: true
  35879. },
  35880. ]
  35881. ))
  35882. characterMakers.push(() => makeCharacter(
  35883. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35884. {
  35885. front: {
  35886. height: math.unit(8 + 6/12, "feet"),
  35887. name: "Front",
  35888. image: {
  35889. source: "./media/characters/essynkardi/front.svg",
  35890. extra: 1914/1846,
  35891. bottom: 22/1936
  35892. }
  35893. },
  35894. },
  35895. [
  35896. {
  35897. name: "Normal",
  35898. height: math.unit(8 + 6/12, "feet"),
  35899. default: true
  35900. },
  35901. ]
  35902. ))
  35903. characterMakers.push(() => makeCharacter(
  35904. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35905. {
  35906. front: {
  35907. height: math.unit(6 + 6/12, "feet"),
  35908. weight: math.unit(7, "lb"),
  35909. name: "Front",
  35910. image: {
  35911. source: "./media/characters/icky/front.svg",
  35912. extra: 813/782,
  35913. bottom: 66/879
  35914. }
  35915. },
  35916. back: {
  35917. height: math.unit(6 + 6/12, "feet"),
  35918. weight: math.unit(7, "lb"),
  35919. name: "Back",
  35920. image: {
  35921. source: "./media/characters/icky/back.svg",
  35922. extra: 754/735,
  35923. bottom: 56/810
  35924. }
  35925. },
  35926. },
  35927. [
  35928. {
  35929. name: "Normal",
  35930. height: math.unit(6 + 6/12, "feet"),
  35931. default: true
  35932. },
  35933. ]
  35934. ))
  35935. characterMakers.push(() => makeCharacter(
  35936. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35937. {
  35938. front: {
  35939. height: math.unit(15, "feet"),
  35940. name: "Front",
  35941. image: {
  35942. source: "./media/characters/rojas/front.svg",
  35943. extra: 1462/1408,
  35944. bottom: 95/1557
  35945. }
  35946. },
  35947. back: {
  35948. height: math.unit(15, "feet"),
  35949. name: "Back",
  35950. image: {
  35951. source: "./media/characters/rojas/back.svg",
  35952. extra: 1023/954,
  35953. bottom: 28/1051
  35954. }
  35955. },
  35956. },
  35957. [
  35958. {
  35959. name: "Normal",
  35960. height: math.unit(15, "feet"),
  35961. default: true
  35962. },
  35963. ]
  35964. ))
  35965. characterMakers.push(() => makeCharacter(
  35966. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35967. {
  35968. frontHuman: {
  35969. height: math.unit(5 + 7/12, "feet"),
  35970. name: "Front (Human)",
  35971. image: {
  35972. source: "./media/characters/alek-dryagan/front-human.svg",
  35973. extra: 1687/1667,
  35974. bottom: 69/1756
  35975. }
  35976. },
  35977. backHuman: {
  35978. height: math.unit(5 + 7/12, "feet"),
  35979. name: "Back (Human)",
  35980. image: {
  35981. source: "./media/characters/alek-dryagan/back-human.svg",
  35982. extra: 1670/1649,
  35983. bottom: 65/1735
  35984. }
  35985. },
  35986. frontDemi: {
  35987. height: math.unit(65, "feet"),
  35988. name: "Front (Demi)",
  35989. image: {
  35990. source: "./media/characters/alek-dryagan/front-demi.svg",
  35991. extra: 1669/1642,
  35992. bottom: 49/1718
  35993. }
  35994. },
  35995. backDemi: {
  35996. height: math.unit(65, "feet"),
  35997. name: "Back (Demi)",
  35998. image: {
  35999. source: "./media/characters/alek-dryagan/back-demi.svg",
  36000. extra: 1658/1637,
  36001. bottom: 40/1698
  36002. }
  36003. },
  36004. mawHuman: {
  36005. height: math.unit(0.3, "feet"),
  36006. name: "Maw (Human)",
  36007. image: {
  36008. source: "./media/characters/alek-dryagan/maw-human.svg"
  36009. }
  36010. },
  36011. mawDemi: {
  36012. height: math.unit(3.8, "feet"),
  36013. name: "Maw (Demi)",
  36014. image: {
  36015. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36016. }
  36017. },
  36018. },
  36019. [
  36020. {
  36021. name: "Normal",
  36022. height: math.unit(5 + 7/12, "feet"),
  36023. default: true
  36024. },
  36025. ]
  36026. ))
  36027. characterMakers.push(() => makeCharacter(
  36028. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36029. {
  36030. frontHuman: {
  36031. height: math.unit(5 + 2/12, "feet"),
  36032. name: "Front (Human)",
  36033. image: {
  36034. source: "./media/characters/gen/front-human.svg",
  36035. extra: 1627/1538,
  36036. bottom: 71/1698
  36037. }
  36038. },
  36039. backHuman: {
  36040. height: math.unit(5 + 2/12, "feet"),
  36041. name: "Back (Human)",
  36042. image: {
  36043. source: "./media/characters/gen/back-human.svg",
  36044. extra: 1638/1548,
  36045. bottom: 69/1707
  36046. }
  36047. },
  36048. frontDemi: {
  36049. height: math.unit(5 + 2/12, "feet"),
  36050. name: "Front (Demi)",
  36051. image: {
  36052. source: "./media/characters/gen/front-demi.svg",
  36053. extra: 1627/1538,
  36054. bottom: 71/1698
  36055. }
  36056. },
  36057. backDemi: {
  36058. height: math.unit(5 + 2/12, "feet"),
  36059. name: "Back (Demi)",
  36060. image: {
  36061. source: "./media/characters/gen/back-demi.svg",
  36062. extra: 1638/1548,
  36063. bottom: 69/1707
  36064. }
  36065. },
  36066. },
  36067. [
  36068. {
  36069. name: "Normal",
  36070. height: math.unit(5 + 2/12, "feet"),
  36071. default: true
  36072. },
  36073. ]
  36074. ))
  36075. characterMakers.push(() => makeCharacter(
  36076. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36077. {
  36078. frontImp: {
  36079. height: math.unit(1 + 11/12, "feet"),
  36080. name: "Front (Imp)",
  36081. image: {
  36082. source: "./media/characters/max-kobold/front-imp.svg",
  36083. extra: 1238/1134,
  36084. bottom: 81/1319
  36085. }
  36086. },
  36087. backImp: {
  36088. height: math.unit(1 + 11/12, "feet"),
  36089. name: "Back (Imp)",
  36090. image: {
  36091. source: "./media/characters/max-kobold/back-imp.svg",
  36092. extra: 1334/1175,
  36093. bottom: 34/1368
  36094. }
  36095. },
  36096. frontDemi: {
  36097. height: math.unit(5 + 9/12, "feet"),
  36098. name: "Front (Demi)",
  36099. image: {
  36100. source: "./media/characters/max-kobold/front-demi.svg",
  36101. extra: 1715/1685,
  36102. bottom: 54/1769
  36103. }
  36104. },
  36105. backDemi: {
  36106. height: math.unit(5 + 9/12, "feet"),
  36107. name: "Back (Demi)",
  36108. image: {
  36109. source: "./media/characters/max-kobold/back-demi.svg",
  36110. extra: 1752/1729,
  36111. bottom: 41/1793
  36112. }
  36113. },
  36114. handImp: {
  36115. height: math.unit(0.45, "feet"),
  36116. name: "Hand (Imp)",
  36117. image: {
  36118. source: "./media/characters/max-kobold/hand.svg"
  36119. }
  36120. },
  36121. pawImp: {
  36122. height: math.unit(0.46, "feet"),
  36123. name: "Paw (Imp)",
  36124. image: {
  36125. source: "./media/characters/max-kobold/paw.svg"
  36126. }
  36127. },
  36128. handDemi: {
  36129. height: math.unit(0.80, "feet"),
  36130. name: "Hand (Demi)",
  36131. image: {
  36132. source: "./media/characters/max-kobold/hand.svg"
  36133. }
  36134. },
  36135. pawDemi: {
  36136. height: math.unit(1.1, "feet"),
  36137. name: "Paw (Demi)",
  36138. image: {
  36139. source: "./media/characters/max-kobold/paw.svg"
  36140. }
  36141. },
  36142. headImp: {
  36143. height: math.unit(1.33, "feet"),
  36144. name: "Head (Imp)",
  36145. image: {
  36146. source: "./media/characters/max-kobold/head-imp.svg"
  36147. }
  36148. },
  36149. mawImp: {
  36150. height: math.unit(0.75, "feet"),
  36151. name: "Maw (Imp)",
  36152. image: {
  36153. source: "./media/characters/max-kobold/maw-imp.svg"
  36154. }
  36155. },
  36156. mawDemi: {
  36157. height: math.unit(0.42, "feet"),
  36158. name: "Maw (Demi)",
  36159. image: {
  36160. source: "./media/characters/max-kobold/maw-demi.svg"
  36161. }
  36162. },
  36163. },
  36164. [
  36165. {
  36166. name: "Normal",
  36167. height: math.unit(1 + 11/12, "feet"),
  36168. default: true
  36169. },
  36170. ]
  36171. ))
  36172. characterMakers.push(() => makeCharacter(
  36173. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36174. {
  36175. front: {
  36176. height: math.unit(7 + 5/12, "feet"),
  36177. name: "Front",
  36178. image: {
  36179. source: "./media/characters/carbon/front.svg",
  36180. extra: 1754/1689,
  36181. bottom: 65/1819
  36182. }
  36183. },
  36184. back: {
  36185. height: math.unit(7 + 5/12, "feet"),
  36186. name: "Back",
  36187. image: {
  36188. source: "./media/characters/carbon/back.svg",
  36189. extra: 1762/1695,
  36190. bottom: 24/1786
  36191. }
  36192. },
  36193. frontGigantamax: {
  36194. height: math.unit(150, "feet"),
  36195. name: "Front (Gigantamax)",
  36196. image: {
  36197. source: "./media/characters/carbon/front-gigantamax.svg",
  36198. extra: 1826/1669,
  36199. bottom: 59/1885
  36200. }
  36201. },
  36202. backGigantamax: {
  36203. height: math.unit(150, "feet"),
  36204. name: "Back (Gigantamax)",
  36205. image: {
  36206. source: "./media/characters/carbon/back-gigantamax.svg",
  36207. extra: 1796/1653,
  36208. bottom: 53/1849
  36209. }
  36210. },
  36211. maw: {
  36212. height: math.unit(0.48, "feet"),
  36213. name: "Maw",
  36214. image: {
  36215. source: "./media/characters/carbon/maw.svg"
  36216. }
  36217. },
  36218. mawGigantamax: {
  36219. height: math.unit(7.5, "feet"),
  36220. name: "Maw (Gigantamax)",
  36221. image: {
  36222. source: "./media/characters/carbon/maw-gigantamax.svg"
  36223. }
  36224. },
  36225. },
  36226. [
  36227. {
  36228. name: "Normal",
  36229. height: math.unit(7 + 5/12, "feet"),
  36230. default: true
  36231. },
  36232. ]
  36233. ))
  36234. characterMakers.push(() => makeCharacter(
  36235. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36236. {
  36237. front: {
  36238. height: math.unit(6, "feet"),
  36239. name: "Front",
  36240. image: {
  36241. source: "./media/characters/maverick/front.svg",
  36242. extra: 1672/1661,
  36243. bottom: 85/1757
  36244. }
  36245. },
  36246. back: {
  36247. height: math.unit(6, "feet"),
  36248. name: "Back",
  36249. image: {
  36250. source: "./media/characters/maverick/back.svg",
  36251. extra: 1642/1631,
  36252. bottom: 38/1680
  36253. }
  36254. },
  36255. },
  36256. [
  36257. {
  36258. name: "Normal",
  36259. height: math.unit(6, "feet"),
  36260. default: true
  36261. },
  36262. ]
  36263. ))
  36264. characterMakers.push(() => makeCharacter(
  36265. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36266. {
  36267. front: {
  36268. height: math.unit(15, "feet"),
  36269. weight: math.unit(615, "lb"),
  36270. name: "Front",
  36271. image: {
  36272. source: "./media/characters/grockle/front.svg",
  36273. extra: 1535/1427,
  36274. bottom: 56/1591
  36275. }
  36276. },
  36277. },
  36278. [
  36279. {
  36280. name: "Normal",
  36281. height: math.unit(15, "feet"),
  36282. default: true
  36283. },
  36284. {
  36285. name: "Large",
  36286. height: math.unit(150, "feet")
  36287. },
  36288. {
  36289. name: "Macro",
  36290. height: math.unit(1876, "feet")
  36291. },
  36292. {
  36293. name: "Mega Macro",
  36294. height: math.unit(121940, "feet")
  36295. },
  36296. {
  36297. name: "Giga Macro",
  36298. height: math.unit(750, "km")
  36299. },
  36300. {
  36301. name: "Tera Macro",
  36302. height: math.unit(750000, "km")
  36303. },
  36304. {
  36305. name: "Galactic",
  36306. height: math.unit(1.4e5, "km")
  36307. },
  36308. {
  36309. name: "Godlike",
  36310. height: math.unit(9.8e280, "galaxies")
  36311. },
  36312. ]
  36313. ))
  36314. characterMakers.push(() => makeCharacter(
  36315. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36316. {
  36317. front: {
  36318. height: math.unit(11, "meters"),
  36319. weight: math.unit(20, "tonnes"),
  36320. name: "Front",
  36321. image: {
  36322. source: "./media/characters/alistair/front.svg",
  36323. extra: 1265/1009,
  36324. bottom: 93/1358
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Normal",
  36331. height: math.unit(11, "meters"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36338. {
  36339. front: {
  36340. height: math.unit(5 + 8/12, "feet"),
  36341. name: "Front",
  36342. image: {
  36343. source: "./media/characters/haruka/front.svg",
  36344. extra: 2012/1952,
  36345. bottom: 0/2012
  36346. }
  36347. },
  36348. },
  36349. [
  36350. {
  36351. name: "Normal",
  36352. height: math.unit(5 + 8/12, "feet"),
  36353. default: true
  36354. },
  36355. ]
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36359. {
  36360. back: {
  36361. height: math.unit(9, "feet"),
  36362. name: "Back",
  36363. image: {
  36364. source: "./media/characters/vivian-sylveon/back.svg",
  36365. extra: 1853/1714,
  36366. bottom: 0/1853
  36367. }
  36368. },
  36369. },
  36370. [
  36371. {
  36372. name: "Normal",
  36373. height: math.unit(9, "feet"),
  36374. default: true
  36375. },
  36376. {
  36377. name: "Macro",
  36378. height: math.unit(500, "feet")
  36379. },
  36380. {
  36381. name: "Megamacro",
  36382. height: math.unit(600, "miles")
  36383. },
  36384. {
  36385. name: "Gigamacro",
  36386. height: math.unit(30000, "miles")
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36392. {
  36393. anthro: {
  36394. height: math.unit(5 + 10/12, "feet"),
  36395. weight: math.unit(100, "lb"),
  36396. name: "Anthro",
  36397. image: {
  36398. source: "./media/characters/daiki/anthro.svg",
  36399. extra: 1115/1027,
  36400. bottom: 69/1184
  36401. }
  36402. },
  36403. feral: {
  36404. height: math.unit(200, "feet"),
  36405. name: "Feral",
  36406. image: {
  36407. source: "./media/characters/daiki/feral.svg",
  36408. extra: 1256/313,
  36409. bottom: 39/1295
  36410. }
  36411. },
  36412. feralHead: {
  36413. height: math.unit(171, "feet"),
  36414. name: "Feral Head",
  36415. image: {
  36416. source: "./media/characters/daiki/feral-head.svg"
  36417. }
  36418. },
  36419. manaDragon: {
  36420. height: math.unit(170, "meters"),
  36421. name: "Mana-dragon",
  36422. image: {
  36423. source: "./media/characters/daiki/mana-dragon.svg",
  36424. extra: 763/420,
  36425. bottom: 97/860
  36426. }
  36427. },
  36428. },
  36429. [
  36430. {
  36431. name: "Normal",
  36432. height: math.unit(5 + 10/12, "feet"),
  36433. default: true
  36434. },
  36435. ]
  36436. ))
  36437. characterMakers.push(() => makeCharacter(
  36438. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36439. {
  36440. fullyEquippedFront: {
  36441. height: math.unit(3 + 1/12, "feet"),
  36442. weight: math.unit(24, "lb"),
  36443. name: "Fully Equipped (Front)",
  36444. image: {
  36445. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36446. extra: 687/605,
  36447. bottom: 18/705
  36448. }
  36449. },
  36450. fullyEquippedBack: {
  36451. height: math.unit(3 + 1/12, "feet"),
  36452. weight: math.unit(24, "lb"),
  36453. name: "Fully Equipped (Back)",
  36454. image: {
  36455. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36456. extra: 689/590,
  36457. bottom: 18/707
  36458. }
  36459. },
  36460. dailyWear: {
  36461. height: math.unit(3 + 1/12, "feet"),
  36462. weight: math.unit(24, "lb"),
  36463. name: "Daily Wear",
  36464. image: {
  36465. source: "./media/characters/tea-spot/daily-wear.svg",
  36466. extra: 701/620,
  36467. bottom: 21/722
  36468. }
  36469. },
  36470. maidWork: {
  36471. height: math.unit(3 + 1/12, "feet"),
  36472. weight: math.unit(24, "lb"),
  36473. name: "Maid Work",
  36474. image: {
  36475. source: "./media/characters/tea-spot/maid-work.svg",
  36476. extra: 693/609,
  36477. bottom: 15/708
  36478. }
  36479. },
  36480. },
  36481. [
  36482. {
  36483. name: "Normal",
  36484. height: math.unit(3 + 1/12, "feet"),
  36485. default: true
  36486. },
  36487. ]
  36488. ))
  36489. characterMakers.push(() => makeCharacter(
  36490. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36491. {
  36492. front: {
  36493. height: math.unit(175, "cm"),
  36494. weight: math.unit(75, "kg"),
  36495. name: "Front",
  36496. image: {
  36497. source: "./media/characters/chee/front.svg",
  36498. extra: 1796/1740,
  36499. bottom: 40/1836
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Micro-Micro",
  36506. height: math.unit(1, "nm")
  36507. },
  36508. {
  36509. name: "Micro-erst",
  36510. height: math.unit(1, "micrometer")
  36511. },
  36512. {
  36513. name: "Micro-er",
  36514. height: math.unit(1, "cm")
  36515. },
  36516. {
  36517. name: "Normal",
  36518. height: math.unit(175, "cm"),
  36519. default: true
  36520. },
  36521. {
  36522. name: "Macro",
  36523. height: math.unit(100, "m")
  36524. },
  36525. {
  36526. name: "Macro-er",
  36527. height: math.unit(1, "km")
  36528. },
  36529. {
  36530. name: "Macro-erst",
  36531. height: math.unit(10, "km")
  36532. },
  36533. {
  36534. name: "Macro-Macro",
  36535. height: math.unit(100, "km")
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36541. {
  36542. front: {
  36543. height: math.unit(11 + 9/12, "feet"),
  36544. weight: math.unit(935, "lb"),
  36545. name: "Front",
  36546. image: {
  36547. source: "./media/characters/kingsley/front.svg",
  36548. extra: 1803/1674,
  36549. bottom: 127/1930
  36550. }
  36551. },
  36552. frontNude: {
  36553. height: math.unit(11 + 9/12, "feet"),
  36554. weight: math.unit(935, "lb"),
  36555. name: "Front (Nude)",
  36556. image: {
  36557. source: "./media/characters/kingsley/front-nude.svg",
  36558. extra: 1803/1674,
  36559. bottom: 127/1930
  36560. }
  36561. },
  36562. },
  36563. [
  36564. {
  36565. name: "Normal",
  36566. height: math.unit(11 + 9/12, "feet"),
  36567. default: true
  36568. },
  36569. ]
  36570. ))
  36571. characterMakers.push(() => makeCharacter(
  36572. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36573. {
  36574. side: {
  36575. height: math.unit(9, "feet"),
  36576. name: "Side",
  36577. image: {
  36578. source: "./media/characters/rymel/side.svg",
  36579. extra: 792/469,
  36580. bottom: 121/913
  36581. }
  36582. },
  36583. maw: {
  36584. height: math.unit(2.4, "meters"),
  36585. name: "Maw",
  36586. image: {
  36587. source: "./media/characters/rymel/maw.svg"
  36588. }
  36589. },
  36590. },
  36591. [
  36592. {
  36593. name: "House Drake",
  36594. height: math.unit(2, "feet")
  36595. },
  36596. {
  36597. name: "Reduced",
  36598. height: math.unit(4.5, "feet")
  36599. },
  36600. {
  36601. name: "Normal",
  36602. height: math.unit(9, "feet"),
  36603. default: true
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36609. {
  36610. front: {
  36611. height: math.unit(1.74, "meters"),
  36612. weight: math.unit(55, "kg"),
  36613. name: "Front",
  36614. image: {
  36615. source: "./media/characters/rubus/front.svg",
  36616. extra: 1894/1742,
  36617. bottom: 44/1938
  36618. }
  36619. },
  36620. },
  36621. [
  36622. {
  36623. name: "Normal",
  36624. height: math.unit(1.74, "meters"),
  36625. default: true
  36626. },
  36627. ]
  36628. ))
  36629. characterMakers.push(() => makeCharacter(
  36630. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36631. {
  36632. front: {
  36633. height: math.unit(5 + 2/12, "feet"),
  36634. weight: math.unit(112, "lb"),
  36635. name: "Front",
  36636. image: {
  36637. source: "./media/characters/cassie-kingston/front.svg",
  36638. extra: 1438/1390,
  36639. bottom: 47/1485
  36640. }
  36641. },
  36642. },
  36643. [
  36644. {
  36645. name: "Normal",
  36646. height: math.unit(5 + 2/12, "feet"),
  36647. default: true
  36648. },
  36649. {
  36650. name: "Macro",
  36651. height: math.unit(128, "feet")
  36652. },
  36653. {
  36654. name: "Megamacro",
  36655. height: math.unit(2.56, "miles")
  36656. },
  36657. ]
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36661. {
  36662. front: {
  36663. height: math.unit(7, "feet"),
  36664. name: "Front",
  36665. image: {
  36666. source: "./media/characters/fox/front.svg",
  36667. extra: 1798/1703,
  36668. bottom: 55/1853
  36669. }
  36670. },
  36671. back: {
  36672. height: math.unit(7, "feet"),
  36673. name: "Back",
  36674. image: {
  36675. source: "./media/characters/fox/back.svg",
  36676. extra: 1748/1649,
  36677. bottom: 32/1780
  36678. }
  36679. },
  36680. head: {
  36681. height: math.unit(1.95, "feet"),
  36682. name: "Head",
  36683. image: {
  36684. source: "./media/characters/fox/head.svg"
  36685. }
  36686. },
  36687. dick: {
  36688. height: math.unit(1.33, "feet"),
  36689. name: "Dick",
  36690. image: {
  36691. source: "./media/characters/fox/dick.svg"
  36692. }
  36693. },
  36694. foot: {
  36695. height: math.unit(1, "feet"),
  36696. name: "Foot",
  36697. image: {
  36698. source: "./media/characters/fox/foot.svg"
  36699. }
  36700. },
  36701. paw: {
  36702. height: math.unit(0.92, "feet"),
  36703. name: "Paw",
  36704. image: {
  36705. source: "./media/characters/fox/paw.svg"
  36706. }
  36707. },
  36708. },
  36709. [
  36710. {
  36711. name: "Small",
  36712. height: math.unit(3, "inches")
  36713. },
  36714. {
  36715. name: "\"Realistic\"",
  36716. height: math.unit(7, "feet")
  36717. },
  36718. {
  36719. name: "Normal",
  36720. height: math.unit(150, "feet"),
  36721. default: true
  36722. },
  36723. {
  36724. name: "BIG",
  36725. height: math.unit(1200, "feet")
  36726. },
  36727. {
  36728. name: "👀",
  36729. height: math.unit(5, "miles")
  36730. },
  36731. {
  36732. name: "👀👀👀",
  36733. height: math.unit(64, "miles")
  36734. },
  36735. ]
  36736. ))
  36737. characterMakers.push(() => makeCharacter(
  36738. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36739. {
  36740. front: {
  36741. height: math.unit(625, "feet"),
  36742. name: "Front",
  36743. image: {
  36744. source: "./media/characters/asonja-rossa/front.svg",
  36745. extra: 1833/1686,
  36746. bottom: 24/1857
  36747. }
  36748. },
  36749. back: {
  36750. height: math.unit(625, "feet"),
  36751. name: "Back",
  36752. image: {
  36753. source: "./media/characters/asonja-rossa/back.svg",
  36754. extra: 1852/1753,
  36755. bottom: 26/1878
  36756. }
  36757. },
  36758. },
  36759. [
  36760. {
  36761. name: "Macro",
  36762. height: math.unit(625, "feet"),
  36763. default: true
  36764. },
  36765. ]
  36766. ))
  36767. characterMakers.push(() => makeCharacter(
  36768. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36769. {
  36770. side: {
  36771. height: math.unit(6, "feet"),
  36772. weight: math.unit(150, "lb"),
  36773. name: "Side",
  36774. image: {
  36775. source: "./media/characters/rezukii/side.svg",
  36776. extra: 979/542,
  36777. bottom: 87/1066
  36778. }
  36779. },
  36780. },
  36781. [
  36782. {
  36783. name: "Tiny",
  36784. height: math.unit(2, "feet")
  36785. },
  36786. {
  36787. name: "Smol",
  36788. height: math.unit(4, "feet")
  36789. },
  36790. {
  36791. name: "Normal",
  36792. height: math.unit(8, "feet"),
  36793. default: true
  36794. },
  36795. {
  36796. name: "Big",
  36797. height: math.unit(12, "feet")
  36798. },
  36799. {
  36800. name: "Macro",
  36801. height: math.unit(30, "feet")
  36802. },
  36803. ]
  36804. ))
  36805. characterMakers.push(() => makeCharacter(
  36806. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36807. {
  36808. front: {
  36809. height: math.unit(14, "feet"),
  36810. weight: math.unit(9.5, "tonnes"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/dawnheart/front.svg",
  36814. extra: 2792/2675,
  36815. bottom: 64/2856
  36816. }
  36817. },
  36818. },
  36819. [
  36820. {
  36821. name: "Normal",
  36822. height: math.unit(14, "feet"),
  36823. default: true
  36824. },
  36825. ]
  36826. ))
  36827. characterMakers.push(() => makeCharacter(
  36828. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36829. {
  36830. front: {
  36831. height: math.unit(1.7, "m"),
  36832. name: "Front",
  36833. image: {
  36834. source: "./media/characters/gladi/front.svg",
  36835. extra: 1460/1362,
  36836. bottom: 19/1479
  36837. }
  36838. },
  36839. back: {
  36840. height: math.unit(1.7, "m"),
  36841. name: "Back",
  36842. image: {
  36843. source: "./media/characters/gladi/back.svg",
  36844. extra: 1459/1357,
  36845. bottom: 12/1471
  36846. }
  36847. },
  36848. feral: {
  36849. height: math.unit(2.05, "m"),
  36850. name: "Feral",
  36851. image: {
  36852. source: "./media/characters/gladi/feral.svg",
  36853. extra: 821/557,
  36854. bottom: 91/912
  36855. }
  36856. },
  36857. },
  36858. [
  36859. {
  36860. name: "Shortest",
  36861. height: math.unit(70, "cm")
  36862. },
  36863. {
  36864. name: "Normal",
  36865. height: math.unit(1.7, "m")
  36866. },
  36867. {
  36868. name: "Macro",
  36869. height: math.unit(10, "m"),
  36870. default: true
  36871. },
  36872. {
  36873. name: "Tallest",
  36874. height: math.unit(200, "m")
  36875. },
  36876. ]
  36877. ))
  36878. characterMakers.push(() => makeCharacter(
  36879. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36880. {
  36881. front: {
  36882. height: math.unit(5 + 7/12, "feet"),
  36883. weight: math.unit(92, "kg"),
  36884. name: "Front",
  36885. image: {
  36886. source: "./media/characters/erdno/front.svg",
  36887. extra: 1954/1889,
  36888. bottom: 22/1976
  36889. }
  36890. },
  36891. },
  36892. [
  36893. {
  36894. name: "Normal",
  36895. height: math.unit(5 + 7/12, "feet"),
  36896. default: true
  36897. },
  36898. ]
  36899. ))
  36900. characterMakers.push(() => makeCharacter(
  36901. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36902. {
  36903. front: {
  36904. height: math.unit(5 + 10/12, "feet"),
  36905. weight: math.unit(150, "lb"),
  36906. name: "Front",
  36907. image: {
  36908. source: "./media/characters/jamie/front.svg",
  36909. extra: 1908/1768,
  36910. bottom: 19/1927
  36911. }
  36912. },
  36913. },
  36914. [
  36915. {
  36916. name: "Minimum",
  36917. height: math.unit(2, "cm")
  36918. },
  36919. {
  36920. name: "Micro",
  36921. height: math.unit(3, "inches")
  36922. },
  36923. {
  36924. name: "Normal",
  36925. height: math.unit(5 + 10/12, "feet"),
  36926. default: true
  36927. },
  36928. {
  36929. name: "Macro",
  36930. height: math.unit(150, "feet")
  36931. },
  36932. {
  36933. name: "Megamacro",
  36934. height: math.unit(10000, "m")
  36935. },
  36936. ]
  36937. ))
  36938. characterMakers.push(() => makeCharacter(
  36939. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36940. {
  36941. front: {
  36942. height: math.unit(2, "meters"),
  36943. weight: math.unit(100, "kg"),
  36944. name: "Front",
  36945. image: {
  36946. source: "./media/characters/shiron/front.svg",
  36947. extra: 2103/1985,
  36948. bottom: 98/2201
  36949. }
  36950. },
  36951. back: {
  36952. height: math.unit(2, "meters"),
  36953. weight: math.unit(100, "kg"),
  36954. name: "Back",
  36955. image: {
  36956. source: "./media/characters/shiron/back.svg",
  36957. extra: 2110/2015,
  36958. bottom: 89/2199
  36959. }
  36960. },
  36961. hand: {
  36962. height: math.unit(0.96, "feet"),
  36963. name: "Hand",
  36964. image: {
  36965. source: "./media/characters/shiron/hand.svg"
  36966. }
  36967. },
  36968. foot: {
  36969. height: math.unit(1.464, "feet"),
  36970. name: "Foot",
  36971. image: {
  36972. source: "./media/characters/shiron/foot.svg"
  36973. }
  36974. },
  36975. },
  36976. [
  36977. {
  36978. name: "Normal",
  36979. height: math.unit(2, "meters")
  36980. },
  36981. {
  36982. name: "Macro",
  36983. height: math.unit(500, "meters"),
  36984. default: true
  36985. },
  36986. {
  36987. name: "Megamacro",
  36988. height: math.unit(20, "km")
  36989. },
  36990. ]
  36991. ))
  36992. characterMakers.push(() => makeCharacter(
  36993. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36994. {
  36995. front: {
  36996. height: math.unit(6, "feet"),
  36997. name: "Front",
  36998. image: {
  36999. source: "./media/characters/sam/front.svg",
  37000. extra: 849/826,
  37001. bottom: 19/868
  37002. }
  37003. },
  37004. },
  37005. [
  37006. {
  37007. name: "Normal",
  37008. height: math.unit(6, "feet"),
  37009. default: true
  37010. },
  37011. ]
  37012. ))
  37013. characterMakers.push(() => makeCharacter(
  37014. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37015. {
  37016. front: {
  37017. height: math.unit(8 + 4/12, "feet"),
  37018. weight: math.unit(122, "kg"),
  37019. name: "Front",
  37020. image: {
  37021. source: "./media/characters/namori-kurogawa/front.svg",
  37022. extra: 1894/1576,
  37023. bottom: 34/1928
  37024. }
  37025. },
  37026. },
  37027. [
  37028. {
  37029. name: "Normal",
  37030. height: math.unit(8 + 4/12, "feet"),
  37031. default: true
  37032. },
  37033. ]
  37034. ))
  37035. characterMakers.push(() => makeCharacter(
  37036. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37037. {
  37038. front: {
  37039. height: math.unit(9, "feet"),
  37040. weight: math.unit(621, "lb"),
  37041. name: "Front",
  37042. image: {
  37043. source: "./media/characters/unmru/front.svg",
  37044. extra: 1853/1747,
  37045. bottom: 73/1926
  37046. }
  37047. },
  37048. side: {
  37049. height: math.unit(9, "feet"),
  37050. weight: math.unit(621, "lb"),
  37051. name: "Side",
  37052. image: {
  37053. source: "./media/characters/unmru/side.svg",
  37054. extra: 1781/1671,
  37055. bottom: 127/1908
  37056. }
  37057. },
  37058. back: {
  37059. height: math.unit(9, "feet"),
  37060. weight: math.unit(621, "lb"),
  37061. name: "Back",
  37062. image: {
  37063. source: "./media/characters/unmru/back.svg",
  37064. extra: 1894/1765,
  37065. bottom: 75/1969
  37066. }
  37067. },
  37068. dick: {
  37069. height: math.unit(3, "feet"),
  37070. weight: math.unit(35, "lb"),
  37071. name: "Dick",
  37072. image: {
  37073. source: "./media/characters/unmru/dick.svg"
  37074. }
  37075. },
  37076. },
  37077. [
  37078. {
  37079. name: "Normal",
  37080. height: math.unit(9, "feet")
  37081. },
  37082. {
  37083. name: "Natural",
  37084. height: math.unit(27, "feet"),
  37085. default: true
  37086. },
  37087. {
  37088. name: "Giant",
  37089. height: math.unit(90, "feet")
  37090. },
  37091. {
  37092. name: "Kaiju",
  37093. height: math.unit(270, "feet")
  37094. },
  37095. {
  37096. name: "Macro",
  37097. height: math.unit(900, "feet")
  37098. },
  37099. {
  37100. name: "Macro+",
  37101. height: math.unit(2700, "feet")
  37102. },
  37103. {
  37104. name: "Megamacro",
  37105. height: math.unit(9000, "feet")
  37106. },
  37107. {
  37108. name: "City-Crushing",
  37109. height: math.unit(27000, "feet")
  37110. },
  37111. {
  37112. name: "Mountain-Mashing",
  37113. height: math.unit(90000, "feet")
  37114. },
  37115. {
  37116. name: "Earth-Eclipsing",
  37117. height: math.unit(2.7e8, "feet")
  37118. },
  37119. {
  37120. name: "Sol-Swallowing",
  37121. height: math.unit(9e10, "feet")
  37122. },
  37123. {
  37124. name: "Majoris-Munching",
  37125. height: math.unit(2.7e13, "feet")
  37126. },
  37127. ]
  37128. ))
  37129. characterMakers.push(() => makeCharacter(
  37130. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37131. {
  37132. front: {
  37133. height: math.unit(1, "inch"),
  37134. name: "Front",
  37135. image: {
  37136. source: "./media/characters/squeaks-mouse/front.svg",
  37137. extra: 352/308,
  37138. bottom: 25/377
  37139. }
  37140. },
  37141. },
  37142. [
  37143. {
  37144. name: "Micro",
  37145. height: math.unit(1, "inch"),
  37146. default: true
  37147. },
  37148. ]
  37149. ))
  37150. characterMakers.push(() => makeCharacter(
  37151. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37152. {
  37153. side: {
  37154. height: math.unit(35, "feet"),
  37155. name: "Side",
  37156. image: {
  37157. source: "./media/characters/sayko/side.svg",
  37158. extra: 1697/1021,
  37159. bottom: 82/1779
  37160. }
  37161. },
  37162. head: {
  37163. height: math.unit(16, "feet"),
  37164. name: "Head",
  37165. image: {
  37166. source: "./media/characters/sayko/head.svg"
  37167. }
  37168. },
  37169. forepaw: {
  37170. height: math.unit(7.85, "feet"),
  37171. name: "Forepaw",
  37172. image: {
  37173. source: "./media/characters/sayko/forepaw.svg"
  37174. }
  37175. },
  37176. hindpaw: {
  37177. height: math.unit(8.8, "feet"),
  37178. name: "Hindpaw",
  37179. image: {
  37180. source: "./media/characters/sayko/hindpaw.svg"
  37181. }
  37182. },
  37183. },
  37184. [
  37185. {
  37186. name: "Normal",
  37187. height: math.unit(35, "feet"),
  37188. default: true
  37189. },
  37190. {
  37191. name: "Colossus",
  37192. height: math.unit(100, "meters")
  37193. },
  37194. {
  37195. name: "\"Small\" Deity",
  37196. height: math.unit(1, "km")
  37197. },
  37198. {
  37199. name: "\"Large\" Deity",
  37200. height: math.unit(15, "km")
  37201. },
  37202. ]
  37203. ))
  37204. characterMakers.push(() => makeCharacter(
  37205. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37206. {
  37207. front: {
  37208. height: math.unit(6, "feet"),
  37209. weight: math.unit(250, "lb"),
  37210. name: "Front",
  37211. image: {
  37212. source: "./media/characters/mukiro/front.svg",
  37213. extra: 1368/1310,
  37214. bottom: 34/1402
  37215. }
  37216. },
  37217. },
  37218. [
  37219. {
  37220. name: "Normal",
  37221. height: math.unit(6, "feet"),
  37222. default: true
  37223. },
  37224. ]
  37225. ))
  37226. characterMakers.push(() => makeCharacter(
  37227. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37228. {
  37229. front: {
  37230. height: math.unit(12 + 4/12, "feet"),
  37231. name: "Front",
  37232. image: {
  37233. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37234. extra: 1346/1311,
  37235. bottom: 65/1411
  37236. }
  37237. },
  37238. },
  37239. [
  37240. {
  37241. name: "Base",
  37242. height: math.unit(12 + 4/12, "feet"),
  37243. default: true
  37244. },
  37245. {
  37246. name: "Macro",
  37247. height: math.unit(150, "feet")
  37248. },
  37249. {
  37250. name: "Mega",
  37251. height: math.unit(2, "miles")
  37252. },
  37253. {
  37254. name: "Demi God",
  37255. height: math.unit(4, "AU")
  37256. },
  37257. {
  37258. name: "God Size",
  37259. height: math.unit(1, "universe")
  37260. },
  37261. ]
  37262. ))
  37263. characterMakers.push(() => makeCharacter(
  37264. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37265. {
  37266. front: {
  37267. height: math.unit(3 + 3/12, "feet"),
  37268. weight: math.unit(88, "lb"),
  37269. name: "Front",
  37270. image: {
  37271. source: "./media/characters/trey/front.svg",
  37272. extra: 1815/1509,
  37273. bottom: 60/1875
  37274. }
  37275. },
  37276. },
  37277. [
  37278. {
  37279. name: "Normal",
  37280. height: math.unit(3 + 3/12, "feet"),
  37281. default: true
  37282. },
  37283. ]
  37284. ))
  37285. characterMakers.push(() => makeCharacter(
  37286. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37287. {
  37288. front: {
  37289. height: math.unit(4, "meters"),
  37290. name: "Front",
  37291. image: {
  37292. source: "./media/characters/adelonda/front.svg",
  37293. extra: 1942/1775,
  37294. bottom: 33/1975
  37295. }
  37296. },
  37297. back: {
  37298. height: math.unit(4, "meters"),
  37299. name: "Back",
  37300. image: {
  37301. source: "./media/characters/adelonda/back.svg",
  37302. extra: 1932/1780,
  37303. bottom: 42/1974
  37304. }
  37305. },
  37306. bust: {
  37307. height: math.unit(1.8, "meter"),
  37308. name: "Bust",
  37309. image: {
  37310. source: "./media/characters/adelonda/bust.svg"
  37311. }
  37312. },
  37313. },
  37314. [
  37315. {
  37316. name: "Normal",
  37317. height: math.unit(4, "meters"),
  37318. default: true
  37319. },
  37320. ]
  37321. ))
  37322. characterMakers.push(() => makeCharacter(
  37323. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37324. {
  37325. front: {
  37326. height: math.unit(8 + 4/12, "feet"),
  37327. weight: math.unit(670, "lb"),
  37328. name: "Front",
  37329. image: {
  37330. source: "./media/characters/acadiel/front.svg",
  37331. extra: 1901/1595,
  37332. bottom: 142/2043
  37333. }
  37334. },
  37335. },
  37336. [
  37337. {
  37338. name: "Normal",
  37339. height: math.unit(8 + 4/12, "feet"),
  37340. default: true
  37341. },
  37342. {
  37343. name: "Macro",
  37344. height: math.unit(200, "feet")
  37345. },
  37346. ]
  37347. ))
  37348. characterMakers.push(() => makeCharacter(
  37349. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37350. {
  37351. front: {
  37352. height: math.unit(6 + 2/12, "feet"),
  37353. weight: math.unit(185, "lb"),
  37354. name: "Front",
  37355. image: {
  37356. source: "./media/characters/kayne-ein/front.svg",
  37357. extra: 1780/1560,
  37358. bottom: 81/1861
  37359. }
  37360. },
  37361. },
  37362. [
  37363. {
  37364. name: "Normal",
  37365. height: math.unit(6 + 2/12, "feet"),
  37366. default: true
  37367. },
  37368. {
  37369. name: "Transformation Stage",
  37370. height: math.unit(15, "feet")
  37371. },
  37372. {
  37373. name: "Macro",
  37374. height: math.unit(150, "feet")
  37375. },
  37376. {
  37377. name: "Earth's Shadow",
  37378. height: math.unit(6200, "miles")
  37379. },
  37380. {
  37381. name: "Universal Demon",
  37382. height: math.unit(28e9, "parsecs")
  37383. },
  37384. {
  37385. name: "Multiverse God",
  37386. height: math.unit(3, "multiverses")
  37387. },
  37388. ]
  37389. ))
  37390. characterMakers.push(() => makeCharacter(
  37391. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37392. {
  37393. front: {
  37394. height: math.unit(5 + 5/12, "feet"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/fawn/front.svg",
  37398. extra: 1873/1731,
  37399. bottom: 95/1968
  37400. }
  37401. },
  37402. back: {
  37403. height: math.unit(5 + 5/12, "feet"),
  37404. name: "Back",
  37405. image: {
  37406. source: "./media/characters/fawn/back.svg",
  37407. extra: 1813/1700,
  37408. bottom: 14/1827
  37409. }
  37410. },
  37411. hoof: {
  37412. height: math.unit(1.45, "feet"),
  37413. name: "Hoof",
  37414. image: {
  37415. source: "./media/characters/fawn/hoof.svg"
  37416. }
  37417. },
  37418. },
  37419. [
  37420. {
  37421. name: "Normal",
  37422. height: math.unit(5 + 5/12, "feet"),
  37423. default: true
  37424. },
  37425. ]
  37426. ))
  37427. characterMakers.push(() => makeCharacter(
  37428. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37429. {
  37430. front: {
  37431. height: math.unit(2 + 5/12, "feet"),
  37432. name: "Front",
  37433. image: {
  37434. source: "./media/characters/orion/front.svg",
  37435. extra: 1366/1304,
  37436. bottom: 43/1409
  37437. }
  37438. },
  37439. paw: {
  37440. height: math.unit(0.52, "feet"),
  37441. name: "Paw",
  37442. image: {
  37443. source: "./media/characters/orion/paw.svg"
  37444. }
  37445. },
  37446. },
  37447. [
  37448. {
  37449. name: "Normal",
  37450. height: math.unit(2 + 5/12, "feet"),
  37451. default: true
  37452. },
  37453. ]
  37454. ))
  37455. characterMakers.push(() => makeCharacter(
  37456. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37457. {
  37458. front: {
  37459. height: math.unit(5 + 10/12, "feet"),
  37460. name: "Front",
  37461. image: {
  37462. source: "./media/characters/vera/front.svg",
  37463. extra: 1680/1575,
  37464. bottom: 49/1729
  37465. }
  37466. },
  37467. back: {
  37468. height: math.unit(5 + 10/12, "feet"),
  37469. name: "Back",
  37470. image: {
  37471. source: "./media/characters/vera/back.svg",
  37472. extra: 1700/1588,
  37473. bottom: 18/1718
  37474. }
  37475. },
  37476. arcanine: {
  37477. height: math.unit(6 + 8/12, "feet"),
  37478. name: "Arcanine",
  37479. image: {
  37480. source: "./media/characters/vera/arcanine.svg",
  37481. extra: 1590/1511,
  37482. bottom: 71/1661
  37483. }
  37484. },
  37485. maw: {
  37486. height: math.unit(0.82, "feet"),
  37487. name: "Maw",
  37488. image: {
  37489. source: "./media/characters/vera/maw.svg"
  37490. }
  37491. },
  37492. mawArcanine: {
  37493. height: math.unit(0.97, "feet"),
  37494. name: "Maw (Arcanine)",
  37495. image: {
  37496. source: "./media/characters/vera/maw-arcanine.svg"
  37497. }
  37498. },
  37499. paw: {
  37500. height: math.unit(0.75, "feet"),
  37501. name: "Paw",
  37502. image: {
  37503. source: "./media/characters/vera/paw.svg"
  37504. }
  37505. },
  37506. pawprint: {
  37507. height: math.unit(0.52, "feet"),
  37508. name: "Pawprint",
  37509. image: {
  37510. source: "./media/characters/vera/pawprint.svg"
  37511. }
  37512. },
  37513. },
  37514. [
  37515. {
  37516. name: "Normal",
  37517. height: math.unit(5 + 10/12, "feet"),
  37518. default: true
  37519. },
  37520. {
  37521. name: "Macro",
  37522. height: math.unit(75, "feet")
  37523. },
  37524. ]
  37525. ))
  37526. characterMakers.push(() => makeCharacter(
  37527. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37528. {
  37529. front: {
  37530. height: math.unit(4, "feet"),
  37531. weight: math.unit(40, "lb"),
  37532. name: "Front",
  37533. image: {
  37534. source: "./media/characters/orvan-rabbit/front.svg",
  37535. extra: 1896/1642,
  37536. bottom: 29/1925
  37537. }
  37538. },
  37539. },
  37540. [
  37541. {
  37542. name: "Normal",
  37543. height: math.unit(4, "feet"),
  37544. default: true
  37545. },
  37546. ]
  37547. ))
  37548. characterMakers.push(() => makeCharacter(
  37549. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37550. {
  37551. front: {
  37552. height: math.unit(6, "feet"),
  37553. weight: math.unit(168, "lb"),
  37554. name: "Front",
  37555. image: {
  37556. source: "./media/characters/lisa/front.svg",
  37557. extra: 2065/1867,
  37558. bottom: 46/2111
  37559. }
  37560. },
  37561. back: {
  37562. height: math.unit(6, "feet"),
  37563. weight: math.unit(168, "lb"),
  37564. name: "Back",
  37565. image: {
  37566. source: "./media/characters/lisa/back.svg",
  37567. extra: 1982/1838,
  37568. bottom: 29/2011
  37569. }
  37570. },
  37571. maw: {
  37572. height: math.unit(0.81, "feet"),
  37573. name: "Maw",
  37574. image: {
  37575. source: "./media/characters/lisa/maw.svg"
  37576. }
  37577. },
  37578. paw: {
  37579. height: math.unit(0.9, "feet"),
  37580. name: "Paw",
  37581. image: {
  37582. source: "./media/characters/lisa/paw.svg"
  37583. }
  37584. },
  37585. caribousune: {
  37586. height: math.unit(7 + 2/12, "feet"),
  37587. weight: math.unit(268, "lb"),
  37588. name: "Caribousune",
  37589. image: {
  37590. source: "./media/characters/lisa/caribousune.svg",
  37591. extra: 1843/1633,
  37592. bottom: 29/1872
  37593. }
  37594. },
  37595. frontCaribousune: {
  37596. height: math.unit(7 + 2/12, "feet"),
  37597. weight: math.unit(268, "lb"),
  37598. name: "Front (Caribousune)",
  37599. image: {
  37600. source: "./media/characters/lisa/front-caribousune.svg",
  37601. extra: 1818/1638,
  37602. bottom: 52/1870
  37603. }
  37604. },
  37605. sideCaribousune: {
  37606. height: math.unit(7 + 2/12, "feet"),
  37607. weight: math.unit(268, "lb"),
  37608. name: "Side (Caribousune)",
  37609. image: {
  37610. source: "./media/characters/lisa/side-caribousune.svg",
  37611. extra: 1851/1635,
  37612. bottom: 16/1867
  37613. }
  37614. },
  37615. backCaribousune: {
  37616. height: math.unit(7 + 2/12, "feet"),
  37617. weight: math.unit(268, "lb"),
  37618. name: "Back (Caribousune)",
  37619. image: {
  37620. source: "./media/characters/lisa/back-caribousune.svg",
  37621. extra: 1801/1604,
  37622. bottom: 44/1845
  37623. }
  37624. },
  37625. caribou: {
  37626. height: math.unit(7 + 2/12, "feet"),
  37627. weight: math.unit(268, "lb"),
  37628. name: "Caribou",
  37629. image: {
  37630. source: "./media/characters/lisa/caribou.svg",
  37631. extra: 1843/1633,
  37632. bottom: 29/1872
  37633. }
  37634. },
  37635. frontCaribou: {
  37636. height: math.unit(7 + 2/12, "feet"),
  37637. weight: math.unit(268, "lb"),
  37638. name: "Front (Caribou)",
  37639. image: {
  37640. source: "./media/characters/lisa/front-caribou.svg",
  37641. extra: 1818/1638,
  37642. bottom: 52/1870
  37643. }
  37644. },
  37645. sideCaribou: {
  37646. height: math.unit(7 + 2/12, "feet"),
  37647. weight: math.unit(268, "lb"),
  37648. name: "Side (Caribou)",
  37649. image: {
  37650. source: "./media/characters/lisa/side-caribou.svg",
  37651. extra: 1851/1635,
  37652. bottom: 16/1867
  37653. }
  37654. },
  37655. backCaribou: {
  37656. height: math.unit(7 + 2/12, "feet"),
  37657. weight: math.unit(268, "lb"),
  37658. name: "Back (Caribou)",
  37659. image: {
  37660. source: "./media/characters/lisa/back-caribou.svg",
  37661. extra: 1801/1604,
  37662. bottom: 44/1845
  37663. }
  37664. },
  37665. mawCaribou: {
  37666. height: math.unit(1.45, "feet"),
  37667. name: "Maw (Caribou)",
  37668. image: {
  37669. source: "./media/characters/lisa/maw-caribou.svg"
  37670. }
  37671. },
  37672. mawCaribousune: {
  37673. height: math.unit(1.45, "feet"),
  37674. name: "Maw (Caribousune)",
  37675. image: {
  37676. source: "./media/characters/lisa/maw-caribousune.svg"
  37677. }
  37678. },
  37679. pawCaribousune: {
  37680. height: math.unit(1.61, "feet"),
  37681. name: "Paw (Caribou)",
  37682. image: {
  37683. source: "./media/characters/lisa/paw-caribousune.svg"
  37684. }
  37685. },
  37686. },
  37687. [
  37688. {
  37689. name: "Normal",
  37690. height: math.unit(6, "feet")
  37691. },
  37692. {
  37693. name: "God Size",
  37694. height: math.unit(72, "feet"),
  37695. default: true
  37696. },
  37697. {
  37698. name: "Towering",
  37699. height: math.unit(288, "feet")
  37700. },
  37701. {
  37702. name: "City Size",
  37703. height: math.unit(48384, "feet")
  37704. },
  37705. {
  37706. name: "Continental",
  37707. height: math.unit(4200, "miles")
  37708. },
  37709. {
  37710. name: "Planet Eater",
  37711. height: math.unit(42, "earths")
  37712. },
  37713. {
  37714. name: "Star Swallower",
  37715. height: math.unit(42, "solarradii")
  37716. },
  37717. {
  37718. name: "System Swallower",
  37719. height: math.unit(84000, "AU")
  37720. },
  37721. {
  37722. name: "Galaxy Gobbler",
  37723. height: math.unit(42, "galaxies")
  37724. },
  37725. {
  37726. name: "Universe Devourer",
  37727. height: math.unit(42, "universes")
  37728. },
  37729. {
  37730. name: "Multiverse Muncher",
  37731. height: math.unit(42, "multiverses")
  37732. },
  37733. ]
  37734. ))
  37735. characterMakers.push(() => makeCharacter(
  37736. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37737. {
  37738. front: {
  37739. height: math.unit(36, "feet"),
  37740. name: "Front",
  37741. image: {
  37742. source: "./media/characters/shadow-rat/front.svg",
  37743. extra: 1845/1758,
  37744. bottom: 83/1928
  37745. }
  37746. },
  37747. },
  37748. [
  37749. {
  37750. name: "Macro",
  37751. height: math.unit(36, "feet"),
  37752. default: true
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37758. {
  37759. side: {
  37760. height: math.unit(8, "feet"),
  37761. weight: math.unit(2630, "lb"),
  37762. name: "Side",
  37763. image: {
  37764. source: "./media/characters/torallia/side.svg",
  37765. extra: 2164/2021,
  37766. bottom: 371/2535
  37767. }
  37768. },
  37769. },
  37770. [
  37771. {
  37772. name: "Mortal Interaction",
  37773. height: math.unit(8, "feet")
  37774. },
  37775. {
  37776. name: "Natural",
  37777. height: math.unit(24, "feet"),
  37778. default: true
  37779. },
  37780. {
  37781. name: "Giant",
  37782. height: math.unit(80, "feet")
  37783. },
  37784. {
  37785. name: "Kaiju",
  37786. height: math.unit(240, "feet")
  37787. },
  37788. {
  37789. name: "Macro",
  37790. height: math.unit(800, "feet")
  37791. },
  37792. {
  37793. name: "Macro+",
  37794. height: math.unit(2400, "feet")
  37795. },
  37796. {
  37797. name: "Macro++",
  37798. height: math.unit(8000, "feet")
  37799. },
  37800. {
  37801. name: "City-Crushing",
  37802. height: math.unit(24000, "feet")
  37803. },
  37804. {
  37805. name: "Mountain-Mashing",
  37806. height: math.unit(80000, "feet")
  37807. },
  37808. {
  37809. name: "District Demolisher",
  37810. height: math.unit(240000, "feet")
  37811. },
  37812. {
  37813. name: "Tri-County Terror",
  37814. height: math.unit(800000, "feet")
  37815. },
  37816. {
  37817. name: "State Smasher",
  37818. height: math.unit(2.4e6, "feet")
  37819. },
  37820. {
  37821. name: "Nation Nemesis",
  37822. height: math.unit(8e6, "feet")
  37823. },
  37824. {
  37825. name: "Continent Cracker",
  37826. height: math.unit(2.4e7, "feet")
  37827. },
  37828. {
  37829. name: "Planet-Pillaging",
  37830. height: math.unit(8e7, "feet")
  37831. },
  37832. {
  37833. name: "Earth-Eclipsing",
  37834. height: math.unit(2.4e8, "feet")
  37835. },
  37836. {
  37837. name: "Jovian-Jostling",
  37838. height: math.unit(8e8, "feet")
  37839. },
  37840. {
  37841. name: "Gas Giant Gulper",
  37842. height: math.unit(2.4e9, "feet")
  37843. },
  37844. {
  37845. name: "Astral Annihilator",
  37846. height: math.unit(8e9, "feet")
  37847. },
  37848. {
  37849. name: "Celestial Conqueror",
  37850. height: math.unit(2.4e10, "feet")
  37851. },
  37852. {
  37853. name: "Sol-Swallowing",
  37854. height: math.unit(8e10, "feet")
  37855. },
  37856. {
  37857. name: "Hunter of the Heavens",
  37858. height: math.unit(2.4e13, "feet")
  37859. },
  37860. ]
  37861. ))
  37862. characterMakers.push(() => makeCharacter(
  37863. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37864. {
  37865. front: {
  37866. height: math.unit(6 + 8/12, "feet"),
  37867. name: "Front",
  37868. image: {
  37869. source: "./media/characters/rebecca-pawlson/front.svg",
  37870. extra: 1737/1596,
  37871. bottom: 107/1844
  37872. }
  37873. },
  37874. back: {
  37875. height: math.unit(6 + 8/12, "feet"),
  37876. name: "Back",
  37877. image: {
  37878. source: "./media/characters/rebecca-pawlson/back.svg",
  37879. extra: 1702/1523,
  37880. bottom: 86/1788
  37881. }
  37882. },
  37883. },
  37884. [
  37885. {
  37886. name: "Normal",
  37887. height: math.unit(6 + 8/12, "feet")
  37888. },
  37889. {
  37890. name: "Mini Macro",
  37891. height: math.unit(10, "feet"),
  37892. default: true
  37893. },
  37894. {
  37895. name: "Macro",
  37896. height: math.unit(100, "feet")
  37897. },
  37898. {
  37899. name: "Mega Macro",
  37900. height: math.unit(2500, "feet")
  37901. },
  37902. {
  37903. name: "Giga Macro",
  37904. height: math.unit(50, "miles")
  37905. },
  37906. ]
  37907. ))
  37908. characterMakers.push(() => makeCharacter(
  37909. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37910. {
  37911. front: {
  37912. height: math.unit(7 + 6/12, "feet"),
  37913. weight: math.unit(600, "lb"),
  37914. name: "Front",
  37915. image: {
  37916. source: "./media/characters/moxie-nova/front.svg",
  37917. extra: 1734/1652,
  37918. bottom: 41/1775
  37919. }
  37920. },
  37921. },
  37922. [
  37923. {
  37924. name: "Normal",
  37925. height: math.unit(7 + 6/12, "feet"),
  37926. default: true
  37927. },
  37928. ]
  37929. ))
  37930. characterMakers.push(() => makeCharacter(
  37931. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37932. {
  37933. front: {
  37934. height: math.unit(5, "feet"),
  37935. weight: math.unit(150, "lb"),
  37936. name: "Front",
  37937. image: {
  37938. source: "./media/characters/tiffany/front.svg",
  37939. extra: 1941/1845,
  37940. bottom: 58/1999
  37941. }
  37942. },
  37943. },
  37944. [
  37945. {
  37946. name: "Normal",
  37947. height: math.unit(5, "feet"),
  37948. default: true
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(8, "feet"),
  37957. weight: math.unit(300, "lb"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/raxinath/front.svg",
  37961. extra: 1407/1309,
  37962. bottom: 39/1446
  37963. }
  37964. },
  37965. back: {
  37966. height: math.unit(8, "feet"),
  37967. weight: math.unit(300, "lb"),
  37968. name: "Back",
  37969. image: {
  37970. source: "./media/characters/raxinath/back.svg",
  37971. extra: 1405/1315,
  37972. bottom: 9/1414
  37973. }
  37974. },
  37975. },
  37976. [
  37977. {
  37978. name: "Speck",
  37979. height: math.unit(0.5, "nm")
  37980. },
  37981. {
  37982. name: "Micro",
  37983. height: math.unit(3, "inches")
  37984. },
  37985. {
  37986. name: "Kobold",
  37987. height: math.unit(3, "feet")
  37988. },
  37989. {
  37990. name: "Normal",
  37991. height: math.unit(8, "feet"),
  37992. default: true
  37993. },
  37994. {
  37995. name: "Giant",
  37996. height: math.unit(50, "feet")
  37997. },
  37998. {
  37999. name: "Macro",
  38000. height: math.unit(1000, "feet")
  38001. },
  38002. {
  38003. name: "Megamacro",
  38004. height: math.unit(1, "mile")
  38005. },
  38006. ]
  38007. ))
  38008. characterMakers.push(() => makeCharacter(
  38009. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38010. {
  38011. front: {
  38012. height: math.unit(10, "feet"),
  38013. weight: math.unit(1442, "lb"),
  38014. name: "Front",
  38015. image: {
  38016. source: "./media/characters/mal-dragon/front.svg",
  38017. extra: 1515/1444,
  38018. bottom: 113/1628
  38019. }
  38020. },
  38021. back: {
  38022. height: math.unit(10, "feet"),
  38023. weight: math.unit(1442, "lb"),
  38024. name: "Back",
  38025. image: {
  38026. source: "./media/characters/mal-dragon/back.svg",
  38027. extra: 1527/1434,
  38028. bottom: 25/1552
  38029. }
  38030. },
  38031. },
  38032. [
  38033. {
  38034. name: "Mortal Interaction",
  38035. height: math.unit(10, "feet"),
  38036. default: true
  38037. },
  38038. {
  38039. name: "Large",
  38040. height: math.unit(30, "feet")
  38041. },
  38042. {
  38043. name: "Kaiju",
  38044. height: math.unit(300, "feet")
  38045. },
  38046. {
  38047. name: "Megamacro",
  38048. height: math.unit(10000, "feet")
  38049. },
  38050. {
  38051. name: "Continent Cracker",
  38052. height: math.unit(30000000, "feet")
  38053. },
  38054. {
  38055. name: "Sol-Swallowing",
  38056. height: math.unit(1e11, "feet")
  38057. },
  38058. {
  38059. name: "Light Universal",
  38060. height: math.unit(5, "universes")
  38061. },
  38062. {
  38063. name: "Universe Atoms",
  38064. height: math.unit(1.829e9, "universes")
  38065. },
  38066. {
  38067. name: "Light Multiversal",
  38068. height: math.unit(5, "multiverses")
  38069. },
  38070. {
  38071. name: "Multiverse Atoms",
  38072. height: math.unit(1.829e9, "multiverses")
  38073. },
  38074. {
  38075. name: "Fabric of Time",
  38076. height: math.unit(1e262, "multiverses")
  38077. },
  38078. ]
  38079. ))
  38080. characterMakers.push(() => makeCharacter(
  38081. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38082. {
  38083. front: {
  38084. height: math.unit(9, "feet"),
  38085. weight: math.unit(1050, "lb"),
  38086. name: "Front",
  38087. image: {
  38088. source: "./media/characters/tabitha/front.svg",
  38089. extra: 2083/1994,
  38090. bottom: 68/2151
  38091. }
  38092. },
  38093. },
  38094. [
  38095. {
  38096. name: "Baseline",
  38097. height: math.unit(9, "feet"),
  38098. default: true
  38099. },
  38100. {
  38101. name: "Giant",
  38102. height: math.unit(90, "feet")
  38103. },
  38104. {
  38105. name: "Macro",
  38106. height: math.unit(900, "feet")
  38107. },
  38108. {
  38109. name: "Megamacro",
  38110. height: math.unit(9000, "feet")
  38111. },
  38112. {
  38113. name: "City-Crushing",
  38114. height: math.unit(27000, "feet")
  38115. },
  38116. {
  38117. name: "Mountain-Mashing",
  38118. height: math.unit(90000, "feet")
  38119. },
  38120. {
  38121. name: "Nation Nemesis",
  38122. height: math.unit(9e6, "feet")
  38123. },
  38124. {
  38125. name: "Continent Cracker",
  38126. height: math.unit(27e6, "feet")
  38127. },
  38128. {
  38129. name: "Earth-Eclipsing",
  38130. height: math.unit(2.7e8, "feet")
  38131. },
  38132. {
  38133. name: "Gas Giant Gulper",
  38134. height: math.unit(2.7e9, "feet")
  38135. },
  38136. {
  38137. name: "Sol-Swallowing",
  38138. height: math.unit(9e10, "feet")
  38139. },
  38140. {
  38141. name: "Galaxy Gulper",
  38142. height: math.unit(9, "galaxies")
  38143. },
  38144. {
  38145. name: "Cosmos Churner",
  38146. height: math.unit(9, "universes")
  38147. },
  38148. ]
  38149. ))
  38150. characterMakers.push(() => makeCharacter(
  38151. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38152. {
  38153. front: {
  38154. height: math.unit(160, "cm"),
  38155. weight: math.unit(55, "kg"),
  38156. name: "Front",
  38157. image: {
  38158. source: "./media/characters/tow/front.svg",
  38159. extra: 1751/1722,
  38160. bottom: 74/1825
  38161. }
  38162. },
  38163. },
  38164. [
  38165. {
  38166. name: "Norm",
  38167. height: math.unit(160, "cm")
  38168. },
  38169. {
  38170. name: "Casual",
  38171. height: math.unit(3200, "m"),
  38172. default: true
  38173. },
  38174. {
  38175. name: "Show-Off",
  38176. height: math.unit(160, "km")
  38177. },
  38178. ]
  38179. ))
  38180. characterMakers.push(() => makeCharacter(
  38181. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38182. {
  38183. front: {
  38184. height: math.unit(7 + 11/12, "feet"),
  38185. weight: math.unit(342.8, "lb"),
  38186. name: "Front",
  38187. image: {
  38188. source: "./media/characters/vivian-orca-dragon/front.svg",
  38189. extra: 1890/1865,
  38190. bottom: 28/1918
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Micro",
  38197. height: math.unit(5, "inches")
  38198. },
  38199. {
  38200. name: "Normal",
  38201. height: math.unit(7 + 11/12, "feet"),
  38202. default: true
  38203. },
  38204. {
  38205. name: "Macro",
  38206. height: math.unit(395 + 7/12, "feet")
  38207. },
  38208. ]
  38209. ))
  38210. characterMakers.push(() => makeCharacter(
  38211. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38212. {
  38213. side: {
  38214. height: math.unit(10, "feet"),
  38215. weight: math.unit(1442, "lb"),
  38216. name: "Side",
  38217. image: {
  38218. source: "./media/characters/lotherakon/side.svg",
  38219. extra: 1604/1497,
  38220. bottom: 89/1693
  38221. }
  38222. },
  38223. },
  38224. [
  38225. {
  38226. name: "Mortal Interaction",
  38227. height: math.unit(10, "feet")
  38228. },
  38229. {
  38230. name: "Large",
  38231. height: math.unit(30, "feet"),
  38232. default: true
  38233. },
  38234. {
  38235. name: "Giant",
  38236. height: math.unit(100, "feet")
  38237. },
  38238. {
  38239. name: "Kaiju",
  38240. height: math.unit(300, "feet")
  38241. },
  38242. {
  38243. name: "Macro",
  38244. height: math.unit(1000, "feet")
  38245. },
  38246. {
  38247. name: "Macro+",
  38248. height: math.unit(3000, "feet")
  38249. },
  38250. {
  38251. name: "Megamacro",
  38252. height: math.unit(10000, "feet")
  38253. },
  38254. {
  38255. name: "City-Crushing",
  38256. height: math.unit(30000, "feet")
  38257. },
  38258. {
  38259. name: "Continent Cracker",
  38260. height: math.unit(30e6, "feet")
  38261. },
  38262. {
  38263. name: "Earth Eclipsing",
  38264. height: math.unit(3e8, "feet")
  38265. },
  38266. {
  38267. name: "Gas Giant Gulper",
  38268. height: math.unit(3e9, "feet")
  38269. },
  38270. {
  38271. name: "Sol-Swallowing",
  38272. height: math.unit(1e11, "feet")
  38273. },
  38274. {
  38275. name: "System Swallower",
  38276. height: math.unit(3e14, "feet")
  38277. },
  38278. {
  38279. name: "Galaxy Gulper",
  38280. height: math.unit(10, "galaxies")
  38281. },
  38282. {
  38283. name: "Light Universal",
  38284. height: math.unit(5, "universes")
  38285. },
  38286. {
  38287. name: "Universe Palm",
  38288. height: math.unit(20, "universes")
  38289. },
  38290. {
  38291. name: "Light Multiversal",
  38292. height: math.unit(5, "multiverses")
  38293. },
  38294. {
  38295. name: "Multiverse Palm",
  38296. height: math.unit(20, "multiverses")
  38297. },
  38298. {
  38299. name: "Inferno Incarnate",
  38300. height: math.unit(1e7, "multiverses")
  38301. },
  38302. ]
  38303. ))
  38304. characterMakers.push(() => makeCharacter(
  38305. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38306. {
  38307. front: {
  38308. height: math.unit(8, "feet"),
  38309. weight: math.unit(1200, "lb"),
  38310. name: "Front",
  38311. image: {
  38312. source: "./media/characters/malithee/front.svg",
  38313. extra: 1675/1640,
  38314. bottom: 162/1837
  38315. }
  38316. },
  38317. },
  38318. [
  38319. {
  38320. name: "Mortal Interaction",
  38321. height: math.unit(8, "feet"),
  38322. default: true
  38323. },
  38324. {
  38325. name: "Large",
  38326. height: math.unit(24, "feet")
  38327. },
  38328. {
  38329. name: "Kaiju",
  38330. height: math.unit(240, "feet")
  38331. },
  38332. {
  38333. name: "Megamacro",
  38334. height: math.unit(8000, "feet")
  38335. },
  38336. {
  38337. name: "Continent Cracker",
  38338. height: math.unit(24e6, "feet")
  38339. },
  38340. {
  38341. name: "Earth-Eclipsing",
  38342. height: math.unit(2.4e8, "feet")
  38343. },
  38344. {
  38345. name: "Sol-Swallowing",
  38346. height: math.unit(8e10, "feet")
  38347. },
  38348. {
  38349. name: "Galaxy Gulper",
  38350. height: math.unit(8, "galaxies")
  38351. },
  38352. {
  38353. name: "Light Universal",
  38354. height: math.unit(4, "universes")
  38355. },
  38356. {
  38357. name: "Universe Atoms",
  38358. height: math.unit(1.829e9, "universes")
  38359. },
  38360. {
  38361. name: "Light Multiversal",
  38362. height: math.unit(4, "multiverses")
  38363. },
  38364. {
  38365. name: "Multiverse Atoms",
  38366. height: math.unit(1.829e9, "multiverses")
  38367. },
  38368. {
  38369. name: "Nigh-Omnipresence",
  38370. height: math.unit(8e261, "multiverses")
  38371. },
  38372. ]
  38373. ))
  38374. characterMakers.push(() => makeCharacter(
  38375. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38376. {
  38377. front: {
  38378. height: math.unit(10, "feet"),
  38379. weight: math.unit(1500, "lb"),
  38380. name: "Front",
  38381. image: {
  38382. source: "./media/characters/miles-thestia/front.svg",
  38383. extra: 1812/1727,
  38384. bottom: 86/1898
  38385. }
  38386. },
  38387. back: {
  38388. height: math.unit(10, "feet"),
  38389. weight: math.unit(1500, "lb"),
  38390. name: "Back",
  38391. image: {
  38392. source: "./media/characters/miles-thestia/back.svg",
  38393. extra: 1799/1690,
  38394. bottom: 47/1846
  38395. }
  38396. },
  38397. frontNsfw: {
  38398. height: math.unit(10, "feet"),
  38399. weight: math.unit(1500, "lb"),
  38400. name: "Front (NSFW)",
  38401. image: {
  38402. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38403. extra: 1812/1727,
  38404. bottom: 86/1898
  38405. }
  38406. },
  38407. },
  38408. [
  38409. {
  38410. name: "Mini-Macro",
  38411. height: math.unit(10, "feet"),
  38412. default: true
  38413. },
  38414. ]
  38415. ))
  38416. characterMakers.push(() => makeCharacter(
  38417. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38418. {
  38419. front: {
  38420. height: math.unit(25, "feet"),
  38421. name: "Front",
  38422. image: {
  38423. source: "./media/characters/titan-s-wulf/front.svg",
  38424. extra: 1560/1484,
  38425. bottom: 76/1636
  38426. }
  38427. },
  38428. },
  38429. [
  38430. {
  38431. name: "Smallest",
  38432. height: math.unit(25, "feet"),
  38433. default: true
  38434. },
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(200, "feet")
  38438. },
  38439. {
  38440. name: "Macro",
  38441. height: math.unit(200000, "feet")
  38442. },
  38443. {
  38444. name: "Multiversal Original",
  38445. height: math.unit(10000, "multiverses")
  38446. },
  38447. ]
  38448. ))
  38449. characterMakers.push(() => makeCharacter(
  38450. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38451. {
  38452. front: {
  38453. height: math.unit(8, "feet"),
  38454. weight: math.unit(553, "lb"),
  38455. name: "Front",
  38456. image: {
  38457. source: "./media/characters/tawendeh/front.svg",
  38458. extra: 2365/2268,
  38459. bottom: 83/2448
  38460. }
  38461. },
  38462. frontClothed: {
  38463. height: math.unit(8, "feet"),
  38464. weight: math.unit(553, "lb"),
  38465. name: "Front (Clothed)",
  38466. image: {
  38467. source: "./media/characters/tawendeh/front-clothed.svg",
  38468. extra: 2365/2268,
  38469. bottom: 83/2448
  38470. }
  38471. },
  38472. back: {
  38473. height: math.unit(8, "feet"),
  38474. weight: math.unit(553, "lb"),
  38475. name: "Back",
  38476. image: {
  38477. source: "./media/characters/tawendeh/back.svg",
  38478. extra: 2397/2294,
  38479. bottom: 42/2439
  38480. }
  38481. },
  38482. },
  38483. [
  38484. {
  38485. name: "Mortal Interaction",
  38486. height: math.unit(8, "feet"),
  38487. default: true
  38488. },
  38489. {
  38490. name: "Giant",
  38491. height: math.unit(80, "feet")
  38492. },
  38493. {
  38494. name: "Macro",
  38495. height: math.unit(800, "feet")
  38496. },
  38497. {
  38498. name: "Megamacro",
  38499. height: math.unit(8000, "feet")
  38500. },
  38501. {
  38502. name: "City-Crushing",
  38503. height: math.unit(24000, "feet")
  38504. },
  38505. {
  38506. name: "Mountain-Mashing",
  38507. height: math.unit(80000, "feet")
  38508. },
  38509. {
  38510. name: "Nation Nemesis",
  38511. height: math.unit(8e6, "feet")
  38512. },
  38513. {
  38514. name: "Continent Cracker",
  38515. height: math.unit(24e6, "feet")
  38516. },
  38517. {
  38518. name: "Earth-Eclipsing",
  38519. height: math.unit(2.4e8, "feet")
  38520. },
  38521. {
  38522. name: "Gas Giant Gulper",
  38523. height: math.unit(2.4e9, "feet")
  38524. },
  38525. {
  38526. name: "Sol-Swallowing",
  38527. height: math.unit(8e10, "feet")
  38528. },
  38529. {
  38530. name: "Galaxy Gulper",
  38531. height: math.unit(8, "galaxies")
  38532. },
  38533. {
  38534. name: "Cosmos Churner",
  38535. height: math.unit(8, "universes")
  38536. },
  38537. {
  38538. name: "Omnipotent Otter",
  38539. height: math.unit(80, "universes")
  38540. },
  38541. ]
  38542. ))
  38543. characterMakers.push(() => makeCharacter(
  38544. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38545. {
  38546. front: {
  38547. height: math.unit(2.6, "meters"),
  38548. weight: math.unit(900, "kg"),
  38549. name: "Front",
  38550. image: {
  38551. source: "./media/characters/neesha/front.svg",
  38552. extra: 1803/1653,
  38553. bottom: 128/1931
  38554. }
  38555. },
  38556. },
  38557. [
  38558. {
  38559. name: "Normal",
  38560. height: math.unit(2.6, "meters"),
  38561. default: true
  38562. },
  38563. {
  38564. name: "Macro",
  38565. height: math.unit(50, "meters")
  38566. },
  38567. ]
  38568. ))
  38569. characterMakers.push(() => makeCharacter(
  38570. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38571. {
  38572. front: {
  38573. height: math.unit(5, "feet"),
  38574. weight: math.unit(185, "lb"),
  38575. name: "Front",
  38576. image: {
  38577. source: "./media/characters/kyera/front.svg",
  38578. extra: 1875/1790,
  38579. bottom: 96/1971
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Normal",
  38586. height: math.unit(5, "feet"),
  38587. default: true
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(7 + 6/12, "feet"),
  38596. weight: math.unit(540, "lb"),
  38597. name: "Front",
  38598. image: {
  38599. source: "./media/characters/yuko/front.svg",
  38600. extra: 1282/1222,
  38601. bottom: 101/1383
  38602. }
  38603. },
  38604. frontClothed: {
  38605. height: math.unit(7 + 6/12, "feet"),
  38606. weight: math.unit(540, "lb"),
  38607. name: "Front (Clothed)",
  38608. image: {
  38609. source: "./media/characters/yuko/front-clothed.svg",
  38610. extra: 1282/1222,
  38611. bottom: 101/1383
  38612. }
  38613. },
  38614. },
  38615. [
  38616. {
  38617. name: "Normal",
  38618. height: math.unit(7 + 6/12, "feet"),
  38619. default: true
  38620. },
  38621. {
  38622. name: "Macro",
  38623. height: math.unit(26 + 9/12, "feet")
  38624. },
  38625. {
  38626. name: "Megamacro",
  38627. height: math.unit(300, "feet")
  38628. },
  38629. {
  38630. name: "Gigamacro",
  38631. height: math.unit(5000, "feet")
  38632. },
  38633. {
  38634. name: "Planetary",
  38635. height: math.unit(10000, "miles")
  38636. },
  38637. ]
  38638. ))
  38639. characterMakers.push(() => makeCharacter(
  38640. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38641. {
  38642. front: {
  38643. height: math.unit(8 + 2/12, "feet"),
  38644. weight: math.unit(600, "lb"),
  38645. name: "Front",
  38646. image: {
  38647. source: "./media/characters/deam-nitrel/front.svg",
  38648. extra: 1308/1234,
  38649. bottom: 125/1433
  38650. }
  38651. },
  38652. },
  38653. [
  38654. {
  38655. name: "Normal",
  38656. height: math.unit(8 + 2/12, "feet"),
  38657. default: true
  38658. },
  38659. ]
  38660. ))
  38661. characterMakers.push(() => makeCharacter(
  38662. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38663. {
  38664. front: {
  38665. height: math.unit(6.1, "feet"),
  38666. weight: math.unit(180, "lb"),
  38667. name: "Front",
  38668. image: {
  38669. source: "./media/characters/skyress/front.svg",
  38670. extra: 1045/915,
  38671. bottom: 28/1073
  38672. }
  38673. },
  38674. maw: {
  38675. height: math.unit(1, "feet"),
  38676. name: "Maw",
  38677. image: {
  38678. source: "./media/characters/skyress/maw.svg"
  38679. }
  38680. },
  38681. },
  38682. [
  38683. {
  38684. name: "Normal",
  38685. height: math.unit(6.1, "feet"),
  38686. default: true
  38687. },
  38688. {
  38689. name: "Macro",
  38690. height: math.unit(200, "feet")
  38691. },
  38692. ]
  38693. ))
  38694. characterMakers.push(() => makeCharacter(
  38695. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38696. {
  38697. front: {
  38698. height: math.unit(4 + 2/12, "feet"),
  38699. weight: math.unit(40, "kg"),
  38700. name: "Front",
  38701. image: {
  38702. source: "./media/characters/amethyst-jones/front.svg",
  38703. extra: 1220/1150,
  38704. bottom: 101/1321
  38705. }
  38706. },
  38707. },
  38708. [
  38709. {
  38710. name: "Normal",
  38711. height: math.unit(4 + 2/12, "feet"),
  38712. default: true
  38713. },
  38714. ]
  38715. ))
  38716. characterMakers.push(() => makeCharacter(
  38717. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38718. {
  38719. front: {
  38720. height: math.unit(1.7, "m"),
  38721. weight: math.unit(135, "lb"),
  38722. name: "Front",
  38723. image: {
  38724. source: "./media/characters/jade/front.svg",
  38725. extra: 1818/1767,
  38726. bottom: 32/1850
  38727. }
  38728. },
  38729. back: {
  38730. height: math.unit(1.7, "m"),
  38731. weight: math.unit(135, "lb"),
  38732. name: "Back",
  38733. image: {
  38734. source: "./media/characters/jade/back.svg",
  38735. extra: 1869/1809,
  38736. bottom: 35/1904
  38737. }
  38738. },
  38739. hand: {
  38740. height: math.unit(0.24, "m"),
  38741. name: "Hand",
  38742. image: {
  38743. source: "./media/characters/jade/hand.svg"
  38744. }
  38745. },
  38746. foot: {
  38747. height: math.unit(0.263, "m"),
  38748. name: "Foot",
  38749. image: {
  38750. source: "./media/characters/jade/foot.svg"
  38751. }
  38752. },
  38753. dick: {
  38754. height: math.unit(0.47, "m"),
  38755. name: "Dick",
  38756. image: {
  38757. source: "./media/characters/jade/dick.svg"
  38758. }
  38759. },
  38760. },
  38761. [
  38762. {
  38763. name: "Micro",
  38764. height: math.unit(22, "cm")
  38765. },
  38766. {
  38767. name: "Normal",
  38768. height: math.unit(1.7, "m"),
  38769. default: true
  38770. },
  38771. {
  38772. name: "Macro",
  38773. height: math.unit(152, "m")
  38774. },
  38775. ]
  38776. ))
  38777. characterMakers.push(() => makeCharacter(
  38778. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38779. {
  38780. front: {
  38781. height: math.unit(100, "miles"),
  38782. weight: math.unit(20000, "tons"),
  38783. name: "Front",
  38784. image: {
  38785. source: "./media/characters/cookie/front.svg",
  38786. extra: 1125/1070,
  38787. bottom: 30/1155
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Big",
  38794. height: math.unit(50, "feet")
  38795. },
  38796. {
  38797. name: "Macro",
  38798. height: math.unit(100, "miles"),
  38799. default: true
  38800. },
  38801. {
  38802. name: "Megamacro",
  38803. height: math.unit(90000, "miles")
  38804. },
  38805. ]
  38806. ))
  38807. characterMakers.push(() => makeCharacter(
  38808. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38809. {
  38810. front: {
  38811. height: math.unit(6, "feet"),
  38812. weight: math.unit(145, "lb"),
  38813. name: "Front",
  38814. image: {
  38815. source: "./media/characters/farzian/front.svg",
  38816. extra: 1902/1693,
  38817. bottom: 108/2010
  38818. }
  38819. },
  38820. },
  38821. [
  38822. {
  38823. name: "Macro",
  38824. height: math.unit(500, "feet"),
  38825. default: true
  38826. },
  38827. ]
  38828. ))
  38829. characterMakers.push(() => makeCharacter(
  38830. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38831. {
  38832. front: {
  38833. height: math.unit(3 + 6/12, "feet"),
  38834. weight: math.unit(50, "lb"),
  38835. name: "Front",
  38836. image: {
  38837. source: "./media/characters/kimberly-tilson/front.svg",
  38838. extra: 1400/1322,
  38839. bottom: 36/1436
  38840. }
  38841. },
  38842. back: {
  38843. height: math.unit(3 + 6/12, "feet"),
  38844. weight: math.unit(50, "lb"),
  38845. name: "Back",
  38846. image: {
  38847. source: "./media/characters/kimberly-tilson/back.svg",
  38848. extra: 1370/1307,
  38849. bottom: 20/1390
  38850. }
  38851. },
  38852. },
  38853. [
  38854. {
  38855. name: "Normal",
  38856. height: math.unit(3 + 6/12, "feet"),
  38857. default: true
  38858. },
  38859. ]
  38860. ))
  38861. characterMakers.push(() => makeCharacter(
  38862. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38863. {
  38864. front: {
  38865. height: math.unit(1148, "feet"),
  38866. weight: math.unit(34057, "lb"),
  38867. name: "Front",
  38868. image: {
  38869. source: "./media/characters/harthos/front.svg",
  38870. extra: 1391/1339,
  38871. bottom: 13/1404
  38872. }
  38873. },
  38874. },
  38875. [
  38876. {
  38877. name: "Macro",
  38878. height: math.unit(1148, "feet"),
  38879. default: true
  38880. },
  38881. ]
  38882. ))
  38883. characterMakers.push(() => makeCharacter(
  38884. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38885. {
  38886. front: {
  38887. height: math.unit(15, "feet"),
  38888. name: "Front",
  38889. image: {
  38890. source: "./media/characters/hypatia/front.svg",
  38891. extra: 1653/1591,
  38892. bottom: 79/1732
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Normal",
  38899. height: math.unit(15, "feet")
  38900. },
  38901. {
  38902. name: "Small",
  38903. height: math.unit(300, "feet")
  38904. },
  38905. {
  38906. name: "Macro",
  38907. height: math.unit(2500, "feet"),
  38908. default: true
  38909. },
  38910. {
  38911. name: "Mega Macro",
  38912. height: math.unit(1500, "miles")
  38913. },
  38914. {
  38915. name: "Giga Macro",
  38916. height: math.unit(1.5e6, "miles")
  38917. },
  38918. ]
  38919. ))
  38920. characterMakers.push(() => makeCharacter(
  38921. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38922. {
  38923. front: {
  38924. height: math.unit(6, "feet"),
  38925. weight: math.unit(200, "lb"),
  38926. name: "Front",
  38927. image: {
  38928. source: "./media/characters/wulver/front.svg",
  38929. extra: 1724/1632,
  38930. bottom: 130/1854
  38931. }
  38932. },
  38933. frontNsfw: {
  38934. height: math.unit(6, "feet"),
  38935. weight: math.unit(200, "lb"),
  38936. name: "Front (NSFW)",
  38937. image: {
  38938. source: "./media/characters/wulver/front-nsfw.svg",
  38939. extra: 1724/1632,
  38940. bottom: 130/1854
  38941. }
  38942. },
  38943. },
  38944. [
  38945. {
  38946. name: "Human-Sized",
  38947. height: math.unit(6, "feet")
  38948. },
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(4, "meters"),
  38952. default: true
  38953. },
  38954. {
  38955. name: "Large",
  38956. height: math.unit(6, "m")
  38957. },
  38958. ]
  38959. ))
  38960. characterMakers.push(() => makeCharacter(
  38961. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38962. {
  38963. front: {
  38964. height: math.unit(7, "feet"),
  38965. name: "Front",
  38966. image: {
  38967. source: "./media/characters/maru/front.svg",
  38968. extra: 1595/1570,
  38969. bottom: 0/1595
  38970. }
  38971. },
  38972. },
  38973. [
  38974. {
  38975. name: "Normal",
  38976. height: math.unit(7, "feet"),
  38977. default: true
  38978. },
  38979. {
  38980. name: "Macro",
  38981. height: math.unit(700, "feet")
  38982. },
  38983. {
  38984. name: "Mega Macro",
  38985. height: math.unit(25, "miles")
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(6, "feet"),
  38994. weight: math.unit(170, "lb"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/xenon/front.svg",
  38998. extra: 1376/1305,
  38999. bottom: 56/1432
  39000. }
  39001. },
  39002. back: {
  39003. height: math.unit(6, "feet"),
  39004. weight: math.unit(170, "lb"),
  39005. name: "Back",
  39006. image: {
  39007. source: "./media/characters/xenon/back.svg",
  39008. extra: 1328/1259,
  39009. bottom: 95/1423
  39010. }
  39011. },
  39012. maw: {
  39013. height: math.unit(0.52, "feet"),
  39014. name: "Maw",
  39015. image: {
  39016. source: "./media/characters/xenon/maw.svg"
  39017. }
  39018. },
  39019. hand: {
  39020. height: math.unit(0.82, "feet"),
  39021. name: "Hand",
  39022. image: {
  39023. source: "./media/characters/xenon/hand.svg"
  39024. }
  39025. },
  39026. foot: {
  39027. height: math.unit(1.13, "feet"),
  39028. name: "Foot",
  39029. image: {
  39030. source: "./media/characters/xenon/foot.svg"
  39031. }
  39032. },
  39033. },
  39034. [
  39035. {
  39036. name: "Micro",
  39037. height: math.unit(0.8, "inches")
  39038. },
  39039. {
  39040. name: "Normal",
  39041. height: math.unit(6, "feet")
  39042. },
  39043. {
  39044. name: "Macro",
  39045. height: math.unit(50, "feet"),
  39046. default: true
  39047. },
  39048. {
  39049. name: "Macro+",
  39050. height: math.unit(250, "feet")
  39051. },
  39052. {
  39053. name: "Megamacro",
  39054. height: math.unit(1500, "feet")
  39055. },
  39056. ]
  39057. ))
  39058. characterMakers.push(() => makeCharacter(
  39059. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39060. {
  39061. front: {
  39062. height: math.unit(7 + 5/12, "feet"),
  39063. name: "Front",
  39064. image: {
  39065. source: "./media/characters/zane/front.svg",
  39066. extra: 1260/1203,
  39067. bottom: 94/1354
  39068. }
  39069. },
  39070. back: {
  39071. height: math.unit(5.05, "feet"),
  39072. name: "Back",
  39073. image: {
  39074. source: "./media/characters/zane/back.svg",
  39075. extra: 893/829,
  39076. bottom: 30/923
  39077. }
  39078. },
  39079. werewolf: {
  39080. height: math.unit(11, "feet"),
  39081. name: "Werewolf",
  39082. image: {
  39083. source: "./media/characters/zane/werewolf.svg",
  39084. extra: 1383/1323,
  39085. bottom: 89/1472
  39086. }
  39087. },
  39088. foot: {
  39089. height: math.unit(1.46, "feet"),
  39090. name: "Foot",
  39091. image: {
  39092. source: "./media/characters/zane/foot.svg"
  39093. }
  39094. },
  39095. footFront: {
  39096. height: math.unit(0.784, "feet"),
  39097. name: "Foot (Front)",
  39098. image: {
  39099. source: "./media/characters/zane/foot-front.svg"
  39100. }
  39101. },
  39102. dick: {
  39103. height: math.unit(1.95, "feet"),
  39104. name: "Dick",
  39105. image: {
  39106. source: "./media/characters/zane/dick.svg"
  39107. }
  39108. },
  39109. dickWerewolf: {
  39110. height: math.unit(3.77, "feet"),
  39111. name: "Dick (Werewolf)",
  39112. image: {
  39113. source: "./media/characters/zane/dick.svg"
  39114. }
  39115. },
  39116. },
  39117. [
  39118. {
  39119. name: "Normal",
  39120. height: math.unit(7 + 5/12, "feet"),
  39121. default: true
  39122. },
  39123. ]
  39124. ))
  39125. characterMakers.push(() => makeCharacter(
  39126. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39127. {
  39128. front: {
  39129. height: math.unit(6 + 2/12, "feet"),
  39130. weight: math.unit(284, "lb"),
  39131. name: "Front",
  39132. image: {
  39133. source: "./media/characters/benni-desparque/front.svg",
  39134. extra: 1353/1126,
  39135. bottom: 69/1422
  39136. }
  39137. },
  39138. },
  39139. [
  39140. {
  39141. name: "Civilian",
  39142. height: math.unit(6 + 2/12, "feet")
  39143. },
  39144. {
  39145. name: "Normal",
  39146. height: math.unit(98, "feet"),
  39147. default: true
  39148. },
  39149. {
  39150. name: "Kaiju Fighter",
  39151. height: math.unit(268, "feet")
  39152. },
  39153. ]
  39154. ))
  39155. characterMakers.push(() => makeCharacter(
  39156. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39157. {
  39158. front: {
  39159. height: math.unit(5, "feet"),
  39160. weight: math.unit(105, "lb"),
  39161. name: "Front",
  39162. image: {
  39163. source: "./media/characters/maxine/front.svg",
  39164. extra: 1386/1250,
  39165. bottom: 71/1457
  39166. }
  39167. },
  39168. },
  39169. [
  39170. {
  39171. name: "Normal",
  39172. height: math.unit(5, "feet"),
  39173. default: true
  39174. },
  39175. ]
  39176. ))
  39177. characterMakers.push(() => makeCharacter(
  39178. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39179. {
  39180. front: {
  39181. height: math.unit(11 + 7/12, "feet"),
  39182. weight: math.unit(9576, "lb"),
  39183. name: "Front",
  39184. image: {
  39185. source: "./media/characters/scaly/front.svg",
  39186. extra: 888/867,
  39187. bottom: 36/924
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Normal",
  39194. height: math.unit(11 + 7/12, "feet"),
  39195. default: true
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39201. {
  39202. front: {
  39203. height: math.unit(9, "inches"),
  39204. name: "Front",
  39205. image: {
  39206. source: "./media/characters/saelria/front.svg",
  39207. extra: 662/621,
  39208. bottom: 12/674
  39209. }
  39210. },
  39211. },
  39212. [
  39213. {
  39214. name: "Tiny",
  39215. height: math.unit(9, "inches"),
  39216. default: true
  39217. },
  39218. ]
  39219. ))
  39220. characterMakers.push(() => makeCharacter(
  39221. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39222. {
  39223. front: {
  39224. height: math.unit(80, "meters"),
  39225. weight: math.unit(7000, "tonnes"),
  39226. name: "Front",
  39227. image: {
  39228. source: "./media/characters/tef/front.svg",
  39229. extra: 2036/1991,
  39230. bottom: 54/2090
  39231. }
  39232. },
  39233. back: {
  39234. height: math.unit(80, "meters"),
  39235. weight: math.unit(7000, "tonnes"),
  39236. name: "Back",
  39237. image: {
  39238. source: "./media/characters/tef/back.svg",
  39239. extra: 2036/1991,
  39240. bottom: 54/2090
  39241. }
  39242. },
  39243. },
  39244. [
  39245. {
  39246. name: "Macro",
  39247. height: math.unit(80, "meters"),
  39248. default: true
  39249. },
  39250. ]
  39251. ))
  39252. characterMakers.push(() => makeCharacter(
  39253. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39254. {
  39255. front: {
  39256. height: math.unit(13, "feet"),
  39257. weight: math.unit(6, "tons"),
  39258. name: "Front",
  39259. image: {
  39260. source: "./media/characters/rover/front.svg",
  39261. extra: 1233/1156,
  39262. bottom: 50/1283
  39263. }
  39264. },
  39265. back: {
  39266. height: math.unit(13, "feet"),
  39267. weight: math.unit(6, "tons"),
  39268. name: "Back",
  39269. image: {
  39270. source: "./media/characters/rover/back.svg",
  39271. extra: 1327/1258,
  39272. bottom: 39/1366
  39273. }
  39274. },
  39275. },
  39276. [
  39277. {
  39278. name: "Normal",
  39279. height: math.unit(13, "feet"),
  39280. default: true
  39281. },
  39282. {
  39283. name: "Macro",
  39284. height: math.unit(1300, "feet")
  39285. },
  39286. {
  39287. name: "Megamacro",
  39288. height: math.unit(1300, "miles")
  39289. },
  39290. {
  39291. name: "Gigamacro",
  39292. height: math.unit(1300000, "miles")
  39293. },
  39294. ]
  39295. ))
  39296. characterMakers.push(() => makeCharacter(
  39297. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39298. {
  39299. front: {
  39300. height: math.unit(6, "feet"),
  39301. weight: math.unit(150, "lb"),
  39302. name: "Front",
  39303. image: {
  39304. source: "./media/characters/ariz/front.svg",
  39305. extra: 1401/1346,
  39306. bottom: 5/1406
  39307. }
  39308. },
  39309. },
  39310. [
  39311. {
  39312. name: "Normal",
  39313. height: math.unit(10, "feet"),
  39314. default: true
  39315. },
  39316. ]
  39317. ))
  39318. characterMakers.push(() => makeCharacter(
  39319. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39320. {
  39321. front: {
  39322. height: math.unit(6, "feet"),
  39323. weight: math.unit(140, "lb"),
  39324. name: "Front",
  39325. image: {
  39326. source: "./media/characters/sigrun/front.svg",
  39327. extra: 1418/1359,
  39328. bottom: 27/1445
  39329. }
  39330. },
  39331. },
  39332. [
  39333. {
  39334. name: "Macro",
  39335. height: math.unit(35, "feet"),
  39336. default: true
  39337. },
  39338. ]
  39339. ))
  39340. characterMakers.push(() => makeCharacter(
  39341. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39342. {
  39343. front: {
  39344. height: math.unit(6, "feet"),
  39345. weight: math.unit(150, "lb"),
  39346. name: "Front",
  39347. image: {
  39348. source: "./media/characters/numin/front.svg",
  39349. extra: 1433/1388,
  39350. bottom: 12/1445
  39351. }
  39352. },
  39353. },
  39354. [
  39355. {
  39356. name: "Macro",
  39357. height: math.unit(21.5, "km"),
  39358. default: true
  39359. },
  39360. ]
  39361. ))
  39362. characterMakers.push(() => makeCharacter(
  39363. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39364. {
  39365. front: {
  39366. height: math.unit(6, "feet"),
  39367. weight: math.unit(463, "lb"),
  39368. name: "Front",
  39369. image: {
  39370. source: "./media/characters/melwa/front.svg",
  39371. extra: 1307/1248,
  39372. bottom: 93/1400
  39373. }
  39374. },
  39375. },
  39376. [
  39377. {
  39378. name: "Macro",
  39379. height: math.unit(50, "meters"),
  39380. default: true
  39381. },
  39382. ]
  39383. ))
  39384. characterMakers.push(() => makeCharacter(
  39385. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39386. {
  39387. front: {
  39388. height: math.unit(325, "feet"),
  39389. name: "Front",
  39390. image: {
  39391. source: "./media/characters/zorkaiju/front.svg",
  39392. extra: 1955/1814,
  39393. bottom: 40/1995
  39394. }
  39395. },
  39396. frontExtended: {
  39397. height: math.unit(325, "feet"),
  39398. name: "Front (Extended)",
  39399. image: {
  39400. source: "./media/characters/zorkaiju/front-extended.svg",
  39401. extra: 1955/1814,
  39402. bottom: 40/1995
  39403. }
  39404. },
  39405. side: {
  39406. height: math.unit(325, "feet"),
  39407. name: "Side",
  39408. image: {
  39409. source: "./media/characters/zorkaiju/side.svg",
  39410. extra: 1495/1396,
  39411. bottom: 17/1512
  39412. }
  39413. },
  39414. sideExtended: {
  39415. height: math.unit(325, "feet"),
  39416. name: "Side (Extended)",
  39417. image: {
  39418. source: "./media/characters/zorkaiju/side-extended.svg",
  39419. extra: 1495/1396,
  39420. bottom: 17/1512
  39421. }
  39422. },
  39423. back: {
  39424. height: math.unit(325, "feet"),
  39425. name: "Back",
  39426. image: {
  39427. source: "./media/characters/zorkaiju/back.svg",
  39428. extra: 1959/1821,
  39429. bottom: 31/1990
  39430. }
  39431. },
  39432. backExtended: {
  39433. height: math.unit(325, "feet"),
  39434. name: "Back (Extended)",
  39435. image: {
  39436. source: "./media/characters/zorkaiju/back-extended.svg",
  39437. extra: 1959/1821,
  39438. bottom: 31/1990
  39439. }
  39440. },
  39441. hand: {
  39442. height: math.unit(58.4, "feet"),
  39443. name: "Hand",
  39444. image: {
  39445. source: "./media/characters/zorkaiju/hand.svg"
  39446. }
  39447. },
  39448. handExtended: {
  39449. height: math.unit(61.4, "feet"),
  39450. name: "Hand (Extended)",
  39451. image: {
  39452. source: "./media/characters/zorkaiju/hand-extended.svg"
  39453. }
  39454. },
  39455. foot: {
  39456. height: math.unit(95, "feet"),
  39457. name: "Foot",
  39458. image: {
  39459. source: "./media/characters/zorkaiju/foot.svg"
  39460. }
  39461. },
  39462. leftArm: {
  39463. height: math.unit(59, "feet"),
  39464. name: "Left Arm",
  39465. image: {
  39466. source: "./media/characters/zorkaiju/left-arm.svg"
  39467. }
  39468. },
  39469. rightArm: {
  39470. height: math.unit(59, "feet"),
  39471. name: "Right Arm",
  39472. image: {
  39473. source: "./media/characters/zorkaiju/right-arm.svg"
  39474. }
  39475. },
  39476. tail: {
  39477. height: math.unit(104, "feet"),
  39478. name: "Tail",
  39479. image: {
  39480. source: "./media/characters/zorkaiju/tail.svg"
  39481. }
  39482. },
  39483. tailExtended: {
  39484. height: math.unit(104, "feet"),
  39485. name: "Tail (Extended)",
  39486. image: {
  39487. source: "./media/characters/zorkaiju/tail-extended.svg"
  39488. }
  39489. },
  39490. tailBottom: {
  39491. height: math.unit(104, "feet"),
  39492. name: "Tail Bottom",
  39493. image: {
  39494. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39495. }
  39496. },
  39497. crystal: {
  39498. height: math.unit(27.54, "feet"),
  39499. name: "Crystal",
  39500. image: {
  39501. source: "./media/characters/zorkaiju/crystal.svg"
  39502. }
  39503. },
  39504. },
  39505. [
  39506. {
  39507. name: "Kaiju",
  39508. height: math.unit(325, "feet"),
  39509. default: true
  39510. },
  39511. ]
  39512. ))
  39513. characterMakers.push(() => makeCharacter(
  39514. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39515. {
  39516. front: {
  39517. height: math.unit(6 + 1/12, "feet"),
  39518. weight: math.unit(115, "lb"),
  39519. name: "Front",
  39520. image: {
  39521. source: "./media/characters/bailey-belfry/front.svg",
  39522. extra: 1240/1121,
  39523. bottom: 101/1341
  39524. }
  39525. },
  39526. },
  39527. [
  39528. {
  39529. name: "Normal",
  39530. height: math.unit(6 + 1/12, "feet"),
  39531. default: true
  39532. },
  39533. ]
  39534. ))
  39535. characterMakers.push(() => makeCharacter(
  39536. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39537. {
  39538. side: {
  39539. height: math.unit(4, "meters"),
  39540. weight: math.unit(250, "kg"),
  39541. name: "Side",
  39542. image: {
  39543. source: "./media/characters/blacky/side.svg",
  39544. extra: 1027/919,
  39545. bottom: 43/1070
  39546. }
  39547. },
  39548. maw: {
  39549. height: math.unit(1, "meters"),
  39550. name: "Maw",
  39551. image: {
  39552. source: "./media/characters/blacky/maw.svg"
  39553. }
  39554. },
  39555. paw: {
  39556. height: math.unit(1, "meters"),
  39557. name: "Paw",
  39558. image: {
  39559. source: "./media/characters/blacky/paw.svg"
  39560. }
  39561. },
  39562. },
  39563. [
  39564. {
  39565. name: "Normal",
  39566. height: math.unit(4, "meters"),
  39567. default: true
  39568. },
  39569. ]
  39570. ))
  39571. characterMakers.push(() => makeCharacter(
  39572. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39573. {
  39574. front: {
  39575. height: math.unit(170, "cm"),
  39576. weight: math.unit(66, "kg"),
  39577. name: "Front",
  39578. image: {
  39579. source: "./media/characters/thux-ei/front.svg",
  39580. extra: 1109/1011,
  39581. bottom: 8/1117
  39582. }
  39583. },
  39584. },
  39585. [
  39586. {
  39587. name: "Normal",
  39588. height: math.unit(170, "cm"),
  39589. default: true
  39590. },
  39591. ]
  39592. ))
  39593. characterMakers.push(() => makeCharacter(
  39594. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39595. {
  39596. front: {
  39597. height: math.unit(5, "feet"),
  39598. weight: math.unit(120, "lb"),
  39599. name: "Front",
  39600. image: {
  39601. source: "./media/characters/roxanne-voltaire/front.svg",
  39602. extra: 1901/1779,
  39603. bottom: 53/1954
  39604. }
  39605. },
  39606. },
  39607. [
  39608. {
  39609. name: "Normal",
  39610. height: math.unit(5, "feet"),
  39611. default: true
  39612. },
  39613. {
  39614. name: "Giant",
  39615. height: math.unit(50, "feet")
  39616. },
  39617. {
  39618. name: "Titan",
  39619. height: math.unit(500, "feet")
  39620. },
  39621. {
  39622. name: "Macro",
  39623. height: math.unit(5000, "feet")
  39624. },
  39625. {
  39626. name: "Megamacro",
  39627. height: math.unit(50000, "feet")
  39628. },
  39629. {
  39630. name: "Gigamacro",
  39631. height: math.unit(500000, "feet")
  39632. },
  39633. {
  39634. name: "Teramacro",
  39635. height: math.unit(5e6, "feet")
  39636. },
  39637. ]
  39638. ))
  39639. characterMakers.push(() => makeCharacter(
  39640. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39641. {
  39642. front: {
  39643. height: math.unit(6 + 2/12, "feet"),
  39644. name: "Front",
  39645. image: {
  39646. source: "./media/characters/squeaks/front.svg",
  39647. extra: 1823/1768,
  39648. bottom: 138/1961
  39649. }
  39650. },
  39651. },
  39652. [
  39653. {
  39654. name: "Micro",
  39655. height: math.unit(0.5, "inches")
  39656. },
  39657. {
  39658. name: "Normal",
  39659. height: math.unit(6 + 2/12, "feet"),
  39660. default: true
  39661. },
  39662. {
  39663. name: "Macro",
  39664. height: math.unit(600, "feet")
  39665. },
  39666. ]
  39667. ))
  39668. characterMakers.push(() => makeCharacter(
  39669. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39670. {
  39671. front: {
  39672. height: math.unit(1.72, "meters"),
  39673. name: "Front",
  39674. image: {
  39675. source: "./media/characters/archinger/front.svg",
  39676. extra: 1861/1675,
  39677. bottom: 125/1986
  39678. }
  39679. },
  39680. back: {
  39681. height: math.unit(1.72, "meters"),
  39682. name: "Back",
  39683. image: {
  39684. source: "./media/characters/archinger/back.svg",
  39685. extra: 1844/1701,
  39686. bottom: 104/1948
  39687. }
  39688. },
  39689. cock: {
  39690. height: math.unit(0.59, "feet"),
  39691. name: "Cock",
  39692. image: {
  39693. source: "./media/characters/archinger/cock.svg"
  39694. }
  39695. },
  39696. },
  39697. [
  39698. {
  39699. name: "Normal",
  39700. height: math.unit(1.72, "meters"),
  39701. default: true
  39702. },
  39703. {
  39704. name: "Macro",
  39705. height: math.unit(84, "meters")
  39706. },
  39707. {
  39708. name: "Macro+",
  39709. height: math.unit(112, "meters")
  39710. },
  39711. {
  39712. name: "Macro++",
  39713. height: math.unit(960, "meters")
  39714. },
  39715. {
  39716. name: "Macro+++",
  39717. height: math.unit(4, "km")
  39718. },
  39719. {
  39720. name: "Macro++++",
  39721. height: math.unit(48, "km")
  39722. },
  39723. {
  39724. name: "Macro+++++",
  39725. height: math.unit(4500, "km")
  39726. },
  39727. ]
  39728. ))
  39729. characterMakers.push(() => makeCharacter(
  39730. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39731. {
  39732. front: {
  39733. height: math.unit(5 + 5/12, "feet"),
  39734. name: "Front",
  39735. image: {
  39736. source: "./media/characters/alsnapz/front.svg",
  39737. extra: 1157/1065,
  39738. bottom: 42/1199
  39739. }
  39740. },
  39741. },
  39742. [
  39743. {
  39744. name: "Normal",
  39745. height: math.unit(5 + 5/12, "feet"),
  39746. default: true
  39747. },
  39748. ]
  39749. ))
  39750. characterMakers.push(() => makeCharacter(
  39751. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39752. {
  39753. side: {
  39754. height: math.unit(3.2, "earths"),
  39755. name: "Side",
  39756. image: {
  39757. source: "./media/characters/mag/side.svg",
  39758. extra: 1331/1008,
  39759. bottom: 52/1383
  39760. }
  39761. },
  39762. wing: {
  39763. height: math.unit(1.94, "earths"),
  39764. name: "Wing",
  39765. image: {
  39766. source: "./media/characters/mag/wing.svg"
  39767. }
  39768. },
  39769. dick: {
  39770. height: math.unit(1.8, "earths"),
  39771. name: "Dick",
  39772. image: {
  39773. source: "./media/characters/mag/dick.svg"
  39774. }
  39775. },
  39776. ass: {
  39777. height: math.unit(1.33, "earths"),
  39778. name: "Ass",
  39779. image: {
  39780. source: "./media/characters/mag/ass.svg"
  39781. }
  39782. },
  39783. head: {
  39784. height: math.unit(1.1, "earths"),
  39785. name: "Head",
  39786. image: {
  39787. source: "./media/characters/mag/head.svg"
  39788. }
  39789. },
  39790. maw: {
  39791. height: math.unit(1.62, "earths"),
  39792. name: "Maw",
  39793. image: {
  39794. source: "./media/characters/mag/maw.svg"
  39795. }
  39796. },
  39797. },
  39798. [
  39799. {
  39800. name: "Small",
  39801. height: math.unit(162, "feet")
  39802. },
  39803. {
  39804. name: "Normal",
  39805. height: math.unit(3.2, "earths"),
  39806. default: true
  39807. },
  39808. ]
  39809. ))
  39810. characterMakers.push(() => makeCharacter(
  39811. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39812. {
  39813. front: {
  39814. height: math.unit(512, "feet"),
  39815. weight: math.unit(63509, "tonnes"),
  39816. name: "Front",
  39817. image: {
  39818. source: "./media/characters/vorrel-harroc/front.svg",
  39819. extra: 1075/1063,
  39820. bottom: 62/1137
  39821. }
  39822. },
  39823. },
  39824. [
  39825. {
  39826. name: "Normal",
  39827. height: math.unit(10, "feet")
  39828. },
  39829. {
  39830. name: "Macro",
  39831. height: math.unit(512, "feet"),
  39832. default: true
  39833. },
  39834. {
  39835. name: "Megamacro",
  39836. height: math.unit(256, "miles")
  39837. },
  39838. {
  39839. name: "Gigamacro",
  39840. height: math.unit(4096, "miles")
  39841. },
  39842. ]
  39843. ))
  39844. characterMakers.push(() => makeCharacter(
  39845. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39846. {
  39847. side: {
  39848. height: math.unit(50, "feet"),
  39849. name: "Side",
  39850. image: {
  39851. source: "./media/characters/froimar/side.svg",
  39852. extra: 855/638,
  39853. bottom: 99/954
  39854. }
  39855. },
  39856. },
  39857. [
  39858. {
  39859. name: "Macro",
  39860. height: math.unit(50, "feet"),
  39861. default: true
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39867. {
  39868. front: {
  39869. height: math.unit(210, "miles"),
  39870. name: "Front",
  39871. image: {
  39872. source: "./media/characters/timothy/front.svg",
  39873. extra: 1007/943,
  39874. bottom: 62/1069
  39875. }
  39876. },
  39877. frontSkirt: {
  39878. height: math.unit(210, "miles"),
  39879. name: "Front (Skirt)",
  39880. image: {
  39881. source: "./media/characters/timothy/front-skirt.svg",
  39882. extra: 1007/943,
  39883. bottom: 62/1069
  39884. }
  39885. },
  39886. frontCoat: {
  39887. height: math.unit(210, "miles"),
  39888. name: "Front (Coat)",
  39889. image: {
  39890. source: "./media/characters/timothy/front-coat.svg",
  39891. extra: 1007/943,
  39892. bottom: 62/1069
  39893. }
  39894. },
  39895. },
  39896. [
  39897. {
  39898. name: "Macro",
  39899. height: math.unit(210, "miles"),
  39900. default: true
  39901. },
  39902. {
  39903. name: "Megamacro",
  39904. height: math.unit(210000, "miles")
  39905. },
  39906. ]
  39907. ))
  39908. characterMakers.push(() => makeCharacter(
  39909. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39910. {
  39911. front: {
  39912. height: math.unit(188, "feet"),
  39913. name: "Front",
  39914. image: {
  39915. source: "./media/characters/pyotr/front.svg",
  39916. extra: 1912/1826,
  39917. bottom: 18/1930
  39918. }
  39919. },
  39920. },
  39921. [
  39922. {
  39923. name: "Macro",
  39924. height: math.unit(188, "feet"),
  39925. default: true
  39926. },
  39927. {
  39928. name: "Megamacro",
  39929. height: math.unit(8, "miles")
  39930. },
  39931. ]
  39932. ))
  39933. characterMakers.push(() => makeCharacter(
  39934. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39935. {
  39936. side: {
  39937. height: math.unit(10, "feet"),
  39938. weight: math.unit(4500, "lb"),
  39939. name: "Side",
  39940. image: {
  39941. source: "./media/characters/ackart/side.svg",
  39942. extra: 1776/1668,
  39943. bottom: 116/1892
  39944. }
  39945. },
  39946. },
  39947. [
  39948. {
  39949. name: "Normal",
  39950. height: math.unit(10, "feet"),
  39951. default: true
  39952. },
  39953. ]
  39954. ))
  39955. characterMakers.push(() => makeCharacter(
  39956. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39957. {
  39958. side: {
  39959. height: math.unit(21, "feet"),
  39960. name: "Side",
  39961. image: {
  39962. source: "./media/characters/nolow/side.svg",
  39963. extra: 1484/1434,
  39964. bottom: 85/1569
  39965. }
  39966. },
  39967. sideErect: {
  39968. height: math.unit(21, "feet"),
  39969. name: "Side-erect",
  39970. image: {
  39971. source: "./media/characters/nolow/side-erect.svg",
  39972. extra: 1484/1434,
  39973. bottom: 85/1569
  39974. }
  39975. },
  39976. },
  39977. [
  39978. {
  39979. name: "Regular",
  39980. height: math.unit(12, "feet")
  39981. },
  39982. {
  39983. name: "Big Chee",
  39984. height: math.unit(21, "feet"),
  39985. default: true
  39986. },
  39987. ]
  39988. ))
  39989. characterMakers.push(() => makeCharacter(
  39990. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39991. {
  39992. front: {
  39993. height: math.unit(7, "feet"),
  39994. weight: math.unit(250, "lb"),
  39995. name: "Front",
  39996. image: {
  39997. source: "./media/characters/nines/front.svg",
  39998. extra: 1741/1607,
  39999. bottom: 41/1782
  40000. }
  40001. },
  40002. side: {
  40003. height: math.unit(7, "feet"),
  40004. weight: math.unit(250, "lb"),
  40005. name: "Side",
  40006. image: {
  40007. source: "./media/characters/nines/side.svg",
  40008. extra: 1854/1735,
  40009. bottom: 93/1947
  40010. }
  40011. },
  40012. back: {
  40013. height: math.unit(7, "feet"),
  40014. weight: math.unit(250, "lb"),
  40015. name: "Back",
  40016. image: {
  40017. source: "./media/characters/nines/back.svg",
  40018. extra: 1748/1615,
  40019. bottom: 20/1768
  40020. }
  40021. },
  40022. },
  40023. [
  40024. {
  40025. name: "Megamacro",
  40026. height: math.unit(99, "km"),
  40027. default: true
  40028. },
  40029. ]
  40030. ))
  40031. characterMakers.push(() => makeCharacter(
  40032. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40033. {
  40034. front: {
  40035. height: math.unit(5 + 10/12, "feet"),
  40036. weight: math.unit(210, "lb"),
  40037. name: "Front",
  40038. image: {
  40039. source: "./media/characters/zenith/front.svg",
  40040. extra: 1531/1452,
  40041. bottom: 198/1729
  40042. }
  40043. },
  40044. back: {
  40045. height: math.unit(5 + 10/12, "feet"),
  40046. weight: math.unit(210, "lb"),
  40047. name: "Back",
  40048. image: {
  40049. source: "./media/characters/zenith/back.svg",
  40050. extra: 1571/1487,
  40051. bottom: 75/1646
  40052. }
  40053. },
  40054. },
  40055. [
  40056. {
  40057. name: "Normal",
  40058. height: math.unit(5 + 10/12, "feet"),
  40059. default: true
  40060. }
  40061. ]
  40062. ))
  40063. characterMakers.push(() => makeCharacter(
  40064. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40065. {
  40066. front: {
  40067. height: math.unit(4, "feet"),
  40068. weight: math.unit(60, "lb"),
  40069. name: "Front",
  40070. image: {
  40071. source: "./media/characters/jasper/front.svg",
  40072. extra: 1450/1379,
  40073. bottom: 19/1469
  40074. }
  40075. },
  40076. },
  40077. [
  40078. {
  40079. name: "Normal",
  40080. height: math.unit(4, "feet"),
  40081. default: true
  40082. },
  40083. ]
  40084. ))
  40085. characterMakers.push(() => makeCharacter(
  40086. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40087. {
  40088. front: {
  40089. height: math.unit(6 + 5/12, "feet"),
  40090. weight: math.unit(290, "lb"),
  40091. name: "Front",
  40092. image: {
  40093. source: "./media/characters/tiberius-thyben/front.svg",
  40094. extra: 757/739,
  40095. bottom: 39/796
  40096. }
  40097. },
  40098. },
  40099. [
  40100. {
  40101. name: "Micro",
  40102. height: math.unit(1.5, "inches")
  40103. },
  40104. {
  40105. name: "Normal",
  40106. height: math.unit(6 + 5/12, "feet"),
  40107. default: true
  40108. },
  40109. {
  40110. name: "Macro",
  40111. height: math.unit(300, "feet")
  40112. },
  40113. ]
  40114. ))
  40115. characterMakers.push(() => makeCharacter(
  40116. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40117. {
  40118. front: {
  40119. height: math.unit(5 + 6/12, "feet"),
  40120. weight: math.unit(60, "kg"),
  40121. name: "Front",
  40122. image: {
  40123. source: "./media/characters/sabre/front.svg",
  40124. extra: 738/671,
  40125. bottom: 27/765
  40126. }
  40127. },
  40128. },
  40129. [
  40130. {
  40131. name: "Teeny",
  40132. height: math.unit(2, "inches")
  40133. },
  40134. {
  40135. name: "Smol",
  40136. height: math.unit(8, "inches")
  40137. },
  40138. {
  40139. name: "Normal",
  40140. height: math.unit(5 + 6/12, "feet"),
  40141. default: true
  40142. },
  40143. {
  40144. name: "Mini-Macro",
  40145. height: math.unit(15, "feet")
  40146. },
  40147. {
  40148. name: "Macro",
  40149. height: math.unit(50, "feet")
  40150. },
  40151. ]
  40152. ))
  40153. characterMakers.push(() => makeCharacter(
  40154. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40155. {
  40156. front: {
  40157. height: math.unit(6 + 4/12, "feet"),
  40158. weight: math.unit(170, "lb"),
  40159. name: "Front",
  40160. image: {
  40161. source: "./media/characters/charlie/front.svg",
  40162. extra: 1348/1228,
  40163. bottom: 15/1363
  40164. }
  40165. },
  40166. },
  40167. [
  40168. {
  40169. name: "Macro",
  40170. height: math.unit(1700, "meters"),
  40171. default: true
  40172. },
  40173. {
  40174. name: "MegaMacro",
  40175. height: math.unit(20400, "meters")
  40176. },
  40177. ]
  40178. ))
  40179. characterMakers.push(() => makeCharacter(
  40180. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40181. {
  40182. front: {
  40183. height: math.unit(6 + 3/12, "feet"),
  40184. weight: math.unit(185, "lb"),
  40185. name: "Front",
  40186. image: {
  40187. source: "./media/characters/susan-grant/front.svg",
  40188. extra: 1351/1327,
  40189. bottom: 26/1377
  40190. }
  40191. },
  40192. },
  40193. [
  40194. {
  40195. name: "Normal",
  40196. height: math.unit(6 + 3/12, "feet"),
  40197. default: true
  40198. },
  40199. {
  40200. name: "Macro",
  40201. height: math.unit(225, "feet")
  40202. },
  40203. {
  40204. name: "Macro+",
  40205. height: math.unit(900, "feet")
  40206. },
  40207. {
  40208. name: "MegaMacro",
  40209. height: math.unit(14400, "feet")
  40210. },
  40211. ]
  40212. ))
  40213. characterMakers.push(() => makeCharacter(
  40214. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40215. {
  40216. front: {
  40217. height: math.unit(5 + 4/12, "feet"),
  40218. weight: math.unit(110, "lb"),
  40219. name: "Front",
  40220. image: {
  40221. source: "./media/characters/axel-isanov/front.svg",
  40222. extra: 1096/1065,
  40223. bottom: 13/1109
  40224. }
  40225. },
  40226. },
  40227. [
  40228. {
  40229. name: "Normal",
  40230. height: math.unit(5 + 4/12, "feet"),
  40231. default: true
  40232. },
  40233. ]
  40234. ))
  40235. characterMakers.push(() => makeCharacter(
  40236. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40237. {
  40238. front: {
  40239. height: math.unit(9, "feet"),
  40240. weight: math.unit(467, "lb"),
  40241. name: "Front",
  40242. image: {
  40243. source: "./media/characters/necahual/front.svg",
  40244. extra: 920/873,
  40245. bottom: 26/946
  40246. }
  40247. },
  40248. back: {
  40249. height: math.unit(9, "feet"),
  40250. weight: math.unit(467, "lb"),
  40251. name: "Back",
  40252. image: {
  40253. source: "./media/characters/necahual/back.svg",
  40254. extra: 930/884,
  40255. bottom: 16/946
  40256. }
  40257. },
  40258. frontUnderwear: {
  40259. height: math.unit(9, "feet"),
  40260. weight: math.unit(467, "lb"),
  40261. name: "Front (Underwear)",
  40262. image: {
  40263. source: "./media/characters/necahual/front-underwear.svg",
  40264. extra: 920/873,
  40265. bottom: 26/946
  40266. }
  40267. },
  40268. frontDressed: {
  40269. height: math.unit(9, "feet"),
  40270. weight: math.unit(467, "lb"),
  40271. name: "Front (Dressed)",
  40272. image: {
  40273. source: "./media/characters/necahual/front-dressed.svg",
  40274. extra: 920/873,
  40275. bottom: 26/946
  40276. }
  40277. },
  40278. },
  40279. [
  40280. {
  40281. name: "Comprsesed",
  40282. height: math.unit(9, "feet")
  40283. },
  40284. {
  40285. name: "Natural",
  40286. height: math.unit(15, "feet"),
  40287. default: true
  40288. },
  40289. {
  40290. name: "Boosted",
  40291. height: math.unit(50, "feet")
  40292. },
  40293. {
  40294. name: "Boosted+",
  40295. height: math.unit(150, "feet")
  40296. },
  40297. {
  40298. name: "Max",
  40299. height: math.unit(500, "feet")
  40300. },
  40301. ]
  40302. ))
  40303. characterMakers.push(() => makeCharacter(
  40304. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40305. {
  40306. front: {
  40307. height: math.unit(22 + 1/12, "feet"),
  40308. weight: math.unit(3200, "lb"),
  40309. name: "Front",
  40310. image: {
  40311. source: "./media/characters/theo-acacia/front.svg",
  40312. extra: 1796/1741,
  40313. bottom: 83/1879
  40314. }
  40315. },
  40316. frontUnderwear: {
  40317. height: math.unit(22 + 1/12, "feet"),
  40318. weight: math.unit(3200, "lb"),
  40319. name: "Front (Underwear)",
  40320. image: {
  40321. source: "./media/characters/theo-acacia/front-underwear.svg",
  40322. extra: 1796/1741,
  40323. bottom: 83/1879
  40324. }
  40325. },
  40326. frontNude: {
  40327. height: math.unit(22 + 1/12, "feet"),
  40328. weight: math.unit(3200, "lb"),
  40329. name: "Front (Nude)",
  40330. image: {
  40331. source: "./media/characters/theo-acacia/front-nude.svg",
  40332. extra: 1796/1741,
  40333. bottom: 83/1879
  40334. }
  40335. },
  40336. },
  40337. [
  40338. {
  40339. name: "Normal",
  40340. height: math.unit(22 + 1/12, "feet"),
  40341. default: true
  40342. },
  40343. ]
  40344. ))
  40345. characterMakers.push(() => makeCharacter(
  40346. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40347. {
  40348. front: {
  40349. height: math.unit(20, "feet"),
  40350. name: "Front",
  40351. image: {
  40352. source: "./media/characters/astra/front.svg",
  40353. extra: 1850/1714,
  40354. bottom: 106/1956
  40355. }
  40356. },
  40357. frontUndressed: {
  40358. height: math.unit(20, "feet"),
  40359. name: "Front (Undressed)",
  40360. image: {
  40361. source: "./media/characters/astra/front-undressed.svg",
  40362. extra: 1926/1749,
  40363. bottom: 0/1926
  40364. }
  40365. },
  40366. hand: {
  40367. height: math.unit(1.53, "feet"),
  40368. name: "Hand",
  40369. image: {
  40370. source: "./media/characters/astra/hand.svg"
  40371. }
  40372. },
  40373. paw: {
  40374. height: math.unit(1.53, "feet"),
  40375. name: "Paw",
  40376. image: {
  40377. source: "./media/characters/astra/paw.svg"
  40378. }
  40379. },
  40380. },
  40381. [
  40382. {
  40383. name: "Smallest",
  40384. height: math.unit(20, "feet")
  40385. },
  40386. {
  40387. name: "Normal",
  40388. height: math.unit(1e9, "miles"),
  40389. default: true
  40390. },
  40391. {
  40392. name: "Larger",
  40393. height: math.unit(5, "multiverses")
  40394. },
  40395. {
  40396. name: "Largest",
  40397. height: math.unit(1e9, "multiverses")
  40398. },
  40399. ]
  40400. ))
  40401. characterMakers.push(() => makeCharacter(
  40402. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40403. {
  40404. front: {
  40405. height: math.unit(8, "feet"),
  40406. name: "Front",
  40407. image: {
  40408. source: "./media/characters/breanna/front.svg",
  40409. extra: 1912/1632,
  40410. bottom: 33/1945
  40411. }
  40412. },
  40413. },
  40414. [
  40415. {
  40416. name: "Smallest",
  40417. height: math.unit(8, "feet")
  40418. },
  40419. {
  40420. name: "Normal",
  40421. height: math.unit(1, "mile"),
  40422. default: true
  40423. },
  40424. {
  40425. name: "Maximum",
  40426. height: math.unit(1500000000000, "lightyears")
  40427. },
  40428. ]
  40429. ))
  40430. characterMakers.push(() => makeCharacter(
  40431. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40432. {
  40433. front: {
  40434. height: math.unit(5 + 11/12, "feet"),
  40435. weight: math.unit(155, "lb"),
  40436. name: "Front",
  40437. image: {
  40438. source: "./media/characters/cai/front.svg",
  40439. extra: 1823/1702,
  40440. bottom: 32/1855
  40441. }
  40442. },
  40443. back: {
  40444. height: math.unit(5 + 11/12, "feet"),
  40445. weight: math.unit(155, "lb"),
  40446. name: "Back",
  40447. image: {
  40448. source: "./media/characters/cai/back.svg",
  40449. extra: 1809/1708,
  40450. bottom: 31/1840
  40451. }
  40452. },
  40453. },
  40454. [
  40455. {
  40456. name: "Normal",
  40457. height: math.unit(5 + 11/12, "feet"),
  40458. default: true
  40459. },
  40460. {
  40461. name: "Big",
  40462. height: math.unit(15, "feet")
  40463. },
  40464. {
  40465. name: "Macro",
  40466. height: math.unit(200, "feet")
  40467. },
  40468. ]
  40469. ))
  40470. characterMakers.push(() => makeCharacter(
  40471. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40472. {
  40473. front: {
  40474. height: math.unit(5 + 6/12, "feet"),
  40475. weight: math.unit(160, "lb"),
  40476. name: "Front",
  40477. image: {
  40478. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40479. extra: 1227/1174,
  40480. bottom: 37/1264
  40481. }
  40482. },
  40483. },
  40484. [
  40485. {
  40486. name: "Macro",
  40487. height: math.unit(444, "meters"),
  40488. default: true
  40489. },
  40490. ]
  40491. ))
  40492. characterMakers.push(() => makeCharacter(
  40493. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40494. {
  40495. front: {
  40496. height: math.unit(18 + 7/12, "feet"),
  40497. name: "Front",
  40498. image: {
  40499. source: "./media/characters/rex/front.svg",
  40500. extra: 1941/1807,
  40501. bottom: 66/2007
  40502. }
  40503. },
  40504. back: {
  40505. height: math.unit(18 + 7/12, "feet"),
  40506. name: "Back",
  40507. image: {
  40508. source: "./media/characters/rex/back.svg",
  40509. extra: 1937/1822,
  40510. bottom: 42/1979
  40511. }
  40512. },
  40513. boot: {
  40514. height: math.unit(3.45, "feet"),
  40515. name: "Boot",
  40516. image: {
  40517. source: "./media/characters/rex/boot.svg"
  40518. }
  40519. },
  40520. paw: {
  40521. height: math.unit(4.17, "feet"),
  40522. name: "Paw",
  40523. image: {
  40524. source: "./media/characters/rex/paw.svg"
  40525. }
  40526. },
  40527. head: {
  40528. height: math.unit(6.728, "feet"),
  40529. name: "Head",
  40530. image: {
  40531. source: "./media/characters/rex/head.svg"
  40532. }
  40533. },
  40534. },
  40535. [
  40536. {
  40537. name: "Nano",
  40538. height: math.unit(18 + 7/12, "feet")
  40539. },
  40540. {
  40541. name: "Micro",
  40542. height: math.unit(1.5, "megameters")
  40543. },
  40544. {
  40545. name: "Normal",
  40546. height: math.unit(440, "megameters"),
  40547. default: true
  40548. },
  40549. {
  40550. name: "Macro",
  40551. height: math.unit(2.5, "gigameters")
  40552. },
  40553. {
  40554. name: "Gigamacro",
  40555. height: math.unit(2, "galaxies")
  40556. },
  40557. ]
  40558. ))
  40559. characterMakers.push(() => makeCharacter(
  40560. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40561. {
  40562. side: {
  40563. height: math.unit(32, "feet"),
  40564. weight: math.unit(250000, "lb"),
  40565. name: "Side",
  40566. image: {
  40567. source: "./media/characters/silverwing/side.svg",
  40568. extra: 1100/1019,
  40569. bottom: 204/1304
  40570. }
  40571. },
  40572. },
  40573. [
  40574. {
  40575. name: "Normal",
  40576. height: math.unit(32, "feet"),
  40577. default: true
  40578. },
  40579. ]
  40580. ))
  40581. characterMakers.push(() => makeCharacter(
  40582. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40583. {
  40584. front: {
  40585. height: math.unit(6 + 6/12, "feet"),
  40586. weight: math.unit(350, "lb"),
  40587. name: "Front",
  40588. image: {
  40589. source: "./media/characters/tristan-hawthorne/front.svg",
  40590. extra: 1159/1124,
  40591. bottom: 37/1196
  40592. }
  40593. },
  40594. },
  40595. [
  40596. {
  40597. name: "Normal",
  40598. height: math.unit(6 + 6/12, "feet"),
  40599. default: true
  40600. },
  40601. ]
  40602. ))
  40603. characterMakers.push(() => makeCharacter(
  40604. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40605. {
  40606. front: {
  40607. height: math.unit(5 + 11/12, "feet"),
  40608. weight: math.unit(190, "lb"),
  40609. name: "Front",
  40610. image: {
  40611. source: "./media/characters/mizu/front.svg",
  40612. extra: 1988/1788,
  40613. bottom: 14/2002
  40614. }
  40615. },
  40616. },
  40617. [
  40618. {
  40619. name: "Normal",
  40620. height: math.unit(5 + 11/12, "feet"),
  40621. default: true
  40622. },
  40623. ]
  40624. ))
  40625. characterMakers.push(() => makeCharacter(
  40626. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40627. {
  40628. front: {
  40629. height: math.unit(6, "feet"),
  40630. name: "Front",
  40631. image: {
  40632. source: "./media/characters/moonlight-rose-terra/front.svg",
  40633. extra: 1434/1252,
  40634. bottom: 48/1482
  40635. }
  40636. },
  40637. },
  40638. [
  40639. {
  40640. name: "TRAPPIST-1D",
  40641. height: math.unit(4992*2, "km")
  40642. },
  40643. {
  40644. name: "Earth",
  40645. height: math.unit(6367*2, "km"),
  40646. default: true
  40647. },
  40648. {
  40649. name: "Kepler-22b",
  40650. height: math.unit(15282*2, "km")
  40651. },
  40652. ]
  40653. ))
  40654. characterMakers.push(() => makeCharacter(
  40655. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40656. {
  40657. front: {
  40658. height: math.unit(6, "feet"),
  40659. name: "Front",
  40660. image: {
  40661. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40662. extra: 1851/1712,
  40663. bottom: 0/1851
  40664. }
  40665. },
  40666. },
  40667. [
  40668. {
  40669. name: "Enceladus",
  40670. height: math.unit(513*2, "km")
  40671. },
  40672. {
  40673. name: "Europe",
  40674. height: math.unit(1560*2, "km")
  40675. },
  40676. {
  40677. name: "Neptune",
  40678. height: math.unit(24622*2, "km"),
  40679. default: true
  40680. },
  40681. {
  40682. name: "CoRoT-9b",
  40683. height: math.unit(75067*2, "km")
  40684. },
  40685. ]
  40686. ))
  40687. characterMakers.push(() => makeCharacter(
  40688. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40689. {
  40690. front: {
  40691. height: math.unit(6, "feet"),
  40692. name: "Front",
  40693. image: {
  40694. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40695. extra: 1367/1286,
  40696. bottom: 55/1422
  40697. }
  40698. },
  40699. },
  40700. [
  40701. {
  40702. name: "Saturn",
  40703. height: math.unit(58232*2, "km")
  40704. },
  40705. {
  40706. name: "Jupiter",
  40707. height: math.unit(69911*2, "km"),
  40708. default: true
  40709. },
  40710. {
  40711. name: "HD 100546 b",
  40712. height: math.unit(482938, "km")
  40713. },
  40714. ]
  40715. ))
  40716. characterMakers.push(() => makeCharacter(
  40717. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40718. {
  40719. front: {
  40720. height: math.unit(1.7, "feet"),
  40721. weight: math.unit(50, "lb"),
  40722. name: "Front",
  40723. image: {
  40724. source: "./media/characters/dechroma/front.svg",
  40725. extra: 1095/859,
  40726. bottom: 64/1159
  40727. }
  40728. },
  40729. },
  40730. [
  40731. {
  40732. name: "Normal",
  40733. height: math.unit(1.7, "feet"),
  40734. default: true
  40735. },
  40736. ]
  40737. ))
  40738. characterMakers.push(() => makeCharacter(
  40739. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40740. {
  40741. side: {
  40742. height: math.unit(30, "feet"),
  40743. name: "Side",
  40744. image: {
  40745. source: "./media/characters/veluren-thanazel/side.svg",
  40746. extra: 1611/633,
  40747. bottom: 118/1729
  40748. }
  40749. },
  40750. front: {
  40751. height: math.unit(30, "feet"),
  40752. name: "Front",
  40753. image: {
  40754. source: "./media/characters/veluren-thanazel/front.svg",
  40755. extra: 1486/636,
  40756. bottom: 238/1724
  40757. }
  40758. },
  40759. head: {
  40760. height: math.unit(21.4, "feet"),
  40761. name: "Head",
  40762. image: {
  40763. source: "./media/characters/veluren-thanazel/head.svg"
  40764. }
  40765. },
  40766. genitals: {
  40767. height: math.unit(19.4, "feet"),
  40768. name: "Genitals",
  40769. image: {
  40770. source: "./media/characters/veluren-thanazel/genitals.svg"
  40771. }
  40772. },
  40773. },
  40774. [
  40775. {
  40776. name: "Social",
  40777. height: math.unit(6, "feet")
  40778. },
  40779. {
  40780. name: "Play",
  40781. height: math.unit(12, "feet")
  40782. },
  40783. {
  40784. name: "True",
  40785. height: math.unit(30, "feet"),
  40786. default: true
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(7 + 6/12, "feet"),
  40795. weight: math.unit(500, "kg"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/arcturas/front.svg",
  40799. extra: 1700/1500,
  40800. bottom: 145/1845
  40801. }
  40802. },
  40803. },
  40804. [
  40805. {
  40806. name: "Normal",
  40807. height: math.unit(7 + 6/12, "feet"),
  40808. default: true
  40809. },
  40810. ]
  40811. ))
  40812. characterMakers.push(() => makeCharacter(
  40813. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40814. {
  40815. side: {
  40816. height: math.unit(6, "feet"),
  40817. weight: math.unit(2, "tons"),
  40818. name: "Side",
  40819. image: {
  40820. source: "./media/characters/vitaen/side.svg",
  40821. extra: 1157/617,
  40822. bottom: 122/1279
  40823. }
  40824. },
  40825. },
  40826. [
  40827. {
  40828. name: "Normal",
  40829. height: math.unit(6, "feet"),
  40830. default: true
  40831. },
  40832. ]
  40833. ))
  40834. characterMakers.push(() => makeCharacter(
  40835. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40836. {
  40837. front: {
  40838. height: math.unit(19, "feet"),
  40839. name: "Front",
  40840. image: {
  40841. source: "./media/characters/fia-dreamweaver/front.svg",
  40842. extra: 1630/1504,
  40843. bottom: 25/1655
  40844. }
  40845. },
  40846. },
  40847. [
  40848. {
  40849. name: "Normal",
  40850. height: math.unit(19, "feet"),
  40851. default: true
  40852. },
  40853. ]
  40854. ))
  40855. characterMakers.push(() => makeCharacter(
  40856. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  40857. {
  40858. front: {
  40859. height: math.unit(5 + 4/12, "feet"),
  40860. name: "Front",
  40861. image: {
  40862. source: "./media/characters/artan/front.svg",
  40863. extra: 1618/1535,
  40864. bottom: 46/1664
  40865. }
  40866. },
  40867. back: {
  40868. height: math.unit(5 + 4/12, "feet"),
  40869. name: "Back",
  40870. image: {
  40871. source: "./media/characters/artan/back.svg",
  40872. extra: 1618/1543,
  40873. bottom: 31/1649
  40874. }
  40875. },
  40876. },
  40877. [
  40878. {
  40879. name: "Normal",
  40880. height: math.unit(5 + 4/12, "feet"),
  40881. default: true
  40882. },
  40883. ]
  40884. ))
  40885. characterMakers.push(() => makeCharacter(
  40886. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  40887. {
  40888. side: {
  40889. height: math.unit(182, "cm"),
  40890. weight: math.unit(1000, "lb"),
  40891. name: "Side",
  40892. image: {
  40893. source: "./media/characters/silver-dragon/side.svg",
  40894. extra: 710/287,
  40895. bottom: 88/798
  40896. }
  40897. },
  40898. },
  40899. [
  40900. {
  40901. name: "Normal",
  40902. height: math.unit(182, "cm"),
  40903. default: true
  40904. },
  40905. ]
  40906. ))
  40907. characterMakers.push(() => makeCharacter(
  40908. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  40909. {
  40910. side: {
  40911. height: math.unit(6 + 6/12, "feet"),
  40912. weight: math.unit(1.5, "tons"),
  40913. name: "Side",
  40914. image: {
  40915. source: "./media/characters/zephyr/side.svg",
  40916. extra: 1433/586,
  40917. bottom: 109/1542
  40918. }
  40919. },
  40920. },
  40921. [
  40922. {
  40923. name: "Normal",
  40924. height: math.unit(6 + 6/12, "feet"),
  40925. default: true
  40926. },
  40927. ]
  40928. ))
  40929. characterMakers.push(() => makeCharacter(
  40930. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  40931. {
  40932. side: {
  40933. height: math.unit(1, "feet"),
  40934. name: "Side",
  40935. image: {
  40936. source: "./media/characters/vixye/side.svg",
  40937. extra: 632/541,
  40938. bottom: 0/632
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Normal",
  40945. height: math.unit(1, "feet"),
  40946. default: true
  40947. },
  40948. {
  40949. name: "True",
  40950. height: math.unit(1e15, "multiverses")
  40951. },
  40952. ]
  40953. ))
  40954. characterMakers.push(() => makeCharacter(
  40955. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  40956. {
  40957. front: {
  40958. height: math.unit(8 + 2/12, "feet"),
  40959. weight: math.unit(650, "lb"),
  40960. name: "Front",
  40961. image: {
  40962. source: "./media/characters/darla-mac-lochlainn/front.svg",
  40963. extra: 1174/1137,
  40964. bottom: 82/1256
  40965. }
  40966. },
  40967. back: {
  40968. height: math.unit(8 + 2/12, "feet"),
  40969. weight: math.unit(650, "lb"),
  40970. name: "Back",
  40971. image: {
  40972. source: "./media/characters/darla-mac-lochlainn/back.svg",
  40973. extra: 1204/1157,
  40974. bottom: 46/1250
  40975. }
  40976. },
  40977. },
  40978. [
  40979. {
  40980. name: "Wildform",
  40981. height: math.unit(8 + 2/12, "feet"),
  40982. default: true
  40983. },
  40984. ]
  40985. ))
  40986. characterMakers.push(() => makeCharacter(
  40987. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  40988. {
  40989. front: {
  40990. height: math.unit(18, "feet"),
  40991. name: "Front",
  40992. image: {
  40993. source: "./media/characters/cyphin/front.svg",
  40994. extra: 970/886,
  40995. bottom: 42/1012
  40996. }
  40997. },
  40998. back: {
  40999. height: math.unit(18, "feet"),
  41000. name: "Back",
  41001. image: {
  41002. source: "./media/characters/cyphin/back.svg",
  41003. extra: 1009/894,
  41004. bottom: 24/1033
  41005. }
  41006. },
  41007. head: {
  41008. height: math.unit(5.05, "feet"),
  41009. name: "Head",
  41010. image: {
  41011. source: "./media/characters/cyphin/head.svg"
  41012. }
  41013. },
  41014. tailbud: {
  41015. height: math.unit(5, "feet"),
  41016. name: "Tailbud",
  41017. image: {
  41018. source: "./media/characters/cyphin/tailbud.svg"
  41019. }
  41020. },
  41021. },
  41022. [
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41027. {
  41028. side: {
  41029. height: math.unit(10, "feet"),
  41030. weight: math.unit(6, "tons"),
  41031. name: "Side",
  41032. image: {
  41033. source: "./media/characters/raijin/side.svg",
  41034. extra: 1529/613,
  41035. bottom: 337/1866
  41036. }
  41037. },
  41038. },
  41039. [
  41040. {
  41041. name: "Normal",
  41042. height: math.unit(10, "feet"),
  41043. default: true
  41044. },
  41045. ]
  41046. ))
  41047. characterMakers.push(() => makeCharacter(
  41048. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41049. {
  41050. side: {
  41051. height: math.unit(9, "feet"),
  41052. name: "Side",
  41053. image: {
  41054. source: "./media/characters/nilghais/side.svg",
  41055. extra: 1047/744,
  41056. bottom: 91/1138
  41057. }
  41058. },
  41059. head: {
  41060. height: math.unit(3.14, "feet"),
  41061. name: "Head",
  41062. image: {
  41063. source: "./media/characters/nilghais/head.svg"
  41064. }
  41065. },
  41066. mouth: {
  41067. height: math.unit(4.6, "feet"),
  41068. name: "Mouth",
  41069. image: {
  41070. source: "./media/characters/nilghais/mouth.svg"
  41071. }
  41072. },
  41073. wings: {
  41074. height: math.unit(24, "feet"),
  41075. name: "Wings",
  41076. image: {
  41077. source: "./media/characters/nilghais/wings.svg"
  41078. }
  41079. },
  41080. ass: {
  41081. height: math.unit(6.12, "feet"),
  41082. name: "Ass",
  41083. image: {
  41084. source: "./media/characters/nilghais/ass.svg"
  41085. }
  41086. },
  41087. },
  41088. [
  41089. {
  41090. name: "Normal",
  41091. height: math.unit(9, "feet"),
  41092. default: true
  41093. },
  41094. ]
  41095. ))
  41096. characterMakers.push(() => makeCharacter(
  41097. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41098. {
  41099. regular: {
  41100. height: math.unit(16 + 2/12, "feet"),
  41101. weight: math.unit(2300, "lb"),
  41102. name: "Regular",
  41103. image: {
  41104. source: "./media/characters/zolgar/regular.svg",
  41105. extra: 1246/1004,
  41106. bottom: 124/1370
  41107. }
  41108. },
  41109. boxers: {
  41110. height: math.unit(16 + 2/12, "feet"),
  41111. weight: math.unit(2300, "lb"),
  41112. name: "Boxers",
  41113. image: {
  41114. source: "./media/characters/zolgar/boxers.svg",
  41115. extra: 1246/1004,
  41116. bottom: 124/1370
  41117. }
  41118. },
  41119. armored: {
  41120. height: math.unit(16 + 2/12, "feet"),
  41121. weight: math.unit(2300, "lb"),
  41122. name: "Armored",
  41123. image: {
  41124. source: "./media/characters/zolgar/armored.svg",
  41125. extra: 1246/1004,
  41126. bottom: 124/1370
  41127. }
  41128. },
  41129. goth: {
  41130. height: math.unit(16 + 2/12, "feet"),
  41131. weight: math.unit(2300, "lb"),
  41132. name: "Goth",
  41133. image: {
  41134. source: "./media/characters/zolgar/goth.svg",
  41135. extra: 1246/1004,
  41136. bottom: 124/1370
  41137. }
  41138. },
  41139. },
  41140. [
  41141. {
  41142. name: "Shrunken Down",
  41143. height: math.unit(9 + 2/12, "feet")
  41144. },
  41145. {
  41146. name: "Normal",
  41147. height: math.unit(16 + 2/12, "feet"),
  41148. default: true
  41149. },
  41150. ]
  41151. ))
  41152. characterMakers.push(() => makeCharacter(
  41153. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41154. {
  41155. front: {
  41156. height: math.unit(6, "feet"),
  41157. weight: math.unit(168, "lb"),
  41158. name: "Front",
  41159. image: {
  41160. source: "./media/characters/luca/front.svg",
  41161. extra: 841/667,
  41162. bottom: 102/943
  41163. }
  41164. },
  41165. },
  41166. [
  41167. {
  41168. name: "Normal",
  41169. height: math.unit(6, "feet"),
  41170. default: true
  41171. },
  41172. ]
  41173. ))
  41174. characterMakers.push(() => makeCharacter(
  41175. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41176. {
  41177. side: {
  41178. height: math.unit(7 + 3/12, "feet"),
  41179. weight: math.unit(312, "lb"),
  41180. name: "Side",
  41181. image: {
  41182. source: "./media/characters/zezo/side.svg",
  41183. extra: 1192/1067,
  41184. bottom: 63/1255
  41185. }
  41186. },
  41187. },
  41188. [
  41189. {
  41190. name: "Normal",
  41191. height: math.unit(7 + 3/12, "feet"),
  41192. default: true
  41193. },
  41194. ]
  41195. ))
  41196. characterMakers.push(() => makeCharacter(
  41197. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41198. {
  41199. front: {
  41200. height: math.unit(5 + 5/12, "feet"),
  41201. weight: math.unit(170, "lb"),
  41202. name: "Front",
  41203. image: {
  41204. source: "./media/characters/mayso/front.svg",
  41205. extra: 1215/1108,
  41206. bottom: 16/1231
  41207. }
  41208. },
  41209. },
  41210. [
  41211. {
  41212. name: "Normal",
  41213. height: math.unit(5 + 5/12, "feet"),
  41214. default: true
  41215. },
  41216. ]
  41217. ))
  41218. characterMakers.push(() => makeCharacter(
  41219. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41220. {
  41221. front: {
  41222. height: math.unit(4 + 3/12, "feet"),
  41223. weight: math.unit(80, "lb"),
  41224. name: "Front",
  41225. image: {
  41226. source: "./media/characters/hess/front.svg",
  41227. extra: 1200/1123,
  41228. bottom: 16/1216
  41229. }
  41230. },
  41231. },
  41232. [
  41233. {
  41234. name: "Normal",
  41235. height: math.unit(4 + 3/12, "feet"),
  41236. default: true
  41237. },
  41238. ]
  41239. ))
  41240. //characters
  41241. function makeCharacters() {
  41242. const results = [];
  41243. characterMakers.forEach(character => {
  41244. results.push(character());
  41245. });
  41246. return results;
  41247. }