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

42741 строка
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: 1900/1825,
  2718. bottom: 82/1982
  2719. }
  2720. },
  2721. side: {
  2722. height: math.unit(6, "feet"),
  2723. weight: math.unit(75, "kg"),
  2724. name: "Side",
  2725. image: {
  2726. source: "./media/characters/shingo/side.svg",
  2727. extra: 1930/1865,
  2728. bottom: 16/1946
  2729. }
  2730. },
  2731. back: {
  2732. height: math.unit(6, "feet"),
  2733. weight: math.unit(75, "kg"),
  2734. name: "Back",
  2735. image: {
  2736. source: "./media/characters/shingo/back.svg",
  2737. extra: 1922/1852,
  2738. bottom: 16/1938
  2739. }
  2740. },
  2741. frontDressed: {
  2742. height: math.unit(6, "feet"),
  2743. weight: math.unit(150, "lb"),
  2744. name: "Front-dressed",
  2745. image: {
  2746. source: "./media/characters/shingo/front-dressed.svg",
  2747. extra: 1900/1825,
  2748. bottom: 82/1982
  2749. }
  2750. },
  2751. paw: {
  2752. height: math.unit(1.29, "feet"),
  2753. name: "Paw",
  2754. image: {
  2755. source: "./media/characters/shingo/paw.svg"
  2756. }
  2757. },
  2758. hand: {
  2759. height: math.unit(1.07, "feet"),
  2760. name: "Hand",
  2761. image: {
  2762. source: "./media/characters/shingo/hand.svg"
  2763. }
  2764. },
  2765. frontAlt: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Front (Alt)",
  2769. image: {
  2770. source: "./media/characters/shingo/front-alt.svg",
  2771. extra: 3511 / 3338,
  2772. bottom: 0.005
  2773. }
  2774. },
  2775. frontAlt2: {
  2776. height: math.unit(6, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Front (Alt 2)",
  2779. image: {
  2780. source: "./media/characters/shingo/front-alt-2.svg",
  2781. extra: 706/681,
  2782. bottom: 11/717
  2783. }
  2784. },
  2785. pawAlt: {
  2786. height: math.unit(1, "feet"),
  2787. name: "Paw (Alt)",
  2788. image: {
  2789. source: "./media/characters/shingo/paw-alt.svg"
  2790. }
  2791. },
  2792. },
  2793. [
  2794. {
  2795. name: "Micro",
  2796. height: math.unit(4, "inches")
  2797. },
  2798. {
  2799. name: "Normal",
  2800. height: math.unit(6, "feet"),
  2801. default: true
  2802. },
  2803. {
  2804. name: "Macro",
  2805. height: math.unit(108, "feet")
  2806. },
  2807. {
  2808. name: "Macro+",
  2809. height: math.unit(1500, "feet")
  2810. },
  2811. ]
  2812. ))
  2813. characterMakers.push(() => makeCharacter(
  2814. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2815. {
  2816. side: {
  2817. height: math.unit(6, "feet"),
  2818. weight: math.unit(75, "kg"),
  2819. name: "Side",
  2820. image: {
  2821. source: "./media/characters/aigey/side.svg"
  2822. }
  2823. },
  2824. },
  2825. [
  2826. {
  2827. name: "Macro",
  2828. height: math.unit(200, "feet"),
  2829. default: true
  2830. },
  2831. {
  2832. name: "Megamacro",
  2833. height: math.unit(100, "miles")
  2834. },
  2835. ]
  2836. )
  2837. )
  2838. characterMakers.push(() => makeCharacter(
  2839. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2840. {
  2841. front: {
  2842. height: math.unit(5 + 5 / 12, "feet"),
  2843. weight: math.unit(75, "kg"),
  2844. name: "Front",
  2845. image: {
  2846. source: "./media/characters/natasha/front.svg",
  2847. extra: 859 / 824,
  2848. bottom: 23 / 879.6
  2849. }
  2850. },
  2851. frontNsfw: {
  2852. height: math.unit(5 + 5 / 12, "feet"),
  2853. weight: math.unit(75, "kg"),
  2854. name: "Front (NSFW)",
  2855. image: {
  2856. source: "./media/characters/natasha/front-nsfw.svg",
  2857. extra: 859 / 824,
  2858. bottom: 23 / 879.6
  2859. }
  2860. },
  2861. frontErect: {
  2862. height: math.unit(5 + 5 / 12, "feet"),
  2863. weight: math.unit(75, "kg"),
  2864. name: "Front (Erect)",
  2865. image: {
  2866. source: "./media/characters/natasha/front-erect.svg",
  2867. extra: 859 / 824,
  2868. bottom: 23 / 879.6
  2869. }
  2870. },
  2871. back: {
  2872. height: math.unit(5 + 5 / 12, "feet"),
  2873. weight: math.unit(75, "kg"),
  2874. name: "Back",
  2875. image: {
  2876. source: "./media/characters/natasha/back.svg",
  2877. extra: 887.9 / 852.6,
  2878. bottom: 9.7 / 896.4
  2879. }
  2880. },
  2881. backAlt: {
  2882. height: math.unit(5 + 5 / 12, "feet"),
  2883. weight: math.unit(75, "kg"),
  2884. name: "Back (Alt)",
  2885. image: {
  2886. source: "./media/characters/natasha/back-alt.svg",
  2887. extra: 1236.7 / 1192,
  2888. bottom: 22.3 / 1258.2
  2889. }
  2890. },
  2891. dick: {
  2892. height: math.unit(1.772, "feet"),
  2893. name: "Dick",
  2894. image: {
  2895. source: "./media/characters/natasha/dick.svg"
  2896. }
  2897. },
  2898. paw: {
  2899. height: math.unit(0.250, "meters"),
  2900. name: "Paw",
  2901. image: {
  2902. source: "./media/characters/natasha/paw.svg"
  2903. }
  2904. },
  2905. },
  2906. [
  2907. {
  2908. name: "Normal",
  2909. height: math.unit(5 + 5 / 12, "feet")
  2910. },
  2911. {
  2912. name: "Large",
  2913. height: math.unit(12, "feet")
  2914. },
  2915. {
  2916. name: "Macro",
  2917. height: math.unit(100, "feet"),
  2918. default: true
  2919. },
  2920. {
  2921. name: "Macro+",
  2922. height: math.unit(260, "feet")
  2923. },
  2924. {
  2925. name: "Macro++",
  2926. height: math.unit(1, "mile")
  2927. },
  2928. ]
  2929. ))
  2930. characterMakers.push(() => makeCharacter(
  2931. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2932. {
  2933. front: {
  2934. height: math.unit(6, "feet"),
  2935. weight: math.unit(75, "kg"),
  2936. name: "Front",
  2937. image: {
  2938. source: "./media/characters/malik/front.svg"
  2939. }
  2940. },
  2941. side: {
  2942. height: math.unit(6, "feet"),
  2943. weight: math.unit(75, "kg"),
  2944. name: "Side",
  2945. image: {
  2946. source: "./media/characters/malik/side.svg",
  2947. extra: 1.1539
  2948. }
  2949. },
  2950. back: {
  2951. height: math.unit(6, "feet"),
  2952. weight: math.unit(75, "kg"),
  2953. name: "Back",
  2954. image: {
  2955. source: "./media/characters/malik/back.svg"
  2956. }
  2957. },
  2958. },
  2959. [
  2960. {
  2961. name: "Macro",
  2962. height: math.unit(156, "feet"),
  2963. default: true
  2964. },
  2965. {
  2966. name: "Macro+",
  2967. height: math.unit(1188, "feet")
  2968. },
  2969. ]
  2970. ))
  2971. characterMakers.push(() => makeCharacter(
  2972. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2973. {
  2974. front: {
  2975. height: math.unit(6, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Front",
  2978. image: {
  2979. source: "./media/characters/sefer/front.svg",
  2980. extra: 848 / 659,
  2981. bottom: 28.3 / 876.442
  2982. }
  2983. },
  2984. back: {
  2985. height: math.unit(6, "feet"),
  2986. weight: math.unit(75, "kg"),
  2987. name: "Back",
  2988. image: {
  2989. source: "./media/characters/sefer/back.svg",
  2990. extra: 864 / 695,
  2991. bottom: 10 / 871
  2992. }
  2993. },
  2994. frontDressed: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Front (Dressed)",
  2998. image: {
  2999. source: "./media/characters/sefer/front-dressed.svg",
  3000. extra: 839 / 653,
  3001. bottom: 37.6 / 878
  3002. }
  3003. },
  3004. },
  3005. [
  3006. {
  3007. name: "Normal",
  3008. height: math.unit(6, "feet"),
  3009. default: true
  3010. },
  3011. ]
  3012. ))
  3013. characterMakers.push(() => makeCharacter(
  3014. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3015. {
  3016. body: {
  3017. height: math.unit(2.2428, "meter"),
  3018. weight: math.unit(124.738, "kg"),
  3019. name: "Body",
  3020. image: {
  3021. extra: 1225 / 1050,
  3022. source: "./media/characters/north/front.svg"
  3023. }
  3024. }
  3025. },
  3026. [
  3027. {
  3028. name: "Micro",
  3029. height: math.unit(4, "inches")
  3030. },
  3031. {
  3032. name: "Macro",
  3033. height: math.unit(63, "meters")
  3034. },
  3035. {
  3036. name: "Megamacro",
  3037. height: math.unit(101, "miles"),
  3038. default: true
  3039. }
  3040. ]
  3041. ))
  3042. characterMakers.push(() => makeCharacter(
  3043. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3044. {
  3045. angled: {
  3046. height: math.unit(4, "meter"),
  3047. weight: math.unit(150, "kg"),
  3048. name: "Angled",
  3049. image: {
  3050. source: "./media/characters/talan/angled-sfw.svg",
  3051. bottom: 29 / 3734
  3052. }
  3053. },
  3054. angledNsfw: {
  3055. height: math.unit(4, "meter"),
  3056. weight: math.unit(150, "kg"),
  3057. name: "Angled (NSFW)",
  3058. image: {
  3059. source: "./media/characters/talan/angled-nsfw.svg",
  3060. bottom: 29 / 3734
  3061. }
  3062. },
  3063. frontNsfw: {
  3064. height: math.unit(4, "meter"),
  3065. weight: math.unit(150, "kg"),
  3066. name: "Front (NSFW)",
  3067. image: {
  3068. source: "./media/characters/talan/front-nsfw.svg",
  3069. bottom: 29 / 3734
  3070. }
  3071. },
  3072. sideNsfw: {
  3073. height: math.unit(4, "meter"),
  3074. weight: math.unit(150, "kg"),
  3075. name: "Side (NSFW)",
  3076. image: {
  3077. source: "./media/characters/talan/side-nsfw.svg",
  3078. bottom: 29 / 3734
  3079. }
  3080. },
  3081. back: {
  3082. height: math.unit(4, "meter"),
  3083. weight: math.unit(150, "kg"),
  3084. name: "Back",
  3085. image: {
  3086. source: "./media/characters/talan/back.svg"
  3087. }
  3088. },
  3089. dickBottom: {
  3090. height: math.unit(0.621, "meter"),
  3091. name: "Dick (Bottom)",
  3092. image: {
  3093. source: "./media/characters/talan/dick-bottom.svg"
  3094. }
  3095. },
  3096. dickTop: {
  3097. height: math.unit(0.621, "meter"),
  3098. name: "Dick (Top)",
  3099. image: {
  3100. source: "./media/characters/talan/dick-top.svg"
  3101. }
  3102. },
  3103. dickSide: {
  3104. height: math.unit(0.305, "meter"),
  3105. name: "Dick (Side)",
  3106. image: {
  3107. source: "./media/characters/talan/dick-side.svg"
  3108. }
  3109. },
  3110. dickFront: {
  3111. height: math.unit(0.305, "meter"),
  3112. name: "Dick (Front)",
  3113. image: {
  3114. source: "./media/characters/talan/dick-front.svg"
  3115. }
  3116. },
  3117. },
  3118. [
  3119. {
  3120. name: "Normal",
  3121. height: math.unit(4, "meters")
  3122. },
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(100, "meters")
  3126. },
  3127. {
  3128. name: "Megamacro",
  3129. height: math.unit(2, "miles"),
  3130. default: true
  3131. },
  3132. {
  3133. name: "Gigamacro",
  3134. height: math.unit(5000, "miles")
  3135. },
  3136. {
  3137. name: "Teramacro",
  3138. height: math.unit(100, "parsecs")
  3139. }
  3140. ]
  3141. ))
  3142. characterMakers.push(() => makeCharacter(
  3143. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3144. {
  3145. front: {
  3146. height: math.unit(2, "meter"),
  3147. weight: math.unit(90, "kg"),
  3148. name: "Front",
  3149. image: {
  3150. source: "./media/characters/gael'rathus/front.svg"
  3151. }
  3152. },
  3153. frontAlt: {
  3154. height: math.unit(2, "meter"),
  3155. weight: math.unit(90, "kg"),
  3156. name: "Front (alt)",
  3157. image: {
  3158. source: "./media/characters/gael'rathus/front-alt.svg"
  3159. }
  3160. },
  3161. frontAlt2: {
  3162. height: math.unit(2, "meter"),
  3163. weight: math.unit(90, "kg"),
  3164. name: "Front (alt 2)",
  3165. image: {
  3166. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3167. }
  3168. }
  3169. },
  3170. [
  3171. {
  3172. name: "Normal",
  3173. height: math.unit(9, "feet"),
  3174. default: true
  3175. },
  3176. {
  3177. name: "Large",
  3178. height: math.unit(25, "feet")
  3179. },
  3180. {
  3181. name: "Macro",
  3182. height: math.unit(0.25, "miles")
  3183. },
  3184. {
  3185. name: "Megamacro",
  3186. height: math.unit(10, "miles")
  3187. }
  3188. ]
  3189. ))
  3190. characterMakers.push(() => makeCharacter(
  3191. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3192. {
  3193. side: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(140, "kg"),
  3196. name: "Side",
  3197. image: {
  3198. source: "./media/characters/sosha/side.svg",
  3199. bottom: 0.042
  3200. }
  3201. },
  3202. },
  3203. [
  3204. {
  3205. name: "Normal",
  3206. height: math.unit(12, "feet"),
  3207. default: true
  3208. }
  3209. ]
  3210. ))
  3211. characterMakers.push(() => makeCharacter(
  3212. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3213. {
  3214. side: {
  3215. height: math.unit(5 + 5 / 12, "feet"),
  3216. weight: math.unit(170, "kg"),
  3217. name: "Side",
  3218. image: {
  3219. source: "./media/characters/runnola/side.svg",
  3220. extra: 741 / 448,
  3221. bottom: 0.05
  3222. }
  3223. },
  3224. },
  3225. [
  3226. {
  3227. name: "Small",
  3228. height: math.unit(3, "feet")
  3229. },
  3230. {
  3231. name: "Normal",
  3232. height: math.unit(5 + 5 / 12, "feet"),
  3233. default: true
  3234. },
  3235. {
  3236. name: "Big",
  3237. height: math.unit(10, "feet")
  3238. },
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3243. {
  3244. front: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(50, "kg"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/kurribird/front.svg",
  3250. bottom: 0.015
  3251. }
  3252. },
  3253. frontAlt: {
  3254. height: math.unit(1.5, "meter"),
  3255. weight: math.unit(50, "kg"),
  3256. name: "Front (Alt)",
  3257. image: {
  3258. source: "./media/characters/kurribird/front-alt.svg",
  3259. extra: 1.45
  3260. }
  3261. },
  3262. },
  3263. [
  3264. {
  3265. name: "Normal",
  3266. height: math.unit(7, "feet")
  3267. },
  3268. {
  3269. name: "Big",
  3270. height: math.unit(12, "feet"),
  3271. default: true
  3272. },
  3273. {
  3274. name: "Macro",
  3275. height: math.unit(1500, "feet")
  3276. },
  3277. {
  3278. name: "Megamacro",
  3279. height: math.unit(2, "miles")
  3280. }
  3281. ]
  3282. ))
  3283. characterMakers.push(() => makeCharacter(
  3284. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3285. {
  3286. front: {
  3287. height: math.unit(2, "meter"),
  3288. weight: math.unit(80, "kg"),
  3289. name: "Front",
  3290. image: {
  3291. source: "./media/characters/elbial/front.svg",
  3292. extra: 1643 / 1556,
  3293. bottom: 60.2 / 1696
  3294. }
  3295. },
  3296. side: {
  3297. height: math.unit(2, "meter"),
  3298. weight: math.unit(80, "kg"),
  3299. name: "Side",
  3300. image: {
  3301. source: "./media/characters/elbial/side.svg",
  3302. extra: 1630 / 1565,
  3303. bottom: 71.5 / 1697
  3304. }
  3305. },
  3306. back: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(80, "kg"),
  3309. name: "Back",
  3310. image: {
  3311. source: "./media/characters/elbial/back.svg",
  3312. extra: 1668 / 1595,
  3313. bottom: 5.6 / 1672
  3314. }
  3315. },
  3316. frontDressed: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(80, "kg"),
  3319. name: "Front (Dressed)",
  3320. image: {
  3321. source: "./media/characters/elbial/front-dressed.svg",
  3322. extra: 1653 / 1584,
  3323. bottom: 57 / 1708
  3324. }
  3325. },
  3326. genitals: {
  3327. height: math.unit(2 / 3.367, "meter"),
  3328. name: "Genitals",
  3329. image: {
  3330. source: "./media/characters/elbial/genitals.svg"
  3331. }
  3332. },
  3333. },
  3334. [
  3335. {
  3336. name: "Large",
  3337. height: math.unit(100, "feet")
  3338. },
  3339. {
  3340. name: "Macro",
  3341. height: math.unit(500, "feet"),
  3342. default: true
  3343. },
  3344. {
  3345. name: "Megamacro",
  3346. height: math.unit(10, "miles")
  3347. },
  3348. {
  3349. name: "Gigamacro",
  3350. height: math.unit(25000, "miles")
  3351. },
  3352. {
  3353. name: "Full-Size",
  3354. height: math.unit(8000000, "gigaparsecs")
  3355. }
  3356. ]
  3357. ))
  3358. characterMakers.push(() => makeCharacter(
  3359. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3360. {
  3361. front: {
  3362. height: math.unit(2, "meter"),
  3363. weight: math.unit(60, "kg"),
  3364. name: "Front",
  3365. image: {
  3366. source: "./media/characters/noah/front.svg"
  3367. }
  3368. },
  3369. talons: {
  3370. height: math.unit(0.315, "meter"),
  3371. name: "Talons",
  3372. image: {
  3373. source: "./media/characters/noah/talons.svg"
  3374. }
  3375. }
  3376. },
  3377. [
  3378. {
  3379. name: "Large",
  3380. height: math.unit(50, "feet")
  3381. },
  3382. {
  3383. name: "Macro",
  3384. height: math.unit(750, "feet"),
  3385. default: true
  3386. },
  3387. {
  3388. name: "Megamacro",
  3389. height: math.unit(50, "miles")
  3390. },
  3391. {
  3392. name: "Gigamacro",
  3393. height: math.unit(100000, "miles")
  3394. },
  3395. {
  3396. name: "Full-Size",
  3397. height: math.unit(3000000000, "miles")
  3398. }
  3399. ]
  3400. ))
  3401. characterMakers.push(() => makeCharacter(
  3402. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3403. {
  3404. front: {
  3405. height: math.unit(2, "meter"),
  3406. weight: math.unit(80, "kg"),
  3407. name: "Front",
  3408. image: {
  3409. source: "./media/characters/natalya/front.svg"
  3410. }
  3411. },
  3412. back: {
  3413. height: math.unit(2, "meter"),
  3414. weight: math.unit(80, "kg"),
  3415. name: "Back",
  3416. image: {
  3417. source: "./media/characters/natalya/back.svg"
  3418. }
  3419. }
  3420. },
  3421. [
  3422. {
  3423. name: "Normal",
  3424. height: math.unit(150, "feet"),
  3425. default: true
  3426. },
  3427. {
  3428. name: "Megamacro",
  3429. height: math.unit(5, "miles")
  3430. },
  3431. {
  3432. name: "Full-Size",
  3433. height: math.unit(600, "kiloparsecs")
  3434. }
  3435. ]
  3436. ))
  3437. characterMakers.push(() => makeCharacter(
  3438. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3439. {
  3440. front: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(50, "kg"),
  3443. name: "Front",
  3444. image: {
  3445. source: "./media/characters/erestrebah/front.svg",
  3446. extra: 208 / 193,
  3447. bottom: 0.055
  3448. }
  3449. },
  3450. back: {
  3451. height: math.unit(2, "meter"),
  3452. weight: math.unit(50, "kg"),
  3453. name: "Back",
  3454. image: {
  3455. source: "./media/characters/erestrebah/back.svg",
  3456. extra: 1.3
  3457. }
  3458. }
  3459. },
  3460. [
  3461. {
  3462. name: "Normal",
  3463. height: math.unit(10, "feet")
  3464. },
  3465. {
  3466. name: "Large",
  3467. height: math.unit(50, "feet"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Macro",
  3472. height: math.unit(300, "feet")
  3473. },
  3474. {
  3475. name: "Macro+",
  3476. height: math.unit(750, "feet")
  3477. },
  3478. {
  3479. name: "Megamacro",
  3480. height: math.unit(3, "miles")
  3481. }
  3482. ]
  3483. ))
  3484. characterMakers.push(() => makeCharacter(
  3485. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3486. {
  3487. front: {
  3488. height: math.unit(2, "meter"),
  3489. weight: math.unit(80, "kg"),
  3490. name: "Front",
  3491. image: {
  3492. source: "./media/characters/jennifer/front.svg",
  3493. bottom: 0.11,
  3494. extra: 1.16
  3495. }
  3496. },
  3497. frontAlt: {
  3498. height: math.unit(2, "meter"),
  3499. weight: math.unit(80, "kg"),
  3500. name: "Front (Alt)",
  3501. image: {
  3502. source: "./media/characters/jennifer/front-alt.svg"
  3503. }
  3504. }
  3505. },
  3506. [
  3507. {
  3508. name: "Canon Height",
  3509. height: math.unit(120, "feet"),
  3510. default: true
  3511. },
  3512. {
  3513. name: "Macro+",
  3514. height: math.unit(300, "feet")
  3515. },
  3516. {
  3517. name: "Megamacro",
  3518. height: math.unit(20000, "feet")
  3519. }
  3520. ]
  3521. ))
  3522. characterMakers.push(() => makeCharacter(
  3523. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3524. {
  3525. front: {
  3526. height: math.unit(2, "meter"),
  3527. weight: math.unit(50, "kg"),
  3528. name: "Front",
  3529. image: {
  3530. source: "./media/characters/kalista/front.svg",
  3531. extra: 1947 / 1700,
  3532. bottom: 76.6 / 1412.98
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(50, "kg"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/kalista/back.svg",
  3541. extra: 1366 / 1156,
  3542. bottom: 33.9 / 1362.78
  3543. }
  3544. }
  3545. },
  3546. [
  3547. {
  3548. name: "Uncomfortably Small",
  3549. height: math.unit(10, "feet")
  3550. },
  3551. {
  3552. name: "Small",
  3553. height: math.unit(30, "feet")
  3554. },
  3555. {
  3556. name: "Macro",
  3557. height: math.unit(100, "feet"),
  3558. default: true
  3559. },
  3560. {
  3561. name: "Macro+",
  3562. height: math.unit(2000, "feet")
  3563. },
  3564. {
  3565. name: "True Form",
  3566. height: math.unit(8924, "miles")
  3567. }
  3568. ]
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3572. {
  3573. front: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(120, "kg"),
  3576. name: "Front",
  3577. image: {
  3578. source: "./media/characters/ggv/front.svg"
  3579. }
  3580. },
  3581. side: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(120, "kg"),
  3584. name: "Side",
  3585. image: {
  3586. source: "./media/characters/ggv/side.svg"
  3587. }
  3588. }
  3589. },
  3590. [
  3591. {
  3592. name: "Extremely Puny",
  3593. height: math.unit(9 + 5 / 12, "feet")
  3594. },
  3595. {
  3596. name: "Horribly Small",
  3597. height: math.unit(47.7, "miles"),
  3598. default: true
  3599. },
  3600. {
  3601. name: "Reasonably Sized",
  3602. height: math.unit(25000, "parsecs")
  3603. },
  3604. {
  3605. name: "Slightly Uncompressed",
  3606. height: math.unit(7.77e31, "parsecs")
  3607. },
  3608. {
  3609. name: "Omniversal",
  3610. height: math.unit(1e300, "meters")
  3611. },
  3612. ]
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3616. {
  3617. front: {
  3618. height: math.unit(2, "meter"),
  3619. weight: math.unit(75, "lb"),
  3620. name: "Front",
  3621. image: {
  3622. source: "./media/characters/napalm/front.svg"
  3623. }
  3624. },
  3625. back: {
  3626. height: math.unit(2, "meter"),
  3627. weight: math.unit(75, "lb"),
  3628. name: "Back",
  3629. image: {
  3630. source: "./media/characters/napalm/back.svg"
  3631. }
  3632. }
  3633. },
  3634. [
  3635. {
  3636. name: "Standard",
  3637. height: math.unit(55, "feet"),
  3638. default: true
  3639. }
  3640. ]
  3641. ))
  3642. characterMakers.push(() => makeCharacter(
  3643. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3644. {
  3645. front: {
  3646. height: math.unit(7 + 5 / 6, "feet"),
  3647. weight: math.unit(325, "lb"),
  3648. name: "Front",
  3649. image: {
  3650. source: "./media/characters/asana/front.svg",
  3651. extra: 1133 / 1060,
  3652. bottom: 15.2 / 1148.6
  3653. }
  3654. },
  3655. back: {
  3656. height: math.unit(7 + 5 / 6, "feet"),
  3657. weight: math.unit(325, "lb"),
  3658. name: "Back",
  3659. image: {
  3660. source: "./media/characters/asana/back.svg",
  3661. extra: 1114 / 1043,
  3662. bottom: 5 / 1120
  3663. }
  3664. },
  3665. dressedDark: {
  3666. height: math.unit(7 + 5 / 6, "feet"),
  3667. weight: math.unit(325, "lb"),
  3668. name: "Dressed (Dark)",
  3669. image: {
  3670. source: "./media/characters/asana/dressed-dark.svg",
  3671. extra: 1133 / 1060,
  3672. bottom: 15.2 / 1148.6
  3673. }
  3674. },
  3675. dressedLight: {
  3676. height: math.unit(7 + 5 / 6, "feet"),
  3677. weight: math.unit(325, "lb"),
  3678. name: "Dressed (Light)",
  3679. image: {
  3680. source: "./media/characters/asana/dressed-light.svg",
  3681. extra: 1133 / 1060,
  3682. bottom: 15.2 / 1148.6
  3683. }
  3684. },
  3685. },
  3686. [
  3687. {
  3688. name: "Standard",
  3689. height: math.unit(7 + 5 / 6, "feet"),
  3690. default: true
  3691. },
  3692. {
  3693. name: "Large",
  3694. height: math.unit(10, "meters")
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(2500, "meters")
  3699. },
  3700. {
  3701. name: "Megamacro",
  3702. height: math.unit(5e6, "meters")
  3703. },
  3704. {
  3705. name: "Examacro",
  3706. height: math.unit(5e12, "lightyears")
  3707. },
  3708. {
  3709. name: "Max Size",
  3710. height: math.unit(1e31, "lightyears")
  3711. }
  3712. ]
  3713. ))
  3714. characterMakers.push(() => makeCharacter(
  3715. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3716. {
  3717. front: {
  3718. height: math.unit(2, "meter"),
  3719. weight: math.unit(60, "kg"),
  3720. name: "Front",
  3721. image: {
  3722. source: "./media/characters/ebony/front.svg",
  3723. bottom: 0.03,
  3724. extra: 1045 / 810 + 0.03
  3725. }
  3726. },
  3727. side: {
  3728. height: math.unit(2, "meter"),
  3729. weight: math.unit(60, "kg"),
  3730. name: "Side",
  3731. image: {
  3732. source: "./media/characters/ebony/side.svg",
  3733. bottom: 0.03,
  3734. extra: 1045 / 810 + 0.03
  3735. }
  3736. },
  3737. back: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(60, "kg"),
  3740. name: "Back",
  3741. image: {
  3742. source: "./media/characters/ebony/back.svg",
  3743. bottom: 0.01,
  3744. extra: 1045 / 810 + 0.01
  3745. }
  3746. },
  3747. },
  3748. [
  3749. // TODO check why I did this lol
  3750. {
  3751. name: "Standard",
  3752. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3753. default: true
  3754. },
  3755. {
  3756. name: "Macro",
  3757. height: math.unit(200, "feet")
  3758. },
  3759. {
  3760. name: "Gigamacro",
  3761. height: math.unit(13000, "km")
  3762. }
  3763. ]
  3764. ))
  3765. characterMakers.push(() => makeCharacter(
  3766. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3767. {
  3768. front: {
  3769. height: math.unit(6, "feet"),
  3770. weight: math.unit(175, "lb"),
  3771. name: "Front",
  3772. image: {
  3773. source: "./media/characters/mountain/front.svg",
  3774. extra: 972 / 955,
  3775. bottom: 64 / 1036.6
  3776. }
  3777. },
  3778. back: {
  3779. height: math.unit(6, "feet"),
  3780. weight: math.unit(175, "lb"),
  3781. name: "Back",
  3782. image: {
  3783. source: "./media/characters/mountain/back.svg",
  3784. extra: 970 / 950,
  3785. bottom: 28.25 / 999
  3786. }
  3787. },
  3788. },
  3789. [
  3790. {
  3791. name: "Large",
  3792. height: math.unit(20, "meters")
  3793. },
  3794. {
  3795. name: "Macro",
  3796. height: math.unit(300, "meters")
  3797. },
  3798. {
  3799. name: "Gigamacro",
  3800. height: math.unit(10000, "km"),
  3801. default: true
  3802. },
  3803. {
  3804. name: "Examacro",
  3805. height: math.unit(10e9, "lightyears")
  3806. }
  3807. ]
  3808. ))
  3809. characterMakers.push(() => makeCharacter(
  3810. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3811. {
  3812. front: {
  3813. height: math.unit(8, "feet"),
  3814. weight: math.unit(500, "lb"),
  3815. name: "Front",
  3816. image: {
  3817. source: "./media/characters/rick/front.svg"
  3818. }
  3819. }
  3820. },
  3821. [
  3822. {
  3823. name: "Normal",
  3824. height: math.unit(8, "feet"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Macro",
  3829. height: math.unit(5, "km")
  3830. }
  3831. ]
  3832. ))
  3833. characterMakers.push(() => makeCharacter(
  3834. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3835. {
  3836. front: {
  3837. height: math.unit(8, "feet"),
  3838. weight: math.unit(120, "lb"),
  3839. name: "Front",
  3840. image: {
  3841. source: "./media/characters/ona/front.svg"
  3842. }
  3843. },
  3844. frontAlt: {
  3845. height: math.unit(8, "feet"),
  3846. weight: math.unit(120, "lb"),
  3847. name: "Front (Alt)",
  3848. image: {
  3849. source: "./media/characters/ona/front-alt.svg"
  3850. }
  3851. },
  3852. back: {
  3853. height: math.unit(8, "feet"),
  3854. weight: math.unit(120, "lb"),
  3855. name: "Back",
  3856. image: {
  3857. source: "./media/characters/ona/back.svg"
  3858. }
  3859. },
  3860. foot: {
  3861. height: math.unit(1.1, "feet"),
  3862. name: "Foot",
  3863. image: {
  3864. source: "./media/characters/ona/foot.svg"
  3865. }
  3866. }
  3867. },
  3868. [
  3869. {
  3870. name: "Megamacro",
  3871. height: math.unit(70, "km"),
  3872. default: true
  3873. },
  3874. {
  3875. name: "Gigamacro",
  3876. height: math.unit(681818, "miles")
  3877. },
  3878. {
  3879. name: "Examacro",
  3880. height: math.unit(3800000, "lightyears")
  3881. },
  3882. ]
  3883. ))
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3886. {
  3887. front: {
  3888. height: math.unit(12, "feet"),
  3889. weight: math.unit(3000, "lb"),
  3890. name: "Front",
  3891. image: {
  3892. source: "./media/characters/mech/front.svg",
  3893. extra: 2900 / 2770,
  3894. bottom: 110 / 3010
  3895. }
  3896. },
  3897. back: {
  3898. height: math.unit(12, "feet"),
  3899. weight: math.unit(3000, "lb"),
  3900. name: "Back",
  3901. image: {
  3902. source: "./media/characters/mech/back.svg",
  3903. extra: 3011 / 2890,
  3904. bottom: 94 / 3105
  3905. }
  3906. },
  3907. maw: {
  3908. height: math.unit(3.07, "feet"),
  3909. name: "Maw",
  3910. image: {
  3911. source: "./media/characters/mech/maw.svg"
  3912. }
  3913. },
  3914. head: {
  3915. height: math.unit(2.82, "feet"),
  3916. name: "Head",
  3917. image: {
  3918. source: "./media/characters/mech/head.svg"
  3919. }
  3920. },
  3921. dick: {
  3922. height: math.unit(1.43, "feet"),
  3923. name: "Dick",
  3924. image: {
  3925. source: "./media/characters/mech/dick.svg"
  3926. }
  3927. },
  3928. },
  3929. [
  3930. {
  3931. name: "Normal",
  3932. height: math.unit(12, "feet")
  3933. },
  3934. {
  3935. name: "Macro",
  3936. height: math.unit(300, "feet"),
  3937. default: true
  3938. },
  3939. {
  3940. name: "Macro+",
  3941. height: math.unit(1500, "feet")
  3942. },
  3943. ]
  3944. ))
  3945. characterMakers.push(() => makeCharacter(
  3946. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3947. {
  3948. front: {
  3949. height: math.unit(1.3, "meter"),
  3950. weight: math.unit(30, "kg"),
  3951. name: "Front",
  3952. image: {
  3953. source: "./media/characters/gregory/front.svg",
  3954. }
  3955. }
  3956. },
  3957. [
  3958. {
  3959. name: "Normal",
  3960. height: math.unit(1.3, "meter"),
  3961. default: true
  3962. },
  3963. {
  3964. name: "Macro",
  3965. height: math.unit(20, "meter")
  3966. }
  3967. ]
  3968. ))
  3969. characterMakers.push(() => makeCharacter(
  3970. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3971. {
  3972. front: {
  3973. height: math.unit(2.8, "meter"),
  3974. weight: math.unit(200, "kg"),
  3975. name: "Front",
  3976. image: {
  3977. source: "./media/characters/elory/front.svg",
  3978. }
  3979. }
  3980. },
  3981. [
  3982. {
  3983. name: "Normal",
  3984. height: math.unit(2.8, "meter"),
  3985. default: true
  3986. },
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(38, "meter")
  3990. }
  3991. ]
  3992. ))
  3993. characterMakers.push(() => makeCharacter(
  3994. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3995. {
  3996. front: {
  3997. height: math.unit(470, "feet"),
  3998. weight: math.unit(924, "tons"),
  3999. name: "Front",
  4000. image: {
  4001. source: "./media/characters/angelpatamon/front.svg",
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Normal",
  4008. height: math.unit(470, "feet"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Deity Size I",
  4013. height: math.unit(28651.2, "km")
  4014. },
  4015. {
  4016. name: "Deity Size II",
  4017. height: math.unit(171907.2, "km")
  4018. }
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4023. {
  4024. side: {
  4025. height: math.unit(7.2, "meter"),
  4026. weight: math.unit(8.2, "tons"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/cryae/side.svg",
  4030. extra: 3500 / 1500
  4031. }
  4032. }
  4033. },
  4034. [
  4035. {
  4036. name: "Normal",
  4037. height: math.unit(7.2, "meter"),
  4038. default: true
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(6, "feet"),
  4047. weight: math.unit(175, "lb"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/xera/front.svg",
  4051. extra: 2377 / 1972,
  4052. bottom: 75.5 / 2452
  4053. }
  4054. },
  4055. side: {
  4056. height: math.unit(6, "feet"),
  4057. weight: math.unit(175, "lb"),
  4058. name: "Side",
  4059. image: {
  4060. source: "./media/characters/xera/side.svg",
  4061. extra: 2345 / 2019,
  4062. bottom: 39.7 / 2384
  4063. }
  4064. },
  4065. back: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Back",
  4069. image: {
  4070. source: "./media/characters/xera/back.svg",
  4071. extra: 2095 / 1984,
  4072. bottom: 67 / 2166
  4073. }
  4074. },
  4075. },
  4076. [
  4077. {
  4078. name: "Small",
  4079. height: math.unit(10, "feet")
  4080. },
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(500, "meters"),
  4084. default: true
  4085. },
  4086. {
  4087. name: "Macro+",
  4088. height: math.unit(10, "km")
  4089. },
  4090. {
  4091. name: "Gigamacro",
  4092. height: math.unit(25000, "km")
  4093. },
  4094. {
  4095. name: "Teramacro",
  4096. height: math.unit(3e6, "km")
  4097. }
  4098. ]
  4099. ))
  4100. characterMakers.push(() => makeCharacter(
  4101. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4102. {
  4103. front: {
  4104. height: math.unit(6, "feet"),
  4105. weight: math.unit(175, "lb"),
  4106. name: "Front",
  4107. image: {
  4108. source: "./media/characters/nebula/front.svg",
  4109. extra: 2566 / 2362,
  4110. bottom: 81 / 2644
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Small",
  4117. height: math.unit(4.5, "meters")
  4118. },
  4119. {
  4120. name: "Macro",
  4121. height: math.unit(1500, "meters"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Megamacro",
  4126. height: math.unit(150, "km")
  4127. },
  4128. {
  4129. name: "Gigamacro",
  4130. height: math.unit(27000, "km")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(6, "feet"),
  4139. weight: math.unit(225, "lb"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/abysgar/front.svg"
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Small",
  4149. height: math.unit(4.5, "meters")
  4150. },
  4151. {
  4152. name: "Macro",
  4153. height: math.unit(1250, "meters"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Megamacro",
  4158. height: math.unit(125, "km")
  4159. },
  4160. {
  4161. name: "Gigamacro",
  4162. height: math.unit(26000, "km")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4168. {
  4169. front: {
  4170. height: math.unit(6, "feet"),
  4171. weight: math.unit(180, "lb"),
  4172. name: "Front",
  4173. image: {
  4174. source: "./media/characters/yakuz/front.svg"
  4175. }
  4176. }
  4177. },
  4178. [
  4179. {
  4180. name: "Small",
  4181. height: math.unit(5, "meters")
  4182. },
  4183. {
  4184. name: "Macro",
  4185. height: math.unit(1500, "meters"),
  4186. default: true
  4187. },
  4188. {
  4189. name: "Megamacro",
  4190. height: math.unit(200, "km")
  4191. },
  4192. {
  4193. name: "Gigamacro",
  4194. height: math.unit(100000, "km")
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4200. {
  4201. front: {
  4202. height: math.unit(6, "feet"),
  4203. weight: math.unit(175, "lb"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/mirova/front.svg",
  4207. extra: 3334 / 3071,
  4208. bottom: 42 / 3375.6
  4209. }
  4210. }
  4211. },
  4212. [
  4213. {
  4214. name: "Small",
  4215. height: math.unit(5, "meters")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(900, "meters"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "Megamacro",
  4224. height: math.unit(135, "km")
  4225. },
  4226. {
  4227. name: "Gigamacro",
  4228. height: math.unit(20000, "km")
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4234. {
  4235. side: {
  4236. height: math.unit(28.35, "feet"),
  4237. weight: math.unit(99.75, "tons"),
  4238. name: "Side",
  4239. image: {
  4240. source: "./media/characters/asana-mech/side.svg",
  4241. extra: 923 / 699,
  4242. bottom: 50 / 975
  4243. }
  4244. },
  4245. chaingun: {
  4246. height: math.unit(7, "feet"),
  4247. weight: math.unit(2400, "lb"),
  4248. name: "Chaingun",
  4249. image: {
  4250. source: "./media/characters/asana-mech/chaingun.svg"
  4251. }
  4252. },
  4253. laser: {
  4254. height: math.unit(7.12, "feet"),
  4255. weight: math.unit(2000, "lb"),
  4256. name: "Laser",
  4257. image: {
  4258. source: "./media/characters/asana-mech/laser.svg"
  4259. }
  4260. },
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(28.35, "feet"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Macro",
  4270. height: math.unit(2500, "feet")
  4271. },
  4272. {
  4273. name: "Megamacro",
  4274. height: math.unit(25, "miles")
  4275. },
  4276. {
  4277. name: "Examacro",
  4278. height: math.unit(6e8, "lightyears")
  4279. },
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4284. {
  4285. front: {
  4286. height: math.unit(5, "meters"),
  4287. weight: math.unit(1000, "kg"),
  4288. name: "Front",
  4289. image: {
  4290. source: "./media/characters/asche/front.svg",
  4291. extra: 1258 / 1190,
  4292. bottom: 47 / 1305
  4293. }
  4294. },
  4295. frontUnderwear: {
  4296. height: math.unit(5, "meters"),
  4297. weight: math.unit(1000, "kg"),
  4298. name: "Front (Underwear)",
  4299. image: {
  4300. source: "./media/characters/asche/front-underwear.svg",
  4301. extra: 1258 / 1190,
  4302. bottom: 47 / 1305
  4303. }
  4304. },
  4305. frontDressed: {
  4306. height: math.unit(5, "meters"),
  4307. weight: math.unit(1000, "kg"),
  4308. name: "Front (Dressed)",
  4309. image: {
  4310. source: "./media/characters/asche/front-dressed.svg",
  4311. extra: 1258 / 1190,
  4312. bottom: 47 / 1305
  4313. }
  4314. },
  4315. frontArmor: {
  4316. height: math.unit(5, "meters"),
  4317. weight: math.unit(1000, "kg"),
  4318. name: "Front (Armored)",
  4319. image: {
  4320. source: "./media/characters/asche/front-armored.svg",
  4321. extra: 1374 / 1308,
  4322. bottom: 23 / 1397
  4323. }
  4324. },
  4325. mp724: {
  4326. height: math.unit(0.96, "meters"),
  4327. weight: math.unit(38, "kg"),
  4328. name: "H&K MP724",
  4329. image: {
  4330. source: "./media/characters/asche/h&k-mp724.svg"
  4331. }
  4332. },
  4333. side: {
  4334. height: math.unit(5, "meters"),
  4335. weight: math.unit(1000, "kg"),
  4336. name: "Side",
  4337. image: {
  4338. source: "./media/characters/asche/side.svg",
  4339. extra: 1717 / 1609,
  4340. bottom: 0.005
  4341. }
  4342. },
  4343. back: {
  4344. height: math.unit(5, "meters"),
  4345. weight: math.unit(1000, "kg"),
  4346. name: "Back",
  4347. image: {
  4348. source: "./media/characters/asche/back.svg",
  4349. extra: 1570 / 1501
  4350. }
  4351. },
  4352. },
  4353. [
  4354. {
  4355. name: "DEFCON 5",
  4356. height: math.unit(5, "meters")
  4357. },
  4358. {
  4359. name: "DEFCON 4",
  4360. height: math.unit(500, "meters"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "DEFCON 3",
  4365. height: math.unit(5, "km")
  4366. },
  4367. {
  4368. name: "DEFCON 2",
  4369. height: math.unit(500, "km")
  4370. },
  4371. {
  4372. name: "DEFCON 1",
  4373. height: math.unit(500000, "km")
  4374. },
  4375. {
  4376. name: "DEFCON 0",
  4377. height: math.unit(3, "gigaparsecs")
  4378. },
  4379. ]
  4380. ))
  4381. characterMakers.push(() => makeCharacter(
  4382. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4383. {
  4384. front: {
  4385. height: math.unit(2, "meters"),
  4386. weight: math.unit(76, "kg"),
  4387. name: "Front",
  4388. image: {
  4389. source: "./media/characters/gale/front.svg"
  4390. }
  4391. },
  4392. frontAlt1: {
  4393. height: math.unit(2, "meters"),
  4394. weight: math.unit(76, "kg"),
  4395. name: "Front (Alt 1)",
  4396. image: {
  4397. source: "./media/characters/gale/front-alt-1.svg"
  4398. }
  4399. },
  4400. frontAlt2: {
  4401. height: math.unit(2, "meters"),
  4402. weight: math.unit(76, "kg"),
  4403. name: "Front (Alt 2)",
  4404. image: {
  4405. source: "./media/characters/gale/front-alt-2.svg"
  4406. }
  4407. },
  4408. },
  4409. [
  4410. {
  4411. name: "Normal",
  4412. height: math.unit(7, "feet")
  4413. },
  4414. {
  4415. name: "Macro",
  4416. height: math.unit(150, "feet"),
  4417. default: true
  4418. },
  4419. {
  4420. name: "Macro+",
  4421. height: math.unit(300, "feet")
  4422. },
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4427. {
  4428. front: {
  4429. height: math.unit(2, "meters"),
  4430. weight: math.unit(76, "kg"),
  4431. name: "Front",
  4432. image: {
  4433. source: "./media/characters/draylen/front.svg"
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(150, "feet"),
  4441. default: true
  4442. }
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4447. {
  4448. front: {
  4449. height: math.unit(7 + 9 / 12, "feet"),
  4450. weight: math.unit(379, "lbs"),
  4451. name: "Front",
  4452. image: {
  4453. source: "./media/characters/chez/front.svg"
  4454. }
  4455. },
  4456. side: {
  4457. height: math.unit(7 + 9 / 12, "feet"),
  4458. weight: math.unit(379, "lbs"),
  4459. name: "Side",
  4460. image: {
  4461. source: "./media/characters/chez/side.svg"
  4462. }
  4463. }
  4464. },
  4465. [
  4466. {
  4467. name: "Normal",
  4468. height: math.unit(7 + 9 / 12, "feet"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "God King",
  4473. height: math.unit(9750000, "meters")
  4474. }
  4475. ]
  4476. ))
  4477. characterMakers.push(() => makeCharacter(
  4478. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4479. {
  4480. front: {
  4481. height: math.unit(6, "feet"),
  4482. weight: math.unit(275, "lbs"),
  4483. name: "Front",
  4484. image: {
  4485. source: "./media/characters/kaylum/front.svg",
  4486. bottom: 0.01,
  4487. extra: 1166 / 1031
  4488. }
  4489. },
  4490. frontWingless: {
  4491. height: math.unit(6, "feet"),
  4492. weight: math.unit(275, "lbs"),
  4493. name: "Front (Wingless)",
  4494. image: {
  4495. source: "./media/characters/kaylum/front-wingless.svg",
  4496. bottom: 0.01,
  4497. extra: 1117 / 1031
  4498. }
  4499. }
  4500. },
  4501. [
  4502. {
  4503. name: "Normal",
  4504. height: math.unit(3.05, "meters")
  4505. },
  4506. {
  4507. name: "Master",
  4508. height: math.unit(5.5, "meters")
  4509. },
  4510. {
  4511. name: "Rampage",
  4512. height: math.unit(19, "meters")
  4513. },
  4514. {
  4515. name: "Macro Lite",
  4516. height: math.unit(37, "meters")
  4517. },
  4518. {
  4519. name: "Hyper Predator",
  4520. height: math.unit(61, "meters")
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(138, "meters"),
  4525. default: true
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4531. {
  4532. front: {
  4533. height: math.unit(6, "feet"),
  4534. weight: math.unit(150, "lbs"),
  4535. name: "Front",
  4536. image: {
  4537. source: "./media/characters/geta/front.svg"
  4538. }
  4539. }
  4540. },
  4541. [
  4542. {
  4543. name: "Micro",
  4544. height: math.unit(3, "inches"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Normal",
  4549. height: math.unit(5 + 5 / 12, "feet")
  4550. }
  4551. ]
  4552. ))
  4553. characterMakers.push(() => makeCharacter(
  4554. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4555. {
  4556. front: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(300, "lbs"),
  4559. name: "Front",
  4560. image: {
  4561. source: "./media/characters/tyrnn/front.svg"
  4562. }
  4563. }
  4564. },
  4565. [
  4566. {
  4567. name: "Main Height",
  4568. height: math.unit(355, "feet"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Fave. Height",
  4573. height: math.unit(2400, "feet")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(300, "lbs"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/appledectomy/front.svg"
  4586. }
  4587. }
  4588. },
  4589. [
  4590. {
  4591. name: "Macro",
  4592. height: math.unit(2500, "feet")
  4593. },
  4594. {
  4595. name: "Megamacro",
  4596. height: math.unit(50, "miles"),
  4597. default: true
  4598. },
  4599. {
  4600. name: "Gigamacro",
  4601. height: math.unit(5000, "miles")
  4602. },
  4603. {
  4604. name: "Teramacro",
  4605. height: math.unit(250000, "miles")
  4606. },
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(6, "feet"),
  4614. weight: math.unit(200, "lbs"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/vulpes/front.svg",
  4618. extra: 573 / 543,
  4619. bottom: 0.033
  4620. }
  4621. },
  4622. side: {
  4623. height: math.unit(6, "feet"),
  4624. weight: math.unit(200, "lbs"),
  4625. name: "Side",
  4626. image: {
  4627. source: "./media/characters/vulpes/side.svg",
  4628. extra: 577 / 549,
  4629. bottom: 11 / 588
  4630. }
  4631. },
  4632. back: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(200, "lbs"),
  4635. name: "Back",
  4636. image: {
  4637. source: "./media/characters/vulpes/back.svg",
  4638. extra: 573 / 549,
  4639. bottom: 20 / 593
  4640. }
  4641. },
  4642. feet: {
  4643. height: math.unit(1.276, "feet"),
  4644. name: "Feet",
  4645. image: {
  4646. source: "./media/characters/vulpes/feet.svg"
  4647. }
  4648. },
  4649. maw: {
  4650. height: math.unit(1.18, "feet"),
  4651. name: "Maw",
  4652. image: {
  4653. source: "./media/characters/vulpes/maw.svg"
  4654. }
  4655. },
  4656. },
  4657. [
  4658. {
  4659. name: "Micro",
  4660. height: math.unit(2, "inches")
  4661. },
  4662. {
  4663. name: "Normal",
  4664. height: math.unit(6.3, "feet")
  4665. },
  4666. {
  4667. name: "Macro",
  4668. height: math.unit(850, "feet")
  4669. },
  4670. {
  4671. name: "Megamacro",
  4672. height: math.unit(7500, "feet"),
  4673. default: true
  4674. },
  4675. {
  4676. name: "Gigamacro",
  4677. height: math.unit(570000, "miles")
  4678. }
  4679. ]
  4680. ))
  4681. characterMakers.push(() => makeCharacter(
  4682. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4683. {
  4684. front: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(210, "lbs"),
  4687. name: "Front",
  4688. image: {
  4689. source: "./media/characters/rain-fallen/front.svg"
  4690. }
  4691. },
  4692. side: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(210, "lbs"),
  4695. name: "Side",
  4696. image: {
  4697. source: "./media/characters/rain-fallen/side.svg"
  4698. }
  4699. },
  4700. back: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(210, "lbs"),
  4703. name: "Back",
  4704. image: {
  4705. source: "./media/characters/rain-fallen/back.svg"
  4706. }
  4707. },
  4708. feral: {
  4709. height: math.unit(9, "feet"),
  4710. weight: math.unit(700, "lbs"),
  4711. name: "Feral",
  4712. image: {
  4713. source: "./media/characters/rain-fallen/feral.svg"
  4714. }
  4715. },
  4716. },
  4717. [
  4718. {
  4719. name: "Meddling with Mortals",
  4720. height: math.unit(8 + 8/12, "feet")
  4721. },
  4722. {
  4723. name: "Normal",
  4724. height: math.unit(5, "meter")
  4725. },
  4726. {
  4727. name: "Macro",
  4728. height: math.unit(150, "meter"),
  4729. default: true
  4730. },
  4731. {
  4732. name: "Megamacro",
  4733. height: math.unit(278e6, "meter")
  4734. },
  4735. {
  4736. name: "Gigamacro",
  4737. height: math.unit(2e9, "meter")
  4738. },
  4739. {
  4740. name: "Teramacro",
  4741. height: math.unit(8e12, "meter")
  4742. },
  4743. {
  4744. name: "Devourer",
  4745. height: math.unit(14, "zettameters")
  4746. },
  4747. {
  4748. name: "Scarlet King",
  4749. height: math.unit(18, "yottameters")
  4750. },
  4751. {
  4752. name: "Void",
  4753. height: math.unit(1e88, "yottameters")
  4754. }
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4759. {
  4760. standing: {
  4761. height: math.unit(6, "feet"),
  4762. weight: math.unit(180, "lbs"),
  4763. name: "Standing",
  4764. image: {
  4765. source: "./media/characters/zaakira/standing.svg",
  4766. extra: 1599/1504,
  4767. bottom: 39/1638
  4768. }
  4769. },
  4770. laying: {
  4771. height: math.unit(3, "feet"),
  4772. weight: math.unit(180, "lbs"),
  4773. name: "Laying",
  4774. image: {
  4775. source: "./media/characters/zaakira/laying.svg"
  4776. }
  4777. },
  4778. },
  4779. [
  4780. {
  4781. name: "Normal",
  4782. height: math.unit(12, "feet")
  4783. },
  4784. {
  4785. name: "Macro",
  4786. height: math.unit(279, "feet"),
  4787. default: true
  4788. }
  4789. ]
  4790. ))
  4791. characterMakers.push(() => makeCharacter(
  4792. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4793. {
  4794. femSfw: {
  4795. height: math.unit(8, "feet"),
  4796. weight: math.unit(350, "lb"),
  4797. name: "Fem",
  4798. image: {
  4799. source: "./media/characters/sigvald/fem-sfw.svg",
  4800. extra: 182 / 164,
  4801. bottom: 8.7 / 190.5
  4802. }
  4803. },
  4804. femNsfw: {
  4805. height: math.unit(8, "feet"),
  4806. weight: math.unit(350, "lb"),
  4807. name: "Fem (NSFW)",
  4808. image: {
  4809. source: "./media/characters/sigvald/fem-nsfw.svg",
  4810. extra: 182 / 164,
  4811. bottom: 8.7 / 190.5
  4812. }
  4813. },
  4814. maleNsfw: {
  4815. height: math.unit(8, "feet"),
  4816. weight: math.unit(350, "lb"),
  4817. name: "Male (NSFW)",
  4818. image: {
  4819. source: "./media/characters/sigvald/male-nsfw.svg",
  4820. extra: 182 / 164,
  4821. bottom: 8.7 / 190.5
  4822. }
  4823. },
  4824. hermNsfw: {
  4825. height: math.unit(8, "feet"),
  4826. weight: math.unit(350, "lb"),
  4827. name: "Herm (NSFW)",
  4828. image: {
  4829. source: "./media/characters/sigvald/herm-nsfw.svg",
  4830. extra: 182 / 164,
  4831. bottom: 8.7 / 190.5
  4832. }
  4833. },
  4834. dick: {
  4835. height: math.unit(2.36, "feet"),
  4836. name: "Dick",
  4837. image: {
  4838. source: "./media/characters/sigvald/dick.svg"
  4839. }
  4840. },
  4841. eye: {
  4842. height: math.unit(0.31, "feet"),
  4843. name: "Eye",
  4844. image: {
  4845. source: "./media/characters/sigvald/eye.svg"
  4846. }
  4847. },
  4848. mouth: {
  4849. height: math.unit(0.92, "feet"),
  4850. name: "Mouth",
  4851. image: {
  4852. source: "./media/characters/sigvald/mouth.svg"
  4853. }
  4854. },
  4855. paws: {
  4856. height: math.unit(2.2, "feet"),
  4857. name: "Paws",
  4858. image: {
  4859. source: "./media/characters/sigvald/paws.svg"
  4860. }
  4861. }
  4862. },
  4863. [
  4864. {
  4865. name: "Normal",
  4866. height: math.unit(8, "feet")
  4867. },
  4868. {
  4869. name: "Large",
  4870. height: math.unit(12, "feet")
  4871. },
  4872. {
  4873. name: "Larger",
  4874. height: math.unit(20, "feet")
  4875. },
  4876. {
  4877. name: "Macro",
  4878. height: math.unit(150, "feet")
  4879. },
  4880. {
  4881. name: "Macro+",
  4882. height: math.unit(200, "feet"),
  4883. default: true
  4884. },
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4889. {
  4890. side: {
  4891. height: math.unit(12, "feet"),
  4892. weight: math.unit(2000, "kg"),
  4893. name: "Side",
  4894. image: {
  4895. source: "./media/characters/scott/side.svg",
  4896. extra: 754 / 724,
  4897. bottom: 0.069
  4898. }
  4899. },
  4900. upright: {
  4901. height: math.unit(12, "feet"),
  4902. weight: math.unit(2000, "kg"),
  4903. name: "Upright",
  4904. image: {
  4905. source: "./media/characters/scott/upright.svg",
  4906. extra: 3881 / 3722,
  4907. bottom: 0.05
  4908. }
  4909. },
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(12, "feet"),
  4915. default: true
  4916. },
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4921. {
  4922. side: {
  4923. height: math.unit(8, "meters"),
  4924. weight: math.unit(84755, "lbs"),
  4925. name: "Side",
  4926. image: {
  4927. source: "./media/characters/tobias/side.svg",
  4928. extra: 1474 / 1096,
  4929. bottom: 38.9 / 1513.1235
  4930. }
  4931. },
  4932. },
  4933. [
  4934. {
  4935. name: "Normal",
  4936. height: math.unit(8, "meters"),
  4937. default: true
  4938. },
  4939. ]
  4940. ))
  4941. characterMakers.push(() => makeCharacter(
  4942. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4943. {
  4944. front: {
  4945. height: math.unit(5.5, "feet"),
  4946. weight: math.unit(400, "lbs"),
  4947. name: "Front",
  4948. image: {
  4949. source: "./media/characters/kieran/front.svg",
  4950. extra: 2694 / 2364,
  4951. bottom: 217 / 2908
  4952. }
  4953. },
  4954. side: {
  4955. height: math.unit(5.5, "feet"),
  4956. weight: math.unit(400, "lbs"),
  4957. name: "Side",
  4958. image: {
  4959. source: "./media/characters/kieran/side.svg",
  4960. extra: 875 / 777,
  4961. bottom: 84.6 / 959
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(5.5, "feet"),
  4969. default: true
  4970. },
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4975. {
  4976. side: {
  4977. height: math.unit(2, "meters"),
  4978. weight: math.unit(70, "kg"),
  4979. name: "Side",
  4980. image: {
  4981. source: "./media/characters/sanya/side.svg",
  4982. bottom: 0.02,
  4983. extra: 1.02
  4984. }
  4985. },
  4986. },
  4987. [
  4988. {
  4989. name: "Small",
  4990. height: math.unit(2, "meters")
  4991. },
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(3, "meters")
  4995. },
  4996. {
  4997. name: "Macro",
  4998. height: math.unit(16, "meters"),
  4999. default: true
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(2, "meters"),
  5008. weight: math.unit(120, "kg"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/miranda/front.svg",
  5012. extra: 195 / 185,
  5013. bottom: 10.9 / 206.5
  5014. }
  5015. },
  5016. back: {
  5017. height: math.unit(2, "meters"),
  5018. weight: math.unit(120, "kg"),
  5019. name: "Back",
  5020. image: {
  5021. source: "./media/characters/miranda/back.svg",
  5022. extra: 201 / 193,
  5023. bottom: 2.3 / 203.7
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(10, "feet"),
  5031. default: true
  5032. }
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "James", species: ["deer"], tags: ["anthro"] },
  5037. {
  5038. side: {
  5039. height: math.unit(2, "meters"),
  5040. weight: math.unit(100, "kg"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/james/front.svg",
  5044. extra: 10 / 8.5
  5045. }
  5046. },
  5047. },
  5048. [
  5049. {
  5050. name: "Normal",
  5051. height: math.unit(8.5, "feet"),
  5052. default: true
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5058. {
  5059. side: {
  5060. height: math.unit(9.5, "feet"),
  5061. weight: math.unit(2500, "lbs"),
  5062. name: "Side",
  5063. image: {
  5064. source: "./media/characters/heather/side.svg"
  5065. }
  5066. },
  5067. },
  5068. [
  5069. {
  5070. name: "Normal",
  5071. height: math.unit(9.5, "feet"),
  5072. default: true
  5073. }
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5078. {
  5079. side: {
  5080. height: math.unit(6.5, "feet"),
  5081. weight: math.unit(400, "lbs"),
  5082. name: "Side",
  5083. image: {
  5084. source: "./media/characters/lukas/side.svg",
  5085. extra: 7.25 / 6.5
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(6.5, "feet"),
  5093. default: true
  5094. }
  5095. ]
  5096. ))
  5097. characterMakers.push(() => makeCharacter(
  5098. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5099. {
  5100. side: {
  5101. height: math.unit(5, "feet"),
  5102. weight: math.unit(3000, "lbs"),
  5103. name: "Side",
  5104. image: {
  5105. source: "./media/characters/louise/side.svg"
  5106. }
  5107. },
  5108. },
  5109. [
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(5, "feet"),
  5113. default: true
  5114. }
  5115. ]
  5116. ))
  5117. characterMakers.push(() => makeCharacter(
  5118. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5119. {
  5120. side: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(150, "lbs"),
  5123. name: "Side",
  5124. image: {
  5125. source: "./media/characters/ramona/side.svg"
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(5.3, "meters"),
  5133. default: true
  5134. },
  5135. {
  5136. name: "Macro",
  5137. height: math.unit(20, "stories")
  5138. },
  5139. {
  5140. name: "Macro+",
  5141. height: math.unit(50, "stories")
  5142. },
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5147. {
  5148. standing: {
  5149. height: math.unit(5.75, "feet"),
  5150. weight: math.unit(160, "lbs"),
  5151. name: "Standing",
  5152. image: {
  5153. source: "./media/characters/deerpuff/standing.svg",
  5154. extra: 682 / 624
  5155. }
  5156. },
  5157. sitting: {
  5158. height: math.unit(5.75 / 1.79, "feet"),
  5159. weight: math.unit(160, "lbs"),
  5160. name: "Sitting",
  5161. image: {
  5162. source: "./media/characters/deerpuff/sitting.svg",
  5163. bottom: 44 / 400,
  5164. extra: 1
  5165. }
  5166. },
  5167. taurLaying: {
  5168. height: math.unit(6, "feet"),
  5169. weight: math.unit(400, "lbs"),
  5170. name: "Taur (Laying)",
  5171. image: {
  5172. source: "./media/characters/deerpuff/taur-laying.svg"
  5173. }
  5174. },
  5175. },
  5176. [
  5177. {
  5178. name: "Puffball",
  5179. height: math.unit(6, "inches")
  5180. },
  5181. {
  5182. name: "Normalpuff",
  5183. height: math.unit(5.75, "feet")
  5184. },
  5185. {
  5186. name: "Macropuff",
  5187. height: math.unit(1500, "feet"),
  5188. default: true
  5189. },
  5190. {
  5191. name: "Megapuff",
  5192. height: math.unit(500, "miles")
  5193. },
  5194. {
  5195. name: "Gigapuff",
  5196. height: math.unit(250000, "miles")
  5197. },
  5198. {
  5199. name: "Omegapuff",
  5200. height: math.unit(1000, "lightyears")
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5206. {
  5207. stomping: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(170, "lbs"),
  5210. name: "Stomping",
  5211. image: {
  5212. source: "./media/characters/vivian/stomping.svg"
  5213. }
  5214. },
  5215. sitting: {
  5216. height: math.unit(6 / 1.75, "feet"),
  5217. weight: math.unit(170, "lbs"),
  5218. name: "Sitting",
  5219. image: {
  5220. source: "./media/characters/vivian/sitting.svg",
  5221. bottom: 1 / 6.4,
  5222. extra: 1,
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(7, "feet"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Macro",
  5234. height: math.unit(10, "stories")
  5235. },
  5236. {
  5237. name: "Macro+",
  5238. height: math.unit(30, "stories")
  5239. },
  5240. {
  5241. name: "Megamacro",
  5242. height: math.unit(10, "miles")
  5243. },
  5244. {
  5245. name: "Megamacro+",
  5246. height: math.unit(2750000, "meters")
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(160, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/prince/front.svg",
  5259. extra: 3400 / 3000
  5260. }
  5261. },
  5262. jumping: {
  5263. height: math.unit(6, "feet"),
  5264. weight: math.unit(160, "lbs"),
  5265. name: "Jumping",
  5266. image: {
  5267. source: "./media/characters/prince/jump.svg",
  5268. extra: 2555 / 2134
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(7.75, "feet"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Not cute",
  5280. height: math.unit(17, "feet")
  5281. },
  5282. {
  5283. name: "I said NOT",
  5284. height: math.unit(91, "feet")
  5285. },
  5286. {
  5287. name: "Please stop",
  5288. height: math.unit(560, "feet")
  5289. },
  5290. {
  5291. name: "What have you done",
  5292. height: math.unit(2200, "feet")
  5293. },
  5294. {
  5295. name: "Deer God",
  5296. height: math.unit(3.6, "miles")
  5297. },
  5298. ]
  5299. ))
  5300. characterMakers.push(() => makeCharacter(
  5301. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5302. {
  5303. standing: {
  5304. height: math.unit(6, "feet"),
  5305. weight: math.unit(300, "lbs"),
  5306. name: "Standing",
  5307. image: {
  5308. source: "./media/characters/psymon/standing.svg",
  5309. extra: 1888 / 1810,
  5310. bottom: 0.05
  5311. }
  5312. },
  5313. slithering: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(300, "lbs"),
  5316. name: "Slithering",
  5317. image: {
  5318. source: "./media/characters/psymon/slithering.svg",
  5319. extra: 1330 / 1224
  5320. }
  5321. },
  5322. slitheringAlt: {
  5323. height: math.unit(6, "feet"),
  5324. weight: math.unit(300, "lbs"),
  5325. name: "Slithering (Alt)",
  5326. image: {
  5327. source: "./media/characters/psymon/slithering-alt.svg",
  5328. extra: 1330 / 1224
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Normal",
  5335. height: math.unit(11.25, "feet"),
  5336. default: true
  5337. },
  5338. {
  5339. name: "Large",
  5340. height: math.unit(27, "feet")
  5341. },
  5342. {
  5343. name: "Giant",
  5344. height: math.unit(87, "feet")
  5345. },
  5346. {
  5347. name: "Macro",
  5348. height: math.unit(365, "feet")
  5349. },
  5350. {
  5351. name: "Megamacro",
  5352. height: math.unit(3, "miles")
  5353. },
  5354. {
  5355. name: "World Serpent",
  5356. height: math.unit(8000, "miles")
  5357. },
  5358. ]
  5359. ))
  5360. characterMakers.push(() => makeCharacter(
  5361. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5362. {
  5363. front: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(180, "lbs"),
  5366. name: "Front",
  5367. image: {
  5368. source: "./media/characters/daimos/front.svg",
  5369. extra: 4160 / 3897,
  5370. bottom: 0.021
  5371. }
  5372. }
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(8, "feet"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Big Dog",
  5382. height: math.unit(22, "feet")
  5383. },
  5384. {
  5385. name: "Macro",
  5386. height: math.unit(127, "feet")
  5387. },
  5388. {
  5389. name: "Megamacro",
  5390. height: math.unit(3600, "feet")
  5391. },
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5396. {
  5397. side: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(180, "lbs"),
  5400. name: "Side",
  5401. image: {
  5402. source: "./media/characters/blake/side.svg",
  5403. extra: 1212 / 1120,
  5404. bottom: 0.05
  5405. }
  5406. },
  5407. crouched: {
  5408. height: math.unit(6 * 0.57, "feet"),
  5409. weight: math.unit(180, "lbs"),
  5410. name: "Crouched",
  5411. image: {
  5412. source: "./media/characters/blake/crouched.svg",
  5413. extra: 840 / 587,
  5414. bottom: 0.04
  5415. }
  5416. },
  5417. bent: {
  5418. height: math.unit(6 * 0.75, "feet"),
  5419. weight: math.unit(180, "lbs"),
  5420. name: "Bent",
  5421. image: {
  5422. source: "./media/characters/blake/bent.svg",
  5423. extra: 592 / 544,
  5424. bottom: 0.035
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(8 + 1 / 6, "feet"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Big Backside",
  5436. height: math.unit(37, "feet")
  5437. },
  5438. {
  5439. name: "Subway Shredder",
  5440. height: math.unit(72, "feet")
  5441. },
  5442. {
  5443. name: "City Carver",
  5444. height: math.unit(1675, "feet")
  5445. },
  5446. {
  5447. name: "Tectonic Tweaker",
  5448. height: math.unit(2300, "miles")
  5449. },
  5450. ]
  5451. ))
  5452. characterMakers.push(() => makeCharacter(
  5453. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5454. {
  5455. front: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(180, "lbs"),
  5458. name: "Front",
  5459. image: {
  5460. source: "./media/characters/guisetto/front.svg",
  5461. extra: 856 / 817,
  5462. bottom: 0.06
  5463. }
  5464. },
  5465. airborne: {
  5466. height: math.unit(6, "feet"),
  5467. weight: math.unit(180, "lbs"),
  5468. name: "Airborne",
  5469. image: {
  5470. source: "./media/characters/guisetto/airborne.svg",
  5471. extra: 584 / 525
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(10 + 11 / 12, "feet"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Large",
  5483. height: math.unit(35, "feet")
  5484. },
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(475, "feet")
  5488. },
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(6, "feet"),
  5496. weight: math.unit(180, "lbs"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/luxor/front.svg",
  5500. extra: 2940 / 2152
  5501. }
  5502. },
  5503. back: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(180, "lbs"),
  5506. name: "Back",
  5507. image: {
  5508. source: "./media/characters/luxor/back.svg",
  5509. extra: 1083 / 960
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Normal",
  5516. height: math.unit(5 + 5 / 6, "feet"),
  5517. default: true
  5518. },
  5519. {
  5520. name: "Lamp",
  5521. height: math.unit(50, "feet")
  5522. },
  5523. {
  5524. name: "Lämp",
  5525. height: math.unit(300, "feet")
  5526. },
  5527. {
  5528. name: "The sun is a lamp",
  5529. height: math.unit(250000, "miles")
  5530. },
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5535. {
  5536. front: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(50, "lbs"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/huoyan/front.svg"
  5542. }
  5543. },
  5544. side: {
  5545. height: math.unit(6, "feet"),
  5546. weight: math.unit(180, "lbs"),
  5547. name: "Side",
  5548. image: {
  5549. source: "./media/characters/huoyan/side.svg"
  5550. }
  5551. },
  5552. },
  5553. [
  5554. {
  5555. name: "Chef",
  5556. height: math.unit(9, "feet")
  5557. },
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(65, "feet"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(780, "feet")
  5566. },
  5567. {
  5568. name: "Flaming Mountain",
  5569. height: math.unit(4.8, "miles")
  5570. },
  5571. {
  5572. name: "Celestial",
  5573. height: math.unit(765000, "miles")
  5574. },
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(5 + 3 / 4, "feet"),
  5582. weight: math.unit(120, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/tails/front.svg"
  5586. }
  5587. }
  5588. },
  5589. [
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(5 + 3 / 4, "feet"),
  5593. default: true
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(4, "feet"),
  5602. weight: math.unit(50, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/rainy/front.svg"
  5606. }
  5607. }
  5608. },
  5609. [
  5610. {
  5611. name: "Macro",
  5612. height: math.unit(800, "feet"),
  5613. default: true
  5614. }
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(150, "lbs"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/rainier/front.svg"
  5626. }
  5627. }
  5628. },
  5629. [
  5630. {
  5631. name: "Micro",
  5632. height: math.unit(2, "mm"),
  5633. default: true
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(8 + 4/12, "feet"),
  5642. name: "Front",
  5643. image: {
  5644. source: "./media/characters/andy-renard/front.svg",
  5645. extra: 1839/1726,
  5646. bottom: 134/1973
  5647. }
  5648. },
  5649. back: {
  5650. height: math.unit(8 + 4/12, "feet"),
  5651. name: "Back",
  5652. image: {
  5653. source: "./media/characters/andy-renard/back.svg",
  5654. extra: 1838/1710,
  5655. bottom: 105/1943
  5656. }
  5657. },
  5658. },
  5659. [
  5660. {
  5661. name: "Tall",
  5662. height: math.unit(8 + 4/12, "feet")
  5663. },
  5664. {
  5665. name: "Mini Macro",
  5666. height: math.unit(15, "feet"),
  5667. default: true
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(100, "feet")
  5672. },
  5673. {
  5674. name: "Mega Macro",
  5675. height: math.unit(1000, "feet")
  5676. },
  5677. {
  5678. name: "Giga Macro",
  5679. height: math.unit(10, "miles")
  5680. },
  5681. {
  5682. name: "God Macro",
  5683. height: math.unit(1, "multiverse")
  5684. },
  5685. ]
  5686. ))
  5687. characterMakers.push(() => makeCharacter(
  5688. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5689. {
  5690. front: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(210, "lbs"),
  5693. name: "Front",
  5694. image: {
  5695. source: "./media/characters/cimmaron/front-sfw.svg",
  5696. extra: 701 / 676,
  5697. bottom: 0.046
  5698. }
  5699. },
  5700. back: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(210, "lbs"),
  5703. name: "Back",
  5704. image: {
  5705. source: "./media/characters/cimmaron/back-sfw.svg",
  5706. extra: 701 / 676,
  5707. bottom: 0.046
  5708. }
  5709. },
  5710. frontNsfw: {
  5711. height: math.unit(6, "feet"),
  5712. weight: math.unit(210, "lbs"),
  5713. name: "Front (NSFW)",
  5714. image: {
  5715. source: "./media/characters/cimmaron/front-nsfw.svg",
  5716. extra: 701 / 676,
  5717. bottom: 0.046
  5718. }
  5719. },
  5720. backNsfw: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(210, "lbs"),
  5723. name: "Back (NSFW)",
  5724. image: {
  5725. source: "./media/characters/cimmaron/back-nsfw.svg",
  5726. extra: 701 / 676,
  5727. bottom: 0.046
  5728. }
  5729. },
  5730. dick: {
  5731. height: math.unit(1.714, "feet"),
  5732. name: "Dick",
  5733. image: {
  5734. source: "./media/characters/cimmaron/dick.svg"
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(6, "feet"),
  5742. default: true
  5743. },
  5744. {
  5745. name: "Macro Mayor",
  5746. height: math.unit(350, "meters")
  5747. },
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5752. {
  5753. front: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(200, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/akari/front.svg",
  5759. extra: 962 / 901,
  5760. bottom: 0.04
  5761. }
  5762. }
  5763. },
  5764. [
  5765. {
  5766. name: "Micro",
  5767. height: math.unit(5, "inches"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(7, "feet")
  5773. },
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5778. {
  5779. front: {
  5780. height: math.unit(6, "feet"),
  5781. weight: math.unit(140, "lbs"),
  5782. name: "Front",
  5783. image: {
  5784. source: "./media/characters/cynosura/front.svg",
  5785. extra: 896 / 847
  5786. }
  5787. },
  5788. back: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(140, "lbs"),
  5791. name: "Back",
  5792. image: {
  5793. source: "./media/characters/cynosura/back.svg",
  5794. extra: 1365 / 1250
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Micro",
  5801. height: math.unit(4, "inches")
  5802. },
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(5.75, "feet"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Tall",
  5810. height: math.unit(10, "feet")
  5811. },
  5812. {
  5813. name: "Big",
  5814. height: math.unit(20, "feet")
  5815. },
  5816. {
  5817. name: "Macro",
  5818. height: math.unit(50, "feet")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(13 + 2/12, "feet"),
  5827. weight: math.unit(800, "kg"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/gin/front.svg",
  5831. extra: 1312/1191,
  5832. bottom: 45/1357
  5833. }
  5834. },
  5835. mouth: {
  5836. height: math.unit(2.39 * 1.8, "feet"),
  5837. name: "Mouth",
  5838. image: {
  5839. source: "./media/characters/gin/mouth.svg"
  5840. }
  5841. },
  5842. hand: {
  5843. height: math.unit(1.57 * 2.19, "feet"),
  5844. name: "Hand",
  5845. image: {
  5846. source: "./media/characters/gin/hand.svg"
  5847. }
  5848. },
  5849. foot: {
  5850. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5851. name: "Foot",
  5852. image: {
  5853. source: "./media/characters/gin/foot.svg"
  5854. }
  5855. },
  5856. sole: {
  5857. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5858. name: "Sole",
  5859. image: {
  5860. source: "./media/characters/gin/sole.svg"
  5861. }
  5862. },
  5863. },
  5864. [
  5865. {
  5866. name: "Very Small",
  5867. height: math.unit(13 + 2 / 12, "feet")
  5868. },
  5869. {
  5870. name: "Micro",
  5871. height: math.unit(600, "miles")
  5872. },
  5873. {
  5874. name: "Regular",
  5875. height: math.unit(20, "earths"),
  5876. default: true
  5877. },
  5878. {
  5879. name: "Macro",
  5880. height: math.unit(2.2, "solarradii")
  5881. },
  5882. {
  5883. name: "Teramacro",
  5884. height: math.unit(1.2, "galaxies")
  5885. },
  5886. {
  5887. name: "Omegamacro",
  5888. height: math.unit(200, "universes")
  5889. },
  5890. ]
  5891. ))
  5892. characterMakers.push(() => makeCharacter(
  5893. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5894. {
  5895. front: {
  5896. height: math.unit(6 + 1 / 6, "feet"),
  5897. weight: math.unit(178, "lbs"),
  5898. name: "Front",
  5899. image: {
  5900. source: "./media/characters/guy/front.svg"
  5901. }
  5902. }
  5903. },
  5904. [
  5905. {
  5906. name: "Normal",
  5907. height: math.unit(6 + 1 / 6, "feet"),
  5908. default: true
  5909. },
  5910. {
  5911. name: "Large",
  5912. height: math.unit(25 + 7 / 12, "feet")
  5913. },
  5914. {
  5915. name: "Macro",
  5916. height: math.unit(60 + 9 / 12, "feet")
  5917. },
  5918. {
  5919. name: "Macro+",
  5920. height: math.unit(246, "feet")
  5921. },
  5922. {
  5923. name: "Macro++",
  5924. height: math.unit(878, "feet")
  5925. }
  5926. ]
  5927. ))
  5928. characterMakers.push(() => makeCharacter(
  5929. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5930. {
  5931. front: {
  5932. height: math.unit(9, "feet"),
  5933. weight: math.unit(800, "lbs"),
  5934. name: "Front",
  5935. image: {
  5936. source: "./media/characters/tiberius/front.svg",
  5937. extra: 2295 / 2071
  5938. }
  5939. },
  5940. back: {
  5941. height: math.unit(9, "feet"),
  5942. weight: math.unit(800, "lbs"),
  5943. name: "Back",
  5944. image: {
  5945. source: "./media/characters/tiberius/back.svg",
  5946. extra: 2373 / 2160
  5947. }
  5948. },
  5949. },
  5950. [
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(9, "feet"),
  5954. default: true
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5960. {
  5961. front: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(600, "lbs"),
  5964. name: "Front",
  5965. image: {
  5966. source: "./media/characters/surgo/front.svg",
  5967. extra: 3591 / 2227
  5968. }
  5969. },
  5970. back: {
  5971. height: math.unit(6, "feet"),
  5972. weight: math.unit(600, "lbs"),
  5973. name: "Back",
  5974. image: {
  5975. source: "./media/characters/surgo/back.svg",
  5976. extra: 3557 / 2228
  5977. }
  5978. },
  5979. laying: {
  5980. height: math.unit(6 * 0.85, "feet"),
  5981. weight: math.unit(600, "lbs"),
  5982. name: "Laying",
  5983. image: {
  5984. source: "./media/characters/surgo/laying.svg"
  5985. }
  5986. },
  5987. },
  5988. [
  5989. {
  5990. name: "Normal",
  5991. height: math.unit(6, "feet"),
  5992. default: true
  5993. }
  5994. ]
  5995. ))
  5996. characterMakers.push(() => makeCharacter(
  5997. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5998. {
  5999. side: {
  6000. height: math.unit(6, "feet"),
  6001. weight: math.unit(150, "lbs"),
  6002. name: "Side",
  6003. image: {
  6004. source: "./media/characters/cibus/side.svg",
  6005. extra: 800 / 400
  6006. }
  6007. },
  6008. },
  6009. [
  6010. {
  6011. name: "Normal",
  6012. height: math.unit(6, "feet"),
  6013. default: true
  6014. }
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6019. {
  6020. front: {
  6021. height: math.unit(6, "feet"),
  6022. weight: math.unit(240, "lbs"),
  6023. name: "Front",
  6024. image: {
  6025. source: "./media/characters/nibbles/front.svg"
  6026. }
  6027. },
  6028. side: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(240, "lbs"),
  6031. name: "Side",
  6032. image: {
  6033. source: "./media/characters/nibbles/side.svg"
  6034. }
  6035. },
  6036. },
  6037. [
  6038. {
  6039. name: "Normal",
  6040. height: math.unit(9, "feet"),
  6041. default: true
  6042. }
  6043. ]
  6044. ))
  6045. characterMakers.push(() => makeCharacter(
  6046. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6047. {
  6048. side: {
  6049. height: math.unit(5 + 1 / 6, "feet"),
  6050. weight: math.unit(130, "lbs"),
  6051. name: "Side",
  6052. image: {
  6053. source: "./media/characters/rikky/side.svg",
  6054. extra: 851 / 801
  6055. }
  6056. },
  6057. },
  6058. [
  6059. {
  6060. name: "Normal",
  6061. height: math.unit(5 + 1 / 6, "feet")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(152, "feet"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Megamacro",
  6070. height: math.unit(7, "miles")
  6071. }
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6076. {
  6077. side: {
  6078. height: math.unit(370, "cm"),
  6079. weight: math.unit(350, "lbs"),
  6080. name: "Side",
  6081. image: {
  6082. source: "./media/characters/malfressa/side.svg"
  6083. }
  6084. },
  6085. walking: {
  6086. height: math.unit(370, "cm"),
  6087. weight: math.unit(350, "lbs"),
  6088. name: "Walking",
  6089. image: {
  6090. source: "./media/characters/malfressa/walking.svg"
  6091. }
  6092. },
  6093. feral: {
  6094. height: math.unit(2500, "cm"),
  6095. weight: math.unit(100000, "lbs"),
  6096. name: "Feral",
  6097. image: {
  6098. source: "./media/characters/malfressa/feral.svg",
  6099. extra: 2108 / 837,
  6100. bottom: 0.02
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(370, "cm")
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(300, "meters"),
  6112. default: true
  6113. }
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6118. {
  6119. front: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(60, "kg"),
  6122. name: "Front",
  6123. image: {
  6124. source: "./media/characters/jaro/front.svg"
  6125. }
  6126. },
  6127. back: {
  6128. height: math.unit(6, "feet"),
  6129. weight: math.unit(60, "kg"),
  6130. name: "Back",
  6131. image: {
  6132. source: "./media/characters/jaro/back.svg"
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Micro",
  6139. height: math.unit(7, "inches")
  6140. },
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(5.5, "feet"),
  6144. default: true
  6145. },
  6146. {
  6147. name: "Minimacro",
  6148. height: math.unit(20, "feet")
  6149. },
  6150. {
  6151. name: "Macro",
  6152. height: math.unit(200, "meters")
  6153. }
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6158. {
  6159. front: {
  6160. height: math.unit(6, "feet"),
  6161. weight: math.unit(195, "lb"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/rogue/front.svg"
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Macro",
  6171. height: math.unit(90, "feet"),
  6172. default: true
  6173. },
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6178. {
  6179. front: {
  6180. height: math.unit(5 + 8 / 12, "feet"),
  6181. weight: math.unit(140, "lb"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/piper/front.svg",
  6185. extra: 3948/3655,
  6186. bottom: 0/3948
  6187. }
  6188. },
  6189. },
  6190. [
  6191. {
  6192. name: "Micro",
  6193. height: math.unit(2, "inches")
  6194. },
  6195. {
  6196. name: "Normal",
  6197. height: math.unit(5 + 8 / 12, "feet")
  6198. },
  6199. {
  6200. name: "Macro",
  6201. height: math.unit(250, "feet"),
  6202. default: true
  6203. },
  6204. {
  6205. name: "Megamacro",
  6206. height: math.unit(7, "miles")
  6207. },
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6212. {
  6213. front: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(220, "lb"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/gemini/front.svg"
  6219. }
  6220. },
  6221. back: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(220, "lb"),
  6224. name: "Back",
  6225. image: {
  6226. source: "./media/characters/gemini/back.svg"
  6227. }
  6228. },
  6229. kneeling: {
  6230. height: math.unit(6 / 1.5, "feet"),
  6231. weight: math.unit(220, "lb"),
  6232. name: "Kneeling",
  6233. image: {
  6234. source: "./media/characters/gemini/kneeling.svg",
  6235. bottom: 0.02
  6236. }
  6237. },
  6238. },
  6239. [
  6240. {
  6241. name: "Macro",
  6242. height: math.unit(300, "meters"),
  6243. default: true
  6244. },
  6245. {
  6246. name: "Megamacro",
  6247. height: math.unit(6900, "meters")
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6253. {
  6254. anthro: {
  6255. height: math.unit(2.35, "meters"),
  6256. weight: math.unit(73, "kg"),
  6257. name: "Anthro",
  6258. image: {
  6259. source: "./media/characters/alicia/anthro.svg",
  6260. extra: 2571 / 2385,
  6261. bottom: 75 / 2648
  6262. }
  6263. },
  6264. paw: {
  6265. height: math.unit(1.32, "feet"),
  6266. name: "Paw",
  6267. image: {
  6268. source: "./media/characters/alicia/paw.svg"
  6269. }
  6270. },
  6271. feral: {
  6272. height: math.unit(1.69, "meters"),
  6273. weight: math.unit(73, "kg"),
  6274. name: "Feral",
  6275. image: {
  6276. source: "./media/characters/alicia/feral.svg",
  6277. extra: 2123 / 1715,
  6278. bottom: 222 / 2349
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(2.35, "meters")
  6286. },
  6287. {
  6288. name: "Macro",
  6289. height: math.unit(60, "meters"),
  6290. default: true
  6291. },
  6292. {
  6293. name: "Megamacro",
  6294. height: math.unit(10000, "kilometers")
  6295. },
  6296. ]
  6297. ))
  6298. characterMakers.push(() => makeCharacter(
  6299. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6300. {
  6301. front: {
  6302. height: math.unit(7, "feet"),
  6303. weight: math.unit(250, "lbs"),
  6304. name: "Front",
  6305. image: {
  6306. source: "./media/characters/archy/front.svg"
  6307. }
  6308. }
  6309. },
  6310. [
  6311. {
  6312. name: "Micro",
  6313. height: math.unit(1, "inch")
  6314. },
  6315. {
  6316. name: "Shorty",
  6317. height: math.unit(5, "feet")
  6318. },
  6319. {
  6320. name: "Normal",
  6321. height: math.unit(7, "feet")
  6322. },
  6323. {
  6324. name: "Macro",
  6325. height: math.unit(600, "meters"),
  6326. default: true
  6327. },
  6328. {
  6329. name: "Megamacro",
  6330. height: math.unit(1, "mile")
  6331. },
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(1.65, "meters"),
  6339. weight: math.unit(74, "kg"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/berri/front.svg",
  6343. extra: 857 / 837,
  6344. bottom: 18 / 877
  6345. }
  6346. },
  6347. bum: {
  6348. height: math.unit(1.46, "feet"),
  6349. name: "Bum",
  6350. image: {
  6351. source: "./media/characters/berri/bum.svg"
  6352. }
  6353. },
  6354. mouth: {
  6355. height: math.unit(0.44, "feet"),
  6356. name: "Mouth",
  6357. image: {
  6358. source: "./media/characters/berri/mouth.svg"
  6359. }
  6360. },
  6361. paw: {
  6362. height: math.unit(0.826, "feet"),
  6363. name: "Paw",
  6364. image: {
  6365. source: "./media/characters/berri/paw.svg"
  6366. }
  6367. },
  6368. },
  6369. [
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(1.65, "meters")
  6373. },
  6374. {
  6375. name: "Macro",
  6376. height: math.unit(60, "m"),
  6377. default: true
  6378. },
  6379. {
  6380. name: "Megamacro",
  6381. height: math.unit(9.213, "km")
  6382. },
  6383. {
  6384. name: "Planet Eater",
  6385. height: math.unit(489, "megameters")
  6386. },
  6387. {
  6388. name: "Teramacro",
  6389. height: math.unit(2471635000000, "meters")
  6390. },
  6391. {
  6392. name: "Examacro",
  6393. height: math.unit(8.0624e+26, "meters")
  6394. }
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(1.72, "meters"),
  6402. weight: math.unit(68, "kg"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/lexi/front.svg"
  6406. }
  6407. }
  6408. },
  6409. [
  6410. {
  6411. name: "Very Smol",
  6412. height: math.unit(10, "mm")
  6413. },
  6414. {
  6415. name: "Micro",
  6416. height: math.unit(6.8, "cm"),
  6417. default: true
  6418. },
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(1.72, "m")
  6422. }
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6427. {
  6428. front: {
  6429. height: math.unit(1.69, "meters"),
  6430. weight: math.unit(68, "kg"),
  6431. name: "Front",
  6432. image: {
  6433. source: "./media/characters/martin/front.svg",
  6434. extra: 596 / 581
  6435. }
  6436. }
  6437. },
  6438. [
  6439. {
  6440. name: "Micro",
  6441. height: math.unit(6.85, "cm"),
  6442. default: true
  6443. },
  6444. {
  6445. name: "Normal",
  6446. height: math.unit(1.69, "m")
  6447. }
  6448. ]
  6449. ))
  6450. characterMakers.push(() => makeCharacter(
  6451. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6452. {
  6453. front: {
  6454. height: math.unit(1.69, "meters"),
  6455. weight: math.unit(68, "kg"),
  6456. name: "Front",
  6457. image: {
  6458. source: "./media/characters/juno/front.svg"
  6459. }
  6460. }
  6461. },
  6462. [
  6463. {
  6464. name: "Micro",
  6465. height: math.unit(7, "cm")
  6466. },
  6467. {
  6468. name: "Normal",
  6469. height: math.unit(1.89, "m")
  6470. },
  6471. {
  6472. name: "Macro",
  6473. height: math.unit(353, "meters"),
  6474. default: true
  6475. }
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(1.93, "meters"),
  6483. weight: math.unit(83, "kg"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/samantha/front.svg"
  6487. }
  6488. },
  6489. frontClothed: {
  6490. height: math.unit(1.93, "meters"),
  6491. weight: math.unit(83, "kg"),
  6492. name: "Front (Clothed)",
  6493. image: {
  6494. source: "./media/characters/samantha/front-clothed.svg"
  6495. }
  6496. },
  6497. back: {
  6498. height: math.unit(1.93, "meters"),
  6499. weight: math.unit(83, "kg"),
  6500. name: "Back",
  6501. image: {
  6502. source: "./media/characters/samantha/back.svg"
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Normal",
  6509. height: math.unit(1.93, "m")
  6510. },
  6511. {
  6512. name: "Macro",
  6513. height: math.unit(74, "meters"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Macro+",
  6518. height: math.unit(223, "meters"),
  6519. },
  6520. {
  6521. name: "Megamacro",
  6522. height: math.unit(8381, "meters"),
  6523. },
  6524. {
  6525. name: "Megamacro+",
  6526. height: math.unit(12000, "kilometers")
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(1.92, "meters"),
  6535. weight: math.unit(80, "kg"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/dr-clay/front.svg"
  6539. }
  6540. },
  6541. frontClothed: {
  6542. height: math.unit(1.92, "meters"),
  6543. weight: math.unit(80, "kg"),
  6544. name: "Front (Clothed)",
  6545. image: {
  6546. source: "./media/characters/dr-clay/front-clothed.svg"
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(1.92, "m")
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(214, "meters"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Macro+",
  6562. height: math.unit(12.237, "meters"),
  6563. },
  6564. {
  6565. name: "Megamacro",
  6566. height: math.unit(557, "megameters"),
  6567. },
  6568. {
  6569. name: "Unimaginable",
  6570. height: math.unit(120e9, "lightyears")
  6571. },
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(2, "meters"),
  6579. weight: math.unit(80, "kg"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6583. }
  6584. }
  6585. },
  6586. [
  6587. {
  6588. name: "Teramacro",
  6589. height: math.unit(500000, "lightyears"),
  6590. default: true
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6596. {
  6597. crux: {
  6598. height: math.unit(2, "meters"),
  6599. weight: math.unit(150, "kg"),
  6600. name: "Crux",
  6601. image: {
  6602. source: "./media/characters/vemus/crux.svg",
  6603. extra: 1074/936,
  6604. bottom: 23/1097
  6605. }
  6606. },
  6607. skunkTanuki: {
  6608. height: math.unit(2, "meters"),
  6609. weight: math.unit(150, "kg"),
  6610. name: "Skunk-Tanuki",
  6611. image: {
  6612. source: "./media/characters/vemus/skunk-tanuki.svg",
  6613. extra: 926/893,
  6614. bottom: 20/946
  6615. }
  6616. },
  6617. },
  6618. [
  6619. {
  6620. name: "Normal",
  6621. height: math.unit(3.75, "meters"),
  6622. default: true
  6623. },
  6624. {
  6625. name: "Big",
  6626. height: math.unit(8, "meters")
  6627. },
  6628. {
  6629. name: "Macro",
  6630. height: math.unit(100, "meters")
  6631. },
  6632. {
  6633. name: "Macro+",
  6634. height: math.unit(1500, "meters")
  6635. },
  6636. {
  6637. name: "Stellar",
  6638. height: math.unit(14e8, "meters")
  6639. },
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(2, "meters"),
  6647. weight: math.unit(70, "kg"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/beherit/front.svg",
  6651. extra: 1408 / 1242
  6652. }
  6653. }
  6654. },
  6655. [
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(6, "feet")
  6659. },
  6660. {
  6661. name: "Lorg",
  6662. height: math.unit(25, "feet"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Lorger",
  6667. height: math.unit(75, "feet")
  6668. },
  6669. {
  6670. name: "Macro",
  6671. height: math.unit(200, "meters")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(2, "meters"),
  6680. weight: math.unit(150, "kg"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/everett/front.svg",
  6684. extra: 2038 / 1737,
  6685. bottom: 0.03
  6686. }
  6687. },
  6688. paw: {
  6689. height: math.unit(2 / 3.6, "meters"),
  6690. name: "Paw",
  6691. image: {
  6692. source: "./media/characters/everett/paw.svg"
  6693. }
  6694. },
  6695. },
  6696. [
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(15, "feet"),
  6700. default: true
  6701. },
  6702. {
  6703. name: "Lorg",
  6704. height: math.unit(70, "feet"),
  6705. default: true
  6706. },
  6707. {
  6708. name: "Lorger",
  6709. height: math.unit(250, "feet")
  6710. },
  6711. {
  6712. name: "Macro",
  6713. height: math.unit(500, "meters")
  6714. },
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6719. {
  6720. front: {
  6721. height: math.unit(2, "meters"),
  6722. weight: math.unit(86, "kg"),
  6723. name: "Front",
  6724. image: {
  6725. source: "./media/characters/rose/front.svg",
  6726. extra: 1785/1636,
  6727. bottom: 30/1815
  6728. }
  6729. },
  6730. frontSporty: {
  6731. height: math.unit(2, "meters"),
  6732. weight: math.unit(86, "kg"),
  6733. name: "Front (Sporty)",
  6734. image: {
  6735. source: "./media/characters/rose/front-sporty.svg",
  6736. extra: 350/335,
  6737. bottom: 10/360
  6738. }
  6739. },
  6740. frontAlt: {
  6741. height: math.unit(1.6, "meters"),
  6742. weight: math.unit(86, "kg"),
  6743. name: "Front (Alt)",
  6744. image: {
  6745. source: "./media/characters/rose/front-alt.svg",
  6746. extra: 299/283,
  6747. bottom: 3/302
  6748. }
  6749. },
  6750. plush: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(86/3, "kg"),
  6753. name: "Plush",
  6754. image: {
  6755. source: "./media/characters/rose/plush.svg",
  6756. extra: 361/337,
  6757. bottom: 11/372
  6758. }
  6759. },
  6760. },
  6761. [
  6762. {
  6763. name: "True Micro",
  6764. height: math.unit(9, "cm")
  6765. },
  6766. {
  6767. name: "Micro",
  6768. height: math.unit(16, "cm")
  6769. },
  6770. {
  6771. name: "Normal",
  6772. height: math.unit(1.85, "meters"),
  6773. default: true
  6774. },
  6775. {
  6776. name: "Mini-Macro",
  6777. height: math.unit(5, "meters")
  6778. },
  6779. {
  6780. name: "Macro",
  6781. height: math.unit(15, "meters")
  6782. },
  6783. {
  6784. name: "True Macro",
  6785. height: math.unit(40, "meters")
  6786. },
  6787. {
  6788. name: "City Scale",
  6789. height: math.unit(1, "km")
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(2, "meters"),
  6798. weight: math.unit(350, "lbs"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/regal/front.svg"
  6802. }
  6803. },
  6804. back: {
  6805. height: math.unit(2, "meters"),
  6806. weight: math.unit(350, "lbs"),
  6807. name: "Back",
  6808. image: {
  6809. source: "./media/characters/regal/back.svg"
  6810. }
  6811. },
  6812. },
  6813. [
  6814. {
  6815. name: "Macro",
  6816. height: math.unit(350, "feet"),
  6817. default: true
  6818. }
  6819. ]
  6820. ))
  6821. characterMakers.push(() => makeCharacter(
  6822. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6823. {
  6824. front: {
  6825. height: math.unit(4 + 11 / 12, "feet"),
  6826. weight: math.unit(100, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/opal/front.svg"
  6830. }
  6831. },
  6832. frontAlt: {
  6833. height: math.unit(4 + 11 / 12, "feet"),
  6834. weight: math.unit(100, "lbs"),
  6835. name: "Front (Alt)",
  6836. image: {
  6837. source: "./media/characters/opal/front-alt.svg"
  6838. }
  6839. },
  6840. },
  6841. [
  6842. {
  6843. name: "Small",
  6844. height: math.unit(4 + 11 / 12, "feet")
  6845. },
  6846. {
  6847. name: "Normal",
  6848. height: math.unit(20, "feet"),
  6849. default: true
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(120, "feet")
  6854. },
  6855. {
  6856. name: "Megamacro",
  6857. height: math.unit(80, "miles")
  6858. },
  6859. {
  6860. name: "True Size",
  6861. height: math.unit(100000, "lightyears")
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(6, "feet"),
  6870. weight: math.unit(200, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/vector-wuff/front.svg"
  6874. }
  6875. }
  6876. },
  6877. [
  6878. {
  6879. name: "Normal",
  6880. height: math.unit(2.8, "meters")
  6881. },
  6882. {
  6883. name: "Macro",
  6884. height: math.unit(450, "meters"),
  6885. default: true
  6886. },
  6887. {
  6888. name: "Megamacro",
  6889. height: math.unit(15, "kilometers")
  6890. }
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6895. {
  6896. front: {
  6897. height: math.unit(6, "feet"),
  6898. weight: math.unit(256, "lbs"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/dannik/front.svg"
  6902. }
  6903. }
  6904. },
  6905. [
  6906. {
  6907. name: "Macro",
  6908. height: math.unit(69.57, "meters"),
  6909. default: true
  6910. },
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(6, "feet"),
  6918. weight: math.unit(120, "lbs"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/azura-saharah/front.svg"
  6922. }
  6923. },
  6924. back: {
  6925. height: math.unit(6, "feet"),
  6926. weight: math.unit(120, "lbs"),
  6927. name: "Back",
  6928. image: {
  6929. source: "./media/characters/azura-saharah/back.svg"
  6930. }
  6931. },
  6932. },
  6933. [
  6934. {
  6935. name: "Macro",
  6936. height: math.unit(100, "feet"),
  6937. default: true
  6938. },
  6939. ]
  6940. ))
  6941. characterMakers.push(() => makeCharacter(
  6942. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6943. {
  6944. side: {
  6945. height: math.unit(5 + 4 / 12, "feet"),
  6946. weight: math.unit(163, "lbs"),
  6947. name: "Side",
  6948. image: {
  6949. source: "./media/characters/kennedy/side.svg"
  6950. }
  6951. }
  6952. },
  6953. [
  6954. {
  6955. name: "Standard Doggo",
  6956. height: math.unit(5 + 4 / 12, "feet")
  6957. },
  6958. {
  6959. name: "Big Doggo",
  6960. height: math.unit(25 + 3 / 12, "feet"),
  6961. default: true
  6962. },
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6967. {
  6968. front: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(90, "lbs"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/odi-lunar/front.svg"
  6974. }
  6975. }
  6976. },
  6977. [
  6978. {
  6979. name: "Micro",
  6980. height: math.unit(3, "inches"),
  6981. default: true
  6982. },
  6983. {
  6984. name: "Normal",
  6985. height: math.unit(5.5, "feet")
  6986. }
  6987. ]
  6988. ))
  6989. characterMakers.push(() => makeCharacter(
  6990. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6991. {
  6992. back: {
  6993. height: math.unit(6, "feet"),
  6994. weight: math.unit(220, "lbs"),
  6995. name: "Back",
  6996. image: {
  6997. source: "./media/characters/mandake/back.svg"
  6998. }
  6999. }
  7000. },
  7001. [
  7002. {
  7003. name: "Normal",
  7004. height: math.unit(7, "feet"),
  7005. default: true
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(78, "feet")
  7010. },
  7011. {
  7012. name: "Macro+",
  7013. height: math.unit(300, "meters")
  7014. },
  7015. {
  7016. name: "Macro++",
  7017. height: math.unit(2400, "feet")
  7018. },
  7019. {
  7020. name: "Megamacro",
  7021. height: math.unit(5167, "meters")
  7022. },
  7023. {
  7024. name: "Gigamacro",
  7025. height: math.unit(41769, "miles")
  7026. },
  7027. ]
  7028. ))
  7029. characterMakers.push(() => makeCharacter(
  7030. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7031. {
  7032. front: {
  7033. height: math.unit(6, "feet"),
  7034. weight: math.unit(120, "lbs"),
  7035. name: "Front",
  7036. image: {
  7037. source: "./media/characters/yozey/front.svg"
  7038. }
  7039. },
  7040. frontAlt: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(120, "lbs"),
  7043. name: "Front (Alt)",
  7044. image: {
  7045. source: "./media/characters/yozey/front-alt.svg"
  7046. }
  7047. },
  7048. side: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(120, "lbs"),
  7051. name: "Side",
  7052. image: {
  7053. source: "./media/characters/yozey/side.svg"
  7054. }
  7055. },
  7056. },
  7057. [
  7058. {
  7059. name: "Micro",
  7060. height: math.unit(3, "inches"),
  7061. default: true
  7062. },
  7063. {
  7064. name: "Normal",
  7065. height: math.unit(6, "feet")
  7066. }
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(103, "lbs"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/valeska-voss/front.svg"
  7078. }
  7079. }
  7080. },
  7081. [
  7082. {
  7083. name: "Mini-Sized Sub",
  7084. height: math.unit(3.1, "inches")
  7085. },
  7086. {
  7087. name: "Mid-Sized Sub",
  7088. height: math.unit(6.2, "inches")
  7089. },
  7090. {
  7091. name: "Full-Sized Sub",
  7092. height: math.unit(9.3, "inches")
  7093. },
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(5 + 2 / 12, "foot"),
  7097. default: true
  7098. },
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(160, "lbs"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/gene-zeta/front.svg",
  7110. extra: 3006 / 2826,
  7111. bottom: 182 / 3188
  7112. }
  7113. }
  7114. },
  7115. [
  7116. {
  7117. name: "Micro",
  7118. height: math.unit(6, "inches")
  7119. },
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(5 + 11 / 12, "foot"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(140, "feet")
  7128. },
  7129. {
  7130. name: "Supercharged",
  7131. height: math.unit(2500, "feet")
  7132. },
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7137. {
  7138. front: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(350, "lbs"),
  7141. name: "Front",
  7142. image: {
  7143. source: "./media/characters/razinox/front.svg",
  7144. extra: 1686 / 1548,
  7145. bottom: 28.2 / 1868
  7146. }
  7147. },
  7148. back: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(350, "lbs"),
  7151. name: "Back",
  7152. image: {
  7153. source: "./media/characters/razinox/back.svg",
  7154. extra: 1660 / 1590,
  7155. bottom: 15 / 1665
  7156. }
  7157. },
  7158. },
  7159. [
  7160. {
  7161. name: "Normal",
  7162. height: math.unit(10 + 8 / 12, "foot")
  7163. },
  7164. {
  7165. name: "Minimacro",
  7166. height: math.unit(15, "foot")
  7167. },
  7168. {
  7169. name: "Macro",
  7170. height: math.unit(60, "foot"),
  7171. default: true
  7172. },
  7173. {
  7174. name: "Megamacro",
  7175. height: math.unit(5, "miles")
  7176. },
  7177. {
  7178. name: "Gigamacro",
  7179. height: math.unit(6000, "miles")
  7180. },
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7185. {
  7186. front: {
  7187. height: math.unit(6, "feet"),
  7188. weight: math.unit(150, "lbs"),
  7189. name: "Front",
  7190. image: {
  7191. source: "./media/characters/cobalt/front.svg"
  7192. }
  7193. }
  7194. },
  7195. [
  7196. {
  7197. name: "Normal",
  7198. height: math.unit(8 + 1 / 12, "foot")
  7199. },
  7200. {
  7201. name: "Macro",
  7202. height: math.unit(111, "foot"),
  7203. default: true
  7204. },
  7205. {
  7206. name: "Supracosmic",
  7207. height: math.unit(1e42, "feet")
  7208. },
  7209. ]
  7210. ))
  7211. characterMakers.push(() => makeCharacter(
  7212. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7213. {
  7214. front: {
  7215. height: math.unit(6, "feet"),
  7216. weight: math.unit(140, "lbs"),
  7217. name: "Front",
  7218. image: {
  7219. source: "./media/characters/amanda/front.svg"
  7220. }
  7221. }
  7222. },
  7223. [
  7224. {
  7225. name: "Micro",
  7226. height: math.unit(5, "inches"),
  7227. default: true
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(2.75, "meters"),
  7236. weight: math.unit(1200, "lb"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/teal/front.svg",
  7240. extra: 2463 / 2320,
  7241. bottom: 166 / 2629
  7242. }
  7243. },
  7244. back: {
  7245. height: math.unit(2.75, "meters"),
  7246. weight: math.unit(1200, "lb"),
  7247. name: "Back",
  7248. image: {
  7249. source: "./media/characters/teal/back.svg",
  7250. extra: 2580 / 2489,
  7251. bottom: 151 / 2731
  7252. }
  7253. },
  7254. sitting: {
  7255. height: math.unit(1.9, "meters"),
  7256. weight: math.unit(1200, "lb"),
  7257. name: "Sitting",
  7258. image: {
  7259. source: "./media/characters/teal/sitting.svg",
  7260. extra: 623 / 590,
  7261. bottom: 121 / 744
  7262. }
  7263. },
  7264. standing: {
  7265. height: math.unit(2.75, "meters"),
  7266. weight: math.unit(1200, "lb"),
  7267. name: "Standing",
  7268. image: {
  7269. source: "./media/characters/teal/standing.svg",
  7270. extra: 923 / 893,
  7271. bottom: 60 / 983
  7272. }
  7273. },
  7274. stretching: {
  7275. height: math.unit(3.65, "meters"),
  7276. weight: math.unit(1200, "lb"),
  7277. name: "Stretching",
  7278. image: {
  7279. source: "./media/characters/teal/stretching.svg",
  7280. extra: 1276 / 1244,
  7281. bottom: 0 / 1276
  7282. }
  7283. },
  7284. legged: {
  7285. height: math.unit(1.3, "meters"),
  7286. weight: math.unit(100, "lb"),
  7287. name: "Legged",
  7288. image: {
  7289. source: "./media/characters/teal/legged.svg",
  7290. extra: 462 / 437,
  7291. bottom: 24 / 486
  7292. }
  7293. },
  7294. naga: {
  7295. height: math.unit(5.4, "meters"),
  7296. weight: math.unit(4000, "lb"),
  7297. name: "Naga",
  7298. image: {
  7299. source: "./media/characters/teal/naga.svg",
  7300. extra: 1902 / 1858,
  7301. bottom: 0 / 1902
  7302. }
  7303. },
  7304. hand: {
  7305. height: math.unit(0.52, "meters"),
  7306. name: "Hand",
  7307. image: {
  7308. source: "./media/characters/teal/hand.svg"
  7309. }
  7310. },
  7311. maw: {
  7312. height: math.unit(0.43, "meters"),
  7313. name: "Maw",
  7314. image: {
  7315. source: "./media/characters/teal/maw.svg"
  7316. }
  7317. },
  7318. slit: {
  7319. height: math.unit(0.25, "meters"),
  7320. name: "Slit",
  7321. image: {
  7322. source: "./media/characters/teal/slit.svg"
  7323. }
  7324. },
  7325. },
  7326. [
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(2.75, "meters"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(300, "feet")
  7335. },
  7336. {
  7337. name: "Macro+",
  7338. height: math.unit(2000, "feet")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7344. {
  7345. frontCat: {
  7346. height: math.unit(6, "feet"),
  7347. weight: math.unit(180, "lbs"),
  7348. name: "Front (Cat)",
  7349. image: {
  7350. source: "./media/characters/ravin-amulet/front-cat.svg"
  7351. }
  7352. },
  7353. frontCatAlt: {
  7354. height: math.unit(6, "feet"),
  7355. weight: math.unit(180, "lbs"),
  7356. name: "Front (Alt, Cat)",
  7357. image: {
  7358. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7359. }
  7360. },
  7361. frontWerewolf: {
  7362. height: math.unit(6 * 1.2, "feet"),
  7363. weight: math.unit(225, "lbs"),
  7364. name: "Front (Werewolf)",
  7365. image: {
  7366. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7367. }
  7368. },
  7369. backWerewolf: {
  7370. height: math.unit(6 * 1.2, "feet"),
  7371. weight: math.unit(225, "lbs"),
  7372. name: "Back (Werewolf)",
  7373. image: {
  7374. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7375. }
  7376. },
  7377. },
  7378. [
  7379. {
  7380. name: "Nano",
  7381. height: math.unit(1, "micrometer")
  7382. },
  7383. {
  7384. name: "Micro",
  7385. height: math.unit(1, "inch")
  7386. },
  7387. {
  7388. name: "Normal",
  7389. height: math.unit(6, "feet"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(60, "feet")
  7395. }
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7400. {
  7401. front: {
  7402. height: math.unit(6, "feet"),
  7403. weight: math.unit(165, "lbs"),
  7404. name: "Front",
  7405. image: {
  7406. source: "./media/characters/fluoresce/front.svg"
  7407. }
  7408. }
  7409. },
  7410. [
  7411. {
  7412. name: "Micro",
  7413. height: math.unit(6, "cm")
  7414. },
  7415. {
  7416. name: "Normal",
  7417. height: math.unit(5 + 7 / 12, "feet"),
  7418. default: true
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(56, "feet")
  7423. },
  7424. {
  7425. name: "Megamacro",
  7426. height: math.unit(1.9, "miles")
  7427. },
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7432. {
  7433. front: {
  7434. height: math.unit(9 + 6 / 12, "feet"),
  7435. weight: math.unit(523, "lbs"),
  7436. name: "Side",
  7437. image: {
  7438. source: "./media/characters/aurora/side.svg"
  7439. }
  7440. }
  7441. },
  7442. [
  7443. {
  7444. name: "Normal",
  7445. height: math.unit(9 + 6 / 12, "feet")
  7446. },
  7447. {
  7448. name: "Macro",
  7449. height: math.unit(96, "feet"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Macro+",
  7454. height: math.unit(243, "feet")
  7455. },
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(194, "cm"),
  7463. weight: math.unit(90, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/ranek/front.svg"
  7467. }
  7468. },
  7469. side: {
  7470. height: math.unit(194, "cm"),
  7471. weight: math.unit(90, "kg"),
  7472. name: "Side",
  7473. image: {
  7474. source: "./media/characters/ranek/side.svg"
  7475. }
  7476. },
  7477. back: {
  7478. height: math.unit(194, "cm"),
  7479. weight: math.unit(90, "kg"),
  7480. name: "Back",
  7481. image: {
  7482. source: "./media/characters/ranek/back.svg"
  7483. }
  7484. },
  7485. feral: {
  7486. height: math.unit(30, "cm"),
  7487. weight: math.unit(1.6, "lbs"),
  7488. name: "Feral",
  7489. image: {
  7490. source: "./media/characters/ranek/feral.svg"
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(194, "cm"),
  7498. default: true
  7499. },
  7500. {
  7501. name: "Macro",
  7502. height: math.unit(100, "meters")
  7503. },
  7504. ]
  7505. ))
  7506. characterMakers.push(() => makeCharacter(
  7507. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7508. {
  7509. front: {
  7510. height: math.unit(5 + 6 / 12, "feet"),
  7511. weight: math.unit(153, "lbs"),
  7512. name: "Front",
  7513. image: {
  7514. source: "./media/characters/andrew-cooper/front.svg"
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Nano",
  7521. height: math.unit(1, "mm")
  7522. },
  7523. {
  7524. name: "Micro",
  7525. height: math.unit(2, "inches")
  7526. },
  7527. {
  7528. name: "Normal",
  7529. height: math.unit(5 + 6 / 12, "feet"),
  7530. default: true
  7531. }
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(6, "feet"),
  7539. weight: math.unit(180, "lbs"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/akane-sato/front.svg",
  7543. extra: 1219 / 1140
  7544. }
  7545. },
  7546. back: {
  7547. height: math.unit(6, "feet"),
  7548. weight: math.unit(180, "lbs"),
  7549. name: "Back",
  7550. image: {
  7551. source: "./media/characters/akane-sato/back.svg",
  7552. extra: 1219 / 1170
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(2.5, "meters")
  7560. },
  7561. {
  7562. name: "Macro",
  7563. height: math.unit(250, "meters"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Megamacro",
  7568. height: math.unit(25, "km")
  7569. },
  7570. ]
  7571. ))
  7572. characterMakers.push(() => makeCharacter(
  7573. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7574. {
  7575. front: {
  7576. height: math.unit(6, "feet"),
  7577. weight: math.unit(65, "kg"),
  7578. name: "Front",
  7579. image: {
  7580. source: "./media/characters/rook/front.svg",
  7581. extra: 960 / 950
  7582. }
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(8.8, "feet")
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(88, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Megamacro",
  7597. height: math.unit(8, "miles")
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(12 + 2 / 12, "feet"),
  7606. weight: math.unit(808, "lbs"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/prodigy/front.svg"
  7610. }
  7611. }
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(12 + 2 / 12, "feet"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(143, "feet")
  7622. },
  7623. {
  7624. name: "Macro+",
  7625. height: math.unit(400, "feet")
  7626. },
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(6, "feet"),
  7634. weight: math.unit(225, "lbs"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/daniel/front.svg"
  7638. }
  7639. },
  7640. leaning: {
  7641. height: math.unit(6, "feet"),
  7642. weight: math.unit(225, "lbs"),
  7643. name: "Leaning",
  7644. image: {
  7645. source: "./media/characters/daniel/leaning.svg"
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(1000, "feet"),
  7653. default: true
  7654. },
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7659. {
  7660. front: {
  7661. height: math.unit(6, "feet"),
  7662. weight: math.unit(88, "lbs"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/chiros/front.svg",
  7666. extra: 306 / 226
  7667. }
  7668. },
  7669. side: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(88, "lbs"),
  7672. name: "Side",
  7673. image: {
  7674. source: "./media/characters/chiros/side.svg",
  7675. extra: 306 / 226
  7676. }
  7677. },
  7678. },
  7679. [
  7680. {
  7681. name: "Normal",
  7682. height: math.unit(6, "cm"),
  7683. default: true
  7684. },
  7685. ]
  7686. ))
  7687. characterMakers.push(() => makeCharacter(
  7688. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7689. {
  7690. front: {
  7691. height: math.unit(6, "feet"),
  7692. weight: math.unit(100, "lbs"),
  7693. name: "Front",
  7694. image: {
  7695. source: "./media/characters/selka/front.svg",
  7696. extra: 947 / 887
  7697. }
  7698. }
  7699. },
  7700. [
  7701. {
  7702. name: "Normal",
  7703. height: math.unit(5, "cm"),
  7704. default: true
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(8 + 3 / 12, "feet"),
  7713. weight: math.unit(424, "lbs"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/verin/front.svg",
  7717. extra: 1845 / 1550
  7718. }
  7719. },
  7720. frontArmored: {
  7721. height: math.unit(8 + 3 / 12, "feet"),
  7722. weight: math.unit(424, "lbs"),
  7723. name: "Front (Armored)",
  7724. image: {
  7725. source: "./media/characters/verin/front-armor.svg",
  7726. extra: 1845 / 1550,
  7727. bottom: 0.01
  7728. }
  7729. },
  7730. back: {
  7731. height: math.unit(8 + 3 / 12, "feet"),
  7732. weight: math.unit(424, "lbs"),
  7733. name: "Back",
  7734. image: {
  7735. source: "./media/characters/verin/back.svg",
  7736. bottom: 0.1,
  7737. extra: 1
  7738. }
  7739. },
  7740. foot: {
  7741. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7742. name: "Foot",
  7743. image: {
  7744. source: "./media/characters/verin/foot.svg"
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Normal",
  7751. height: math.unit(8 + 3 / 12, "feet")
  7752. },
  7753. {
  7754. name: "Minimacro",
  7755. height: math.unit(21, "feet"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(626, "feet")
  7761. },
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(2.718, "meters"),
  7769. weight: math.unit(150, "lbs"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/sovrim-terraquian/front.svg"
  7773. }
  7774. },
  7775. back: {
  7776. height: math.unit(2.718, "meters"),
  7777. weight: math.unit(150, "lbs"),
  7778. name: "Back",
  7779. image: {
  7780. source: "./media/characters/sovrim-terraquian/back.svg"
  7781. }
  7782. }
  7783. },
  7784. [
  7785. {
  7786. name: "Micro",
  7787. height: math.unit(2, "inches")
  7788. },
  7789. {
  7790. name: "Small",
  7791. height: math.unit(1, "meter")
  7792. },
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(Math.E, "meters"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Macro",
  7800. height: math.unit(20, "meters")
  7801. },
  7802. {
  7803. name: "Macro+",
  7804. height: math.unit(400, "meters")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(7, "feet"),
  7813. weight: math.unit(489, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/reece-silvermane/front.svg",
  7817. bottom: 0.02,
  7818. extra: 1
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(1.5, "miles"),
  7826. default: true
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(6, "feet"),
  7835. weight: math.unit(78, "kg"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/kane/front.svg",
  7839. extra: 978 / 899
  7840. }
  7841. },
  7842. },
  7843. [
  7844. {
  7845. name: "Normal",
  7846. height: math.unit(2.1, "m"),
  7847. },
  7848. {
  7849. name: "Macro",
  7850. height: math.unit(1, "km"),
  7851. default: true
  7852. },
  7853. ]
  7854. ))
  7855. characterMakers.push(() => makeCharacter(
  7856. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7857. {
  7858. front: {
  7859. height: math.unit(6, "feet"),
  7860. weight: math.unit(200, "kg"),
  7861. name: "Front",
  7862. image: {
  7863. source: "./media/characters/tegon/front.svg",
  7864. bottom: 0.01,
  7865. extra: 1
  7866. }
  7867. },
  7868. },
  7869. [
  7870. {
  7871. name: "Micro",
  7872. height: math.unit(1, "inch")
  7873. },
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(6 + 3 / 12, "feet"),
  7877. default: true
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(300, "feet")
  7882. },
  7883. {
  7884. name: "Megamacro",
  7885. height: math.unit(69, "miles")
  7886. },
  7887. ]
  7888. ))
  7889. characterMakers.push(() => makeCharacter(
  7890. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7891. {
  7892. side: {
  7893. height: math.unit(6, "feet"),
  7894. weight: math.unit(2304, "lbs"),
  7895. name: "Side",
  7896. image: {
  7897. source: "./media/characters/arcturax/side.svg",
  7898. extra: 790 / 376,
  7899. bottom: 0.01
  7900. }
  7901. },
  7902. },
  7903. [
  7904. {
  7905. name: "Micro",
  7906. height: math.unit(2, "inch")
  7907. },
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(6, "feet")
  7911. },
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(39, "feet"),
  7915. default: true
  7916. },
  7917. {
  7918. name: "Megamacro",
  7919. height: math.unit(7, "miles")
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7925. {
  7926. front: {
  7927. height: math.unit(6, "feet"),
  7928. weight: math.unit(50, "lbs"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/sentri/front.svg",
  7932. extra: 1750 / 1570,
  7933. bottom: 0.025
  7934. }
  7935. },
  7936. frontAlt: {
  7937. height: math.unit(6, "feet"),
  7938. weight: math.unit(50, "lbs"),
  7939. name: "Front (Alt)",
  7940. image: {
  7941. source: "./media/characters/sentri/front-alt.svg",
  7942. extra: 1750 / 1570,
  7943. bottom: 0.025
  7944. }
  7945. },
  7946. },
  7947. [
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(15, "feet"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Macro",
  7955. height: math.unit(2500, "feet")
  7956. }
  7957. ]
  7958. ))
  7959. characterMakers.push(() => makeCharacter(
  7960. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7961. {
  7962. front: {
  7963. height: math.unit(5 + 8 / 12, "feet"),
  7964. weight: math.unit(130, "lbs"),
  7965. name: "Front",
  7966. image: {
  7967. source: "./media/characters/corvin/front.svg",
  7968. extra: 1803 / 1629
  7969. }
  7970. },
  7971. frontShirt: {
  7972. height: math.unit(5 + 8 / 12, "feet"),
  7973. weight: math.unit(130, "lbs"),
  7974. name: "Front (Shirt)",
  7975. image: {
  7976. source: "./media/characters/corvin/front-shirt.svg",
  7977. extra: 1803 / 1629
  7978. }
  7979. },
  7980. frontPoncho: {
  7981. height: math.unit(5 + 8 / 12, "feet"),
  7982. weight: math.unit(130, "lbs"),
  7983. name: "Front (Poncho)",
  7984. image: {
  7985. source: "./media/characters/corvin/front-poncho.svg",
  7986. extra: 1803 / 1629
  7987. }
  7988. },
  7989. side: {
  7990. height: math.unit(5 + 8 / 12, "feet"),
  7991. weight: math.unit(130, "lbs"),
  7992. name: "Side",
  7993. image: {
  7994. source: "./media/characters/corvin/side.svg",
  7995. extra: 1012 / 945
  7996. }
  7997. },
  7998. back: {
  7999. height: math.unit(5 + 8 / 12, "feet"),
  8000. weight: math.unit(130, "lbs"),
  8001. name: "Back",
  8002. image: {
  8003. source: "./media/characters/corvin/back.svg",
  8004. extra: 1803 / 1629
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Micro",
  8011. height: math.unit(3, "inches")
  8012. },
  8013. {
  8014. name: "Normal",
  8015. height: math.unit(5 + 8 / 12, "feet")
  8016. },
  8017. {
  8018. name: "Macro",
  8019. height: math.unit(300, "feet"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Megamacro",
  8024. height: math.unit(500, "miles")
  8025. }
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8030. {
  8031. front: {
  8032. height: math.unit(6, "feet"),
  8033. weight: math.unit(135, "lbs"),
  8034. name: "Front",
  8035. image: {
  8036. source: "./media/characters/q/front.svg",
  8037. extra: 854 / 752,
  8038. bottom: 0.005
  8039. }
  8040. },
  8041. back: {
  8042. height: math.unit(6, "feet"),
  8043. weight: math.unit(130, "lbs"),
  8044. name: "Back",
  8045. image: {
  8046. source: "./media/characters/q/back.svg",
  8047. extra: 854 / 752
  8048. }
  8049. },
  8050. },
  8051. [
  8052. {
  8053. name: "Macro",
  8054. height: math.unit(90, "feet"),
  8055. default: true
  8056. },
  8057. {
  8058. name: "Extra Macro",
  8059. height: math.unit(300, "feet"),
  8060. },
  8061. {
  8062. name: "BIG WALF",
  8063. height: math.unit(750, "feet"),
  8064. },
  8065. ]
  8066. ))
  8067. characterMakers.push(() => makeCharacter(
  8068. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8069. {
  8070. front: {
  8071. height: math.unit(6, "feet"),
  8072. weight: math.unit(150, "lbs"),
  8073. name: "Front",
  8074. image: {
  8075. source: "./media/characters/carley/front.svg",
  8076. extra: 3927 / 3540,
  8077. bottom: 29.2 / 735
  8078. }
  8079. }
  8080. },
  8081. [
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(6 + 3 / 12, "feet")
  8085. },
  8086. {
  8087. name: "Macro",
  8088. height: math.unit(185, "feet"),
  8089. default: true
  8090. },
  8091. {
  8092. name: "Megamacro",
  8093. height: math.unit(8, "miles"),
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(3, "feet"),
  8102. weight: math.unit(28, "lbs"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/citrine/front.svg"
  8106. }
  8107. }
  8108. },
  8109. [
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(3, "feet"),
  8113. default: true
  8114. }
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8119. {
  8120. front: {
  8121. height: math.unit(14, "feet"),
  8122. weight: math.unit(1450, "kg"),
  8123. capacity: math.unit(15, "people"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/aura-starwind/front.svg",
  8127. extra: 1455 / 1335
  8128. }
  8129. },
  8130. side: {
  8131. height: math.unit(14, "feet"),
  8132. weight: math.unit(1450, "kg"),
  8133. capacity: math.unit(15, "people"),
  8134. name: "Side",
  8135. image: {
  8136. source: "./media/characters/aura-starwind/side.svg",
  8137. extra: 1654 / 1497
  8138. }
  8139. },
  8140. taur: {
  8141. height: math.unit(18, "feet"),
  8142. weight: math.unit(5500, "kg"),
  8143. capacity: math.unit(50, "people"),
  8144. name: "Taur",
  8145. image: {
  8146. source: "./media/characters/aura-starwind/taur.svg",
  8147. extra: 1760 / 1650
  8148. }
  8149. },
  8150. feral: {
  8151. height: math.unit(46, "feet"),
  8152. weight: math.unit(25000, "kg"),
  8153. capacity: math.unit(120, "people"),
  8154. name: "Feral",
  8155. image: {
  8156. source: "./media/characters/aura-starwind/feral.svg"
  8157. }
  8158. },
  8159. },
  8160. [
  8161. {
  8162. name: "Normal",
  8163. height: math.unit(14, "feet"),
  8164. default: true
  8165. },
  8166. {
  8167. name: "Macro",
  8168. height: math.unit(50, "meters")
  8169. },
  8170. {
  8171. name: "Megamacro",
  8172. height: math.unit(5000, "meters")
  8173. },
  8174. {
  8175. name: "Gigamacro",
  8176. height: math.unit(100000, "kilometers")
  8177. },
  8178. ]
  8179. ))
  8180. characterMakers.push(() => makeCharacter(
  8181. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8182. {
  8183. front: {
  8184. height: math.unit(2 + 7 / 12, "feet"),
  8185. weight: math.unit(32, "lbs"),
  8186. name: "Front",
  8187. image: {
  8188. source: "./media/characters/rivet/front.svg",
  8189. extra: 1716 / 1658,
  8190. bottom: 0.03
  8191. }
  8192. },
  8193. foot: {
  8194. height: math.unit(0.551, "feet"),
  8195. name: "Rivet's Foot",
  8196. image: {
  8197. source: "./media/characters/rivet/foot.svg"
  8198. },
  8199. rename: true
  8200. }
  8201. },
  8202. [
  8203. {
  8204. name: "Micro",
  8205. height: math.unit(1.5, "inches"),
  8206. },
  8207. {
  8208. name: "Normal",
  8209. height: math.unit(2 + 7 / 12, "feet"),
  8210. default: true
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(85, "feet")
  8215. },
  8216. {
  8217. name: "Megamacro",
  8218. height: math.unit(2.2, "km")
  8219. }
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(5 + 9 / 12, "feet"),
  8227. weight: math.unit(150, "lbs"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/coffee/front.svg",
  8231. extra: 3666 / 3032,
  8232. bottom: 0.04
  8233. }
  8234. },
  8235. foot: {
  8236. height: math.unit(1.29, "feet"),
  8237. name: "Foot",
  8238. image: {
  8239. source: "./media/characters/coffee/foot.svg"
  8240. }
  8241. },
  8242. },
  8243. [
  8244. {
  8245. name: "Micro",
  8246. height: math.unit(2, "inches"),
  8247. },
  8248. {
  8249. name: "Normal",
  8250. height: math.unit(5 + 9 / 12, "feet"),
  8251. default: true
  8252. },
  8253. {
  8254. name: "Macro",
  8255. height: math.unit(800, "feet")
  8256. },
  8257. {
  8258. name: "Megamacro",
  8259. height: math.unit(25, "miles")
  8260. }
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(6, "feet"),
  8268. weight: math.unit(200, "lbs"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/chari-gal/front.svg",
  8272. extra: 1568 / 1385,
  8273. bottom: 0.047
  8274. }
  8275. },
  8276. gigantamax: {
  8277. height: math.unit(6 * 16, "feet"),
  8278. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8279. name: "Gigantamax",
  8280. image: {
  8281. source: "./media/characters/chari-gal/gigantamax.svg",
  8282. extra: 1124 / 888,
  8283. bottom: 0.03
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Normal",
  8290. height: math.unit(5 + 7 / 12, "feet")
  8291. },
  8292. {
  8293. name: "Macro",
  8294. height: math.unit(200, "feet"),
  8295. default: true
  8296. }
  8297. ]
  8298. ))
  8299. characterMakers.push(() => makeCharacter(
  8300. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8301. {
  8302. front: {
  8303. height: math.unit(6, "feet"),
  8304. weight: math.unit(150, "lbs"),
  8305. name: "Front",
  8306. image: {
  8307. source: "./media/characters/nova/front.svg",
  8308. extra: 5000 / 4722,
  8309. bottom: 0.02
  8310. }
  8311. }
  8312. },
  8313. [
  8314. {
  8315. name: "Micro-",
  8316. height: math.unit(0.8, "inches")
  8317. },
  8318. {
  8319. name: "Micro",
  8320. height: math.unit(2, "inches"),
  8321. default: true
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(3 + 1 / 12, "feet"),
  8330. weight: math.unit(21.7, "lbs"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/argent/front.svg",
  8334. extra: 1471 / 1331,
  8335. bottom: 100.8 / 1575.5
  8336. }
  8337. }
  8338. },
  8339. [
  8340. {
  8341. name: "Micro",
  8342. height: math.unit(2, "inches")
  8343. },
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(3 + 1 / 12, "feet"),
  8347. default: true
  8348. },
  8349. {
  8350. name: "Macro",
  8351. height: math.unit(120, "feet")
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8357. {
  8358. lamp: {
  8359. height: math.unit(7 * 1559 / 989, "feet"),
  8360. name: "Magic Lamp",
  8361. image: {
  8362. source: "./media/characters/mira-al-cul/lamp.svg",
  8363. extra: 1617 / 1559
  8364. }
  8365. },
  8366. front: {
  8367. height: math.unit(7, "feet"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/mira-al-cul/front.svg",
  8371. extra: 1044 / 990
  8372. }
  8373. },
  8374. },
  8375. [
  8376. {
  8377. name: "Heavily Restricted",
  8378. height: math.unit(7 * 1559 / 989, "feet")
  8379. },
  8380. {
  8381. name: "Freshly Freed",
  8382. height: math.unit(50 * 1559 / 989, "feet")
  8383. },
  8384. {
  8385. name: "World Encompassing",
  8386. height: math.unit(10000 * 1559 / 989, "miles")
  8387. },
  8388. {
  8389. name: "Galactic",
  8390. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8391. },
  8392. {
  8393. name: "Palmed Universe",
  8394. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8395. default: true
  8396. },
  8397. {
  8398. name: "Multiversal Matriarch",
  8399. height: math.unit(8.87e10, "yottameters")
  8400. },
  8401. {
  8402. name: "Void Mother",
  8403. height: math.unit(3.14e110, "yottaparsecs")
  8404. },
  8405. {
  8406. name: "Toying with Transcendence",
  8407. height: math.unit(1e307, "meters")
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8413. {
  8414. front: {
  8415. height: math.unit(17 + 1 / 12, "feet"),
  8416. weight: math.unit(476.2 * 5, "lbs"),
  8417. name: "Front",
  8418. image: {
  8419. source: "./media/characters/kuro-shi-uchū/front.svg",
  8420. extra: 2329 / 1835,
  8421. bottom: 0.02
  8422. }
  8423. },
  8424. },
  8425. [
  8426. {
  8427. name: "Micro",
  8428. height: math.unit(2, "inches")
  8429. },
  8430. {
  8431. name: "Normal",
  8432. height: math.unit(12, "meters")
  8433. },
  8434. {
  8435. name: "Planetary",
  8436. height: math.unit(0.00929, "AU"),
  8437. default: true
  8438. },
  8439. {
  8440. name: "Universal",
  8441. height: math.unit(20, "gigaparsecs")
  8442. },
  8443. ]
  8444. ))
  8445. characterMakers.push(() => makeCharacter(
  8446. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8447. {
  8448. front: {
  8449. height: math.unit(5 + 2 / 12, "feet"),
  8450. weight: math.unit(120, "lbs"),
  8451. name: "Front",
  8452. image: {
  8453. source: "./media/characters/katherine/front.svg",
  8454. extra: 2075 / 1969
  8455. }
  8456. },
  8457. dress: {
  8458. height: math.unit(5 + 2 / 12, "feet"),
  8459. weight: math.unit(120, "lbs"),
  8460. name: "Dress",
  8461. image: {
  8462. source: "./media/characters/katherine/dress.svg",
  8463. extra: 2258 / 2064
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(1, "inches"),
  8471. default: true
  8472. },
  8473. {
  8474. name: "Normal",
  8475. height: math.unit(5 + 2 / 12, "feet")
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(100, "meters")
  8480. },
  8481. {
  8482. name: "Megamacro",
  8483. height: math.unit(80, "miles")
  8484. },
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(7 + 8 / 12, "feet"),
  8492. weight: math.unit(250, "lbs"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/yevis/front.svg",
  8496. extra: 1938 / 1755
  8497. }
  8498. }
  8499. },
  8500. [
  8501. {
  8502. name: "Mortal",
  8503. height: math.unit(7 + 8 / 12, "feet")
  8504. },
  8505. {
  8506. name: "Battle",
  8507. height: math.unit(25 + 11 / 12, "feet")
  8508. },
  8509. {
  8510. name: "Wrath",
  8511. height: math.unit(1654 + 11 / 12, "feet")
  8512. },
  8513. {
  8514. name: "Planet Destroyer",
  8515. height: math.unit(12000, "miles")
  8516. },
  8517. {
  8518. name: "Galaxy Conqueror",
  8519. height: math.unit(1.45, "zettameters"),
  8520. default: true
  8521. },
  8522. {
  8523. name: "Universal War",
  8524. height: math.unit(184, "gigaparsecs")
  8525. },
  8526. {
  8527. name: "Eternity War",
  8528. height: math.unit(1.98e55, "yottaparsecs")
  8529. },
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8534. {
  8535. front: {
  8536. height: math.unit(5 + 8 / 12, "feet"),
  8537. weight: math.unit(63, "kg"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/xavier/front.svg",
  8541. extra: 944 / 883
  8542. }
  8543. },
  8544. frontStretch: {
  8545. height: math.unit(5 + 8 / 12, "feet"),
  8546. weight: math.unit(63, "kg"),
  8547. name: "Stretching",
  8548. image: {
  8549. source: "./media/characters/xavier/front-stretch.svg",
  8550. extra: 962 / 820
  8551. }
  8552. },
  8553. },
  8554. [
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(5 + 8 / 12, "feet")
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(100, "meters"),
  8562. default: true
  8563. },
  8564. {
  8565. name: "McLargeHuge",
  8566. height: math.unit(10, "miles")
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(5 + 5 / 12, "feet"),
  8575. weight: math.unit(150, "lb"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/joshii/front.svg",
  8579. extra: 765 / 653,
  8580. bottom: 51 / 816
  8581. }
  8582. },
  8583. foot: {
  8584. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8585. name: "Foot",
  8586. image: {
  8587. source: "./media/characters/joshii/foot.svg"
  8588. }
  8589. },
  8590. },
  8591. [
  8592. {
  8593. name: "Micro",
  8594. height: math.unit(2, "inches"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Normal",
  8599. height: math.unit(5 + 5 / 12, "feet")
  8600. },
  8601. {
  8602. name: "Macro",
  8603. height: math.unit(785, "feet")
  8604. },
  8605. {
  8606. name: "Megamacro",
  8607. height: math.unit(24.5, "miles")
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8613. {
  8614. front: {
  8615. height: math.unit(6, "feet"),
  8616. weight: math.unit(150, "lb"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/goddess-elizabeth/front.svg",
  8620. extra: 1800 / 1525,
  8621. bottom: 0.005
  8622. }
  8623. },
  8624. foot: {
  8625. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8626. name: "Foot",
  8627. image: {
  8628. source: "./media/characters/goddess-elizabeth/foot.svg"
  8629. }
  8630. },
  8631. mouth: {
  8632. height: math.unit(6, "feet"),
  8633. name: "Mouth",
  8634. image: {
  8635. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Micro",
  8642. height: math.unit(12, "feet")
  8643. },
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(80, "miles"),
  8647. default: true
  8648. },
  8649. {
  8650. name: "Macro",
  8651. height: math.unit(15000, "parsecs")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(5 + 9 / 12, "feet"),
  8660. weight: math.unit(144, "lb"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/kara/front.svg"
  8664. }
  8665. },
  8666. feet: {
  8667. height: math.unit(6 / 6.765, "feet"),
  8668. name: "Kara's Feet",
  8669. rename: true,
  8670. image: {
  8671. source: "./media/characters/kara/feet.svg"
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(5 + 9 / 12, "feet")
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(174, "feet"),
  8683. default: true
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(18, "feet"),
  8692. weight: math.unit(4050, "lb"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/tyrone/front.svg",
  8696. extra: 2405 / 2270,
  8697. bottom: 182 / 2587
  8698. }
  8699. },
  8700. },
  8701. [
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(18, "feet"),
  8705. default: true
  8706. },
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(300, "feet")
  8710. },
  8711. {
  8712. name: "Megamacro",
  8713. height: math.unit(15, "km")
  8714. },
  8715. {
  8716. name: "Gigamacro",
  8717. height: math.unit(500, "km")
  8718. },
  8719. {
  8720. name: "Teramacro",
  8721. height: math.unit(0.5, "gigameters")
  8722. },
  8723. {
  8724. name: "Omnimacro",
  8725. height: math.unit(1e252, "yottauniverse")
  8726. },
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8731. {
  8732. front: {
  8733. height: math.unit(7 + 8 / 12, "feet"),
  8734. weight: math.unit(120, "lb"),
  8735. name: "Front",
  8736. image: {
  8737. source: "./media/characters/danny/front.svg",
  8738. extra: 1490 / 1350
  8739. }
  8740. },
  8741. back: {
  8742. height: math.unit(7 + 8 / 12, "feet"),
  8743. weight: math.unit(120, "lb"),
  8744. name: "Back",
  8745. image: {
  8746. source: "./media/characters/danny/back.svg",
  8747. extra: 1490 / 1350
  8748. }
  8749. },
  8750. },
  8751. [
  8752. {
  8753. name: "Normal",
  8754. height: math.unit(7 + 8 / 12, "feet"),
  8755. default: true
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(3.5, "inches"),
  8764. weight: math.unit(19, "grams"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/mallow/front.svg",
  8768. extra: 471 / 431
  8769. }
  8770. },
  8771. back: {
  8772. height: math.unit(3.5, "inches"),
  8773. weight: math.unit(19, "grams"),
  8774. name: "Back",
  8775. image: {
  8776. source: "./media/characters/mallow/back.svg",
  8777. extra: 471 / 431
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Normal",
  8784. height: math.unit(3.5, "inches"),
  8785. default: true
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(9, "feet"),
  8794. weight: math.unit(230, "kg"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/starry-aqua/front.svg"
  8798. }
  8799. },
  8800. back: {
  8801. height: math.unit(9, "feet"),
  8802. weight: math.unit(230, "kg"),
  8803. name: "Back",
  8804. image: {
  8805. source: "./media/characters/starry-aqua/back.svg"
  8806. }
  8807. },
  8808. hand: {
  8809. height: math.unit(9 * 0.1168, "feet"),
  8810. name: "Hand",
  8811. image: {
  8812. source: "./media/characters/starry-aqua/hand.svg"
  8813. }
  8814. },
  8815. foot: {
  8816. height: math.unit(9 * 0.18, "feet"),
  8817. name: "Foot",
  8818. image: {
  8819. source: "./media/characters/starry-aqua/foot.svg"
  8820. }
  8821. }
  8822. },
  8823. [
  8824. {
  8825. name: "Micro",
  8826. height: math.unit(3, "inches")
  8827. },
  8828. {
  8829. name: "Normal",
  8830. height: math.unit(9, "feet")
  8831. },
  8832. {
  8833. name: "Macro",
  8834. height: math.unit(300, "feet"),
  8835. default: true
  8836. },
  8837. {
  8838. name: "Megamacro",
  8839. height: math.unit(3200, "feet")
  8840. }
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(6, "feet"),
  8848. weight: math.unit(230, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/luka/front.svg",
  8852. extra: 1,
  8853. bottom: 0.025
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(12 + 8 / 12, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Minimacro",
  8865. height: math.unit(20, "feet")
  8866. },
  8867. {
  8868. name: "Macro",
  8869. height: math.unit(250, "feet")
  8870. },
  8871. {
  8872. name: "Megamacro",
  8873. height: math.unit(5, "miles")
  8874. },
  8875. {
  8876. name: "Gigamacro",
  8877. height: math.unit(8000, "miles")
  8878. },
  8879. ]
  8880. ))
  8881. characterMakers.push(() => makeCharacter(
  8882. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8883. {
  8884. front: {
  8885. height: math.unit(6, "feet"),
  8886. weight: math.unit(150, "lb"),
  8887. name: "Front",
  8888. image: {
  8889. source: "./media/characters/natalie-nightring/front.svg",
  8890. extra: 1,
  8891. bottom: 0.06
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Uh Oh",
  8898. height: math.unit(0.1, "mm")
  8899. },
  8900. {
  8901. name: "Small",
  8902. height: math.unit(3, "inches")
  8903. },
  8904. {
  8905. name: "Human Scale",
  8906. height: math.unit(6, "feet")
  8907. },
  8908. {
  8909. name: "Librarian",
  8910. height: math.unit(50, "feet"),
  8911. default: true
  8912. },
  8913. {
  8914. name: "Immense",
  8915. height: math.unit(200, "miles")
  8916. },
  8917. ]
  8918. ))
  8919. characterMakers.push(() => makeCharacter(
  8920. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8921. {
  8922. front: {
  8923. height: math.unit(6, "feet"),
  8924. weight: math.unit(180, "lbs"),
  8925. name: "Front",
  8926. image: {
  8927. source: "./media/characters/danni-rosie/front.svg",
  8928. extra: 1260 / 1128,
  8929. bottom: 0.022
  8930. }
  8931. },
  8932. },
  8933. [
  8934. {
  8935. name: "Micro",
  8936. height: math.unit(2, "inches"),
  8937. default: true
  8938. },
  8939. ]
  8940. ))
  8941. characterMakers.push(() => makeCharacter(
  8942. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8943. {
  8944. front: {
  8945. height: math.unit(5 + 9 / 12, "feet"),
  8946. weight: math.unit(220, "lb"),
  8947. name: "Front",
  8948. image: {
  8949. source: "./media/characters/samantha-kruse/front.svg",
  8950. extra: (985 / 935),
  8951. bottom: 0.03
  8952. }
  8953. },
  8954. frontUndressed: {
  8955. height: math.unit(5 + 9 / 12, "feet"),
  8956. weight: math.unit(220, "lb"),
  8957. name: "Front (Undressed)",
  8958. image: {
  8959. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8960. extra: (973 / 923),
  8961. bottom: 0.025
  8962. }
  8963. },
  8964. fat: {
  8965. height: math.unit(5 + 9 / 12, "feet"),
  8966. weight: math.unit(900, "lb"),
  8967. name: "Front (Fat)",
  8968. image: {
  8969. source: "./media/characters/samantha-kruse/fat.svg",
  8970. extra: 2688 / 2561
  8971. }
  8972. },
  8973. },
  8974. [
  8975. {
  8976. name: "Normal",
  8977. height: math.unit(5 + 9 / 12, "feet"),
  8978. default: true
  8979. }
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8984. {
  8985. back: {
  8986. height: math.unit(5 + 4 / 12, "feet"),
  8987. weight: math.unit(4963, "lb"),
  8988. name: "Back",
  8989. image: {
  8990. source: "./media/characters/amelia-rosie/back.svg",
  8991. extra: 1113 / 963,
  8992. bottom: 0.01
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Level 0",
  8999. height: math.unit(5 + 4 / 12, "feet")
  9000. },
  9001. {
  9002. name: "Level 1",
  9003. height: math.unit(164597, "feet"),
  9004. default: true
  9005. },
  9006. {
  9007. name: "Level 2",
  9008. height: math.unit(956243, "miles")
  9009. },
  9010. {
  9011. name: "Level 3",
  9012. height: math.unit(29421709423, "miles")
  9013. },
  9014. {
  9015. name: "Level 4",
  9016. height: math.unit(154, "lightyears")
  9017. },
  9018. {
  9019. name: "Level 5",
  9020. height: math.unit(4738272, "lightyears")
  9021. },
  9022. {
  9023. name: "Level 6",
  9024. height: math.unit(145787152896, "lightyears")
  9025. },
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(5 + 11 / 12, "feet"),
  9033. weight: math.unit(65, "kg"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/rook-kitara/front.svg",
  9037. extra: 1347 / 1274,
  9038. bottom: 0.005
  9039. }
  9040. },
  9041. },
  9042. [
  9043. {
  9044. name: "Totally Unfair",
  9045. height: math.unit(1.8, "mm")
  9046. },
  9047. {
  9048. name: "Lap Rookie",
  9049. height: math.unit(1.4, "feet")
  9050. },
  9051. {
  9052. name: "Normal",
  9053. height: math.unit(5 + 11 / 12, "feet"),
  9054. default: true
  9055. },
  9056. {
  9057. name: "How Did This Happen",
  9058. height: math.unit(80, "miles")
  9059. }
  9060. ]
  9061. ))
  9062. characterMakers.push(() => makeCharacter(
  9063. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9064. {
  9065. front: {
  9066. height: math.unit(7, "feet"),
  9067. weight: math.unit(300, "lb"),
  9068. name: "Front",
  9069. image: {
  9070. source: "./media/characters/pisces/front.svg",
  9071. extra: 2255 / 2115,
  9072. bottom: 0.03
  9073. }
  9074. },
  9075. back: {
  9076. height: math.unit(7, "feet"),
  9077. weight: math.unit(300, "lb"),
  9078. name: "Back",
  9079. image: {
  9080. source: "./media/characters/pisces/back.svg",
  9081. extra: 2146 / 2055,
  9082. bottom: 0.04
  9083. }
  9084. },
  9085. },
  9086. [
  9087. {
  9088. name: "Normal",
  9089. height: math.unit(7, "feet"),
  9090. default: true
  9091. },
  9092. {
  9093. name: "Swimming Pool",
  9094. height: math.unit(12.2, "meters")
  9095. },
  9096. {
  9097. name: "Olympic Swimming Pool",
  9098. height: math.unit(56.3, "meters")
  9099. },
  9100. {
  9101. name: "Lake Superior",
  9102. height: math.unit(93900, "meters")
  9103. },
  9104. {
  9105. name: "Mediterranean Sea",
  9106. height: math.unit(644457, "meters")
  9107. },
  9108. {
  9109. name: "World's Oceans",
  9110. height: math.unit(4567491, "meters")
  9111. },
  9112. ]
  9113. ))
  9114. characterMakers.push(() => makeCharacter(
  9115. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9116. {
  9117. front: {
  9118. height: math.unit(2.3, "meters"),
  9119. weight: math.unit(120, "kg"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/zelas/front.svg"
  9123. }
  9124. },
  9125. side: {
  9126. height: math.unit(2.3, "meters"),
  9127. weight: math.unit(120, "kg"),
  9128. name: "Side",
  9129. image: {
  9130. source: "./media/characters/zelas/side.svg"
  9131. }
  9132. },
  9133. back: {
  9134. height: math.unit(2.3, "meters"),
  9135. weight: math.unit(120, "kg"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/zelas/back.svg"
  9139. }
  9140. },
  9141. foot: {
  9142. height: math.unit(1.116, "feet"),
  9143. name: "Foot",
  9144. image: {
  9145. source: "./media/characters/zelas/foot.svg"
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(2.3, "meters")
  9153. },
  9154. {
  9155. name: "Macro",
  9156. height: math.unit(30, "meters"),
  9157. default: true
  9158. },
  9159. ]
  9160. ))
  9161. characterMakers.push(() => makeCharacter(
  9162. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9163. {
  9164. front: {
  9165. height: math.unit(1, "inch"),
  9166. weight: math.unit(0.21, "grams"),
  9167. name: "Front",
  9168. image: {
  9169. source: "./media/characters/talbot/front.svg",
  9170. extra: 594 / 544
  9171. }
  9172. },
  9173. },
  9174. [
  9175. {
  9176. name: "Micro",
  9177. height: math.unit(1, "inch"),
  9178. default: true
  9179. },
  9180. ]
  9181. ))
  9182. characterMakers.push(() => makeCharacter(
  9183. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9184. {
  9185. front: {
  9186. height: math.unit(3 + 3 / 12, "feet"),
  9187. weight: math.unit(51.8, "lb"),
  9188. name: "Front",
  9189. image: {
  9190. source: "./media/characters/fliss/front.svg",
  9191. extra: 840 / 640
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Teeny Tiny",
  9198. height: math.unit(1, "mm")
  9199. },
  9200. {
  9201. name: "Small",
  9202. height: math.unit(1, "inch"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Standard Sylveon",
  9207. height: math.unit(3 + 3 / 12, "feet")
  9208. },
  9209. {
  9210. name: "Large Nuisance",
  9211. height: math.unit(33, "feet")
  9212. },
  9213. {
  9214. name: "City Filler",
  9215. height: math.unit(3000, "feet")
  9216. },
  9217. {
  9218. name: "New Horizon",
  9219. height: math.unit(6000, "miles")
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(5, "cm"),
  9228. weight: math.unit(1.94, "g"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/fleta/front.svg",
  9232. extra: 835 / 803
  9233. }
  9234. },
  9235. back: {
  9236. height: math.unit(5, "cm"),
  9237. weight: math.unit(1.94, "g"),
  9238. name: "Back",
  9239. image: {
  9240. source: "./media/characters/fleta/back.svg",
  9241. extra: 835 / 803
  9242. }
  9243. },
  9244. },
  9245. [
  9246. {
  9247. name: "Micro",
  9248. height: math.unit(5, "cm"),
  9249. default: true
  9250. },
  9251. ]
  9252. ))
  9253. characterMakers.push(() => makeCharacter(
  9254. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9255. {
  9256. front: {
  9257. height: math.unit(6, "feet"),
  9258. weight: math.unit(225, "lb"),
  9259. name: "Front",
  9260. image: {
  9261. source: "./media/characters/dominic/front.svg",
  9262. extra: 1770 / 1620,
  9263. bottom: 0.025
  9264. }
  9265. },
  9266. back: {
  9267. height: math.unit(6, "feet"),
  9268. weight: math.unit(225, "lb"),
  9269. name: "Back",
  9270. image: {
  9271. source: "./media/characters/dominic/back.svg",
  9272. extra: 1745 / 1620,
  9273. bottom: 0.065
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Nano",
  9280. height: math.unit(0.1, "mm")
  9281. },
  9282. {
  9283. name: "Micro-",
  9284. height: math.unit(1, "mm")
  9285. },
  9286. {
  9287. name: "Micro",
  9288. height: math.unit(4, "inches")
  9289. },
  9290. {
  9291. name: "Normal",
  9292. height: math.unit(6 + 4 / 12, "feet"),
  9293. default: true
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(115, "feet")
  9298. },
  9299. {
  9300. name: "Macro+",
  9301. height: math.unit(955, "feet")
  9302. },
  9303. {
  9304. name: "Megamacro",
  9305. height: math.unit(8990, "feet")
  9306. },
  9307. {
  9308. name: "Gigmacro",
  9309. height: math.unit(9310, "miles")
  9310. },
  9311. {
  9312. name: "Teramacro",
  9313. height: math.unit(1567005010, "miles")
  9314. },
  9315. {
  9316. name: "Examacro",
  9317. height: math.unit(1425, "parsecs")
  9318. },
  9319. ]
  9320. ))
  9321. characterMakers.push(() => makeCharacter(
  9322. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9323. {
  9324. front: {
  9325. height: math.unit(400, "feet"),
  9326. weight: math.unit(44444444, "lb"),
  9327. name: "Front",
  9328. image: {
  9329. source: "./media/characters/major-colonel/front.svg"
  9330. }
  9331. },
  9332. back: {
  9333. height: math.unit(400, "feet"),
  9334. weight: math.unit(44444444, "lb"),
  9335. name: "Back",
  9336. image: {
  9337. source: "./media/characters/major-colonel/back.svg"
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Macro",
  9344. height: math.unit(400, "feet"),
  9345. default: true
  9346. },
  9347. ]
  9348. ))
  9349. characterMakers.push(() => makeCharacter(
  9350. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9351. {
  9352. catFront: {
  9353. height: math.unit(6, "feet"),
  9354. weight: math.unit(120, "lb"),
  9355. name: "Front (Cat Side)",
  9356. image: {
  9357. source: "./media/characters/axel-lycan/cat-front.svg",
  9358. extra: 430 / 402,
  9359. bottom: 43 / 472.35
  9360. }
  9361. },
  9362. catBack: {
  9363. height: math.unit(6, "feet"),
  9364. weight: math.unit(120, "lb"),
  9365. name: "Back (Cat Side)",
  9366. image: {
  9367. source: "./media/characters/axel-lycan/cat-back.svg",
  9368. extra: 447 / 419,
  9369. bottom: 23.3 / 469
  9370. }
  9371. },
  9372. wolfFront: {
  9373. height: math.unit(6, "feet"),
  9374. weight: math.unit(120, "lb"),
  9375. name: "Front (Wolf Side)",
  9376. image: {
  9377. source: "./media/characters/axel-lycan/wolf-front.svg",
  9378. extra: 485 / 456,
  9379. bottom: 19 / 504
  9380. }
  9381. },
  9382. wolfBack: {
  9383. height: math.unit(6, "feet"),
  9384. weight: math.unit(120, "lb"),
  9385. name: "Back (Wolf Side)",
  9386. image: {
  9387. source: "./media/characters/axel-lycan/wolf-back.svg",
  9388. extra: 475 / 438,
  9389. bottom: 39.2 / 514
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Macro",
  9396. height: math.unit(1, "km"),
  9397. default: true
  9398. },
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9403. {
  9404. front: {
  9405. height: math.unit(5 + 9 / 12, "feet"),
  9406. weight: math.unit(175, "lb"),
  9407. name: "Front",
  9408. image: {
  9409. source: "./media/characters/vanrel-hyena/front.svg",
  9410. extra: 1086 / 1010,
  9411. bottom: 0.04
  9412. }
  9413. },
  9414. },
  9415. [
  9416. {
  9417. name: "Normal",
  9418. height: math.unit(5 + 9 / 12, "feet"),
  9419. default: true
  9420. },
  9421. ]
  9422. ))
  9423. characterMakers.push(() => makeCharacter(
  9424. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9425. {
  9426. front: {
  9427. height: math.unit(6, "feet"),
  9428. weight: math.unit(103, "lb"),
  9429. name: "Front",
  9430. image: {
  9431. source: "./media/characters/abbott-absol/front.svg",
  9432. extra: 2010 / 1842
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Megamicro",
  9439. height: math.unit(0.1, "mm")
  9440. },
  9441. {
  9442. name: "Micro",
  9443. height: math.unit(1, "inch")
  9444. },
  9445. {
  9446. name: "Normal",
  9447. height: math.unit(6, "feet"),
  9448. default: true
  9449. },
  9450. ]
  9451. ))
  9452. characterMakers.push(() => makeCharacter(
  9453. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9454. {
  9455. front: {
  9456. height: math.unit(6, "feet"),
  9457. weight: math.unit(264, "lb"),
  9458. name: "Front",
  9459. image: {
  9460. source: "./media/characters/hector/front.svg",
  9461. extra: 2280 / 2130,
  9462. bottom: 0.07
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(12.25, "foot"),
  9470. default: true
  9471. },
  9472. {
  9473. name: "Macro",
  9474. height: math.unit(160, "feet")
  9475. },
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9480. {
  9481. front: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(150, "lb"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/sal/front.svg",
  9487. extra: 1846 / 1699,
  9488. bottom: 0.04
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Megamacro",
  9495. height: math.unit(10, "miles"),
  9496. default: true
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9502. {
  9503. front: {
  9504. height: math.unit(3, "meters"),
  9505. weight: math.unit(450, "kg"),
  9506. name: "front",
  9507. image: {
  9508. source: "./media/characters/ranger/front.svg",
  9509. extra: 2401 / 2243,
  9510. bottom: 0.05
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(3, "meters"),
  9518. default: true
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(14, "feet"),
  9527. weight: math.unit(800, "kg"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/theresa/front.svg",
  9531. extra: 3575 / 3346,
  9532. bottom: 0.03
  9533. }
  9534. },
  9535. },
  9536. [
  9537. {
  9538. name: "Normal",
  9539. height: math.unit(14, "feet"),
  9540. default: true
  9541. },
  9542. ]
  9543. ))
  9544. characterMakers.push(() => makeCharacter(
  9545. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9546. {
  9547. front: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(3, "kg"),
  9550. name: "Front",
  9551. image: {
  9552. source: "./media/characters/ine/front.svg",
  9553. extra: 678 / 539,
  9554. bottom: 0.023
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Normal",
  9561. height: math.unit(2.265, "feet"),
  9562. default: true
  9563. },
  9564. ]
  9565. ))
  9566. characterMakers.push(() => makeCharacter(
  9567. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9568. {
  9569. front: {
  9570. height: math.unit(5, "feet"),
  9571. weight: math.unit(30, "kg"),
  9572. name: "Front",
  9573. image: {
  9574. source: "./media/characters/vial/front.svg",
  9575. extra: 1365 / 1277,
  9576. bottom: 0.04
  9577. }
  9578. },
  9579. },
  9580. [
  9581. {
  9582. name: "Normal",
  9583. height: math.unit(5, "feet"),
  9584. default: true
  9585. },
  9586. ]
  9587. ))
  9588. characterMakers.push(() => makeCharacter(
  9589. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9590. {
  9591. side: {
  9592. height: math.unit(3.4, "meters"),
  9593. weight: math.unit(1000, "lb"),
  9594. name: "Side",
  9595. image: {
  9596. source: "./media/characters/rovoska/side.svg",
  9597. extra: 4403 / 1515
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(3.4, "meters"),
  9605. default: true
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(8, "feet"),
  9614. weight: math.unit(315, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/gunner-rotthbauer/front.svg"
  9618. }
  9619. },
  9620. back: {
  9621. height: math.unit(8, "feet"),
  9622. weight: math.unit(315, "lb"),
  9623. name: "Back",
  9624. image: {
  9625. source: "./media/characters/gunner-rotthbauer/back.svg"
  9626. }
  9627. },
  9628. },
  9629. [
  9630. {
  9631. name: "Micro",
  9632. height: math.unit(3.5, "inches")
  9633. },
  9634. {
  9635. name: "Normal",
  9636. height: math.unit(8, "feet"),
  9637. default: true
  9638. },
  9639. {
  9640. name: "Macro",
  9641. height: math.unit(250, "feet")
  9642. },
  9643. {
  9644. name: "Megamacro",
  9645. height: math.unit(1, "AU")
  9646. },
  9647. ]
  9648. ))
  9649. characterMakers.push(() => makeCharacter(
  9650. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9651. {
  9652. front: {
  9653. height: math.unit(5 + 5 / 12, "feet"),
  9654. weight: math.unit(140, "lb"),
  9655. name: "Front",
  9656. image: {
  9657. source: "./media/characters/allatia/front.svg",
  9658. extra: 1227 / 1180,
  9659. bottom: 0.027
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(5 + 5 / 12, "feet")
  9667. },
  9668. {
  9669. name: "Macro",
  9670. height: math.unit(250, "feet"),
  9671. default: true
  9672. },
  9673. {
  9674. name: "Megamacro",
  9675. height: math.unit(8, "miles")
  9676. }
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(120, "lb"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/tene/front.svg",
  9688. extra: 1728 / 1578,
  9689. bottom: 0.022
  9690. }
  9691. },
  9692. stomping: {
  9693. height: math.unit(2.025, "meters"),
  9694. weight: math.unit(120, "lb"),
  9695. name: "Stomping",
  9696. image: {
  9697. source: "./media/characters/tene/stomping.svg",
  9698. extra: 938 / 873,
  9699. bottom: 0.01
  9700. }
  9701. },
  9702. sitting: {
  9703. height: math.unit(1, "meter"),
  9704. weight: math.unit(120, "lb"),
  9705. name: "Sitting",
  9706. image: {
  9707. source: "./media/characters/tene/sitting.svg",
  9708. extra: 437 / 415,
  9709. bottom: 0.1
  9710. }
  9711. },
  9712. feral: {
  9713. height: math.unit(3.9, "feet"),
  9714. weight: math.unit(250, "lb"),
  9715. name: "Feral",
  9716. image: {
  9717. source: "./media/characters/tene/feral.svg",
  9718. extra: 717 / 458,
  9719. bottom: 0.179
  9720. }
  9721. },
  9722. },
  9723. [
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(6, "feet")
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(300, "feet"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "Megamacro",
  9735. height: math.unit(5, "miles")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9741. {
  9742. side: {
  9743. height: math.unit(6, "feet"),
  9744. name: "Side",
  9745. image: {
  9746. source: "./media/characters/evander/side.svg",
  9747. extra: 877 / 477
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Normal",
  9754. height: math.unit(0.83, "meters"),
  9755. default: true
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9761. {
  9762. front: {
  9763. height: math.unit(12, "feet"),
  9764. weight: math.unit(1000, "lb"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9768. extra: 1762 / 1611
  9769. }
  9770. },
  9771. back: {
  9772. height: math.unit(12, "feet"),
  9773. weight: math.unit(1000, "lb"),
  9774. name: "Back",
  9775. image: {
  9776. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9777. extra: 1762 / 1611
  9778. }
  9779. },
  9780. },
  9781. [
  9782. {
  9783. name: "Normal",
  9784. height: math.unit(12, "feet"),
  9785. default: true
  9786. },
  9787. {
  9788. name: "Kaiju",
  9789. height: math.unit(150, "feet")
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9795. {
  9796. front: {
  9797. height: math.unit(6, "feet"),
  9798. weight: math.unit(150, "lb"),
  9799. name: "Front",
  9800. image: {
  9801. source: "./media/characters/zero-alurus/front.svg"
  9802. }
  9803. },
  9804. back: {
  9805. height: math.unit(6, "feet"),
  9806. weight: math.unit(150, "lb"),
  9807. name: "Back",
  9808. image: {
  9809. source: "./media/characters/zero-alurus/back.svg"
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(5 + 10 / 12, "feet")
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(60, "feet"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Macro+",
  9825. height: math.unit(450, "feet")
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(200, "lb"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/mega-shi/front.svg",
  9838. extra: 1279 / 1250,
  9839. bottom: 0.02
  9840. }
  9841. },
  9842. back: {
  9843. height: math.unit(6, "feet"),
  9844. weight: math.unit(200, "lb"),
  9845. name: "Back",
  9846. image: {
  9847. source: "./media/characters/mega-shi/back.svg",
  9848. extra: 1279 / 1250,
  9849. bottom: 0.02
  9850. }
  9851. },
  9852. },
  9853. [
  9854. {
  9855. name: "Micro",
  9856. height: math.unit(16 + 6 / 12, "feet")
  9857. },
  9858. {
  9859. name: "Third Dimension",
  9860. height: math.unit(40, "meters")
  9861. },
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(660, "feet"),
  9865. default: true
  9866. },
  9867. {
  9868. name: "Megamacro",
  9869. height: math.unit(10, "miles")
  9870. },
  9871. {
  9872. name: "Planetary Launch",
  9873. height: math.unit(500, "miles")
  9874. },
  9875. {
  9876. name: "Interstellar",
  9877. height: math.unit(1e9, "miles")
  9878. },
  9879. {
  9880. name: "Leaving the Universe",
  9881. height: math.unit(1, "gigaparsec")
  9882. },
  9883. {
  9884. name: "Travelling Universes",
  9885. height: math.unit(30e15, "parsecs")
  9886. },
  9887. ]
  9888. ))
  9889. characterMakers.push(() => makeCharacter(
  9890. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9891. {
  9892. front: {
  9893. height: math.unit(6, "feet"),
  9894. weight: math.unit(150, "lb"),
  9895. name: "Front",
  9896. image: {
  9897. source: "./media/characters/odyssey/front.svg",
  9898. extra: 1782 / 1582,
  9899. bottom: 0.01
  9900. }
  9901. },
  9902. side: {
  9903. height: math.unit(5.7, "feet"),
  9904. weight: math.unit(140, "lb"),
  9905. name: "Side",
  9906. image: {
  9907. source: "./media/characters/odyssey/side.svg",
  9908. extra: 6462 / 5700
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Normal",
  9915. height: math.unit(5 + 4 / 12, "feet")
  9916. },
  9917. {
  9918. name: "Macro",
  9919. height: math.unit(1, "km")
  9920. },
  9921. {
  9922. name: "Megamacro",
  9923. height: math.unit(3000, "km")
  9924. },
  9925. {
  9926. name: "Gigamacro",
  9927. height: math.unit(1, "AU"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Omniversal",
  9932. height: math.unit(100e14, "lightyears")
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(300, "lb"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/mekuto/front.svg",
  9945. extra: 921 / 832,
  9946. bottom: 0.03
  9947. }
  9948. },
  9949. hand: {
  9950. height: math.unit(6 / 10.24, "feet"),
  9951. name: "Hand",
  9952. image: {
  9953. source: "./media/characters/mekuto/hand.svg"
  9954. }
  9955. },
  9956. foot: {
  9957. height: math.unit(6 / 5.05, "feet"),
  9958. name: "Foot",
  9959. image: {
  9960. source: "./media/characters/mekuto/foot.svg"
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Minimicro",
  9967. height: math.unit(0.2, "inches")
  9968. },
  9969. {
  9970. name: "Micro",
  9971. height: math.unit(1.5, "inches")
  9972. },
  9973. {
  9974. name: "Normal",
  9975. height: math.unit(5 + 11 / 12, "feet"),
  9976. default: true
  9977. },
  9978. {
  9979. name: "Minimacro",
  9980. height: math.unit(17 + 9 / 12, "feet")
  9981. },
  9982. {
  9983. name: "Macro",
  9984. height: math.unit(177.5, "feet")
  9985. },
  9986. {
  9987. name: "Megamacro",
  9988. height: math.unit(152, "miles")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(6.5, "inches"),
  9997. weight: math.unit(13, "oz"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/dafydd-tomos/front.svg",
  10001. extra: 2990 / 2603,
  10002. bottom: 0.03
  10003. }
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Micro",
  10009. height: math.unit(6.5, "inches"),
  10010. default: true
  10011. },
  10012. ]
  10013. ))
  10014. characterMakers.push(() => makeCharacter(
  10015. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10016. {
  10017. front: {
  10018. height: math.unit(6, "feet"),
  10019. weight: math.unit(150, "lb"),
  10020. name: "Front",
  10021. image: {
  10022. source: "./media/characters/splinter/front.svg",
  10023. extra: 2990 / 2882,
  10024. bottom: 0.04
  10025. }
  10026. },
  10027. back: {
  10028. height: math.unit(6, "feet"),
  10029. weight: math.unit(150, "lb"),
  10030. name: "Back",
  10031. image: {
  10032. source: "./media/characters/splinter/back.svg",
  10033. extra: 2990 / 2882,
  10034. bottom: 0.04
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Normal",
  10041. height: math.unit(6, "feet")
  10042. },
  10043. {
  10044. name: "Macro",
  10045. height: math.unit(230, "meters"),
  10046. default: true
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(4 + 10 / 12, "feet"),
  10055. weight: math.unit(480, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/snow-gabumon/front.svg",
  10059. extra: 1140 / 963,
  10060. bottom: 0.058
  10061. }
  10062. },
  10063. back: {
  10064. height: math.unit(4 + 10 / 12, "feet"),
  10065. weight: math.unit(480, "lb"),
  10066. name: "Back",
  10067. image: {
  10068. source: "./media/characters/snow-gabumon/back.svg",
  10069. extra: 1115 / 962,
  10070. bottom: 0.041
  10071. }
  10072. },
  10073. frontUndresed: {
  10074. height: math.unit(4 + 10 / 12, "feet"),
  10075. weight: math.unit(480, "lb"),
  10076. name: "Front (Undressed)",
  10077. image: {
  10078. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10079. extra: 1061 / 960,
  10080. bottom: 0.045
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Micro",
  10087. height: math.unit(1, "inch")
  10088. },
  10089. {
  10090. name: "Normal",
  10091. height: math.unit(4 + 10 / 12, "feet"),
  10092. default: true
  10093. },
  10094. {
  10095. name: "Macro",
  10096. height: math.unit(200, "feet")
  10097. },
  10098. {
  10099. name: "Megamacro",
  10100. height: math.unit(120, "miles")
  10101. },
  10102. {
  10103. name: "Gigamacro",
  10104. height: math.unit(9800, "miles")
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10110. {
  10111. front: {
  10112. height: math.unit(1.7, "meters"),
  10113. weight: math.unit(140, "lb"),
  10114. name: "Front",
  10115. image: {
  10116. source: "./media/characters/moody/front.svg",
  10117. extra: 3226 / 3007,
  10118. bottom: 0.087
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Micro",
  10125. height: math.unit(1, "mm")
  10126. },
  10127. {
  10128. name: "Normal",
  10129. height: math.unit(1.7, "meters"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Macro",
  10134. height: math.unit(80, "meters")
  10135. },
  10136. {
  10137. name: "Macro+",
  10138. height: math.unit(500, "meters")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(6, "feet"),
  10147. weight: math.unit(150, "lb"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/zyas/front.svg",
  10151. extra: 1180 / 1120,
  10152. bottom: 0.045
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Normal",
  10159. height: math.unit(10, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Macro",
  10164. height: math.unit(500, "feet")
  10165. },
  10166. {
  10167. name: "Megamacro",
  10168. height: math.unit(5, "miles")
  10169. },
  10170. {
  10171. name: "Teramacro",
  10172. height: math.unit(150000, "miles")
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(150, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/cuon/front.svg",
  10185. extra: 1390 / 1320,
  10186. bottom: 0.008
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Micro",
  10193. height: math.unit(3, "inches")
  10194. },
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(18 + 9 / 12, "feet"),
  10198. default: true
  10199. },
  10200. {
  10201. name: "Macro",
  10202. height: math.unit(360, "feet")
  10203. },
  10204. {
  10205. name: "Megamacro",
  10206. height: math.unit(360, "miles")
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(2.4, "meters"),
  10215. weight: math.unit(70, "kg"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/nyanuxk/front.svg",
  10219. extra: 1172 / 1084,
  10220. bottom: 0.065
  10221. }
  10222. },
  10223. side: {
  10224. height: math.unit(2.4, "meters"),
  10225. weight: math.unit(70, "kg"),
  10226. name: "Side",
  10227. image: {
  10228. source: "./media/characters/nyanuxk/side.svg",
  10229. extra: 1190 / 1132,
  10230. bottom: 0.007
  10231. }
  10232. },
  10233. back: {
  10234. height: math.unit(2.4, "meters"),
  10235. weight: math.unit(70, "kg"),
  10236. name: "Back",
  10237. image: {
  10238. source: "./media/characters/nyanuxk/back.svg",
  10239. extra: 1200 / 1141,
  10240. bottom: 0.015
  10241. }
  10242. },
  10243. foot: {
  10244. height: math.unit(0.52, "meters"),
  10245. name: "Foot",
  10246. image: {
  10247. source: "./media/characters/nyanuxk/foot.svg"
  10248. }
  10249. },
  10250. },
  10251. [
  10252. {
  10253. name: "Micro",
  10254. height: math.unit(2, "cm")
  10255. },
  10256. {
  10257. name: "Normal",
  10258. height: math.unit(2.4, "meters"),
  10259. default: true
  10260. },
  10261. {
  10262. name: "Smaller Macro",
  10263. height: math.unit(120, "meters")
  10264. },
  10265. {
  10266. name: "Bigger Macro",
  10267. height: math.unit(1.2, "km")
  10268. },
  10269. {
  10270. name: "Megamacro",
  10271. height: math.unit(15, "kilometers")
  10272. },
  10273. {
  10274. name: "Gigamacro",
  10275. height: math.unit(2000, "km")
  10276. },
  10277. {
  10278. name: "Teramacro",
  10279. height: math.unit(500000, "km")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10285. {
  10286. side: {
  10287. height: math.unit(6, "feet"),
  10288. name: "Side",
  10289. image: {
  10290. source: "./media/characters/ailbhe/side.svg",
  10291. extra: 757 / 464,
  10292. bottom: 0.041
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Normal",
  10299. height: math.unit(1.07, "meters"),
  10300. default: true
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(6, "feet"),
  10309. weight: math.unit(120, "kg"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/zevulfius/front.svg",
  10313. extra: 965 / 903
  10314. }
  10315. },
  10316. side: {
  10317. height: math.unit(6, "feet"),
  10318. weight: math.unit(120, "kg"),
  10319. name: "Side",
  10320. image: {
  10321. source: "./media/characters/zevulfius/side.svg",
  10322. extra: 939 / 900
  10323. }
  10324. },
  10325. back: {
  10326. height: math.unit(6, "feet"),
  10327. weight: math.unit(120, "kg"),
  10328. name: "Back",
  10329. image: {
  10330. source: "./media/characters/zevulfius/back.svg",
  10331. extra: 918 / 854,
  10332. bottom: 0.005
  10333. }
  10334. },
  10335. foot: {
  10336. height: math.unit(6 / 3.72, "feet"),
  10337. name: "Foot",
  10338. image: {
  10339. source: "./media/characters/zevulfius/foot.svg"
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(750, "meters")
  10347. },
  10348. {
  10349. name: "Megamacro",
  10350. height: math.unit(20, "km"),
  10351. default: true
  10352. },
  10353. {
  10354. name: "Gigamacro",
  10355. height: math.unit(2000, "km")
  10356. },
  10357. {
  10358. name: "Teramacro",
  10359. height: math.unit(250000, "km")
  10360. },
  10361. ]
  10362. ))
  10363. characterMakers.push(() => makeCharacter(
  10364. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10365. {
  10366. front: {
  10367. height: math.unit(100, "feet"),
  10368. weight: math.unit(350, "kg"),
  10369. name: "Front",
  10370. image: {
  10371. source: "./media/characters/rikes/front.svg",
  10372. extra: 1565 / 1483,
  10373. bottom: 0.017
  10374. }
  10375. },
  10376. },
  10377. [
  10378. {
  10379. name: "Macro",
  10380. height: math.unit(100, "feet"),
  10381. default: true
  10382. },
  10383. ]
  10384. ))
  10385. characterMakers.push(() => makeCharacter(
  10386. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10387. {
  10388. anthro: {
  10389. height: math.unit(8, "feet"),
  10390. weight: math.unit(120, "kg"),
  10391. name: "Anthro",
  10392. image: {
  10393. source: "./media/characters/adam-silver-mane/anthro.svg",
  10394. extra: 5743 / 5339,
  10395. bottom: 0.07
  10396. }
  10397. },
  10398. taur: {
  10399. height: math.unit(16, "feet"),
  10400. weight: math.unit(1500, "kg"),
  10401. name: "Taur",
  10402. image: {
  10403. source: "./media/characters/adam-silver-mane/taur.svg",
  10404. extra: 1713 / 1571,
  10405. bottom: 0.01
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Normal",
  10412. height: math.unit(8, "feet")
  10413. },
  10414. {
  10415. name: "Minimacro",
  10416. height: math.unit(80, "feet")
  10417. },
  10418. {
  10419. name: "Macro",
  10420. height: math.unit(800, "feet"),
  10421. default: true
  10422. },
  10423. {
  10424. name: "Megamacro",
  10425. height: math.unit(8000, "feet")
  10426. },
  10427. {
  10428. name: "Gigamacro",
  10429. height: math.unit(800, "miles")
  10430. },
  10431. {
  10432. name: "Teramacro",
  10433. height: math.unit(80000, "miles")
  10434. },
  10435. {
  10436. name: "Celestial",
  10437. height: math.unit(8e6, "miles")
  10438. },
  10439. {
  10440. name: "Star Dragon",
  10441. height: math.unit(800000, "parsecs")
  10442. },
  10443. {
  10444. name: "Godly",
  10445. height: math.unit(800, "teraparsecs")
  10446. },
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(6, "feet"),
  10454. weight: math.unit(150, "lb"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/ky'owin/front.svg",
  10458. extra: 3888 / 3068,
  10459. bottom: 0.015
  10460. }
  10461. },
  10462. },
  10463. [
  10464. {
  10465. name: "Normal",
  10466. height: math.unit(6 + 8 / 12, "feet")
  10467. },
  10468. {
  10469. name: "Large",
  10470. height: math.unit(68, "feet")
  10471. },
  10472. {
  10473. name: "Macro",
  10474. height: math.unit(132, "feet")
  10475. },
  10476. {
  10477. name: "Macro+",
  10478. height: math.unit(340, "feet")
  10479. },
  10480. {
  10481. name: "Macro++",
  10482. height: math.unit(680, "feet"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Megamacro",
  10487. height: math.unit(1, "mile")
  10488. },
  10489. {
  10490. name: "Megamacro+",
  10491. height: math.unit(10, "miles")
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(4, "feet"),
  10500. weight: math.unit(50, "lb"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/mal/front.svg",
  10504. extra: 785 / 724,
  10505. bottom: 0.07
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Micro",
  10512. height: math.unit(4, "inches")
  10513. },
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(4, "feet"),
  10517. default: true
  10518. },
  10519. {
  10520. name: "Macro",
  10521. height: math.unit(200, "feet")
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10527. {
  10528. front: {
  10529. height: math.unit(6, "feet"),
  10530. weight: math.unit(150, "lb"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/jordan-deware/front.svg",
  10534. extra: 1191 / 1012
  10535. }
  10536. },
  10537. },
  10538. [
  10539. {
  10540. name: "Nano",
  10541. height: math.unit(0.01, "mm")
  10542. },
  10543. {
  10544. name: "Minimicro",
  10545. height: math.unit(1, "mm")
  10546. },
  10547. {
  10548. name: "Micro",
  10549. height: math.unit(0.5, "inches")
  10550. },
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(4, "feet"),
  10554. default: true
  10555. },
  10556. {
  10557. name: "Minimacro",
  10558. height: math.unit(40, "meters")
  10559. },
  10560. {
  10561. name: "Small Macro",
  10562. height: math.unit(400, "meters")
  10563. },
  10564. {
  10565. name: "Macro",
  10566. height: math.unit(4, "miles")
  10567. },
  10568. {
  10569. name: "Megamacro",
  10570. height: math.unit(40, "miles")
  10571. },
  10572. {
  10573. name: "Megamacro+",
  10574. height: math.unit(400, "miles")
  10575. },
  10576. {
  10577. name: "Gigamacro",
  10578. height: math.unit(400000, "miles")
  10579. },
  10580. ]
  10581. ))
  10582. characterMakers.push(() => makeCharacter(
  10583. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10584. {
  10585. side: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(150, "lb"),
  10588. name: "Side",
  10589. image: {
  10590. source: "./media/characters/kimiko/side.svg",
  10591. extra: 600 / 358
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Normal",
  10598. height: math.unit(15, "feet"),
  10599. default: true
  10600. },
  10601. {
  10602. name: "Macro",
  10603. height: math.unit(220, "feet")
  10604. },
  10605. {
  10606. name: "Macro+",
  10607. height: math.unit(1450, "feet")
  10608. },
  10609. {
  10610. name: "Megamacro",
  10611. height: math.unit(11500, "feet")
  10612. },
  10613. {
  10614. name: "Gigamacro",
  10615. height: math.unit(9500, "miles")
  10616. },
  10617. {
  10618. name: "Teramacro",
  10619. height: math.unit(2208005005, "miles")
  10620. },
  10621. {
  10622. name: "Examacro",
  10623. height: math.unit(2750, "parsecs")
  10624. },
  10625. {
  10626. name: "Zettamacro",
  10627. height: math.unit(101500, "parsecs")
  10628. },
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10633. {
  10634. front: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(70, "kg"),
  10637. name: "Front",
  10638. image: {
  10639. source: "./media/characters/andrew-sleepy/front.svg"
  10640. }
  10641. },
  10642. side: {
  10643. height: math.unit(6, "feet"),
  10644. weight: math.unit(70, "kg"),
  10645. name: "Side",
  10646. image: {
  10647. source: "./media/characters/andrew-sleepy/side.svg"
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Micro",
  10654. height: math.unit(1, "mm"),
  10655. default: true
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(150, "lb"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/judio/front.svg",
  10668. extra: 1258 / 1110
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Normal",
  10675. height: math.unit(5 + 6 / 12, "feet")
  10676. },
  10677. {
  10678. name: "Macro",
  10679. height: math.unit(1000, "feet"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Megamacro",
  10684. height: math.unit(10, "miles")
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10690. {
  10691. front: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(68, "kg"),
  10694. name: "Front",
  10695. image: {
  10696. source: "./media/characters/nomaxice/front.svg",
  10697. extra: 1498 / 1073,
  10698. bottom: 0.075
  10699. }
  10700. },
  10701. foot: {
  10702. height: math.unit(1.1, "feet"),
  10703. name: "Foot",
  10704. image: {
  10705. source: "./media/characters/nomaxice/foot.svg"
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Micro",
  10712. height: math.unit(8, "cm")
  10713. },
  10714. {
  10715. name: "Norm",
  10716. height: math.unit(1.82, "m")
  10717. },
  10718. {
  10719. name: "Norm+",
  10720. height: math.unit(8.8, "feet")
  10721. },
  10722. {
  10723. name: "Big",
  10724. height: math.unit(8, "meters"),
  10725. default: true
  10726. },
  10727. {
  10728. name: "Macro",
  10729. height: math.unit(18, "meters")
  10730. },
  10731. {
  10732. name: "Macro+",
  10733. height: math.unit(88, "meters")
  10734. },
  10735. ]
  10736. ))
  10737. characterMakers.push(() => makeCharacter(
  10738. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10739. {
  10740. front: {
  10741. height: math.unit(12, "feet"),
  10742. weight: math.unit(1.5, "tons"),
  10743. name: "Front",
  10744. image: {
  10745. source: "./media/characters/dydros/front.svg",
  10746. extra: 863 / 800,
  10747. bottom: 0.015
  10748. }
  10749. },
  10750. back: {
  10751. height: math.unit(12, "feet"),
  10752. weight: math.unit(1.5, "tons"),
  10753. name: "Back",
  10754. image: {
  10755. source: "./media/characters/dydros/back.svg",
  10756. extra: 900 / 843,
  10757. bottom: 0.005
  10758. }
  10759. },
  10760. },
  10761. [
  10762. {
  10763. name: "Normal",
  10764. height: math.unit(12, "feet"),
  10765. default: true
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(6, "feet"),
  10774. weight: math.unit(100, "kg"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/riggi/front.svg",
  10778. extra: 5787 / 5303
  10779. }
  10780. },
  10781. hyper: {
  10782. height: math.unit(6 * 5 / 3, "feet"),
  10783. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10784. name: "Hyper",
  10785. image: {
  10786. source: "./media/characters/riggi/hyper.svg",
  10787. extra: 3595 / 3485
  10788. }
  10789. },
  10790. },
  10791. [
  10792. {
  10793. name: "Small Macro",
  10794. height: math.unit(50, "feet")
  10795. },
  10796. {
  10797. name: "Default",
  10798. height: math.unit(200, "feet"),
  10799. default: true
  10800. },
  10801. {
  10802. name: "Loom",
  10803. height: math.unit(10000, "feet")
  10804. },
  10805. {
  10806. name: "Cruising Altitude",
  10807. height: math.unit(30000, "feet")
  10808. },
  10809. {
  10810. name: "Megamacro",
  10811. height: math.unit(100, "miles")
  10812. },
  10813. {
  10814. name: "Continent Sized",
  10815. height: math.unit(2800, "miles")
  10816. },
  10817. {
  10818. name: "Earth Sized",
  10819. height: math.unit(8000, "miles")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10825. {
  10826. front: {
  10827. height: math.unit(6, "feet"),
  10828. weight: math.unit(250, "lb"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/alexi/front.svg",
  10832. extra: 3483 / 3291,
  10833. bottom: 0.04
  10834. }
  10835. },
  10836. back: {
  10837. height: math.unit(6, "feet"),
  10838. weight: math.unit(250, "lb"),
  10839. name: "Back",
  10840. image: {
  10841. source: "./media/characters/alexi/back.svg",
  10842. extra: 3533 / 3356,
  10843. bottom: 0.021
  10844. }
  10845. },
  10846. frontTransforming: {
  10847. height: math.unit(8.58, "feet"),
  10848. weight: math.unit(1300, "lb"),
  10849. name: "Transforming",
  10850. image: {
  10851. source: "./media/characters/alexi/front-transforming.svg",
  10852. extra: 437 / 409,
  10853. bottom: 19 / 458.66
  10854. }
  10855. },
  10856. frontTransformed: {
  10857. height: math.unit(12.5, "feet"),
  10858. weight: math.unit(4000, "lb"),
  10859. name: "Transformed",
  10860. image: {
  10861. source: "./media/characters/alexi/front-transformed.svg",
  10862. extra: 639 / 614,
  10863. bottom: 30.55 / 671
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Normal",
  10870. height: math.unit(14, "feet"),
  10871. default: true
  10872. },
  10873. {
  10874. name: "Minimacro",
  10875. height: math.unit(30, "meters")
  10876. },
  10877. {
  10878. name: "Macro",
  10879. height: math.unit(500, "meters")
  10880. },
  10881. {
  10882. name: "Megamacro",
  10883. height: math.unit(9000, "km")
  10884. },
  10885. {
  10886. name: "Teramacro",
  10887. height: math.unit(384000, "km")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(6, "feet"),
  10896. weight: math.unit(150, "lb"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/kayroo/front.svg",
  10900. extra: 1153 / 1038,
  10901. bottom: 0.06
  10902. }
  10903. },
  10904. foot: {
  10905. height: math.unit(6, "feet"),
  10906. weight: math.unit(150, "lb"),
  10907. name: "Foot",
  10908. image: {
  10909. source: "./media/characters/kayroo/foot.svg"
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(8, "feet"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Minimacro",
  10921. height: math.unit(250, "feet")
  10922. },
  10923. {
  10924. name: "Macro",
  10925. height: math.unit(2800, "feet")
  10926. },
  10927. {
  10928. name: "Megamacro",
  10929. height: math.unit(5200, "feet")
  10930. },
  10931. {
  10932. name: "Gigamacro",
  10933. height: math.unit(27000, "feet")
  10934. },
  10935. {
  10936. name: "Omega",
  10937. height: math.unit(45000, "feet")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10943. {
  10944. front: {
  10945. height: math.unit(18, "feet"),
  10946. weight: math.unit(5800, "lb"),
  10947. name: "Front",
  10948. image: {
  10949. source: "./media/characters/rhys/front.svg",
  10950. extra: 3386 / 3090,
  10951. bottom: 0.07
  10952. }
  10953. },
  10954. },
  10955. [
  10956. {
  10957. name: "Normal",
  10958. height: math.unit(18, "feet"),
  10959. default: true
  10960. },
  10961. {
  10962. name: "Working Size",
  10963. height: math.unit(200, "feet")
  10964. },
  10965. {
  10966. name: "Demolition Size",
  10967. height: math.unit(2000, "feet")
  10968. },
  10969. {
  10970. name: "Maximum Licensed Size",
  10971. height: math.unit(5, "miles")
  10972. },
  10973. {
  10974. name: "Maximum Observed Size",
  10975. height: math.unit(10, "yottameters")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10981. {
  10982. front: {
  10983. height: math.unit(6, "feet"),
  10984. weight: math.unit(250, "lb"),
  10985. name: "Front",
  10986. image: {
  10987. source: "./media/characters/toto/front.svg",
  10988. extra: 527 / 479,
  10989. bottom: 0.05
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Micro",
  10996. height: math.unit(3, "feet")
  10997. },
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(10, "feet")
  11001. },
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(150, "feet"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Megamacro",
  11009. height: math.unit(1200, "feet")
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "King", species: ["lion"], tags: ["anthro"] },
  11015. {
  11016. back: {
  11017. height: math.unit(6, "feet"),
  11018. weight: math.unit(150, "lb"),
  11019. name: "Back",
  11020. image: {
  11021. source: "./media/characters/king/back.svg"
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Micro",
  11028. height: math.unit(2, "inches")
  11029. },
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(8, "feet")
  11033. },
  11034. {
  11035. name: "Macro",
  11036. height: math.unit(200, "feet"),
  11037. default: true
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(50, "miles")
  11042. },
  11043. ]
  11044. ))
  11045. characterMakers.push(() => makeCharacter(
  11046. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11047. {
  11048. anthro: {
  11049. height: math.unit(6 + 5 / 12, "feet"),
  11050. weight: math.unit(280, "lb"),
  11051. name: "Anthro",
  11052. image: {
  11053. source: "./media/characters/cordite/anthro.svg",
  11054. extra: 1986 / 1905,
  11055. bottom: 0.025
  11056. }
  11057. },
  11058. feral: {
  11059. height: math.unit(2, "feet"),
  11060. weight: math.unit(90, "lb"),
  11061. name: "Feral",
  11062. image: {
  11063. source: "./media/characters/cordite/feral.svg",
  11064. extra: 1260 / 755,
  11065. bottom: 0.05
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Normal",
  11072. height: math.unit(6 + 5 / 12, "feet"),
  11073. default: true
  11074. },
  11075. ]
  11076. ))
  11077. characterMakers.push(() => makeCharacter(
  11078. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11079. {
  11080. front: {
  11081. height: math.unit(6, "feet"),
  11082. weight: math.unit(150, "lb"),
  11083. name: "Front",
  11084. image: {
  11085. source: "./media/characters/pianostrong/front.svg",
  11086. extra: 6577 / 6254,
  11087. bottom: 0.02
  11088. }
  11089. },
  11090. side: {
  11091. height: math.unit(6, "feet"),
  11092. weight: math.unit(150, "lb"),
  11093. name: "Side",
  11094. image: {
  11095. source: "./media/characters/pianostrong/side.svg",
  11096. extra: 6106 / 5730
  11097. }
  11098. },
  11099. back: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(150, "lb"),
  11102. name: "Back",
  11103. image: {
  11104. source: "./media/characters/pianostrong/back.svg",
  11105. extra: 6085 / 5733,
  11106. bottom: 0.01
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Macro",
  11113. height: math.unit(100, "feet")
  11114. },
  11115. {
  11116. name: "Macro+",
  11117. height: math.unit(300, "feet"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Macro++",
  11122. height: math.unit(1000, "feet")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(150, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/kona/front.svg",
  11135. extra: 2960 / 2629,
  11136. bottom: 0.005
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(11 + 8 / 12, "feet")
  11144. },
  11145. {
  11146. name: "Macro",
  11147. height: math.unit(850, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Macro+",
  11152. height: math.unit(1.5, "km"),
  11153. default: true
  11154. },
  11155. {
  11156. name: "Megamacro",
  11157. height: math.unit(80, "miles")
  11158. },
  11159. {
  11160. name: "Gigamacro",
  11161. height: math.unit(3500, "miles")
  11162. },
  11163. ]
  11164. ))
  11165. characterMakers.push(() => makeCharacter(
  11166. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11167. {
  11168. side: {
  11169. height: math.unit(1.9, "meters"),
  11170. weight: math.unit(326, "kg"),
  11171. name: "Side",
  11172. image: {
  11173. source: "./media/characters/levi/side.svg",
  11174. extra: 1704 / 1334,
  11175. bottom: 0.02
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Normal",
  11182. height: math.unit(1.9, "meters"),
  11183. default: true
  11184. },
  11185. {
  11186. name: "Macro",
  11187. height: math.unit(20, "meters")
  11188. },
  11189. {
  11190. name: "Macro+",
  11191. height: math.unit(200, "meters")
  11192. },
  11193. {
  11194. name: "Megamacro",
  11195. height: math.unit(2, "km")
  11196. },
  11197. {
  11198. name: "Megamacro+",
  11199. height: math.unit(20, "km")
  11200. },
  11201. {
  11202. name: "Gigamacro",
  11203. height: math.unit(2500, "km")
  11204. },
  11205. {
  11206. name: "Gigamacro+",
  11207. height: math.unit(120000, "km")
  11208. },
  11209. {
  11210. name: "Teramacro",
  11211. height: math.unit(7.77e6, "km")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(6 + 4/12, "feet"),
  11220. weight: math.unit(190, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/bmc/front.svg",
  11224. extra: 1626/1472,
  11225. bottom: 79/1705
  11226. }
  11227. },
  11228. back: {
  11229. height: math.unit(6 + 4/12, "feet"),
  11230. weight: math.unit(190, "lb"),
  11231. name: "Back",
  11232. image: {
  11233. source: "./media/characters/bmc/back.svg",
  11234. extra: 1640/1479,
  11235. bottom: 45/1685
  11236. }
  11237. },
  11238. frontArmor: {
  11239. height: math.unit(6 + 4/12, "feet"),
  11240. weight: math.unit(190, "lb"),
  11241. name: "Front-armor",
  11242. image: {
  11243. source: "./media/characters/bmc/front-armor.svg",
  11244. extra: 1538/1468,
  11245. bottom: 79/1617
  11246. }
  11247. },
  11248. },
  11249. [
  11250. {
  11251. name: "Human-sized",
  11252. height: math.unit(6 + 4 / 12, "feet")
  11253. },
  11254. {
  11255. name: "Interactive Size",
  11256. height: math.unit(25, "feet")
  11257. },
  11258. {
  11259. name: "Small",
  11260. height: math.unit(250, "feet")
  11261. },
  11262. {
  11263. name: "Normal",
  11264. height: math.unit(1250, "feet"),
  11265. default: true
  11266. },
  11267. {
  11268. name: "Good Day",
  11269. height: math.unit(88, "miles")
  11270. },
  11271. {
  11272. name: "Largest Measured Size",
  11273. height: math.unit(105.960, "galaxies")
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11279. {
  11280. front: {
  11281. height: math.unit(20, "feet"),
  11282. weight: math.unit(2016, "kg"),
  11283. name: "Front",
  11284. image: {
  11285. source: "./media/characters/sven-the-kaiju/front.svg",
  11286. extra: 1277/1250,
  11287. bottom: 35/1312
  11288. }
  11289. },
  11290. mouth: {
  11291. height: math.unit(1.85, "feet"),
  11292. name: "Mouth",
  11293. image: {
  11294. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Fairy",
  11301. height: math.unit(6, "inches")
  11302. },
  11303. {
  11304. name: "Normal",
  11305. height: math.unit(20, "feet"),
  11306. default: true
  11307. },
  11308. {
  11309. name: "Rampage",
  11310. height: math.unit(200, "feet")
  11311. },
  11312. {
  11313. name: "Archfey Forest Guardian",
  11314. height: math.unit(1, "mile")
  11315. },
  11316. ]
  11317. ))
  11318. characterMakers.push(() => makeCharacter(
  11319. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11320. {
  11321. front: {
  11322. height: math.unit(4, "meters"),
  11323. weight: math.unit(2, "tons"),
  11324. name: "Front",
  11325. image: {
  11326. source: "./media/characters/marik/front.svg",
  11327. extra: 1057 / 1003,
  11328. bottom: 0.08
  11329. }
  11330. },
  11331. },
  11332. [
  11333. {
  11334. name: "Normal",
  11335. height: math.unit(4, "meters"),
  11336. default: true
  11337. },
  11338. {
  11339. name: "Macro",
  11340. height: math.unit(20, "meters")
  11341. },
  11342. {
  11343. name: "Megamacro",
  11344. height: math.unit(50, "km")
  11345. },
  11346. {
  11347. name: "Gigamacro",
  11348. height: math.unit(100, "km")
  11349. },
  11350. {
  11351. name: "Alpha Macro",
  11352. height: math.unit(7.88e7, "yottameters")
  11353. },
  11354. ]
  11355. ))
  11356. characterMakers.push(() => makeCharacter(
  11357. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11358. {
  11359. front: {
  11360. height: math.unit(6, "feet"),
  11361. weight: math.unit(110, "lb"),
  11362. name: "Front",
  11363. image: {
  11364. source: "./media/characters/mel/front.svg",
  11365. extra: 736 / 617,
  11366. bottom: 0.017
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Pico",
  11373. height: math.unit(3, "pm")
  11374. },
  11375. {
  11376. name: "Nano",
  11377. height: math.unit(3, "nm")
  11378. },
  11379. {
  11380. name: "Micro",
  11381. height: math.unit(0.3, "mm"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Micro+",
  11386. height: math.unit(3, "mm")
  11387. },
  11388. {
  11389. name: "Normal",
  11390. height: math.unit(5 + 10.5 / 12, "feet")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11396. {
  11397. kaiju: {
  11398. height: math.unit(1.75, "meters"),
  11399. weight: math.unit(55, "kg"),
  11400. name: "Kaiju",
  11401. image: {
  11402. source: "./media/characters/lykonous/kaiju.svg",
  11403. extra: 1055 / 946,
  11404. bottom: 0.135
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Normal",
  11411. height: math.unit(2.5, "meters"),
  11412. default: true
  11413. },
  11414. {
  11415. name: "Kaiju Dragon",
  11416. height: math.unit(60, "meters")
  11417. },
  11418. {
  11419. name: "Mega Kaiju",
  11420. height: math.unit(120, "km")
  11421. },
  11422. {
  11423. name: "Giga Kaiju",
  11424. height: math.unit(200, "megameters")
  11425. },
  11426. {
  11427. name: "Terra Kaiju",
  11428. height: math.unit(400, "gigameters")
  11429. },
  11430. {
  11431. name: "Kaiju Dragon God",
  11432. height: math.unit(13000, "exaparsecs")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(6, "feet"),
  11441. weight: math.unit(150, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/blü/front.svg",
  11445. extra: 1883 / 1564,
  11446. bottom: 0.031
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Normal",
  11453. height: math.unit(13, "feet"),
  11454. default: true
  11455. },
  11456. {
  11457. name: "Big Boi",
  11458. height: math.unit(150, "meters")
  11459. },
  11460. {
  11461. name: "Mini Stomper",
  11462. height: math.unit(300, "meters")
  11463. },
  11464. {
  11465. name: "Macro",
  11466. height: math.unit(1000, "meters")
  11467. },
  11468. {
  11469. name: "Megamacro",
  11470. height: math.unit(11000, "meters")
  11471. },
  11472. {
  11473. name: "Gigamacro",
  11474. height: math.unit(11000, "km")
  11475. },
  11476. {
  11477. name: "Teramacro",
  11478. height: math.unit(420000, "km")
  11479. },
  11480. {
  11481. name: "Examacro",
  11482. height: math.unit(120, "parsecs")
  11483. },
  11484. {
  11485. name: "God Tho",
  11486. height: math.unit(98000000000, "parsecs")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11492. {
  11493. taurFront: {
  11494. height: math.unit(6, "feet"),
  11495. weight: math.unit(200, "lb"),
  11496. name: "Taur (Front)",
  11497. image: {
  11498. source: "./media/characters/scales/taur-front.svg",
  11499. extra: 1,
  11500. bottom: 0.05
  11501. }
  11502. },
  11503. taurBack: {
  11504. height: math.unit(6, "feet"),
  11505. weight: math.unit(200, "lb"),
  11506. name: "Taur (Back)",
  11507. image: {
  11508. source: "./media/characters/scales/taur-back.svg",
  11509. extra: 1,
  11510. bottom: 0.08
  11511. }
  11512. },
  11513. anthro: {
  11514. height: math.unit(6 * 7 / 12, "feet"),
  11515. weight: math.unit(100, "lb"),
  11516. name: "Anthro",
  11517. image: {
  11518. source: "./media/characters/scales/anthro.svg",
  11519. extra: 1,
  11520. bottom: 0.06
  11521. }
  11522. },
  11523. },
  11524. [
  11525. {
  11526. name: "Normal",
  11527. height: math.unit(12, "feet"),
  11528. default: true
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(6, "feet"),
  11537. weight: math.unit(150, "lb"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/koragos/front.svg",
  11541. extra: 841 / 794,
  11542. bottom: 0.035
  11543. }
  11544. },
  11545. back: {
  11546. height: math.unit(6, "feet"),
  11547. weight: math.unit(150, "lb"),
  11548. name: "Back",
  11549. image: {
  11550. source: "./media/characters/koragos/back.svg",
  11551. extra: 841 / 810,
  11552. bottom: 0.022
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Normal",
  11559. height: math.unit(6 + 11 / 12, "feet"),
  11560. default: true
  11561. },
  11562. {
  11563. name: "Macro",
  11564. height: math.unit(490, "feet")
  11565. },
  11566. {
  11567. name: "Megamacro",
  11568. height: math.unit(10, "miles")
  11569. },
  11570. {
  11571. name: "Gigamacro",
  11572. height: math.unit(50, "miles")
  11573. },
  11574. ]
  11575. ))
  11576. characterMakers.push(() => makeCharacter(
  11577. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11578. {
  11579. front: {
  11580. height: math.unit(6, "feet"),
  11581. weight: math.unit(250, "lb"),
  11582. name: "Front",
  11583. image: {
  11584. source: "./media/characters/xylrem/front.svg",
  11585. extra: 3323 / 3050,
  11586. bottom: 0.065
  11587. }
  11588. },
  11589. },
  11590. [
  11591. {
  11592. name: "Micro",
  11593. height: math.unit(4, "feet")
  11594. },
  11595. {
  11596. name: "Normal",
  11597. height: math.unit(16, "feet"),
  11598. default: true
  11599. },
  11600. {
  11601. name: "Macro",
  11602. height: math.unit(2720, "feet")
  11603. },
  11604. {
  11605. name: "Megamacro",
  11606. height: math.unit(25000, "miles")
  11607. },
  11608. ]
  11609. ))
  11610. characterMakers.push(() => makeCharacter(
  11611. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11612. {
  11613. front: {
  11614. height: math.unit(8, "feet"),
  11615. weight: math.unit(250, "kg"),
  11616. name: "Front",
  11617. image: {
  11618. source: "./media/characters/ikideru/front.svg",
  11619. extra: 930 / 870,
  11620. bottom: 0.087
  11621. }
  11622. },
  11623. back: {
  11624. height: math.unit(8, "feet"),
  11625. weight: math.unit(250, "kg"),
  11626. name: "Back",
  11627. image: {
  11628. source: "./media/characters/ikideru/back.svg",
  11629. extra: 919 / 852,
  11630. bottom: 0.055
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Rare",
  11637. height: math.unit(8, "feet"),
  11638. default: true
  11639. },
  11640. {
  11641. name: "Playful Loom",
  11642. height: math.unit(80, "feet")
  11643. },
  11644. {
  11645. name: "City Leaner",
  11646. height: math.unit(230, "feet")
  11647. },
  11648. {
  11649. name: "Megamacro",
  11650. height: math.unit(2500, "feet")
  11651. },
  11652. {
  11653. name: "Gigamacro",
  11654. height: math.unit(26400, "feet")
  11655. },
  11656. {
  11657. name: "Tectonic Shifter",
  11658. height: math.unit(1.7, "megameters")
  11659. },
  11660. {
  11661. name: "Planet Carer",
  11662. height: math.unit(21, "megameters")
  11663. },
  11664. {
  11665. name: "God",
  11666. height: math.unit(11157.22, "parsecs")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(6, "feet"),
  11675. weight: math.unit(120, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/neo/front.svg"
  11679. }
  11680. },
  11681. },
  11682. [
  11683. {
  11684. name: "Micro",
  11685. height: math.unit(2, "inches"),
  11686. default: true
  11687. },
  11688. {
  11689. name: "Human Size",
  11690. height: math.unit(5 + 8 / 12, "feet")
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11696. {
  11697. front: {
  11698. height: math.unit(13 + 10 / 12, "feet"),
  11699. weight: math.unit(5320, "lb"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/chauncey-chantz/front.svg",
  11703. extra: 1587 / 1435,
  11704. bottom: 0.02
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Normal",
  11711. height: math.unit(13 + 10 / 12, "feet"),
  11712. default: true
  11713. },
  11714. {
  11715. name: "Macro",
  11716. height: math.unit(45, "feet")
  11717. },
  11718. {
  11719. name: "Megamacro",
  11720. height: math.unit(250, "miles")
  11721. },
  11722. {
  11723. name: "Planetary",
  11724. height: math.unit(10000, "miles")
  11725. },
  11726. {
  11727. name: "Galactic",
  11728. height: math.unit(40000, "parsecs")
  11729. },
  11730. {
  11731. name: "Universal",
  11732. height: math.unit(1, "yottameter")
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11738. {
  11739. front: {
  11740. height: math.unit(6, "feet"),
  11741. weight: math.unit(150, "lb"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/epifox/front.svg",
  11745. extra: 1,
  11746. bottom: 0.075
  11747. }
  11748. },
  11749. },
  11750. [
  11751. {
  11752. name: "Micro",
  11753. height: math.unit(6, "inches")
  11754. },
  11755. {
  11756. name: "Normal",
  11757. height: math.unit(12, "feet"),
  11758. default: true
  11759. },
  11760. {
  11761. name: "Macro",
  11762. height: math.unit(3810, "feet")
  11763. },
  11764. {
  11765. name: "Megamacro",
  11766. height: math.unit(500, "miles")
  11767. },
  11768. ]
  11769. ))
  11770. characterMakers.push(() => makeCharacter(
  11771. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11772. {
  11773. front: {
  11774. height: math.unit(1.8796, "m"),
  11775. weight: math.unit(230, "lb"),
  11776. name: "Front",
  11777. image: {
  11778. source: "./media/characters/colin-t/front.svg",
  11779. extra: 1272 / 1193,
  11780. bottom: 0.07
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Micro",
  11787. height: math.unit(0.571, "meters")
  11788. },
  11789. {
  11790. name: "Normal",
  11791. height: math.unit(1.8796, "meters"),
  11792. default: true
  11793. },
  11794. {
  11795. name: "Tall",
  11796. height: math.unit(4, "meters")
  11797. },
  11798. {
  11799. name: "Macro",
  11800. height: math.unit(67.241, "meters")
  11801. },
  11802. {
  11803. name: "Megamacro",
  11804. height: math.unit(371.856, "meters")
  11805. },
  11806. {
  11807. name: "Planetary",
  11808. height: math.unit(12631.5689, "km")
  11809. },
  11810. ]
  11811. ))
  11812. characterMakers.push(() => makeCharacter(
  11813. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11814. {
  11815. front: {
  11816. height: math.unit(1.85, "meters"),
  11817. weight: math.unit(80, "kg"),
  11818. name: "Front",
  11819. image: {
  11820. source: "./media/characters/matvei/front.svg",
  11821. extra: 614 / 594,
  11822. bottom: 0.01
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Normal",
  11829. height: math.unit(1.85, "meters"),
  11830. default: true
  11831. },
  11832. ]
  11833. ))
  11834. characterMakers.push(() => makeCharacter(
  11835. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11836. {
  11837. front: {
  11838. height: math.unit(5 + 9 / 12, "feet"),
  11839. weight: math.unit(70, "lb"),
  11840. name: "Front",
  11841. image: {
  11842. source: "./media/characters/quincy/front.svg",
  11843. extra: 3041 / 2751
  11844. }
  11845. },
  11846. back: {
  11847. height: math.unit(5 + 9 / 12, "feet"),
  11848. weight: math.unit(70, "lb"),
  11849. name: "Back",
  11850. image: {
  11851. source: "./media/characters/quincy/back.svg",
  11852. extra: 3041 / 2751
  11853. }
  11854. },
  11855. flying: {
  11856. height: math.unit(5 + 4 / 12, "feet"),
  11857. weight: math.unit(70, "lb"),
  11858. name: "Flying",
  11859. image: {
  11860. source: "./media/characters/quincy/flying.svg",
  11861. extra: 1044 / 930
  11862. }
  11863. },
  11864. },
  11865. [
  11866. {
  11867. name: "Micro",
  11868. height: math.unit(3, "cm")
  11869. },
  11870. {
  11871. name: "Normal",
  11872. height: math.unit(5 + 9 / 12, "feet")
  11873. },
  11874. {
  11875. name: "Macro",
  11876. height: math.unit(200, "meters"),
  11877. default: true
  11878. },
  11879. {
  11880. name: "Megamacro",
  11881. height: math.unit(1000, "meters")
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11887. {
  11888. front: {
  11889. height: math.unit(3 + 11/12, "feet"),
  11890. weight: math.unit(50, "lb"),
  11891. name: "Front",
  11892. image: {
  11893. source: "./media/characters/vanrel/front.svg",
  11894. extra: 1104/949,
  11895. bottom: 52/1156
  11896. }
  11897. },
  11898. back: {
  11899. height: math.unit(3 + 11/12, "feet"),
  11900. weight: math.unit(50, "lb"),
  11901. name: "Back",
  11902. image: {
  11903. source: "./media/characters/vanrel/back.svg",
  11904. extra: 1119/976,
  11905. bottom: 37/1156
  11906. }
  11907. },
  11908. tome: {
  11909. height: math.unit(1.35, "feet"),
  11910. weight: math.unit(10, "lb"),
  11911. name: "Vanrel's Tome",
  11912. rename: true,
  11913. image: {
  11914. source: "./media/characters/vanrel/tome.svg"
  11915. }
  11916. },
  11917. beans: {
  11918. height: math.unit(0.89, "feet"),
  11919. name: "Beans",
  11920. image: {
  11921. source: "./media/characters/vanrel/beans.svg"
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(3 + 11/12, "feet"),
  11929. default: true
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(7 + 5 / 12, "feet"),
  11938. name: "Front",
  11939. image: {
  11940. source: "./media/characters/kuiper-vanrel/front.svg",
  11941. extra: 1219/1169,
  11942. bottom: 69/1288
  11943. }
  11944. },
  11945. back: {
  11946. height: math.unit(7 + 5 / 12, "feet"),
  11947. name: "Back",
  11948. image: {
  11949. source: "./media/characters/kuiper-vanrel/back.svg",
  11950. extra: 1236/1193,
  11951. bottom: 27/1263
  11952. }
  11953. },
  11954. foot: {
  11955. height: math.unit(0.55, "meters"),
  11956. name: "Foot",
  11957. image: {
  11958. source: "./media/characters/kuiper-vanrel/foot.svg",
  11959. }
  11960. },
  11961. battle: {
  11962. height: math.unit(6.824, "feet"),
  11963. name: "Battle",
  11964. image: {
  11965. source: "./media/characters/kuiper-vanrel/battle.svg",
  11966. extra: 1466 / 1327,
  11967. bottom: 29 / 1492.5
  11968. }
  11969. },
  11970. },
  11971. [
  11972. {
  11973. name: "Normal",
  11974. height: math.unit(7 + 5 / 12, "feet"),
  11975. default: true
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(8 + 5 / 12, "feet"),
  11984. name: "Front",
  11985. image: {
  11986. source: "./media/characters/keset-vanrel/front.svg",
  11987. extra: 1231/1148,
  11988. bottom: 82/1313
  11989. }
  11990. },
  11991. back: {
  11992. height: math.unit(8 + 5 / 12, "feet"),
  11993. name: "Back",
  11994. image: {
  11995. source: "./media/characters/keset-vanrel/back.svg",
  11996. extra: 1240/1174,
  11997. bottom: 33/1273
  11998. }
  11999. },
  12000. hand: {
  12001. height: math.unit(0.6, "meters"),
  12002. name: "Hand",
  12003. image: {
  12004. source: "./media/characters/keset-vanrel/hand.svg"
  12005. }
  12006. },
  12007. foot: {
  12008. height: math.unit(0.94978, "meters"),
  12009. name: "Foot",
  12010. image: {
  12011. source: "./media/characters/keset-vanrel/foot.svg"
  12012. }
  12013. },
  12014. battle: {
  12015. height: math.unit(7.408, "feet"),
  12016. name: "Battle",
  12017. image: {
  12018. source: "./media/characters/keset-vanrel/battle.svg",
  12019. extra: 1890 / 1386,
  12020. bottom: 73.28 / 1970
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(8 + 5 / 12, "feet"),
  12028. default: true
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12034. {
  12035. front: {
  12036. height: math.unit(6, "feet"),
  12037. weight: math.unit(150, "lb"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/neos/front.svg",
  12041. extra: 1696 / 992,
  12042. bottom: 0.14
  12043. }
  12044. },
  12045. },
  12046. [
  12047. {
  12048. name: "Normal",
  12049. height: math.unit(54, "cm"),
  12050. default: true
  12051. },
  12052. {
  12053. name: "Macro",
  12054. height: math.unit(100, "m")
  12055. },
  12056. {
  12057. name: "Megamacro",
  12058. height: math.unit(10, "km")
  12059. },
  12060. {
  12061. name: "Megamacro+",
  12062. height: math.unit(100, "km")
  12063. },
  12064. {
  12065. name: "Gigamacro",
  12066. height: math.unit(100, "Mm")
  12067. },
  12068. {
  12069. name: "Teramacro",
  12070. height: math.unit(100, "Gm")
  12071. },
  12072. {
  12073. name: "Examacro",
  12074. height: math.unit(100, "Em")
  12075. },
  12076. {
  12077. name: "Godly",
  12078. height: math.unit(10000, "Ym")
  12079. },
  12080. {
  12081. name: "Beyond Godly",
  12082. height: math.unit(25, "multiverses")
  12083. },
  12084. ]
  12085. ))
  12086. characterMakers.push(() => makeCharacter(
  12087. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12088. {
  12089. feminine: {
  12090. height: math.unit(5, "feet"),
  12091. weight: math.unit(100, "lb"),
  12092. name: "Feminine",
  12093. image: {
  12094. source: "./media/characters/sammy-mouse/feminine.svg",
  12095. extra: 2526 / 2425,
  12096. bottom: 0.123
  12097. }
  12098. },
  12099. masculine: {
  12100. height: math.unit(5, "feet"),
  12101. weight: math.unit(100, "lb"),
  12102. name: "Masculine",
  12103. image: {
  12104. source: "./media/characters/sammy-mouse/masculine.svg",
  12105. extra: 2526 / 2425,
  12106. bottom: 0.123
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Micro",
  12113. height: math.unit(5, "inches")
  12114. },
  12115. {
  12116. name: "Normal",
  12117. height: math.unit(5, "feet"),
  12118. default: true
  12119. },
  12120. {
  12121. name: "Macro",
  12122. height: math.unit(60, "feet")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(4, "feet"),
  12131. weight: math.unit(50, "lb"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/kole/front.svg",
  12135. extra: 1423 / 1303,
  12136. bottom: 0.025
  12137. }
  12138. },
  12139. back: {
  12140. height: math.unit(4, "feet"),
  12141. weight: math.unit(50, "lb"),
  12142. name: "Back",
  12143. image: {
  12144. source: "./media/characters/kole/back.svg",
  12145. extra: 1426 / 1280,
  12146. bottom: 0.02
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Normal",
  12153. height: math.unit(4, "feet"),
  12154. default: true
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(2.5, "feet"),
  12163. weight: math.unit(32, "lb"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/rufran/front.svg",
  12167. extra: 1313/885,
  12168. bottom: 94/1407
  12169. }
  12170. },
  12171. side: {
  12172. height: math.unit(2.5, "feet"),
  12173. weight: math.unit(32, "lb"),
  12174. name: "Side",
  12175. image: {
  12176. source: "./media/characters/rufran/side.svg",
  12177. extra: 1109/852,
  12178. bottom: 118/1227
  12179. }
  12180. },
  12181. back: {
  12182. height: math.unit(2.5, "feet"),
  12183. weight: math.unit(32, "lb"),
  12184. name: "Back",
  12185. image: {
  12186. source: "./media/characters/rufran/back.svg",
  12187. extra: 1280/878,
  12188. bottom: 131/1411
  12189. }
  12190. },
  12191. mouth: {
  12192. height: math.unit(1.13, "feet"),
  12193. name: "Mouth",
  12194. image: {
  12195. source: "./media/characters/rufran/mouth.svg"
  12196. }
  12197. },
  12198. foot: {
  12199. height: math.unit(1.33, "feet"),
  12200. name: "Foot",
  12201. image: {
  12202. source: "./media/characters/rufran/foot.svg"
  12203. }
  12204. },
  12205. koboldFront: {
  12206. height: math.unit(2 + 6 / 12, "feet"),
  12207. weight: math.unit(20, "lb"),
  12208. name: "Front (Kobold)",
  12209. image: {
  12210. source: "./media/characters/rufran/kobold-front.svg",
  12211. extra: 2041 / 1839,
  12212. bottom: 0.055
  12213. }
  12214. },
  12215. koboldBack: {
  12216. height: math.unit(2 + 6 / 12, "feet"),
  12217. weight: math.unit(20, "lb"),
  12218. name: "Back (Kobold)",
  12219. image: {
  12220. source: "./media/characters/rufran/kobold-back.svg",
  12221. extra: 2054 / 1839,
  12222. bottom: 0.01
  12223. }
  12224. },
  12225. koboldHand: {
  12226. height: math.unit(0.2166, "meters"),
  12227. name: "Hand (Kobold)",
  12228. image: {
  12229. source: "./media/characters/rufran/kobold-hand.svg"
  12230. }
  12231. },
  12232. koboldFoot: {
  12233. height: math.unit(0.185, "meters"),
  12234. name: "Foot (Kobold)",
  12235. image: {
  12236. source: "./media/characters/rufran/kobold-foot.svg"
  12237. }
  12238. },
  12239. },
  12240. [
  12241. {
  12242. name: "Micro",
  12243. height: math.unit(1, "inch")
  12244. },
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(2 + 6 / 12, "feet"),
  12248. default: true
  12249. },
  12250. {
  12251. name: "Big",
  12252. height: math.unit(60, "feet")
  12253. },
  12254. {
  12255. name: "Macro",
  12256. height: math.unit(325, "feet")
  12257. },
  12258. ]
  12259. ))
  12260. characterMakers.push(() => makeCharacter(
  12261. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12262. {
  12263. front: {
  12264. height: math.unit(0.3, "meters"),
  12265. weight: math.unit(3.5, "kg"),
  12266. name: "Front",
  12267. image: {
  12268. source: "./media/characters/chip/front.svg",
  12269. extra: 748 / 674
  12270. }
  12271. },
  12272. },
  12273. [
  12274. {
  12275. name: "Micro",
  12276. height: math.unit(1, "inch"),
  12277. default: true
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12283. {
  12284. side: {
  12285. height: math.unit(2.3, "meters"),
  12286. weight: math.unit(3500, "lb"),
  12287. name: "Side",
  12288. image: {
  12289. source: "./media/characters/torvid/side.svg",
  12290. extra: 1972 / 722,
  12291. bottom: 0.035
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Normal",
  12298. height: math.unit(2.3, "meters"),
  12299. default: true
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(2, "meters"),
  12308. weight: math.unit(150.5, "kg"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/susan/front.svg",
  12312. extra: 693 / 635,
  12313. bottom: 0.05
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Megamacro",
  12320. height: math.unit(505, "miles"),
  12321. default: true
  12322. },
  12323. ]
  12324. ))
  12325. characterMakers.push(() => makeCharacter(
  12326. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12327. {
  12328. front: {
  12329. height: math.unit(6, "feet"),
  12330. weight: math.unit(150, "lb"),
  12331. name: "Front",
  12332. image: {
  12333. source: "./media/characters/raindrops/front.svg",
  12334. extra: 2655 / 2461,
  12335. bottom: 49 / 2705
  12336. }
  12337. },
  12338. back: {
  12339. height: math.unit(6, "feet"),
  12340. weight: math.unit(150, "lb"),
  12341. name: "Back",
  12342. image: {
  12343. source: "./media/characters/raindrops/back.svg",
  12344. extra: 2574 / 2400,
  12345. bottom: 65 / 2634
  12346. }
  12347. },
  12348. },
  12349. [
  12350. {
  12351. name: "Micro",
  12352. height: math.unit(6, "inches")
  12353. },
  12354. {
  12355. name: "Normal",
  12356. height: math.unit(6 + 2 / 12, "feet")
  12357. },
  12358. {
  12359. name: "Macro",
  12360. height: math.unit(131, "feet"),
  12361. default: true
  12362. },
  12363. {
  12364. name: "Megamacro",
  12365. height: math.unit(15, "miles")
  12366. },
  12367. {
  12368. name: "Gigamacro",
  12369. height: math.unit(4000, "miles")
  12370. },
  12371. {
  12372. name: "Teramacro",
  12373. height: math.unit(315000, "miles")
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12379. {
  12380. front: {
  12381. height: math.unit(2.794, "meters"),
  12382. weight: math.unit(325, "kg"),
  12383. name: "Front",
  12384. image: {
  12385. source: "./media/characters/tezwa/front.svg",
  12386. extra: 2083 / 1906,
  12387. bottom: 0.031
  12388. }
  12389. },
  12390. foot: {
  12391. height: math.unit(0.687, "meters"),
  12392. name: "Foot",
  12393. image: {
  12394. source: "./media/characters/tezwa/foot.svg"
  12395. }
  12396. },
  12397. },
  12398. [
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(9 + 2 / 12, "feet"),
  12402. default: true
  12403. },
  12404. ]
  12405. ))
  12406. characterMakers.push(() => makeCharacter(
  12407. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12408. {
  12409. front: {
  12410. height: math.unit(58, "feet"),
  12411. weight: math.unit(89000, "lb"),
  12412. name: "Front",
  12413. image: {
  12414. source: "./media/characters/typhus/front.svg",
  12415. extra: 816 / 800,
  12416. bottom: 0.065
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Macro",
  12423. height: math.unit(58, "feet"),
  12424. default: true
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12430. {
  12431. front: {
  12432. height: math.unit(12, "feet"),
  12433. weight: math.unit(6, "tonnes"),
  12434. name: "Front",
  12435. image: {
  12436. source: "./media/characters/lyra-von-wulf/front.svg",
  12437. extra: 1,
  12438. bottom: 0.10
  12439. }
  12440. },
  12441. frontMecha: {
  12442. height: math.unit(12, "feet"),
  12443. weight: math.unit(12, "tonnes"),
  12444. name: "Front (Mecha)",
  12445. image: {
  12446. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12447. extra: 1,
  12448. bottom: 0.042
  12449. }
  12450. },
  12451. maw: {
  12452. height: math.unit(2.2, "feet"),
  12453. name: "Maw",
  12454. image: {
  12455. source: "./media/characters/lyra-von-wulf/maw.svg"
  12456. }
  12457. },
  12458. },
  12459. [
  12460. {
  12461. name: "Normal",
  12462. height: math.unit(12, "feet"),
  12463. default: true
  12464. },
  12465. {
  12466. name: "Classic",
  12467. height: math.unit(50, "feet")
  12468. },
  12469. {
  12470. name: "Macro",
  12471. height: math.unit(500, "feet")
  12472. },
  12473. {
  12474. name: "Megamacro",
  12475. height: math.unit(1, "mile")
  12476. },
  12477. {
  12478. name: "Gigamacro",
  12479. height: math.unit(400, "miles")
  12480. },
  12481. {
  12482. name: "Teramacro",
  12483. height: math.unit(22000, "miles")
  12484. },
  12485. {
  12486. name: "Solarmacro",
  12487. height: math.unit(8600000, "miles")
  12488. },
  12489. {
  12490. name: "Galactic",
  12491. height: math.unit(1057000, "lightyears")
  12492. },
  12493. ]
  12494. ))
  12495. characterMakers.push(() => makeCharacter(
  12496. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12497. {
  12498. front: {
  12499. height: math.unit(6 + 10 / 12, "feet"),
  12500. weight: math.unit(150, "lb"),
  12501. name: "Front",
  12502. image: {
  12503. source: "./media/characters/dixon/front.svg",
  12504. extra: 3361 / 3209,
  12505. bottom: 0.01
  12506. }
  12507. },
  12508. },
  12509. [
  12510. {
  12511. name: "Normal",
  12512. height: math.unit(6 + 10 / 12, "feet"),
  12513. default: true
  12514. },
  12515. {
  12516. name: "Big",
  12517. height: math.unit(12, "meters")
  12518. },
  12519. {
  12520. name: "Macro",
  12521. height: math.unit(500, "meters")
  12522. },
  12523. {
  12524. name: "Megamacro",
  12525. height: math.unit(2, "km")
  12526. },
  12527. ]
  12528. ))
  12529. characterMakers.push(() => makeCharacter(
  12530. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12531. {
  12532. front: {
  12533. height: math.unit(185, "cm"),
  12534. weight: math.unit(68, "kg"),
  12535. name: "Front",
  12536. image: {
  12537. source: "./media/characters/kauko/front.svg",
  12538. extra: 1455 / 1421,
  12539. bottom: 0.03
  12540. }
  12541. },
  12542. back: {
  12543. height: math.unit(185, "cm"),
  12544. weight: math.unit(68, "kg"),
  12545. name: "Back",
  12546. image: {
  12547. source: "./media/characters/kauko/back.svg",
  12548. extra: 1455 / 1421,
  12549. bottom: 0.004
  12550. }
  12551. },
  12552. },
  12553. [
  12554. {
  12555. name: "Normal",
  12556. height: math.unit(185, "cm"),
  12557. default: true
  12558. },
  12559. ]
  12560. ))
  12561. characterMakers.push(() => makeCharacter(
  12562. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12563. {
  12564. front: {
  12565. height: math.unit(6, "feet"),
  12566. weight: math.unit(150, "kg"),
  12567. name: "Front",
  12568. image: {
  12569. source: "./media/characters/varg/front.svg",
  12570. extra: 1108 / 1018,
  12571. bottom: 0.0375
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Normal",
  12578. height: math.unit(5, "meters")
  12579. },
  12580. {
  12581. name: "Macro",
  12582. height: math.unit(200, "meters")
  12583. },
  12584. {
  12585. name: "Megamacro",
  12586. height: math.unit(20, "kilometers")
  12587. },
  12588. {
  12589. name: "True Size",
  12590. height: math.unit(211, "km"),
  12591. default: true
  12592. },
  12593. {
  12594. name: "Gigamacro",
  12595. height: math.unit(1000, "km")
  12596. },
  12597. {
  12598. name: "Gigamacro+",
  12599. height: math.unit(8000, "km")
  12600. },
  12601. {
  12602. name: "Teramacro",
  12603. height: math.unit(1000000, "km")
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12609. {
  12610. front: {
  12611. height: math.unit(7 + 7 / 12, "feet"),
  12612. weight: math.unit(267, "lb"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/dayza/front.svg",
  12616. extra: 1262 / 1200,
  12617. bottom: 0.035
  12618. }
  12619. },
  12620. side: {
  12621. height: math.unit(7 + 7 / 12, "feet"),
  12622. weight: math.unit(267, "lb"),
  12623. name: "Side",
  12624. image: {
  12625. source: "./media/characters/dayza/side.svg",
  12626. extra: 1295 / 1245,
  12627. bottom: 0.05
  12628. }
  12629. },
  12630. back: {
  12631. height: math.unit(7 + 7 / 12, "feet"),
  12632. weight: math.unit(267, "lb"),
  12633. name: "Back",
  12634. image: {
  12635. source: "./media/characters/dayza/back.svg",
  12636. extra: 1241 / 1170
  12637. }
  12638. },
  12639. },
  12640. [
  12641. {
  12642. name: "Normal",
  12643. height: math.unit(7 + 7 / 12, "feet"),
  12644. default: true
  12645. },
  12646. {
  12647. name: "Macro",
  12648. height: math.unit(155, "feet")
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(6 + 5 / 12, "feet"),
  12657. weight: math.unit(160, "lb"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/xanthos/front.svg",
  12661. extra: 1,
  12662. bottom: 0.04
  12663. }
  12664. },
  12665. back: {
  12666. height: math.unit(6 + 5 / 12, "feet"),
  12667. weight: math.unit(160, "lb"),
  12668. name: "Back",
  12669. image: {
  12670. source: "./media/characters/xanthos/back.svg",
  12671. extra: 1,
  12672. bottom: 0.03
  12673. }
  12674. },
  12675. hand: {
  12676. height: math.unit(0.928, "feet"),
  12677. name: "Hand",
  12678. image: {
  12679. source: "./media/characters/xanthos/hand.svg"
  12680. }
  12681. },
  12682. foot: {
  12683. height: math.unit(1.286, "feet"),
  12684. name: "Foot",
  12685. image: {
  12686. source: "./media/characters/xanthos/foot.svg"
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(6 + 5 / 12, "feet"),
  12694. default: true
  12695. },
  12696. {
  12697. name: "Normal+",
  12698. height: math.unit(6, "meters")
  12699. },
  12700. {
  12701. name: "Macro",
  12702. height: math.unit(40, "feet")
  12703. },
  12704. {
  12705. name: "Macro+",
  12706. height: math.unit(200, "meters")
  12707. },
  12708. {
  12709. name: "Megamacro",
  12710. height: math.unit(20, "km")
  12711. },
  12712. {
  12713. name: "Megamacro+",
  12714. height: math.unit(100, "km")
  12715. },
  12716. ]
  12717. ))
  12718. characterMakers.push(() => makeCharacter(
  12719. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12720. {
  12721. front: {
  12722. height: math.unit(6 + 3 / 12, "feet"),
  12723. weight: math.unit(215, "lb"),
  12724. name: "Front",
  12725. image: {
  12726. source: "./media/characters/grynn/front.svg",
  12727. extra: 4627 / 4209,
  12728. bottom: 0.047
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Micro",
  12735. height: math.unit(6, "inches")
  12736. },
  12737. {
  12738. name: "Normal",
  12739. height: math.unit(6 + 3 / 12, "feet"),
  12740. default: true
  12741. },
  12742. {
  12743. name: "Big",
  12744. height: math.unit(104, "feet")
  12745. },
  12746. {
  12747. name: "Macro",
  12748. height: math.unit(944, "feet")
  12749. },
  12750. {
  12751. name: "Macro+",
  12752. height: math.unit(9480, "feet")
  12753. },
  12754. {
  12755. name: "Megamacro",
  12756. height: math.unit(78752, "feet")
  12757. },
  12758. {
  12759. name: "Megamacro+",
  12760. height: math.unit(630128, "feet")
  12761. },
  12762. {
  12763. name: "Megamacro++",
  12764. height: math.unit(3150695, "feet")
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12770. {
  12771. front: {
  12772. height: math.unit(7 + 5 / 12, "feet"),
  12773. weight: math.unit(450, "lb"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/mocha-aura/front.svg",
  12777. extra: 1907 / 1817,
  12778. bottom: 0.04
  12779. }
  12780. },
  12781. back: {
  12782. height: math.unit(7 + 5 / 12, "feet"),
  12783. weight: math.unit(450, "lb"),
  12784. name: "Back",
  12785. image: {
  12786. source: "./media/characters/mocha-aura/back.svg",
  12787. extra: 1900 / 1825,
  12788. bottom: 0.045
  12789. }
  12790. },
  12791. },
  12792. [
  12793. {
  12794. name: "Nano",
  12795. height: math.unit(1, "nm")
  12796. },
  12797. {
  12798. name: "Megamicro",
  12799. height: math.unit(1, "mm")
  12800. },
  12801. {
  12802. name: "Micro",
  12803. height: math.unit(3, "inches")
  12804. },
  12805. {
  12806. name: "Normal",
  12807. height: math.unit(7 + 5 / 12, "feet"),
  12808. default: true
  12809. },
  12810. {
  12811. name: "Macro",
  12812. height: math.unit(30, "feet")
  12813. },
  12814. {
  12815. name: "Megamacro",
  12816. height: math.unit(3500, "feet")
  12817. },
  12818. {
  12819. name: "Teramacro",
  12820. height: math.unit(500000, "miles")
  12821. },
  12822. {
  12823. name: "Petamacro",
  12824. height: math.unit(50000000000000000, "parsecs")
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12830. {
  12831. front: {
  12832. height: math.unit(6, "feet"),
  12833. weight: math.unit(150, "lb"),
  12834. name: "Front",
  12835. image: {
  12836. source: "./media/characters/ilisha-devya/front.svg",
  12837. extra: 1,
  12838. bottom: 0.175
  12839. }
  12840. },
  12841. back: {
  12842. height: math.unit(6, "feet"),
  12843. weight: math.unit(150, "lb"),
  12844. name: "Back",
  12845. image: {
  12846. source: "./media/characters/ilisha-devya/back.svg",
  12847. extra: 1,
  12848. bottom: 0.015
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Macro",
  12855. height: math.unit(500, "feet"),
  12856. default: true
  12857. },
  12858. {
  12859. name: "Megamacro",
  12860. height: math.unit(10, "miles")
  12861. },
  12862. {
  12863. name: "Gigamacro",
  12864. height: math.unit(100000, "miles")
  12865. },
  12866. {
  12867. name: "Examacro",
  12868. height: math.unit(1e9, "lightyears")
  12869. },
  12870. {
  12871. name: "Omniversal",
  12872. height: math.unit(1e33, "lightyears")
  12873. },
  12874. {
  12875. name: "Beyond Infinite",
  12876. height: math.unit(1e100, "lightyears")
  12877. },
  12878. ]
  12879. ))
  12880. characterMakers.push(() => makeCharacter(
  12881. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12882. {
  12883. Side: {
  12884. height: math.unit(6, "feet"),
  12885. weight: math.unit(150, "lb"),
  12886. name: "Side",
  12887. image: {
  12888. source: "./media/characters/mira/side.svg",
  12889. extra: 900 / 799,
  12890. bottom: 0.02
  12891. }
  12892. },
  12893. },
  12894. [
  12895. {
  12896. name: "Human Size",
  12897. height: math.unit(6, "feet")
  12898. },
  12899. {
  12900. name: "Macro",
  12901. height: math.unit(100, "feet"),
  12902. default: true
  12903. },
  12904. {
  12905. name: "Megamacro",
  12906. height: math.unit(10, "miles")
  12907. },
  12908. {
  12909. name: "Gigamacro",
  12910. height: math.unit(25000, "miles")
  12911. },
  12912. {
  12913. name: "Teramacro",
  12914. height: math.unit(300, "AU")
  12915. },
  12916. {
  12917. name: "Full Size",
  12918. height: math.unit(4.5e10, "lightyears")
  12919. },
  12920. ]
  12921. ))
  12922. characterMakers.push(() => makeCharacter(
  12923. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12924. {
  12925. front: {
  12926. height: math.unit(6, "feet"),
  12927. weight: math.unit(150, "lb"),
  12928. name: "Front",
  12929. image: {
  12930. source: "./media/characters/holly/front.svg",
  12931. extra: 639 / 606
  12932. }
  12933. },
  12934. back: {
  12935. height: math.unit(6, "feet"),
  12936. weight: math.unit(150, "lb"),
  12937. name: "Back",
  12938. image: {
  12939. source: "./media/characters/holly/back.svg",
  12940. extra: 623 / 598
  12941. }
  12942. },
  12943. frontWorking: {
  12944. height: math.unit(6, "feet"),
  12945. weight: math.unit(150, "lb"),
  12946. name: "Front (Working)",
  12947. image: {
  12948. source: "./media/characters/holly/front-working.svg",
  12949. extra: 607 / 577,
  12950. bottom: 0.048
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Normal",
  12957. height: math.unit(12 + 3 / 12, "feet"),
  12958. default: true
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12964. {
  12965. front: {
  12966. height: math.unit(6, "feet"),
  12967. weight: math.unit(150, "lb"),
  12968. name: "Front",
  12969. image: {
  12970. source: "./media/characters/porter/front.svg",
  12971. extra: 1,
  12972. bottom: 0.01
  12973. }
  12974. },
  12975. frontRobes: {
  12976. height: math.unit(6, "feet"),
  12977. weight: math.unit(150, "lb"),
  12978. name: "Front (Robes)",
  12979. image: {
  12980. source: "./media/characters/porter/front-robes.svg",
  12981. extra: 1.01,
  12982. bottom: 0.01
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(11 + 9 / 12, "feet"),
  12990. default: true
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12996. {
  12997. legendary: {
  12998. height: math.unit(6, "feet"),
  12999. weight: math.unit(150, "lb"),
  13000. name: "Legendary",
  13001. image: {
  13002. source: "./media/characters/lucy/legendary.svg",
  13003. extra: 1355 / 1100,
  13004. bottom: 0.045
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Legendary",
  13011. height: math.unit(86882 * 2, "miles"),
  13012. default: true
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13018. {
  13019. front: {
  13020. height: math.unit(6, "feet"),
  13021. weight: math.unit(150, "lb"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/drusilla/front.svg",
  13025. extra: 678 / 635,
  13026. bottom: 0.03
  13027. }
  13028. },
  13029. back: {
  13030. height: math.unit(6, "feet"),
  13031. weight: math.unit(150, "lb"),
  13032. name: "Back",
  13033. image: {
  13034. source: "./media/characters/drusilla/back.svg",
  13035. extra: 678 / 635,
  13036. bottom: 0.005
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Macro",
  13043. height: math.unit(100, "feet")
  13044. },
  13045. {
  13046. name: "Canon Height",
  13047. height: math.unit(2000, "feet"),
  13048. default: true
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13054. {
  13055. front: {
  13056. height: math.unit(6, "feet"),
  13057. weight: math.unit(180, "lb"),
  13058. name: "Front",
  13059. image: {
  13060. source: "./media/characters/renard-thatch/front.svg",
  13061. extra: 2411 / 2275,
  13062. bottom: 0.01
  13063. }
  13064. },
  13065. frontPosing: {
  13066. height: math.unit(6, "feet"),
  13067. weight: math.unit(180, "lb"),
  13068. name: "Front (Posing)",
  13069. image: {
  13070. source: "./media/characters/renard-thatch/front-posing.svg",
  13071. extra: 2381 / 2261,
  13072. bottom: 0.01
  13073. }
  13074. },
  13075. back: {
  13076. height: math.unit(6, "feet"),
  13077. weight: math.unit(180, "lb"),
  13078. name: "Back",
  13079. image: {
  13080. source: "./media/characters/renard-thatch/back.svg",
  13081. extra: 2428 / 2288
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Micro",
  13088. height: math.unit(3, "inches")
  13089. },
  13090. {
  13091. name: "Default",
  13092. height: math.unit(6, "feet"),
  13093. default: true
  13094. },
  13095. {
  13096. name: "Macro",
  13097. height: math.unit(75, "feet")
  13098. },
  13099. ]
  13100. ))
  13101. characterMakers.push(() => makeCharacter(
  13102. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13103. {
  13104. front: {
  13105. height: math.unit(1450, "feet"),
  13106. weight: math.unit(1.21e6, "tons"),
  13107. name: "Front",
  13108. image: {
  13109. source: "./media/characters/sekvra/front.svg",
  13110. extra: 1,
  13111. bottom: 0.03
  13112. }
  13113. },
  13114. frontClothed: {
  13115. height: math.unit(1450, "feet"),
  13116. weight: math.unit(1.21e6, "tons"),
  13117. name: "Front (Clothed)",
  13118. image: {
  13119. source: "./media/characters/sekvra/front-clothed.svg",
  13120. extra: 1,
  13121. bottom: 0.03
  13122. }
  13123. },
  13124. side: {
  13125. height: math.unit(1450, "feet"),
  13126. weight: math.unit(1.21e6, "tons"),
  13127. name: "Side",
  13128. image: {
  13129. source: "./media/characters/sekvra/side.svg",
  13130. extra: 1,
  13131. bottom: 0.025
  13132. }
  13133. },
  13134. back: {
  13135. height: math.unit(1450, "feet"),
  13136. weight: math.unit(1.21e6, "tons"),
  13137. name: "Back",
  13138. image: {
  13139. source: "./media/characters/sekvra/back.svg",
  13140. extra: 1,
  13141. bottom: 0.005
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Macro",
  13148. height: math.unit(1450, "feet"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Megamacro",
  13153. height: math.unit(15000, "feet")
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/carmine/front.svg",
  13166. extra: 1,
  13167. bottom: 0.035
  13168. }
  13169. },
  13170. frontArmor: {
  13171. height: math.unit(6, "feet"),
  13172. weight: math.unit(150, "lb"),
  13173. name: "Front (Armor)",
  13174. image: {
  13175. source: "./media/characters/carmine/front-armor.svg",
  13176. extra: 1,
  13177. bottom: 0.035
  13178. }
  13179. },
  13180. },
  13181. [
  13182. {
  13183. name: "Large",
  13184. height: math.unit(1, "mile")
  13185. },
  13186. {
  13187. name: "Huge",
  13188. height: math.unit(40, "miles"),
  13189. default: true
  13190. },
  13191. {
  13192. name: "Colossal",
  13193. height: math.unit(2500, "miles")
  13194. },
  13195. ]
  13196. ))
  13197. characterMakers.push(() => makeCharacter(
  13198. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13199. {
  13200. front: {
  13201. height: math.unit(6, "feet"),
  13202. weight: math.unit(150, "lb"),
  13203. name: "Front",
  13204. image: {
  13205. source: "./media/characters/elyssia/front.svg",
  13206. extra: 2201 / 2035,
  13207. bottom: 0.05
  13208. }
  13209. },
  13210. frontClothed: {
  13211. height: math.unit(6, "feet"),
  13212. weight: math.unit(150, "lb"),
  13213. name: "Front (Clothed)",
  13214. image: {
  13215. source: "./media/characters/elyssia/front-clothed.svg",
  13216. extra: 2201 / 2035,
  13217. bottom: 0.05
  13218. }
  13219. },
  13220. back: {
  13221. height: math.unit(6, "feet"),
  13222. weight: math.unit(150, "lb"),
  13223. name: "Back",
  13224. image: {
  13225. source: "./media/characters/elyssia/back.svg",
  13226. extra: 2201 / 2035,
  13227. bottom: 0.013
  13228. }
  13229. },
  13230. },
  13231. [
  13232. {
  13233. name: "Smaller",
  13234. height: math.unit(150, "feet")
  13235. },
  13236. {
  13237. name: "Standard",
  13238. height: math.unit(1400, "feet"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Distracted",
  13243. height: math.unit(15000, "feet")
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(7 + 4 / 12, "feet"),
  13252. weight: math.unit(500, "lb"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/geno-maxwell/front.svg",
  13256. extra: 2207 / 2040,
  13257. bottom: 0.015
  13258. }
  13259. },
  13260. },
  13261. [
  13262. {
  13263. name: "Micro",
  13264. height: math.unit(3, "inches")
  13265. },
  13266. {
  13267. name: "Normal",
  13268. height: math.unit(7 + 4 / 12, "feet"),
  13269. default: true
  13270. },
  13271. {
  13272. name: "Macro",
  13273. height: math.unit(220, "feet")
  13274. },
  13275. {
  13276. name: "Megamacro",
  13277. height: math.unit(11, "miles")
  13278. },
  13279. ]
  13280. ))
  13281. characterMakers.push(() => makeCharacter(
  13282. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13283. {
  13284. front: {
  13285. height: math.unit(7 + 4 / 12, "feet"),
  13286. weight: math.unit(500, "lb"),
  13287. name: "Front",
  13288. image: {
  13289. source: "./media/characters/regena-maxwell/front.svg",
  13290. extra: 3115 / 2770,
  13291. bottom: 0.02
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Normal",
  13298. height: math.unit(7 + 4 / 12, "feet"),
  13299. default: true
  13300. },
  13301. {
  13302. name: "Macro",
  13303. height: math.unit(220, "feet")
  13304. },
  13305. {
  13306. name: "Megamacro",
  13307. height: math.unit(11, "miles")
  13308. },
  13309. ]
  13310. ))
  13311. characterMakers.push(() => makeCharacter(
  13312. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13313. {
  13314. front: {
  13315. height: math.unit(6, "feet"),
  13316. weight: math.unit(150, "lb"),
  13317. name: "Front",
  13318. image: {
  13319. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13320. extra: 860 / 690,
  13321. bottom: 0.03
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Normal",
  13328. height: math.unit(1.7, "meters"),
  13329. default: true
  13330. },
  13331. ]
  13332. ))
  13333. characterMakers.push(() => makeCharacter(
  13334. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13335. {
  13336. front: {
  13337. height: math.unit(6, "feet"),
  13338. weight: math.unit(150, "lb"),
  13339. name: "Front",
  13340. image: {
  13341. source: "./media/characters/quilly/front.svg",
  13342. extra: 890 / 776
  13343. }
  13344. },
  13345. },
  13346. [
  13347. {
  13348. name: "Gigamacro",
  13349. height: math.unit(404090, "miles"),
  13350. default: true
  13351. },
  13352. ]
  13353. ))
  13354. characterMakers.push(() => makeCharacter(
  13355. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13356. {
  13357. front: {
  13358. height: math.unit(7 + 8 / 12, "feet"),
  13359. weight: math.unit(350, "lb"),
  13360. name: "Front",
  13361. image: {
  13362. source: "./media/characters/tempest/front.svg",
  13363. extra: 1175 / 1086,
  13364. bottom: 0.02
  13365. }
  13366. },
  13367. },
  13368. [
  13369. {
  13370. name: "Normal",
  13371. height: math.unit(7 + 8 / 12, "feet"),
  13372. default: true
  13373. },
  13374. ]
  13375. ))
  13376. characterMakers.push(() => makeCharacter(
  13377. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13378. {
  13379. side: {
  13380. height: math.unit(4 + 5 / 12, "feet"),
  13381. weight: math.unit(80, "lb"),
  13382. name: "Side",
  13383. image: {
  13384. source: "./media/characters/rodger/side.svg",
  13385. extra: 1235 / 1118
  13386. }
  13387. },
  13388. },
  13389. [
  13390. {
  13391. name: "Micro",
  13392. height: math.unit(1, "inch")
  13393. },
  13394. {
  13395. name: "Normal",
  13396. height: math.unit(4 + 5 / 12, "feet"),
  13397. default: true
  13398. },
  13399. {
  13400. name: "Macro",
  13401. height: math.unit(120, "feet")
  13402. },
  13403. ]
  13404. ))
  13405. characterMakers.push(() => makeCharacter(
  13406. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13407. {
  13408. front: {
  13409. height: math.unit(6, "feet"),
  13410. weight: math.unit(150, "lb"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/danyel/front.svg",
  13414. extra: 1185 / 1123,
  13415. bottom: 0.05
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Shrunken",
  13422. height: math.unit(0.5, "mm")
  13423. },
  13424. {
  13425. name: "Micro",
  13426. height: math.unit(1, "mm"),
  13427. default: true
  13428. },
  13429. {
  13430. name: "Upsized",
  13431. height: math.unit(5 + 5 / 12, "feet")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(5 + 6 / 12, "feet"),
  13440. weight: math.unit(200, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/vivian-bijoux/front.svg",
  13444. extra: 1,
  13445. bottom: 0.072
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(5 + 6 / 12, "feet"),
  13453. default: true
  13454. },
  13455. {
  13456. name: "Bad Dream",
  13457. height: math.unit(500, "feet")
  13458. },
  13459. {
  13460. name: "Nightmare",
  13461. height: math.unit(500, "miles")
  13462. },
  13463. ]
  13464. ))
  13465. characterMakers.push(() => makeCharacter(
  13466. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13467. {
  13468. front: {
  13469. height: math.unit(6 + 1 / 12, "feet"),
  13470. weight: math.unit(260, "lb"),
  13471. name: "Front",
  13472. image: {
  13473. source: "./media/characters/zeta/front.svg",
  13474. extra: 1968 / 1889,
  13475. bottom: 0.06
  13476. }
  13477. },
  13478. back: {
  13479. height: math.unit(6 + 1 / 12, "feet"),
  13480. weight: math.unit(260, "lb"),
  13481. name: "Back",
  13482. image: {
  13483. source: "./media/characters/zeta/back.svg",
  13484. extra: 1944 / 1858,
  13485. bottom: 0.03
  13486. }
  13487. },
  13488. hand: {
  13489. height: math.unit(1.112, "feet"),
  13490. name: "Hand",
  13491. image: {
  13492. source: "./media/characters/zeta/hand.svg"
  13493. }
  13494. },
  13495. foot: {
  13496. height: math.unit(1.48, "feet"),
  13497. name: "Foot",
  13498. image: {
  13499. source: "./media/characters/zeta/foot.svg"
  13500. }
  13501. },
  13502. },
  13503. [
  13504. {
  13505. name: "Micro",
  13506. height: math.unit(6, "inches")
  13507. },
  13508. {
  13509. name: "Normal",
  13510. height: math.unit(6 + 1 / 12, "feet"),
  13511. default: true
  13512. },
  13513. {
  13514. name: "Macro",
  13515. height: math.unit(20, "feet")
  13516. },
  13517. ]
  13518. ))
  13519. characterMakers.push(() => makeCharacter(
  13520. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13521. {
  13522. front: {
  13523. height: math.unit(6, "feet"),
  13524. weight: math.unit(150, "lb"),
  13525. name: "Front",
  13526. image: {
  13527. source: "./media/characters/jamie-larsen/front.svg",
  13528. extra: 962 / 933,
  13529. bottom: 0.02
  13530. }
  13531. },
  13532. back: {
  13533. height: math.unit(6, "feet"),
  13534. weight: math.unit(150, "lb"),
  13535. name: "Back",
  13536. image: {
  13537. source: "./media/characters/jamie-larsen/back.svg",
  13538. extra: 997 / 946
  13539. }
  13540. },
  13541. },
  13542. [
  13543. {
  13544. name: "Macro",
  13545. height: math.unit(28 + 7 / 12, "feet"),
  13546. default: true
  13547. },
  13548. {
  13549. name: "Macro+",
  13550. height: math.unit(180, "feet")
  13551. },
  13552. {
  13553. name: "Megamacro",
  13554. height: math.unit(10, "miles")
  13555. },
  13556. {
  13557. name: "Gigamacro",
  13558. height: math.unit(200000, "miles")
  13559. },
  13560. ]
  13561. ))
  13562. characterMakers.push(() => makeCharacter(
  13563. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13564. {
  13565. front: {
  13566. height: math.unit(6, "feet"),
  13567. weight: math.unit(120, "lb"),
  13568. name: "Front",
  13569. image: {
  13570. source: "./media/characters/vance/front.svg",
  13571. extra: 1980 / 1890,
  13572. bottom: 0.09
  13573. }
  13574. },
  13575. back: {
  13576. height: math.unit(6, "feet"),
  13577. weight: math.unit(120, "lb"),
  13578. name: "Back",
  13579. image: {
  13580. source: "./media/characters/vance/back.svg",
  13581. extra: 2081 / 1994,
  13582. bottom: 0.014
  13583. }
  13584. },
  13585. hand: {
  13586. height: math.unit(0.88, "feet"),
  13587. name: "Hand",
  13588. image: {
  13589. source: "./media/characters/vance/hand.svg"
  13590. }
  13591. },
  13592. foot: {
  13593. height: math.unit(0.64, "feet"),
  13594. name: "Foot",
  13595. image: {
  13596. source: "./media/characters/vance/foot.svg"
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Small",
  13603. height: math.unit(90, "feet"),
  13604. default: true
  13605. },
  13606. {
  13607. name: "Macro",
  13608. height: math.unit(100, "meters")
  13609. },
  13610. {
  13611. name: "Megamacro",
  13612. height: math.unit(15, "miles")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(180, "lb"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/xochitl/front.svg",
  13625. extra: 2297 / 2261,
  13626. bottom: 0.065
  13627. }
  13628. },
  13629. back: {
  13630. height: math.unit(6, "feet"),
  13631. weight: math.unit(180, "lb"),
  13632. name: "Back",
  13633. image: {
  13634. source: "./media/characters/xochitl/back.svg",
  13635. extra: 2386 / 2354,
  13636. bottom: 0.01
  13637. }
  13638. },
  13639. foot: {
  13640. height: math.unit(6 / 5 * 1.15, "feet"),
  13641. weight: math.unit(150, "lb"),
  13642. name: "Foot",
  13643. image: {
  13644. source: "./media/characters/xochitl/foot.svg"
  13645. }
  13646. },
  13647. },
  13648. [
  13649. {
  13650. name: "Macro",
  13651. height: math.unit(80, "feet")
  13652. },
  13653. {
  13654. name: "Macro+",
  13655. height: math.unit(400, "feet"),
  13656. default: true
  13657. },
  13658. {
  13659. name: "Gigamacro",
  13660. height: math.unit(80000, "miles")
  13661. },
  13662. {
  13663. name: "Gigamacro+",
  13664. height: math.unit(400000, "miles")
  13665. },
  13666. {
  13667. name: "Teramacro",
  13668. height: math.unit(300, "AU")
  13669. },
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13674. {
  13675. front: {
  13676. height: math.unit(6, "feet"),
  13677. weight: math.unit(150, "lb"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/vincent/front.svg",
  13681. extra: 1130 / 1080,
  13682. bottom: 0.055
  13683. }
  13684. },
  13685. beak: {
  13686. height: math.unit(6 * 0.1, "feet"),
  13687. name: "Beak",
  13688. image: {
  13689. source: "./media/characters/vincent/beak.svg"
  13690. }
  13691. },
  13692. hand: {
  13693. height: math.unit(6 * 0.85, "feet"),
  13694. weight: math.unit(150, "lb"),
  13695. name: "Hand",
  13696. image: {
  13697. source: "./media/characters/vincent/hand.svg"
  13698. }
  13699. },
  13700. foot: {
  13701. height: math.unit(6 * 0.19, "feet"),
  13702. weight: math.unit(150, "lb"),
  13703. name: "Foot",
  13704. image: {
  13705. source: "./media/characters/vincent/foot.svg"
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Base",
  13712. height: math.unit(6 + 5 / 12, "feet"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Macro",
  13717. height: math.unit(300, "feet")
  13718. },
  13719. {
  13720. name: "Megamacro",
  13721. height: math.unit(2, "miles")
  13722. },
  13723. {
  13724. name: "Gigamacro",
  13725. height: math.unit(1000, "miles")
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13731. {
  13732. front: {
  13733. height: math.unit(2, "meters"),
  13734. weight: math.unit(500, "kg"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/coatl/front.svg",
  13738. extra: 3948 / 3500,
  13739. bottom: 0.082
  13740. }
  13741. },
  13742. },
  13743. [
  13744. {
  13745. name: "Normal",
  13746. height: math.unit(4, "meters")
  13747. },
  13748. {
  13749. name: "Macro",
  13750. height: math.unit(100, "meters"),
  13751. default: true
  13752. },
  13753. {
  13754. name: "Macro+",
  13755. height: math.unit(300, "meters")
  13756. },
  13757. {
  13758. name: "Megamacro",
  13759. height: math.unit(3, "gigameters")
  13760. },
  13761. {
  13762. name: "Megamacro+",
  13763. height: math.unit(300, "terameters")
  13764. },
  13765. {
  13766. name: "Megamacro++",
  13767. height: math.unit(3, "lightyears")
  13768. },
  13769. ]
  13770. ))
  13771. characterMakers.push(() => makeCharacter(
  13772. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13773. {
  13774. front: {
  13775. height: math.unit(6, "feet"),
  13776. weight: math.unit(50, "kg"),
  13777. name: "front",
  13778. image: {
  13779. source: "./media/characters/shiroryu/front.svg",
  13780. extra: 1990 / 1935
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Mortal Mingling",
  13787. height: math.unit(3, "meters")
  13788. },
  13789. {
  13790. name: "Kaiju-ish",
  13791. height: math.unit(250, "meters")
  13792. },
  13793. {
  13794. name: "Somewhat Godly",
  13795. height: math.unit(400, "km"),
  13796. default: true
  13797. },
  13798. {
  13799. name: "Planetary",
  13800. height: math.unit(300, "megameters")
  13801. },
  13802. {
  13803. name: "Galaxy-dwarfing",
  13804. height: math.unit(450, "kiloparsecs")
  13805. },
  13806. {
  13807. name: "Universe Eater",
  13808. height: math.unit(150, "gigaparsecs")
  13809. },
  13810. {
  13811. name: "Almost Immeasurable",
  13812. height: math.unit(1.3e266, "yottaparsecs")
  13813. },
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13818. {
  13819. front: {
  13820. height: math.unit(6, "feet"),
  13821. weight: math.unit(150, "lb"),
  13822. name: "Front",
  13823. image: {
  13824. source: "./media/characters/umeko/front.svg",
  13825. extra: 1,
  13826. bottom: 0.019
  13827. }
  13828. },
  13829. frontArmored: {
  13830. height: math.unit(6, "feet"),
  13831. weight: math.unit(150, "lb"),
  13832. name: "Front (Armored)",
  13833. image: {
  13834. source: "./media/characters/umeko/front-armored.svg",
  13835. extra: 1,
  13836. bottom: 0.021
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Macro",
  13843. height: math.unit(220, "feet"),
  13844. default: true
  13845. },
  13846. {
  13847. name: "Guardian Dragon",
  13848. height: math.unit(50, "miles")
  13849. },
  13850. {
  13851. name: "Cosmic",
  13852. height: math.unit(800000, "miles")
  13853. },
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13858. {
  13859. front: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Front",
  13863. image: {
  13864. source: "./media/characters/cassidy/front.svg",
  13865. extra: 1,
  13866. bottom: 0.043
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Canon Height",
  13873. height: math.unit(120, "feet"),
  13874. default: true
  13875. },
  13876. {
  13877. name: "Macro+",
  13878. height: math.unit(400, "feet")
  13879. },
  13880. {
  13881. name: "Macro++",
  13882. height: math.unit(4000, "feet")
  13883. },
  13884. {
  13885. name: "Megamacro",
  13886. height: math.unit(3, "miles")
  13887. },
  13888. ]
  13889. ))
  13890. characterMakers.push(() => makeCharacter(
  13891. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13892. {
  13893. front: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(150, "lb"),
  13896. name: "Front",
  13897. image: {
  13898. source: "./media/characters/isaac/front.svg",
  13899. extra: 896 / 815,
  13900. bottom: 0.11
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Human Size",
  13907. height: math.unit(8, "feet"),
  13908. default: true
  13909. },
  13910. {
  13911. name: "Macro",
  13912. height: math.unit(400, "feet")
  13913. },
  13914. {
  13915. name: "Megamacro",
  13916. height: math.unit(50, "miles")
  13917. },
  13918. {
  13919. name: "Canon Height",
  13920. height: math.unit(200, "AU")
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(72, "kg"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/sleekit/front.svg",
  13933. extra: 4693 / 4487,
  13934. bottom: 0.012
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Minimum Height",
  13941. height: math.unit(10, "meters")
  13942. },
  13943. {
  13944. name: "Smaller",
  13945. height: math.unit(25, "meters")
  13946. },
  13947. {
  13948. name: "Larger",
  13949. height: math.unit(38, "meters"),
  13950. default: true
  13951. },
  13952. {
  13953. name: "Maximum height",
  13954. height: math.unit(100, "meters")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(6, "feet"),
  13963. weight: math.unit(150, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/nillia/front.svg",
  13967. extra: 2195 / 2037,
  13968. bottom: 0.005
  13969. }
  13970. },
  13971. back: {
  13972. height: math.unit(6, "feet"),
  13973. weight: math.unit(150, "lb"),
  13974. name: "Back",
  13975. image: {
  13976. source: "./media/characters/nillia/back.svg",
  13977. extra: 2195 / 2037,
  13978. bottom: 0.005
  13979. }
  13980. },
  13981. },
  13982. [
  13983. {
  13984. name: "Canon Height",
  13985. height: math.unit(489, "feet"),
  13986. default: true
  13987. }
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(6, "feet"),
  13995. weight: math.unit(150, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/mesmyriza/front.svg",
  13999. extra: 2067 / 1784,
  14000. bottom: 0.035
  14001. }
  14002. },
  14003. foot: {
  14004. height: math.unit(6 / (250 / 35), "feet"),
  14005. name: "Foot",
  14006. image: {
  14007. source: "./media/characters/mesmyriza/foot.svg"
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Macro",
  14014. height: math.unit(457, "meters"),
  14015. default: true
  14016. },
  14017. {
  14018. name: "Megamacro",
  14019. height: math.unit(8, "megameters")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(6, "feet"),
  14028. weight: math.unit(250, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/saudade/front.svg",
  14032. extra: 1172 / 1139,
  14033. bottom: 0.035
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Micro",
  14040. height: math.unit(3, "inches")
  14041. },
  14042. {
  14043. name: "Normal",
  14044. height: math.unit(6, "feet"),
  14045. default: true
  14046. },
  14047. {
  14048. name: "Macro",
  14049. height: math.unit(50, "feet")
  14050. },
  14051. {
  14052. name: "Megamacro",
  14053. height: math.unit(2800, "feet")
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14059. {
  14060. front: {
  14061. height: math.unit(5 + 4 / 12, "feet"),
  14062. weight: math.unit(100, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/keireer/front.svg",
  14066. extra: 716 / 666,
  14067. bottom: 0.05
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Normal",
  14074. height: math.unit(5 + 4 / 12, "feet"),
  14075. default: true
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(6, "feet"),
  14084. weight: math.unit(90, "kg"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/mirja/front.svg",
  14088. extra: 1789 / 1683,
  14089. bottom: 0.05
  14090. }
  14091. },
  14092. frontDressed: {
  14093. height: math.unit(6, "feet"),
  14094. weight: math.unit(90, "lb"),
  14095. name: "Front (Dressed)",
  14096. image: {
  14097. source: "./media/characters/mirja/front-dressed.svg",
  14098. extra: 1789 / 1683,
  14099. bottom: 0.05
  14100. }
  14101. },
  14102. back: {
  14103. height: math.unit(6, "feet"),
  14104. weight: math.unit(90, "lb"),
  14105. name: "Back",
  14106. image: {
  14107. source: "./media/characters/mirja/back.svg",
  14108. extra: 953 / 917,
  14109. bottom: 0.017
  14110. }
  14111. },
  14112. },
  14113. [
  14114. {
  14115. name: "\"Incognito\"",
  14116. height: math.unit(3, "meters")
  14117. },
  14118. {
  14119. name: "Strolling Size",
  14120. height: math.unit(15, "km")
  14121. },
  14122. {
  14123. name: "Larger Strolling Size",
  14124. height: math.unit(400, "km")
  14125. },
  14126. {
  14127. name: "Preferred Size",
  14128. height: math.unit(5000, "km")
  14129. },
  14130. {
  14131. name: "True Size",
  14132. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14133. default: true
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(15, "feet"),
  14142. weight: math.unit(880, "kg"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/nightraver/front.svg",
  14146. extra: 2444 / 2160,
  14147. bottom: 0.027
  14148. }
  14149. },
  14150. back: {
  14151. height: math.unit(15, "feet"),
  14152. weight: math.unit(880, "kg"),
  14153. name: "Back",
  14154. image: {
  14155. source: "./media/characters/nightraver/back.svg",
  14156. extra: 2309 / 2180,
  14157. bottom: 0.005
  14158. }
  14159. },
  14160. sole: {
  14161. height: math.unit(2.878, "feet"),
  14162. name: "Sole",
  14163. image: {
  14164. source: "./media/characters/nightraver/sole.svg"
  14165. }
  14166. },
  14167. foot: {
  14168. height: math.unit(2.285, "feet"),
  14169. name: "Foot",
  14170. image: {
  14171. source: "./media/characters/nightraver/foot.svg"
  14172. }
  14173. },
  14174. maw: {
  14175. height: math.unit(2.67, "feet"),
  14176. name: "Maw",
  14177. image: {
  14178. source: "./media/characters/nightraver/maw.svg"
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Micro",
  14185. height: math.unit(1, "cm")
  14186. },
  14187. {
  14188. name: "Normal",
  14189. height: math.unit(15, "feet"),
  14190. default: true
  14191. },
  14192. {
  14193. name: "Macro",
  14194. height: math.unit(300, "feet")
  14195. },
  14196. {
  14197. name: "Megamacro",
  14198. height: math.unit(300, "miles")
  14199. },
  14200. {
  14201. name: "Gigamacro",
  14202. height: math.unit(10000, "miles")
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14208. {
  14209. side: {
  14210. height: math.unit(2, "inches"),
  14211. weight: math.unit(5, "grams"),
  14212. name: "Side",
  14213. image: {
  14214. source: "./media/characters/arc/side.svg"
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Micro",
  14221. height: math.unit(2, "inches"),
  14222. default: true
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14228. {
  14229. front: {
  14230. height: math.unit(1.1938, "meters"),
  14231. weight: math.unit(54, "kg"),
  14232. name: "Front",
  14233. image: {
  14234. source: "./media/characters/nebula-shahar/front.svg",
  14235. extra: 1642 / 1436,
  14236. bottom: 0.06
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Megamicro",
  14243. height: math.unit(0.3, "mm")
  14244. },
  14245. {
  14246. name: "Micro",
  14247. height: math.unit(3, "cm")
  14248. },
  14249. {
  14250. name: "Normal",
  14251. height: math.unit(138, "cm"),
  14252. default: true
  14253. },
  14254. {
  14255. name: "Macro",
  14256. height: math.unit(30, "m")
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14262. {
  14263. front: {
  14264. height: math.unit(5.24, "feet"),
  14265. weight: math.unit(150, "lb"),
  14266. name: "Front",
  14267. image: {
  14268. source: "./media/characters/shayla/front.svg",
  14269. extra: 1512 / 1414,
  14270. bottom: 0.01
  14271. }
  14272. },
  14273. back: {
  14274. height: math.unit(5.24, "feet"),
  14275. weight: math.unit(150, "lb"),
  14276. name: "Back",
  14277. image: {
  14278. source: "./media/characters/shayla/back.svg",
  14279. extra: 1512 / 1414
  14280. }
  14281. },
  14282. hand: {
  14283. height: math.unit(0.7781496062992126, "feet"),
  14284. name: "Hand",
  14285. image: {
  14286. source: "./media/characters/shayla/hand.svg"
  14287. }
  14288. },
  14289. foot: {
  14290. height: math.unit(1.4206036745406823, "feet"),
  14291. name: "Foot",
  14292. image: {
  14293. source: "./media/characters/shayla/foot.svg"
  14294. }
  14295. },
  14296. },
  14297. [
  14298. {
  14299. name: "Micro",
  14300. height: math.unit(0.32, "feet")
  14301. },
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(5.24, "feet"),
  14305. default: true
  14306. },
  14307. {
  14308. name: "Macro",
  14309. height: math.unit(492.12, "feet")
  14310. },
  14311. {
  14312. name: "Megamacro",
  14313. height: math.unit(186.41, "miles")
  14314. },
  14315. ]
  14316. ))
  14317. characterMakers.push(() => makeCharacter(
  14318. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14319. {
  14320. front: {
  14321. height: math.unit(2.2, "m"),
  14322. weight: math.unit(120, "kg"),
  14323. name: "Front",
  14324. image: {
  14325. source: "./media/characters/pia-jr/front.svg",
  14326. extra: 1000 / 970,
  14327. bottom: 0.035
  14328. }
  14329. },
  14330. hand: {
  14331. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14332. name: "Hand",
  14333. image: {
  14334. source: "./media/characters/pia-jr/hand.svg"
  14335. }
  14336. },
  14337. paw: {
  14338. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14339. name: "Paw",
  14340. image: {
  14341. source: "./media/characters/pia-jr/paw.svg"
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Micro",
  14348. height: math.unit(1.2, "cm")
  14349. },
  14350. {
  14351. name: "Normal",
  14352. height: math.unit(2.2, "m"),
  14353. default: true
  14354. },
  14355. {
  14356. name: "Macro",
  14357. height: math.unit(180, "m")
  14358. },
  14359. {
  14360. name: "Megamacro",
  14361. height: math.unit(420, "km")
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(2, "m"),
  14370. weight: math.unit(115, "kg"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/pia-sr/front.svg",
  14374. extra: 760 / 730,
  14375. bottom: 0.015
  14376. }
  14377. },
  14378. back: {
  14379. height: math.unit(2, "m"),
  14380. weight: math.unit(115, "kg"),
  14381. name: "Back",
  14382. image: {
  14383. source: "./media/characters/pia-sr/back.svg",
  14384. extra: 760 / 730,
  14385. bottom: 0.01
  14386. }
  14387. },
  14388. hand: {
  14389. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14390. name: "Hand",
  14391. image: {
  14392. source: "./media/characters/pia-sr/hand.svg"
  14393. }
  14394. },
  14395. foot: {
  14396. height: math.unit(1.83, "feet"),
  14397. name: "Foot",
  14398. image: {
  14399. source: "./media/characters/pia-sr/foot.svg"
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Micro",
  14406. height: math.unit(88, "mm")
  14407. },
  14408. {
  14409. name: "Normal",
  14410. height: math.unit(2, "m"),
  14411. default: true
  14412. },
  14413. {
  14414. name: "Macro",
  14415. height: math.unit(200, "m")
  14416. },
  14417. {
  14418. name: "Megamacro",
  14419. height: math.unit(420, "km")
  14420. },
  14421. ]
  14422. ))
  14423. characterMakers.push(() => makeCharacter(
  14424. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14425. {
  14426. front: {
  14427. height: math.unit(8 + 2 / 12, "feet"),
  14428. weight: math.unit(300, "lb"),
  14429. name: "Front",
  14430. image: {
  14431. source: "./media/characters/kibibyte/front.svg",
  14432. extra: 2221 / 2098,
  14433. bottom: 0.04
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Normal",
  14440. height: math.unit(8 + 2 / 12, "feet"),
  14441. default: true
  14442. },
  14443. {
  14444. name: "Socialable Macro",
  14445. height: math.unit(50, "feet")
  14446. },
  14447. {
  14448. name: "Macro",
  14449. height: math.unit(300, "feet")
  14450. },
  14451. {
  14452. name: "Megamacro",
  14453. height: math.unit(500, "miles")
  14454. },
  14455. ]
  14456. ))
  14457. characterMakers.push(() => makeCharacter(
  14458. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14459. {
  14460. front: {
  14461. height: math.unit(6, "feet"),
  14462. weight: math.unit(150, "lb"),
  14463. name: "Front",
  14464. image: {
  14465. source: "./media/characters/felix/front.svg",
  14466. extra: 762 / 722,
  14467. bottom: 0.02
  14468. }
  14469. },
  14470. frontClothed: {
  14471. height: math.unit(6, "feet"),
  14472. weight: math.unit(150, "lb"),
  14473. name: "Front (Clothed)",
  14474. image: {
  14475. source: "./media/characters/felix/front-clothed.svg",
  14476. extra: 762 / 722,
  14477. bottom: 0.02
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(6 + 8 / 12, "feet"),
  14485. default: true
  14486. },
  14487. {
  14488. name: "Macro",
  14489. height: math.unit(2600, "feet")
  14490. },
  14491. {
  14492. name: "Megamacro",
  14493. height: math.unit(450, "miles")
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14499. {
  14500. front: {
  14501. height: math.unit(6 + 1 / 12, "feet"),
  14502. weight: math.unit(250, "lb"),
  14503. name: "Front",
  14504. image: {
  14505. source: "./media/characters/tobo/front.svg",
  14506. extra: 608 / 586,
  14507. bottom: 0.023
  14508. }
  14509. },
  14510. back: {
  14511. height: math.unit(6 + 1 / 12, "feet"),
  14512. weight: math.unit(250, "lb"),
  14513. name: "Back",
  14514. image: {
  14515. source: "./media/characters/tobo/back.svg",
  14516. extra: 608 / 586
  14517. }
  14518. },
  14519. },
  14520. [
  14521. {
  14522. name: "Nano",
  14523. height: math.unit(2, "nm")
  14524. },
  14525. {
  14526. name: "Megamicro",
  14527. height: math.unit(0.1, "mm")
  14528. },
  14529. {
  14530. name: "Micro",
  14531. height: math.unit(1, "inch"),
  14532. default: true
  14533. },
  14534. {
  14535. name: "Human-sized",
  14536. height: math.unit(6 + 1 / 12, "feet")
  14537. },
  14538. {
  14539. name: "Macro",
  14540. height: math.unit(250, "feet")
  14541. },
  14542. {
  14543. name: "Megamacro",
  14544. height: math.unit(75, "miles")
  14545. },
  14546. {
  14547. name: "Texas-sized",
  14548. height: math.unit(750, "miles")
  14549. },
  14550. {
  14551. name: "Teramacro",
  14552. height: math.unit(50000, "miles")
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14558. {
  14559. front: {
  14560. height: math.unit(6, "feet"),
  14561. weight: math.unit(269, "lb"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/danny-kapowsky/front.svg",
  14565. extra: 766 / 736,
  14566. bottom: 0.044
  14567. }
  14568. },
  14569. back: {
  14570. height: math.unit(6, "feet"),
  14571. weight: math.unit(269, "lb"),
  14572. name: "Back",
  14573. image: {
  14574. source: "./media/characters/danny-kapowsky/back.svg",
  14575. extra: 797 / 760,
  14576. bottom: 0.025
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Macro",
  14583. height: math.unit(150, "feet"),
  14584. default: true
  14585. },
  14586. {
  14587. name: "Macro+",
  14588. height: math.unit(200, "feet")
  14589. },
  14590. {
  14591. name: "Macro++",
  14592. height: math.unit(300, "feet")
  14593. },
  14594. {
  14595. name: "Macro+++",
  14596. height: math.unit(400, "feet")
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14602. {
  14603. side: {
  14604. height: math.unit(6, "feet"),
  14605. weight: math.unit(170, "lb"),
  14606. name: "Side",
  14607. image: {
  14608. source: "./media/characters/finn/side.svg",
  14609. extra: 1953 / 1807,
  14610. bottom: 0.057
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Megamacro",
  14617. height: math.unit(14445, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(5 + 6 / 12, "feet"),
  14627. weight: math.unit(125, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/roy/front.svg",
  14631. extra: 1,
  14632. bottom: 0.11
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Micro",
  14639. height: math.unit(3, "inches"),
  14640. default: true
  14641. },
  14642. {
  14643. name: "Normal",
  14644. height: math.unit(5 + 6 / 12, "feet")
  14645. },
  14646. {
  14647. name: "Lesser Macro",
  14648. height: math.unit(60, "feet")
  14649. },
  14650. {
  14651. name: "Greater Macro",
  14652. height: math.unit(120, "feet")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6, "feet"),
  14661. weight: math.unit(100, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/aevsivs/front.svg",
  14665. extra: 1,
  14666. bottom: 0.03
  14667. }
  14668. },
  14669. back: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(100, "lb"),
  14672. name: "Back",
  14673. image: {
  14674. source: "./media/characters/aevsivs/back.svg"
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Micro",
  14681. height: math.unit(2, "inches"),
  14682. default: true
  14683. },
  14684. {
  14685. name: "Normal",
  14686. height: math.unit(5, "feet")
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(5 + 7 / 12, "feet"),
  14695. weight: math.unit(159, "lb"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/hildegard/front.svg",
  14699. extra: 289 / 269,
  14700. bottom: 7.63 / 297.8
  14701. }
  14702. },
  14703. back: {
  14704. height: math.unit(5 + 7 / 12, "feet"),
  14705. weight: math.unit(159, "lb"),
  14706. name: "Back",
  14707. image: {
  14708. source: "./media/characters/hildegard/back.svg",
  14709. extra: 280 / 260,
  14710. bottom: 2.3 / 282
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(5 + 7 / 12, "feet"),
  14718. default: true
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14724. {
  14725. bernard: {
  14726. height: math.unit(2 + 7 / 12, "feet"),
  14727. weight: math.unit(66, "lb"),
  14728. name: "Bernard",
  14729. rename: true,
  14730. image: {
  14731. source: "./media/characters/bernard-wilder/bernard.svg",
  14732. extra: 192 / 128,
  14733. bottom: 0.05
  14734. }
  14735. },
  14736. wilder: {
  14737. height: math.unit(5 + 8 / 12, "feet"),
  14738. weight: math.unit(143, "lb"),
  14739. name: "Wilder",
  14740. rename: true,
  14741. image: {
  14742. source: "./media/characters/bernard-wilder/wilder.svg",
  14743. extra: 361 / 312,
  14744. bottom: 0.02
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(2 + 7 / 12, "feet"),
  14752. default: true
  14753. },
  14754. ]
  14755. ))
  14756. characterMakers.push(() => makeCharacter(
  14757. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14758. {
  14759. anthro: {
  14760. height: math.unit(6 + 1 / 12, "feet"),
  14761. weight: math.unit(155, "lb"),
  14762. name: "Anthro",
  14763. image: {
  14764. source: "./media/characters/hearth/anthro.svg",
  14765. extra: 260 / 250,
  14766. bottom: 0.02
  14767. }
  14768. },
  14769. feral: {
  14770. height: math.unit(3.78, "feet"),
  14771. weight: math.unit(35, "kg"),
  14772. name: "Feral",
  14773. image: {
  14774. source: "./media/characters/hearth/feral.svg",
  14775. extra: 153 / 135,
  14776. bottom: 0.03
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(6 + 1 / 12, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(182, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/ingrid/front.svg",
  14797. extra: 294 / 268,
  14798. bottom: 0.027
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(6, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14812. {
  14813. eevee: {
  14814. height: math.unit(2 + 10 / 12, "feet"),
  14815. weight: math.unit(86, "lb"),
  14816. name: "Malgam",
  14817. image: {
  14818. source: "./media/characters/malgam/eevee.svg",
  14819. extra: 218 / 180,
  14820. bottom: 0.2
  14821. }
  14822. },
  14823. sylveon: {
  14824. height: math.unit(4, "feet"),
  14825. weight: math.unit(101, "lb"),
  14826. name: "Future Malgam",
  14827. rename: true,
  14828. image: {
  14829. source: "./media/characters/malgam/sylveon.svg",
  14830. extra: 371 / 325,
  14831. bottom: 0.015
  14832. }
  14833. },
  14834. gigantamax: {
  14835. height: math.unit(50, "feet"),
  14836. name: "Gigantamax Malgam",
  14837. rename: true,
  14838. image: {
  14839. source: "./media/characters/malgam/gigantamax.svg"
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(2 + 10 / 12, "feet"),
  14847. default: true
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(5 + 11 / 12, "feet"),
  14856. weight: math.unit(188, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/fleur/front.svg",
  14860. extra: 309 / 283,
  14861. bottom: 0.007
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Normal",
  14868. height: math.unit(5 + 11 / 12, "feet"),
  14869. default: true
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14875. {
  14876. front: {
  14877. height: math.unit(5 + 4 / 12, "feet"),
  14878. weight: math.unit(122, "lb"),
  14879. name: "Front",
  14880. image: {
  14881. source: "./media/characters/jude/front.svg",
  14882. extra: 288 / 273,
  14883. bottom: 0.03
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Normal",
  14890. height: math.unit(5 + 4 / 12, "feet"),
  14891. default: true
  14892. },
  14893. ]
  14894. ))
  14895. characterMakers.push(() => makeCharacter(
  14896. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14897. {
  14898. front: {
  14899. height: math.unit(5 + 11 / 12, "feet"),
  14900. weight: math.unit(190, "lb"),
  14901. name: "Front",
  14902. image: {
  14903. source: "./media/characters/seara/front.svg",
  14904. extra: 1,
  14905. bottom: 0.05
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Normal",
  14912. height: math.unit(5 + 11 / 12, "feet"),
  14913. default: true
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14919. {
  14920. front: {
  14921. height: math.unit(16 + 5 / 12, "feet"),
  14922. weight: math.unit(524, "lb"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/caspian/front.svg",
  14926. extra: 1,
  14927. bottom: 0.04
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Normal",
  14934. height: math.unit(16 + 5 / 12, "feet"),
  14935. default: true
  14936. },
  14937. ]
  14938. ))
  14939. characterMakers.push(() => makeCharacter(
  14940. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14941. {
  14942. front: {
  14943. height: math.unit(5 + 7 / 12, "feet"),
  14944. weight: math.unit(170, "lb"),
  14945. name: "Front",
  14946. image: {
  14947. source: "./media/characters/mika/front.svg",
  14948. extra: 1,
  14949. bottom: 0.016
  14950. }
  14951. },
  14952. },
  14953. [
  14954. {
  14955. name: "Normal",
  14956. height: math.unit(5 + 7 / 12, "feet"),
  14957. default: true
  14958. },
  14959. ]
  14960. ))
  14961. characterMakers.push(() => makeCharacter(
  14962. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14963. {
  14964. front: {
  14965. height: math.unit(6 + 2 / 12, "feet"),
  14966. weight: math.unit(268, "lb"),
  14967. name: "Front",
  14968. image: {
  14969. source: "./media/characters/sol/front.svg",
  14970. extra: 247 / 231,
  14971. bottom: 0.05
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(6 + 2 / 12, "feet"),
  14979. default: true
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14985. {
  14986. buizel: {
  14987. height: math.unit(2 + 5 / 12, "feet"),
  14988. weight: math.unit(87, "lb"),
  14989. name: "Buizel",
  14990. image: {
  14991. source: "./media/characters/umiko/buizel.svg",
  14992. extra: 172 / 157,
  14993. bottom: 0.01
  14994. }
  14995. },
  14996. floatzel: {
  14997. height: math.unit(5 + 9 / 12, "feet"),
  14998. weight: math.unit(250, "lb"),
  14999. name: "Floatzel",
  15000. image: {
  15001. source: "./media/characters/umiko/floatzel.svg",
  15002. extra: 262 / 248
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(2 + 5 / 12, "feet"),
  15010. default: true
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15016. {
  15017. front: {
  15018. height: math.unit(6 + 2 / 12, "feet"),
  15019. weight: math.unit(146, "lb"),
  15020. name: "Front",
  15021. image: {
  15022. source: "./media/characters/iliac/front.svg",
  15023. extra: 389 / 365,
  15024. bottom: 0.035
  15025. }
  15026. },
  15027. },
  15028. [
  15029. {
  15030. name: "Normal",
  15031. height: math.unit(6 + 2 / 12, "feet"),
  15032. default: true
  15033. },
  15034. ]
  15035. ))
  15036. characterMakers.push(() => makeCharacter(
  15037. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15038. {
  15039. front: {
  15040. height: math.unit(6, "feet"),
  15041. weight: math.unit(170, "lb"),
  15042. name: "Front",
  15043. image: {
  15044. source: "./media/characters/topaz/front.svg",
  15045. extra: 317 / 303,
  15046. bottom: 0.055
  15047. }
  15048. },
  15049. },
  15050. [
  15051. {
  15052. name: "Normal",
  15053. height: math.unit(6, "feet"),
  15054. default: true
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(5 + 11 / 12, "feet"),
  15063. weight: math.unit(144, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/gabriel/front.svg",
  15067. extra: 285 / 262,
  15068. bottom: 0.004
  15069. }
  15070. },
  15071. },
  15072. [
  15073. {
  15074. name: "Normal",
  15075. height: math.unit(5 + 11 / 12, "feet"),
  15076. default: true
  15077. },
  15078. ]
  15079. ))
  15080. characterMakers.push(() => makeCharacter(
  15081. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15082. {
  15083. side: {
  15084. height: math.unit(6 + 5 / 12, "feet"),
  15085. weight: math.unit(300, "lb"),
  15086. name: "Side",
  15087. image: {
  15088. source: "./media/characters/tempest-suicune/side.svg",
  15089. extra: 195 / 154,
  15090. bottom: 0.04
  15091. }
  15092. },
  15093. },
  15094. [
  15095. {
  15096. name: "Normal",
  15097. height: math.unit(6 + 5 / 12, "feet"),
  15098. default: true
  15099. },
  15100. ]
  15101. ))
  15102. characterMakers.push(() => makeCharacter(
  15103. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15104. {
  15105. front: {
  15106. height: math.unit(7 + 2 / 12, "feet"),
  15107. weight: math.unit(322, "lb"),
  15108. name: "Front",
  15109. image: {
  15110. source: "./media/characters/vulcan/front.svg",
  15111. extra: 154 / 147,
  15112. bottom: 0.04
  15113. }
  15114. },
  15115. },
  15116. [
  15117. {
  15118. name: "Normal",
  15119. height: math.unit(7 + 2 / 12, "feet"),
  15120. default: true
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(5 + 10 / 12, "feet"),
  15129. weight: math.unit(264, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/gault/front.svg",
  15133. extra: 161 / 140,
  15134. bottom: 0.028
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(5 + 10 / 12, "feet"),
  15142. default: true
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15148. {
  15149. front: {
  15150. height: math.unit(6, "feet"),
  15151. weight: math.unit(150, "lb"),
  15152. name: "Front",
  15153. image: {
  15154. source: "./media/characters/shard/front.svg",
  15155. extra: 273 / 238,
  15156. bottom: 0.02
  15157. }
  15158. },
  15159. },
  15160. [
  15161. {
  15162. name: "Normal",
  15163. height: math.unit(3 + 6 / 12, "feet"),
  15164. default: true
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15170. {
  15171. front: {
  15172. height: math.unit(5 + 11 / 12, "feet"),
  15173. weight: math.unit(146, "lb"),
  15174. name: "Front",
  15175. image: {
  15176. source: "./media/characters/ashe/front.svg",
  15177. extra: 400 / 373,
  15178. bottom: 0.01
  15179. }
  15180. },
  15181. },
  15182. [
  15183. {
  15184. name: "Normal",
  15185. height: math.unit(5 + 11 / 12, "feet"),
  15186. default: true
  15187. },
  15188. ]
  15189. ))
  15190. characterMakers.push(() => makeCharacter(
  15191. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15192. {
  15193. front: {
  15194. height: math.unit(5 + 5 / 12, "feet"),
  15195. weight: math.unit(135, "lb"),
  15196. name: "Front",
  15197. image: {
  15198. source: "./media/characters/beatrix/front.svg",
  15199. extra: 392 / 379,
  15200. bottom: 0.01
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(6, "feet"),
  15208. default: true
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(6, "feet"),
  15217. weight: math.unit(150, "lb"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/ignatius/front.svg",
  15221. extra: 245 / 222,
  15222. bottom: 0.01
  15223. }
  15224. },
  15225. },
  15226. [
  15227. {
  15228. name: "Normal",
  15229. height: math.unit(5 + 5 / 12, "feet"),
  15230. default: true
  15231. },
  15232. ]
  15233. ))
  15234. characterMakers.push(() => makeCharacter(
  15235. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15236. {
  15237. front: {
  15238. height: math.unit(6 + 2 / 12, "feet"),
  15239. weight: math.unit(138, "lb"),
  15240. name: "Front",
  15241. image: {
  15242. source: "./media/characters/mei-li/front.svg",
  15243. extra: 237 / 229,
  15244. bottom: 0.03
  15245. }
  15246. },
  15247. },
  15248. [
  15249. {
  15250. name: "Normal",
  15251. height: math.unit(6 + 2 / 12, "feet"),
  15252. default: true
  15253. },
  15254. ]
  15255. ))
  15256. characterMakers.push(() => makeCharacter(
  15257. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15258. {
  15259. front: {
  15260. height: math.unit(2 + 4 / 12, "feet"),
  15261. weight: math.unit(62, "lb"),
  15262. name: "Front",
  15263. image: {
  15264. source: "./media/characters/puru/front.svg",
  15265. extra: 206 / 149,
  15266. bottom: 0.06
  15267. }
  15268. },
  15269. },
  15270. [
  15271. {
  15272. name: "Normal",
  15273. height: math.unit(2 + 4 / 12, "feet"),
  15274. default: true
  15275. },
  15276. ]
  15277. ))
  15278. characterMakers.push(() => makeCharacter(
  15279. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15280. {
  15281. anthro: {
  15282. height: math.unit(5 + 8/12, "feet"),
  15283. weight: math.unit(200, "lb"),
  15284. energyNeed: math.unit(2000, "kcal"),
  15285. name: "Anthro",
  15286. image: {
  15287. source: "./media/characters/kee/anthro.svg",
  15288. extra: 3251/3184,
  15289. bottom: 250/3501
  15290. }
  15291. },
  15292. taur: {
  15293. height: math.unit(11, "feet"),
  15294. weight: math.unit(500, "lb"),
  15295. energyNeed: math.unit(5000, "kcal"),
  15296. name: "Taur",
  15297. image: {
  15298. source: "./media/characters/kee/taur.svg",
  15299. extra: 1362/1320,
  15300. bottom: 83/1445
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Normal",
  15307. height: math.unit(5 + 8/12, "feet"),
  15308. default: true
  15309. },
  15310. {
  15311. name: "Macro",
  15312. height: math.unit(35, "feet")
  15313. },
  15314. ]
  15315. ))
  15316. characterMakers.push(() => makeCharacter(
  15317. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15318. {
  15319. anthro: {
  15320. height: math.unit(7, "feet"),
  15321. weight: math.unit(190, "lb"),
  15322. name: "Anthro",
  15323. image: {
  15324. source: "./media/characters/cobalt-dracha/anthro.svg",
  15325. extra: 231 / 225,
  15326. bottom: 0.04
  15327. }
  15328. },
  15329. feral: {
  15330. height: math.unit(9 + 7 / 12, "feet"),
  15331. weight: math.unit(294, "lb"),
  15332. name: "Feral",
  15333. image: {
  15334. source: "./media/characters/cobalt-dracha/feral.svg",
  15335. extra: 692 / 633,
  15336. bottom: 0.05
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Normal",
  15343. height: math.unit(7, "feet"),
  15344. default: true
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15350. {
  15351. fallen: {
  15352. height: math.unit(11 + 8 / 12, "feet"),
  15353. weight: math.unit(485, "lb"),
  15354. name: "Java (Fallen)",
  15355. rename: true,
  15356. image: {
  15357. source: "./media/characters/java/fallen.svg",
  15358. extra: 226 / 208,
  15359. bottom: 0.005
  15360. }
  15361. },
  15362. godkin: {
  15363. height: math.unit(10 + 6 / 12, "feet"),
  15364. weight: math.unit(328, "lb"),
  15365. name: "Java (Godkin)",
  15366. rename: true,
  15367. image: {
  15368. source: "./media/characters/java/godkin.svg",
  15369. extra: 270 / 262,
  15370. bottom: 0.02
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Normal",
  15377. height: math.unit(11 + 8 / 12, "feet"),
  15378. default: true
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15384. {
  15385. front: {
  15386. height: math.unit(7 + 8 / 12, "feet"),
  15387. weight: math.unit(320, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/skoll/front.svg",
  15391. extra: 232 / 220,
  15392. bottom: 0.02
  15393. }
  15394. },
  15395. },
  15396. [
  15397. {
  15398. name: "Normal",
  15399. height: math.unit(7 + 8 / 12, "feet"),
  15400. default: true
  15401. },
  15402. ]
  15403. ))
  15404. characterMakers.push(() => makeCharacter(
  15405. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15406. {
  15407. front: {
  15408. height: math.unit(5 + 9 / 12, "feet"),
  15409. weight: math.unit(170, "lb"),
  15410. name: "Front",
  15411. image: {
  15412. source: "./media/characters/purna/front.svg",
  15413. extra: 239 / 229,
  15414. bottom: 0.01
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Normal",
  15421. height: math.unit(5 + 9 / 12, "feet"),
  15422. default: true
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(5 + 9 / 12, "feet"),
  15431. weight: math.unit(142, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/kuva/front.svg",
  15435. extra: 281 / 271,
  15436. bottom: 0.006
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Normal",
  15443. height: math.unit(5 + 9 / 12, "feet"),
  15444. default: true
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15450. {
  15451. anthro: {
  15452. height: math.unit(9 + 2 / 12, "feet"),
  15453. weight: math.unit(270, "lb"),
  15454. name: "Anthro",
  15455. image: {
  15456. source: "./media/characters/embra/anthro.svg",
  15457. extra: 200 / 187,
  15458. bottom: 0.02
  15459. }
  15460. },
  15461. feral: {
  15462. height: math.unit(18 + 8 / 12, "feet"),
  15463. weight: math.unit(576, "lb"),
  15464. name: "Feral",
  15465. image: {
  15466. source: "./media/characters/embra/feral.svg",
  15467. extra: 152 / 137,
  15468. bottom: 0.037
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(9 + 2 / 12, "feet"),
  15476. default: true
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15482. {
  15483. anthro: {
  15484. height: math.unit(10 + 9 / 12, "feet"),
  15485. weight: math.unit(224, "lb"),
  15486. name: "Anthro",
  15487. image: {
  15488. source: "./media/characters/grottos/anthro.svg",
  15489. extra: 350 / 332,
  15490. bottom: 0.045
  15491. }
  15492. },
  15493. feral: {
  15494. height: math.unit(20 + 7 / 12, "feet"),
  15495. weight: math.unit(629, "lb"),
  15496. name: "Feral",
  15497. image: {
  15498. source: "./media/characters/grottos/feral.svg",
  15499. extra: 207 / 190,
  15500. bottom: 0.05
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(10 + 9 / 12, "feet"),
  15508. default: true
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15514. {
  15515. anthro: {
  15516. height: math.unit(9 + 6 / 12, "feet"),
  15517. weight: math.unit(298, "lb"),
  15518. name: "Anthro",
  15519. image: {
  15520. source: "./media/characters/frifna/anthro.svg",
  15521. extra: 282 / 269,
  15522. bottom: 0.015
  15523. }
  15524. },
  15525. feral: {
  15526. height: math.unit(16 + 2 / 12, "feet"),
  15527. weight: math.unit(624, "lb"),
  15528. name: "Feral",
  15529. image: {
  15530. source: "./media/characters/frifna/feral.svg"
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(9 + 6 / 12, "feet"),
  15538. default: true
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(6 + 2 / 12, "feet"),
  15547. weight: math.unit(168, "lb"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/elise/front.svg",
  15551. extra: 276 / 271
  15552. }
  15553. },
  15554. },
  15555. [
  15556. {
  15557. name: "Normal",
  15558. height: math.unit(6 + 2 / 12, "feet"),
  15559. default: true
  15560. },
  15561. ]
  15562. ))
  15563. characterMakers.push(() => makeCharacter(
  15564. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15565. {
  15566. front: {
  15567. height: math.unit(5 + 10 / 12, "feet"),
  15568. weight: math.unit(210, "lb"),
  15569. name: "Front",
  15570. image: {
  15571. source: "./media/characters/glade/front.svg",
  15572. extra: 258 / 247,
  15573. bottom: 0.008
  15574. }
  15575. },
  15576. },
  15577. [
  15578. {
  15579. name: "Normal",
  15580. height: math.unit(5 + 10 / 12, "feet"),
  15581. default: true
  15582. },
  15583. ]
  15584. ))
  15585. characterMakers.push(() => makeCharacter(
  15586. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15587. {
  15588. front: {
  15589. height: math.unit(5 + 10 / 12, "feet"),
  15590. weight: math.unit(129, "lb"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/rina/front.svg",
  15594. extra: 266 / 255,
  15595. bottom: 0.005
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Normal",
  15602. height: math.unit(5 + 10 / 12, "feet"),
  15603. default: true
  15604. },
  15605. ]
  15606. ))
  15607. characterMakers.push(() => makeCharacter(
  15608. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15609. {
  15610. front: {
  15611. height: math.unit(6 + 1 / 12, "feet"),
  15612. weight: math.unit(192, "lb"),
  15613. name: "Front",
  15614. image: {
  15615. source: "./media/characters/veronica/front.svg",
  15616. extra: 319 / 309,
  15617. bottom: 0.005
  15618. }
  15619. },
  15620. },
  15621. [
  15622. {
  15623. name: "Normal",
  15624. height: math.unit(6 + 1 / 12, "feet"),
  15625. default: true
  15626. },
  15627. ]
  15628. ))
  15629. characterMakers.push(() => makeCharacter(
  15630. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15631. {
  15632. front: {
  15633. height: math.unit(9 + 3 / 12, "feet"),
  15634. weight: math.unit(1100, "lb"),
  15635. name: "Front",
  15636. image: {
  15637. source: "./media/characters/braxton/front.svg",
  15638. extra: 1057 / 984,
  15639. bottom: 0.05
  15640. }
  15641. },
  15642. },
  15643. [
  15644. {
  15645. name: "Normal",
  15646. height: math.unit(9 + 3 / 12, "feet")
  15647. },
  15648. {
  15649. name: "Giant",
  15650. height: math.unit(300, "feet"),
  15651. default: true
  15652. },
  15653. {
  15654. name: "Macro",
  15655. height: math.unit(700, "feet")
  15656. },
  15657. {
  15658. name: "Megamacro",
  15659. height: math.unit(6000, "feet")
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15665. {
  15666. front: {
  15667. height: math.unit(6 + 7 / 12, "feet"),
  15668. weight: math.unit(150, "lb"),
  15669. name: "Front",
  15670. image: {
  15671. source: "./media/characters/blue-feyonics/front.svg",
  15672. extra: 1403 / 1306,
  15673. bottom: 0.047
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Normal",
  15680. height: math.unit(6 + 7 / 12, "feet"),
  15681. default: true
  15682. },
  15683. ]
  15684. ))
  15685. characterMakers.push(() => makeCharacter(
  15686. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15687. {
  15688. front: {
  15689. height: math.unit(1.8, "meters"),
  15690. weight: math.unit(60, "kg"),
  15691. name: "Front",
  15692. image: {
  15693. source: "./media/characters/maxwell/front.svg",
  15694. extra: 2060 / 1873
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Micro",
  15701. height: math.unit(1, "mm")
  15702. },
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(1.8, "meter"),
  15706. default: true
  15707. },
  15708. {
  15709. name: "Macro",
  15710. height: math.unit(30, "meters")
  15711. },
  15712. {
  15713. name: "Megamacro",
  15714. height: math.unit(10, "km")
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15720. {
  15721. front: {
  15722. height: math.unit(6, "feet"),
  15723. weight: math.unit(150, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/jack/front.svg",
  15727. extra: 1754 / 1640,
  15728. bottom: 0.01
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(80000, "feet"),
  15736. default: true
  15737. },
  15738. {
  15739. name: "Max size",
  15740. height: math.unit(10, "lightyears")
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15746. {
  15747. urban: {
  15748. height: math.unit(5, "feet"),
  15749. weight: math.unit(240, "lb"),
  15750. name: "Urban",
  15751. image: {
  15752. source: "./media/characters/cafat/urban.svg",
  15753. extra: 1223/1126,
  15754. bottom: 205/1428
  15755. }
  15756. },
  15757. summer: {
  15758. height: math.unit(5, "feet"),
  15759. weight: math.unit(240, "lb"),
  15760. name: "Summer",
  15761. image: {
  15762. source: "./media/characters/cafat/summer.svg",
  15763. extra: 1223/1126,
  15764. bottom: 205/1428
  15765. }
  15766. },
  15767. winter: {
  15768. height: math.unit(5, "feet"),
  15769. weight: math.unit(240, "lb"),
  15770. name: "Winter",
  15771. image: {
  15772. source: "./media/characters/cafat/winter.svg",
  15773. extra: 1223/1126,
  15774. bottom: 205/1428
  15775. }
  15776. },
  15777. lingerie: {
  15778. height: math.unit(5, "feet"),
  15779. weight: math.unit(240, "lb"),
  15780. name: "Lingerie",
  15781. image: {
  15782. source: "./media/characters/cafat/lingerie.svg",
  15783. extra: 1223/1126,
  15784. bottom: 205/1428
  15785. }
  15786. },
  15787. upright: {
  15788. height: math.unit(6.3, "feet"),
  15789. weight: math.unit(240, "lb"),
  15790. name: "Upright",
  15791. image: {
  15792. source: "./media/characters/cafat/upright.svg",
  15793. bottom: 0.01
  15794. }
  15795. },
  15796. uprightFull: {
  15797. height: math.unit(6.3, "feet"),
  15798. weight: math.unit(240, "lb"),
  15799. name: "Upright (Full)",
  15800. image: {
  15801. source: "./media/characters/cafat/upright-full.svg",
  15802. bottom: 0.01
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Small",
  15809. height: math.unit(5, "feet"),
  15810. default: true
  15811. },
  15812. {
  15813. name: "Large",
  15814. height: math.unit(13, "feet")
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15820. {
  15821. front: {
  15822. height: math.unit(6, "feet"),
  15823. weight: math.unit(150, "lb"),
  15824. name: "Front",
  15825. image: {
  15826. source: "./media/characters/verin-raharra/front.svg",
  15827. extra: 5019 / 4835,
  15828. bottom: 0.023
  15829. }
  15830. },
  15831. },
  15832. [
  15833. {
  15834. name: "Normal",
  15835. height: math.unit(7 + 5 / 12, "feet"),
  15836. default: true
  15837. },
  15838. {
  15839. name: "Upsized",
  15840. height: math.unit(20, "feet")
  15841. },
  15842. ]
  15843. ))
  15844. characterMakers.push(() => makeCharacter(
  15845. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15846. {
  15847. front: {
  15848. height: math.unit(7, "feet"),
  15849. weight: math.unit(230, "lb"),
  15850. name: "Front",
  15851. image: {
  15852. source: "./media/characters/nakata/front.svg",
  15853. extra: 1.005,
  15854. bottom: 0.01
  15855. }
  15856. },
  15857. },
  15858. [
  15859. {
  15860. name: "Normal",
  15861. height: math.unit(7, "feet"),
  15862. default: true
  15863. },
  15864. {
  15865. name: "Big",
  15866. height: math.unit(14, "feet")
  15867. },
  15868. {
  15869. name: "Macro",
  15870. height: math.unit(400, "feet")
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15876. {
  15877. front: {
  15878. height: math.unit(4.91, "feet"),
  15879. weight: math.unit(100, "lb"),
  15880. name: "Front",
  15881. image: {
  15882. source: "./media/characters/lily/front.svg",
  15883. extra: 1585 / 1415,
  15884. bottom: 0.02
  15885. }
  15886. },
  15887. },
  15888. [
  15889. {
  15890. name: "Normal",
  15891. height: math.unit(4.91, "feet"),
  15892. default: true
  15893. },
  15894. ]
  15895. ))
  15896. characterMakers.push(() => makeCharacter(
  15897. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15898. {
  15899. laying: {
  15900. height: math.unit(4 + 4 / 12, "feet"),
  15901. weight: math.unit(600, "lb"),
  15902. name: "Laying",
  15903. image: {
  15904. source: "./media/characters/sheila/laying.svg",
  15905. extra: 1333 / 1265,
  15906. bottom: 0.16
  15907. }
  15908. },
  15909. },
  15910. [
  15911. {
  15912. name: "Normal",
  15913. height: math.unit(4 + 4 / 12, "feet"),
  15914. default: true
  15915. },
  15916. ]
  15917. ))
  15918. characterMakers.push(() => makeCharacter(
  15919. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15920. {
  15921. front: {
  15922. height: math.unit(6, "feet"),
  15923. weight: math.unit(190, "lb"),
  15924. name: "Front",
  15925. image: {
  15926. source: "./media/characters/sax/front.svg",
  15927. extra: 1187 / 973,
  15928. bottom: 0.042
  15929. }
  15930. },
  15931. },
  15932. [
  15933. {
  15934. name: "Micro",
  15935. height: math.unit(4, "inches"),
  15936. default: true
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15942. {
  15943. front: {
  15944. height: math.unit(6, "feet"),
  15945. weight: math.unit(150, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/pandora/front.svg",
  15949. extra: 2720 / 2556,
  15950. bottom: 0.015
  15951. }
  15952. },
  15953. back: {
  15954. height: math.unit(6, "feet"),
  15955. weight: math.unit(150, "lb"),
  15956. name: "Back",
  15957. image: {
  15958. source: "./media/characters/pandora/back.svg",
  15959. extra: 2720 / 2556,
  15960. bottom: 0.01
  15961. }
  15962. },
  15963. beans: {
  15964. height: math.unit(6 / 8, "feet"),
  15965. name: "Beans",
  15966. image: {
  15967. source: "./media/characters/pandora/beans.svg"
  15968. }
  15969. },
  15970. collar: {
  15971. height: math.unit(0.31, "feet"),
  15972. name: "Collar",
  15973. image: {
  15974. source: "./media/characters/pandora/collar.svg"
  15975. }
  15976. },
  15977. skirt: {
  15978. height: math.unit(6, "feet"),
  15979. weight: math.unit(150, "lb"),
  15980. name: "Skirt",
  15981. image: {
  15982. source: "./media/characters/pandora/skirt.svg",
  15983. extra: 1622 / 1525,
  15984. bottom: 0.015
  15985. }
  15986. },
  15987. hoodie: {
  15988. height: math.unit(6, "feet"),
  15989. weight: math.unit(150, "lb"),
  15990. name: "Hoodie",
  15991. image: {
  15992. source: "./media/characters/pandora/hoodie.svg",
  15993. extra: 1622 / 1525,
  15994. bottom: 0.015
  15995. }
  15996. },
  15997. casual: {
  15998. height: math.unit(6, "feet"),
  15999. weight: math.unit(150, "lb"),
  16000. name: "Casual",
  16001. image: {
  16002. source: "./media/characters/pandora/casual.svg",
  16003. extra: 1622 / 1525,
  16004. bottom: 0.015
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Normal",
  16011. height: math.unit(6, "feet")
  16012. },
  16013. {
  16014. name: "Big Steppy",
  16015. height: math.unit(1, "km"),
  16016. default: true
  16017. },
  16018. {
  16019. name: "Galactic Steppy",
  16020. height: math.unit(2, "gigameters")
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16026. {
  16027. side: {
  16028. height: math.unit(10, "feet"),
  16029. weight: math.unit(800, "kg"),
  16030. name: "Side",
  16031. image: {
  16032. source: "./media/characters/venio-darcony/side.svg",
  16033. extra: 1373 / 1003,
  16034. bottom: 0.037
  16035. }
  16036. },
  16037. front: {
  16038. height: math.unit(19, "feet"),
  16039. weight: math.unit(800, "kg"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/venio-darcony/front.svg"
  16043. }
  16044. },
  16045. back: {
  16046. height: math.unit(19, "feet"),
  16047. weight: math.unit(800, "kg"),
  16048. name: "Back",
  16049. image: {
  16050. source: "./media/characters/venio-darcony/back.svg"
  16051. }
  16052. },
  16053. sideNsfw: {
  16054. height: math.unit(10, "feet"),
  16055. weight: math.unit(800, "kg"),
  16056. name: "Side (NSFW)",
  16057. image: {
  16058. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16059. extra: 1373 / 1003,
  16060. bottom: 0.037
  16061. }
  16062. },
  16063. frontNsfw: {
  16064. height: math.unit(19, "feet"),
  16065. weight: math.unit(800, "kg"),
  16066. name: "Front (NSFW)",
  16067. image: {
  16068. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16069. }
  16070. },
  16071. backNsfw: {
  16072. height: math.unit(19, "feet"),
  16073. weight: math.unit(800, "kg"),
  16074. name: "Back (NSFW)",
  16075. image: {
  16076. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16077. }
  16078. },
  16079. sideArmored: {
  16080. height: math.unit(10, "feet"),
  16081. weight: math.unit(800, "kg"),
  16082. name: "Side (Armored)",
  16083. image: {
  16084. source: "./media/characters/venio-darcony/side-armored.svg",
  16085. extra: 1373 / 1003,
  16086. bottom: 0.037
  16087. }
  16088. },
  16089. frontArmored: {
  16090. height: math.unit(19, "feet"),
  16091. weight: math.unit(900, "kg"),
  16092. name: "Front (Armored)",
  16093. image: {
  16094. source: "./media/characters/venio-darcony/front-armored.svg"
  16095. }
  16096. },
  16097. backArmored: {
  16098. height: math.unit(19, "feet"),
  16099. weight: math.unit(900, "kg"),
  16100. name: "Back (Armored)",
  16101. image: {
  16102. source: "./media/characters/venio-darcony/back-armored.svg"
  16103. }
  16104. },
  16105. sword: {
  16106. height: math.unit(10, "feet"),
  16107. weight: math.unit(50, "lb"),
  16108. name: "Sword",
  16109. image: {
  16110. source: "./media/characters/venio-darcony/sword.svg"
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Normal",
  16117. height: math.unit(10, "feet")
  16118. },
  16119. {
  16120. name: "Macro",
  16121. height: math.unit(130, "feet"),
  16122. default: true
  16123. },
  16124. {
  16125. name: "Macro+",
  16126. height: math.unit(240, "feet")
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(6, "feet"),
  16135. weight: math.unit(150, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/veski/front.svg",
  16139. extra: 1299 / 1225,
  16140. bottom: 0.04
  16141. }
  16142. },
  16143. back: {
  16144. height: math.unit(6, "feet"),
  16145. weight: math.unit(150, "lb"),
  16146. name: "Back",
  16147. image: {
  16148. source: "./media/characters/veski/back.svg",
  16149. extra: 1299 / 1225,
  16150. bottom: 0.008
  16151. }
  16152. },
  16153. maw: {
  16154. height: math.unit(1.5 * 1.21, "feet"),
  16155. name: "Maw",
  16156. image: {
  16157. source: "./media/characters/veski/maw.svg"
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Macro",
  16164. height: math.unit(2, "km"),
  16165. default: true
  16166. },
  16167. ]
  16168. ))
  16169. characterMakers.push(() => makeCharacter(
  16170. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16171. {
  16172. front: {
  16173. height: math.unit(5 + 7 / 12, "feet"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/isabelle/front.svg",
  16177. extra: 2130 / 1976,
  16178. bottom: 0.05
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Supermicro",
  16185. height: math.unit(10, "micrometers")
  16186. },
  16187. {
  16188. name: "Micro",
  16189. height: math.unit(1, "inch")
  16190. },
  16191. {
  16192. name: "Tiny",
  16193. height: math.unit(5, "inches")
  16194. },
  16195. {
  16196. name: "Standard",
  16197. height: math.unit(5 + 7 / 12, "inches")
  16198. },
  16199. {
  16200. name: "Macro",
  16201. height: math.unit(80, "meters"),
  16202. default: true
  16203. },
  16204. {
  16205. name: "Megamacro",
  16206. height: math.unit(250, "meters")
  16207. },
  16208. {
  16209. name: "Gigamacro",
  16210. height: math.unit(5, "km")
  16211. },
  16212. {
  16213. name: "Cosmic",
  16214. height: math.unit(2.5e6, "miles")
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16220. {
  16221. front: {
  16222. height: math.unit(6, "feet"),
  16223. weight: math.unit(150, "lb"),
  16224. name: "Front",
  16225. image: {
  16226. source: "./media/characters/hanzo/front.svg",
  16227. extra: 374 / 344,
  16228. bottom: 0.02
  16229. }
  16230. },
  16231. },
  16232. [
  16233. {
  16234. name: "Normal",
  16235. height: math.unit(8, "feet"),
  16236. default: true
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16242. {
  16243. front: {
  16244. height: math.unit(7, "feet"),
  16245. weight: math.unit(130, "lb"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/anna/front.svg",
  16249. extra: 169 / 145,
  16250. bottom: 0.06
  16251. }
  16252. },
  16253. full: {
  16254. height: math.unit(4.96, "feet"),
  16255. weight: math.unit(220, "lb"),
  16256. name: "Full",
  16257. image: {
  16258. source: "./media/characters/anna/full.svg",
  16259. extra: 138 / 114,
  16260. bottom: 0.15
  16261. }
  16262. },
  16263. tongue: {
  16264. height: math.unit(2.53, "feet"),
  16265. name: "Tongue",
  16266. image: {
  16267. source: "./media/characters/anna/tongue.svg"
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(7, "feet"),
  16275. default: true
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16281. {
  16282. front: {
  16283. height: math.unit(7, "feet"),
  16284. weight: math.unit(150, "lb"),
  16285. name: "Front",
  16286. image: {
  16287. source: "./media/characters/ian-corvid/front.svg",
  16288. extra: 150 / 142,
  16289. bottom: 0.02
  16290. }
  16291. },
  16292. back: {
  16293. height: math.unit(7, "feet"),
  16294. weight: math.unit(150, "lb"),
  16295. name: "Back",
  16296. image: {
  16297. source: "./media/characters/ian-corvid/back.svg",
  16298. extra: 150 / 143,
  16299. bottom: 0.01
  16300. }
  16301. },
  16302. stomping: {
  16303. height: math.unit(7, "feet"),
  16304. weight: math.unit(150, "lb"),
  16305. name: "Stomping",
  16306. image: {
  16307. source: "./media/characters/ian-corvid/stomping.svg",
  16308. extra: 76 / 72
  16309. }
  16310. },
  16311. sitting: {
  16312. height: math.unit(7 / 1.8, "feet"),
  16313. weight: math.unit(150, "lb"),
  16314. name: "Sitting",
  16315. image: {
  16316. source: "./media/characters/ian-corvid/sitting.svg",
  16317. extra: 1400 / 1269,
  16318. bottom: 0.15
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Tiny Microw",
  16325. height: math.unit(1, "inch")
  16326. },
  16327. {
  16328. name: "Microw",
  16329. height: math.unit(6, "inches")
  16330. },
  16331. {
  16332. name: "Crow",
  16333. height: math.unit(7 + 1 / 12, "feet"),
  16334. default: true
  16335. },
  16336. {
  16337. name: "Macrow",
  16338. height: math.unit(176, "feet")
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(5 + 7 / 12, "feet"),
  16347. weight: math.unit(147, "lb"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/natalie-kellon/front.svg",
  16351. extra: 1214 / 1141,
  16352. bottom: 0.02
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Micro",
  16359. height: math.unit(1 / 16, "inch")
  16360. },
  16361. {
  16362. name: "Tiny",
  16363. height: math.unit(4, "inches")
  16364. },
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(5 + 7 / 12, "feet"),
  16368. default: true
  16369. },
  16370. {
  16371. name: "Amazon",
  16372. height: math.unit(12, "feet")
  16373. },
  16374. {
  16375. name: "Giantess",
  16376. height: math.unit(160, "meters")
  16377. },
  16378. {
  16379. name: "Titaness",
  16380. height: math.unit(800, "meters")
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6, "feet"),
  16389. weight: math.unit(150, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/alluria/front.svg",
  16393. extra: 806 / 738,
  16394. bottom: 0.01
  16395. }
  16396. },
  16397. side: {
  16398. height: math.unit(6, "feet"),
  16399. weight: math.unit(150, "lb"),
  16400. name: "Side",
  16401. image: {
  16402. source: "./media/characters/alluria/side.svg",
  16403. extra: 800 / 750,
  16404. }
  16405. },
  16406. back: {
  16407. height: math.unit(6, "feet"),
  16408. weight: math.unit(150, "lb"),
  16409. name: "Back",
  16410. image: {
  16411. source: "./media/characters/alluria/back.svg",
  16412. extra: 806 / 738,
  16413. }
  16414. },
  16415. frontMaid: {
  16416. height: math.unit(6, "feet"),
  16417. weight: math.unit(150, "lb"),
  16418. name: "Front (Maid)",
  16419. image: {
  16420. source: "./media/characters/alluria/front-maid.svg",
  16421. extra: 806 / 738,
  16422. bottom: 0.01
  16423. }
  16424. },
  16425. sideMaid: {
  16426. height: math.unit(6, "feet"),
  16427. weight: math.unit(150, "lb"),
  16428. name: "Side (Maid)",
  16429. image: {
  16430. source: "./media/characters/alluria/side-maid.svg",
  16431. extra: 800 / 750,
  16432. bottom: 0.005
  16433. }
  16434. },
  16435. backMaid: {
  16436. height: math.unit(6, "feet"),
  16437. weight: math.unit(150, "lb"),
  16438. name: "Back (Maid)",
  16439. image: {
  16440. source: "./media/characters/alluria/back-maid.svg",
  16441. extra: 806 / 738,
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Micro",
  16448. height: math.unit(6, "inches"),
  16449. default: true
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(6, "feet"),
  16458. weight: math.unit(150, "lb"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/kyle/front.svg",
  16462. extra: 1069 / 962,
  16463. bottom: 77.228 / 1727.45
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Macro",
  16470. height: math.unit(150, "feet"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(6, "feet"),
  16480. weight: math.unit(300, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/duncan/front.svg",
  16484. extra: 1650 / 1482,
  16485. bottom: 0.05
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Macro",
  16492. height: math.unit(100, "feet"),
  16493. default: true
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16499. {
  16500. front: {
  16501. height: math.unit(5 + 4 / 12, "feet"),
  16502. weight: math.unit(220, "lb"),
  16503. name: "Front",
  16504. image: {
  16505. source: "./media/characters/memory/front.svg",
  16506. extra: 3641 / 3545,
  16507. bottom: 0.03
  16508. }
  16509. },
  16510. back: {
  16511. height: math.unit(5 + 4 / 12, "feet"),
  16512. weight: math.unit(220, "lb"),
  16513. name: "Back",
  16514. image: {
  16515. source: "./media/characters/memory/back.svg",
  16516. extra: 3641 / 3545,
  16517. bottom: 0.025
  16518. }
  16519. },
  16520. frontSkirt: {
  16521. height: math.unit(5 + 4 / 12, "feet"),
  16522. weight: math.unit(220, "lb"),
  16523. name: "Front (Skirt)",
  16524. image: {
  16525. source: "./media/characters/memory/front-skirt.svg",
  16526. extra: 3641 / 3545,
  16527. bottom: 0.03
  16528. }
  16529. },
  16530. frontDress: {
  16531. height: math.unit(5 + 4 / 12, "feet"),
  16532. weight: math.unit(220, "lb"),
  16533. name: "Front (Dress)",
  16534. image: {
  16535. source: "./media/characters/memory/front-dress.svg",
  16536. extra: 3641 / 3545,
  16537. bottom: 0.03
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Micro",
  16544. height: math.unit(6, "inches"),
  16545. default: true
  16546. },
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(5 + 4 / 12, "feet")
  16550. },
  16551. ]
  16552. ))
  16553. characterMakers.push(() => makeCharacter(
  16554. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16555. {
  16556. front: {
  16557. height: math.unit(4 + 11 / 12, "feet"),
  16558. weight: math.unit(100, "lb"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/luno/front.svg",
  16562. extra: 1535 / 1487,
  16563. bottom: 0.03
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Micro",
  16570. height: math.unit(3, "inches")
  16571. },
  16572. {
  16573. name: "Normal",
  16574. height: math.unit(4 + 11 / 12, "feet"),
  16575. default: true
  16576. },
  16577. {
  16578. name: "Macro",
  16579. height: math.unit(300, "feet")
  16580. },
  16581. {
  16582. name: "Megamacro",
  16583. height: math.unit(700, "miles")
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16589. {
  16590. front: {
  16591. height: math.unit(6 + 2 / 12, "feet"),
  16592. weight: math.unit(170, "lb"),
  16593. name: "Front",
  16594. image: {
  16595. source: "./media/characters/jamesy/front.svg",
  16596. extra: 440 / 382,
  16597. bottom: 0.005
  16598. }
  16599. },
  16600. },
  16601. [
  16602. {
  16603. name: "Micro",
  16604. height: math.unit(3, "inches")
  16605. },
  16606. {
  16607. name: "Normal",
  16608. height: math.unit(6 + 2 / 12, "feet"),
  16609. default: true
  16610. },
  16611. {
  16612. name: "Macro",
  16613. height: math.unit(300, "feet")
  16614. },
  16615. {
  16616. name: "Megamacro",
  16617. height: math.unit(700, "miles")
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16623. {
  16624. front: {
  16625. height: math.unit(6, "feet"),
  16626. weight: math.unit(160, "lb"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/mark/front.svg",
  16630. extra: 3300 / 3100,
  16631. bottom: 136.42 / 3440.47
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Macro",
  16638. height: math.unit(120, "meters")
  16639. },
  16640. {
  16641. name: "Bigger Macro",
  16642. height: math.unit(350, "meters")
  16643. },
  16644. {
  16645. name: "Megamacro",
  16646. height: math.unit(8, "km"),
  16647. default: true
  16648. },
  16649. {
  16650. name: "Continental",
  16651. height: math.unit(4550, "km")
  16652. },
  16653. {
  16654. name: "Planetary",
  16655. height: math.unit(65000, "km")
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16661. {
  16662. front: {
  16663. height: math.unit(6, "feet"),
  16664. weight: math.unit(400, "lb"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/mac/front.svg",
  16668. extra: 1048 / 987.7,
  16669. bottom: 60 / 1107.6,
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Macro",
  16676. height: math.unit(500, "feet"),
  16677. default: true
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(5 + 2 / 12, "feet"),
  16686. weight: math.unit(190, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/bari/front.svg",
  16690. extra: 3156 / 2880,
  16691. bottom: 0.03
  16692. }
  16693. },
  16694. back: {
  16695. height: math.unit(5 + 2 / 12, "feet"),
  16696. weight: math.unit(190, "lb"),
  16697. name: "Back",
  16698. image: {
  16699. source: "./media/characters/bari/back.svg",
  16700. extra: 3260 / 2834,
  16701. bottom: 0.025
  16702. }
  16703. },
  16704. frontPlush: {
  16705. height: math.unit(5 + 2 / 12, "feet"),
  16706. weight: math.unit(190, "lb"),
  16707. name: "Front (Plush)",
  16708. image: {
  16709. source: "./media/characters/bari/front-plush.svg",
  16710. extra: 1112 / 1061,
  16711. bottom: 0.002
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Micro",
  16718. height: math.unit(3, "inches")
  16719. },
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(5 + 2 / 12, "feet"),
  16723. default: true
  16724. },
  16725. {
  16726. name: "Macro",
  16727. height: math.unit(20, "feet")
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16733. {
  16734. front: {
  16735. height: math.unit(6 + 1 / 12, "feet"),
  16736. weight: math.unit(275, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/hunter-misha-raven/front.svg"
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Mortal",
  16746. height: math.unit(6 + 1 / 12, "feet")
  16747. },
  16748. {
  16749. name: "Divine",
  16750. height: math.unit(1.12134e34, "parsecs"),
  16751. default: true
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16757. {
  16758. front: {
  16759. height: math.unit(6 + 3 / 12, "feet"),
  16760. weight: math.unit(220, "lb"),
  16761. name: "Front",
  16762. image: {
  16763. source: "./media/characters/max-calore/front.svg",
  16764. extra: 1700 / 1648,
  16765. bottom: 0.01
  16766. }
  16767. },
  16768. back: {
  16769. height: math.unit(6 + 3 / 12, "feet"),
  16770. weight: math.unit(220, "lb"),
  16771. name: "Back",
  16772. image: {
  16773. source: "./media/characters/max-calore/back.svg",
  16774. extra: 1700 / 1648,
  16775. bottom: 0.01
  16776. }
  16777. },
  16778. },
  16779. [
  16780. {
  16781. name: "Normal",
  16782. height: math.unit(6 + 3 / 12, "feet"),
  16783. default: true
  16784. },
  16785. ]
  16786. ))
  16787. characterMakers.push(() => makeCharacter(
  16788. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16789. {
  16790. side: {
  16791. height: math.unit(2 + 8 / 12, "feet"),
  16792. weight: math.unit(99, "lb"),
  16793. name: "Side",
  16794. image: {
  16795. source: "./media/characters/aspen/side.svg",
  16796. extra: 152 / 138,
  16797. bottom: 0.032
  16798. }
  16799. },
  16800. },
  16801. [
  16802. {
  16803. name: "Normal",
  16804. height: math.unit(2 + 8 / 12, "feet"),
  16805. default: true
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16811. {
  16812. side: {
  16813. height: math.unit(3 + 2 / 12, "feet"),
  16814. weight: math.unit(224, "lb"),
  16815. name: "Side",
  16816. image: {
  16817. source: "./media/characters/sheila-feral-wolf/side.svg",
  16818. extra: 179 / 166,
  16819. bottom: 0.03
  16820. }
  16821. },
  16822. },
  16823. [
  16824. {
  16825. name: "Normal",
  16826. height: math.unit(3 + 2 / 12, "feet"),
  16827. default: true
  16828. },
  16829. ]
  16830. ))
  16831. characterMakers.push(() => makeCharacter(
  16832. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16833. {
  16834. side: {
  16835. height: math.unit(1 + 9 / 12, "feet"),
  16836. weight: math.unit(38, "lb"),
  16837. name: "Side",
  16838. image: {
  16839. source: "./media/characters/michelle/side.svg",
  16840. extra: 147 / 136.7,
  16841. bottom: 0.03
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(1 + 9 / 12, "feet"),
  16849. default: true
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16855. {
  16856. front: {
  16857. height: math.unit(1 + 1 / 12, "feet"),
  16858. weight: math.unit(18, "lb"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/nino/front.svg"
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(1 + 1 / 12, "feet"),
  16869. default: true
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16875. {
  16876. front: {
  16877. height: math.unit(1, "feet"),
  16878. weight: math.unit(16, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/viola/front.svg"
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(1, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(6 + 5 / 12, "feet"),
  16898. weight: math.unit(580, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/atlas/front.svg",
  16902. extra: 298.5 / 290,
  16903. bottom: 0.015
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(6 + 5 / 12, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16917. {
  16918. side: {
  16919. height: math.unit(1 + 10 / 12, "feet"),
  16920. weight: math.unit(25, "lb"),
  16921. name: "Side",
  16922. image: {
  16923. source: "./media/characters/davy/side.svg",
  16924. extra: 200 / 170,
  16925. bottom: 0.01
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(1 + 10 / 12, "feet"),
  16933. default: true
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16939. {
  16940. side: {
  16941. height: math.unit(4 + 8 / 12, "feet"),
  16942. weight: math.unit(166, "lb"),
  16943. name: "Side",
  16944. image: {
  16945. source: "./media/characters/fiona/side.svg",
  16946. extra: 232 / 220,
  16947. bottom: 0.03
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(4 + 8 / 12, "feet"),
  16955. default: true
  16956. },
  16957. ]
  16958. ))
  16959. characterMakers.push(() => makeCharacter(
  16960. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16961. {
  16962. front: {
  16963. height: math.unit(2, "feet"),
  16964. weight: math.unit(62, "lb"),
  16965. name: "Front",
  16966. image: {
  16967. source: "./media/characters/lyla/front.svg",
  16968. bottom: 0.1
  16969. }
  16970. },
  16971. },
  16972. [
  16973. {
  16974. name: "Normal",
  16975. height: math.unit(2, "feet"),
  16976. default: true
  16977. },
  16978. ]
  16979. ))
  16980. characterMakers.push(() => makeCharacter(
  16981. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16982. {
  16983. side: {
  16984. height: math.unit(1.8, "feet"),
  16985. weight: math.unit(44, "lb"),
  16986. name: "Side",
  16987. image: {
  16988. source: "./media/characters/perseus/side.svg",
  16989. bottom: 0.21
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Normal",
  16996. height: math.unit(1.8, "feet"),
  16997. default: true
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17003. {
  17004. side: {
  17005. height: math.unit(4 + 2 / 12, "feet"),
  17006. weight: math.unit(20, "lb"),
  17007. name: "Side",
  17008. image: {
  17009. source: "./media/characters/remus/side.svg"
  17010. }
  17011. },
  17012. },
  17013. [
  17014. {
  17015. name: "Normal",
  17016. height: math.unit(4 + 2 / 12, "feet"),
  17017. default: true
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17023. {
  17024. front: {
  17025. height: math.unit(4 + 11 / 12, "feet"),
  17026. weight: math.unit(114, "lb"),
  17027. name: "Front",
  17028. image: {
  17029. source: "./media/characters/raf/front.svg",
  17030. bottom: 20.5 / 1863
  17031. }
  17032. },
  17033. side: {
  17034. height: math.unit(4 + 11 / 12, "feet"),
  17035. weight: math.unit(114, "lb"),
  17036. name: "Side",
  17037. image: {
  17038. source: "./media/characters/raf/side.svg",
  17039. bottom: 22 / 1822
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Micro",
  17046. height: math.unit(2, "inches")
  17047. },
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(4 + 11 / 12, "feet"),
  17051. default: true
  17052. },
  17053. {
  17054. name: "Macro",
  17055. height: math.unit(70, "feet")
  17056. },
  17057. ]
  17058. ))
  17059. characterMakers.push(() => makeCharacter(
  17060. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17061. {
  17062. front: {
  17063. height: math.unit(1.5, "meters"),
  17064. weight: math.unit(68, "kg"),
  17065. name: "Front",
  17066. image: {
  17067. source: "./media/characters/liam-einarr/front.svg",
  17068. extra: 2822 / 2666
  17069. }
  17070. },
  17071. back: {
  17072. height: math.unit(1.5, "meters"),
  17073. weight: math.unit(68, "kg"),
  17074. name: "Back",
  17075. image: {
  17076. source: "./media/characters/liam-einarr/back.svg",
  17077. extra: 2822 / 2666,
  17078. bottom: 0.015
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(1.5, "meters"),
  17086. default: true
  17087. },
  17088. {
  17089. name: "Macro",
  17090. height: math.unit(150, "meters")
  17091. },
  17092. {
  17093. name: "Megamacro",
  17094. height: math.unit(35, "km")
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(6, "feet"),
  17103. weight: math.unit(75, "kg"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/linda/front.svg",
  17107. extra: 930 / 874,
  17108. bottom: 0.004
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(6, "feet"),
  17116. default: true
  17117. },
  17118. ]
  17119. ))
  17120. characterMakers.push(() => makeCharacter(
  17121. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17122. {
  17123. front: {
  17124. height: math.unit(6 + 8 / 12, "feet"),
  17125. weight: math.unit(220, "lb"),
  17126. name: "Front",
  17127. image: {
  17128. source: "./media/characters/caylex/front.svg",
  17129. extra: 821 / 772,
  17130. bottom: 0.07
  17131. }
  17132. },
  17133. back: {
  17134. height: math.unit(6 + 8 / 12, "feet"),
  17135. weight: math.unit(220, "lb"),
  17136. name: "Back",
  17137. image: {
  17138. source: "./media/characters/caylex/back.svg",
  17139. extra: 821 / 772,
  17140. bottom: 0.022
  17141. }
  17142. },
  17143. hand: {
  17144. height: math.unit(1.25, "feet"),
  17145. name: "Hand",
  17146. image: {
  17147. source: "./media/characters/caylex/hand.svg"
  17148. }
  17149. },
  17150. foot: {
  17151. height: math.unit(1.6, "feet"),
  17152. name: "Foot",
  17153. image: {
  17154. source: "./media/characters/caylex/foot.svg"
  17155. }
  17156. },
  17157. armored: {
  17158. height: math.unit(6 + 8 / 12, "feet"),
  17159. weight: math.unit(250, "lb"),
  17160. name: "Armored",
  17161. image: {
  17162. source: "./media/characters/caylex/armored.svg",
  17163. extra: 1420 / 1310,
  17164. bottom: 0.045
  17165. }
  17166. },
  17167. },
  17168. [
  17169. {
  17170. name: "Normal",
  17171. height: math.unit(6 + 8 / 12, "feet"),
  17172. default: true
  17173. },
  17174. {
  17175. name: "Normal+",
  17176. height: math.unit(12, "feet")
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17182. {
  17183. front: {
  17184. height: math.unit(7 + 6 / 12, "feet"),
  17185. weight: math.unit(288, "lb"),
  17186. name: "Front",
  17187. image: {
  17188. source: "./media/characters/alana/front.svg",
  17189. extra: 679 / 653,
  17190. bottom: 22.5 / 701
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Normal",
  17197. height: math.unit(7 + 6 / 12, "feet")
  17198. },
  17199. {
  17200. name: "Large",
  17201. height: math.unit(50, "feet")
  17202. },
  17203. {
  17204. name: "Macro",
  17205. height: math.unit(100, "feet"),
  17206. default: true
  17207. },
  17208. {
  17209. name: "Macro+",
  17210. height: math.unit(200, "feet")
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(6 + 1 / 12, "feet"),
  17219. weight: math.unit(210, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/hasani/front.svg",
  17223. extra: 244 / 232,
  17224. bottom: 0.01
  17225. }
  17226. },
  17227. back: {
  17228. height: math.unit(6 + 1 / 12, "feet"),
  17229. weight: math.unit(210, "lb"),
  17230. name: "Back",
  17231. image: {
  17232. source: "./media/characters/hasani/back.svg",
  17233. extra: 244 / 232,
  17234. bottom: 0.01
  17235. }
  17236. },
  17237. },
  17238. [
  17239. {
  17240. name: "Normal",
  17241. height: math.unit(6 + 1 / 12, "feet")
  17242. },
  17243. {
  17244. name: "Macro",
  17245. height: math.unit(175, "feet"),
  17246. default: true
  17247. },
  17248. ]
  17249. ))
  17250. characterMakers.push(() => makeCharacter(
  17251. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17252. {
  17253. front: {
  17254. height: math.unit(1.82, "meters"),
  17255. weight: math.unit(140, "lb"),
  17256. name: "Front",
  17257. image: {
  17258. source: "./media/characters/nita/front.svg",
  17259. extra: 2473 / 2363,
  17260. bottom: 0.01
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(1.82, "m")
  17268. },
  17269. {
  17270. name: "Macro",
  17271. height: math.unit(300, "m")
  17272. },
  17273. {
  17274. name: "Mistake Canon",
  17275. height: math.unit(0.5, "miles"),
  17276. default: true
  17277. },
  17278. {
  17279. name: "Big Mistake",
  17280. height: math.unit(13, "miles")
  17281. },
  17282. {
  17283. name: "Playing God",
  17284. height: math.unit(2450, "miles")
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17290. {
  17291. front: {
  17292. height: math.unit(4, "feet"),
  17293. weight: math.unit(120, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/shiriko/front.svg",
  17297. extra: 970/934,
  17298. bottom: 5/975
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(4, "feet"),
  17306. default: true
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17312. {
  17313. front: {
  17314. height: math.unit(6, "feet"),
  17315. name: "front",
  17316. image: {
  17317. source: "./media/characters/deja/front.svg",
  17318. extra: 926 / 840,
  17319. bottom: 0.07
  17320. }
  17321. },
  17322. },
  17323. [
  17324. {
  17325. name: "Planck Length",
  17326. height: math.unit(1.6e-35, "meters")
  17327. },
  17328. {
  17329. name: "Normal",
  17330. height: math.unit(30.48, "meters"),
  17331. default: true
  17332. },
  17333. {
  17334. name: "Universal",
  17335. height: math.unit(8.8e26, "meters")
  17336. },
  17337. ]
  17338. ))
  17339. characterMakers.push(() => makeCharacter(
  17340. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17341. {
  17342. side: {
  17343. height: math.unit(8, "feet"),
  17344. weight: math.unit(6300, "lb"),
  17345. name: "Side",
  17346. image: {
  17347. source: "./media/characters/anima/side.svg",
  17348. bottom: 0.035
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(8, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(8, "feet"),
  17365. weight: math.unit(350, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/bianca/front.svg",
  17369. extra: 234 / 225,
  17370. bottom: 0.03
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(8, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17384. {
  17385. front: {
  17386. height: math.unit(6, "feet"),
  17387. weight: math.unit(150, "lb"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/adinia/front.svg",
  17391. extra: 1845 / 1672,
  17392. bottom: 0.02
  17393. }
  17394. },
  17395. back: {
  17396. height: math.unit(6, "feet"),
  17397. weight: math.unit(150, "lb"),
  17398. name: "Back",
  17399. image: {
  17400. source: "./media/characters/adinia/back.svg",
  17401. extra: 1845 / 1672,
  17402. bottom: 0.002
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(11 + 5 / 12, "feet"),
  17410. default: true
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(3, "meters"),
  17419. weight: math.unit(200, "kg"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/lykasa/front.svg",
  17423. extra: 1076 / 976,
  17424. bottom: 0.06
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(3, "meters")
  17432. },
  17433. {
  17434. name: "Kaiju",
  17435. height: math.unit(120, "meters"),
  17436. default: true
  17437. },
  17438. {
  17439. name: "Mega Kaiju",
  17440. height: math.unit(240, "km")
  17441. },
  17442. {
  17443. name: "Giga Kaiju",
  17444. height: math.unit(400, "megameters")
  17445. },
  17446. {
  17447. name: "Tera Kaiju",
  17448. height: math.unit(800, "gigameters")
  17449. },
  17450. {
  17451. name: "Kaiju Dragon Goddess",
  17452. height: math.unit(26, "zettaparsecs")
  17453. },
  17454. ]
  17455. ))
  17456. characterMakers.push(() => makeCharacter(
  17457. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17458. {
  17459. side: {
  17460. height: math.unit(283 / 124 * 6, "feet"),
  17461. weight: math.unit(35000, "lb"),
  17462. name: "Side",
  17463. image: {
  17464. source: "./media/characters/malfaren/side.svg",
  17465. extra: 2500 / 1010,
  17466. bottom: 0.01
  17467. }
  17468. },
  17469. front: {
  17470. height: math.unit(22.36, "feet"),
  17471. weight: math.unit(35000, "lb"),
  17472. name: "Front",
  17473. image: {
  17474. source: "./media/characters/malfaren/front.svg",
  17475. extra: 1631 / 1476,
  17476. bottom: 0.01
  17477. }
  17478. },
  17479. maw: {
  17480. height: math.unit(6.9, "feet"),
  17481. name: "Maw",
  17482. image: {
  17483. source: "./media/characters/malfaren/maw.svg"
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Big",
  17490. height: math.unit(283 / 162 * 6, "feet"),
  17491. },
  17492. {
  17493. name: "Bigger",
  17494. height: math.unit(283 / 124 * 6, "feet")
  17495. },
  17496. {
  17497. name: "Massive",
  17498. height: math.unit(283 / 92 * 6, "feet"),
  17499. default: true
  17500. },
  17501. {
  17502. name: "👀💦",
  17503. height: math.unit(283 / 73 * 6, "feet"),
  17504. },
  17505. ]
  17506. ))
  17507. characterMakers.push(() => makeCharacter(
  17508. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17509. {
  17510. front: {
  17511. height: math.unit(1.7, "m"),
  17512. weight: math.unit(70, "kg"),
  17513. name: "Front",
  17514. image: {
  17515. source: "./media/characters/kernel/front.svg",
  17516. extra: 222 / 210,
  17517. bottom: 0.007
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Nano",
  17524. height: math.unit(17, "micrometers")
  17525. },
  17526. {
  17527. name: "Micro",
  17528. height: math.unit(1.7, "mm")
  17529. },
  17530. {
  17531. name: "Small",
  17532. height: math.unit(1.7, "cm")
  17533. },
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(1.7, "m"),
  17537. default: true
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17543. {
  17544. front: {
  17545. height: math.unit(1.75, "meters"),
  17546. weight: math.unit(65, "kg"),
  17547. name: "Front",
  17548. image: {
  17549. source: "./media/characters/jayne-folest/front.svg",
  17550. extra: 2115 / 2007,
  17551. bottom: 0.02
  17552. }
  17553. },
  17554. back: {
  17555. height: math.unit(1.75, "meters"),
  17556. weight: math.unit(65, "kg"),
  17557. name: "Back",
  17558. image: {
  17559. source: "./media/characters/jayne-folest/back.svg",
  17560. extra: 2115 / 2007,
  17561. bottom: 0.005
  17562. }
  17563. },
  17564. frontClothed: {
  17565. height: math.unit(1.75, "meters"),
  17566. weight: math.unit(65, "kg"),
  17567. name: "Front (Clothed)",
  17568. image: {
  17569. source: "./media/characters/jayne-folest/front-clothed.svg",
  17570. extra: 2115 / 2007,
  17571. bottom: 0.035
  17572. }
  17573. },
  17574. hand: {
  17575. height: math.unit(1 / 1.260, "feet"),
  17576. name: "Hand",
  17577. image: {
  17578. source: "./media/characters/jayne-folest/hand.svg"
  17579. }
  17580. },
  17581. foot: {
  17582. height: math.unit(1 / 0.918, "feet"),
  17583. name: "Foot",
  17584. image: {
  17585. source: "./media/characters/jayne-folest/foot.svg"
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Micro",
  17592. height: math.unit(4, "cm")
  17593. },
  17594. {
  17595. name: "Normal",
  17596. height: math.unit(1.75, "meters")
  17597. },
  17598. {
  17599. name: "Macro",
  17600. height: math.unit(47.5, "meters"),
  17601. default: true
  17602. },
  17603. ]
  17604. ))
  17605. characterMakers.push(() => makeCharacter(
  17606. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17607. {
  17608. front: {
  17609. height: math.unit(180, "cm"),
  17610. weight: math.unit(70, "kg"),
  17611. name: "Front",
  17612. image: {
  17613. source: "./media/characters/algier/front.svg",
  17614. extra: 596 / 572,
  17615. bottom: 0.04
  17616. }
  17617. },
  17618. back: {
  17619. height: math.unit(180, "cm"),
  17620. weight: math.unit(70, "kg"),
  17621. name: "Back",
  17622. image: {
  17623. source: "./media/characters/algier/back.svg",
  17624. extra: 596 / 572,
  17625. bottom: 0.025
  17626. }
  17627. },
  17628. frontdressed: {
  17629. height: math.unit(180, "cm"),
  17630. weight: math.unit(150, "kg"),
  17631. name: "Front-dressed",
  17632. image: {
  17633. source: "./media/characters/algier/front-dressed.svg",
  17634. extra: 596 / 572,
  17635. bottom: 0.038
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Micro",
  17642. height: math.unit(5, "cm")
  17643. },
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(180, "cm"),
  17647. default: true
  17648. },
  17649. {
  17650. name: "Macro",
  17651. height: math.unit(64, "m")
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17657. {
  17658. upright: {
  17659. height: math.unit(7, "feet"),
  17660. weight: math.unit(300, "lb"),
  17661. name: "Upright",
  17662. image: {
  17663. source: "./media/characters/pretzel/upright.svg",
  17664. extra: 534 / 522,
  17665. bottom: 0.065
  17666. }
  17667. },
  17668. sprawling: {
  17669. height: math.unit(3.75, "feet"),
  17670. weight: math.unit(300, "lb"),
  17671. name: "Sprawling",
  17672. image: {
  17673. source: "./media/characters/pretzel/sprawling.svg",
  17674. extra: 314 / 281,
  17675. bottom: 0.1
  17676. }
  17677. },
  17678. tongue: {
  17679. height: math.unit(2, "feet"),
  17680. name: "Tongue",
  17681. image: {
  17682. source: "./media/characters/pretzel/tongue.svg"
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Normal",
  17689. height: math.unit(7, "feet"),
  17690. default: true
  17691. },
  17692. {
  17693. name: "Oversized",
  17694. height: math.unit(15, "feet")
  17695. },
  17696. {
  17697. name: "Huge",
  17698. height: math.unit(30, "feet")
  17699. },
  17700. {
  17701. name: "Macro",
  17702. height: math.unit(250, "feet")
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17708. {
  17709. sideFront: {
  17710. height: math.unit(5 + 2 / 12, "feet"),
  17711. weight: math.unit(120, "lb"),
  17712. name: "Front Side",
  17713. image: {
  17714. source: "./media/characters/roxi/side-front.svg",
  17715. extra: 2924 / 2717,
  17716. bottom: 0.08
  17717. }
  17718. },
  17719. sideBack: {
  17720. height: math.unit(5 + 2 / 12, "feet"),
  17721. weight: math.unit(120, "lb"),
  17722. name: "Back Side",
  17723. image: {
  17724. source: "./media/characters/roxi/side-back.svg",
  17725. extra: 2904 / 2693,
  17726. bottom: 0.06
  17727. }
  17728. },
  17729. front: {
  17730. height: math.unit(5 + 2 / 12, "feet"),
  17731. weight: math.unit(120, "lb"),
  17732. name: "Front",
  17733. image: {
  17734. source: "./media/characters/roxi/front.svg",
  17735. extra: 2028 / 1907,
  17736. bottom: 0.01
  17737. }
  17738. },
  17739. frontAlt: {
  17740. height: math.unit(5 + 2 / 12, "feet"),
  17741. weight: math.unit(120, "lb"),
  17742. name: "Front (Alt)",
  17743. image: {
  17744. source: "./media/characters/roxi/front-alt.svg",
  17745. extra: 1828 / 1798,
  17746. bottom: 0.01
  17747. }
  17748. },
  17749. sitting: {
  17750. height: math.unit(2.8, "feet"),
  17751. weight: math.unit(120, "lb"),
  17752. name: "Sitting",
  17753. image: {
  17754. source: "./media/characters/roxi/sitting.svg",
  17755. extra: 2660 / 2462,
  17756. bottom: 0.1
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(5 + 2 / 12, "feet"),
  17764. default: true
  17765. },
  17766. ]
  17767. ))
  17768. characterMakers.push(() => makeCharacter(
  17769. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17770. {
  17771. side: {
  17772. height: math.unit(55, "feet"),
  17773. weight: math.unit(153, "tons"),
  17774. name: "Side",
  17775. image: {
  17776. source: "./media/characters/shadow/side.svg",
  17777. extra: 701 / 628,
  17778. bottom: 0.02
  17779. }
  17780. },
  17781. flying: {
  17782. height: math.unit(145, "feet"),
  17783. weight: math.unit(153, "tons"),
  17784. name: "Flying",
  17785. image: {
  17786. source: "./media/characters/shadow/flying.svg"
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(55, "feet"),
  17794. default: true
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(6, "feet"),
  17803. weight: math.unit(200, "lb"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/marcie/front.svg",
  17807. extra: 960 / 876,
  17808. bottom: 58 / 1017.87
  17809. }
  17810. },
  17811. },
  17812. [
  17813. {
  17814. name: "Macro",
  17815. height: math.unit(1, "mile"),
  17816. default: true
  17817. },
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17822. {
  17823. front: {
  17824. height: math.unit(7, "feet"),
  17825. weight: math.unit(200, "lb"),
  17826. name: "Front",
  17827. image: {
  17828. source: "./media/characters/kachina/front.svg",
  17829. extra: 1290.68 / 1119,
  17830. bottom: 36.5 / 1327.18
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Normal",
  17837. height: math.unit(7, "feet"),
  17838. default: true
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17844. {
  17845. looking: {
  17846. height: math.unit(2, "meters"),
  17847. weight: math.unit(300, "kg"),
  17848. name: "Looking",
  17849. image: {
  17850. source: "./media/characters/kash/looking.svg",
  17851. extra: 474 / 344,
  17852. bottom: 0.03
  17853. }
  17854. },
  17855. side: {
  17856. height: math.unit(2, "meters"),
  17857. weight: math.unit(300, "kg"),
  17858. name: "Side",
  17859. image: {
  17860. source: "./media/characters/kash/side.svg",
  17861. extra: 302 / 251,
  17862. bottom: 0.03
  17863. }
  17864. },
  17865. front: {
  17866. height: math.unit(2, "meters"),
  17867. weight: math.unit(300, "kg"),
  17868. name: "Front",
  17869. image: {
  17870. source: "./media/characters/kash/front.svg",
  17871. extra: 495 / 360,
  17872. bottom: 0.015
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(2, "meters"),
  17880. default: true
  17881. },
  17882. {
  17883. name: "Big",
  17884. height: math.unit(3, "meters")
  17885. },
  17886. {
  17887. name: "Large",
  17888. height: math.unit(5, "meters")
  17889. },
  17890. ]
  17891. ))
  17892. characterMakers.push(() => makeCharacter(
  17893. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17894. {
  17895. feeding: {
  17896. height: math.unit(6.7, "feet"),
  17897. weight: math.unit(350, "lb"),
  17898. name: "Feeding",
  17899. image: {
  17900. source: "./media/characters/lalim/feeding.svg",
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(6.7, "feet"),
  17908. default: true
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17914. {
  17915. front: {
  17916. height: math.unit(9.5, "feet"),
  17917. weight: math.unit(600, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/de'vout/front.svg",
  17921. extra: 1443 / 1328,
  17922. bottom: 0.025
  17923. }
  17924. },
  17925. back: {
  17926. height: math.unit(9.5, "feet"),
  17927. weight: math.unit(600, "lb"),
  17928. name: "Back",
  17929. image: {
  17930. source: "./media/characters/de'vout/back.svg",
  17931. extra: 1443 / 1328
  17932. }
  17933. },
  17934. frontDressed: {
  17935. height: math.unit(9.5, "feet"),
  17936. weight: math.unit(600, "lb"),
  17937. name: "Front (Dressed",
  17938. image: {
  17939. source: "./media/characters/de'vout/front-dressed.svg",
  17940. extra: 1443 / 1328,
  17941. bottom: 0.025
  17942. }
  17943. },
  17944. backDressed: {
  17945. height: math.unit(9.5, "feet"),
  17946. weight: math.unit(600, "lb"),
  17947. name: "Back (Dressed",
  17948. image: {
  17949. source: "./media/characters/de'vout/back-dressed.svg",
  17950. extra: 1443 / 1328
  17951. }
  17952. },
  17953. },
  17954. [
  17955. {
  17956. name: "Normal",
  17957. height: math.unit(9.5, "feet"),
  17958. default: true
  17959. },
  17960. ]
  17961. ))
  17962. characterMakers.push(() => makeCharacter(
  17963. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17964. {
  17965. front: {
  17966. height: math.unit(8, "feet"),
  17967. weight: math.unit(225, "lb"),
  17968. name: "Front",
  17969. image: {
  17970. source: "./media/characters/talana/front.svg",
  17971. extra: 1410 / 1300,
  17972. bottom: 0.015
  17973. }
  17974. },
  17975. frontDressed: {
  17976. height: math.unit(8, "feet"),
  17977. weight: math.unit(225, "lb"),
  17978. name: "Front (Dressed",
  17979. image: {
  17980. source: "./media/characters/talana/front-dressed.svg",
  17981. extra: 1410 / 1300,
  17982. bottom: 0.015
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Normal",
  17989. height: math.unit(8, "feet"),
  17990. default: true
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17996. {
  17997. side: {
  17998. height: math.unit(7.2, "feet"),
  17999. weight: math.unit(150, "lb"),
  18000. name: "Side",
  18001. image: {
  18002. source: "./media/characters/xeauvok/side.svg",
  18003. extra: 1975 / 1523,
  18004. bottom: 0.07
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Normal",
  18011. height: math.unit(7.2, "feet"),
  18012. default: true
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18018. {
  18019. side: {
  18020. height: math.unit(10, "feet"),
  18021. weight: math.unit(900, "kg"),
  18022. name: "Side",
  18023. image: {
  18024. source: "./media/characters/zara/side.svg",
  18025. extra: 504 / 498
  18026. }
  18027. },
  18028. },
  18029. [
  18030. {
  18031. name: "Normal",
  18032. height: math.unit(10, "feet"),
  18033. default: true
  18034. },
  18035. ]
  18036. ))
  18037. characterMakers.push(() => makeCharacter(
  18038. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18039. {
  18040. side: {
  18041. height: math.unit(6, "feet"),
  18042. weight: math.unit(150, "lb"),
  18043. name: "Side",
  18044. image: {
  18045. source: "./media/characters/richard-dragon/side.svg",
  18046. extra: 845 / 340,
  18047. bottom: 0.017
  18048. }
  18049. },
  18050. maw: {
  18051. height: math.unit(2.97, "feet"),
  18052. name: "Maw",
  18053. image: {
  18054. source: "./media/characters/richard-dragon/maw.svg"
  18055. }
  18056. },
  18057. },
  18058. [
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18063. {
  18064. front: {
  18065. height: math.unit(4, "feet"),
  18066. weight: math.unit(100, "lb"),
  18067. name: "Front",
  18068. image: {
  18069. source: "./media/characters/richard-smeargle/front.svg",
  18070. extra: 2952 / 2820,
  18071. bottom: 0.028
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(4, "feet"),
  18079. default: true
  18080. },
  18081. {
  18082. name: "Dynamax",
  18083. height: math.unit(20, "meters")
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(6, "feet"),
  18092. weight: math.unit(110, "lb"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/klay/front.svg",
  18096. extra: 962 / 883,
  18097. bottom: 0.04
  18098. }
  18099. },
  18100. back: {
  18101. height: math.unit(6, "feet"),
  18102. weight: math.unit(110, "lb"),
  18103. name: "Back",
  18104. image: {
  18105. source: "./media/characters/klay/back.svg",
  18106. extra: 962 / 883
  18107. }
  18108. },
  18109. beans: {
  18110. height: math.unit(1.15, "feet"),
  18111. name: "Beans",
  18112. image: {
  18113. source: "./media/characters/klay/beans.svg"
  18114. }
  18115. },
  18116. },
  18117. [
  18118. {
  18119. name: "Micro",
  18120. height: math.unit(6, "inches")
  18121. },
  18122. {
  18123. name: "Mini",
  18124. height: math.unit(3, "feet")
  18125. },
  18126. {
  18127. name: "Normal",
  18128. height: math.unit(6, "feet"),
  18129. default: true
  18130. },
  18131. {
  18132. name: "Big",
  18133. height: math.unit(25, "feet")
  18134. },
  18135. {
  18136. name: "Macro",
  18137. height: math.unit(100, "feet")
  18138. },
  18139. {
  18140. name: "Megamacro",
  18141. height: math.unit(400, "feet")
  18142. },
  18143. ]
  18144. ))
  18145. characterMakers.push(() => makeCharacter(
  18146. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18147. {
  18148. front: {
  18149. height: math.unit(6, "feet"),
  18150. weight: math.unit(160, "lb"),
  18151. name: "Front",
  18152. image: {
  18153. source: "./media/characters/marcus/front.svg",
  18154. extra: 734 / 676,
  18155. bottom: 0.03
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Little",
  18162. height: math.unit(6, "feet")
  18163. },
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(110, "feet"),
  18167. default: true
  18168. },
  18169. {
  18170. name: "Macro",
  18171. height: math.unit(250, "feet")
  18172. },
  18173. {
  18174. name: "Megamacro",
  18175. height: math.unit(1000, "feet")
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18181. {
  18182. front: {
  18183. height: math.unit(7, "feet"),
  18184. weight: math.unit(275, "lb"),
  18185. name: "Front",
  18186. image: {
  18187. source: "./media/characters/claude-delroute/front.svg",
  18188. extra: 230 / 214,
  18189. bottom: 0.007
  18190. }
  18191. },
  18192. side: {
  18193. height: math.unit(7, "feet"),
  18194. weight: math.unit(275, "lb"),
  18195. name: "Side",
  18196. image: {
  18197. source: "./media/characters/claude-delroute/side.svg",
  18198. extra: 222 / 214,
  18199. bottom: 0.01
  18200. }
  18201. },
  18202. back: {
  18203. height: math.unit(7, "feet"),
  18204. weight: math.unit(275, "lb"),
  18205. name: "Back",
  18206. image: {
  18207. source: "./media/characters/claude-delroute/back.svg",
  18208. extra: 230 / 214,
  18209. bottom: 0.015
  18210. }
  18211. },
  18212. maw: {
  18213. height: math.unit(0.6407, "meters"),
  18214. name: "Maw",
  18215. image: {
  18216. source: "./media/characters/claude-delroute/maw.svg"
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Normal",
  18223. height: math.unit(7, "feet"),
  18224. default: true
  18225. },
  18226. {
  18227. name: "Lorge",
  18228. height: math.unit(20, "feet")
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18234. {
  18235. front: {
  18236. height: math.unit(8 + 4 / 12, "feet"),
  18237. weight: math.unit(600, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/dragonien/front.svg",
  18241. extra: 100 / 94,
  18242. bottom: 3.3 / 103.3445
  18243. }
  18244. },
  18245. back: {
  18246. height: math.unit(8 + 4 / 12, "feet"),
  18247. weight: math.unit(600, "lb"),
  18248. name: "Back",
  18249. image: {
  18250. source: "./media/characters/dragonien/back.svg",
  18251. extra: 776 / 746,
  18252. bottom: 6.4 / 782.0616
  18253. }
  18254. },
  18255. foot: {
  18256. height: math.unit(1.54, "feet"),
  18257. name: "Foot",
  18258. image: {
  18259. source: "./media/characters/dragonien/foot.svg",
  18260. }
  18261. },
  18262. },
  18263. [
  18264. {
  18265. name: "Normal",
  18266. height: math.unit(8 + 4 / 12, "feet"),
  18267. default: true
  18268. },
  18269. {
  18270. name: "Macro",
  18271. height: math.unit(200, "feet")
  18272. },
  18273. {
  18274. name: "Megamacro",
  18275. height: math.unit(1, "mile")
  18276. },
  18277. {
  18278. name: "Gigamacro",
  18279. height: math.unit(1000, "miles")
  18280. },
  18281. ]
  18282. ))
  18283. characterMakers.push(() => makeCharacter(
  18284. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18285. {
  18286. front: {
  18287. height: math.unit(5 + 2 / 12, "feet"),
  18288. weight: math.unit(110, "lb"),
  18289. name: "Front",
  18290. image: {
  18291. source: "./media/characters/desta/front.svg",
  18292. extra: 767 / 726,
  18293. bottom: 11.7 / 779
  18294. }
  18295. },
  18296. back: {
  18297. height: math.unit(5 + 2 / 12, "feet"),
  18298. weight: math.unit(110, "lb"),
  18299. name: "Back",
  18300. image: {
  18301. source: "./media/characters/desta/back.svg",
  18302. extra: 777 / 728,
  18303. bottom: 6 / 784
  18304. }
  18305. },
  18306. frontAlt: {
  18307. height: math.unit(5 + 2 / 12, "feet"),
  18308. weight: math.unit(110, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/desta/front-alt.svg",
  18312. extra: 1482 / 1417
  18313. }
  18314. },
  18315. side: {
  18316. height: math.unit(5 + 2 / 12, "feet"),
  18317. weight: math.unit(110, "lb"),
  18318. name: "Side",
  18319. image: {
  18320. source: "./media/characters/desta/side.svg",
  18321. extra: 2579 / 2491,
  18322. bottom: 0.053
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Micro",
  18329. height: math.unit(6, "inches")
  18330. },
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(5 + 2 / 12, "feet"),
  18334. default: true
  18335. },
  18336. {
  18337. name: "Macro",
  18338. height: math.unit(62, "feet")
  18339. },
  18340. {
  18341. name: "Megamacro",
  18342. height: math.unit(1800, "feet")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(10, "feet"),
  18351. weight: math.unit(700, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/storm-alystar/front.svg",
  18355. extra: 2112 / 1898,
  18356. bottom: 0.034
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "Micro",
  18363. height: math.unit(3.5, "inches")
  18364. },
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(10, "feet"),
  18368. default: true
  18369. },
  18370. {
  18371. name: "Macro",
  18372. height: math.unit(400, "feet")
  18373. },
  18374. {
  18375. name: "Deific",
  18376. height: math.unit(60, "miles")
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18382. {
  18383. front: {
  18384. height: math.unit(2.35, "meters"),
  18385. weight: math.unit(119, "kg"),
  18386. name: "Front",
  18387. image: {
  18388. source: "./media/characters/ilia/front.svg",
  18389. extra: 1285 / 1255,
  18390. bottom: 0.06
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(2.35, "meters")
  18398. },
  18399. {
  18400. name: "Macro",
  18401. height: math.unit(140, "meters"),
  18402. default: true
  18403. },
  18404. {
  18405. name: "Megamacro",
  18406. height: math.unit(100, "miles")
  18407. },
  18408. ]
  18409. ))
  18410. characterMakers.push(() => makeCharacter(
  18411. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18412. {
  18413. front: {
  18414. height: math.unit(6 + 5 / 12, "feet"),
  18415. weight: math.unit(190, "lb"),
  18416. name: "Front",
  18417. image: {
  18418. source: "./media/characters/kingdead/front.svg",
  18419. extra: 1228 / 1177
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Micro",
  18426. height: math.unit(7, "inches")
  18427. },
  18428. {
  18429. name: "Normal",
  18430. height: math.unit(6 + 5 / 12, "feet")
  18431. },
  18432. {
  18433. name: "Macro",
  18434. height: math.unit(150, "feet"),
  18435. default: true
  18436. },
  18437. {
  18438. name: "Megamacro",
  18439. height: math.unit(200, "miles")
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(8, "feet"),
  18448. weight: math.unit(600, "lb"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/kyrehx/front.svg",
  18452. extra: 1195 / 1095,
  18453. bottom: 0.034
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Micro",
  18460. height: math.unit(2, "inches")
  18461. },
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(8, "feet"),
  18465. default: true
  18466. },
  18467. {
  18468. name: "Macro",
  18469. height: math.unit(255, "feet")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18475. {
  18476. front: {
  18477. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18478. weight: math.unit(184, "lb"),
  18479. name: "Front",
  18480. image: {
  18481. source: "./media/characters/xang/front.svg",
  18482. extra: 845 / 755
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18490. default: true
  18491. },
  18492. {
  18493. name: "Macro",
  18494. height: math.unit(0.935 * 146, "feet")
  18495. },
  18496. {
  18497. name: "Megamacro",
  18498. height: math.unit(0.935 * 3, "miles")
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18504. {
  18505. frontDressed: {
  18506. height: math.unit(5 + 7 / 12, "feet"),
  18507. weight: math.unit(140, "lb"),
  18508. name: "Front (Dressed)",
  18509. image: {
  18510. source: "./media/characters/doc-weardno/front-dressed.svg",
  18511. extra: 263 / 234
  18512. }
  18513. },
  18514. backDressed: {
  18515. height: math.unit(5 + 7 / 12, "feet"),
  18516. weight: math.unit(140, "lb"),
  18517. name: "Back (Dressed)",
  18518. image: {
  18519. source: "./media/characters/doc-weardno/back-dressed.svg",
  18520. extra: 266 / 238
  18521. }
  18522. },
  18523. front: {
  18524. height: math.unit(5 + 7 / 12, "feet"),
  18525. weight: math.unit(140, "lb"),
  18526. name: "Front",
  18527. image: {
  18528. source: "./media/characters/doc-weardno/front.svg",
  18529. extra: 254 / 233
  18530. }
  18531. },
  18532. },
  18533. [
  18534. {
  18535. name: "Micro",
  18536. height: math.unit(3, "inches")
  18537. },
  18538. {
  18539. name: "Normal",
  18540. height: math.unit(5 + 7 / 12, "feet"),
  18541. default: true
  18542. },
  18543. {
  18544. name: "Macro",
  18545. height: math.unit(25, "feet")
  18546. },
  18547. {
  18548. name: "Megamacro",
  18549. height: math.unit(2, "miles")
  18550. },
  18551. ]
  18552. ))
  18553. characterMakers.push(() => makeCharacter(
  18554. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18555. {
  18556. front: {
  18557. height: math.unit(6 + 2 / 12, "feet"),
  18558. weight: math.unit(153, "lb"),
  18559. name: "Front",
  18560. image: {
  18561. source: "./media/characters/seth-whilst/front.svg",
  18562. bottom: 0.07
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Micro",
  18569. height: math.unit(5, "inches")
  18570. },
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(6 + 2 / 12, "feet"),
  18574. default: true
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(3, "inches"),
  18583. weight: math.unit(8, "grams"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/pocket-jabari/front.svg",
  18587. extra: 1024 / 974,
  18588. bottom: 0.039
  18589. }
  18590. },
  18591. },
  18592. [
  18593. {
  18594. name: "Minimicro",
  18595. height: math.unit(8, "mm")
  18596. },
  18597. {
  18598. name: "Micro",
  18599. height: math.unit(3, "inches"),
  18600. default: true
  18601. },
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(3, "feet")
  18605. },
  18606. ]
  18607. ))
  18608. characterMakers.push(() => makeCharacter(
  18609. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18610. {
  18611. front: {
  18612. height: math.unit(15, "feet"),
  18613. weight: math.unit(3280, "lb"),
  18614. name: "Front",
  18615. image: {
  18616. source: "./media/characters/sapphy/front.svg",
  18617. extra: 671 / 577,
  18618. bottom: 0.085
  18619. }
  18620. },
  18621. back: {
  18622. height: math.unit(15, "feet"),
  18623. weight: math.unit(3280, "lb"),
  18624. name: "Back",
  18625. image: {
  18626. source: "./media/characters/sapphy/back.svg",
  18627. extra: 631 / 607,
  18628. bottom: 0.045
  18629. }
  18630. },
  18631. },
  18632. [
  18633. {
  18634. name: "Normal",
  18635. height: math.unit(15, "feet")
  18636. },
  18637. {
  18638. name: "Casual Macro",
  18639. height: math.unit(120, "feet")
  18640. },
  18641. {
  18642. name: "Macro",
  18643. height: math.unit(2150, "feet"),
  18644. default: true
  18645. },
  18646. {
  18647. name: "Megamacro",
  18648. height: math.unit(8, "miles")
  18649. },
  18650. {
  18651. name: "Galaxy Mom",
  18652. height: math.unit(6, "megalightyears")
  18653. },
  18654. ]
  18655. ))
  18656. characterMakers.push(() => makeCharacter(
  18657. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18658. {
  18659. front: {
  18660. height: math.unit(6, "feet"),
  18661. weight: math.unit(170, "lb"),
  18662. name: "Front",
  18663. image: {
  18664. source: "./media/characters/kiro/front.svg",
  18665. extra: 1064 / 1012,
  18666. bottom: 0.052
  18667. }
  18668. },
  18669. },
  18670. [
  18671. {
  18672. name: "Micro",
  18673. height: math.unit(6, "inches")
  18674. },
  18675. {
  18676. name: "Normal",
  18677. height: math.unit(6, "feet"),
  18678. default: true
  18679. },
  18680. {
  18681. name: "Macro",
  18682. height: math.unit(72, "feet")
  18683. },
  18684. ]
  18685. ))
  18686. characterMakers.push(() => makeCharacter(
  18687. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18688. {
  18689. front: {
  18690. height: math.unit(5 + 9 / 12, "feet"),
  18691. weight: math.unit(175, "lb"),
  18692. name: "Front",
  18693. image: {
  18694. source: "./media/characters/irishfox/front.svg",
  18695. extra: 1912 / 1680,
  18696. bottom: 0.02
  18697. }
  18698. },
  18699. },
  18700. [
  18701. {
  18702. name: "Nano",
  18703. height: math.unit(1, "mm")
  18704. },
  18705. {
  18706. name: "Micro",
  18707. height: math.unit(2, "inches")
  18708. },
  18709. {
  18710. name: "Normal",
  18711. height: math.unit(5 + 9 / 12, "feet"),
  18712. default: true
  18713. },
  18714. {
  18715. name: "Macro",
  18716. height: math.unit(45, "feet")
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(6 + 1 / 12, "feet"),
  18725. weight: math.unit(75, "lb"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/aronai-sieyes/front.svg",
  18729. extra: 1556 / 1480,
  18730. bottom: 0.015
  18731. }
  18732. },
  18733. side: {
  18734. height: math.unit(6 + 1 / 12, "feet"),
  18735. weight: math.unit(75, "lb"),
  18736. name: "Side",
  18737. image: {
  18738. source: "./media/characters/aronai-sieyes/side.svg",
  18739. extra: 1433 / 1390,
  18740. bottom: 0.0393
  18741. }
  18742. },
  18743. back: {
  18744. height: math.unit(6 + 1 / 12, "feet"),
  18745. weight: math.unit(75, "lb"),
  18746. name: "Back",
  18747. image: {
  18748. source: "./media/characters/aronai-sieyes/back.svg",
  18749. extra: 1544 / 1494,
  18750. bottom: 0.02
  18751. }
  18752. },
  18753. frontClothed: {
  18754. height: math.unit(6 + 1 / 12, "feet"),
  18755. weight: math.unit(75, "lb"),
  18756. name: "Front (Clothed)",
  18757. image: {
  18758. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18759. extra: 1582 / 1527
  18760. }
  18761. },
  18762. feral: {
  18763. height: math.unit(18, "feet"),
  18764. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18765. name: "Feral",
  18766. image: {
  18767. source: "./media/characters/aronai-sieyes/feral.svg",
  18768. extra: 1530 / 1240,
  18769. bottom: 0.035
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Micro",
  18776. height: math.unit(2, "inches")
  18777. },
  18778. {
  18779. name: "Normal",
  18780. height: math.unit(6 + 1 / 12, "feet"),
  18781. default: true
  18782. }
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(12, "feet"),
  18790. weight: math.unit(410, "kg"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/xuna/front.svg",
  18794. extra: 2184 / 1980
  18795. }
  18796. },
  18797. side: {
  18798. height: math.unit(12, "feet"),
  18799. weight: math.unit(410, "kg"),
  18800. name: "Side",
  18801. image: {
  18802. source: "./media/characters/xuna/side.svg",
  18803. extra: 2184 / 1980
  18804. }
  18805. },
  18806. back: {
  18807. height: math.unit(12, "feet"),
  18808. weight: math.unit(410, "kg"),
  18809. name: "Back",
  18810. image: {
  18811. source: "./media/characters/xuna/back.svg",
  18812. extra: 2184 / 1980
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Nano glow",
  18819. height: math.unit(10, "nm")
  18820. },
  18821. {
  18822. name: "Micro floof",
  18823. height: math.unit(0.3, "m")
  18824. },
  18825. {
  18826. name: "Huggable softy boi",
  18827. height: math.unit(3.6576, "m"),
  18828. default: true
  18829. },
  18830. {
  18831. name: "Admirable floof",
  18832. height: math.unit(80, "meters")
  18833. },
  18834. {
  18835. name: "Gentle macro",
  18836. height: math.unit(300, "meters")
  18837. },
  18838. {
  18839. name: "Very careful floof",
  18840. height: math.unit(3200, "meters")
  18841. },
  18842. {
  18843. name: "The mega floof",
  18844. height: math.unit(36000, "meters")
  18845. },
  18846. {
  18847. name: "Giga-fur-Wicker",
  18848. height: math.unit(4800000, "meters")
  18849. },
  18850. {
  18851. name: "Licky world",
  18852. height: math.unit(20000000, "meters")
  18853. },
  18854. {
  18855. name: "Floofy cyan sun",
  18856. height: math.unit(1500000000, "meters")
  18857. },
  18858. {
  18859. name: "Milky Wicker",
  18860. height: math.unit(1000000000000000000000, "meters")
  18861. },
  18862. {
  18863. name: "The observing Wicker",
  18864. height: math.unit(999999999999999999999999999, "meters")
  18865. },
  18866. ]
  18867. ))
  18868. characterMakers.push(() => makeCharacter(
  18869. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18870. {
  18871. front: {
  18872. height: math.unit(5 + 9 / 12, "feet"),
  18873. weight: math.unit(150, "lb"),
  18874. name: "Front",
  18875. image: {
  18876. source: "./media/characters/arokha-sieyes/front.svg",
  18877. extra: 1425 / 1284,
  18878. bottom: 0.05
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Normal",
  18885. height: math.unit(5 + 9 / 12, "feet")
  18886. },
  18887. {
  18888. name: "Macro",
  18889. height: math.unit(30, "meters"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18896. {
  18897. front: {
  18898. height: math.unit(6, "feet"),
  18899. weight: math.unit(180, "lb"),
  18900. name: "Front",
  18901. image: {
  18902. source: "./media/characters/arokh-sieyes/front.svg",
  18903. extra: 1830 / 1769,
  18904. bottom: 0.01
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(6, "feet")
  18912. },
  18913. {
  18914. name: "Macro",
  18915. height: math.unit(30, "meters"),
  18916. default: true
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18922. {
  18923. side: {
  18924. height: math.unit(13 + 1 / 12, "feet"),
  18925. weight: math.unit(8.5, "tonnes"),
  18926. name: "Side",
  18927. image: {
  18928. source: "./media/characters/goldeneye/side.svg",
  18929. extra: 1182 / 778,
  18930. bottom: 0.067
  18931. }
  18932. },
  18933. paw: {
  18934. height: math.unit(3.4, "feet"),
  18935. name: "Paw",
  18936. image: {
  18937. source: "./media/characters/goldeneye/paw.svg"
  18938. }
  18939. },
  18940. },
  18941. [
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(13 + 1 / 12, "feet"),
  18945. default: true
  18946. },
  18947. ]
  18948. ))
  18949. characterMakers.push(() => makeCharacter(
  18950. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18951. {
  18952. front: {
  18953. height: math.unit(6 + 1 / 12, "feet"),
  18954. weight: math.unit(210, "lb"),
  18955. name: "Front",
  18956. image: {
  18957. source: "./media/characters/leonardo-lycheborne/front.svg",
  18958. extra: 390 / 365,
  18959. bottom: 0.032
  18960. }
  18961. },
  18962. side: {
  18963. height: math.unit(6 + 1 / 12, "feet"),
  18964. weight: math.unit(210, "lb"),
  18965. name: "Side",
  18966. image: {
  18967. source: "./media/characters/leonardo-lycheborne/side.svg",
  18968. extra: 390 / 365,
  18969. bottom: 0.005
  18970. }
  18971. },
  18972. back: {
  18973. height: math.unit(6 + 1 / 12, "feet"),
  18974. weight: math.unit(210, "lb"),
  18975. name: "Back",
  18976. image: {
  18977. source: "./media/characters/leonardo-lycheborne/back.svg",
  18978. extra: 392 / 366,
  18979. bottom: 0.01
  18980. }
  18981. },
  18982. hand: {
  18983. height: math.unit(1.08, "feet"),
  18984. name: "Hand",
  18985. image: {
  18986. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18987. }
  18988. },
  18989. foot: {
  18990. height: math.unit(1.32, "feet"),
  18991. name: "Foot",
  18992. image: {
  18993. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18994. }
  18995. },
  18996. were: {
  18997. height: math.unit(20, "feet"),
  18998. weight: math.unit(7800, "lb"),
  18999. name: "Were",
  19000. image: {
  19001. source: "./media/characters/leonardo-lycheborne/were.svg",
  19002. extra: 308 / 294,
  19003. bottom: 0.048
  19004. }
  19005. },
  19006. feral: {
  19007. height: math.unit(7.5, "feet"),
  19008. weight: math.unit(600, "lb"),
  19009. name: "Feral",
  19010. image: {
  19011. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19012. extra: 210 / 186,
  19013. bottom: 0.108
  19014. }
  19015. },
  19016. taur: {
  19017. height: math.unit(11, "feet"),
  19018. weight: math.unit(3300, "lb"),
  19019. name: "Taur",
  19020. image: {
  19021. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19022. extra: 320 / 303,
  19023. bottom: 0.025
  19024. }
  19025. },
  19026. barghest: {
  19027. height: math.unit(11, "feet"),
  19028. weight: math.unit(1300, "lb"),
  19029. name: "Barghest",
  19030. image: {
  19031. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19032. extra: 323 / 302,
  19033. bottom: 0.027
  19034. }
  19035. },
  19036. dick: {
  19037. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19038. name: "Dick",
  19039. image: {
  19040. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19041. }
  19042. },
  19043. dickWere: {
  19044. height: math.unit((20) / 3.8, "feet"),
  19045. name: "Dick (Were)",
  19046. image: {
  19047. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19048. }
  19049. },
  19050. },
  19051. [
  19052. {
  19053. name: "Normal",
  19054. height: math.unit(6 + 1 / 12, "feet"),
  19055. default: true
  19056. },
  19057. ]
  19058. ))
  19059. characterMakers.push(() => makeCharacter(
  19060. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19061. {
  19062. front: {
  19063. height: math.unit(10, "feet"),
  19064. weight: math.unit(350, "lb"),
  19065. name: "Front",
  19066. image: {
  19067. source: "./media/characters/jet/front.svg",
  19068. extra: 2050 / 1980,
  19069. bottom: 0.013
  19070. }
  19071. },
  19072. back: {
  19073. height: math.unit(10, "feet"),
  19074. weight: math.unit(350, "lb"),
  19075. name: "Back",
  19076. image: {
  19077. source: "./media/characters/jet/back.svg",
  19078. extra: 2050 / 1980,
  19079. bottom: 0.013
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Micro",
  19086. height: math.unit(6, "inches")
  19087. },
  19088. {
  19089. name: "Normal",
  19090. height: math.unit(10, "feet"),
  19091. default: true
  19092. },
  19093. {
  19094. name: "Macro",
  19095. height: math.unit(100, "feet")
  19096. },
  19097. ]
  19098. ))
  19099. characterMakers.push(() => makeCharacter(
  19100. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19101. {
  19102. front: {
  19103. height: math.unit(15, "feet"),
  19104. weight: math.unit(2800, "lb"),
  19105. name: "Front",
  19106. image: {
  19107. source: "./media/characters/tanarath/front.svg",
  19108. extra: 2392 / 2220,
  19109. bottom: 0.03
  19110. }
  19111. },
  19112. back: {
  19113. height: math.unit(15, "feet"),
  19114. weight: math.unit(2800, "lb"),
  19115. name: "Back",
  19116. image: {
  19117. source: "./media/characters/tanarath/back.svg",
  19118. extra: 2392 / 2220,
  19119. bottom: 0.03
  19120. }
  19121. },
  19122. },
  19123. [
  19124. {
  19125. name: "Normal",
  19126. height: math.unit(15, "feet"),
  19127. default: true
  19128. },
  19129. ]
  19130. ))
  19131. characterMakers.push(() => makeCharacter(
  19132. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19133. {
  19134. front: {
  19135. height: math.unit(7 + 1 / 12, "feet"),
  19136. weight: math.unit(175, "lb"),
  19137. name: "Front",
  19138. image: {
  19139. source: "./media/characters/patty-cattybatty/front.svg",
  19140. extra: 908 / 874,
  19141. bottom: 0.025
  19142. }
  19143. },
  19144. },
  19145. [
  19146. {
  19147. name: "Micro",
  19148. height: math.unit(1, "inch")
  19149. },
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(7 + 1 / 12, "feet")
  19153. },
  19154. {
  19155. name: "Mini Macro",
  19156. height: math.unit(155, "feet")
  19157. },
  19158. {
  19159. name: "Macro",
  19160. height: math.unit(1077, "feet")
  19161. },
  19162. {
  19163. name: "Mega Macro",
  19164. height: math.unit(47650, "feet"),
  19165. default: true
  19166. },
  19167. {
  19168. name: "Giga Macro",
  19169. height: math.unit(440, "miles")
  19170. },
  19171. {
  19172. name: "Tera Macro",
  19173. height: math.unit(8700, "miles")
  19174. },
  19175. {
  19176. name: "Planetary Macro",
  19177. height: math.unit(32700, "miles")
  19178. },
  19179. {
  19180. name: "Solar Macro",
  19181. height: math.unit(550000, "miles")
  19182. },
  19183. {
  19184. name: "Celestial Macro",
  19185. height: math.unit(2.5, "AU")
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(4 + 5 / 12, "feet"),
  19194. weight: math.unit(90, "lb"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/cappu/front.svg",
  19198. extra: 1247 / 1152,
  19199. bottom: 0.012
  19200. }
  19201. },
  19202. },
  19203. [
  19204. {
  19205. name: "Normal",
  19206. height: math.unit(4 + 5 / 12, "feet"),
  19207. default: true
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19213. {
  19214. frontDressed: {
  19215. height: math.unit(70, "cm"),
  19216. weight: math.unit(6, "kg"),
  19217. name: "Front (Dressed)",
  19218. image: {
  19219. source: "./media/characters/sebi/front-dressed.svg",
  19220. extra: 713.5 / 686.5,
  19221. bottom: 0.003
  19222. }
  19223. },
  19224. front: {
  19225. height: math.unit(70, "cm"),
  19226. weight: math.unit(5, "kg"),
  19227. name: "Front",
  19228. image: {
  19229. source: "./media/characters/sebi/front.svg",
  19230. extra: 713.5 / 686.5,
  19231. bottom: 0.003
  19232. }
  19233. }
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(70, "cm"),
  19239. default: true
  19240. },
  19241. {
  19242. name: "Macro",
  19243. height: math.unit(8, "meters")
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19249. {
  19250. front: {
  19251. height: math.unit(6, "feet"),
  19252. weight: math.unit(150, "lb"),
  19253. name: "Front",
  19254. image: {
  19255. source: "./media/characters/typhek/front.svg",
  19256. extra: 1948 / 1929,
  19257. bottom: 0.025
  19258. }
  19259. },
  19260. side: {
  19261. height: math.unit(6, "feet"),
  19262. weight: math.unit(150, "lb"),
  19263. name: "Side",
  19264. image: {
  19265. source: "./media/characters/typhek/side.svg",
  19266. extra: 2034 / 2010,
  19267. bottom: 0.003
  19268. }
  19269. },
  19270. back: {
  19271. height: math.unit(6, "feet"),
  19272. weight: math.unit(150, "lb"),
  19273. name: "Back",
  19274. image: {
  19275. source: "./media/characters/typhek/back.svg",
  19276. extra: 2005 / 1978,
  19277. bottom: 0.004
  19278. }
  19279. },
  19280. palm: {
  19281. height: math.unit(1.2, "feet"),
  19282. name: "Palm",
  19283. image: {
  19284. source: "./media/characters/typhek/palm.svg"
  19285. }
  19286. },
  19287. fist: {
  19288. height: math.unit(1.1, "feet"),
  19289. name: "Fist",
  19290. image: {
  19291. source: "./media/characters/typhek/fist.svg"
  19292. }
  19293. },
  19294. foot: {
  19295. height: math.unit(1.57, "feet"),
  19296. name: "Foot",
  19297. image: {
  19298. source: "./media/characters/typhek/foot.svg"
  19299. }
  19300. },
  19301. sole: {
  19302. height: math.unit(2.05, "feet"),
  19303. name: "Sole",
  19304. image: {
  19305. source: "./media/characters/typhek/sole.svg"
  19306. }
  19307. },
  19308. },
  19309. [
  19310. {
  19311. name: "Macro",
  19312. height: math.unit(40, "stories"),
  19313. default: true
  19314. },
  19315. {
  19316. name: "Megamacro",
  19317. height: math.unit(1, "mile")
  19318. },
  19319. {
  19320. name: "Gigamacro",
  19321. height: math.unit(4000, "solarradii")
  19322. },
  19323. {
  19324. name: "Universal",
  19325. height: math.unit(1.1, "universes")
  19326. }
  19327. ]
  19328. ))
  19329. characterMakers.push(() => makeCharacter(
  19330. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19331. {
  19332. side: {
  19333. height: math.unit(5 + 7 / 12, "feet"),
  19334. weight: math.unit(150, "lb"),
  19335. name: "Side",
  19336. image: {
  19337. source: "./media/characters/kassy/side.svg",
  19338. extra: 1280 / 1225,
  19339. bottom: 0.002
  19340. }
  19341. },
  19342. front: {
  19343. height: math.unit(5 + 7 / 12, "feet"),
  19344. weight: math.unit(150, "lb"),
  19345. name: "Front",
  19346. image: {
  19347. source: "./media/characters/kassy/front.svg",
  19348. extra: 1280 / 1225,
  19349. bottom: 0.025
  19350. }
  19351. },
  19352. back: {
  19353. height: math.unit(5 + 7 / 12, "feet"),
  19354. weight: math.unit(150, "lb"),
  19355. name: "Back",
  19356. image: {
  19357. source: "./media/characters/kassy/back.svg",
  19358. extra: 1280 / 1225,
  19359. bottom: 0.002
  19360. }
  19361. },
  19362. foot: {
  19363. height: math.unit(1.266, "feet"),
  19364. name: "Foot",
  19365. image: {
  19366. source: "./media/characters/kassy/foot.svg"
  19367. }
  19368. },
  19369. },
  19370. [
  19371. {
  19372. name: "Normal",
  19373. height: math.unit(5 + 7 / 12, "feet")
  19374. },
  19375. {
  19376. name: "Macro",
  19377. height: math.unit(137, "feet"),
  19378. default: true
  19379. },
  19380. {
  19381. name: "Megamacro",
  19382. height: math.unit(1, "mile")
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19388. {
  19389. front: {
  19390. height: math.unit(6 + 1 / 12, "feet"),
  19391. weight: math.unit(200, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/neil/front.svg",
  19395. extra: 1326 / 1250,
  19396. bottom: 0.023
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(6 + 1 / 12, "feet"),
  19404. default: true
  19405. },
  19406. {
  19407. name: "Macro",
  19408. height: math.unit(200, "feet")
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19414. {
  19415. front: {
  19416. height: math.unit(5 + 9 / 12, "feet"),
  19417. weight: math.unit(190, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/atticus/front.svg",
  19421. extra: 2934 / 2785,
  19422. bottom: 0.025
  19423. }
  19424. },
  19425. },
  19426. [
  19427. {
  19428. name: "Normal",
  19429. height: math.unit(5 + 9 / 12, "feet"),
  19430. default: true
  19431. },
  19432. {
  19433. name: "Macro",
  19434. height: math.unit(180, "feet")
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19440. {
  19441. side: {
  19442. height: math.unit(9, "feet"),
  19443. weight: math.unit(650, "lb"),
  19444. name: "Side",
  19445. image: {
  19446. source: "./media/characters/milo/side.svg",
  19447. extra: 2644 / 2310,
  19448. bottom: 0.032
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(9, "feet"),
  19456. default: true
  19457. },
  19458. {
  19459. name: "Macro",
  19460. height: math.unit(300, "feet")
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19466. {
  19467. side: {
  19468. height: math.unit(8, "meters"),
  19469. weight: math.unit(90000, "kg"),
  19470. name: "Side",
  19471. image: {
  19472. source: "./media/characters/ijzer/side.svg",
  19473. extra: 2756 / 1600,
  19474. bottom: 0.01
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Small",
  19481. height: math.unit(3, "meters")
  19482. },
  19483. {
  19484. name: "Normal",
  19485. height: math.unit(8, "meters"),
  19486. default: true
  19487. },
  19488. {
  19489. name: "Normal+",
  19490. height: math.unit(10, "meters")
  19491. },
  19492. {
  19493. name: "Bigger",
  19494. height: math.unit(24, "meters")
  19495. },
  19496. {
  19497. name: "Huge",
  19498. height: math.unit(80, "meters")
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(6 + 2 / 12, "feet"),
  19507. weight: math.unit(153, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/luca-cervicum/front.svg",
  19511. extra: 370 / 327,
  19512. bottom: 0.015
  19513. }
  19514. },
  19515. back: {
  19516. height: math.unit(6 + 2 / 12, "feet"),
  19517. weight: math.unit(153, "lb"),
  19518. name: "Back",
  19519. image: {
  19520. source: "./media/characters/luca-cervicum/back.svg",
  19521. extra: 367 / 333,
  19522. bottom: 0.005
  19523. }
  19524. },
  19525. frontGear: {
  19526. height: math.unit(6 + 2 / 12, "feet"),
  19527. weight: math.unit(173, "lb"),
  19528. name: "Front (Gear)",
  19529. image: {
  19530. source: "./media/characters/luca-cervicum/front-gear.svg",
  19531. extra: 377 / 333,
  19532. bottom: 0.006
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(6 + 2 / 12, "feet"),
  19540. default: true
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19546. {
  19547. front: {
  19548. height: math.unit(6 + 1 / 12, "feet"),
  19549. weight: math.unit(304, "lb"),
  19550. name: "Front",
  19551. image: {
  19552. source: "./media/characters/oliver/front.svg",
  19553. extra: 157 / 143,
  19554. bottom: 0.08
  19555. }
  19556. },
  19557. },
  19558. [
  19559. {
  19560. name: "Normal",
  19561. height: math.unit(6 + 1 / 12, "feet"),
  19562. default: true
  19563. },
  19564. ]
  19565. ))
  19566. characterMakers.push(() => makeCharacter(
  19567. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19568. {
  19569. front: {
  19570. height: math.unit(5 + 7 / 12, "feet"),
  19571. weight: math.unit(140, "lb"),
  19572. name: "Front",
  19573. image: {
  19574. source: "./media/characters/shane/front.svg",
  19575. extra: 304 / 289,
  19576. bottom: 0.005
  19577. }
  19578. },
  19579. },
  19580. [
  19581. {
  19582. name: "Normal",
  19583. height: math.unit(5 + 7 / 12, "feet"),
  19584. default: true
  19585. },
  19586. ]
  19587. ))
  19588. characterMakers.push(() => makeCharacter(
  19589. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19590. {
  19591. front: {
  19592. height: math.unit(5 + 9 / 12, "feet"),
  19593. weight: math.unit(178, "lb"),
  19594. name: "Front",
  19595. image: {
  19596. source: "./media/characters/shin/front.svg",
  19597. extra: 159 / 151,
  19598. bottom: 0.015
  19599. }
  19600. },
  19601. },
  19602. [
  19603. {
  19604. name: "Normal",
  19605. height: math.unit(5 + 9 / 12, "feet"),
  19606. default: true
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19612. {
  19613. front: {
  19614. height: math.unit(5 + 10 / 12, "feet"),
  19615. weight: math.unit(168, "lb"),
  19616. name: "Front",
  19617. image: {
  19618. source: "./media/characters/xerxes/front.svg",
  19619. extra: 282 / 260,
  19620. bottom: 0.045
  19621. }
  19622. },
  19623. },
  19624. [
  19625. {
  19626. name: "Normal",
  19627. height: math.unit(5 + 10 / 12, "feet"),
  19628. default: true
  19629. },
  19630. ]
  19631. ))
  19632. characterMakers.push(() => makeCharacter(
  19633. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19634. {
  19635. front: {
  19636. height: math.unit(6 + 7 / 12, "feet"),
  19637. weight: math.unit(208, "lb"),
  19638. name: "Front",
  19639. image: {
  19640. source: "./media/characters/chaska/front.svg",
  19641. extra: 332 / 319,
  19642. bottom: 0.015
  19643. }
  19644. },
  19645. },
  19646. [
  19647. {
  19648. name: "Normal",
  19649. height: math.unit(6 + 7 / 12, "feet"),
  19650. default: true
  19651. },
  19652. ]
  19653. ))
  19654. characterMakers.push(() => makeCharacter(
  19655. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19656. {
  19657. front: {
  19658. height: math.unit(5 + 8 / 12, "feet"),
  19659. weight: math.unit(208, "lb"),
  19660. name: "Front",
  19661. image: {
  19662. source: "./media/characters/enuk/front.svg",
  19663. extra: 437 / 406,
  19664. bottom: 0.02
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(5 + 8 / 12, "feet"),
  19672. default: true
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(5 + 10 / 12, "feet"),
  19681. weight: math.unit(252, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/bruun/front.svg",
  19685. extra: 197 / 187,
  19686. bottom: 0.012
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(5 + 10 / 12, "feet"),
  19694. default: true
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19700. {
  19701. front: {
  19702. height: math.unit(6 + 10 / 12, "feet"),
  19703. weight: math.unit(255, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/alexeev/front.svg",
  19707. extra: 213 / 200,
  19708. bottom: 0.05
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(6 + 10 / 12, "feet"),
  19716. default: true
  19717. },
  19718. ]
  19719. ))
  19720. characterMakers.push(() => makeCharacter(
  19721. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19722. {
  19723. front: {
  19724. height: math.unit(2 + 8 / 12, "feet"),
  19725. weight: math.unit(22, "lb"),
  19726. name: "Front",
  19727. image: {
  19728. source: "./media/characters/evelyn/front.svg",
  19729. extra: 208 / 180
  19730. }
  19731. },
  19732. },
  19733. [
  19734. {
  19735. name: "Normal",
  19736. height: math.unit(2 + 8 / 12, "feet"),
  19737. default: true
  19738. },
  19739. ]
  19740. ))
  19741. characterMakers.push(() => makeCharacter(
  19742. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19743. {
  19744. front: {
  19745. height: math.unit(5 + 9 / 12, "feet"),
  19746. weight: math.unit(139, "lb"),
  19747. name: "Front",
  19748. image: {
  19749. source: "./media/characters/inca/front.svg",
  19750. extra: 294 / 291,
  19751. bottom: 0.03
  19752. }
  19753. },
  19754. },
  19755. [
  19756. {
  19757. name: "Normal",
  19758. height: math.unit(5 + 9 / 12, "feet"),
  19759. default: true
  19760. },
  19761. ]
  19762. ))
  19763. characterMakers.push(() => makeCharacter(
  19764. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19765. {
  19766. front: {
  19767. height: math.unit(5 + 1 / 12, "feet"),
  19768. weight: math.unit(84, "lb"),
  19769. name: "Front",
  19770. image: {
  19771. source: "./media/characters/magdalene/front.svg",
  19772. extra: 293 / 273
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Normal",
  19779. height: math.unit(5 + 1 / 12, "feet"),
  19780. default: true
  19781. },
  19782. ]
  19783. ))
  19784. characterMakers.push(() => makeCharacter(
  19785. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19786. {
  19787. front: {
  19788. height: math.unit(6 + 3 / 12, "feet"),
  19789. weight: math.unit(185, "lb"),
  19790. name: "Front",
  19791. image: {
  19792. source: "./media/characters/mera/front.svg",
  19793. extra: 291 / 277,
  19794. bottom: 0.03
  19795. }
  19796. },
  19797. },
  19798. [
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(6 + 3 / 12, "feet"),
  19802. default: true
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19808. {
  19809. front: {
  19810. height: math.unit(6 + 7 / 12, "feet"),
  19811. weight: math.unit(160, "lb"),
  19812. name: "Front",
  19813. image: {
  19814. source: "./media/characters/ceres/front.svg",
  19815. extra: 1023 / 950,
  19816. bottom: 0.027
  19817. }
  19818. },
  19819. back: {
  19820. height: math.unit(6 + 7 / 12, "feet"),
  19821. weight: math.unit(160, "lb"),
  19822. name: "Back",
  19823. image: {
  19824. source: "./media/characters/ceres/back.svg",
  19825. extra: 1023 / 950
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(6 + 7 / 12, "feet"),
  19833. default: true
  19834. },
  19835. ]
  19836. ))
  19837. characterMakers.push(() => makeCharacter(
  19838. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19839. {
  19840. front: {
  19841. height: math.unit(5 + 10 / 12, "feet"),
  19842. weight: math.unit(150, "lb"),
  19843. name: "Front",
  19844. image: {
  19845. source: "./media/characters/kris/front.svg",
  19846. extra: 885 / 803,
  19847. bottom: 0.03
  19848. }
  19849. },
  19850. },
  19851. [
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(5 + 10 / 12, "feet"),
  19855. default: true
  19856. },
  19857. ]
  19858. ))
  19859. characterMakers.push(() => makeCharacter(
  19860. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19861. {
  19862. front: {
  19863. height: math.unit(7, "feet"),
  19864. weight: math.unit(120, "kg"),
  19865. name: "Front",
  19866. image: {
  19867. source: "./media/characters/taluthus/front.svg",
  19868. extra: 903 / 833,
  19869. bottom: 0.015
  19870. }
  19871. },
  19872. },
  19873. [
  19874. {
  19875. name: "Normal",
  19876. height: math.unit(7, "feet"),
  19877. default: true
  19878. },
  19879. {
  19880. name: "Macro",
  19881. height: math.unit(300, "feet")
  19882. },
  19883. ]
  19884. ))
  19885. characterMakers.push(() => makeCharacter(
  19886. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19887. {
  19888. front: {
  19889. height: math.unit(5 + 9 / 12, "feet"),
  19890. weight: math.unit(145, "lb"),
  19891. name: "Front",
  19892. image: {
  19893. source: "./media/characters/dawn/front.svg",
  19894. extra: 2094 / 2016,
  19895. bottom: 0.025
  19896. }
  19897. },
  19898. back: {
  19899. height: math.unit(5 + 9 / 12, "feet"),
  19900. weight: math.unit(160, "lb"),
  19901. name: "Back",
  19902. image: {
  19903. source: "./media/characters/dawn/back.svg",
  19904. extra: 2112 / 2080,
  19905. bottom: 0.005
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(6 + 7 / 12, "feet"),
  19913. default: true
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19919. {
  19920. anthro: {
  19921. height: math.unit(8 + 3 / 12, "feet"),
  19922. weight: math.unit(450, "lb"),
  19923. name: "Anthro",
  19924. image: {
  19925. source: "./media/characters/arador/anthro.svg",
  19926. extra: 1835 / 1718,
  19927. bottom: 0.025
  19928. }
  19929. },
  19930. feral: {
  19931. height: math.unit(4, "feet"),
  19932. weight: math.unit(200, "lb"),
  19933. name: "Feral",
  19934. image: {
  19935. source: "./media/characters/arador/feral.svg",
  19936. extra: 1683 / 1514,
  19937. bottom: 0.07
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(8 + 3 / 12, "feet")
  19945. },
  19946. {
  19947. name: "Macro",
  19948. height: math.unit(82.5, "feet"),
  19949. default: true
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19955. {
  19956. front: {
  19957. height: math.unit(5 + 10 / 12, "feet"),
  19958. weight: math.unit(125, "lb"),
  19959. name: "Front",
  19960. image: {
  19961. source: "./media/characters/dharsi/front.svg",
  19962. extra: 716 / 630,
  19963. bottom: 0.035
  19964. }
  19965. },
  19966. },
  19967. [
  19968. {
  19969. name: "Nano",
  19970. height: math.unit(100, "nm")
  19971. },
  19972. {
  19973. name: "Micro",
  19974. height: math.unit(2, "inches")
  19975. },
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(5 + 10 / 12, "feet"),
  19979. default: true
  19980. },
  19981. {
  19982. name: "Macro",
  19983. height: math.unit(1000, "feet")
  19984. },
  19985. {
  19986. name: "Megamacro",
  19987. height: math.unit(10, "miles")
  19988. },
  19989. {
  19990. name: "Gigamacro",
  19991. height: math.unit(3000, "miles")
  19992. },
  19993. {
  19994. name: "Teramacro",
  19995. height: math.unit(500000, "miles")
  19996. },
  19997. {
  19998. name: "Teramacro+",
  19999. height: math.unit(30, "galaxies")
  20000. },
  20001. ]
  20002. ))
  20003. characterMakers.push(() => makeCharacter(
  20004. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20005. {
  20006. front: {
  20007. height: math.unit(6, "feet"),
  20008. weight: math.unit(150, "lb"),
  20009. name: "Front",
  20010. image: {
  20011. source: "./media/characters/deathy/front.svg",
  20012. extra: 1552 / 1463,
  20013. bottom: 0.025
  20014. }
  20015. },
  20016. side: {
  20017. height: math.unit(6, "feet"),
  20018. weight: math.unit(150, "lb"),
  20019. name: "Side",
  20020. image: {
  20021. source: "./media/characters/deathy/side.svg",
  20022. extra: 1604 / 1455,
  20023. bottom: 0.025
  20024. }
  20025. },
  20026. back: {
  20027. height: math.unit(6, "feet"),
  20028. weight: math.unit(150, "lb"),
  20029. name: "Back",
  20030. image: {
  20031. source: "./media/characters/deathy/back.svg",
  20032. extra: 1580 / 1463,
  20033. bottom: 0.005
  20034. }
  20035. },
  20036. },
  20037. [
  20038. {
  20039. name: "Micro",
  20040. height: math.unit(5, "millimeters")
  20041. },
  20042. {
  20043. name: "Normal",
  20044. height: math.unit(6 + 5 / 12, "feet"),
  20045. default: true
  20046. },
  20047. ]
  20048. ))
  20049. characterMakers.push(() => makeCharacter(
  20050. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20051. {
  20052. front: {
  20053. height: math.unit(16, "feet"),
  20054. weight: math.unit(4000, "lb"),
  20055. name: "Front",
  20056. image: {
  20057. source: "./media/characters/juniper/front.svg",
  20058. bottom: 0.04
  20059. }
  20060. },
  20061. },
  20062. [
  20063. {
  20064. name: "Normal",
  20065. height: math.unit(16, "feet"),
  20066. default: true
  20067. },
  20068. ]
  20069. ))
  20070. characterMakers.push(() => makeCharacter(
  20071. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20072. {
  20073. front: {
  20074. height: math.unit(6, "feet"),
  20075. weight: math.unit(150, "lb"),
  20076. name: "Front",
  20077. image: {
  20078. source: "./media/characters/hipster/front.svg",
  20079. extra: 1312 / 1209,
  20080. bottom: 0.025
  20081. }
  20082. },
  20083. back: {
  20084. height: math.unit(6, "feet"),
  20085. weight: math.unit(150, "lb"),
  20086. name: "Back",
  20087. image: {
  20088. source: "./media/characters/hipster/back.svg",
  20089. extra: 1281 / 1196,
  20090. bottom: 0.01
  20091. }
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Micro",
  20097. height: math.unit(1, "mm")
  20098. },
  20099. {
  20100. name: "Normal",
  20101. height: math.unit(4, "inches"),
  20102. default: true
  20103. },
  20104. {
  20105. name: "Macro",
  20106. height: math.unit(500, "feet")
  20107. },
  20108. {
  20109. name: "Megamacro",
  20110. height: math.unit(1000, "miles")
  20111. },
  20112. ]
  20113. ))
  20114. characterMakers.push(() => makeCharacter(
  20115. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20116. {
  20117. front: {
  20118. height: math.unit(6, "feet"),
  20119. weight: math.unit(150, "lb"),
  20120. name: "Front",
  20121. image: {
  20122. source: "./media/characters/tendirmuldr/front.svg",
  20123. extra: 1878 / 1772,
  20124. bottom: 0.015
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Megamacro",
  20131. height: math.unit(1500, "miles"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20138. {
  20139. front: {
  20140. height: math.unit(14, "feet"),
  20141. weight: math.unit(12000, "lb"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/mort/front.svg",
  20145. extra: 365 / 318,
  20146. bottom: 0.01
  20147. }
  20148. },
  20149. side: {
  20150. height: math.unit(14, "feet"),
  20151. weight: math.unit(12000, "lb"),
  20152. name: "Side",
  20153. image: {
  20154. source: "./media/characters/mort/side.svg",
  20155. extra: 365 / 318,
  20156. bottom: 0.052
  20157. },
  20158. default: true
  20159. },
  20160. back: {
  20161. height: math.unit(14, "feet"),
  20162. weight: math.unit(12000, "lb"),
  20163. name: "Back",
  20164. image: {
  20165. source: "./media/characters/mort/back.svg",
  20166. extra: 371 / 332,
  20167. bottom: 0.18
  20168. }
  20169. },
  20170. },
  20171. [
  20172. {
  20173. name: "Normal",
  20174. height: math.unit(14, "feet"),
  20175. default: true
  20176. },
  20177. ]
  20178. ))
  20179. characterMakers.push(() => makeCharacter(
  20180. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20181. {
  20182. front: {
  20183. height: math.unit(8, "feet"),
  20184. weight: math.unit(1, "ton"),
  20185. name: "Front",
  20186. image: {
  20187. source: "./media/characters/lycoa/front.svg",
  20188. extra: 1875 / 1789,
  20189. bottom: 0.022
  20190. }
  20191. },
  20192. back: {
  20193. height: math.unit(8, "feet"),
  20194. weight: math.unit(1, "ton"),
  20195. name: "Back",
  20196. image: {
  20197. source: "./media/characters/lycoa/back.svg",
  20198. extra: 1835 / 1781,
  20199. bottom: 0.03
  20200. }
  20201. },
  20202. head: {
  20203. height: math.unit(2.1, "feet"),
  20204. name: "Head",
  20205. image: {
  20206. source: "./media/characters/lycoa/head.svg"
  20207. }
  20208. },
  20209. tailmaw: {
  20210. height: math.unit(1.9, "feet"),
  20211. name: "Tailmaw",
  20212. image: {
  20213. source: "./media/characters/lycoa/tailmaw.svg"
  20214. }
  20215. },
  20216. tentacles: {
  20217. height: math.unit(2.1, "feet"),
  20218. name: "Tentacles",
  20219. image: {
  20220. source: "./media/characters/lycoa/tentacles.svg"
  20221. }
  20222. },
  20223. dick: {
  20224. height: math.unit(1.73, "feet"),
  20225. name: "Dick",
  20226. image: {
  20227. source: "./media/characters/lycoa/dick.svg"
  20228. }
  20229. },
  20230. },
  20231. [
  20232. {
  20233. name: "Normal",
  20234. height: math.unit(8, "feet"),
  20235. default: true
  20236. },
  20237. {
  20238. name: "Macro",
  20239. height: math.unit(30, "feet")
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20245. {
  20246. front: {
  20247. height: math.unit(4 + 2 / 12, "feet"),
  20248. weight: math.unit(70, "lb"),
  20249. name: "Front",
  20250. image: {
  20251. source: "./media/characters/naldara/front.svg",
  20252. extra: 841 / 720,
  20253. bottom: 0.04
  20254. }
  20255. },
  20256. naga: {
  20257. height: math.unit(23, "feet"),
  20258. weight: math.unit(15000, "kg"),
  20259. name: "Naga",
  20260. image: {
  20261. source: "./media/characters/naldara/naga.svg",
  20262. extra: 3290 / 2959,
  20263. bottom: 124 / 3432
  20264. }
  20265. },
  20266. },
  20267. [
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(4 + 2 / 12, "feet"),
  20271. default: true
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20277. {
  20278. front: {
  20279. height: math.unit(13 + 7 / 12, "feet"),
  20280. weight: math.unit(1500, "lb"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/briar/front.svg",
  20284. extra: 626 / 596,
  20285. bottom: 0.08
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(13 + 7 / 12, "feet"),
  20293. default: true
  20294. },
  20295. ]
  20296. ))
  20297. characterMakers.push(() => makeCharacter(
  20298. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20299. {
  20300. side: {
  20301. height: math.unit(10, "feet"),
  20302. weight: math.unit(500, "lb"),
  20303. name: "Side",
  20304. image: {
  20305. source: "./media/characters/vanguard/side.svg",
  20306. extra: 502 / 425,
  20307. bottom: 0.087
  20308. }
  20309. },
  20310. },
  20311. [
  20312. {
  20313. name: "Normal",
  20314. height: math.unit(10, "feet"),
  20315. default: true
  20316. },
  20317. ]
  20318. ))
  20319. characterMakers.push(() => makeCharacter(
  20320. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20321. {
  20322. front: {
  20323. height: math.unit(7.5, "feet"),
  20324. weight: math.unit(2, "lb"),
  20325. name: "Front",
  20326. image: {
  20327. source: "./media/characters/artemis/front.svg",
  20328. extra: 1192 / 1075,
  20329. bottom: 0.07
  20330. }
  20331. },
  20332. frontNsfw: {
  20333. height: math.unit(7.5, "feet"),
  20334. weight: math.unit(2, "lb"),
  20335. name: "Front (NSFW)",
  20336. image: {
  20337. source: "./media/characters/artemis/front-nsfw.svg",
  20338. extra: 1192 / 1075,
  20339. bottom: 0.07
  20340. }
  20341. },
  20342. frontNsfwer: {
  20343. height: math.unit(7.5, "feet"),
  20344. weight: math.unit(2, "lb"),
  20345. name: "Front (NSFW-er)",
  20346. image: {
  20347. source: "./media/characters/artemis/front-nsfwer.svg",
  20348. extra: 1192 / 1075,
  20349. bottom: 0.07
  20350. }
  20351. },
  20352. side: {
  20353. height: math.unit(7.5, "feet"),
  20354. weight: math.unit(2, "lb"),
  20355. name: "Side",
  20356. image: {
  20357. source: "./media/characters/artemis/side.svg",
  20358. extra: 1192 / 1075,
  20359. bottom: 0.07
  20360. }
  20361. },
  20362. sideNsfw: {
  20363. height: math.unit(7.5, "feet"),
  20364. weight: math.unit(2, "lb"),
  20365. name: "Side (NSFW)",
  20366. image: {
  20367. source: "./media/characters/artemis/side-nsfw.svg",
  20368. extra: 1192 / 1075,
  20369. bottom: 0.07
  20370. }
  20371. },
  20372. sideNsfwer: {
  20373. height: math.unit(7.5, "feet"),
  20374. weight: math.unit(2, "lb"),
  20375. name: "Side (NSFW-er)",
  20376. image: {
  20377. source: "./media/characters/artemis/side-nsfwer.svg",
  20378. extra: 1192 / 1075,
  20379. bottom: 0.07
  20380. }
  20381. },
  20382. maw: {
  20383. height: math.unit(1.1, "feet"),
  20384. name: "Maw",
  20385. image: {
  20386. source: "./media/characters/artemis/maw.svg"
  20387. }
  20388. },
  20389. stomach: {
  20390. height: math.unit(0.95, "feet"),
  20391. name: "Stomach",
  20392. image: {
  20393. source: "./media/characters/artemis/stomach.svg"
  20394. }
  20395. },
  20396. dickCanine: {
  20397. height: math.unit(1, "feet"),
  20398. name: "Dick (Canine)",
  20399. image: {
  20400. source: "./media/characters/artemis/dick-canine.svg"
  20401. }
  20402. },
  20403. dickEquine: {
  20404. height: math.unit(0.85, "feet"),
  20405. name: "Dick (Equine)",
  20406. image: {
  20407. source: "./media/characters/artemis/dick-equine.svg"
  20408. }
  20409. },
  20410. dickExotic: {
  20411. height: math.unit(0.85, "feet"),
  20412. name: "Dick (Exotic)",
  20413. image: {
  20414. source: "./media/characters/artemis/dick-exotic.svg"
  20415. }
  20416. },
  20417. },
  20418. [
  20419. {
  20420. name: "Normal",
  20421. height: math.unit(7.5, "feet"),
  20422. default: true
  20423. },
  20424. {
  20425. name: "Enlarged",
  20426. height: math.unit(12, "feet")
  20427. },
  20428. ]
  20429. ))
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20432. {
  20433. front: {
  20434. height: math.unit(5 + 3 / 12, "feet"),
  20435. weight: math.unit(160, "lb"),
  20436. name: "Front",
  20437. image: {
  20438. source: "./media/characters/kira/front.svg",
  20439. extra: 906 / 786,
  20440. bottom: 0.01
  20441. }
  20442. },
  20443. back: {
  20444. height: math.unit(5 + 3 / 12, "feet"),
  20445. weight: math.unit(160, "lb"),
  20446. name: "Back",
  20447. image: {
  20448. source: "./media/characters/kira/back.svg",
  20449. extra: 882 / 757,
  20450. bottom: 0.005
  20451. }
  20452. },
  20453. frontDressed: {
  20454. height: math.unit(5 + 3 / 12, "feet"),
  20455. weight: math.unit(160, "lb"),
  20456. name: "Front (Dressed)",
  20457. image: {
  20458. source: "./media/characters/kira/front-dressed.svg",
  20459. extra: 906 / 786,
  20460. bottom: 0.01
  20461. }
  20462. },
  20463. beans: {
  20464. height: math.unit(0.92, "feet"),
  20465. name: "Beans",
  20466. image: {
  20467. source: "./media/characters/kira/beans.svg"
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(5 + 3 / 12, "feet"),
  20475. default: true
  20476. },
  20477. ]
  20478. ))
  20479. characterMakers.push(() => makeCharacter(
  20480. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20481. {
  20482. front: {
  20483. height: math.unit(5 + 4 / 12, "feet"),
  20484. weight: math.unit(145, "lb"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/scramble/front.svg",
  20488. extra: 763 / 727,
  20489. bottom: 0.05
  20490. }
  20491. },
  20492. back: {
  20493. height: math.unit(5 + 4 / 12, "feet"),
  20494. weight: math.unit(145, "lb"),
  20495. name: "Back",
  20496. image: {
  20497. source: "./media/characters/scramble/back.svg",
  20498. extra: 826 / 737,
  20499. bottom: 0.002
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(5 + 4 / 12, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20513. {
  20514. side: {
  20515. height: math.unit(6 + 2 / 12, "feet"),
  20516. weight: math.unit(190, "lb"),
  20517. name: "Side",
  20518. image: {
  20519. source: "./media/characters/biscuit/side.svg",
  20520. extra: 858 / 791,
  20521. bottom: 0.044
  20522. }
  20523. },
  20524. },
  20525. [
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(6 + 2 / 12, "feet"),
  20529. default: true
  20530. },
  20531. ]
  20532. ))
  20533. characterMakers.push(() => makeCharacter(
  20534. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20535. {
  20536. front: {
  20537. height: math.unit(5 + 2 / 12, "feet"),
  20538. weight: math.unit(120, "lb"),
  20539. name: "Front",
  20540. image: {
  20541. source: "./media/characters/poffin/front.svg",
  20542. extra: 786 / 680,
  20543. bottom: 0.005
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(5 + 2 / 12, "feet"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20557. {
  20558. front: {
  20559. height: math.unit(6 + 3 / 12, "feet"),
  20560. weight: math.unit(519, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/dhari/front.svg",
  20564. extra: 1048 / 946,
  20565. bottom: 0.015
  20566. }
  20567. },
  20568. back: {
  20569. height: math.unit(6 + 3 / 12, "feet"),
  20570. weight: math.unit(519, "lb"),
  20571. name: "Back",
  20572. image: {
  20573. source: "./media/characters/dhari/back.svg",
  20574. extra: 1048 / 931,
  20575. bottom: 0.005
  20576. }
  20577. },
  20578. frontDressed: {
  20579. height: math.unit(6 + 3 / 12, "feet"),
  20580. weight: math.unit(519, "lb"),
  20581. name: "Front (Dressed)",
  20582. image: {
  20583. source: "./media/characters/dhari/front-dressed.svg",
  20584. extra: 1713 / 1546,
  20585. bottom: 0.02
  20586. }
  20587. },
  20588. backDressed: {
  20589. height: math.unit(6 + 3 / 12, "feet"),
  20590. weight: math.unit(519, "lb"),
  20591. name: "Back (Dressed)",
  20592. image: {
  20593. source: "./media/characters/dhari/back-dressed.svg",
  20594. extra: 1699 / 1537,
  20595. bottom: 0.01
  20596. }
  20597. },
  20598. maw: {
  20599. height: math.unit(0.95, "feet"),
  20600. name: "Maw",
  20601. image: {
  20602. source: "./media/characters/dhari/maw.svg"
  20603. }
  20604. },
  20605. wereFront: {
  20606. height: math.unit(12 + 8 / 12, "feet"),
  20607. weight: math.unit(4000, "lb"),
  20608. name: "Front (Were)",
  20609. image: {
  20610. source: "./media/characters/dhari/were-front.svg",
  20611. extra: 1065 / 969,
  20612. bottom: 0.015
  20613. }
  20614. },
  20615. wereBack: {
  20616. height: math.unit(12 + 8 / 12, "feet"),
  20617. weight: math.unit(4000, "lb"),
  20618. name: "Back (Were)",
  20619. image: {
  20620. source: "./media/characters/dhari/were-back.svg",
  20621. extra: 1065 / 969,
  20622. bottom: 0.012
  20623. }
  20624. },
  20625. wereMaw: {
  20626. height: math.unit(0.625, "meters"),
  20627. name: "Maw (Were)",
  20628. image: {
  20629. source: "./media/characters/dhari/were-maw.svg"
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Normal",
  20636. height: math.unit(6 + 3 / 12, "feet"),
  20637. default: true
  20638. },
  20639. ]
  20640. ))
  20641. characterMakers.push(() => makeCharacter(
  20642. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20643. {
  20644. anthro: {
  20645. height: math.unit(5 + 7 / 12, "feet"),
  20646. weight: math.unit(175, "lb"),
  20647. name: "Anthro",
  20648. image: {
  20649. source: "./media/characters/rena-dyne/anthro.svg",
  20650. extra: 1849 / 1785,
  20651. bottom: 0.005
  20652. }
  20653. },
  20654. taur: {
  20655. height: math.unit(15 + 6 / 12, "feet"),
  20656. weight: math.unit(8000, "lb"),
  20657. name: "Taur",
  20658. image: {
  20659. source: "./media/characters/rena-dyne/taur.svg",
  20660. extra: 2315 / 2234,
  20661. bottom: 0.033
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(5 + 7 / 12, "feet"),
  20669. default: true
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20675. {
  20676. front: {
  20677. height: math.unit(8, "feet"),
  20678. weight: math.unit(600, "lb"),
  20679. name: "Front",
  20680. image: {
  20681. source: "./media/characters/weremeep/front.svg",
  20682. extra: 967 / 862,
  20683. bottom: 0.01
  20684. }
  20685. },
  20686. },
  20687. [
  20688. {
  20689. name: "Normal",
  20690. height: math.unit(8, "feet"),
  20691. default: true
  20692. },
  20693. {
  20694. name: "Lorg",
  20695. height: math.unit(12, "feet")
  20696. },
  20697. {
  20698. name: "Oh Lawd She Comin'",
  20699. height: math.unit(20, "feet")
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20705. {
  20706. front: {
  20707. height: math.unit(4, "feet"),
  20708. weight: math.unit(90, "lb"),
  20709. name: "Front",
  20710. image: {
  20711. source: "./media/characters/reza/front.svg",
  20712. extra: 1183 / 1111,
  20713. bottom: 0.017
  20714. }
  20715. },
  20716. back: {
  20717. height: math.unit(4, "feet"),
  20718. weight: math.unit(90, "lb"),
  20719. name: "Back",
  20720. image: {
  20721. source: "./media/characters/reza/back.svg",
  20722. extra: 1183 / 1111,
  20723. bottom: 0.01
  20724. }
  20725. },
  20726. drake: {
  20727. height: math.unit(30, "feet"),
  20728. weight: math.unit(246960, "lb"),
  20729. name: "Drake",
  20730. image: {
  20731. source: "./media/characters/reza/drake.svg",
  20732. extra: 2350 / 2024,
  20733. bottom: 60.7 / 2403
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(4, "feet"),
  20741. default: true
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20747. {
  20748. side: {
  20749. height: math.unit(15, "feet"),
  20750. weight: math.unit(14, "tons"),
  20751. name: "Side",
  20752. image: {
  20753. source: "./media/characters/athea/side.svg",
  20754. extra: 960 / 540,
  20755. bottom: 0.003
  20756. }
  20757. },
  20758. sitting: {
  20759. height: math.unit(6 * 2.85, "feet"),
  20760. weight: math.unit(14, "tons"),
  20761. name: "Sitting",
  20762. image: {
  20763. source: "./media/characters/athea/sitting.svg",
  20764. extra: 621 / 581,
  20765. bottom: 0.075
  20766. }
  20767. },
  20768. maw: {
  20769. height: math.unit(7.59498031496063, "feet"),
  20770. name: "Maw",
  20771. image: {
  20772. source: "./media/characters/athea/maw.svg"
  20773. }
  20774. },
  20775. },
  20776. [
  20777. {
  20778. name: "Lap Cat",
  20779. height: math.unit(2.5, "feet")
  20780. },
  20781. {
  20782. name: "Minimacro",
  20783. height: math.unit(15, "feet"),
  20784. default: true
  20785. },
  20786. {
  20787. name: "Macro",
  20788. height: math.unit(120, "feet")
  20789. },
  20790. {
  20791. name: "Macro+",
  20792. height: math.unit(640, "feet")
  20793. },
  20794. {
  20795. name: "Colossus",
  20796. height: math.unit(2.2, "miles")
  20797. },
  20798. ]
  20799. ))
  20800. characterMakers.push(() => makeCharacter(
  20801. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20802. {
  20803. front: {
  20804. height: math.unit(8 + 8 / 12, "feet"),
  20805. weight: math.unit(130, "kg"),
  20806. name: "Front",
  20807. image: {
  20808. source: "./media/characters/seroko/front.svg",
  20809. extra: 1385 / 1280,
  20810. bottom: 0.025
  20811. }
  20812. },
  20813. back: {
  20814. height: math.unit(8 + 8 / 12, "feet"),
  20815. weight: math.unit(130, "kg"),
  20816. name: "Back",
  20817. image: {
  20818. source: "./media/characters/seroko/back.svg",
  20819. extra: 1369 / 1238,
  20820. bottom: 0.018
  20821. }
  20822. },
  20823. frontDressed: {
  20824. height: math.unit(8 + 8 / 12, "feet"),
  20825. weight: math.unit(130, "kg"),
  20826. name: "Front (Dressed)",
  20827. image: {
  20828. source: "./media/characters/seroko/front-dressed.svg",
  20829. extra: 1366 / 1275,
  20830. bottom: 0.03
  20831. }
  20832. },
  20833. },
  20834. [
  20835. {
  20836. name: "Normal",
  20837. height: math.unit(8 + 8 / 12, "feet"),
  20838. default: true
  20839. },
  20840. ]
  20841. ))
  20842. characterMakers.push(() => makeCharacter(
  20843. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20844. {
  20845. front: {
  20846. height: math.unit(5.5, "feet"),
  20847. weight: math.unit(160, "lb"),
  20848. name: "Front",
  20849. image: {
  20850. source: "./media/characters/quatzi/front.svg",
  20851. extra: 2346 / 2242,
  20852. bottom: 0.015
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Normal",
  20859. height: math.unit(5.5, "feet"),
  20860. default: true
  20861. },
  20862. {
  20863. name: "Big",
  20864. height: math.unit(7.7, "feet")
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20870. {
  20871. front: {
  20872. height: math.unit(5 + 11 / 12, "feet"),
  20873. weight: math.unit(180, "lb"),
  20874. name: "Front",
  20875. image: {
  20876. source: "./media/characters/sen/front.svg",
  20877. extra: 1321 / 1254,
  20878. bottom: 0.015
  20879. }
  20880. },
  20881. side: {
  20882. height: math.unit(5 + 11 / 12, "feet"),
  20883. weight: math.unit(180, "lb"),
  20884. name: "Side",
  20885. image: {
  20886. source: "./media/characters/sen/side.svg",
  20887. extra: 1321 / 1254,
  20888. bottom: 0.007
  20889. }
  20890. },
  20891. back: {
  20892. height: math.unit(5 + 11 / 12, "feet"),
  20893. weight: math.unit(180, "lb"),
  20894. name: "Back",
  20895. image: {
  20896. source: "./media/characters/sen/back.svg",
  20897. extra: 1321 / 1254
  20898. }
  20899. },
  20900. },
  20901. [
  20902. {
  20903. name: "Normal",
  20904. height: math.unit(5 + 11 / 12, "feet"),
  20905. default: true
  20906. },
  20907. ]
  20908. ))
  20909. characterMakers.push(() => makeCharacter(
  20910. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20911. {
  20912. front: {
  20913. height: math.unit(166.6, "cm"),
  20914. weight: math.unit(66.6, "kg"),
  20915. name: "Front",
  20916. image: {
  20917. source: "./media/characters/fruity/front.svg",
  20918. extra: 1510 / 1386,
  20919. bottom: 0.04
  20920. }
  20921. },
  20922. back: {
  20923. height: math.unit(166.6, "cm"),
  20924. weight: math.unit(66.6, "lb"),
  20925. name: "Back",
  20926. image: {
  20927. source: "./media/characters/fruity/back.svg",
  20928. extra: 1563 / 1435,
  20929. bottom: 0.005
  20930. }
  20931. },
  20932. },
  20933. [
  20934. {
  20935. name: "Normal",
  20936. height: math.unit(166.6, "cm"),
  20937. default: true
  20938. },
  20939. {
  20940. name: "Demonic",
  20941. height: math.unit(166.6, "feet")
  20942. },
  20943. ]
  20944. ))
  20945. characterMakers.push(() => makeCharacter(
  20946. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20947. {
  20948. side: {
  20949. height: math.unit(10, "feet"),
  20950. weight: math.unit(500, "lb"),
  20951. name: "Side",
  20952. image: {
  20953. source: "./media/characters/zost/side.svg",
  20954. extra: 966 / 880,
  20955. bottom: 0.075
  20956. }
  20957. },
  20958. mawFront: {
  20959. height: math.unit(1.08, "meters"),
  20960. name: "Maw (Front)",
  20961. image: {
  20962. source: "./media/characters/zost/maw-front.svg"
  20963. }
  20964. },
  20965. mawSide: {
  20966. height: math.unit(2.66, "feet"),
  20967. name: "Maw (Side)",
  20968. image: {
  20969. source: "./media/characters/zost/maw-side.svg"
  20970. }
  20971. },
  20972. },
  20973. [
  20974. {
  20975. name: "Normal",
  20976. height: math.unit(10, "feet"),
  20977. default: true
  20978. },
  20979. ]
  20980. ))
  20981. characterMakers.push(() => makeCharacter(
  20982. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20983. {
  20984. front: {
  20985. height: math.unit(5 + 4 / 12, "feet"),
  20986. weight: math.unit(120, "lb"),
  20987. name: "Front",
  20988. image: {
  20989. source: "./media/characters/luci/front.svg",
  20990. extra: 1985 / 1884,
  20991. bottom: 0.04
  20992. }
  20993. },
  20994. back: {
  20995. height: math.unit(5 + 4 / 12, "feet"),
  20996. weight: math.unit(120, "lb"),
  20997. name: "Back",
  20998. image: {
  20999. source: "./media/characters/luci/back.svg",
  21000. extra: 1892 / 1791,
  21001. bottom: 0.002
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(5 + 4 / 12, "feet"),
  21009. default: true
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(1500, "feet"),
  21018. weight: math.unit(3.8e6, "tons"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/2th/front.svg",
  21022. extra: 3489 / 3350,
  21023. bottom: 0.1
  21024. }
  21025. },
  21026. foot: {
  21027. height: math.unit(461, "feet"),
  21028. name: "Foot",
  21029. image: {
  21030. source: "./media/characters/2th/foot.svg"
  21031. }
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "\"Micro\"",
  21037. height: math.unit(15 + 7 / 12, "feet")
  21038. },
  21039. {
  21040. name: "Normal",
  21041. height: math.unit(1500, "feet"),
  21042. default: true
  21043. },
  21044. {
  21045. name: "Macro",
  21046. height: math.unit(5000, "feet")
  21047. },
  21048. {
  21049. name: "Megamacro",
  21050. height: math.unit(15, "miles")
  21051. },
  21052. {
  21053. name: "Gigamacro",
  21054. height: math.unit(4000, "miles")
  21055. },
  21056. {
  21057. name: "Galactic",
  21058. height: math.unit(50, "AU")
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21064. {
  21065. front: {
  21066. height: math.unit(5 + 6 / 12, "feet"),
  21067. weight: math.unit(220, "lb"),
  21068. name: "Front",
  21069. image: {
  21070. source: "./media/characters/amethyst/front.svg",
  21071. extra: 2078 / 2040,
  21072. bottom: 0.045
  21073. }
  21074. },
  21075. back: {
  21076. height: math.unit(5 + 6 / 12, "feet"),
  21077. weight: math.unit(220, "lb"),
  21078. name: "Back",
  21079. image: {
  21080. source: "./media/characters/amethyst/back.svg",
  21081. extra: 2021 / 1989,
  21082. bottom: 0.02
  21083. }
  21084. },
  21085. },
  21086. [
  21087. {
  21088. name: "Normal",
  21089. height: math.unit(5 + 6 / 12, "feet"),
  21090. default: true
  21091. },
  21092. ]
  21093. ))
  21094. characterMakers.push(() => makeCharacter(
  21095. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21096. {
  21097. front: {
  21098. height: math.unit(4 + 11 / 12, "feet"),
  21099. weight: math.unit(120, "lb"),
  21100. name: "Front",
  21101. image: {
  21102. source: "./media/characters/yumi-akiyama/front.svg",
  21103. extra: 1327 / 1235,
  21104. bottom: 0.02
  21105. }
  21106. },
  21107. back: {
  21108. height: math.unit(4 + 11 / 12, "feet"),
  21109. weight: math.unit(120, "lb"),
  21110. name: "Back",
  21111. image: {
  21112. source: "./media/characters/yumi-akiyama/back.svg",
  21113. extra: 1287 / 1245,
  21114. bottom: 0.002
  21115. }
  21116. },
  21117. },
  21118. [
  21119. {
  21120. name: "Galactic",
  21121. height: math.unit(50, "galaxies"),
  21122. default: true
  21123. },
  21124. {
  21125. name: "Universal",
  21126. height: math.unit(100, "universes")
  21127. },
  21128. ]
  21129. ))
  21130. characterMakers.push(() => makeCharacter(
  21131. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21132. {
  21133. front: {
  21134. height: math.unit(8, "feet"),
  21135. weight: math.unit(500, "lb"),
  21136. name: "Front",
  21137. image: {
  21138. source: "./media/characters/rifter-yrmori/front.svg",
  21139. extra: 1180 / 1125,
  21140. bottom: 0.02
  21141. }
  21142. },
  21143. back: {
  21144. height: math.unit(8, "feet"),
  21145. weight: math.unit(500, "lb"),
  21146. name: "Back",
  21147. image: {
  21148. source: "./media/characters/rifter-yrmori/back.svg",
  21149. extra: 1190 / 1145,
  21150. bottom: 0.001
  21151. }
  21152. },
  21153. wings: {
  21154. height: math.unit(7.75, "feet"),
  21155. weight: math.unit(500, "lb"),
  21156. name: "Wings",
  21157. image: {
  21158. source: "./media/characters/rifter-yrmori/wings.svg",
  21159. extra: 1357 / 1285
  21160. }
  21161. },
  21162. maw: {
  21163. height: math.unit(0.8, "feet"),
  21164. name: "Maw",
  21165. image: {
  21166. source: "./media/characters/rifter-yrmori/maw.svg"
  21167. }
  21168. },
  21169. mawfront: {
  21170. height: math.unit(1.45, "feet"),
  21171. name: "Maw (Front)",
  21172. image: {
  21173. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21174. }
  21175. },
  21176. },
  21177. [
  21178. {
  21179. name: "Normal",
  21180. height: math.unit(8, "feet"),
  21181. default: true
  21182. },
  21183. {
  21184. name: "Macro",
  21185. height: math.unit(42, "meters")
  21186. },
  21187. ]
  21188. ))
  21189. characterMakers.push(() => makeCharacter(
  21190. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21191. {
  21192. were: {
  21193. height: math.unit(25 + 6 / 12, "feet"),
  21194. weight: math.unit(10000, "lb"),
  21195. name: "Were",
  21196. image: {
  21197. source: "./media/characters/tahajin/were.svg",
  21198. extra: 801 / 770,
  21199. bottom: 0.042
  21200. }
  21201. },
  21202. aquatic: {
  21203. height: math.unit(6 + 4 / 12, "feet"),
  21204. weight: math.unit(160, "lb"),
  21205. name: "Aquatic",
  21206. image: {
  21207. source: "./media/characters/tahajin/aquatic.svg",
  21208. extra: 572 / 542,
  21209. bottom: 0.04
  21210. }
  21211. },
  21212. chow: {
  21213. height: math.unit(8 + 11 / 12, "feet"),
  21214. weight: math.unit(450, "lb"),
  21215. name: "Chow",
  21216. image: {
  21217. source: "./media/characters/tahajin/chow.svg",
  21218. extra: 660 / 640,
  21219. bottom: 0.015
  21220. }
  21221. },
  21222. demiNaga: {
  21223. height: math.unit(6 + 8 / 12, "feet"),
  21224. weight: math.unit(300, "lb"),
  21225. name: "Demi Naga",
  21226. image: {
  21227. source: "./media/characters/tahajin/demi-naga.svg",
  21228. extra: 643 / 615,
  21229. bottom: 0.1
  21230. }
  21231. },
  21232. data: {
  21233. height: math.unit(5, "inches"),
  21234. weight: math.unit(0.1, "lb"),
  21235. name: "Data",
  21236. image: {
  21237. source: "./media/characters/tahajin/data.svg"
  21238. }
  21239. },
  21240. fluu: {
  21241. height: math.unit(5 + 7 / 12, "feet"),
  21242. weight: math.unit(140, "lb"),
  21243. name: "Fluu",
  21244. image: {
  21245. source: "./media/characters/tahajin/fluu.svg",
  21246. extra: 628 / 592,
  21247. bottom: 0.02
  21248. }
  21249. },
  21250. starWarrior: {
  21251. height: math.unit(4 + 5 / 12, "feet"),
  21252. weight: math.unit(50, "lb"),
  21253. name: "Star Warrior",
  21254. image: {
  21255. source: "./media/characters/tahajin/star-warrior.svg"
  21256. }
  21257. },
  21258. },
  21259. [
  21260. {
  21261. name: "Normal",
  21262. height: math.unit(25 + 6 / 12, "feet"),
  21263. default: true
  21264. },
  21265. ]
  21266. ))
  21267. characterMakers.push(() => makeCharacter(
  21268. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21269. {
  21270. front: {
  21271. height: math.unit(8, "feet"),
  21272. weight: math.unit(350, "lb"),
  21273. name: "Front",
  21274. image: {
  21275. source: "./media/characters/gabira/front.svg",
  21276. extra: 608 / 580,
  21277. bottom: 0.03
  21278. }
  21279. },
  21280. back: {
  21281. height: math.unit(8, "feet"),
  21282. weight: math.unit(350, "lb"),
  21283. name: "Back",
  21284. image: {
  21285. source: "./media/characters/gabira/back.svg",
  21286. extra: 608 / 580,
  21287. bottom: 0.03
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(8, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21301. {
  21302. front: {
  21303. height: math.unit(5 + 3 / 12, "feet"),
  21304. weight: math.unit(137, "lb"),
  21305. name: "Front",
  21306. image: {
  21307. source: "./media/characters/sasha-katraine/front.svg",
  21308. bottom: 0.045
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Micro",
  21315. height: math.unit(5, "inches")
  21316. },
  21317. {
  21318. name: "Normal",
  21319. height: math.unit(5 + 3 / 12, "feet"),
  21320. default: true
  21321. },
  21322. ]
  21323. ))
  21324. characterMakers.push(() => makeCharacter(
  21325. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21326. {
  21327. side: {
  21328. height: math.unit(4, "inches"),
  21329. weight: math.unit(200, "grams"),
  21330. name: "Side",
  21331. image: {
  21332. source: "./media/characters/der/side.svg",
  21333. extra: 719 / 400,
  21334. bottom: 30.6 / 749.9187
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "Micro",
  21341. height: math.unit(4, "inches"),
  21342. default: true
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21348. {
  21349. side: {
  21350. height: math.unit(30, "meters"),
  21351. weight: math.unit(700, "tonnes"),
  21352. name: "Side",
  21353. image: {
  21354. source: "./media/characters/fixerdragon/side.svg",
  21355. extra: (1293.0514 - 116.03) / 1106.86,
  21356. bottom: 116.03 / 1293.0514
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Planck",
  21363. height: math.unit(1.6e-35, "meters")
  21364. },
  21365. {
  21366. name: "Micro",
  21367. height: math.unit(0.4, "meters")
  21368. },
  21369. {
  21370. name: "Normal",
  21371. height: math.unit(30, "meters"),
  21372. default: true
  21373. },
  21374. {
  21375. name: "Megamacro",
  21376. height: math.unit(1.2, "megameters")
  21377. },
  21378. {
  21379. name: "Teramacro",
  21380. height: math.unit(130, "terameters")
  21381. },
  21382. {
  21383. name: "Yottamacro",
  21384. height: math.unit(6200, "yottameters")
  21385. },
  21386. ]
  21387. ));
  21388. characterMakers.push(() => makeCharacter(
  21389. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21390. {
  21391. front: {
  21392. height: math.unit(8, "feet"),
  21393. weight: math.unit(250, "lb"),
  21394. name: "Front",
  21395. image: {
  21396. source: "./media/characters/kite/front.svg",
  21397. extra: 2796 / 2659,
  21398. bottom: 0.002
  21399. }
  21400. },
  21401. },
  21402. [
  21403. {
  21404. name: "Normal",
  21405. height: math.unit(8, "feet"),
  21406. default: true
  21407. },
  21408. {
  21409. name: "Macro",
  21410. height: math.unit(360, "feet")
  21411. },
  21412. {
  21413. name: "Megamacro",
  21414. height: math.unit(1500, "feet")
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21420. {
  21421. front: {
  21422. height: math.unit(5 + 10 / 12, "feet"),
  21423. weight: math.unit(150, "lb"),
  21424. name: "Front",
  21425. image: {
  21426. source: "./media/characters/poojawa-vynar/front.svg",
  21427. extra: (1506.1547 - 55) / 1356.6,
  21428. bottom: 55 / 1506.1547
  21429. }
  21430. },
  21431. frontTailless: {
  21432. height: math.unit(5 + 10 / 12, "feet"),
  21433. weight: math.unit(150, "lb"),
  21434. name: "Front (Tailless)",
  21435. image: {
  21436. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21437. extra: (1506.1547 - 55) / 1356.6,
  21438. bottom: 55 / 1506.1547
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(5 + 10 / 12, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(293, "meters"),
  21455. weight: math.unit(70400, "tons"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/violette/front.svg",
  21459. extra: 1227 / 1180,
  21460. bottom: 0.005
  21461. }
  21462. },
  21463. back: {
  21464. height: math.unit(293, "meters"),
  21465. weight: math.unit(70400, "tons"),
  21466. name: "Back",
  21467. image: {
  21468. source: "./media/characters/violette/back.svg",
  21469. extra: 1227 / 1180,
  21470. bottom: 0.005
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Macro",
  21477. height: math.unit(293, "meters"),
  21478. default: true
  21479. },
  21480. ]
  21481. ))
  21482. characterMakers.push(() => makeCharacter(
  21483. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21484. {
  21485. front: {
  21486. height: math.unit(1050, "feet"),
  21487. weight: math.unit(200000, "tons"),
  21488. name: "Front",
  21489. image: {
  21490. source: "./media/characters/alessandra/front.svg",
  21491. extra: 960 / 912,
  21492. bottom: 0.06
  21493. }
  21494. },
  21495. },
  21496. [
  21497. {
  21498. name: "Macro",
  21499. height: math.unit(1050, "feet")
  21500. },
  21501. {
  21502. name: "Macro+",
  21503. height: math.unit(900, "meters"),
  21504. default: true
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21510. {
  21511. front: {
  21512. height: math.unit(5, "feet"),
  21513. weight: math.unit(187, "lb"),
  21514. name: "Front",
  21515. image: {
  21516. source: "./media/characters/person/front.svg",
  21517. extra: 3087 / 2945,
  21518. bottom: 91 / 3181
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Micro",
  21525. height: math.unit(3, "inches")
  21526. },
  21527. {
  21528. name: "Normal",
  21529. height: math.unit(5, "feet"),
  21530. default: true
  21531. },
  21532. {
  21533. name: "Macro",
  21534. height: math.unit(90, "feet")
  21535. },
  21536. {
  21537. name: "Max Size",
  21538. height: math.unit(280, "feet")
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21544. {
  21545. front: {
  21546. height: math.unit(4.5, "meters"),
  21547. weight: math.unit(3200, "lb"),
  21548. name: "Front",
  21549. image: {
  21550. source: "./media/characters/ty/front.svg",
  21551. extra: 1038 / 960,
  21552. bottom: 31.156 / 1068
  21553. }
  21554. },
  21555. back: {
  21556. height: math.unit(4.5, "meters"),
  21557. weight: math.unit(3200, "lb"),
  21558. name: "Back",
  21559. image: {
  21560. source: "./media/characters/ty/back.svg",
  21561. extra: 1044 / 966,
  21562. bottom: 7.48 / 1049
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(4.5, "meters"),
  21570. default: true
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21576. {
  21577. front: {
  21578. height: math.unit(5 + 4 / 12, "feet"),
  21579. weight: math.unit(115, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/rocky/front.svg",
  21583. extra: 1012 / 975,
  21584. bottom: 54 / 1066
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(5 + 4 / 12, "feet"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21598. {
  21599. upright: {
  21600. height: math.unit(6, "meters"),
  21601. weight: math.unit(4000, "kg"),
  21602. name: "Upright",
  21603. image: {
  21604. source: "./media/characters/ruin/upright.svg",
  21605. extra: 668 / 661,
  21606. bottom: 42 / 799.8396
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Normal",
  21613. height: math.unit(6, "meters"),
  21614. default: true
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21620. {
  21621. front: {
  21622. height: math.unit(5, "feet"),
  21623. weight: math.unit(106, "lb"),
  21624. name: "Front",
  21625. image: {
  21626. source: "./media/characters/robin/front.svg",
  21627. extra: 862 / 799,
  21628. bottom: 42.4 / 914.8856
  21629. }
  21630. },
  21631. },
  21632. [
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(5, "feet"),
  21636. default: true
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21642. {
  21643. side: {
  21644. height: math.unit(3, "feet"),
  21645. weight: math.unit(225, "lb"),
  21646. name: "Side",
  21647. image: {
  21648. source: "./media/characters/saian/side.svg",
  21649. extra: 566 / 356,
  21650. bottom: 79.7 / 643
  21651. }
  21652. },
  21653. maw: {
  21654. height: math.unit(2.85, "feet"),
  21655. name: "Maw",
  21656. image: {
  21657. source: "./media/characters/saian/maw.svg"
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Normal",
  21664. height: math.unit(3, "feet"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21671. {
  21672. side: {
  21673. height: math.unit(8, "feet"),
  21674. weight: math.unit(300, "lb"),
  21675. name: "Side",
  21676. image: {
  21677. source: "./media/characters/equus-silvermane/side.svg",
  21678. extra: 2176 / 2050,
  21679. bottom: 65.7 / 2245
  21680. }
  21681. },
  21682. front: {
  21683. height: math.unit(8, "feet"),
  21684. weight: math.unit(300, "lb"),
  21685. name: "Front",
  21686. image: {
  21687. source: "./media/characters/equus-silvermane/front.svg",
  21688. extra: 4633 / 4400,
  21689. bottom: 71.3 / 4706.915
  21690. }
  21691. },
  21692. sideStepping: {
  21693. height: math.unit(8, "feet"),
  21694. weight: math.unit(300, "lb"),
  21695. name: "Side (Stepping)",
  21696. image: {
  21697. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21698. extra: 1968 / 1860,
  21699. bottom: 16.4 / 1989
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Normal",
  21706. height: math.unit(8, "feet")
  21707. },
  21708. {
  21709. name: "Minimacro",
  21710. height: math.unit(75, "feet"),
  21711. default: true
  21712. },
  21713. {
  21714. name: "Macro",
  21715. height: math.unit(150, "feet")
  21716. },
  21717. {
  21718. name: "Macro+",
  21719. height: math.unit(1000, "feet")
  21720. },
  21721. {
  21722. name: "Megamacro",
  21723. height: math.unit(1, "mile")
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21729. {
  21730. side: {
  21731. height: math.unit(20, "feet"),
  21732. weight: math.unit(30000, "kg"),
  21733. name: "Side",
  21734. image: {
  21735. source: "./media/characters/windar/side.svg",
  21736. extra: 1491 / 1248,
  21737. bottom: 82.56 / 1568
  21738. }
  21739. },
  21740. },
  21741. [
  21742. {
  21743. name: "Normal",
  21744. height: math.unit(20, "feet"),
  21745. default: true
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21751. {
  21752. side: {
  21753. height: math.unit(15.66, "feet"),
  21754. weight: math.unit(150, "lb"),
  21755. name: "Side",
  21756. image: {
  21757. source: "./media/characters/melody/side.svg",
  21758. extra: 1097 / 944,
  21759. bottom: 11.8 / 1109
  21760. }
  21761. },
  21762. sideOutfit: {
  21763. height: math.unit(15.66, "feet"),
  21764. weight: math.unit(150, "lb"),
  21765. name: "Side (Outfit)",
  21766. image: {
  21767. source: "./media/characters/melody/side-outfit.svg",
  21768. extra: 1097 / 944,
  21769. bottom: 11.8 / 1109
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(15.66, "feet"),
  21777. default: true
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21783. {
  21784. front: {
  21785. height: math.unit(8, "feet"),
  21786. weight: math.unit(325, "lb"),
  21787. name: "Front",
  21788. image: {
  21789. source: "./media/characters/windera/front.svg",
  21790. extra: 3180 / 2845,
  21791. bottom: 178 / 3365
  21792. }
  21793. },
  21794. },
  21795. [
  21796. {
  21797. name: "Normal",
  21798. height: math.unit(8, "feet"),
  21799. default: true
  21800. },
  21801. ]
  21802. ))
  21803. characterMakers.push(() => makeCharacter(
  21804. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21805. {
  21806. front: {
  21807. height: math.unit(28.75, "feet"),
  21808. weight: math.unit(2000, "kg"),
  21809. name: "Front",
  21810. image: {
  21811. source: "./media/characters/sonear/front.svg",
  21812. extra: 1041.1 / 964.9,
  21813. bottom: 53.7 / 1096.6
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Normal",
  21820. height: math.unit(28.75, "feet"),
  21821. default: true
  21822. },
  21823. ]
  21824. ))
  21825. characterMakers.push(() => makeCharacter(
  21826. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21827. {
  21828. side: {
  21829. height: math.unit(25.5, "feet"),
  21830. weight: math.unit(23000, "kg"),
  21831. name: "Side",
  21832. image: {
  21833. source: "./media/characters/kanara/side.svg"
  21834. }
  21835. },
  21836. },
  21837. [
  21838. {
  21839. name: "Normal",
  21840. height: math.unit(25.5, "feet"),
  21841. default: true
  21842. },
  21843. ]
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21847. {
  21848. side: {
  21849. height: math.unit(10, "feet"),
  21850. weight: math.unit(1000, "kg"),
  21851. name: "Side",
  21852. image: {
  21853. source: "./media/characters/ereus/side.svg",
  21854. extra: 1157 / 959,
  21855. bottom: 153 / 1312.5
  21856. }
  21857. },
  21858. },
  21859. [
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(10, "feet"),
  21863. default: true
  21864. },
  21865. ]
  21866. ))
  21867. characterMakers.push(() => makeCharacter(
  21868. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21869. {
  21870. side: {
  21871. height: math.unit(4.5, "feet"),
  21872. weight: math.unit(500, "lb"),
  21873. name: "Side",
  21874. image: {
  21875. source: "./media/characters/e-ter/side.svg",
  21876. extra: 1550 / 1248,
  21877. bottom: 146 / 1694
  21878. }
  21879. },
  21880. },
  21881. [
  21882. {
  21883. name: "Normal",
  21884. height: math.unit(4.5, "feet"),
  21885. default: true
  21886. },
  21887. ]
  21888. ))
  21889. characterMakers.push(() => makeCharacter(
  21890. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21891. {
  21892. side: {
  21893. height: math.unit(9.7, "feet"),
  21894. weight: math.unit(4000, "kg"),
  21895. name: "Side",
  21896. image: {
  21897. source: "./media/characters/yamie/side.svg"
  21898. }
  21899. },
  21900. },
  21901. [
  21902. {
  21903. name: "Normal",
  21904. height: math.unit(9.7, "feet"),
  21905. default: true
  21906. },
  21907. ]
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21911. {
  21912. front: {
  21913. height: math.unit(50, "feet"),
  21914. weight: math.unit(50000, "kg"),
  21915. name: "Front",
  21916. image: {
  21917. source: "./media/characters/anders/front.svg",
  21918. extra: 570 / 539,
  21919. bottom: 14.7 / 586.7
  21920. }
  21921. },
  21922. },
  21923. [
  21924. {
  21925. name: "Large",
  21926. height: math.unit(50, "feet")
  21927. },
  21928. {
  21929. name: "Macro",
  21930. height: math.unit(2000, "feet"),
  21931. default: true
  21932. },
  21933. {
  21934. name: "Megamacro",
  21935. height: math.unit(12, "miles")
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21941. {
  21942. front: {
  21943. height: math.unit(7 + 2 / 12, "feet"),
  21944. weight: math.unit(300, "lb"),
  21945. name: "Front",
  21946. image: {
  21947. source: "./media/characters/reban/front.svg",
  21948. extra: 516 / 487,
  21949. bottom: 42.82 / 558.356
  21950. }
  21951. },
  21952. dick: {
  21953. height: math.unit(7 / 5, "feet"),
  21954. name: "Dick",
  21955. image: {
  21956. source: "./media/characters/reban/dick.svg"
  21957. }
  21958. },
  21959. },
  21960. [
  21961. {
  21962. name: "Natural Height",
  21963. height: math.unit(7 + 2 / 12, "feet")
  21964. },
  21965. {
  21966. name: "Macro",
  21967. height: math.unit(500, "feet"),
  21968. default: true
  21969. },
  21970. {
  21971. name: "Canon Height",
  21972. height: math.unit(50, "AU")
  21973. },
  21974. ]
  21975. ))
  21976. characterMakers.push(() => makeCharacter(
  21977. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21978. {
  21979. front: {
  21980. height: math.unit(6, "feet"),
  21981. weight: math.unit(150, "lb"),
  21982. name: "Front",
  21983. image: {
  21984. source: "./media/characters/terrance-keayes/front.svg",
  21985. extra: 1.005,
  21986. bottom: 151 / 1615
  21987. }
  21988. },
  21989. side: {
  21990. height: math.unit(6, "feet"),
  21991. weight: math.unit(150, "lb"),
  21992. name: "Side",
  21993. image: {
  21994. source: "./media/characters/terrance-keayes/side.svg",
  21995. extra: 1.005,
  21996. bottom: 129.4 / 1544
  21997. }
  21998. },
  21999. back: {
  22000. height: math.unit(6, "feet"),
  22001. weight: math.unit(150, "lb"),
  22002. name: "Back",
  22003. image: {
  22004. source: "./media/characters/terrance-keayes/back.svg",
  22005. extra: 1.005,
  22006. bottom: 58.4 / 1557.3
  22007. }
  22008. },
  22009. dick: {
  22010. height: math.unit(6 * 0.208, "feet"),
  22011. name: "Dick",
  22012. image: {
  22013. source: "./media/characters/terrance-keayes/dick.svg"
  22014. }
  22015. },
  22016. },
  22017. [
  22018. {
  22019. name: "Canon Height",
  22020. height: math.unit(35, "miles"),
  22021. default: true
  22022. },
  22023. ]
  22024. ))
  22025. characterMakers.push(() => makeCharacter(
  22026. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22027. {
  22028. front: {
  22029. height: math.unit(6, "feet"),
  22030. weight: math.unit(150, "lb"),
  22031. name: "Front",
  22032. image: {
  22033. source: "./media/characters/ofelia/front.svg",
  22034. extra: 546 / 541,
  22035. bottom: 39 / 583
  22036. }
  22037. },
  22038. back: {
  22039. height: math.unit(6, "feet"),
  22040. weight: math.unit(150, "lb"),
  22041. name: "Back",
  22042. image: {
  22043. source: "./media/characters/ofelia/back.svg",
  22044. extra: 564 / 559.5,
  22045. bottom: 8.69 / 573.02
  22046. }
  22047. },
  22048. maw: {
  22049. height: math.unit(1, "feet"),
  22050. name: "Maw",
  22051. image: {
  22052. source: "./media/characters/ofelia/maw.svg"
  22053. }
  22054. },
  22055. foot: {
  22056. height: math.unit(1.949, "feet"),
  22057. name: "Foot",
  22058. image: {
  22059. source: "./media/characters/ofelia/foot.svg"
  22060. }
  22061. },
  22062. },
  22063. [
  22064. {
  22065. name: "Canon Height",
  22066. height: math.unit(2000, "miles"),
  22067. default: true
  22068. },
  22069. ]
  22070. ))
  22071. characterMakers.push(() => makeCharacter(
  22072. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22073. {
  22074. front: {
  22075. height: math.unit(6, "feet"),
  22076. weight: math.unit(150, "lb"),
  22077. name: "Front",
  22078. image: {
  22079. source: "./media/characters/samuel/front.svg",
  22080. extra: 265 / 258,
  22081. bottom: 2 / 266.1566
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Macro",
  22088. height: math.unit(100, "feet"),
  22089. default: true
  22090. },
  22091. {
  22092. name: "Full Size",
  22093. height: math.unit(1000, "miles")
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(6, "feet"),
  22102. weight: math.unit(300, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/beishir-kiel/front.svg",
  22106. extra: 569 / 547,
  22107. bottom: 41.9 / 609
  22108. }
  22109. },
  22110. maw: {
  22111. height: math.unit(6 * 0.202, "feet"),
  22112. name: "Maw",
  22113. image: {
  22114. source: "./media/characters/beishir-kiel/maw.svg"
  22115. }
  22116. },
  22117. },
  22118. [
  22119. {
  22120. name: "Macro",
  22121. height: math.unit(300, "feet"),
  22122. default: true
  22123. },
  22124. ]
  22125. ))
  22126. characterMakers.push(() => makeCharacter(
  22127. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22128. {
  22129. front: {
  22130. height: math.unit(5 + 7/12, "feet"),
  22131. weight: math.unit(120, "lb"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/logan-grey/front.svg",
  22135. extra: 1836/1738,
  22136. bottom: 108/1944
  22137. }
  22138. },
  22139. back: {
  22140. height: math.unit(5 + 7/12, "feet"),
  22141. weight: math.unit(120, "lb"),
  22142. name: "Back",
  22143. image: {
  22144. source: "./media/characters/logan-grey/back.svg",
  22145. extra: 1880/1794,
  22146. bottom: 24/1904
  22147. }
  22148. },
  22149. frontSfw: {
  22150. height: math.unit(5 + 7/12, "feet"),
  22151. weight: math.unit(120, "lb"),
  22152. name: "Front (SFW)",
  22153. image: {
  22154. source: "./media/characters/logan-grey/front-sfw.svg",
  22155. extra: 1836/1738,
  22156. bottom: 108/1944
  22157. }
  22158. },
  22159. backSfw: {
  22160. height: math.unit(5 + 7/12, "feet"),
  22161. weight: math.unit(120, "lb"),
  22162. name: "Back (SFW)",
  22163. image: {
  22164. source: "./media/characters/logan-grey/back-sfw.svg",
  22165. extra: 1880/1794,
  22166. bottom: 24/1904
  22167. }
  22168. },
  22169. hands: {
  22170. height: math.unit(0.84, "feet"),
  22171. name: "Hands",
  22172. image: {
  22173. source: "./media/characters/logan-grey/hands.svg"
  22174. }
  22175. },
  22176. paws: {
  22177. height: math.unit(0.72, "feet"),
  22178. name: "Paws",
  22179. image: {
  22180. source: "./media/characters/logan-grey/paws.svg"
  22181. }
  22182. },
  22183. cock: {
  22184. height: math.unit(1.45, "feet"),
  22185. name: "Cock",
  22186. image: {
  22187. source: "./media/characters/logan-grey/cock.svg"
  22188. }
  22189. },
  22190. cockAlt: {
  22191. height: math.unit(1.437, "feet"),
  22192. name: "Cock (alt)",
  22193. image: {
  22194. source: "./media/characters/logan-grey/cock-alt.svg"
  22195. }
  22196. },
  22197. },
  22198. [
  22199. {
  22200. name: "Normal",
  22201. height: math.unit(5 + 8 / 12, "feet")
  22202. },
  22203. {
  22204. name: "The 500 Foot Femboy",
  22205. height: math.unit(500, "feet"),
  22206. default: true
  22207. },
  22208. {
  22209. name: "Megmacro",
  22210. height: math.unit(20, "miles")
  22211. },
  22212. ]
  22213. ))
  22214. characterMakers.push(() => makeCharacter(
  22215. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22216. {
  22217. front: {
  22218. height: math.unit(8 + 2 / 12, "feet"),
  22219. weight: math.unit(275, "lb"),
  22220. name: "Front",
  22221. image: {
  22222. source: "./media/characters/draganta/front.svg",
  22223. extra: 1177 / 1135,
  22224. bottom: 33.46 / 1212.1
  22225. }
  22226. },
  22227. },
  22228. [
  22229. {
  22230. name: "Normal",
  22231. height: math.unit(8 + 6 / 12, "feet"),
  22232. default: true
  22233. },
  22234. {
  22235. name: "Macro",
  22236. height: math.unit(150, "feet")
  22237. },
  22238. {
  22239. name: "Megamacro",
  22240. height: math.unit(1000, "miles")
  22241. },
  22242. ]
  22243. ))
  22244. characterMakers.push(() => makeCharacter(
  22245. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22246. {
  22247. front: {
  22248. height: math.unit(1.72, "m"),
  22249. weight: math.unit(80, "lb"),
  22250. name: "Front",
  22251. image: {
  22252. source: "./media/characters/voski/front.svg",
  22253. extra: 2076.22 / 2022.4,
  22254. bottom: 102.7 / 2177.3866
  22255. }
  22256. },
  22257. frontNsfw: {
  22258. height: math.unit(1.72, "m"),
  22259. weight: math.unit(80, "lb"),
  22260. name: "Front (NSFW)",
  22261. image: {
  22262. source: "./media/characters/voski/front-nsfw.svg",
  22263. extra: 2076.22 / 2022.4,
  22264. bottom: 102.7 / 2177.3866
  22265. }
  22266. },
  22267. back: {
  22268. height: math.unit(1.72, "m"),
  22269. weight: math.unit(80, "lb"),
  22270. name: "Back",
  22271. image: {
  22272. source: "./media/characters/voski/back.svg",
  22273. extra: 2104 / 2051,
  22274. bottom: 10.45 / 2113.63
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Normal",
  22281. height: math.unit(1.72, "m")
  22282. },
  22283. {
  22284. name: "Macro",
  22285. height: math.unit(55, "m"),
  22286. default: true
  22287. },
  22288. {
  22289. name: "Macro+",
  22290. height: math.unit(300, "m")
  22291. },
  22292. {
  22293. name: "Macro++",
  22294. height: math.unit(700, "m")
  22295. },
  22296. {
  22297. name: "Macro+++",
  22298. height: math.unit(4500, "m")
  22299. },
  22300. {
  22301. name: "Macro++++",
  22302. height: math.unit(45, "km")
  22303. },
  22304. {
  22305. name: "Macro+++++",
  22306. height: math.unit(1220, "km")
  22307. },
  22308. ]
  22309. ))
  22310. characterMakers.push(() => makeCharacter(
  22311. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22312. {
  22313. front: {
  22314. height: math.unit(2.3, "m"),
  22315. weight: math.unit(304, "kg"),
  22316. name: "Front",
  22317. image: {
  22318. source: "./media/characters/icowom-lee/front.svg",
  22319. extra: 985 / 955,
  22320. bottom: 25.4 / 1012
  22321. }
  22322. },
  22323. fronttentacles: {
  22324. height: math.unit(2.3, "m"),
  22325. weight: math.unit(304, "kg"),
  22326. name: "Front-tentacles",
  22327. image: {
  22328. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22329. extra: 985 / 955,
  22330. bottom: 25.4 / 1012
  22331. }
  22332. },
  22333. back: {
  22334. height: math.unit(2.3, "m"),
  22335. weight: math.unit(304, "kg"),
  22336. name: "Back",
  22337. image: {
  22338. source: "./media/characters/icowom-lee/back.svg",
  22339. extra: 975 / 954,
  22340. bottom: 9.5 / 985
  22341. }
  22342. },
  22343. backtentacles: {
  22344. height: math.unit(2.3, "m"),
  22345. weight: math.unit(304, "kg"),
  22346. name: "Back-tentacles",
  22347. image: {
  22348. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22349. extra: 975 / 954,
  22350. bottom: 9.5 / 985
  22351. }
  22352. },
  22353. frontDressed: {
  22354. height: math.unit(2.3, "m"),
  22355. weight: math.unit(304, "kg"),
  22356. name: "Front (Dressed)",
  22357. image: {
  22358. source: "./media/characters/icowom-lee/front-dressed.svg",
  22359. extra: 3076 / 2933,
  22360. bottom: 51.4 / 3125.1889
  22361. }
  22362. },
  22363. rump: {
  22364. height: math.unit(0.776, "meters"),
  22365. name: "Rump",
  22366. image: {
  22367. source: "./media/characters/icowom-lee/rump.svg"
  22368. }
  22369. },
  22370. genitals: {
  22371. height: math.unit(0.78, "meters"),
  22372. name: "Genitals",
  22373. image: {
  22374. source: "./media/characters/icowom-lee/genitals.svg"
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Normal",
  22381. height: math.unit(2.3, "meters"),
  22382. default: true
  22383. },
  22384. {
  22385. name: "Macro",
  22386. height: math.unit(94, "meters"),
  22387. default: true
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(22, "meters"),
  22396. weight: math.unit(21000, "kg"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/shock-diamond/front.svg",
  22400. extra: 2204 / 2053,
  22401. bottom: 65 / 2239.47
  22402. }
  22403. },
  22404. frontNude: {
  22405. height: math.unit(22, "meters"),
  22406. weight: math.unit(21000, "kg"),
  22407. name: "Front (Nude)",
  22408. image: {
  22409. source: "./media/characters/shock-diamond/front-nude.svg",
  22410. extra: 2514 / 2285,
  22411. bottom: 13 / 2527.56
  22412. }
  22413. },
  22414. },
  22415. [
  22416. {
  22417. name: "Normal",
  22418. height: math.unit(3, "meters")
  22419. },
  22420. {
  22421. name: "Macro",
  22422. height: math.unit(22, "meters"),
  22423. default: true
  22424. },
  22425. ]
  22426. ))
  22427. characterMakers.push(() => makeCharacter(
  22428. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22429. {
  22430. front: {
  22431. height: math.unit(5 + 4 / 12, "feet"),
  22432. weight: math.unit(120, "lb"),
  22433. name: "Front",
  22434. image: {
  22435. source: "./media/characters/rory/front.svg",
  22436. extra: 1318/1241,
  22437. bottom: 42/1360
  22438. }
  22439. },
  22440. back: {
  22441. height: math.unit(5 + 4 / 12, "feet"),
  22442. weight: math.unit(120, "lb"),
  22443. name: "Back",
  22444. image: {
  22445. source: "./media/characters/rory/back.svg",
  22446. extra: 1318/1241,
  22447. bottom: 42/1360
  22448. }
  22449. },
  22450. butt: {
  22451. height: math.unit(1.74, "feet"),
  22452. name: "Butt",
  22453. image: {
  22454. source: "./media/characters/rory/butt.svg"
  22455. }
  22456. },
  22457. dick: {
  22458. height: math.unit(1.02, "feet"),
  22459. name: "Dick",
  22460. image: {
  22461. source: "./media/characters/rory/dick.svg"
  22462. }
  22463. },
  22464. paws: {
  22465. height: math.unit(1, "feet"),
  22466. name: "Paws",
  22467. image: {
  22468. source: "./media/characters/rory/paws.svg"
  22469. }
  22470. },
  22471. frontAlt: {
  22472. height: math.unit(5 + 4 / 12, "feet"),
  22473. weight: math.unit(120, "lb"),
  22474. name: "Front (Alt)",
  22475. image: {
  22476. source: "./media/characters/rory/front-alt.svg",
  22477. extra: 589 / 556,
  22478. bottom: 45.7 / 635.76
  22479. }
  22480. },
  22481. frontAltNude: {
  22482. height: math.unit(5 + 4 / 12, "feet"),
  22483. weight: math.unit(120, "lb"),
  22484. name: "Front (Alt, Nude)",
  22485. image: {
  22486. source: "./media/characters/rory/front-alt-nude.svg",
  22487. extra: 589 / 556,
  22488. bottom: 45.7 / 635.76
  22489. }
  22490. },
  22491. side: {
  22492. height: math.unit(5 + 4 / 12, "feet"),
  22493. weight: math.unit(120, "lb"),
  22494. name: "Side",
  22495. image: {
  22496. source: "./media/characters/rory/side.svg",
  22497. extra: 597 / 564,
  22498. bottom: 55 / 653
  22499. }
  22500. },
  22501. backAlt: {
  22502. height: math.unit(5 + 4 / 12, "feet"),
  22503. weight: math.unit(120, "lb"),
  22504. name: "Back (Alt)",
  22505. image: {
  22506. source: "./media/characters/rory/back-alt.svg",
  22507. extra: 620 / 585,
  22508. bottom: 8.86 / 630.43
  22509. }
  22510. },
  22511. dickAlt: {
  22512. height: math.unit(0.86, "feet"),
  22513. name: "Dick (Alt)",
  22514. image: {
  22515. source: "./media/characters/rory/dick-alt.svg"
  22516. }
  22517. },
  22518. },
  22519. [
  22520. {
  22521. name: "Normal",
  22522. height: math.unit(5 + 4 / 12, "feet"),
  22523. default: true
  22524. },
  22525. {
  22526. name: "Macro",
  22527. height: math.unit(100, "feet")
  22528. },
  22529. {
  22530. name: "Macro+",
  22531. height: math.unit(140, "feet")
  22532. },
  22533. {
  22534. name: "Macro++",
  22535. height: math.unit(300, "feet")
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22541. {
  22542. front: {
  22543. height: math.unit(5 + 9 / 12, "feet"),
  22544. weight: math.unit(190, "lb"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/sprisk/front.svg",
  22548. extra: 1225 / 1180,
  22549. bottom: 42.7 / 1266.4
  22550. }
  22551. },
  22552. frontNsfw: {
  22553. height: math.unit(5 + 9 / 12, "feet"),
  22554. weight: math.unit(190, "lb"),
  22555. name: "Front (NSFW)",
  22556. image: {
  22557. source: "./media/characters/sprisk/front-nsfw.svg",
  22558. extra: 1225 / 1180,
  22559. bottom: 42.7 / 1266.4
  22560. }
  22561. },
  22562. back: {
  22563. height: math.unit(5 + 9 / 12, "feet"),
  22564. weight: math.unit(190, "lb"),
  22565. name: "Back",
  22566. image: {
  22567. source: "./media/characters/sprisk/back.svg",
  22568. extra: 1247 / 1200,
  22569. bottom: 5.6 / 1253.04
  22570. }
  22571. },
  22572. },
  22573. [
  22574. {
  22575. name: "Tiny",
  22576. height: math.unit(2, "inches")
  22577. },
  22578. {
  22579. name: "Normal",
  22580. height: math.unit(5 + 9 / 12, "feet"),
  22581. default: true
  22582. },
  22583. {
  22584. name: "Mini Macro",
  22585. height: math.unit(18, "feet")
  22586. },
  22587. {
  22588. name: "Macro",
  22589. height: math.unit(100, "feet")
  22590. },
  22591. {
  22592. name: "MACRO",
  22593. height: math.unit(50, "miles")
  22594. },
  22595. {
  22596. name: "M A C R O",
  22597. height: math.unit(300, "miles")
  22598. },
  22599. ]
  22600. ))
  22601. characterMakers.push(() => makeCharacter(
  22602. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22603. {
  22604. side: {
  22605. height: math.unit(15.6, "meters"),
  22606. weight: math.unit(700000, "kg"),
  22607. name: "Side",
  22608. image: {
  22609. source: "./media/characters/bunsen/side.svg",
  22610. extra: 1644 / 358
  22611. }
  22612. },
  22613. foot: {
  22614. height: math.unit(1.611 * 1644 / 358, "meter"),
  22615. name: "Foot",
  22616. image: {
  22617. source: "./media/characters/bunsen/foot.svg"
  22618. }
  22619. },
  22620. },
  22621. [
  22622. {
  22623. name: "Small",
  22624. height: math.unit(10, "feet")
  22625. },
  22626. {
  22627. name: "Normal",
  22628. height: math.unit(15.6, "meters"),
  22629. default: true
  22630. },
  22631. ]
  22632. ))
  22633. characterMakers.push(() => makeCharacter(
  22634. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22635. {
  22636. front: {
  22637. height: math.unit(4 + 11 / 12, "feet"),
  22638. weight: math.unit(140, "lb"),
  22639. name: "Front",
  22640. image: {
  22641. source: "./media/characters/sesh/front.svg",
  22642. extra: 3420 / 3231,
  22643. bottom: 72 / 3949.5
  22644. }
  22645. },
  22646. },
  22647. [
  22648. {
  22649. name: "Normal",
  22650. height: math.unit(4 + 11 / 12, "feet")
  22651. },
  22652. {
  22653. name: "Grown",
  22654. height: math.unit(15, "feet"),
  22655. default: true
  22656. },
  22657. {
  22658. name: "Macro",
  22659. height: math.unit(1500, "feet")
  22660. },
  22661. {
  22662. name: "Megamacro",
  22663. height: math.unit(30, "miles")
  22664. },
  22665. {
  22666. name: "Continental",
  22667. height: math.unit(3000, "miles")
  22668. },
  22669. {
  22670. name: "Gravity Mass",
  22671. height: math.unit(300000, "miles")
  22672. },
  22673. {
  22674. name: "Planet Buster",
  22675. height: math.unit(30000000, "miles")
  22676. },
  22677. {
  22678. name: "Big",
  22679. height: math.unit(3000000000, "miles")
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(9, "feet"),
  22688. weight: math.unit(350, "lb"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/pepper/front.svg",
  22692. extra: 1448 / 1312,
  22693. bottom: 9.4 / 1457.88
  22694. }
  22695. },
  22696. back: {
  22697. height: math.unit(9, "feet"),
  22698. weight: math.unit(350, "lb"),
  22699. name: "Back",
  22700. image: {
  22701. source: "./media/characters/pepper/back.svg",
  22702. extra: 1423 / 1300,
  22703. bottom: 4.6 / 1429
  22704. }
  22705. },
  22706. maw: {
  22707. height: math.unit(0.932, "feet"),
  22708. name: "Maw",
  22709. image: {
  22710. source: "./media/characters/pepper/maw.svg"
  22711. }
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Normal",
  22717. height: math.unit(9, "feet"),
  22718. default: true
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(6, "feet"),
  22727. weight: math.unit(150, "lb"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/maelstrom/front.svg",
  22731. extra: 2100 / 1883,
  22732. bottom: 94 / 2196.7
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Less Kaiju",
  22739. height: math.unit(200, "feet")
  22740. },
  22741. {
  22742. name: "Kaiju",
  22743. height: math.unit(400, "feet"),
  22744. default: true
  22745. },
  22746. {
  22747. name: "Kaiju-er",
  22748. height: math.unit(600, "feet")
  22749. },
  22750. ]
  22751. ))
  22752. characterMakers.push(() => makeCharacter(
  22753. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22754. {
  22755. front: {
  22756. height: math.unit(6 + 5 / 12, "feet"),
  22757. weight: math.unit(180, "lb"),
  22758. name: "Front",
  22759. image: {
  22760. source: "./media/characters/lexir/front.svg",
  22761. extra: 180 / 172,
  22762. bottom: 12 / 192
  22763. }
  22764. },
  22765. back: {
  22766. height: math.unit(6 + 5 / 12, "feet"),
  22767. weight: math.unit(180, "lb"),
  22768. name: "Back",
  22769. image: {
  22770. source: "./media/characters/lexir/back.svg",
  22771. extra: 183.84 / 175.5,
  22772. bottom: 3.1 / 187
  22773. }
  22774. },
  22775. },
  22776. [
  22777. {
  22778. name: "Very Smal",
  22779. height: math.unit(1, "nm")
  22780. },
  22781. {
  22782. name: "Normal",
  22783. height: math.unit(6 + 5 / 12, "feet"),
  22784. default: true
  22785. },
  22786. {
  22787. name: "Macro",
  22788. height: math.unit(1, "mile")
  22789. },
  22790. {
  22791. name: "Megamacro",
  22792. height: math.unit(50, "miles")
  22793. },
  22794. ]
  22795. ))
  22796. characterMakers.push(() => makeCharacter(
  22797. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22798. {
  22799. front: {
  22800. height: math.unit(1.5, "meters"),
  22801. weight: math.unit(100, "lb"),
  22802. name: "Front",
  22803. image: {
  22804. source: "./media/characters/maksio/front.svg",
  22805. extra: 1549 / 1531,
  22806. bottom: 123.7 / 1674.5429
  22807. }
  22808. },
  22809. back: {
  22810. height: math.unit(1.5, "meters"),
  22811. weight: math.unit(100, "lb"),
  22812. name: "Back",
  22813. image: {
  22814. source: "./media/characters/maksio/back.svg",
  22815. extra: 1541 / 1509,
  22816. bottom: 97 / 1639
  22817. }
  22818. },
  22819. hand: {
  22820. height: math.unit(0.621, "feet"),
  22821. name: "Hand",
  22822. image: {
  22823. source: "./media/characters/maksio/hand.svg"
  22824. }
  22825. },
  22826. foot: {
  22827. height: math.unit(1.611, "feet"),
  22828. name: "Foot",
  22829. image: {
  22830. source: "./media/characters/maksio/foot.svg"
  22831. }
  22832. },
  22833. },
  22834. [
  22835. {
  22836. name: "Shrunken",
  22837. height: math.unit(10, "cm")
  22838. },
  22839. {
  22840. name: "Normal",
  22841. height: math.unit(150, "cm"),
  22842. default: true
  22843. },
  22844. ]
  22845. ))
  22846. characterMakers.push(() => makeCharacter(
  22847. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22848. {
  22849. front: {
  22850. height: math.unit(100, "feet"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/erza-bear/front.svg",
  22854. extra: 2449 / 2390,
  22855. bottom: 46 / 2494
  22856. }
  22857. },
  22858. back: {
  22859. height: math.unit(100, "feet"),
  22860. name: "Back",
  22861. image: {
  22862. source: "./media/characters/erza-bear/back.svg",
  22863. extra: 2489 / 2430,
  22864. bottom: 85.4 / 2480
  22865. }
  22866. },
  22867. tail: {
  22868. height: math.unit(42, "feet"),
  22869. name: "Tail",
  22870. image: {
  22871. source: "./media/characters/erza-bear/tail.svg"
  22872. }
  22873. },
  22874. tongue: {
  22875. height: math.unit(8, "feet"),
  22876. name: "Tongue",
  22877. image: {
  22878. source: "./media/characters/erza-bear/tongue.svg"
  22879. }
  22880. },
  22881. dick: {
  22882. height: math.unit(10.5, "feet"),
  22883. name: "Dick",
  22884. image: {
  22885. source: "./media/characters/erza-bear/dick.svg"
  22886. }
  22887. },
  22888. dickVertical: {
  22889. height: math.unit(16.9, "feet"),
  22890. name: "Dick (Vertical)",
  22891. image: {
  22892. source: "./media/characters/erza-bear/dick-vertical.svg"
  22893. }
  22894. },
  22895. },
  22896. [
  22897. {
  22898. name: "Macro",
  22899. height: math.unit(100, "feet"),
  22900. default: true
  22901. },
  22902. ]
  22903. ))
  22904. characterMakers.push(() => makeCharacter(
  22905. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22906. {
  22907. front: {
  22908. height: math.unit(172, "cm"),
  22909. weight: math.unit(73, "kg"),
  22910. name: "Front",
  22911. image: {
  22912. source: "./media/characters/violet-flor/front.svg",
  22913. extra: 1530 / 1442,
  22914. bottom: 61.9 / 1588.8
  22915. }
  22916. },
  22917. back: {
  22918. height: math.unit(180, "cm"),
  22919. weight: math.unit(73, "kg"),
  22920. name: "Back",
  22921. image: {
  22922. source: "./media/characters/violet-flor/back.svg",
  22923. extra: 1692 / 1630,
  22924. bottom: 20 / 1712
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Normal",
  22931. height: math.unit(172, "cm"),
  22932. default: true
  22933. },
  22934. ]
  22935. ))
  22936. characterMakers.push(() => makeCharacter(
  22937. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22938. {
  22939. front: {
  22940. height: math.unit(6, "feet"),
  22941. weight: math.unit(220, "lb"),
  22942. name: "Front",
  22943. image: {
  22944. source: "./media/characters/lynn-rhea/front.svg",
  22945. extra: 310 / 273
  22946. }
  22947. },
  22948. back: {
  22949. height: math.unit(6, "feet"),
  22950. weight: math.unit(220, "lb"),
  22951. name: "Back",
  22952. image: {
  22953. source: "./media/characters/lynn-rhea/back.svg",
  22954. extra: 310 / 273
  22955. }
  22956. },
  22957. dicks: {
  22958. height: math.unit(0.9, "feet"),
  22959. name: "Dicks",
  22960. image: {
  22961. source: "./media/characters/lynn-rhea/dicks.svg"
  22962. }
  22963. },
  22964. slit: {
  22965. height: math.unit(0.4, "feet"),
  22966. name: "Slit",
  22967. image: {
  22968. source: "./media/characters/lynn-rhea/slit.svg"
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Micro",
  22975. height: math.unit(1, "inch")
  22976. },
  22977. {
  22978. name: "Macro",
  22979. height: math.unit(60, "feet"),
  22980. default: true
  22981. },
  22982. {
  22983. name: "Megamacro",
  22984. height: math.unit(2, "miles")
  22985. },
  22986. {
  22987. name: "Gigamacro",
  22988. height: math.unit(3, "earths")
  22989. },
  22990. {
  22991. name: "Galactic",
  22992. height: math.unit(0.8, "galaxies")
  22993. },
  22994. ]
  22995. ))
  22996. characterMakers.push(() => makeCharacter(
  22997. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22998. {
  22999. front: {
  23000. height: math.unit(1600, "feet"),
  23001. weight: math.unit(85758785169, "kg"),
  23002. name: "Front",
  23003. image: {
  23004. source: "./media/characters/valathos/front.svg",
  23005. extra: 1451 / 1339
  23006. }
  23007. },
  23008. },
  23009. [
  23010. {
  23011. name: "Macro",
  23012. height: math.unit(1600, "feet"),
  23013. default: true
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23019. {
  23020. front: {
  23021. height: math.unit(7 + 5 / 12, "feet"),
  23022. weight: math.unit(300, "lb"),
  23023. name: "Front",
  23024. image: {
  23025. source: "./media/characters/azula/front.svg",
  23026. extra: 3208 / 2880,
  23027. bottom: 80.2 / 3277
  23028. }
  23029. },
  23030. back: {
  23031. height: math.unit(7 + 5 / 12, "feet"),
  23032. weight: math.unit(300, "lb"),
  23033. name: "Back",
  23034. image: {
  23035. source: "./media/characters/azula/back.svg",
  23036. extra: 3169 / 2822,
  23037. bottom: 150.6 / 3321
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Normal",
  23044. height: math.unit(7 + 5 / 12, "feet"),
  23045. default: true
  23046. },
  23047. {
  23048. name: "Big",
  23049. height: math.unit(20, "feet")
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23055. {
  23056. front: {
  23057. height: math.unit(5 + 1 / 12, "feet"),
  23058. weight: math.unit(110, "lb"),
  23059. name: "Front",
  23060. image: {
  23061. source: "./media/characters/rupert/front.svg",
  23062. extra: 1549 / 1495,
  23063. bottom: 54.2 / 1604.4
  23064. }
  23065. },
  23066. },
  23067. [
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(5 + 1 / 12, "feet"),
  23071. default: true
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23077. {
  23078. front: {
  23079. height: math.unit(8 + 4 / 12, "feet"),
  23080. weight: math.unit(350, "lb"),
  23081. name: "Front",
  23082. image: {
  23083. source: "./media/characters/sheera-castellar/front.svg",
  23084. extra: 1957 / 1894,
  23085. bottom: 26.97 / 1975.017
  23086. }
  23087. },
  23088. side: {
  23089. height: math.unit(8 + 4 / 12, "feet"),
  23090. weight: math.unit(350, "lb"),
  23091. name: "Side",
  23092. image: {
  23093. source: "./media/characters/sheera-castellar/side.svg",
  23094. extra: 1957 / 1894
  23095. }
  23096. },
  23097. back: {
  23098. height: math.unit(8 + 4 / 12, "feet"),
  23099. weight: math.unit(350, "lb"),
  23100. name: "Back",
  23101. image: {
  23102. source: "./media/characters/sheera-castellar/back.svg",
  23103. extra: 1957 / 1894
  23104. }
  23105. },
  23106. angled: {
  23107. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23108. weight: math.unit(350, "lb"),
  23109. name: "Angled",
  23110. image: {
  23111. source: "./media/characters/sheera-castellar/angled.svg",
  23112. extra: 1807 / 1707,
  23113. bottom: 68 / 1875
  23114. }
  23115. },
  23116. genitals: {
  23117. height: math.unit(2.2, "feet"),
  23118. name: "Genitals",
  23119. image: {
  23120. source: "./media/characters/sheera-castellar/genitals.svg"
  23121. }
  23122. },
  23123. taur: {
  23124. height: math.unit(10 + 6/12, "feet"),
  23125. name: "Taur",
  23126. image: {
  23127. source: "./media/characters/sheera-castellar/taur.svg",
  23128. extra: 2017/1909,
  23129. bottom: 185/2202
  23130. }
  23131. },
  23132. },
  23133. [
  23134. {
  23135. name: "Normal",
  23136. height: math.unit(8 + 4 / 12, "feet")
  23137. },
  23138. {
  23139. name: "Macro",
  23140. height: math.unit(150, "feet"),
  23141. default: true
  23142. },
  23143. {
  23144. name: "Macro+",
  23145. height: math.unit(800, "feet")
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23151. {
  23152. front: {
  23153. height: math.unit(6, "feet"),
  23154. weight: math.unit(150, "lb"),
  23155. name: "Front",
  23156. image: {
  23157. source: "./media/characters/jaipur/front.svg",
  23158. extra: 3860 / 3731,
  23159. bottom: 287 / 4140
  23160. }
  23161. },
  23162. back: {
  23163. height: math.unit(6, "feet"),
  23164. weight: math.unit(150, "lb"),
  23165. name: "Back",
  23166. image: {
  23167. source: "./media/characters/jaipur/back.svg",
  23168. extra: 4060 / 3930,
  23169. bottom: 151 / 4200
  23170. }
  23171. },
  23172. },
  23173. [
  23174. {
  23175. name: "Normal",
  23176. height: math.unit(1.85, "meters"),
  23177. default: true
  23178. },
  23179. {
  23180. name: "Macro",
  23181. height: math.unit(150, "meters")
  23182. },
  23183. {
  23184. name: "Macro+",
  23185. height: math.unit(0.5, "miles")
  23186. },
  23187. {
  23188. name: "Macro++",
  23189. height: math.unit(2.5, "miles")
  23190. },
  23191. {
  23192. name: "Macro+++",
  23193. height: math.unit(12, "miles")
  23194. },
  23195. {
  23196. name: "Macro++++",
  23197. height: math.unit(120, "miles")
  23198. },
  23199. {
  23200. name: "Macro+++++",
  23201. height: math.unit(1200, "miles")
  23202. },
  23203. ]
  23204. ))
  23205. characterMakers.push(() => makeCharacter(
  23206. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23207. {
  23208. front: {
  23209. height: math.unit(6, "feet"),
  23210. weight: math.unit(150, "lb"),
  23211. name: "Front",
  23212. image: {
  23213. source: "./media/characters/sheila-wolf/front.svg",
  23214. extra: 1931 / 1808,
  23215. bottom: 29.5 / 1960
  23216. }
  23217. },
  23218. dick: {
  23219. height: math.unit(1.464, "feet"),
  23220. name: "Dick",
  23221. image: {
  23222. source: "./media/characters/sheila-wolf/dick.svg"
  23223. }
  23224. },
  23225. muzzle: {
  23226. height: math.unit(0.513, "feet"),
  23227. name: "Muzzle",
  23228. image: {
  23229. source: "./media/characters/sheila-wolf/muzzle.svg"
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Macro",
  23236. height: math.unit(70, "feet"),
  23237. default: true
  23238. },
  23239. ]
  23240. ))
  23241. characterMakers.push(() => makeCharacter(
  23242. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23243. {
  23244. front: {
  23245. height: math.unit(32, "meters"),
  23246. weight: math.unit(300000, "kg"),
  23247. name: "Front",
  23248. image: {
  23249. source: "./media/characters/almor/front.svg",
  23250. extra: 1408 / 1322,
  23251. bottom: 94.6 / 1506.5
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Macro",
  23258. height: math.unit(32, "meters"),
  23259. default: true
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23265. {
  23266. front: {
  23267. height: math.unit(7, "feet"),
  23268. weight: math.unit(200, "lb"),
  23269. name: "Front",
  23270. image: {
  23271. source: "./media/characters/silver/front.svg",
  23272. extra: 472.1 / 450.5,
  23273. bottom: 26.5 / 499.424
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Normal",
  23280. height: math.unit(7, "feet"),
  23281. default: true
  23282. },
  23283. {
  23284. name: "Macro",
  23285. height: math.unit(800, "feet")
  23286. },
  23287. {
  23288. name: "Megamacro",
  23289. height: math.unit(250, "miles")
  23290. },
  23291. ]
  23292. ))
  23293. characterMakers.push(() => makeCharacter(
  23294. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23295. {
  23296. front: {
  23297. height: math.unit(6, "feet"),
  23298. weight: math.unit(150, "lb"),
  23299. name: "Front",
  23300. image: {
  23301. source: "./media/characters/pliskin/front.svg",
  23302. extra: 1469 / 1359,
  23303. bottom: 70 / 1540
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Micro",
  23310. height: math.unit(3, "inches")
  23311. },
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(5 + 11 / 12, "feet"),
  23315. default: true
  23316. },
  23317. {
  23318. name: "Macro",
  23319. height: math.unit(120, "feet")
  23320. },
  23321. ]
  23322. ))
  23323. characterMakers.push(() => makeCharacter(
  23324. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23325. {
  23326. front: {
  23327. height: math.unit(6, "feet"),
  23328. weight: math.unit(150, "lb"),
  23329. name: "Front",
  23330. image: {
  23331. source: "./media/characters/sammy/front.svg",
  23332. extra: 1193 / 1089,
  23333. bottom: 30.5 / 1226
  23334. }
  23335. },
  23336. },
  23337. [
  23338. {
  23339. name: "Macro",
  23340. height: math.unit(1700, "feet"),
  23341. default: true
  23342. },
  23343. {
  23344. name: "Examacro",
  23345. height: math.unit(2.5e9, "lightyears")
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23351. {
  23352. front: {
  23353. height: math.unit(21, "meters"),
  23354. weight: math.unit(12, "tonnes"),
  23355. name: "Front",
  23356. image: {
  23357. source: "./media/characters/kuru/front.svg",
  23358. extra: 4301 / 3785,
  23359. bottom: 371.3 / 4691
  23360. }
  23361. },
  23362. },
  23363. [
  23364. {
  23365. name: "Macro",
  23366. height: math.unit(21, "meters"),
  23367. default: true
  23368. },
  23369. ]
  23370. ))
  23371. characterMakers.push(() => makeCharacter(
  23372. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23373. {
  23374. front: {
  23375. height: math.unit(23, "meters"),
  23376. weight: math.unit(12.2, "tonnes"),
  23377. name: "Front",
  23378. image: {
  23379. source: "./media/characters/rakka/front.svg",
  23380. extra: 4670 / 4169,
  23381. bottom: 301 / 4968.7
  23382. }
  23383. },
  23384. },
  23385. [
  23386. {
  23387. name: "Macro",
  23388. height: math.unit(23, "meters"),
  23389. default: true
  23390. },
  23391. ]
  23392. ))
  23393. characterMakers.push(() => makeCharacter(
  23394. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23395. {
  23396. front: {
  23397. height: math.unit(6, "feet"),
  23398. weight: math.unit(150, "lb"),
  23399. name: "Front",
  23400. image: {
  23401. source: "./media/characters/rhys-feline/front.svg",
  23402. extra: 2488 / 2308,
  23403. bottom: 35.67 / 2519.19
  23404. }
  23405. },
  23406. },
  23407. [
  23408. {
  23409. name: "Really Small",
  23410. height: math.unit(1, "nm")
  23411. },
  23412. {
  23413. name: "Micro",
  23414. height: math.unit(4, "inches")
  23415. },
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(4 + 10 / 12, "feet"),
  23419. default: true
  23420. },
  23421. {
  23422. name: "Macro",
  23423. height: math.unit(100, "feet")
  23424. },
  23425. {
  23426. name: "Megamacto",
  23427. height: math.unit(50, "miles")
  23428. },
  23429. ]
  23430. ))
  23431. characterMakers.push(() => makeCharacter(
  23432. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23433. {
  23434. side: {
  23435. height: math.unit(30, "feet"),
  23436. weight: math.unit(35000, "kg"),
  23437. name: "Side",
  23438. image: {
  23439. source: "./media/characters/alydar/side.svg",
  23440. extra: 234 / 222,
  23441. bottom: 6.5 / 241
  23442. }
  23443. },
  23444. front: {
  23445. height: math.unit(30, "feet"),
  23446. weight: math.unit(35000, "kg"),
  23447. name: "Front",
  23448. image: {
  23449. source: "./media/characters/alydar/front.svg",
  23450. extra: 223.37 / 210.2,
  23451. bottom: 22.3 / 246.76
  23452. }
  23453. },
  23454. top: {
  23455. height: math.unit(64.54, "feet"),
  23456. weight: math.unit(35000, "kg"),
  23457. name: "Top",
  23458. image: {
  23459. source: "./media/characters/alydar/top.svg"
  23460. }
  23461. },
  23462. anthro: {
  23463. height: math.unit(30, "feet"),
  23464. weight: math.unit(9000, "kg"),
  23465. name: "Anthro",
  23466. image: {
  23467. source: "./media/characters/alydar/anthro.svg",
  23468. extra: 432 / 421,
  23469. bottom: 7.18 / 440
  23470. }
  23471. },
  23472. maw: {
  23473. height: math.unit(11.693, "feet"),
  23474. name: "Maw",
  23475. image: {
  23476. source: "./media/characters/alydar/maw.svg"
  23477. }
  23478. },
  23479. head: {
  23480. height: math.unit(11.693, "feet"),
  23481. name: "Head",
  23482. image: {
  23483. source: "./media/characters/alydar/head.svg"
  23484. }
  23485. },
  23486. headAlt: {
  23487. height: math.unit(12.861, "feet"),
  23488. name: "Head (Alt)",
  23489. image: {
  23490. source: "./media/characters/alydar/head-alt.svg"
  23491. }
  23492. },
  23493. wing: {
  23494. height: math.unit(20.712, "feet"),
  23495. name: "Wing",
  23496. image: {
  23497. source: "./media/characters/alydar/wing.svg"
  23498. }
  23499. },
  23500. wingFeather: {
  23501. height: math.unit(9.662, "feet"),
  23502. name: "Wing Feather",
  23503. image: {
  23504. source: "./media/characters/alydar/wing-feather.svg"
  23505. }
  23506. },
  23507. countourFeather: {
  23508. height: math.unit(4.154, "feet"),
  23509. name: "Contour Feather",
  23510. image: {
  23511. source: "./media/characters/alydar/contour-feather.svg"
  23512. }
  23513. },
  23514. },
  23515. [
  23516. {
  23517. name: "Diplomatic",
  23518. height: math.unit(13, "feet"),
  23519. default: true
  23520. },
  23521. {
  23522. name: "Small",
  23523. height: math.unit(30, "feet")
  23524. },
  23525. {
  23526. name: "Normal",
  23527. height: math.unit(95, "feet"),
  23528. default: true
  23529. },
  23530. {
  23531. name: "Large",
  23532. height: math.unit(285, "feet")
  23533. },
  23534. {
  23535. name: "Incomprehensible",
  23536. height: math.unit(450, "megameters")
  23537. },
  23538. ]
  23539. ))
  23540. characterMakers.push(() => makeCharacter(
  23541. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23542. {
  23543. side: {
  23544. height: math.unit(11, "feet"),
  23545. weight: math.unit(1750, "kg"),
  23546. name: "Side",
  23547. image: {
  23548. source: "./media/characters/selicia/side.svg",
  23549. extra: 440 / 396,
  23550. bottom: 24.8 / 465.979
  23551. }
  23552. },
  23553. maw: {
  23554. height: math.unit(4.665, "feet"),
  23555. name: "Maw",
  23556. image: {
  23557. source: "./media/characters/selicia/maw.svg"
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Normal",
  23564. height: math.unit(11, "feet"),
  23565. default: true
  23566. },
  23567. ]
  23568. ))
  23569. characterMakers.push(() => makeCharacter(
  23570. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23571. {
  23572. side: {
  23573. height: math.unit(2 + 6 / 12, "feet"),
  23574. weight: math.unit(30, "lb"),
  23575. name: "Side",
  23576. image: {
  23577. source: "./media/characters/layla/side.svg",
  23578. extra: 244 / 188,
  23579. bottom: 18.2 / 262.1
  23580. }
  23581. },
  23582. back: {
  23583. height: math.unit(2 + 6 / 12, "feet"),
  23584. weight: math.unit(30, "lb"),
  23585. name: "Back",
  23586. image: {
  23587. source: "./media/characters/layla/back.svg",
  23588. extra: 308 / 241.5,
  23589. bottom: 8.9 / 316.8
  23590. }
  23591. },
  23592. cumming: {
  23593. height: math.unit(2 + 6 / 12, "feet"),
  23594. weight: math.unit(30, "lb"),
  23595. name: "Cumming",
  23596. image: {
  23597. source: "./media/characters/layla/cumming.svg",
  23598. extra: 342 / 279,
  23599. bottom: 595 / 938
  23600. }
  23601. },
  23602. dickFlaccid: {
  23603. height: math.unit(2.595, "feet"),
  23604. name: "Flaccid Genitals",
  23605. image: {
  23606. source: "./media/characters/layla/dick-flaccid.svg"
  23607. }
  23608. },
  23609. dickErect: {
  23610. height: math.unit(2.359, "feet"),
  23611. name: "Erect Genitals",
  23612. image: {
  23613. source: "./media/characters/layla/dick-erect.svg"
  23614. }
  23615. },
  23616. dragon: {
  23617. height: math.unit(40, "feet"),
  23618. name: "Dragon",
  23619. image: {
  23620. source: "./media/characters/layla/dragon.svg",
  23621. extra: 610/535,
  23622. bottom: 367/977
  23623. }
  23624. },
  23625. taur: {
  23626. height: math.unit(30, "feet"),
  23627. name: "Taur",
  23628. image: {
  23629. source: "./media/characters/layla/taur.svg",
  23630. extra: 1268/1199,
  23631. bottom: 112/1380
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Micro",
  23638. height: math.unit(1, "inch")
  23639. },
  23640. {
  23641. name: "Small",
  23642. height: math.unit(1, "foot")
  23643. },
  23644. {
  23645. name: "Normal",
  23646. height: math.unit(2 + 6 / 12, "feet"),
  23647. default: true
  23648. },
  23649. {
  23650. name: "Macro",
  23651. height: math.unit(200, "feet")
  23652. },
  23653. {
  23654. name: "Megamacro",
  23655. height: math.unit(1000, "miles")
  23656. },
  23657. {
  23658. name: "Planetary",
  23659. height: math.unit(8000, "miles")
  23660. },
  23661. {
  23662. name: "True Layla",
  23663. height: math.unit(200000 * 7, "multiverses")
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23669. {
  23670. back: {
  23671. height: math.unit(10.5, "feet"),
  23672. weight: math.unit(800, "lb"),
  23673. name: "Back",
  23674. image: {
  23675. source: "./media/characters/knox/back.svg",
  23676. extra: 1486 / 1089,
  23677. bottom: 107 / 1601.4
  23678. }
  23679. },
  23680. side: {
  23681. height: math.unit(10.5, "feet"),
  23682. weight: math.unit(800, "lb"),
  23683. name: "Side",
  23684. image: {
  23685. source: "./media/characters/knox/side.svg",
  23686. extra: 244 / 218,
  23687. bottom: 14 / 260
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Compact",
  23694. height: math.unit(10.5, "feet"),
  23695. default: true
  23696. },
  23697. {
  23698. name: "Dynamax",
  23699. height: math.unit(210, "feet")
  23700. },
  23701. {
  23702. name: "Full Macro",
  23703. height: math.unit(850, "feet")
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(28, "feet"),
  23712. weight: math.unit(10500, "lb"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/kayda/front.svg",
  23716. extra: 1536 / 1428,
  23717. bottom: 68.7 / 1603
  23718. }
  23719. },
  23720. back: {
  23721. height: math.unit(28, "feet"),
  23722. weight: math.unit(10500, "lb"),
  23723. name: "Back",
  23724. image: {
  23725. source: "./media/characters/kayda/back.svg",
  23726. extra: 1557 / 1464,
  23727. bottom: 39.5 / 1597.49
  23728. }
  23729. },
  23730. dick: {
  23731. height: math.unit(3.858, "feet"),
  23732. name: "Dick",
  23733. image: {
  23734. source: "./media/characters/kayda/dick.svg"
  23735. }
  23736. },
  23737. },
  23738. [
  23739. {
  23740. name: "Macro",
  23741. height: math.unit(28, "feet"),
  23742. default: true
  23743. },
  23744. ]
  23745. ))
  23746. characterMakers.push(() => makeCharacter(
  23747. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23748. {
  23749. front: {
  23750. height: math.unit(10 + 11 / 12, "feet"),
  23751. weight: math.unit(1400, "lb"),
  23752. name: "Front",
  23753. image: {
  23754. source: "./media/characters/brian/front.svg",
  23755. extra: 737 / 692,
  23756. bottom: 55.4 / 785
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Normal",
  23763. height: math.unit(10 + 11 / 12, "feet"),
  23764. default: true
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23770. {
  23771. front: {
  23772. height: math.unit(5 + 8 / 12, "feet"),
  23773. weight: math.unit(140, "lb"),
  23774. name: "Front",
  23775. image: {
  23776. source: "./media/characters/khemri/front.svg",
  23777. extra: 4780 / 4059,
  23778. bottom: 80.1 / 4859.25
  23779. }
  23780. },
  23781. },
  23782. [
  23783. {
  23784. name: "Micro",
  23785. height: math.unit(6, "inches")
  23786. },
  23787. {
  23788. name: "Normal",
  23789. height: math.unit(5 + 8 / 12, "feet"),
  23790. default: true
  23791. },
  23792. ]
  23793. ))
  23794. characterMakers.push(() => makeCharacter(
  23795. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23796. {
  23797. front: {
  23798. height: math.unit(13, "feet"),
  23799. weight: math.unit(1700, "lb"),
  23800. name: "Front",
  23801. image: {
  23802. source: "./media/characters/felix-braveheart/front.svg",
  23803. extra: 1222 / 1157,
  23804. bottom: 53.2 / 1280
  23805. }
  23806. },
  23807. back: {
  23808. height: math.unit(13, "feet"),
  23809. weight: math.unit(1700, "lb"),
  23810. name: "Back",
  23811. image: {
  23812. source: "./media/characters/felix-braveheart/back.svg",
  23813. extra: 1277 / 1203,
  23814. bottom: 50.2 / 1327
  23815. }
  23816. },
  23817. feral: {
  23818. height: math.unit(6, "feet"),
  23819. weight: math.unit(400, "lb"),
  23820. name: "Feral",
  23821. image: {
  23822. source: "./media/characters/felix-braveheart/feral.svg",
  23823. extra: 682 / 625,
  23824. bottom: 6.9 / 688
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Normal",
  23831. height: math.unit(13, "feet"),
  23832. default: true
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23838. {
  23839. side: {
  23840. height: math.unit(5 + 11 / 12, "feet"),
  23841. weight: math.unit(1400, "lb"),
  23842. name: "Side",
  23843. image: {
  23844. source: "./media/characters/shadow-blade/side.svg",
  23845. extra: 1726 / 1267,
  23846. bottom: 58.4 / 1785
  23847. }
  23848. },
  23849. },
  23850. [
  23851. {
  23852. name: "Normal",
  23853. height: math.unit(5 + 11 / 12, "feet"),
  23854. default: true
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(1 + 6 / 12, "feet"),
  23863. weight: math.unit(25, "lb"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/karla-halldor/front.svg",
  23867. extra: 1459 / 1383,
  23868. bottom: 12 / 1472
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Normal",
  23875. height: math.unit(1 + 6 / 12, "feet"),
  23876. default: true
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23882. {
  23883. front: {
  23884. height: math.unit(6 + 2 / 12, "feet"),
  23885. weight: math.unit(160, "lb"),
  23886. name: "Front",
  23887. image: {
  23888. source: "./media/characters/ariam/front.svg",
  23889. extra: 714 / 617,
  23890. bottom: 23.4 / 737,
  23891. }
  23892. },
  23893. squatting: {
  23894. height: math.unit(4.1, "feet"),
  23895. weight: math.unit(160, "lb"),
  23896. name: "Squatting",
  23897. image: {
  23898. source: "./media/characters/ariam/squatting.svg",
  23899. extra: 2617 / 2112,
  23900. bottom: 61.2 / 2681,
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(6 + 2 / 12, "feet"),
  23908. default: true
  23909. },
  23910. {
  23911. name: "Normal+",
  23912. height: math.unit(4, "meters")
  23913. },
  23914. {
  23915. name: "Macro",
  23916. height: math.unit(50, "meters")
  23917. },
  23918. {
  23919. name: "Macro+",
  23920. height: math.unit(100, "meters")
  23921. },
  23922. {
  23923. name: "Megamacro",
  23924. height: math.unit(20, "km")
  23925. },
  23926. ]
  23927. ))
  23928. characterMakers.push(() => makeCharacter(
  23929. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23930. {
  23931. front: {
  23932. height: math.unit(1.67, "meters"),
  23933. weight: math.unit(140, "lb"),
  23934. name: "Front",
  23935. image: {
  23936. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23937. extra: 438 / 410,
  23938. bottom: 0.75 / 439
  23939. }
  23940. },
  23941. },
  23942. [
  23943. {
  23944. name: "Shrunken",
  23945. height: math.unit(7.6, "cm")
  23946. },
  23947. {
  23948. name: "Human Scale",
  23949. height: math.unit(1.67, "meters")
  23950. },
  23951. {
  23952. name: "Wolxi Scale",
  23953. height: math.unit(36.7, "meters"),
  23954. default: true
  23955. },
  23956. ]
  23957. ))
  23958. characterMakers.push(() => makeCharacter(
  23959. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23960. {
  23961. front: {
  23962. height: math.unit(1.73, "meters"),
  23963. weight: math.unit(240, "lb"),
  23964. name: "Front",
  23965. image: {
  23966. source: "./media/characters/izue-two-mothers/front.svg",
  23967. extra: 469 / 437,
  23968. bottom: 1.24 / 470.6
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Shrunken",
  23975. height: math.unit(7.86, "cm")
  23976. },
  23977. {
  23978. name: "Human Scale",
  23979. height: math.unit(1.73, "meters")
  23980. },
  23981. {
  23982. name: "Wolxi Scale",
  23983. height: math.unit(38, "meters"),
  23984. default: true
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(1.55, "meters"),
  23993. weight: math.unit(120, "lb"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/teeku-love-shack/front.svg",
  23997. extra: 387 / 362,
  23998. bottom: 1.51 / 388
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Shrunken",
  24005. height: math.unit(7, "cm")
  24006. },
  24007. {
  24008. name: "Human Scale",
  24009. height: math.unit(1.55, "meters")
  24010. },
  24011. {
  24012. name: "Wolxi Scale",
  24013. height: math.unit(34.1, "meters"),
  24014. default: true
  24015. },
  24016. ]
  24017. ))
  24018. characterMakers.push(() => makeCharacter(
  24019. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24020. {
  24021. front: {
  24022. height: math.unit(1.83, "meters"),
  24023. weight: math.unit(135, "lb"),
  24024. name: "Front",
  24025. image: {
  24026. source: "./media/characters/dejma-the-red/front.svg",
  24027. extra: 480 / 458,
  24028. bottom: 1.8 / 482
  24029. }
  24030. },
  24031. },
  24032. [
  24033. {
  24034. name: "Shrunken",
  24035. height: math.unit(8.3, "cm")
  24036. },
  24037. {
  24038. name: "Human Scale",
  24039. height: math.unit(1.83, "meters")
  24040. },
  24041. {
  24042. name: "Wolxi Scale",
  24043. height: math.unit(40, "meters"),
  24044. default: true
  24045. },
  24046. ]
  24047. ))
  24048. characterMakers.push(() => makeCharacter(
  24049. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24050. {
  24051. front: {
  24052. height: math.unit(1.78, "meters"),
  24053. weight: math.unit(65, "kg"),
  24054. name: "Front",
  24055. image: {
  24056. source: "./media/characters/aki/front.svg",
  24057. extra: 452 / 415
  24058. }
  24059. },
  24060. frontNsfw: {
  24061. height: math.unit(1.78, "meters"),
  24062. weight: math.unit(65, "kg"),
  24063. name: "Front (NSFW)",
  24064. image: {
  24065. source: "./media/characters/aki/front-nsfw.svg",
  24066. extra: 452 / 415
  24067. }
  24068. },
  24069. back: {
  24070. height: math.unit(1.78, "meters"),
  24071. weight: math.unit(65, "kg"),
  24072. name: "Back",
  24073. image: {
  24074. source: "./media/characters/aki/back.svg",
  24075. extra: 452 / 415
  24076. }
  24077. },
  24078. rump: {
  24079. height: math.unit(2.05, "feet"),
  24080. name: "Rump",
  24081. image: {
  24082. source: "./media/characters/aki/rump.svg"
  24083. }
  24084. },
  24085. dick: {
  24086. height: math.unit(0.95, "feet"),
  24087. name: "Dick",
  24088. image: {
  24089. source: "./media/characters/aki/dick.svg"
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Micro",
  24096. height: math.unit(15, "cm")
  24097. },
  24098. {
  24099. name: "Normal",
  24100. height: math.unit(178, "cm"),
  24101. default: true
  24102. },
  24103. {
  24104. name: "Macro",
  24105. height: math.unit(214, "m")
  24106. },
  24107. {
  24108. name: "Macro+",
  24109. height: math.unit(534, "m")
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24115. {
  24116. front: {
  24117. height: math.unit(5 + 5 / 12, "feet"),
  24118. weight: math.unit(120, "lb"),
  24119. name: "Front",
  24120. image: {
  24121. source: "./media/characters/ari/front.svg",
  24122. extra: 714.5 / 682,
  24123. bottom: 8 / 722.5
  24124. }
  24125. },
  24126. },
  24127. [
  24128. {
  24129. name: "Normal",
  24130. height: math.unit(5 + 5 / 12, "feet")
  24131. },
  24132. {
  24133. name: "Macro",
  24134. height: math.unit(100, "feet"),
  24135. default: true
  24136. },
  24137. {
  24138. name: "Megamacro",
  24139. height: math.unit(100, "miles")
  24140. },
  24141. {
  24142. name: "Gigamacro",
  24143. height: math.unit(80000, "miles")
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24149. {
  24150. side: {
  24151. height: math.unit(9, "feet"),
  24152. weight: math.unit(400, "kg"),
  24153. name: "Side",
  24154. image: {
  24155. source: "./media/characters/bolt/side.svg",
  24156. extra: 1126 / 896,
  24157. bottom: 60 / 1187.3,
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Micro",
  24164. height: math.unit(5, "inches")
  24165. },
  24166. {
  24167. name: "Normal",
  24168. height: math.unit(9, "feet"),
  24169. default: true
  24170. },
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(700, "feet")
  24174. },
  24175. {
  24176. name: "Max Size",
  24177. height: math.unit(1.52e22, "yottameters")
  24178. },
  24179. ]
  24180. ))
  24181. characterMakers.push(() => makeCharacter(
  24182. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24183. {
  24184. front: {
  24185. height: math.unit(4.53, "meters"),
  24186. weight: math.unit(3, "tons"),
  24187. name: "Front",
  24188. image: {
  24189. source: "./media/characters/draekon-sylviar/front.svg",
  24190. extra: 1228 / 1068,
  24191. bottom: 41 / 1270
  24192. }
  24193. },
  24194. tail: {
  24195. height: math.unit(1.772, "meter"),
  24196. name: "Tail",
  24197. image: {
  24198. source: "./media/characters/draekon-sylviar/tail.svg"
  24199. }
  24200. },
  24201. head: {
  24202. height: math.unit(1.331, "meter"),
  24203. name: "Head",
  24204. image: {
  24205. source: "./media/characters/draekon-sylviar/head.svg"
  24206. }
  24207. },
  24208. hand: {
  24209. height: math.unit(0.564, "meter"),
  24210. name: "Hand",
  24211. image: {
  24212. source: "./media/characters/draekon-sylviar/hand.svg"
  24213. }
  24214. },
  24215. foot: {
  24216. height: math.unit(0.621, "meter"),
  24217. name: "Foot",
  24218. image: {
  24219. source: "./media/characters/draekon-sylviar/foot.svg",
  24220. bottom: 32 / 324
  24221. }
  24222. },
  24223. dick: {
  24224. height: math.unit(61, "cm"),
  24225. name: "Dick",
  24226. image: {
  24227. source: "./media/characters/draekon-sylviar/dick.svg"
  24228. }
  24229. },
  24230. dickseparated: {
  24231. height: math.unit(61, "cm"),
  24232. name: "Dick-separated",
  24233. image: {
  24234. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24235. }
  24236. },
  24237. },
  24238. [
  24239. {
  24240. name: "Small",
  24241. height: math.unit(4.53 / 2, "meters"),
  24242. default: true
  24243. },
  24244. {
  24245. name: "Normal",
  24246. height: math.unit(4.53, "meters"),
  24247. default: true
  24248. },
  24249. {
  24250. name: "Large",
  24251. height: math.unit(4.53 * 2, "meters"),
  24252. },
  24253. ]
  24254. ))
  24255. characterMakers.push(() => makeCharacter(
  24256. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24257. {
  24258. front: {
  24259. height: math.unit(6 + 2 / 12, "feet"),
  24260. weight: math.unit(180, "lb"),
  24261. name: "Front",
  24262. image: {
  24263. source: "./media/characters/brawler/front.svg",
  24264. extra: 3301 / 3027,
  24265. bottom: 138 / 3439
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Normal",
  24272. height: math.unit(6 + 2 / 12, "feet"),
  24273. default: true
  24274. },
  24275. ]
  24276. ))
  24277. characterMakers.push(() => makeCharacter(
  24278. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24279. {
  24280. front: {
  24281. height: math.unit(11, "feet"),
  24282. weight: math.unit(1000, "lb"),
  24283. name: "Front",
  24284. image: {
  24285. source: "./media/characters/alex/front.svg",
  24286. bottom: 44.5 / 620
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "Micro",
  24293. height: math.unit(5, "inches")
  24294. },
  24295. {
  24296. name: "Normal",
  24297. height: math.unit(11, "feet"),
  24298. default: true
  24299. },
  24300. {
  24301. name: "Macro",
  24302. height: math.unit(9.5e9, "feet")
  24303. },
  24304. {
  24305. name: "Max Size",
  24306. height: math.unit(1.4e283, "yottameters")
  24307. },
  24308. ]
  24309. ))
  24310. characterMakers.push(() => makeCharacter(
  24311. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24312. {
  24313. female: {
  24314. height: math.unit(29.9, "m"),
  24315. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24316. name: "Female",
  24317. image: {
  24318. source: "./media/characters/zenari/female.svg",
  24319. extra: 3281.6 / 3217,
  24320. bottom: 72.2 / 3353
  24321. }
  24322. },
  24323. male: {
  24324. height: math.unit(27.7, "m"),
  24325. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24326. name: "Male",
  24327. image: {
  24328. source: "./media/characters/zenari/male.svg",
  24329. extra: 3008 / 2991,
  24330. bottom: 54.6 / 3069
  24331. }
  24332. },
  24333. },
  24334. [
  24335. {
  24336. name: "Macro",
  24337. height: math.unit(29.7, "meters"),
  24338. default: true
  24339. },
  24340. ]
  24341. ))
  24342. characterMakers.push(() => makeCharacter(
  24343. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24344. {
  24345. female: {
  24346. height: math.unit(23.8, "m"),
  24347. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24348. name: "Female",
  24349. image: {
  24350. source: "./media/characters/mactarian/female.svg",
  24351. extra: 2662 / 2569,
  24352. bottom: 73 / 2736
  24353. }
  24354. },
  24355. male: {
  24356. height: math.unit(23.8, "m"),
  24357. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24358. name: "Male",
  24359. image: {
  24360. source: "./media/characters/mactarian/male.svg",
  24361. extra: 2673 / 2600,
  24362. bottom: 76 / 2750
  24363. }
  24364. },
  24365. },
  24366. [
  24367. {
  24368. name: "Macro",
  24369. height: math.unit(23.8, "meters"),
  24370. default: true
  24371. },
  24372. ]
  24373. ))
  24374. characterMakers.push(() => makeCharacter(
  24375. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24376. {
  24377. female: {
  24378. height: math.unit(19.3, "m"),
  24379. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24380. name: "Female",
  24381. image: {
  24382. source: "./media/characters/umok/female.svg",
  24383. extra: 2186 / 2078,
  24384. bottom: 87 / 2277
  24385. }
  24386. },
  24387. male: {
  24388. height: math.unit(19.5, "m"),
  24389. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24390. name: "Male",
  24391. image: {
  24392. source: "./media/characters/umok/male.svg",
  24393. extra: 2233 / 2140,
  24394. bottom: 24.4 / 2258
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(19.3, "meters"),
  24402. default: true
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24408. {
  24409. female: {
  24410. height: math.unit(26.15, "m"),
  24411. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24412. name: "Female",
  24413. image: {
  24414. source: "./media/characters/joraxian/female.svg",
  24415. extra: 2912 / 2824,
  24416. bottom: 36 / 2956
  24417. }
  24418. },
  24419. male: {
  24420. height: math.unit(25.4, "m"),
  24421. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24422. name: "Male",
  24423. image: {
  24424. source: "./media/characters/joraxian/male.svg",
  24425. extra: 2877 / 2721,
  24426. bottom: 82 / 2967
  24427. }
  24428. },
  24429. },
  24430. [
  24431. {
  24432. name: "Macro",
  24433. height: math.unit(26.15, "meters"),
  24434. default: true
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24440. {
  24441. female: {
  24442. height: math.unit(21.6, "m"),
  24443. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24444. name: "Female",
  24445. image: {
  24446. source: "./media/characters/sthara/female.svg",
  24447. extra: 2516 / 2347,
  24448. bottom: 21.5 / 2537
  24449. }
  24450. },
  24451. male: {
  24452. height: math.unit(24, "m"),
  24453. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24454. name: "Male",
  24455. image: {
  24456. source: "./media/characters/sthara/male.svg",
  24457. extra: 2732 / 2607,
  24458. bottom: 23 / 2732
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Macro",
  24465. height: math.unit(21.6, "meters"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24472. {
  24473. front: {
  24474. height: math.unit(6 + 4 / 12, "feet"),
  24475. weight: math.unit(175, "lb"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/luka-bryzant/front.svg",
  24479. extra: 311 / 289,
  24480. bottom: 4 / 315
  24481. }
  24482. },
  24483. back: {
  24484. height: math.unit(6 + 4 / 12, "feet"),
  24485. weight: math.unit(175, "lb"),
  24486. name: "Back",
  24487. image: {
  24488. source: "./media/characters/luka-bryzant/back.svg",
  24489. extra: 311 / 289,
  24490. bottom: 3.8 / 313.7
  24491. }
  24492. },
  24493. },
  24494. [
  24495. {
  24496. name: "Micro",
  24497. height: math.unit(10, "inches")
  24498. },
  24499. {
  24500. name: "Normal",
  24501. height: math.unit(6 + 4 / 12, "feet"),
  24502. default: true
  24503. },
  24504. {
  24505. name: "Large",
  24506. height: math.unit(12, "feet")
  24507. },
  24508. ]
  24509. ))
  24510. characterMakers.push(() => makeCharacter(
  24511. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24512. {
  24513. front: {
  24514. height: math.unit(5 + 7 / 12, "feet"),
  24515. weight: math.unit(185, "lb"),
  24516. name: "Front",
  24517. image: {
  24518. source: "./media/characters/aman-aquila/front.svg",
  24519. extra: 1013 / 976,
  24520. bottom: 45.6 / 1057
  24521. }
  24522. },
  24523. side: {
  24524. height: math.unit(5 + 7 / 12, "feet"),
  24525. weight: math.unit(185, "lb"),
  24526. name: "Side",
  24527. image: {
  24528. source: "./media/characters/aman-aquila/side.svg",
  24529. extra: 1054 / 1011,
  24530. bottom: 15 / 1070
  24531. }
  24532. },
  24533. back: {
  24534. height: math.unit(5 + 7 / 12, "feet"),
  24535. weight: math.unit(185, "lb"),
  24536. name: "Back",
  24537. image: {
  24538. source: "./media/characters/aman-aquila/back.svg",
  24539. extra: 1026 / 970,
  24540. bottom: 12 / 1039
  24541. }
  24542. },
  24543. head: {
  24544. height: math.unit(1.211, "feet"),
  24545. name: "Head",
  24546. image: {
  24547. source: "./media/characters/aman-aquila/head.svg",
  24548. }
  24549. },
  24550. },
  24551. [
  24552. {
  24553. name: "Minimicro",
  24554. height: math.unit(0.057, "inches")
  24555. },
  24556. {
  24557. name: "Micro",
  24558. height: math.unit(7, "inches")
  24559. },
  24560. {
  24561. name: "Mini",
  24562. height: math.unit(3 + 7 / 12, "feet")
  24563. },
  24564. {
  24565. name: "Normal",
  24566. height: math.unit(5 + 7 / 12, "feet"),
  24567. default: true
  24568. },
  24569. {
  24570. name: "Macro",
  24571. height: math.unit(157 + 7 / 12, "feet")
  24572. },
  24573. {
  24574. name: "Megamacro",
  24575. height: math.unit(1557 + 7 / 12, "feet")
  24576. },
  24577. {
  24578. name: "Gigamacro",
  24579. height: math.unit(15557 + 7 / 12, "feet")
  24580. },
  24581. ]
  24582. ))
  24583. characterMakers.push(() => makeCharacter(
  24584. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24585. {
  24586. front: {
  24587. height: math.unit(3 + 2 / 12, "inches"),
  24588. weight: math.unit(0.3, "ounces"),
  24589. name: "Front",
  24590. image: {
  24591. source: "./media/characters/hiphae/front.svg",
  24592. extra: 1931 / 1683,
  24593. bottom: 24 / 1955
  24594. }
  24595. },
  24596. },
  24597. [
  24598. {
  24599. name: "Normal",
  24600. height: math.unit(3 + 1 / 2, "inches"),
  24601. default: true
  24602. },
  24603. ]
  24604. ))
  24605. characterMakers.push(() => makeCharacter(
  24606. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24607. {
  24608. front: {
  24609. height: math.unit(5 + 10 / 12, "feet"),
  24610. weight: math.unit(165, "lb"),
  24611. name: "Front",
  24612. image: {
  24613. source: "./media/characters/nicky/front.svg",
  24614. extra: 3144 / 2886,
  24615. bottom: 45.6 / 3192
  24616. }
  24617. },
  24618. back: {
  24619. height: math.unit(5 + 10 / 12, "feet"),
  24620. weight: math.unit(165, "lb"),
  24621. name: "Back",
  24622. image: {
  24623. source: "./media/characters/nicky/back.svg",
  24624. extra: 3055 / 2804,
  24625. bottom: 28.4 / 3087
  24626. }
  24627. },
  24628. frontclothed: {
  24629. height: math.unit(5 + 10 / 12, "feet"),
  24630. weight: math.unit(165, "lb"),
  24631. name: "Front-clothed",
  24632. image: {
  24633. source: "./media/characters/nicky/front-clothed.svg",
  24634. extra: 3184.9 / 2926.9,
  24635. bottom: 86.5 / 3239.9
  24636. }
  24637. },
  24638. foot: {
  24639. height: math.unit(1.16, "feet"),
  24640. name: "Foot",
  24641. image: {
  24642. source: "./media/characters/nicky/foot.svg"
  24643. }
  24644. },
  24645. feet: {
  24646. height: math.unit(1.34, "feet"),
  24647. name: "Feet",
  24648. image: {
  24649. source: "./media/characters/nicky/feet.svg"
  24650. }
  24651. },
  24652. maw: {
  24653. height: math.unit(0.9, "feet"),
  24654. name: "Maw",
  24655. image: {
  24656. source: "./media/characters/nicky/maw.svg"
  24657. }
  24658. },
  24659. },
  24660. [
  24661. {
  24662. name: "Normal",
  24663. height: math.unit(5 + 10 / 12, "feet"),
  24664. default: true
  24665. },
  24666. {
  24667. name: "Macro",
  24668. height: math.unit(60, "feet")
  24669. },
  24670. {
  24671. name: "Megamacro",
  24672. height: math.unit(1, "mile")
  24673. },
  24674. ]
  24675. ))
  24676. characterMakers.push(() => makeCharacter(
  24677. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24678. {
  24679. side: {
  24680. height: math.unit(10, "feet"),
  24681. weight: math.unit(600, "lb"),
  24682. name: "Side",
  24683. image: {
  24684. source: "./media/characters/blair/side.svg",
  24685. bottom: 16.6 / 475,
  24686. extra: 458 / 431
  24687. }
  24688. },
  24689. },
  24690. [
  24691. {
  24692. name: "Micro",
  24693. height: math.unit(8, "inches")
  24694. },
  24695. {
  24696. name: "Normal",
  24697. height: math.unit(10, "feet"),
  24698. default: true
  24699. },
  24700. {
  24701. name: "Macro",
  24702. height: math.unit(180, "feet")
  24703. },
  24704. ]
  24705. ))
  24706. characterMakers.push(() => makeCharacter(
  24707. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24708. {
  24709. front: {
  24710. height: math.unit(5 + 4 / 12, "feet"),
  24711. weight: math.unit(125, "lb"),
  24712. name: "Front",
  24713. image: {
  24714. source: "./media/characters/fisher/front.svg",
  24715. extra: 444 / 390,
  24716. bottom: 2 / 444.8
  24717. }
  24718. },
  24719. },
  24720. [
  24721. {
  24722. name: "Micro",
  24723. height: math.unit(4, "inches")
  24724. },
  24725. {
  24726. name: "Normal",
  24727. height: math.unit(5 + 4 / 12, "feet"),
  24728. default: true
  24729. },
  24730. {
  24731. name: "Macro",
  24732. height: math.unit(100, "feet")
  24733. },
  24734. ]
  24735. ))
  24736. characterMakers.push(() => makeCharacter(
  24737. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24738. {
  24739. front: {
  24740. height: math.unit(6.71, "feet"),
  24741. weight: math.unit(200, "lb"),
  24742. capacity: math.unit(1000000, "people"),
  24743. name: "Front",
  24744. image: {
  24745. source: "./media/characters/gliss/front.svg",
  24746. extra: 2347 / 2231,
  24747. bottom: 113 / 2462
  24748. }
  24749. },
  24750. hammerspaceSize: {
  24751. height: math.unit(6.71 * 717, "feet"),
  24752. weight: math.unit(200, "lb"),
  24753. capacity: math.unit(1000000, "people"),
  24754. name: "Hammerspace Size",
  24755. image: {
  24756. source: "./media/characters/gliss/front.svg",
  24757. extra: 2347 / 2231,
  24758. bottom: 113 / 2462
  24759. }
  24760. },
  24761. },
  24762. [
  24763. {
  24764. name: "Normal",
  24765. height: math.unit(6.71, "feet"),
  24766. default: true
  24767. },
  24768. ]
  24769. ))
  24770. characterMakers.push(() => makeCharacter(
  24771. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24772. {
  24773. side: {
  24774. height: math.unit(1.44, "m"),
  24775. weight: math.unit(80, "kg"),
  24776. name: "Side",
  24777. image: {
  24778. source: "./media/characters/dune-anderson/side.svg",
  24779. bottom: 49 / 1426
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Wolf-sized",
  24786. height: math.unit(1.44, "meters")
  24787. },
  24788. {
  24789. name: "Normal",
  24790. height: math.unit(5.05, "meters"),
  24791. default: true
  24792. },
  24793. {
  24794. name: "Big",
  24795. height: math.unit(14.4, "meters")
  24796. },
  24797. {
  24798. name: "Huge",
  24799. height: math.unit(144, "meters")
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24805. {
  24806. front: {
  24807. height: math.unit(7, "feet"),
  24808. weight: math.unit(425, "lb"),
  24809. name: "Front",
  24810. image: {
  24811. source: "./media/characters/hind/front.svg",
  24812. extra: 2091 / 1860,
  24813. bottom: 129 / 2220
  24814. }
  24815. },
  24816. back: {
  24817. height: math.unit(7, "feet"),
  24818. weight: math.unit(425, "lb"),
  24819. name: "Back",
  24820. image: {
  24821. source: "./media/characters/hind/back.svg",
  24822. extra: 2091 / 1860,
  24823. bottom: 24.6 / 2309
  24824. }
  24825. },
  24826. tail: {
  24827. height: math.unit(2.8, "feet"),
  24828. name: "Tail",
  24829. image: {
  24830. source: "./media/characters/hind/tail.svg"
  24831. }
  24832. },
  24833. head: {
  24834. height: math.unit(2.55, "feet"),
  24835. name: "Head",
  24836. image: {
  24837. source: "./media/characters/hind/head.svg"
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "XS",
  24844. height: math.unit(0.7, "feet")
  24845. },
  24846. {
  24847. name: "Normal",
  24848. height: math.unit(7, "feet"),
  24849. default: true
  24850. },
  24851. {
  24852. name: "XL",
  24853. height: math.unit(70, "feet")
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24859. {
  24860. front: {
  24861. height: math.unit(6, "feet"),
  24862. weight: math.unit(150, "lb"),
  24863. name: "Front",
  24864. image: {
  24865. source: "./media/characters/tharquench-sizestealer/front.svg",
  24866. extra: 2318 / 2063,
  24867. bottom: 93.4 / 2410
  24868. }
  24869. },
  24870. },
  24871. [
  24872. {
  24873. name: "Nano",
  24874. height: math.unit(1, "mm")
  24875. },
  24876. {
  24877. name: "Micro",
  24878. height: math.unit(1, "cm")
  24879. },
  24880. {
  24881. name: "Normal",
  24882. height: math.unit(2.1, "meters"),
  24883. default: true
  24884. },
  24885. ]
  24886. ))
  24887. characterMakers.push(() => makeCharacter(
  24888. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24889. {
  24890. front: {
  24891. height: math.unit(7 + 5 / 12, "feet"),
  24892. weight: math.unit(357, "lb"),
  24893. name: "Front",
  24894. image: {
  24895. source: "./media/characters/solex-draconov/front.svg",
  24896. extra: 1993 / 1865,
  24897. bottom: 117 / 2111
  24898. }
  24899. },
  24900. },
  24901. [
  24902. {
  24903. name: "Natural Height",
  24904. height: math.unit(7 + 5 / 12, "feet"),
  24905. default: true
  24906. },
  24907. {
  24908. name: "Macro",
  24909. height: math.unit(350, "feet")
  24910. },
  24911. {
  24912. name: "Macro+",
  24913. height: math.unit(1000, "feet")
  24914. },
  24915. {
  24916. name: "Megamacro",
  24917. height: math.unit(20, "km")
  24918. },
  24919. {
  24920. name: "Megamacro+",
  24921. height: math.unit(1000, "km")
  24922. },
  24923. {
  24924. name: "Gigamacro",
  24925. height: math.unit(2.5, "Gm")
  24926. },
  24927. {
  24928. name: "Teramacro",
  24929. height: math.unit(15, "Tm")
  24930. },
  24931. {
  24932. name: "Galactic",
  24933. height: math.unit(30, "Zm")
  24934. },
  24935. {
  24936. name: "Universal",
  24937. height: math.unit(21000, "Ym")
  24938. },
  24939. {
  24940. name: "Omniversal",
  24941. height: math.unit(9.861e50, "Ym")
  24942. },
  24943. {
  24944. name: "Existential",
  24945. height: math.unit(1e300, "meters")
  24946. },
  24947. ]
  24948. ))
  24949. characterMakers.push(() => makeCharacter(
  24950. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24951. {
  24952. side: {
  24953. height: math.unit(25, "feet"),
  24954. weight: math.unit(90000, "lb"),
  24955. name: "Side",
  24956. image: {
  24957. source: "./media/characters/mandarax/side.svg",
  24958. extra: 614 / 332,
  24959. bottom: 55 / 630
  24960. }
  24961. },
  24962. head: {
  24963. height: math.unit(11.4, "feet"),
  24964. name: "Head",
  24965. image: {
  24966. source: "./media/characters/mandarax/head.svg"
  24967. }
  24968. },
  24969. belly: {
  24970. height: math.unit(33, "feet"),
  24971. name: "Belly",
  24972. capacity: math.unit(500, "people"),
  24973. image: {
  24974. source: "./media/characters/mandarax/belly.svg"
  24975. }
  24976. },
  24977. dick: {
  24978. height: math.unit(8.46, "feet"),
  24979. name: "Dick",
  24980. image: {
  24981. source: "./media/characters/mandarax/dick.svg"
  24982. }
  24983. },
  24984. top: {
  24985. height: math.unit(28, "meters"),
  24986. name: "Top",
  24987. image: {
  24988. source: "./media/characters/mandarax/top.svg"
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(25, "feet"),
  24996. default: true
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(5, "feet"),
  25005. weight: math.unit(90, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/pixil/front.svg",
  25009. extra: 2000 / 1618,
  25010. bottom: 12.3 / 2011
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Normal",
  25017. height: math.unit(5, "feet"),
  25018. default: true
  25019. },
  25020. {
  25021. name: "Megamacro",
  25022. height: math.unit(10, "miles"),
  25023. },
  25024. ]
  25025. ))
  25026. characterMakers.push(() => makeCharacter(
  25027. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25028. {
  25029. front: {
  25030. height: math.unit(7 + 2 / 12, "feet"),
  25031. weight: math.unit(200, "lb"),
  25032. name: "Front",
  25033. image: {
  25034. source: "./media/characters/angel/front.svg",
  25035. extra: 1830 / 1737,
  25036. bottom: 22.6 / 1854,
  25037. }
  25038. },
  25039. },
  25040. [
  25041. {
  25042. name: "Normal",
  25043. height: math.unit(7 + 2 / 12, "feet"),
  25044. default: true
  25045. },
  25046. {
  25047. name: "Macro",
  25048. height: math.unit(1000, "feet")
  25049. },
  25050. {
  25051. name: "Megamacro",
  25052. height: math.unit(2, "miles")
  25053. },
  25054. {
  25055. name: "Gigamacro",
  25056. height: math.unit(20, "earths")
  25057. },
  25058. ]
  25059. ))
  25060. characterMakers.push(() => makeCharacter(
  25061. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25062. {
  25063. front: {
  25064. height: math.unit(5, "feet"),
  25065. weight: math.unit(180, "lb"),
  25066. name: "Front",
  25067. image: {
  25068. source: "./media/characters/mekana/front.svg",
  25069. extra: 1671 / 1605,
  25070. bottom: 3.5 / 1691
  25071. }
  25072. },
  25073. side: {
  25074. height: math.unit(5, "feet"),
  25075. weight: math.unit(180, "lb"),
  25076. name: "Side",
  25077. image: {
  25078. source: "./media/characters/mekana/side.svg",
  25079. extra: 1671 / 1605,
  25080. bottom: 3.5 / 1691
  25081. }
  25082. },
  25083. back: {
  25084. height: math.unit(5, "feet"),
  25085. weight: math.unit(180, "lb"),
  25086. name: "Back",
  25087. image: {
  25088. source: "./media/characters/mekana/back.svg",
  25089. extra: 1671 / 1605,
  25090. bottom: 3.5 / 1691
  25091. }
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Normal",
  25097. height: math.unit(5, "feet"),
  25098. default: true
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(4 + 6 / 12, "feet"),
  25107. weight: math.unit(80, "lb"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/pixie/front.svg",
  25111. extra: 1924 / 1825,
  25112. bottom: 22.4 / 1946
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(4 + 6 / 12, "feet"),
  25120. default: true
  25121. },
  25122. {
  25123. name: "Macro",
  25124. height: math.unit(40, "feet")
  25125. },
  25126. ]
  25127. ))
  25128. characterMakers.push(() => makeCharacter(
  25129. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25130. {
  25131. front: {
  25132. height: math.unit(2.1, "meters"),
  25133. weight: math.unit(200, "lb"),
  25134. name: "Front",
  25135. image: {
  25136. source: "./media/characters/the-lascivious/front.svg",
  25137. extra: 1 / 0.893,
  25138. bottom: 3.5 / 573.7
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Human Scale",
  25145. height: math.unit(2.1, "meters")
  25146. },
  25147. {
  25148. name: "Wolxi Scale",
  25149. height: math.unit(46.2, "m"),
  25150. default: true
  25151. },
  25152. {
  25153. name: "Boinker of Buildings",
  25154. height: math.unit(10, "km")
  25155. },
  25156. {
  25157. name: "Shagger of Skyscrapers",
  25158. height: math.unit(40, "km")
  25159. },
  25160. {
  25161. name: "Banger of Boroughs",
  25162. height: math.unit(4000, "km")
  25163. },
  25164. {
  25165. name: "Screwer of States",
  25166. height: math.unit(100000, "km")
  25167. },
  25168. {
  25169. name: "Pounder of Planets",
  25170. height: math.unit(2000000, "km")
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25176. {
  25177. front: {
  25178. height: math.unit(6, "feet"),
  25179. weight: math.unit(150, "lb"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/aj/front.svg",
  25183. extra: 2039 / 1562,
  25184. bottom: 40 / 2079
  25185. }
  25186. },
  25187. },
  25188. [
  25189. {
  25190. name: "Normal",
  25191. height: math.unit(11 + 6 / 12, "feet"),
  25192. default: true
  25193. },
  25194. {
  25195. name: "Megamacro",
  25196. height: math.unit(60, "megameters")
  25197. },
  25198. ]
  25199. ))
  25200. characterMakers.push(() => makeCharacter(
  25201. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25202. {
  25203. side: {
  25204. height: math.unit(31 + 8 / 12, "feet"),
  25205. weight: math.unit(75000, "kg"),
  25206. name: "Side",
  25207. image: {
  25208. source: "./media/characters/koros/side.svg",
  25209. extra: 1442 / 1297,
  25210. bottom: 122.7 / 1562
  25211. }
  25212. },
  25213. dicksKingsCrown: {
  25214. height: math.unit(6, "feet"),
  25215. name: "Dicks (King's Crown)",
  25216. image: {
  25217. source: "./media/characters/koros/dicks-kings-crown.svg"
  25218. }
  25219. },
  25220. dicksTailSet: {
  25221. height: math.unit(3, "feet"),
  25222. name: "Dicks (Tail Set)",
  25223. image: {
  25224. source: "./media/characters/koros/dicks-tail-set.svg"
  25225. }
  25226. },
  25227. dickCumming: {
  25228. height: math.unit(7.98, "feet"),
  25229. name: "Dick (Cumming)",
  25230. image: {
  25231. source: "./media/characters/koros/dick-cumming.svg"
  25232. }
  25233. },
  25234. dicksBack: {
  25235. height: math.unit(5.9, "feet"),
  25236. name: "Dicks (Back)",
  25237. image: {
  25238. source: "./media/characters/koros/dicks-back.svg"
  25239. }
  25240. },
  25241. dicksFront: {
  25242. height: math.unit(3.72, "feet"),
  25243. name: "Dicks (Front)",
  25244. image: {
  25245. source: "./media/characters/koros/dicks-front.svg"
  25246. }
  25247. },
  25248. dicksPeeking: {
  25249. height: math.unit(3.0, "feet"),
  25250. name: "Dicks (Peeking)",
  25251. image: {
  25252. source: "./media/characters/koros/dicks-peeking.svg"
  25253. }
  25254. },
  25255. eye: {
  25256. height: math.unit(1.7, "feet"),
  25257. name: "Eye",
  25258. image: {
  25259. source: "./media/characters/koros/eye.svg"
  25260. }
  25261. },
  25262. headFront: {
  25263. height: math.unit(11.69, "feet"),
  25264. name: "Head (Front)",
  25265. image: {
  25266. source: "./media/characters/koros/head-front.svg"
  25267. }
  25268. },
  25269. headSide: {
  25270. height: math.unit(14, "feet"),
  25271. name: "Head (Side)",
  25272. image: {
  25273. source: "./media/characters/koros/head-side.svg"
  25274. }
  25275. },
  25276. leg: {
  25277. height: math.unit(17, "feet"),
  25278. name: "Leg",
  25279. image: {
  25280. source: "./media/characters/koros/leg.svg"
  25281. }
  25282. },
  25283. mawSide: {
  25284. height: math.unit(12.8, "feet"),
  25285. name: "Maw (Side)",
  25286. image: {
  25287. source: "./media/characters/koros/maw-side.svg"
  25288. }
  25289. },
  25290. mawSpitting: {
  25291. height: math.unit(17, "feet"),
  25292. name: "Maw (Spitting)",
  25293. image: {
  25294. source: "./media/characters/koros/maw-spitting.svg"
  25295. }
  25296. },
  25297. slit: {
  25298. height: math.unit(2.8, "feet"),
  25299. name: "Slit",
  25300. image: {
  25301. source: "./media/characters/koros/slit.svg"
  25302. }
  25303. },
  25304. stomach: {
  25305. height: math.unit(6.8, "feet"),
  25306. capacity: math.unit(20, "people"),
  25307. name: "Stomach",
  25308. image: {
  25309. source: "./media/characters/koros/stomach.svg"
  25310. }
  25311. },
  25312. wingspanBottom: {
  25313. height: math.unit(114, "feet"),
  25314. name: "Wingspan (Bottom)",
  25315. image: {
  25316. source: "./media/characters/koros/wingspan-bottom.svg"
  25317. }
  25318. },
  25319. wingspanTop: {
  25320. height: math.unit(104, "feet"),
  25321. name: "Wingspan (Top)",
  25322. image: {
  25323. source: "./media/characters/koros/wingspan-top.svg"
  25324. }
  25325. },
  25326. },
  25327. [
  25328. {
  25329. name: "Normal",
  25330. height: math.unit(31 + 8 / 12, "feet"),
  25331. default: true
  25332. },
  25333. ]
  25334. ))
  25335. characterMakers.push(() => makeCharacter(
  25336. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25337. {
  25338. front: {
  25339. height: math.unit(18 + 5 / 12, "feet"),
  25340. weight: math.unit(3750, "kg"),
  25341. name: "Front",
  25342. image: {
  25343. source: "./media/characters/vexx/front.svg",
  25344. extra: 426 / 396,
  25345. bottom: 31.5 / 458
  25346. }
  25347. },
  25348. maw: {
  25349. height: math.unit(6, "feet"),
  25350. name: "Maw",
  25351. image: {
  25352. source: "./media/characters/vexx/maw.svg"
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(18 + 5 / 12, "feet"),
  25360. default: true
  25361. },
  25362. ]
  25363. ))
  25364. characterMakers.push(() => makeCharacter(
  25365. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25366. {
  25367. front: {
  25368. height: math.unit(17 + 6 / 12, "feet"),
  25369. weight: math.unit(150, "lb"),
  25370. name: "Front",
  25371. image: {
  25372. source: "./media/characters/baadra/front.svg",
  25373. extra: 3137 / 2890,
  25374. bottom: 168.4 / 3305
  25375. }
  25376. },
  25377. back: {
  25378. height: math.unit(17 + 6 / 12, "feet"),
  25379. weight: math.unit(150, "lb"),
  25380. name: "Back",
  25381. image: {
  25382. source: "./media/characters/baadra/back.svg",
  25383. extra: 3142 / 2890,
  25384. bottom: 220 / 3371
  25385. }
  25386. },
  25387. head: {
  25388. height: math.unit(5.45, "feet"),
  25389. name: "Head",
  25390. image: {
  25391. source: "./media/characters/baadra/head.svg"
  25392. }
  25393. },
  25394. headAngry: {
  25395. height: math.unit(4.95, "feet"),
  25396. name: "Head (Angry)",
  25397. image: {
  25398. source: "./media/characters/baadra/head-angry.svg"
  25399. }
  25400. },
  25401. headOpen: {
  25402. height: math.unit(6, "feet"),
  25403. name: "Head (Open)",
  25404. image: {
  25405. source: "./media/characters/baadra/head-open.svg"
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "Normal",
  25412. height: math.unit(17 + 6 / 12, "feet"),
  25413. default: true
  25414. },
  25415. ]
  25416. ))
  25417. characterMakers.push(() => makeCharacter(
  25418. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25419. {
  25420. front: {
  25421. height: math.unit(7 + 3 / 12, "feet"),
  25422. weight: math.unit(180, "lb"),
  25423. name: "Front",
  25424. image: {
  25425. source: "./media/characters/juri/front.svg",
  25426. extra: 1401 / 1237,
  25427. bottom: 18.5 / 1418
  25428. }
  25429. },
  25430. side: {
  25431. height: math.unit(7 + 3 / 12, "feet"),
  25432. weight: math.unit(180, "lb"),
  25433. name: "Side",
  25434. image: {
  25435. source: "./media/characters/juri/side.svg",
  25436. extra: 1424 / 1242,
  25437. bottom: 18.5 / 1447
  25438. }
  25439. },
  25440. sitting: {
  25441. height: math.unit(6, "feet"),
  25442. weight: math.unit(180, "lb"),
  25443. name: "Sitting",
  25444. image: {
  25445. source: "./media/characters/juri/sitting.svg",
  25446. extra: 1270 / 1143,
  25447. bottom: 100 / 1343
  25448. }
  25449. },
  25450. back: {
  25451. height: math.unit(7 + 3 / 12, "feet"),
  25452. weight: math.unit(180, "lb"),
  25453. name: "Back",
  25454. image: {
  25455. source: "./media/characters/juri/back.svg",
  25456. extra: 1377 / 1240,
  25457. bottom: 23.7 / 1405
  25458. }
  25459. },
  25460. maw: {
  25461. height: math.unit(2.8, "feet"),
  25462. name: "Maw",
  25463. image: {
  25464. source: "./media/characters/juri/maw.svg"
  25465. }
  25466. },
  25467. stomach: {
  25468. height: math.unit(0.89, "feet"),
  25469. capacity: math.unit(4, "liters"),
  25470. name: "Stomach",
  25471. image: {
  25472. source: "./media/characters/juri/stomach.svg"
  25473. }
  25474. },
  25475. },
  25476. [
  25477. {
  25478. name: "Normal",
  25479. height: math.unit(7 + 3 / 12, "feet"),
  25480. default: true
  25481. },
  25482. ]
  25483. ))
  25484. characterMakers.push(() => makeCharacter(
  25485. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25486. {
  25487. fox: {
  25488. height: math.unit(5 + 6 / 12, "feet"),
  25489. weight: math.unit(140, "lb"),
  25490. name: "Fox",
  25491. image: {
  25492. source: "./media/characters/maxene-sita/fox.svg",
  25493. extra: 146 / 138,
  25494. bottom: 2.1 / 148.19
  25495. }
  25496. },
  25497. foxLaying: {
  25498. height: math.unit(1.70, "feet"),
  25499. weight: math.unit(140, "lb"),
  25500. name: "Fox (Laying)",
  25501. image: {
  25502. source: "./media/characters/maxene-sita/fox-laying.svg",
  25503. extra: 910 / 572,
  25504. bottom: 71 / 981
  25505. }
  25506. },
  25507. kitsune: {
  25508. height: math.unit(10, "feet"),
  25509. weight: math.unit(800, "lb"),
  25510. name: "Kitsune",
  25511. image: {
  25512. source: "./media/characters/maxene-sita/kitsune.svg",
  25513. extra: 185 / 176,
  25514. bottom: 4.7 / 189.9
  25515. }
  25516. },
  25517. hellhound: {
  25518. height: math.unit(10, "feet"),
  25519. weight: math.unit(700, "lb"),
  25520. name: "Hellhound",
  25521. image: {
  25522. source: "./media/characters/maxene-sita/hellhound.svg",
  25523. extra: 1600 / 1545,
  25524. bottom: 81 / 1681
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(5 + 6 / 12, "feet"),
  25532. default: true
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25538. {
  25539. front: {
  25540. height: math.unit(3 + 4 / 12, "feet"),
  25541. weight: math.unit(70, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/maia/front.svg",
  25545. extra: 227 / 219.5,
  25546. bottom: 40 / 267
  25547. }
  25548. },
  25549. back: {
  25550. height: math.unit(3 + 4 / 12, "feet"),
  25551. weight: math.unit(70, "lb"),
  25552. name: "Back",
  25553. image: {
  25554. source: "./media/characters/maia/back.svg",
  25555. extra: 237 / 225
  25556. }
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Normal",
  25562. height: math.unit(3 + 4 / 12, "feet"),
  25563. default: true
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25569. {
  25570. front: {
  25571. height: math.unit(5 + 10 / 12, "feet"),
  25572. weight: math.unit(197, "lb"),
  25573. name: "Front",
  25574. image: {
  25575. source: "./media/characters/jabaro/front.svg",
  25576. extra: 225 / 216,
  25577. bottom: 5.06 / 230
  25578. }
  25579. },
  25580. back: {
  25581. height: math.unit(5 + 10 / 12, "feet"),
  25582. weight: math.unit(197, "lb"),
  25583. name: "Back",
  25584. image: {
  25585. source: "./media/characters/jabaro/back.svg",
  25586. extra: 225 / 219,
  25587. bottom: 1.9 / 227
  25588. }
  25589. },
  25590. },
  25591. [
  25592. {
  25593. name: "Normal",
  25594. height: math.unit(5 + 10 / 12, "feet"),
  25595. default: true
  25596. },
  25597. ]
  25598. ))
  25599. characterMakers.push(() => makeCharacter(
  25600. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25601. {
  25602. front: {
  25603. height: math.unit(5 + 8 / 12, "feet"),
  25604. weight: math.unit(139, "lb"),
  25605. name: "Front",
  25606. image: {
  25607. source: "./media/characters/risa/front.svg",
  25608. extra: 270 / 260,
  25609. bottom: 11.2 / 282
  25610. }
  25611. },
  25612. back: {
  25613. height: math.unit(5 + 8 / 12, "feet"),
  25614. weight: math.unit(139, "lb"),
  25615. name: "Back",
  25616. image: {
  25617. source: "./media/characters/risa/back.svg",
  25618. extra: 264 / 255,
  25619. bottom: 4 / 268
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(5 + 8 / 12, "feet"),
  25627. default: true
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25633. {
  25634. front: {
  25635. height: math.unit(2 + 11 / 12, "feet"),
  25636. weight: math.unit(30, "lb"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/weatley/front.svg",
  25640. bottom: 10.7 / 414,
  25641. extra: 403.5 / 362
  25642. }
  25643. },
  25644. back: {
  25645. height: math.unit(2 + 11 / 12, "feet"),
  25646. weight: math.unit(30, "lb"),
  25647. name: "Back",
  25648. image: {
  25649. source: "./media/characters/weatley/back.svg",
  25650. bottom: 10.7 / 414,
  25651. extra: 403.5 / 362
  25652. }
  25653. },
  25654. },
  25655. [
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(2 + 11 / 12, "feet"),
  25659. default: true
  25660. },
  25661. ]
  25662. ))
  25663. characterMakers.push(() => makeCharacter(
  25664. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25665. {
  25666. front: {
  25667. height: math.unit(5 + 2 / 12, "feet"),
  25668. weight: math.unit(50, "kg"),
  25669. name: "Front",
  25670. image: {
  25671. source: "./media/characters/mercury-crescent/front.svg",
  25672. extra: 1088 / 1033,
  25673. bottom: 18.9 / 1109
  25674. }
  25675. },
  25676. },
  25677. [
  25678. {
  25679. name: "Normal",
  25680. height: math.unit(5 + 2 / 12, "feet"),
  25681. default: true
  25682. },
  25683. ]
  25684. ))
  25685. characterMakers.push(() => makeCharacter(
  25686. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25687. {
  25688. front: {
  25689. height: math.unit(2, "feet"),
  25690. weight: math.unit(15, "kg"),
  25691. name: "Front",
  25692. image: {
  25693. source: "./media/characters/diamond-jones/front.svg",
  25694. extra: 727/723,
  25695. bottom: 46/773
  25696. }
  25697. },
  25698. },
  25699. [
  25700. {
  25701. name: "Normal",
  25702. height: math.unit(2, "feet"),
  25703. default: true
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25709. {
  25710. front: {
  25711. height: math.unit(3, "feet"),
  25712. weight: math.unit(30, "kg"),
  25713. name: "Front",
  25714. image: {
  25715. source: "./media/characters/sweet-bit/front.svg",
  25716. extra: 675 / 567,
  25717. bottom: 27.7 / 703
  25718. }
  25719. },
  25720. },
  25721. [
  25722. {
  25723. name: "Normal",
  25724. height: math.unit(3, "feet"),
  25725. default: true
  25726. },
  25727. ]
  25728. ))
  25729. characterMakers.push(() => makeCharacter(
  25730. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25731. {
  25732. side: {
  25733. height: math.unit(9.178, "feet"),
  25734. weight: math.unit(500, "lb"),
  25735. name: "Side",
  25736. image: {
  25737. source: "./media/characters/umbrazen/side.svg",
  25738. extra: 1730 / 1473,
  25739. bottom: 34.6 / 1765
  25740. }
  25741. },
  25742. },
  25743. [
  25744. {
  25745. name: "Normal",
  25746. height: math.unit(9.178, "feet"),
  25747. default: true
  25748. },
  25749. ]
  25750. ))
  25751. characterMakers.push(() => makeCharacter(
  25752. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25753. {
  25754. front: {
  25755. height: math.unit(10, "feet"),
  25756. weight: math.unit(750, "lb"),
  25757. name: "Front",
  25758. image: {
  25759. source: "./media/characters/arlist/front.svg",
  25760. extra: 961 / 778,
  25761. bottom: 6.2 / 986
  25762. }
  25763. },
  25764. },
  25765. [
  25766. {
  25767. name: "Normal",
  25768. height: math.unit(10, "feet"),
  25769. default: true
  25770. },
  25771. ]
  25772. ))
  25773. characterMakers.push(() => makeCharacter(
  25774. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25775. {
  25776. front: {
  25777. height: math.unit(5 + 1 / 12, "feet"),
  25778. weight: math.unit(110, "lb"),
  25779. name: "Front",
  25780. image: {
  25781. source: "./media/characters/aradel/front.svg",
  25782. extra: 324 / 303,
  25783. bottom: 3.6 / 329.4
  25784. }
  25785. },
  25786. },
  25787. [
  25788. {
  25789. name: "Normal",
  25790. height: math.unit(5 + 1 / 12, "feet"),
  25791. default: true
  25792. },
  25793. ]
  25794. ))
  25795. characterMakers.push(() => makeCharacter(
  25796. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25797. {
  25798. front: {
  25799. height: math.unit(3 + 8 / 12, "feet"),
  25800. weight: math.unit(50, "lb"),
  25801. name: "Front",
  25802. image: {
  25803. source: "./media/characters/serryn/front.svg",
  25804. extra: 1792 / 1656,
  25805. bottom: 43.5 / 1840
  25806. }
  25807. },
  25808. },
  25809. [
  25810. {
  25811. name: "Normal",
  25812. height: math.unit(3 + 8 / 12, "feet"),
  25813. default: true
  25814. },
  25815. ]
  25816. ))
  25817. characterMakers.push(() => makeCharacter(
  25818. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25819. {
  25820. front: {
  25821. height: math.unit(7 + 10 / 12, "feet"),
  25822. weight: math.unit(255, "lb"),
  25823. name: "Front",
  25824. image: {
  25825. source: "./media/characters/xavier-thyme/front.svg",
  25826. extra: 3733 / 3642,
  25827. bottom: 131 / 3869
  25828. }
  25829. },
  25830. frontRaven: {
  25831. height: math.unit(7 + 10 / 12, "feet"),
  25832. weight: math.unit(255, "lb"),
  25833. name: "Front (Raven)",
  25834. image: {
  25835. source: "./media/characters/xavier-thyme/front-raven.svg",
  25836. extra: 4385 / 3642,
  25837. bottom: 131 / 4517
  25838. }
  25839. },
  25840. },
  25841. [
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(7 + 10 / 12, "feet"),
  25845. default: true
  25846. },
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25851. {
  25852. front: {
  25853. height: math.unit(1.6, "m"),
  25854. weight: math.unit(50, "kg"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/kiki/front.svg",
  25858. extra: 4682 / 3610,
  25859. bottom: 115 / 4777
  25860. }
  25861. },
  25862. },
  25863. [
  25864. {
  25865. name: "Normal",
  25866. height: math.unit(1.6, "meters"),
  25867. default: true
  25868. },
  25869. ]
  25870. ))
  25871. characterMakers.push(() => makeCharacter(
  25872. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25873. {
  25874. front: {
  25875. height: math.unit(50, "m"),
  25876. weight: math.unit(500, "tonnes"),
  25877. name: "Front",
  25878. image: {
  25879. source: "./media/characters/ryoko/front.svg",
  25880. extra: 4632 / 3926,
  25881. bottom: 193 / 4823
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Normal",
  25888. height: math.unit(50, "meters"),
  25889. default: true
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25895. {
  25896. front: {
  25897. height: math.unit(30, "m"),
  25898. weight: math.unit(22, "tonnes"),
  25899. name: "Front",
  25900. image: {
  25901. source: "./media/characters/elio/front.svg",
  25902. extra: 4582 / 3720,
  25903. bottom: 236 / 4828
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(30, "meters"),
  25911. default: true
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(6 + 3 / 12, "feet"),
  25920. weight: math.unit(120, "lb"),
  25921. name: "Front",
  25922. image: {
  25923. source: "./media/characters/azura/front.svg",
  25924. extra: 1149 / 1135,
  25925. bottom: 45 / 1194
  25926. }
  25927. },
  25928. frontClothed: {
  25929. height: math.unit(6 + 3 / 12, "feet"),
  25930. weight: math.unit(120, "lb"),
  25931. name: "Front (Clothed)",
  25932. image: {
  25933. source: "./media/characters/azura/front-clothed.svg",
  25934. extra: 1149 / 1135,
  25935. bottom: 45 / 1194
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Normal",
  25942. height: math.unit(6 + 3 / 12, "feet"),
  25943. default: true
  25944. },
  25945. {
  25946. name: "Macro",
  25947. height: math.unit(20 + 6 / 12, "feet")
  25948. },
  25949. {
  25950. name: "Megamacro",
  25951. height: math.unit(12, "miles")
  25952. },
  25953. {
  25954. name: "Gigamacro",
  25955. height: math.unit(10000, "miles")
  25956. },
  25957. {
  25958. name: "Teramacro",
  25959. height: math.unit(900000, "miles")
  25960. },
  25961. ]
  25962. ))
  25963. characterMakers.push(() => makeCharacter(
  25964. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25965. {
  25966. front: {
  25967. height: math.unit(12, "feet"),
  25968. weight: math.unit(1, "ton"),
  25969. capacity: math.unit(660000, "gallons"),
  25970. name: "Front",
  25971. image: {
  25972. source: "./media/characters/zeus/front.svg",
  25973. extra: 5005 / 4717,
  25974. bottom: 363 / 5388
  25975. }
  25976. },
  25977. },
  25978. [
  25979. {
  25980. name: "Normal",
  25981. height: math.unit(12, "feet")
  25982. },
  25983. {
  25984. name: "Preferred Size",
  25985. height: math.unit(0.5, "miles"),
  25986. default: true
  25987. },
  25988. {
  25989. name: "Giga Horse",
  25990. height: math.unit(300, "miles")
  25991. },
  25992. {
  25993. name: "Riding Planets",
  25994. height: math.unit(30, "megameters")
  25995. },
  25996. {
  25997. name: "Cosmic Giant",
  25998. height: math.unit(3, "zettameters")
  25999. },
  26000. {
  26001. name: "Breeding God",
  26002. height: math.unit(9.92e22, "yottameters")
  26003. },
  26004. ]
  26005. ))
  26006. characterMakers.push(() => makeCharacter(
  26007. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26008. {
  26009. side: {
  26010. height: math.unit(9, "feet"),
  26011. weight: math.unit(1500, "kg"),
  26012. name: "Side",
  26013. image: {
  26014. source: "./media/characters/fang/side.svg",
  26015. extra: 924 / 866,
  26016. bottom: 47.5 / 972.3
  26017. }
  26018. },
  26019. },
  26020. [
  26021. {
  26022. name: "Normal",
  26023. height: math.unit(9, "feet"),
  26024. default: true
  26025. },
  26026. {
  26027. name: "Macro",
  26028. height: math.unit(75 + 6 / 12, "feet")
  26029. },
  26030. {
  26031. name: "Teramacro",
  26032. height: math.unit(50000, "miles")
  26033. },
  26034. ]
  26035. ))
  26036. characterMakers.push(() => makeCharacter(
  26037. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26038. {
  26039. front: {
  26040. height: math.unit(10, "feet"),
  26041. weight: math.unit(2, "tons"),
  26042. name: "Front",
  26043. image: {
  26044. source: "./media/characters/rekhit/front.svg",
  26045. extra: 2796 / 2590,
  26046. bottom: 225 / 3022
  26047. }
  26048. },
  26049. },
  26050. [
  26051. {
  26052. name: "Normal",
  26053. height: math.unit(10, "feet"),
  26054. default: true
  26055. },
  26056. {
  26057. name: "Macro",
  26058. height: math.unit(500, "feet")
  26059. },
  26060. ]
  26061. ))
  26062. characterMakers.push(() => makeCharacter(
  26063. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26064. {
  26065. front: {
  26066. height: math.unit(7 + 6.451 / 12, "feet"),
  26067. weight: math.unit(310, "lb"),
  26068. name: "Front",
  26069. image: {
  26070. source: "./media/characters/dahlia-verrick/front.svg",
  26071. extra: 1488 / 1365,
  26072. bottom: 6.2 / 1495
  26073. }
  26074. },
  26075. back: {
  26076. height: math.unit(7 + 6.451 / 12, "feet"),
  26077. weight: math.unit(310, "lb"),
  26078. name: "Back",
  26079. image: {
  26080. source: "./media/characters/dahlia-verrick/back.svg",
  26081. extra: 1472 / 1351,
  26082. bottom: 5.28 / 1477
  26083. }
  26084. },
  26085. frontBusiness: {
  26086. height: math.unit(7 + 6.451 / 12, "feet"),
  26087. weight: math.unit(200, "lb"),
  26088. name: "Front (Business)",
  26089. image: {
  26090. source: "./media/characters/dahlia-verrick/front-business.svg",
  26091. extra: 1478 / 1381,
  26092. bottom: 5.5 / 1484
  26093. }
  26094. },
  26095. frontCasual: {
  26096. height: math.unit(7 + 6.451 / 12, "feet"),
  26097. weight: math.unit(200, "lb"),
  26098. name: "Front (Casual)",
  26099. image: {
  26100. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26101. extra: 1478 / 1381,
  26102. bottom: 5.5 / 1484
  26103. }
  26104. },
  26105. },
  26106. [
  26107. {
  26108. name: "Travel-Sized",
  26109. height: math.unit(7.45, "inches")
  26110. },
  26111. {
  26112. name: "Normal",
  26113. height: math.unit(7 + 6.451 / 12, "feet"),
  26114. default: true
  26115. },
  26116. {
  26117. name: "Hitting the Town",
  26118. height: math.unit(37 + 8 / 12, "feet")
  26119. },
  26120. {
  26121. name: "Stomp in the Suburbs",
  26122. height: math.unit(964 + 9.728 / 12, "feet")
  26123. },
  26124. {
  26125. name: "Sit on the City",
  26126. height: math.unit(61747 + 10.592 / 12, "feet")
  26127. },
  26128. {
  26129. name: "Glomp the Globe",
  26130. height: math.unit(252919327 + 4.832 / 12, "feet")
  26131. },
  26132. ]
  26133. ))
  26134. characterMakers.push(() => makeCharacter(
  26135. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26136. {
  26137. front: {
  26138. height: math.unit(6 + 4 / 12, "feet"),
  26139. weight: math.unit(320, "lb"),
  26140. name: "Front",
  26141. image: {
  26142. source: "./media/characters/balina-mahigan/front.svg",
  26143. extra: 447 / 428,
  26144. bottom: 18 / 466
  26145. }
  26146. },
  26147. back: {
  26148. height: math.unit(6 + 4 / 12, "feet"),
  26149. weight: math.unit(320, "lb"),
  26150. name: "Back",
  26151. image: {
  26152. source: "./media/characters/balina-mahigan/back.svg",
  26153. extra: 445 / 428,
  26154. bottom: 4.07 / 448
  26155. }
  26156. },
  26157. arm: {
  26158. height: math.unit(1.88, "feet"),
  26159. name: "Arm",
  26160. image: {
  26161. source: "./media/characters/balina-mahigan/arm.svg"
  26162. }
  26163. },
  26164. backPort: {
  26165. height: math.unit(0.685, "feet"),
  26166. name: "Back Port",
  26167. image: {
  26168. source: "./media/characters/balina-mahigan/back-port.svg"
  26169. }
  26170. },
  26171. hoofpaw: {
  26172. height: math.unit(1.41, "feet"),
  26173. name: "Hoofpaw",
  26174. image: {
  26175. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26176. }
  26177. },
  26178. leftHandBack: {
  26179. height: math.unit(0.938, "feet"),
  26180. name: "Left Hand (Back)",
  26181. image: {
  26182. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26183. }
  26184. },
  26185. leftHandFront: {
  26186. height: math.unit(0.938, "feet"),
  26187. name: "Left Hand (Front)",
  26188. image: {
  26189. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26190. }
  26191. },
  26192. rightHandBack: {
  26193. height: math.unit(0.95, "feet"),
  26194. name: "Right Hand (Back)",
  26195. image: {
  26196. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26197. }
  26198. },
  26199. rightHandFront: {
  26200. height: math.unit(0.95, "feet"),
  26201. name: "Right Hand (Front)",
  26202. image: {
  26203. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26204. }
  26205. },
  26206. },
  26207. [
  26208. {
  26209. name: "Normal",
  26210. height: math.unit(6 + 4 / 12, "feet"),
  26211. default: true
  26212. },
  26213. ]
  26214. ))
  26215. characterMakers.push(() => makeCharacter(
  26216. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26217. {
  26218. front: {
  26219. height: math.unit(6, "feet"),
  26220. weight: math.unit(320, "lb"),
  26221. name: "Front",
  26222. image: {
  26223. source: "./media/characters/balina-mejeri/front.svg",
  26224. extra: 517 / 488,
  26225. bottom: 44.2 / 561
  26226. }
  26227. },
  26228. },
  26229. [
  26230. {
  26231. name: "Normal",
  26232. height: math.unit(6 + 4 / 12, "feet")
  26233. },
  26234. {
  26235. name: "Business",
  26236. height: math.unit(155, "feet"),
  26237. default: true
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26243. {
  26244. kneeling: {
  26245. height: math.unit(6 + 4 / 12, "feet"),
  26246. weight: math.unit(300 * 20, "lb"),
  26247. name: "Kneeling",
  26248. image: {
  26249. source: "./media/characters/balbarian/kneeling.svg",
  26250. extra: 922 / 862,
  26251. bottom: 42.4 / 965
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(6 + 4 / 12, "feet")
  26259. },
  26260. {
  26261. name: "Treasured",
  26262. height: math.unit(18 + 9 / 12, "feet"),
  26263. default: true
  26264. },
  26265. {
  26266. name: "Macro",
  26267. height: math.unit(900, "feet")
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26273. {
  26274. front: {
  26275. height: math.unit(6 + 4 / 12, "feet"),
  26276. weight: math.unit(325, "lb"),
  26277. name: "Front",
  26278. image: {
  26279. source: "./media/characters/balina-amarini/front.svg",
  26280. extra: 415 / 403,
  26281. bottom: 19 / 433.4
  26282. }
  26283. },
  26284. back: {
  26285. height: math.unit(6 + 4 / 12, "feet"),
  26286. weight: math.unit(325, "lb"),
  26287. name: "Back",
  26288. image: {
  26289. source: "./media/characters/balina-amarini/back.svg",
  26290. extra: 415 / 403,
  26291. bottom: 13.5 / 432
  26292. }
  26293. },
  26294. overdrive: {
  26295. height: math.unit(6 + 4 / 12, "feet"),
  26296. weight: math.unit(400, "lb"),
  26297. name: "Overdrive",
  26298. image: {
  26299. source: "./media/characters/balina-amarini/overdrive.svg",
  26300. extra: 269 / 259,
  26301. bottom: 12 / 282
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Boom",
  26308. height: math.unit(9 + 10 / 12, "feet"),
  26309. default: true
  26310. },
  26311. {
  26312. name: "Macro",
  26313. height: math.unit(280, "feet")
  26314. },
  26315. ]
  26316. ))
  26317. characterMakers.push(() => makeCharacter(
  26318. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26319. {
  26320. goddess: {
  26321. height: math.unit(600, "feet"),
  26322. weight: math.unit(2000000, "tons"),
  26323. name: "Goddess",
  26324. image: {
  26325. source: "./media/characters/lady-kubwa/goddess.svg",
  26326. extra: 1240.5 / 1223,
  26327. bottom: 22 / 1263
  26328. }
  26329. },
  26330. goddesser: {
  26331. height: math.unit(900, "feet"),
  26332. weight: math.unit(20000000, "lb"),
  26333. name: "Goddess-er",
  26334. image: {
  26335. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26336. extra: 899 / 888,
  26337. bottom: 12.6 / 912
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Macro",
  26344. height: math.unit(600, "feet"),
  26345. default: true
  26346. },
  26347. {
  26348. name: "Megamacro",
  26349. height: math.unit(250, "miles")
  26350. },
  26351. ]
  26352. ))
  26353. characterMakers.push(() => makeCharacter(
  26354. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26355. {
  26356. front: {
  26357. height: math.unit(7 + 7 / 12, "feet"),
  26358. weight: math.unit(250, "lb"),
  26359. name: "Front",
  26360. image: {
  26361. source: "./media/characters/tala-grovehorn/front.svg",
  26362. extra: 2636 / 2525,
  26363. bottom: 147 / 2781
  26364. }
  26365. },
  26366. back: {
  26367. height: math.unit(7 + 7 / 12, "feet"),
  26368. weight: math.unit(250, "lb"),
  26369. name: "Back",
  26370. image: {
  26371. source: "./media/characters/tala-grovehorn/back.svg",
  26372. extra: 2635 / 2539,
  26373. bottom: 100 / 2732.8
  26374. }
  26375. },
  26376. mouth: {
  26377. height: math.unit(1.15, "feet"),
  26378. name: "Mouth",
  26379. image: {
  26380. source: "./media/characters/tala-grovehorn/mouth.svg"
  26381. }
  26382. },
  26383. dick: {
  26384. height: math.unit(2.36, "feet"),
  26385. name: "Dick",
  26386. image: {
  26387. source: "./media/characters/tala-grovehorn/dick.svg"
  26388. }
  26389. },
  26390. slit: {
  26391. height: math.unit(0.61, "feet"),
  26392. name: "Slit",
  26393. image: {
  26394. source: "./media/characters/tala-grovehorn/slit.svg"
  26395. }
  26396. },
  26397. },
  26398. [
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(7 + 7 / 12, "feet"),
  26406. weight: math.unit(225, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/epona/front.svg",
  26410. extra: 2445 / 2290,
  26411. bottom: 251 / 2696
  26412. }
  26413. },
  26414. back: {
  26415. height: math.unit(7 + 7 / 12, "feet"),
  26416. weight: math.unit(225, "lb"),
  26417. name: "Back",
  26418. image: {
  26419. source: "./media/characters/epona/back.svg",
  26420. extra: 2546 / 2408,
  26421. bottom: 44 / 2589
  26422. }
  26423. },
  26424. genitals: {
  26425. height: math.unit(1.5, "feet"),
  26426. name: "Genitals",
  26427. image: {
  26428. source: "./media/characters/epona/genitals.svg"
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(7 + 7 / 12, "feet"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(7, "feet"),
  26445. weight: math.unit(518, "lb"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/avia-bloodbourn/front.svg",
  26449. extra: 1466 / 1350,
  26450. bottom: 65 / 1527
  26451. }
  26452. },
  26453. },
  26454. [
  26455. ]
  26456. ))
  26457. characterMakers.push(() => makeCharacter(
  26458. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26459. {
  26460. front: {
  26461. height: math.unit(9.35, "feet"),
  26462. weight: math.unit(600, "lb"),
  26463. name: "Front",
  26464. image: {
  26465. source: "./media/characters/amera/front.svg",
  26466. extra: 891 / 818,
  26467. bottom: 30 / 922.7
  26468. }
  26469. },
  26470. back: {
  26471. height: math.unit(9.35, "feet"),
  26472. weight: math.unit(600, "lb"),
  26473. name: "Back",
  26474. image: {
  26475. source: "./media/characters/amera/back.svg",
  26476. extra: 876 / 824,
  26477. bottom: 6.8 / 884
  26478. }
  26479. },
  26480. dick: {
  26481. height: math.unit(2.14, "feet"),
  26482. name: "Dick",
  26483. image: {
  26484. source: "./media/characters/amera/dick.svg"
  26485. }
  26486. },
  26487. },
  26488. [
  26489. {
  26490. name: "Normal",
  26491. height: math.unit(9.35, "feet"),
  26492. default: true
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26498. {
  26499. kneeling: {
  26500. height: math.unit(3 + 4 / 12, "feet"),
  26501. weight: math.unit(90, "lb"),
  26502. name: "Kneeling",
  26503. image: {
  26504. source: "./media/characters/rosewen/kneeling.svg",
  26505. extra: 1835 / 1571,
  26506. bottom: 27.7 / 1862
  26507. }
  26508. },
  26509. },
  26510. [
  26511. {
  26512. name: "Normal",
  26513. height: math.unit(3 + 4 / 12, "feet"),
  26514. default: true
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(5 + 10 / 12, "feet"),
  26523. weight: math.unit(200, "lb"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/sabah/front.svg",
  26527. extra: 849 / 763,
  26528. bottom: 33.9 / 881
  26529. }
  26530. },
  26531. },
  26532. [
  26533. {
  26534. name: "Normal",
  26535. height: math.unit(5 + 10 / 12, "feet"),
  26536. default: true
  26537. },
  26538. ]
  26539. ))
  26540. characterMakers.push(() => makeCharacter(
  26541. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26542. {
  26543. front: {
  26544. height: math.unit(3 + 5 / 12, "feet"),
  26545. weight: math.unit(40, "kg"),
  26546. name: "Front",
  26547. image: {
  26548. source: "./media/characters/purple-flame/front.svg",
  26549. extra: 1577 / 1412,
  26550. bottom: 97 / 1694
  26551. }
  26552. },
  26553. frontDressed: {
  26554. height: math.unit(3 + 5 / 12, "feet"),
  26555. weight: math.unit(40, "kg"),
  26556. name: "Front (Dressed)",
  26557. image: {
  26558. source: "./media/characters/purple-flame/front-dressed.svg",
  26559. extra: 1577 / 1412,
  26560. bottom: 97 / 1694
  26561. }
  26562. },
  26563. headphones: {
  26564. height: math.unit(0.85, "feet"),
  26565. name: "Headphones",
  26566. image: {
  26567. source: "./media/characters/purple-flame/headphones.svg"
  26568. }
  26569. },
  26570. },
  26571. [
  26572. {
  26573. name: "Really Small",
  26574. height: math.unit(5, "cm")
  26575. },
  26576. {
  26577. name: "Micro",
  26578. height: math.unit(1 + 5 / 12, "feet")
  26579. },
  26580. {
  26581. name: "Normal",
  26582. height: math.unit(3 + 5 / 12, "feet"),
  26583. default: true
  26584. },
  26585. {
  26586. name: "Minimacro",
  26587. height: math.unit(125, "feet")
  26588. },
  26589. {
  26590. name: "Macro",
  26591. height: math.unit(0.5, "miles")
  26592. },
  26593. {
  26594. name: "Megamacro",
  26595. height: math.unit(50, "miles")
  26596. },
  26597. {
  26598. name: "Gigantic",
  26599. height: math.unit(750, "miles")
  26600. },
  26601. {
  26602. name: "Planetary",
  26603. height: math.unit(15000, "miles")
  26604. },
  26605. ]
  26606. ))
  26607. characterMakers.push(() => makeCharacter(
  26608. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26609. {
  26610. front: {
  26611. height: math.unit(14, "feet"),
  26612. weight: math.unit(959, "lb"),
  26613. name: "Front",
  26614. image: {
  26615. source: "./media/characters/arsenal/front.svg",
  26616. extra: 2357 / 2157,
  26617. bottom: 93 / 2458
  26618. }
  26619. },
  26620. },
  26621. [
  26622. {
  26623. name: "Normal",
  26624. height: math.unit(14, "feet"),
  26625. default: true
  26626. },
  26627. ]
  26628. ))
  26629. characterMakers.push(() => makeCharacter(
  26630. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26631. {
  26632. front: {
  26633. height: math.unit(6, "feet"),
  26634. weight: math.unit(150, "lb"),
  26635. name: "Front",
  26636. image: {
  26637. source: "./media/characters/adira/front.svg",
  26638. extra: 1078 / 1029,
  26639. bottom: 87 / 1166
  26640. }
  26641. },
  26642. },
  26643. [
  26644. {
  26645. name: "Micro",
  26646. height: math.unit(4, "inches"),
  26647. default: true
  26648. },
  26649. {
  26650. name: "Macro",
  26651. height: math.unit(50, "feet")
  26652. },
  26653. ]
  26654. ))
  26655. characterMakers.push(() => makeCharacter(
  26656. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26657. {
  26658. front: {
  26659. height: math.unit(16, "feet"),
  26660. weight: math.unit(1000, "lb"),
  26661. name: "Front",
  26662. image: {
  26663. source: "./media/characters/grim/front.svg",
  26664. extra: 622 / 614,
  26665. bottom: 18.1 / 642
  26666. }
  26667. },
  26668. back: {
  26669. height: math.unit(16, "feet"),
  26670. weight: math.unit(1000, "lb"),
  26671. name: "Back",
  26672. image: {
  26673. source: "./media/characters/grim/back.svg",
  26674. extra: 610.6 / 602,
  26675. bottom: 40.8 / 652
  26676. }
  26677. },
  26678. hunched: {
  26679. height: math.unit(9.75, "feet"),
  26680. weight: math.unit(1000, "lb"),
  26681. name: "Hunched",
  26682. image: {
  26683. source: "./media/characters/grim/hunched.svg",
  26684. extra: 304 / 297,
  26685. bottom: 35.4 / 394
  26686. }
  26687. },
  26688. },
  26689. [
  26690. {
  26691. name: "Normal",
  26692. height: math.unit(16, "feet"),
  26693. default: true
  26694. },
  26695. ]
  26696. ))
  26697. characterMakers.push(() => makeCharacter(
  26698. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26699. {
  26700. front: {
  26701. height: math.unit(2.3, "meters"),
  26702. weight: math.unit(300, "lb"),
  26703. name: "Front",
  26704. image: {
  26705. source: "./media/characters/sinja/front-sfw.svg",
  26706. extra: 1393 / 1294,
  26707. bottom: 70 / 1463
  26708. }
  26709. },
  26710. frontNsfw: {
  26711. height: math.unit(2.3, "meters"),
  26712. weight: math.unit(300, "lb"),
  26713. name: "Front (NSFW)",
  26714. image: {
  26715. source: "./media/characters/sinja/front-nsfw.svg",
  26716. extra: 1393 / 1294,
  26717. bottom: 70 / 1463
  26718. }
  26719. },
  26720. back: {
  26721. height: math.unit(2.3, "meters"),
  26722. weight: math.unit(300, "lb"),
  26723. name: "Back",
  26724. image: {
  26725. source: "./media/characters/sinja/back.svg",
  26726. extra: 1393 / 1294,
  26727. bottom: 70 / 1463
  26728. }
  26729. },
  26730. head: {
  26731. height: math.unit(1.771, "feet"),
  26732. name: "Head",
  26733. image: {
  26734. source: "./media/characters/sinja/head.svg"
  26735. }
  26736. },
  26737. slit: {
  26738. height: math.unit(0.8, "feet"),
  26739. name: "Slit",
  26740. image: {
  26741. source: "./media/characters/sinja/slit.svg"
  26742. }
  26743. },
  26744. },
  26745. [
  26746. {
  26747. name: "Normal",
  26748. height: math.unit(2.3, "meters")
  26749. },
  26750. {
  26751. name: "Macro",
  26752. height: math.unit(91, "meters"),
  26753. default: true
  26754. },
  26755. {
  26756. name: "Megamacro",
  26757. height: math.unit(91440, "meters")
  26758. },
  26759. {
  26760. name: "Gigamacro",
  26761. height: math.unit(60960000, "meters")
  26762. },
  26763. {
  26764. name: "Teramacro",
  26765. height: math.unit(9144000000, "meters")
  26766. },
  26767. ]
  26768. ))
  26769. characterMakers.push(() => makeCharacter(
  26770. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26771. {
  26772. front: {
  26773. height: math.unit(1.7, "meters"),
  26774. weight: math.unit(130, "lb"),
  26775. name: "Front",
  26776. image: {
  26777. source: "./media/characters/kyu/front.svg",
  26778. extra: 415 / 395,
  26779. bottom: 5 / 420
  26780. }
  26781. },
  26782. head: {
  26783. height: math.unit(1.75, "feet"),
  26784. name: "Head",
  26785. image: {
  26786. source: "./media/characters/kyu/head.svg"
  26787. }
  26788. },
  26789. foot: {
  26790. height: math.unit(0.81, "feet"),
  26791. name: "Foot",
  26792. image: {
  26793. source: "./media/characters/kyu/foot.svg"
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Normal",
  26800. height: math.unit(1.7, "meters")
  26801. },
  26802. {
  26803. name: "Macro",
  26804. height: math.unit(131, "feet"),
  26805. default: true
  26806. },
  26807. {
  26808. name: "Megamacro",
  26809. height: math.unit(91440, "meters")
  26810. },
  26811. {
  26812. name: "Gigamacro",
  26813. height: math.unit(60960000, "meters")
  26814. },
  26815. {
  26816. name: "Teramacro",
  26817. height: math.unit(9144000000, "meters")
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(7 + 1 / 12, "feet"),
  26826. weight: math.unit(250, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/joey/front.svg",
  26830. extra: 1791 / 1537,
  26831. bottom: 28 / 1816
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Micro",
  26838. height: math.unit(3, "inches")
  26839. },
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(7 + 1 / 12, "feet"),
  26843. default: true
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26849. {
  26850. front: {
  26851. height: math.unit(165, "cm"),
  26852. weight: math.unit(140, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/sam-evans/front.svg",
  26856. extra: 3417 / 3230,
  26857. bottom: 41.3 / 3417
  26858. }
  26859. },
  26860. frontSixTails: {
  26861. height: math.unit(165, "cm"),
  26862. weight: math.unit(140, "lb"),
  26863. name: "Front-six-tails",
  26864. image: {
  26865. source: "./media/characters/sam-evans/front-six-tails.svg",
  26866. extra: 3417 / 3230,
  26867. bottom: 41.3 / 3417
  26868. }
  26869. },
  26870. back: {
  26871. height: math.unit(165, "cm"),
  26872. weight: math.unit(140, "lb"),
  26873. name: "Back",
  26874. image: {
  26875. source: "./media/characters/sam-evans/back.svg",
  26876. extra: 3227 / 3032,
  26877. bottom: 6.8 / 3234
  26878. }
  26879. },
  26880. face: {
  26881. height: math.unit(0.68, "feet"),
  26882. name: "Face",
  26883. image: {
  26884. source: "./media/characters/sam-evans/face.svg"
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Normal",
  26891. height: math.unit(165, "cm"),
  26892. default: true
  26893. },
  26894. {
  26895. name: "Macro",
  26896. height: math.unit(100, "meters")
  26897. },
  26898. {
  26899. name: "Macro+",
  26900. height: math.unit(800, "meters")
  26901. },
  26902. {
  26903. name: "Macro++",
  26904. height: math.unit(3, "km")
  26905. },
  26906. {
  26907. name: "Macro+++",
  26908. height: math.unit(30, "km")
  26909. },
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26914. {
  26915. front: {
  26916. height: math.unit(10, "feet"),
  26917. weight: math.unit(750, "lb"),
  26918. name: "Front",
  26919. image: {
  26920. source: "./media/characters/juliet-a/front.svg",
  26921. extra: 1766 / 1720,
  26922. bottom: 43 / 1809
  26923. }
  26924. },
  26925. back: {
  26926. height: math.unit(10, "feet"),
  26927. weight: math.unit(750, "lb"),
  26928. name: "Back",
  26929. image: {
  26930. source: "./media/characters/juliet-a/back.svg",
  26931. extra: 1781 / 1734,
  26932. bottom: 35 / 1810,
  26933. }
  26934. },
  26935. },
  26936. [
  26937. {
  26938. name: "Normal",
  26939. height: math.unit(10, "feet"),
  26940. default: true
  26941. },
  26942. {
  26943. name: "Dragon Form",
  26944. height: math.unit(250, "feet")
  26945. },
  26946. {
  26947. name: "Macro",
  26948. height: math.unit(1000, "feet")
  26949. },
  26950. {
  26951. name: "Megamacro",
  26952. height: math.unit(10000, "feet")
  26953. }
  26954. ]
  26955. ))
  26956. characterMakers.push(() => makeCharacter(
  26957. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26958. {
  26959. regular: {
  26960. height: math.unit(7 + 3 / 12, "feet"),
  26961. weight: math.unit(260, "lb"),
  26962. name: "Regular",
  26963. image: {
  26964. source: "./media/characters/wild/regular.svg",
  26965. extra: 97.45 / 92,
  26966. bottom: 6.8 / 104.3
  26967. }
  26968. },
  26969. biggums: {
  26970. height: math.unit(8 + 6 / 12, "feet"),
  26971. weight: math.unit(425, "lb"),
  26972. name: "Biggums",
  26973. image: {
  26974. source: "./media/characters/wild/biggums.svg",
  26975. extra: 97.45 / 92,
  26976. bottom: 7.5 / 132.34
  26977. }
  26978. },
  26979. mawRegular: {
  26980. height: math.unit(1.24, "feet"),
  26981. name: "Maw (Regular)",
  26982. image: {
  26983. source: "./media/characters/wild/maw.svg"
  26984. }
  26985. },
  26986. mawBiggums: {
  26987. height: math.unit(1.47, "feet"),
  26988. name: "Maw (Biggums)",
  26989. image: {
  26990. source: "./media/characters/wild/maw.svg"
  26991. }
  26992. },
  26993. },
  26994. [
  26995. {
  26996. name: "Normal",
  26997. height: math.unit(7 + 3 / 12, "feet"),
  26998. default: true
  26999. },
  27000. ]
  27001. ))
  27002. characterMakers.push(() => makeCharacter(
  27003. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27004. {
  27005. front: {
  27006. height: math.unit(2.5, "meters"),
  27007. weight: math.unit(200, "kg"),
  27008. name: "Front",
  27009. image: {
  27010. source: "./media/characters/vidar/front.svg",
  27011. extra: 2994 / 2795,
  27012. bottom: 56 / 3061
  27013. }
  27014. },
  27015. back: {
  27016. height: math.unit(2.5, "meters"),
  27017. weight: math.unit(200, "kg"),
  27018. name: "Back",
  27019. image: {
  27020. source: "./media/characters/vidar/back.svg",
  27021. extra: 3131 / 2928,
  27022. bottom: 13.5 / 3141.5
  27023. }
  27024. },
  27025. feral: {
  27026. height: math.unit(2.5, "meters"),
  27027. weight: math.unit(2000, "kg"),
  27028. name: "Feral",
  27029. image: {
  27030. source: "./media/characters/vidar/feral.svg",
  27031. extra: 2790 / 1765,
  27032. bottom: 6 / 2796
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Normal",
  27039. height: math.unit(2.5, "meters"),
  27040. default: true
  27041. },
  27042. {
  27043. name: "Macro",
  27044. height: math.unit(100, "meters")
  27045. },
  27046. ]
  27047. ))
  27048. characterMakers.push(() => makeCharacter(
  27049. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27050. {
  27051. front: {
  27052. height: math.unit(5 + 9 / 12, "feet"),
  27053. weight: math.unit(120, "lb"),
  27054. name: "Front",
  27055. image: {
  27056. source: "./media/characters/ash/front.svg",
  27057. extra: 2189 / 1961,
  27058. bottom: 5.2 / 2194
  27059. }
  27060. },
  27061. },
  27062. [
  27063. {
  27064. name: "Normal",
  27065. height: math.unit(5 + 9 / 12, "feet"),
  27066. default: true
  27067. },
  27068. ]
  27069. ))
  27070. characterMakers.push(() => makeCharacter(
  27071. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27072. {
  27073. front: {
  27074. height: math.unit(9, "feet"),
  27075. weight: math.unit(10000, "lb"),
  27076. name: "Front",
  27077. image: {
  27078. source: "./media/characters/gygabite/front.svg",
  27079. bottom: 31.7 / 537.8,
  27080. extra: 505 / 370
  27081. }
  27082. },
  27083. },
  27084. [
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(9, "feet"),
  27088. default: true
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(12, "feet"),
  27097. weight: math.unit(35000, "lb"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/p0tat0/front.svg",
  27101. extra: 1065 / 921,
  27102. bottom: 55.7 / 1121.25
  27103. }
  27104. },
  27105. },
  27106. [
  27107. {
  27108. name: "Normal",
  27109. height: math.unit(12, "feet"),
  27110. default: true
  27111. },
  27112. ]
  27113. ))
  27114. characterMakers.push(() => makeCharacter(
  27115. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27116. {
  27117. side: {
  27118. height: math.unit(6.5, "feet"),
  27119. weight: math.unit(800, "lb"),
  27120. name: "Side",
  27121. image: {
  27122. source: "./media/characters/dusk/side.svg",
  27123. extra: 615 / 373,
  27124. bottom: 53 / 664
  27125. }
  27126. },
  27127. sitting: {
  27128. height: math.unit(7, "feet"),
  27129. weight: math.unit(800, "lb"),
  27130. name: "Sitting",
  27131. image: {
  27132. source: "./media/characters/dusk/sitting.svg",
  27133. extra: 753 / 425,
  27134. bottom: 33 / 774
  27135. }
  27136. },
  27137. head: {
  27138. height: math.unit(6.1, "feet"),
  27139. name: "Head",
  27140. image: {
  27141. source: "./media/characters/dusk/head.svg"
  27142. }
  27143. },
  27144. },
  27145. [
  27146. {
  27147. name: "Normal",
  27148. height: math.unit(7, "feet"),
  27149. default: true
  27150. },
  27151. ]
  27152. ))
  27153. characterMakers.push(() => makeCharacter(
  27154. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27155. {
  27156. front: {
  27157. height: math.unit(15, "feet"),
  27158. weight: math.unit(7000, "lb"),
  27159. name: "Front",
  27160. image: {
  27161. source: "./media/characters/jay-direwolf/front.svg",
  27162. extra: 1810 / 1732,
  27163. bottom: 66 / 1892
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(15, "feet"),
  27171. default: true
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27177. {
  27178. front: {
  27179. height: math.unit(4 + 9 / 12, "feet"),
  27180. weight: math.unit(130, "lb"),
  27181. name: "Front",
  27182. image: {
  27183. source: "./media/characters/anchovie/front.svg",
  27184. extra: 382 / 350,
  27185. bottom: 25 / 409
  27186. }
  27187. },
  27188. back: {
  27189. height: math.unit(4 + 9 / 12, "feet"),
  27190. weight: math.unit(130, "lb"),
  27191. name: "Back",
  27192. image: {
  27193. source: "./media/characters/anchovie/back.svg",
  27194. extra: 385 / 352,
  27195. bottom: 16.6 / 402
  27196. }
  27197. },
  27198. frontDressed: {
  27199. height: math.unit(4 + 9 / 12, "feet"),
  27200. weight: math.unit(130, "lb"),
  27201. name: "Front (Dressed)",
  27202. image: {
  27203. source: "./media/characters/anchovie/front-dressed.svg",
  27204. extra: 382 / 350,
  27205. bottom: 25 / 409
  27206. }
  27207. },
  27208. backDressed: {
  27209. height: math.unit(4 + 9 / 12, "feet"),
  27210. weight: math.unit(130, "lb"),
  27211. name: "Back (Dressed)",
  27212. image: {
  27213. source: "./media/characters/anchovie/back-dressed.svg",
  27214. extra: 385 / 352,
  27215. bottom: 16.6 / 402
  27216. }
  27217. },
  27218. },
  27219. [
  27220. {
  27221. name: "Micro",
  27222. height: math.unit(6.4, "inches")
  27223. },
  27224. {
  27225. name: "Normal",
  27226. height: math.unit(4 + 9 / 12, "feet"),
  27227. default: true
  27228. },
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27233. {
  27234. front: {
  27235. height: math.unit(2, "meters"),
  27236. weight: math.unit(180, "lb"),
  27237. name: "Front",
  27238. image: {
  27239. source: "./media/characters/acidrenamon/front.svg",
  27240. extra: 987 / 890,
  27241. bottom: 22.8 / 1009
  27242. }
  27243. },
  27244. back: {
  27245. height: math.unit(2, "meters"),
  27246. weight: math.unit(180, "lb"),
  27247. name: "Back",
  27248. image: {
  27249. source: "./media/characters/acidrenamon/back.svg",
  27250. extra: 983 / 891,
  27251. bottom: 8.4 / 992
  27252. }
  27253. },
  27254. head: {
  27255. height: math.unit(1.92, "feet"),
  27256. name: "Head",
  27257. image: {
  27258. source: "./media/characters/acidrenamon/head.svg"
  27259. }
  27260. },
  27261. rump: {
  27262. height: math.unit(1.72, "feet"),
  27263. name: "Rump",
  27264. image: {
  27265. source: "./media/characters/acidrenamon/rump.svg"
  27266. }
  27267. },
  27268. tail: {
  27269. height: math.unit(4.2, "feet"),
  27270. name: "Tail",
  27271. image: {
  27272. source: "./media/characters/acidrenamon/tail.svg"
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Normal",
  27279. height: math.unit(2, "meters"),
  27280. default: true
  27281. },
  27282. {
  27283. name: "Minimacro",
  27284. height: math.unit(7, "meters")
  27285. },
  27286. {
  27287. name: "Macro",
  27288. height: math.unit(200, "meters")
  27289. },
  27290. {
  27291. name: "Gigamacro",
  27292. height: math.unit(0.2, "earths")
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(6, "feet"),
  27301. weight: math.unit(150, "lb"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/kenzie-lee/front.svg",
  27305. extra: 1525 / 1465,
  27306. bottom: 45 / 1570
  27307. }
  27308. },
  27309. side: {
  27310. height: math.unit(6, "feet"),
  27311. weight: math.unit(150, "lb"),
  27312. name: "Side",
  27313. image: {
  27314. source: "./media/characters/kenzie-lee/side.svg",
  27315. extra: 5505 / 5383,
  27316. bottom: 60 / 5573
  27317. }
  27318. },
  27319. paw: {
  27320. height: math.unit(0.57, "feet"),
  27321. name: "Paw",
  27322. image: {
  27323. source: "./media/characters/kenzie-lee/paw.svg"
  27324. }
  27325. },
  27326. },
  27327. [
  27328. {
  27329. name: "Normal",
  27330. height: math.unit(152, "feet"),
  27331. default: true
  27332. },
  27333. {
  27334. name: "Megamacro",
  27335. height: math.unit(7, "miles")
  27336. },
  27337. {
  27338. name: "Gigamacro",
  27339. height: math.unit(8000, "miles")
  27340. },
  27341. ]
  27342. ))
  27343. characterMakers.push(() => makeCharacter(
  27344. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27345. {
  27346. side: {
  27347. height: math.unit(6, "feet"),
  27348. weight: math.unit(150, "lb"),
  27349. name: "Side",
  27350. image: {
  27351. source: "./media/characters/withers/side.svg",
  27352. extra: 1830 / 1728,
  27353. bottom: 96 / 1927
  27354. }
  27355. },
  27356. front: {
  27357. height: math.unit(6, "feet"),
  27358. weight: math.unit(150, "lb"),
  27359. name: "Front",
  27360. image: {
  27361. source: "./media/characters/withers/front.svg",
  27362. extra: 1514 / 1438,
  27363. bottom: 118 / 1632
  27364. }
  27365. },
  27366. },
  27367. [
  27368. {
  27369. name: "Macro",
  27370. height: math.unit(168, "feet"),
  27371. default: true
  27372. },
  27373. {
  27374. name: "Megamacro",
  27375. height: math.unit(15, "miles")
  27376. }
  27377. ]
  27378. ))
  27379. characterMakers.push(() => makeCharacter(
  27380. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27381. {
  27382. front: {
  27383. height: math.unit(6 + 7 / 12, "feet"),
  27384. weight: math.unit(250, "lb"),
  27385. name: "Front",
  27386. image: {
  27387. source: "./media/characters/nemoskii/front.svg",
  27388. extra: 2270 / 1734,
  27389. bottom: 86 / 2354
  27390. }
  27391. },
  27392. back: {
  27393. height: math.unit(6 + 7 / 12, "feet"),
  27394. weight: math.unit(250, "lb"),
  27395. name: "Back",
  27396. image: {
  27397. source: "./media/characters/nemoskii/back.svg",
  27398. extra: 1845 / 1788,
  27399. bottom: 10.5 / 1852
  27400. }
  27401. },
  27402. head: {
  27403. height: math.unit(1.31, "feet"),
  27404. name: "Head",
  27405. image: {
  27406. source: "./media/characters/nemoskii/head.svg"
  27407. }
  27408. },
  27409. },
  27410. [
  27411. {
  27412. name: "Micro",
  27413. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27414. },
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(6 + 7 / 12, "feet"),
  27418. default: true
  27419. },
  27420. {
  27421. name: "Macro",
  27422. height: math.unit((6 + 7 / 12) * 150, "feet")
  27423. },
  27424. {
  27425. name: "Macro+",
  27426. height: math.unit((6 + 7 / 12) * 500, "feet")
  27427. },
  27428. {
  27429. name: "Megamacro",
  27430. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(1, "mile"),
  27439. weight: math.unit(265261.9, "lb"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/shui/front.svg",
  27443. extra: 1633 / 1564,
  27444. bottom: 91.5 / 1726
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Macro",
  27451. height: math.unit(1, "mile"),
  27452. default: true
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(12 + 6 / 12, "feet"),
  27461. weight: math.unit(1342, "lb"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/arokh-takakura/front.svg",
  27465. extra: 1089 / 1043,
  27466. bottom: 77.4 / 1176.7
  27467. }
  27468. },
  27469. back: {
  27470. height: math.unit(12 + 6 / 12, "feet"),
  27471. weight: math.unit(1342, "lb"),
  27472. name: "Back",
  27473. image: {
  27474. source: "./media/characters/arokh-takakura/back.svg",
  27475. extra: 1046 / 1019,
  27476. bottom: 102 / 1150
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Big",
  27483. height: math.unit(12 + 6 / 12, "feet"),
  27484. default: true
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27490. {
  27491. front: {
  27492. height: math.unit(5 + 6 / 12, "feet"),
  27493. weight: math.unit(150, "lb"),
  27494. name: "Front",
  27495. image: {
  27496. source: "./media/characters/theo/front.svg",
  27497. extra: 1184 / 1131,
  27498. bottom: 7.4 / 1191
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Micro",
  27505. height: math.unit(5, "inches")
  27506. },
  27507. {
  27508. name: "Normal",
  27509. height: math.unit(5 + 6 / 12, "feet"),
  27510. default: true
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27516. {
  27517. front: {
  27518. height: math.unit(5 + 9 / 12, "feet"),
  27519. weight: math.unit(130, "lb"),
  27520. name: "Front",
  27521. image: {
  27522. source: "./media/characters/cecelia-swift/front.svg",
  27523. extra: 502 / 484,
  27524. bottom: 23 / 523
  27525. }
  27526. },
  27527. back: {
  27528. height: math.unit(5 + 9 / 12, "feet"),
  27529. weight: math.unit(130, "lb"),
  27530. name: "Back",
  27531. image: {
  27532. source: "./media/characters/cecelia-swift/back.svg",
  27533. extra: 499 / 485,
  27534. bottom: 12 / 511
  27535. }
  27536. },
  27537. head: {
  27538. height: math.unit(0.90, "feet"),
  27539. name: "Head",
  27540. image: {
  27541. source: "./media/characters/cecelia-swift/head.svg"
  27542. }
  27543. },
  27544. rump: {
  27545. height: math.unit(1.75, "feet"),
  27546. name: "Rump",
  27547. image: {
  27548. source: "./media/characters/cecelia-swift/rump.svg"
  27549. }
  27550. },
  27551. },
  27552. [
  27553. {
  27554. name: "Normal",
  27555. height: math.unit(5 + 9 / 12, "feet"),
  27556. default: true
  27557. },
  27558. {
  27559. name: "Big",
  27560. height: math.unit(50, "feet")
  27561. },
  27562. {
  27563. name: "Macro",
  27564. height: math.unit(100, "feet")
  27565. },
  27566. {
  27567. name: "Macro+",
  27568. height: math.unit(500, "feet")
  27569. },
  27570. {
  27571. name: "Macro++",
  27572. height: math.unit(1000, "feet")
  27573. },
  27574. ]
  27575. ))
  27576. characterMakers.push(() => makeCharacter(
  27577. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27578. {
  27579. front: {
  27580. height: math.unit(6, "feet"),
  27581. weight: math.unit(150, "lb"),
  27582. name: "Front",
  27583. image: {
  27584. source: "./media/characters/kaunan/front.svg",
  27585. extra: 2890 / 2523,
  27586. bottom: 49 / 2939
  27587. }
  27588. },
  27589. },
  27590. [
  27591. {
  27592. name: "Macro",
  27593. height: math.unit(150, "feet"),
  27594. default: true
  27595. },
  27596. ]
  27597. ))
  27598. characterMakers.push(() => makeCharacter(
  27599. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27600. {
  27601. front: {
  27602. height: math.unit(175, "cm"),
  27603. weight: math.unit(60, "kg"),
  27604. name: "Front",
  27605. image: {
  27606. source: "./media/characters/fei/front.svg",
  27607. extra: 1873/1723,
  27608. bottom: 53/1926
  27609. }
  27610. },
  27611. },
  27612. [
  27613. {
  27614. name: "Mortal",
  27615. height: math.unit(175, "cm")
  27616. },
  27617. {
  27618. name: "Normal",
  27619. height: math.unit(3500, "m"),
  27620. default: true
  27621. },
  27622. {
  27623. name: "Stroll",
  27624. height: math.unit(17.5, "km")
  27625. },
  27626. {
  27627. name: "Showoff",
  27628. height: math.unit(175, "km")
  27629. },
  27630. ]
  27631. ))
  27632. characterMakers.push(() => makeCharacter(
  27633. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27634. {
  27635. front: {
  27636. height: math.unit(7, "feet"),
  27637. weight: math.unit(1000, "kg"),
  27638. name: "Front",
  27639. image: {
  27640. source: "./media/characters/edrax/front.svg",
  27641. extra: 2838 / 2550,
  27642. bottom: 130 / 2968
  27643. }
  27644. },
  27645. },
  27646. [
  27647. {
  27648. name: "Small",
  27649. height: math.unit(7, "feet")
  27650. },
  27651. {
  27652. name: "Normal",
  27653. height: math.unit(1500, "meters")
  27654. },
  27655. {
  27656. name: "Mega",
  27657. height: math.unit(12000000, "km"),
  27658. default: true
  27659. },
  27660. {
  27661. name: "Megamacro",
  27662. height: math.unit(10600000, "lightyears")
  27663. },
  27664. {
  27665. name: "Hypermacro",
  27666. height: math.unit(256, "yottameters")
  27667. },
  27668. ]
  27669. ))
  27670. characterMakers.push(() => makeCharacter(
  27671. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27672. {
  27673. front: {
  27674. height: math.unit(10, "feet"),
  27675. weight: math.unit(750, "lb"),
  27676. name: "Front",
  27677. image: {
  27678. source: "./media/characters/clove/front.svg",
  27679. extra: 2031 / 1860,
  27680. bottom: 47.8 / 2080
  27681. }
  27682. },
  27683. back: {
  27684. height: math.unit(10, "feet"),
  27685. weight: math.unit(750, "lb"),
  27686. name: "Back",
  27687. image: {
  27688. source: "./media/characters/clove/back.svg",
  27689. extra: 2025 / 1859,
  27690. bottom: 46 / 2071
  27691. }
  27692. },
  27693. },
  27694. [
  27695. {
  27696. name: "Normal",
  27697. height: math.unit(10, "feet"),
  27698. default: true
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27704. {
  27705. front: {
  27706. height: math.unit(4, "feet"),
  27707. weight: math.unit(50, "lb"),
  27708. name: "Front",
  27709. image: {
  27710. source: "./media/characters/alex-rabbit/front.svg",
  27711. extra: 507 / 458,
  27712. bottom: 18.5 / 527
  27713. }
  27714. },
  27715. back: {
  27716. height: math.unit(4, "feet"),
  27717. weight: math.unit(50, "lb"),
  27718. name: "Back",
  27719. image: {
  27720. source: "./media/characters/alex-rabbit/back.svg",
  27721. extra: 502 / 460,
  27722. bottom: 18.9 / 521
  27723. }
  27724. },
  27725. },
  27726. [
  27727. {
  27728. name: "Normal",
  27729. height: math.unit(4, "feet"),
  27730. default: true
  27731. },
  27732. ]
  27733. ))
  27734. characterMakers.push(() => makeCharacter(
  27735. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27736. {
  27737. front: {
  27738. height: math.unit(1 + 3 / 12, "feet"),
  27739. weight: math.unit(80, "lb"),
  27740. name: "Front",
  27741. image: {
  27742. source: "./media/characters/zander-rose/front.svg",
  27743. extra: 916 / 797,
  27744. bottom: 17 / 933
  27745. }
  27746. },
  27747. back: {
  27748. height: math.unit(1 + 3 / 12, "feet"),
  27749. weight: math.unit(80, "lb"),
  27750. name: "Back",
  27751. image: {
  27752. source: "./media/characters/zander-rose/back.svg",
  27753. extra: 903 / 779,
  27754. bottom: 31 / 934
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Normal",
  27761. height: math.unit(1 + 3 / 12, "feet"),
  27762. default: true
  27763. },
  27764. ]
  27765. ))
  27766. characterMakers.push(() => makeCharacter(
  27767. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27768. {
  27769. anthro: {
  27770. height: math.unit(6, "feet"),
  27771. weight: math.unit(150, "lb"),
  27772. name: "Anthro",
  27773. image: {
  27774. source: "./media/characters/razz/anthro.svg",
  27775. extra: 1437 / 1343,
  27776. bottom: 48 / 1485
  27777. }
  27778. },
  27779. feral: {
  27780. height: math.unit(6, "feet"),
  27781. weight: math.unit(150, "lb"),
  27782. name: "Feral",
  27783. image: {
  27784. source: "./media/characters/razz/feral.svg",
  27785. extra: 2569 / 1385,
  27786. bottom: 95 / 2664
  27787. }
  27788. },
  27789. },
  27790. [
  27791. {
  27792. name: "Normal",
  27793. height: math.unit(6, "feet"),
  27794. default: true
  27795. },
  27796. ]
  27797. ))
  27798. characterMakers.push(() => makeCharacter(
  27799. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27800. {
  27801. front: {
  27802. height: math.unit(9 + 4 / 12, "feet"),
  27803. weight: math.unit(500, "lb"),
  27804. name: "Front",
  27805. image: {
  27806. source: "./media/characters/morrigan/front.svg",
  27807. extra: 2707 / 2579,
  27808. bottom: 156 / 2863
  27809. }
  27810. },
  27811. },
  27812. [
  27813. {
  27814. name: "Normal",
  27815. height: math.unit(9 + 4 / 12, "feet"),
  27816. default: true
  27817. },
  27818. ]
  27819. ))
  27820. characterMakers.push(() => makeCharacter(
  27821. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27822. {
  27823. front: {
  27824. height: math.unit(5, "stories"),
  27825. weight: math.unit(4000, "lb"),
  27826. name: "Front",
  27827. image: {
  27828. source: "./media/characters/jenene/front.svg",
  27829. extra: 1780 / 1710,
  27830. bottom: 57 / 1837
  27831. }
  27832. },
  27833. },
  27834. [
  27835. {
  27836. name: "Normal",
  27837. height: math.unit(5, "stories"),
  27838. default: true
  27839. },
  27840. ]
  27841. ))
  27842. characterMakers.push(() => makeCharacter(
  27843. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27844. {
  27845. taurSfw: {
  27846. height: math.unit(10, "meters"),
  27847. weight: math.unit(17500, "kg"),
  27848. name: "Taur",
  27849. image: {
  27850. source: "./media/characters/faey/taur-sfw.svg",
  27851. extra: 1200 / 968,
  27852. bottom: 41 / 1241
  27853. }
  27854. },
  27855. chestmaw: {
  27856. height: math.unit(2.01, "meters"),
  27857. name: "Chestmaw",
  27858. image: {
  27859. source: "./media/characters/faey/chestmaw.svg"
  27860. }
  27861. },
  27862. foot: {
  27863. height: math.unit(2.43, "meters"),
  27864. name: "Foot",
  27865. image: {
  27866. source: "./media/characters/faey/foot.svg"
  27867. }
  27868. },
  27869. jaws: {
  27870. height: math.unit(1.66, "meters"),
  27871. name: "Jaws",
  27872. image: {
  27873. source: "./media/characters/faey/jaws.svg"
  27874. }
  27875. },
  27876. tongues: {
  27877. height: math.unit(2.01, "meters"),
  27878. name: "Tongues",
  27879. image: {
  27880. source: "./media/characters/faey/tongues.svg"
  27881. }
  27882. },
  27883. },
  27884. [
  27885. {
  27886. name: "Small",
  27887. height: math.unit(10, "meters"),
  27888. default: true
  27889. },
  27890. {
  27891. name: "Big",
  27892. height: math.unit(500000, "km")
  27893. },
  27894. ]
  27895. ))
  27896. characterMakers.push(() => makeCharacter(
  27897. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27898. {
  27899. front: {
  27900. height: math.unit(7, "feet"),
  27901. weight: math.unit(275, "lb"),
  27902. name: "Front",
  27903. image: {
  27904. source: "./media/characters/roku/front.svg",
  27905. extra: 903 / 878,
  27906. bottom: 37 / 940
  27907. }
  27908. },
  27909. },
  27910. [
  27911. {
  27912. name: "Normal",
  27913. height: math.unit(7, "feet"),
  27914. default: true
  27915. },
  27916. {
  27917. name: "Macro",
  27918. height: math.unit(500, "feet")
  27919. },
  27920. {
  27921. name: "Megamacro",
  27922. height: math.unit(200, "miles")
  27923. },
  27924. ]
  27925. ))
  27926. characterMakers.push(() => makeCharacter(
  27927. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27928. {
  27929. front: {
  27930. height: math.unit(6 + 2 / 12, "feet"),
  27931. weight: math.unit(150, "lb"),
  27932. name: "Front",
  27933. image: {
  27934. source: "./media/characters/lira/front.svg",
  27935. extra: 1727 / 1605,
  27936. bottom: 26 / 1753
  27937. }
  27938. },
  27939. back: {
  27940. height: math.unit(6 + 2 / 12, "feet"),
  27941. weight: math.unit(150, "lb"),
  27942. name: "Back",
  27943. image: {
  27944. source: "./media/characters/lira/back.svg",
  27945. extra: 1713/1621,
  27946. bottom: 20/1733
  27947. }
  27948. },
  27949. hand: {
  27950. height: math.unit(0.75, "feet"),
  27951. name: "Hand",
  27952. image: {
  27953. source: "./media/characters/lira/hand.svg"
  27954. }
  27955. },
  27956. maw: {
  27957. height: math.unit(0.65, "feet"),
  27958. name: "Maw",
  27959. image: {
  27960. source: "./media/characters/lira/maw.svg"
  27961. }
  27962. },
  27963. pawDigi: {
  27964. height: math.unit(1.6, "feet"),
  27965. name: "Paw Digi",
  27966. image: {
  27967. source: "./media/characters/lira/paw-digi.svg"
  27968. }
  27969. },
  27970. pawPlanti: {
  27971. height: math.unit(1.4, "feet"),
  27972. name: "Paw Planti",
  27973. image: {
  27974. source: "./media/characters/lira/paw-planti.svg"
  27975. }
  27976. },
  27977. },
  27978. [
  27979. {
  27980. name: "Normal",
  27981. height: math.unit(6 + 2 / 12, "feet"),
  27982. default: true
  27983. },
  27984. {
  27985. name: "Macro",
  27986. height: math.unit(100, "feet")
  27987. },
  27988. {
  27989. name: "Macro²",
  27990. height: math.unit(1600, "feet")
  27991. },
  27992. {
  27993. name: "Planetary",
  27994. height: math.unit(20, "earths")
  27995. },
  27996. ]
  27997. ))
  27998. characterMakers.push(() => makeCharacter(
  27999. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28000. {
  28001. front: {
  28002. height: math.unit(6, "feet"),
  28003. weight: math.unit(150, "lb"),
  28004. name: "Front",
  28005. image: {
  28006. source: "./media/characters/hadjet/front.svg",
  28007. extra: 1480 / 1346,
  28008. bottom: 26 / 1506
  28009. }
  28010. },
  28011. frontNsfw: {
  28012. height: math.unit(6, "feet"),
  28013. weight: math.unit(150, "lb"),
  28014. name: "Front (NSFW)",
  28015. image: {
  28016. source: "./media/characters/hadjet/front-nsfw.svg",
  28017. extra: 1440 / 1358,
  28018. bottom: 52 / 1492
  28019. }
  28020. },
  28021. },
  28022. [
  28023. {
  28024. name: "Macro",
  28025. height: math.unit(10, "stories"),
  28026. default: true
  28027. },
  28028. {
  28029. name: "Megamacro",
  28030. height: math.unit(1.5, "miles")
  28031. },
  28032. {
  28033. name: "Megamacro+",
  28034. height: math.unit(5, "miles")
  28035. },
  28036. ]
  28037. ))
  28038. characterMakers.push(() => makeCharacter(
  28039. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28040. {
  28041. side: {
  28042. height: math.unit(106, "feet"),
  28043. weight: math.unit(500, "tonnes"),
  28044. name: "Side",
  28045. image: {
  28046. source: "./media/characters/kodran/side.svg",
  28047. extra: 553 / 480,
  28048. bottom: 33 / 586
  28049. }
  28050. },
  28051. front: {
  28052. height: math.unit(132, "feet"),
  28053. weight: math.unit(500, "tonnes"),
  28054. name: "Front",
  28055. image: {
  28056. source: "./media/characters/kodran/front.svg",
  28057. extra: 667 / 643,
  28058. bottom: 42 / 709
  28059. }
  28060. },
  28061. flying: {
  28062. height: math.unit(350, "feet"),
  28063. weight: math.unit(500, "tonnes"),
  28064. name: "Flying",
  28065. image: {
  28066. source: "./media/characters/kodran/flying.svg"
  28067. }
  28068. },
  28069. foot: {
  28070. height: math.unit(33, "feet"),
  28071. name: "Foot",
  28072. image: {
  28073. source: "./media/characters/kodran/foot.svg"
  28074. }
  28075. },
  28076. footFront: {
  28077. height: math.unit(19, "feet"),
  28078. name: "Foot (Front)",
  28079. image: {
  28080. source: "./media/characters/kodran/foot-front.svg",
  28081. extra: 261 / 261,
  28082. bottom: 91 / 352
  28083. }
  28084. },
  28085. headFront: {
  28086. height: math.unit(53, "feet"),
  28087. name: "Head (Front)",
  28088. image: {
  28089. source: "./media/characters/kodran/head-front.svg"
  28090. }
  28091. },
  28092. headSide: {
  28093. height: math.unit(65, "feet"),
  28094. name: "Head (Side)",
  28095. image: {
  28096. source: "./media/characters/kodran/head-side.svg"
  28097. }
  28098. },
  28099. throat: {
  28100. height: math.unit(79, "feet"),
  28101. name: "Throat",
  28102. image: {
  28103. source: "./media/characters/kodran/throat.svg"
  28104. }
  28105. },
  28106. },
  28107. [
  28108. {
  28109. name: "Large",
  28110. height: math.unit(106, "feet"),
  28111. default: true
  28112. },
  28113. ]
  28114. ))
  28115. characterMakers.push(() => makeCharacter(
  28116. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28117. {
  28118. side: {
  28119. height: math.unit(11, "feet"),
  28120. weight: math.unit(150, "lb"),
  28121. name: "Side",
  28122. image: {
  28123. source: "./media/characters/pyxaron/side.svg",
  28124. extra: 305 / 195,
  28125. bottom: 17 / 322
  28126. }
  28127. },
  28128. },
  28129. [
  28130. {
  28131. name: "Normal",
  28132. height: math.unit(11, "feet"),
  28133. default: true
  28134. },
  28135. ]
  28136. ))
  28137. characterMakers.push(() => makeCharacter(
  28138. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28139. {
  28140. front: {
  28141. height: math.unit(6, "feet"),
  28142. weight: math.unit(150, "lb"),
  28143. name: "Front",
  28144. image: {
  28145. source: "./media/characters/meep/front.svg",
  28146. extra: 88 / 80,
  28147. bottom: 6 / 94
  28148. }
  28149. },
  28150. },
  28151. [
  28152. {
  28153. name: "Fun Sized",
  28154. height: math.unit(2, "inches"),
  28155. default: true
  28156. },
  28157. {
  28158. name: "Friend Sized",
  28159. height: math.unit(8, "inches")
  28160. },
  28161. ]
  28162. ))
  28163. characterMakers.push(() => makeCharacter(
  28164. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28165. {
  28166. front: {
  28167. height: math.unit(15, "feet"),
  28168. weight: math.unit(2500, "lb"),
  28169. name: "Front",
  28170. image: {
  28171. source: "./media/characters/holly-rabbit/front.svg",
  28172. extra: 1433 / 1233,
  28173. bottom: 125 / 1558
  28174. }
  28175. },
  28176. dick: {
  28177. height: math.unit(4.6, "feet"),
  28178. name: "Dick",
  28179. image: {
  28180. source: "./media/characters/holly-rabbit/dick.svg"
  28181. }
  28182. },
  28183. },
  28184. [
  28185. {
  28186. name: "Normal",
  28187. height: math.unit(15, "feet"),
  28188. default: true
  28189. },
  28190. {
  28191. name: "Macro",
  28192. height: math.unit(250, "feet")
  28193. },
  28194. {
  28195. name: "Macro+",
  28196. height: math.unit(2500, "feet")
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28202. {
  28203. front: {
  28204. height: math.unit(3.02, "meters"),
  28205. weight: math.unit(500, "kg"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/drena/front.svg",
  28209. extra: 282 / 243,
  28210. bottom: 8 / 290
  28211. }
  28212. },
  28213. side: {
  28214. height: math.unit(3.02, "meters"),
  28215. weight: math.unit(500, "kg"),
  28216. name: "Side",
  28217. image: {
  28218. source: "./media/characters/drena/side.svg",
  28219. extra: 280 / 245,
  28220. bottom: 10 / 290
  28221. }
  28222. },
  28223. back: {
  28224. height: math.unit(3.02, "meters"),
  28225. weight: math.unit(500, "kg"),
  28226. name: "Back",
  28227. image: {
  28228. source: "./media/characters/drena/back.svg",
  28229. extra: 278 / 243,
  28230. bottom: 2 / 280
  28231. }
  28232. },
  28233. foot: {
  28234. height: math.unit(0.75, "meters"),
  28235. name: "Foot",
  28236. image: {
  28237. source: "./media/characters/drena/foot.svg"
  28238. }
  28239. },
  28240. maw: {
  28241. height: math.unit(0.82, "meters"),
  28242. name: "Maw",
  28243. image: {
  28244. source: "./media/characters/drena/maw.svg"
  28245. }
  28246. },
  28247. rump: {
  28248. height: math.unit(0.93, "meters"),
  28249. name: "Rump",
  28250. image: {
  28251. source: "./media/characters/drena/rump.svg"
  28252. }
  28253. },
  28254. },
  28255. [
  28256. {
  28257. name: "Normal",
  28258. height: math.unit(3.02, "meters"),
  28259. default: true
  28260. },
  28261. ]
  28262. ))
  28263. characterMakers.push(() => makeCharacter(
  28264. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28265. {
  28266. front: {
  28267. height: math.unit(6 + 4 / 12, "feet"),
  28268. weight: math.unit(250, "lb"),
  28269. name: "Front",
  28270. image: {
  28271. source: "./media/characters/remmyzilla/front.svg",
  28272. extra: 4033 / 3588,
  28273. bottom: 123 / 4156
  28274. }
  28275. },
  28276. back: {
  28277. height: math.unit(6 + 4 / 12, "feet"),
  28278. weight: math.unit(250, "lb"),
  28279. name: "Back",
  28280. image: {
  28281. source: "./media/characters/remmyzilla/back.svg",
  28282. extra: 2687 / 2555,
  28283. bottom: 48 / 2735
  28284. }
  28285. },
  28286. paw: {
  28287. height: math.unit(1.73, "feet"),
  28288. name: "Paw",
  28289. image: {
  28290. source: "./media/characters/remmyzilla/paw.svg"
  28291. }
  28292. },
  28293. maw: {
  28294. height: math.unit(1.73, "feet"),
  28295. name: "Maw",
  28296. image: {
  28297. source: "./media/characters/remmyzilla/maw.svg"
  28298. }
  28299. },
  28300. },
  28301. [
  28302. {
  28303. name: "Normal",
  28304. height: math.unit(6 + 4 / 12, "feet")
  28305. },
  28306. {
  28307. name: "Minimacro",
  28308. height: math.unit(12 + 8 / 12, "feet")
  28309. },
  28310. {
  28311. name: "Normal",
  28312. height: math.unit(640, "feet"),
  28313. default: true
  28314. },
  28315. {
  28316. name: "Megamacro",
  28317. height: math.unit(6400, "feet")
  28318. },
  28319. {
  28320. name: "Gigamacro",
  28321. height: math.unit(64000, "miles")
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28327. {
  28328. front: {
  28329. height: math.unit(2.5, "meters"),
  28330. weight: math.unit(300, "lb"),
  28331. name: "Front",
  28332. image: {
  28333. source: "./media/characters/lawrence/front.svg",
  28334. extra: 357 / 335,
  28335. bottom: 30 / 387
  28336. }
  28337. },
  28338. back: {
  28339. height: math.unit(2.5, "meters"),
  28340. weight: math.unit(300, "lb"),
  28341. name: "Back",
  28342. image: {
  28343. source: "./media/characters/lawrence/back.svg",
  28344. extra: 357 / 338,
  28345. bottom: 16 / 373
  28346. }
  28347. },
  28348. head: {
  28349. height: math.unit(0.9, "meter"),
  28350. name: "Head",
  28351. image: {
  28352. source: "./media/characters/lawrence/head.svg"
  28353. }
  28354. },
  28355. maw: {
  28356. height: math.unit(0.7, "meter"),
  28357. name: "Maw",
  28358. image: {
  28359. source: "./media/characters/lawrence/maw.svg"
  28360. }
  28361. },
  28362. footBottom: {
  28363. height: math.unit(0.5, "meter"),
  28364. name: "Foot (Bottom)",
  28365. image: {
  28366. source: "./media/characters/lawrence/foot-bottom.svg"
  28367. }
  28368. },
  28369. footTop: {
  28370. height: math.unit(0.5, "meter"),
  28371. name: "Foot (Top)",
  28372. image: {
  28373. source: "./media/characters/lawrence/foot-top.svg"
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Normal",
  28380. height: math.unit(2.5, "meters"),
  28381. default: true
  28382. },
  28383. {
  28384. name: "Macro",
  28385. height: math.unit(95, "meters")
  28386. },
  28387. {
  28388. name: "Megamacro",
  28389. height: math.unit(150, "km")
  28390. },
  28391. ]
  28392. ))
  28393. characterMakers.push(() => makeCharacter(
  28394. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28395. {
  28396. front: {
  28397. height: math.unit(4.2, "meters"),
  28398. name: "Front",
  28399. image: {
  28400. source: "./media/characters/sydney/front.svg",
  28401. extra: 1323 / 1277,
  28402. bottom: 111 / 1434
  28403. }
  28404. },
  28405. },
  28406. [
  28407. {
  28408. name: "Normal",
  28409. height: math.unit(4.2, "meters"),
  28410. default: true
  28411. },
  28412. ]
  28413. ))
  28414. characterMakers.push(() => makeCharacter(
  28415. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28416. {
  28417. back: {
  28418. height: math.unit(201, "feet"),
  28419. name: "Back",
  28420. image: {
  28421. source: "./media/characters/jessica/back.svg",
  28422. extra: 273 / 259,
  28423. bottom: 7 / 280
  28424. }
  28425. },
  28426. },
  28427. [
  28428. {
  28429. name: "Normal",
  28430. height: math.unit(201, "feet"),
  28431. default: true
  28432. },
  28433. {
  28434. name: "Megamacro",
  28435. height: math.unit(8, "miles")
  28436. },
  28437. ]
  28438. ))
  28439. characterMakers.push(() => makeCharacter(
  28440. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28441. {
  28442. side: {
  28443. height: math.unit(320, "cm"),
  28444. name: "Side",
  28445. image: {
  28446. source: "./media/characters/victoria/side.svg",
  28447. extra: 778 / 346,
  28448. bottom: 56 / 834
  28449. }
  28450. },
  28451. maw: {
  28452. height: math.unit(5.9, "feet"),
  28453. name: "Maw",
  28454. image: {
  28455. source: "./media/characters/victoria/maw.svg"
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(320, "cm"),
  28463. default: true
  28464. },
  28465. ]
  28466. ))
  28467. characterMakers.push(() => makeCharacter(
  28468. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28469. {
  28470. front: {
  28471. height: math.unit(5 + 6 / 12, "feet"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/cat/front.svg",
  28475. extra: 1449/1295,
  28476. bottom: 34/1483
  28477. }
  28478. },
  28479. back: {
  28480. height: math.unit(5 + 6 / 12, "feet"),
  28481. name: "Back",
  28482. image: {
  28483. source: "./media/characters/cat/back.svg",
  28484. extra: 1466/1301,
  28485. bottom: 19/1485
  28486. }
  28487. },
  28488. taur: {
  28489. height: math.unit(7, "feet"),
  28490. name: "Taur",
  28491. image: {
  28492. source: "./media/characters/cat/taur.svg",
  28493. extra: 1389/1233,
  28494. bottom: 83/1472
  28495. }
  28496. },
  28497. lucarioFront: {
  28498. height: math.unit(4, "feet"),
  28499. name: "Lucario (Front)",
  28500. image: {
  28501. source: "./media/characters/cat/lucario-front.svg",
  28502. extra: 1149/1019,
  28503. bottom: 84/1233
  28504. }
  28505. },
  28506. lucarioBack: {
  28507. height: math.unit(4, "feet"),
  28508. name: "Lucario (Back)",
  28509. image: {
  28510. source: "./media/characters/cat/lucario-back.svg",
  28511. extra: 1190/1059,
  28512. bottom: 33/1223
  28513. }
  28514. },
  28515. megaLucario: {
  28516. height: math.unit(4, "feet"),
  28517. name: "Mega Lucario",
  28518. image: {
  28519. source: "./media/characters/cat/mega-lucario.svg",
  28520. extra: 1515 / 1319,
  28521. bottom: 63 / 1578
  28522. }
  28523. },
  28524. nickit: {
  28525. height: math.unit(2, "feet"),
  28526. name: "Nickit",
  28527. image: {
  28528. source: "./media/characters/cat/nickit.svg",
  28529. extra: 1980 / 1585,
  28530. bottom: 102 / 2082
  28531. }
  28532. },
  28533. lopunnyFront: {
  28534. height: math.unit(5, "feet"),
  28535. name: "Lopunny (Front)",
  28536. image: {
  28537. source: "./media/characters/cat/lopunny-front.svg",
  28538. extra: 1782 / 1469,
  28539. bottom: 38 / 1820
  28540. }
  28541. },
  28542. lopunnyBack: {
  28543. height: math.unit(5, "feet"),
  28544. name: "Lopunny (Back)",
  28545. image: {
  28546. source: "./media/characters/cat/lopunny-back.svg",
  28547. extra: 1660 / 1490,
  28548. bottom: 25 / 1685
  28549. }
  28550. },
  28551. },
  28552. [
  28553. {
  28554. name: "Really small",
  28555. height: math.unit(1, "nm")
  28556. },
  28557. {
  28558. name: "Micro",
  28559. height: math.unit(5, "inches")
  28560. },
  28561. {
  28562. name: "Normal",
  28563. height: math.unit(5 + 6 / 12, "feet"),
  28564. default: true
  28565. },
  28566. {
  28567. name: "Macro",
  28568. height: math.unit(50, "feet")
  28569. },
  28570. {
  28571. name: "Macro+",
  28572. height: math.unit(150, "feet")
  28573. },
  28574. {
  28575. name: "Megamacro",
  28576. height: math.unit(100, "miles")
  28577. },
  28578. ]
  28579. ))
  28580. characterMakers.push(() => makeCharacter(
  28581. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28582. {
  28583. front: {
  28584. height: math.unit(63.4, "meters"),
  28585. weight: math.unit(3.28349e+6, "kilograms"),
  28586. name: "Front",
  28587. image: {
  28588. source: "./media/characters/kirina-violet/front.svg",
  28589. extra: 2812 / 2725,
  28590. bottom: 0 / 2812
  28591. }
  28592. },
  28593. back: {
  28594. height: math.unit(63.4, "meters"),
  28595. weight: math.unit(3.28349e+6, "kilograms"),
  28596. name: "Back",
  28597. image: {
  28598. source: "./media/characters/kirina-violet/back.svg",
  28599. extra: 2812 / 2725,
  28600. bottom: 0 / 2812
  28601. }
  28602. },
  28603. mouth: {
  28604. height: math.unit(4.35, "meters"),
  28605. name: "Mouth",
  28606. image: {
  28607. source: "./media/characters/kirina-violet/mouth.svg"
  28608. }
  28609. },
  28610. paw: {
  28611. height: math.unit(5.6, "meters"),
  28612. name: "Paw",
  28613. image: {
  28614. source: "./media/characters/kirina-violet/paw.svg"
  28615. }
  28616. },
  28617. tail: {
  28618. height: math.unit(18, "meters"),
  28619. name: "Tail",
  28620. image: {
  28621. source: "./media/characters/kirina-violet/tail.svg"
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Macro",
  28628. height: math.unit(63.4, "meters"),
  28629. default: true
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(75, "feet"),
  28638. name: "Front",
  28639. image: {
  28640. source: "./media/characters/cat-gigachu/front.svg",
  28641. extra: 1239/1027,
  28642. bottom: 32/1271
  28643. }
  28644. },
  28645. back: {
  28646. height: math.unit(75, "feet"),
  28647. name: "Back",
  28648. image: {
  28649. source: "./media/characters/cat-gigachu/back.svg",
  28650. extra: 1229/1030,
  28651. bottom: 9/1238
  28652. }
  28653. },
  28654. },
  28655. [
  28656. {
  28657. name: "Dynamax",
  28658. height: math.unit(75, "feet"),
  28659. default: true
  28660. },
  28661. ]
  28662. ))
  28663. characterMakers.push(() => makeCharacter(
  28664. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28665. {
  28666. front: {
  28667. height: math.unit(6, "feet"),
  28668. weight: math.unit(150, "lb"),
  28669. name: "Front",
  28670. image: {
  28671. source: "./media/characters/sfaiyan/front.svg",
  28672. extra: 999 / 978,
  28673. bottom: 5 / 1004
  28674. }
  28675. },
  28676. },
  28677. [
  28678. {
  28679. name: "Normal",
  28680. height: math.unit(1.82, "meters")
  28681. },
  28682. {
  28683. name: "Giant",
  28684. height: math.unit(2.27, "km"),
  28685. default: true
  28686. },
  28687. ]
  28688. ))
  28689. characterMakers.push(() => makeCharacter(
  28690. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28691. {
  28692. front: {
  28693. height: math.unit(179, "cm"),
  28694. weight: math.unit(100, "kg"),
  28695. name: "Front",
  28696. image: {
  28697. source: "./media/characters/raunehkeli/front.svg",
  28698. extra: 1934 / 1926,
  28699. bottom: 0 / 1934
  28700. }
  28701. },
  28702. },
  28703. [
  28704. {
  28705. name: "Normal",
  28706. height: math.unit(179, "cm")
  28707. },
  28708. {
  28709. name: "Maximum",
  28710. height: math.unit(575, "meters"),
  28711. default: true
  28712. },
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(6, "feet"),
  28720. weight: math.unit(150, "lb"),
  28721. name: "Front",
  28722. image: {
  28723. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28724. extra: 2625 / 2518,
  28725. bottom: 60 / 2685
  28726. }
  28727. },
  28728. },
  28729. [
  28730. {
  28731. name: "Normal",
  28732. height: math.unit(6 + 2 / 12, "feet")
  28733. },
  28734. {
  28735. name: "Macro",
  28736. height: math.unit(1180, "feet"),
  28737. default: true
  28738. },
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28743. {
  28744. front: {
  28745. height: math.unit(5 + 6 / 12, "feet"),
  28746. weight: math.unit(108, "lb"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/lilith-zott/front.svg",
  28750. extra: 2510 / 2238,
  28751. bottom: 100 / 2610
  28752. }
  28753. },
  28754. frontDressed: {
  28755. height: math.unit(5 + 6 / 12, "feet"),
  28756. weight: math.unit(108, "lb"),
  28757. name: "Front (Dressed)",
  28758. image: {
  28759. source: "./media/characters/lilith-zott/front-dressed.svg",
  28760. extra: 2510 / 2238,
  28761. bottom: 100 / 2610
  28762. }
  28763. },
  28764. },
  28765. [
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(5 + 6 / 12, "feet")
  28769. },
  28770. {
  28771. name: "Macro",
  28772. height: math.unit(1030, "feet"),
  28773. default: true
  28774. },
  28775. ]
  28776. ))
  28777. characterMakers.push(() => makeCharacter(
  28778. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28779. {
  28780. front: {
  28781. height: math.unit(6, "feet"),
  28782. weight: math.unit(150, "lb"),
  28783. name: "Front",
  28784. image: {
  28785. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28786. extra: 2567 / 2435,
  28787. bottom: 39 / 2606
  28788. }
  28789. },
  28790. frontSuper: {
  28791. height: math.unit(6, "feet"),
  28792. name: "Front (Super)",
  28793. image: {
  28794. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28795. extra: 2567 / 2435,
  28796. bottom: 39 / 2606
  28797. }
  28798. },
  28799. },
  28800. [
  28801. {
  28802. name: "Normal",
  28803. height: math.unit(5 + 10 / 12, "feet")
  28804. },
  28805. {
  28806. name: "Macro",
  28807. height: math.unit(1100, "feet"),
  28808. default: true
  28809. },
  28810. ]
  28811. ))
  28812. characterMakers.push(() => makeCharacter(
  28813. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28814. {
  28815. front: {
  28816. height: math.unit(100, "miles"),
  28817. name: "Front",
  28818. image: {
  28819. source: "./media/characters/sona/front.svg",
  28820. extra: 2433 / 2201,
  28821. bottom: 53 / 2486
  28822. }
  28823. },
  28824. foot: {
  28825. height: math.unit(16.1, "miles"),
  28826. name: "Foot",
  28827. image: {
  28828. source: "./media/characters/sona/foot.svg"
  28829. }
  28830. },
  28831. },
  28832. [
  28833. {
  28834. name: "Macro",
  28835. height: math.unit(100, "miles"),
  28836. default: true
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28842. {
  28843. front: {
  28844. height: math.unit(6, "feet"),
  28845. weight: math.unit(150, "lb"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/bailey/front.svg",
  28849. extra: 1778 / 1724,
  28850. bottom: 30 / 1808
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Micro",
  28857. height: math.unit(4, "inches")
  28858. },
  28859. {
  28860. name: "Normal",
  28861. height: math.unit(5 + 5 / 12, "feet"),
  28862. default: true
  28863. },
  28864. {
  28865. name: "Macro",
  28866. height: math.unit(250, "feet")
  28867. },
  28868. {
  28869. name: "Megamacro",
  28870. height: math.unit(100, "miles")
  28871. },
  28872. ]
  28873. ))
  28874. characterMakers.push(() => makeCharacter(
  28875. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28876. {
  28877. front: {
  28878. height: math.unit(5 + 2 / 12, "feet"),
  28879. weight: math.unit(120, "lb"),
  28880. name: "Front",
  28881. image: {
  28882. source: "./media/characters/snaps/front.svg",
  28883. extra: 2370 / 2177,
  28884. bottom: 48 / 2418
  28885. }
  28886. },
  28887. back: {
  28888. height: math.unit(5 + 2 / 12, "feet"),
  28889. weight: math.unit(120, "lb"),
  28890. name: "Back",
  28891. image: {
  28892. source: "./media/characters/snaps/back.svg",
  28893. extra: 2408 / 2258,
  28894. bottom: 15 / 2423
  28895. }
  28896. },
  28897. },
  28898. [
  28899. {
  28900. name: "Micro",
  28901. height: math.unit(9, "inches")
  28902. },
  28903. {
  28904. name: "Normal",
  28905. height: math.unit(5 + 2 / 12, "feet"),
  28906. default: true
  28907. },
  28908. {
  28909. name: "Mini Macro",
  28910. height: math.unit(10, "feet")
  28911. },
  28912. ]
  28913. ))
  28914. characterMakers.push(() => makeCharacter(
  28915. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28916. {
  28917. front: {
  28918. height: math.unit(1.8, "meters"),
  28919. weight: math.unit(85, "kg"),
  28920. name: "Front",
  28921. image: {
  28922. source: "./media/characters/azteck/front.svg",
  28923. extra: 2815 / 2625,
  28924. bottom: 89 / 2904
  28925. }
  28926. },
  28927. back: {
  28928. height: math.unit(1.8, "meters"),
  28929. weight: math.unit(85, "kg"),
  28930. name: "Back",
  28931. image: {
  28932. source: "./media/characters/azteck/back.svg",
  28933. extra: 2856 / 2648,
  28934. bottom: 85 / 2941
  28935. }
  28936. },
  28937. frontDressed: {
  28938. height: math.unit(1.8, "meters"),
  28939. weight: math.unit(85, "kg"),
  28940. name: "Front (Dressed)",
  28941. image: {
  28942. source: "./media/characters/azteck/front-dressed.svg",
  28943. extra: 2147 / 2003,
  28944. bottom: 68 / 2215
  28945. }
  28946. },
  28947. head: {
  28948. height: math.unit(0.47, "meters"),
  28949. weight: math.unit(85, "kg"),
  28950. name: "Head",
  28951. image: {
  28952. source: "./media/characters/azteck/head.svg"
  28953. }
  28954. },
  28955. },
  28956. [
  28957. {
  28958. name: "Bite sized",
  28959. height: math.unit(16, "cm")
  28960. },
  28961. {
  28962. name: "Normal",
  28963. height: math.unit(1.8, "meters"),
  28964. default: true
  28965. },
  28966. ]
  28967. ))
  28968. characterMakers.push(() => makeCharacter(
  28969. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28970. {
  28971. front: {
  28972. height: math.unit(6, "feet"),
  28973. weight: math.unit(150, "lb"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/pidge/front.svg",
  28977. extra: 620 / 588,
  28978. bottom: 9 / 629
  28979. }
  28980. },
  28981. back: {
  28982. height: math.unit(6, "feet"),
  28983. weight: math.unit(150, "lb"),
  28984. name: "Back",
  28985. image: {
  28986. source: "./media/characters/pidge/back.svg",
  28987. extra: 620 / 588,
  28988. bottom: 9 / 629
  28989. }
  28990. },
  28991. },
  28992. [
  28993. {
  28994. name: "Macro",
  28995. height: math.unit(1, "mile"),
  28996. default: true
  28997. },
  28998. ]
  28999. ))
  29000. characterMakers.push(() => makeCharacter(
  29001. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29002. {
  29003. front: {
  29004. height: math.unit(6, "feet"),
  29005. weight: math.unit(150, "lb"),
  29006. name: "Front",
  29007. image: {
  29008. source: "./media/characters/en/front.svg",
  29009. extra: 1697 / 1563,
  29010. bottom: 103 / 1800
  29011. }
  29012. },
  29013. back: {
  29014. height: math.unit(6, "feet"),
  29015. weight: math.unit(150, "lb"),
  29016. name: "Back",
  29017. image: {
  29018. source: "./media/characters/en/back.svg",
  29019. extra: 1700 / 1570,
  29020. bottom: 51 / 1751
  29021. }
  29022. },
  29023. frontDressed: {
  29024. height: math.unit(6, "feet"),
  29025. weight: math.unit(150, "lb"),
  29026. name: "Front (Dressed)",
  29027. image: {
  29028. source: "./media/characters/en/front-dressed.svg",
  29029. extra: 1697 / 1563,
  29030. bottom: 103 / 1800
  29031. }
  29032. },
  29033. backDressed: {
  29034. height: math.unit(6, "feet"),
  29035. weight: math.unit(150, "lb"),
  29036. name: "Back (Dressed)",
  29037. image: {
  29038. source: "./media/characters/en/back-dressed.svg",
  29039. extra: 1700 / 1570,
  29040. bottom: 51 / 1751
  29041. }
  29042. },
  29043. },
  29044. [
  29045. {
  29046. name: "Macro",
  29047. height: math.unit(210, "feet"),
  29048. default: true
  29049. },
  29050. ]
  29051. ))
  29052. characterMakers.push(() => makeCharacter(
  29053. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29054. {
  29055. front: {
  29056. height: math.unit(6, "feet"),
  29057. weight: math.unit(150, "lb"),
  29058. name: "Front",
  29059. image: {
  29060. source: "./media/characters/haze-orris/front.svg",
  29061. extra: 3975 / 3525,
  29062. bottom: 137 / 4112
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Micro",
  29069. height: math.unit(150, "mm"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(6, "feet"),
  29079. weight: math.unit(150, "lb"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/casselene-yaro/front.svg",
  29083. extra: 4721 / 4541,
  29084. bottom: 82 / 4803
  29085. }
  29086. },
  29087. back: {
  29088. height: math.unit(6, "feet"),
  29089. weight: math.unit(150, "lb"),
  29090. name: "Back",
  29091. image: {
  29092. source: "./media/characters/casselene-yaro/back.svg",
  29093. extra: 4569 / 4377,
  29094. bottom: 69 / 4638
  29095. }
  29096. },
  29097. frontDressed: {
  29098. height: math.unit(6, "feet"),
  29099. weight: math.unit(150, "lb"),
  29100. name: "Front-dressed",
  29101. image: {
  29102. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29103. extra: 4721 / 4541,
  29104. bottom: 82 / 4803
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Macro",
  29111. height: math.unit(190, "feet"),
  29112. default: true
  29113. },
  29114. ]
  29115. ))
  29116. characterMakers.push(() => makeCharacter(
  29117. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29118. {
  29119. front: {
  29120. height: math.unit(6, "feet"),
  29121. weight: math.unit(150, "lb"),
  29122. name: "Front",
  29123. image: {
  29124. source: "./media/characters/myra-rue-delore/front.svg",
  29125. extra: 1340 / 1308,
  29126. bottom: 67 / 1407
  29127. }
  29128. },
  29129. back: {
  29130. height: math.unit(6, "feet"),
  29131. weight: math.unit(150, "lb"),
  29132. name: "Back",
  29133. image: {
  29134. source: "./media/characters/myra-rue-delore/back.svg",
  29135. extra: 1341 / 1310,
  29136. bottom: 40 / 1381
  29137. }
  29138. },
  29139. frontDressed: {
  29140. height: math.unit(6, "feet"),
  29141. weight: math.unit(150, "lb"),
  29142. name: "Front (Dressed)",
  29143. image: {
  29144. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29145. extra: 1340 / 1308,
  29146. bottom: 67 / 1407
  29147. }
  29148. },
  29149. },
  29150. [
  29151. {
  29152. name: "Macro",
  29153. height: math.unit(150, "feet"),
  29154. default: true
  29155. },
  29156. ]
  29157. ))
  29158. characterMakers.push(() => makeCharacter(
  29159. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29160. {
  29161. front: {
  29162. height: math.unit(10, "feet"),
  29163. weight: math.unit(15015, "lb"),
  29164. name: "Front",
  29165. image: {
  29166. source: "./media/characters/fem!plat/front.svg",
  29167. extra: 2799 / 2604,
  29168. bottom: 149 / 2948
  29169. }
  29170. },
  29171. },
  29172. [
  29173. {
  29174. name: "Normal",
  29175. height: math.unit(10, "feet"),
  29176. default: true
  29177. },
  29178. {
  29179. name: "Macro",
  29180. height: math.unit(100, "feet")
  29181. },
  29182. {
  29183. name: "Megamacro",
  29184. height: math.unit(1000, "feet")
  29185. },
  29186. ]
  29187. ))
  29188. characterMakers.push(() => makeCharacter(
  29189. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29190. {
  29191. front: {
  29192. height: math.unit(15 + 5 / 12, "feet"),
  29193. weight: math.unit(4600, "lb"),
  29194. name: "Front",
  29195. image: {
  29196. source: "./media/characters/neapolitan-ananassa/front.svg",
  29197. extra: 2903 / 2736,
  29198. bottom: 0 / 2903
  29199. }
  29200. },
  29201. side: {
  29202. height: math.unit(15 + 5 / 12, "feet"),
  29203. weight: math.unit(4600, "lb"),
  29204. name: "Side",
  29205. image: {
  29206. source: "./media/characters/neapolitan-ananassa/side.svg",
  29207. extra: 2925 / 2719,
  29208. bottom: 0 / 2925
  29209. }
  29210. },
  29211. back: {
  29212. height: math.unit(15 + 5 / 12, "feet"),
  29213. weight: math.unit(4600, "lb"),
  29214. name: "Back",
  29215. image: {
  29216. source: "./media/characters/neapolitan-ananassa/back.svg",
  29217. extra: 2903 / 2736,
  29218. bottom: 0 / 2903
  29219. }
  29220. },
  29221. },
  29222. [
  29223. {
  29224. name: "Normal",
  29225. height: math.unit(15 + 5 / 12, "feet"),
  29226. default: true
  29227. },
  29228. {
  29229. name: "Post-Millenium",
  29230. height: math.unit(35 + 5 / 12, "feet")
  29231. },
  29232. {
  29233. name: "Post-Era",
  29234. height: math.unit(450 + 5 / 12, "feet")
  29235. },
  29236. ]
  29237. ))
  29238. characterMakers.push(() => makeCharacter(
  29239. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29240. {
  29241. front: {
  29242. height: math.unit(300, "meters"),
  29243. weight: math.unit(125000, "tonnes"),
  29244. name: "Front",
  29245. image: {
  29246. source: "./media/characters/pazuzu/front.svg",
  29247. extra: 877 / 794,
  29248. bottom: 47 / 924
  29249. }
  29250. },
  29251. },
  29252. [
  29253. {
  29254. name: "Macro",
  29255. height: math.unit(300, "meters"),
  29256. default: true
  29257. },
  29258. ]
  29259. ))
  29260. characterMakers.push(() => makeCharacter(
  29261. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29262. {
  29263. side: {
  29264. height: math.unit(10 + 7 / 12, "feet"),
  29265. weight: math.unit(2.5, "tons"),
  29266. name: "Side",
  29267. image: {
  29268. source: "./media/characters/aasha/side.svg",
  29269. extra: 1345 / 1245,
  29270. bottom: 111 / 1456
  29271. }
  29272. },
  29273. back: {
  29274. height: math.unit(10 + 7 / 12, "feet"),
  29275. weight: math.unit(2.5, "tons"),
  29276. name: "Back",
  29277. image: {
  29278. source: "./media/characters/aasha/back.svg",
  29279. extra: 1133 / 1057,
  29280. bottom: 257 / 1390
  29281. }
  29282. },
  29283. },
  29284. [
  29285. {
  29286. name: "Normal",
  29287. height: math.unit(10 + 7 / 12, "feet"),
  29288. default: true
  29289. },
  29290. ]
  29291. ))
  29292. characterMakers.push(() => makeCharacter(
  29293. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29294. {
  29295. front: {
  29296. height: math.unit(6 + 3 / 12, "feet"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/nevan/front.svg",
  29300. extra: 704 / 704,
  29301. bottom: 28 / 732
  29302. }
  29303. },
  29304. back: {
  29305. height: math.unit(6 + 3 / 12, "feet"),
  29306. name: "Back",
  29307. image: {
  29308. source: "./media/characters/nevan/back.svg",
  29309. extra: 714 / 714,
  29310. bottom: 21 / 735
  29311. }
  29312. },
  29313. frontFlaccid: {
  29314. height: math.unit(6 + 3 / 12, "feet"),
  29315. name: "Front (Flaccid)",
  29316. image: {
  29317. source: "./media/characters/nevan/front-flaccid.svg",
  29318. extra: 704 / 704,
  29319. bottom: 28 / 732
  29320. }
  29321. },
  29322. frontErect: {
  29323. height: math.unit(6 + 3 / 12, "feet"),
  29324. name: "Front (Erect)",
  29325. image: {
  29326. source: "./media/characters/nevan/front-erect.svg",
  29327. extra: 704 / 704,
  29328. bottom: 28 / 732
  29329. }
  29330. },
  29331. backFlaccid: {
  29332. height: math.unit(6 + 3 / 12, "feet"),
  29333. name: "Back (Flaccid)",
  29334. image: {
  29335. source: "./media/characters/nevan/back-flaccid.svg",
  29336. extra: 714 / 714,
  29337. bottom: 21 / 735
  29338. }
  29339. },
  29340. },
  29341. [
  29342. {
  29343. name: "Normal",
  29344. height: math.unit(6 + 3 / 12, "feet"),
  29345. default: true
  29346. },
  29347. ]
  29348. ))
  29349. characterMakers.push(() => makeCharacter(
  29350. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29351. {
  29352. front: {
  29353. height: math.unit(4, "feet"),
  29354. name: "Front",
  29355. image: {
  29356. source: "./media/characters/arhan/front.svg",
  29357. extra: 3368 / 3133,
  29358. bottom: 0 / 3368
  29359. }
  29360. },
  29361. side: {
  29362. height: math.unit(4, "feet"),
  29363. name: "Side",
  29364. image: {
  29365. source: "./media/characters/arhan/side.svg",
  29366. extra: 3347 / 3105,
  29367. bottom: 0 / 3347
  29368. }
  29369. },
  29370. tongue: {
  29371. height: math.unit(1.42, "feet"),
  29372. name: "Tongue",
  29373. image: {
  29374. source: "./media/characters/arhan/tongue.svg"
  29375. }
  29376. },
  29377. head: {
  29378. height: math.unit(0.85, "feet"),
  29379. name: "Head",
  29380. image: {
  29381. source: "./media/characters/arhan/head.svg"
  29382. }
  29383. },
  29384. },
  29385. [
  29386. {
  29387. name: "Normal",
  29388. height: math.unit(4, "feet"),
  29389. default: true
  29390. },
  29391. ]
  29392. ))
  29393. characterMakers.push(() => makeCharacter(
  29394. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29395. {
  29396. front: {
  29397. height: math.unit(5 + 7.5 / 12, "feet"),
  29398. weight: math.unit(120, "lb"),
  29399. name: "Front",
  29400. image: {
  29401. source: "./media/characters/digi-duncan/front.svg",
  29402. extra: 330 / 326,
  29403. bottom: 16 / 346
  29404. }
  29405. },
  29406. side: {
  29407. height: math.unit(5 + 7.5 / 12, "feet"),
  29408. weight: math.unit(120, "lb"),
  29409. name: "Side",
  29410. image: {
  29411. source: "./media/characters/digi-duncan/side.svg",
  29412. extra: 341 / 337,
  29413. bottom: 1 / 342
  29414. }
  29415. },
  29416. back: {
  29417. height: math.unit(5 + 7.5 / 12, "feet"),
  29418. weight: math.unit(120, "lb"),
  29419. name: "Back",
  29420. image: {
  29421. source: "./media/characters/digi-duncan/back.svg",
  29422. extra: 330 / 326,
  29423. bottom: 12 / 342
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Speck",
  29430. height: math.unit(0.25, "mm")
  29431. },
  29432. {
  29433. name: "Micro",
  29434. height: math.unit(5, "mm")
  29435. },
  29436. {
  29437. name: "Tiny",
  29438. height: math.unit(0.5, "inches"),
  29439. default: true
  29440. },
  29441. {
  29442. name: "Human",
  29443. height: math.unit(5 + 7.5 / 12, "feet")
  29444. },
  29445. {
  29446. name: "Minigiant",
  29447. height: math.unit(8 + 5.25, "feet")
  29448. },
  29449. {
  29450. name: "Giant",
  29451. height: math.unit(2000, "feet")
  29452. },
  29453. {
  29454. name: "Mega",
  29455. height: math.unit(371.1, "miles")
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29461. {
  29462. front: {
  29463. height: math.unit(2, "meters"),
  29464. weight: math.unit(350, "kg"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29468. extra: 898 / 838,
  29469. bottom: 9 / 907
  29470. }
  29471. },
  29472. },
  29473. [
  29474. {
  29475. name: "Micro",
  29476. height: math.unit(8, "meters")
  29477. },
  29478. {
  29479. name: "Normal",
  29480. height: math.unit(50, "meters"),
  29481. default: true
  29482. },
  29483. {
  29484. name: "Macro",
  29485. height: math.unit(500, "meters")
  29486. },
  29487. ]
  29488. ))
  29489. characterMakers.push(() => makeCharacter(
  29490. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29491. {
  29492. front: {
  29493. height: math.unit(6 + 6 / 12, "feet"),
  29494. name: "Front",
  29495. image: {
  29496. source: "./media/characters/khardesh/front.svg",
  29497. extra: 888 / 797,
  29498. bottom: 25 / 913
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Normal",
  29505. height: math.unit(6 + 6 / 12, "feet"),
  29506. default: true
  29507. },
  29508. {
  29509. name: "Normal+",
  29510. height: math.unit(4, "meters")
  29511. },
  29512. {
  29513. name: "Macro",
  29514. height: math.unit(50, "meters")
  29515. },
  29516. {
  29517. name: "Macro+",
  29518. height: math.unit(100, "meters")
  29519. },
  29520. {
  29521. name: "Megamacro",
  29522. height: math.unit(20, "km")
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29528. {
  29529. front: {
  29530. height: math.unit(6, "feet"),
  29531. weight: math.unit(150, "lb"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/kosho/front.svg",
  29535. extra: 1847 / 1847,
  29536. bottom: 86 / 1933
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Second-stage micro",
  29543. height: math.unit(0.5, "inches")
  29544. },
  29545. {
  29546. name: "First-stage micro",
  29547. height: math.unit(6, "inches")
  29548. },
  29549. {
  29550. name: "Normal",
  29551. height: math.unit(6, "feet"),
  29552. default: true
  29553. },
  29554. {
  29555. name: "First-stage macro",
  29556. height: math.unit(72, "feet")
  29557. },
  29558. {
  29559. name: "Second-stage macro",
  29560. height: math.unit(864, "feet")
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29566. {
  29567. normal: {
  29568. height: math.unit(4 + 6 / 12, "feet"),
  29569. name: "Normal",
  29570. image: {
  29571. source: "./media/characters/hydra/normal.svg",
  29572. extra: 2833 / 2634,
  29573. bottom: 68 / 2901
  29574. }
  29575. },
  29576. smol: {
  29577. height: math.unit(0.705, "inches"),
  29578. name: "Smol",
  29579. image: {
  29580. source: "./media/characters/hydra/smol.svg",
  29581. extra: 2715 / 2540,
  29582. bottom: 0 / 2715
  29583. }
  29584. },
  29585. },
  29586. [
  29587. {
  29588. name: "Normal",
  29589. height: math.unit(4 + 6 / 12, "feet"),
  29590. default: true
  29591. }
  29592. ]
  29593. ))
  29594. characterMakers.push(() => makeCharacter(
  29595. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29596. {
  29597. front: {
  29598. height: math.unit(0.6, "cm"),
  29599. name: "Front",
  29600. image: {
  29601. source: "./media/characters/daz/front.svg",
  29602. extra: 1682 / 1164,
  29603. bottom: 42 / 1724
  29604. }
  29605. },
  29606. },
  29607. [
  29608. {
  29609. name: "Normal",
  29610. height: math.unit(0.6, "cm"),
  29611. default: true
  29612. },
  29613. ]
  29614. ))
  29615. characterMakers.push(() => makeCharacter(
  29616. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29617. {
  29618. front: {
  29619. height: math.unit(6, "feet"),
  29620. weight: math.unit(235, "lb"),
  29621. name: "Front",
  29622. image: {
  29623. source: "./media/characters/theo-pangolin/front.svg",
  29624. extra: 1996 / 1969,
  29625. bottom: 115 / 2111
  29626. }
  29627. },
  29628. back: {
  29629. height: math.unit(6, "feet"),
  29630. weight: math.unit(235, "lb"),
  29631. name: "Back",
  29632. image: {
  29633. source: "./media/characters/theo-pangolin/back.svg",
  29634. extra: 1979 / 1979,
  29635. bottom: 40 / 2019
  29636. }
  29637. },
  29638. feral: {
  29639. height: math.unit(2, "feet"),
  29640. weight: math.unit(30, "lb"),
  29641. name: "Feral",
  29642. image: {
  29643. source: "./media/characters/theo-pangolin/feral.svg",
  29644. extra: 803 / 791,
  29645. bottom: 181 / 984
  29646. }
  29647. },
  29648. footFive: {
  29649. height: math.unit(1.43, "feet"),
  29650. name: "Foot (Five Toes)",
  29651. image: {
  29652. source: "./media/characters/theo-pangolin/foot-five.svg"
  29653. }
  29654. },
  29655. footFour: {
  29656. height: math.unit(1.43, "feet"),
  29657. name: "Foot (Four Toes)",
  29658. image: {
  29659. source: "./media/characters/theo-pangolin/foot-four.svg"
  29660. }
  29661. },
  29662. handFour: {
  29663. height: math.unit(0.81, "feet"),
  29664. name: "Hand (Four Fingers)",
  29665. image: {
  29666. source: "./media/characters/theo-pangolin/hand-four.svg"
  29667. }
  29668. },
  29669. handThree: {
  29670. height: math.unit(0.81, "feet"),
  29671. name: "Hand (Three Fingers)",
  29672. image: {
  29673. source: "./media/characters/theo-pangolin/hand-three.svg"
  29674. }
  29675. },
  29676. headFront: {
  29677. height: math.unit(1.37, "feet"),
  29678. name: "Head (Front)",
  29679. image: {
  29680. source: "./media/characters/theo-pangolin/head-front.svg"
  29681. }
  29682. },
  29683. headSide: {
  29684. height: math.unit(1.43, "feet"),
  29685. name: "Head (Side)",
  29686. image: {
  29687. source: "./media/characters/theo-pangolin/head-side.svg"
  29688. }
  29689. },
  29690. tongue: {
  29691. height: math.unit(2.29, "feet"),
  29692. name: "Tongue",
  29693. image: {
  29694. source: "./media/characters/theo-pangolin/tongue.svg"
  29695. }
  29696. },
  29697. },
  29698. [
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(6, "feet")
  29702. },
  29703. {
  29704. name: "Macro",
  29705. height: math.unit(400, "feet"),
  29706. default: true
  29707. },
  29708. ]
  29709. ))
  29710. characterMakers.push(() => makeCharacter(
  29711. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29712. {
  29713. front: {
  29714. height: math.unit(6, "inches"),
  29715. weight: math.unit(0.036, "kg"),
  29716. name: "Front",
  29717. image: {
  29718. source: "./media/characters/renée/front.svg",
  29719. extra: 900 / 886,
  29720. bottom: 8 / 908
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Nano",
  29727. height: math.unit(1, "nm")
  29728. },
  29729. {
  29730. name: "Micro",
  29731. height: math.unit(1, "mm")
  29732. },
  29733. {
  29734. name: "Normal",
  29735. height: math.unit(6, "inches")
  29736. },
  29737. {
  29738. name: "Macro",
  29739. height: math.unit(2000, "feet"),
  29740. default: true
  29741. },
  29742. {
  29743. name: "Megamacro",
  29744. height: math.unit(2, "km")
  29745. },
  29746. {
  29747. name: "Gigamacro",
  29748. height: math.unit(2000, "km")
  29749. },
  29750. {
  29751. name: "Teramacro",
  29752. height: math.unit(250000, "km")
  29753. },
  29754. ]
  29755. ))
  29756. characterMakers.push(() => makeCharacter(
  29757. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29758. {
  29759. front: {
  29760. height: math.unit(4, "meters"),
  29761. weight: math.unit(150, "kg"),
  29762. name: "Front",
  29763. image: {
  29764. source: "./media/characters/caledvwlch/front.svg",
  29765. extra: 1760 / 1551,
  29766. bottom: 28 / 1788
  29767. }
  29768. },
  29769. side: {
  29770. height: math.unit(4, "meters"),
  29771. weight: math.unit(150, "kg"),
  29772. name: "Side",
  29773. image: {
  29774. source: "./media/characters/caledvwlch/side.svg",
  29775. extra: 1605 / 1536,
  29776. bottom: 31 / 1636
  29777. }
  29778. },
  29779. back: {
  29780. height: math.unit(4, "meters"),
  29781. weight: math.unit(150, "kg"),
  29782. name: "Back",
  29783. image: {
  29784. source: "./media/characters/caledvwlch/back.svg",
  29785. extra: 1635 / 1565,
  29786. bottom: 27 / 1662
  29787. }
  29788. },
  29789. },
  29790. [
  29791. {
  29792. name: "\"Incognito\"",
  29793. height: math.unit(4, "meters")
  29794. },
  29795. {
  29796. name: "Small rampage",
  29797. height: math.unit(600, "meters")
  29798. },
  29799. {
  29800. name: "Mega",
  29801. height: math.unit(30, "km")
  29802. },
  29803. {
  29804. name: "Home-size",
  29805. height: math.unit(50, "km"),
  29806. default: true
  29807. },
  29808. {
  29809. name: "Giga",
  29810. height: math.unit(300, "km")
  29811. },
  29812. {
  29813. name: "Lounging",
  29814. height: math.unit(11000, "km")
  29815. },
  29816. {
  29817. name: "Planet snacking",
  29818. height: math.unit(2000000, "km")
  29819. },
  29820. ]
  29821. ))
  29822. characterMakers.push(() => makeCharacter(
  29823. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29824. {
  29825. front: {
  29826. height: math.unit(6, "feet"),
  29827. weight: math.unit(215, "lb"),
  29828. name: "Front",
  29829. image: {
  29830. source: "./media/characters/sapphire-svell/front.svg",
  29831. extra: 495 / 455,
  29832. bottom: 20 / 515
  29833. }
  29834. },
  29835. back: {
  29836. height: math.unit(6, "feet"),
  29837. weight: math.unit(216, "lb"),
  29838. name: "Back",
  29839. image: {
  29840. source: "./media/characters/sapphire-svell/back.svg",
  29841. extra: 497 / 477,
  29842. bottom: 7 / 504
  29843. }
  29844. },
  29845. maw: {
  29846. height: math.unit(1.57, "feet"),
  29847. name: "Maw",
  29848. image: {
  29849. source: "./media/characters/sapphire-svell/maw.svg"
  29850. }
  29851. },
  29852. foot: {
  29853. height: math.unit(1.07, "feet"),
  29854. name: "Foot",
  29855. image: {
  29856. source: "./media/characters/sapphire-svell/foot.svg"
  29857. }
  29858. },
  29859. toering: {
  29860. height: math.unit(1.7, "inch"),
  29861. name: "Toering",
  29862. image: {
  29863. source: "./media/characters/sapphire-svell/toering.svg"
  29864. }
  29865. },
  29866. },
  29867. [
  29868. {
  29869. name: "Normal",
  29870. height: math.unit(300, "feet"),
  29871. default: true
  29872. },
  29873. {
  29874. name: "Augmented",
  29875. height: math.unit(1250, "feet")
  29876. },
  29877. {
  29878. name: "Unleashed",
  29879. height: math.unit(3000, "feet")
  29880. },
  29881. ]
  29882. ))
  29883. characterMakers.push(() => makeCharacter(
  29884. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29885. {
  29886. side: {
  29887. height: math.unit(2 + 3 / 12, "feet"),
  29888. weight: math.unit(110, "lb"),
  29889. name: "Side",
  29890. image: {
  29891. source: "./media/characters/glitch-flux/side.svg",
  29892. extra: 997 / 805,
  29893. bottom: 20 / 1017
  29894. }
  29895. },
  29896. },
  29897. [
  29898. {
  29899. name: "Normal",
  29900. height: math.unit(2 + 3 / 12, "feet"),
  29901. default: true
  29902. },
  29903. ]
  29904. ))
  29905. characterMakers.push(() => makeCharacter(
  29906. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29907. {
  29908. front: {
  29909. height: math.unit(4, "meters"),
  29910. name: "Front",
  29911. image: {
  29912. source: "./media/characters/mid/front.svg",
  29913. extra: 507 / 476,
  29914. bottom: 17 / 524
  29915. }
  29916. },
  29917. back: {
  29918. height: math.unit(4, "meters"),
  29919. name: "Back",
  29920. image: {
  29921. source: "./media/characters/mid/back.svg",
  29922. extra: 519 / 487,
  29923. bottom: 7 / 526
  29924. }
  29925. },
  29926. stuck: {
  29927. height: math.unit(2.2, "meters"),
  29928. name: "Stuck",
  29929. image: {
  29930. source: "./media/characters/mid/stuck.svg",
  29931. extra: 1951 / 1869,
  29932. bottom: 88 / 2039
  29933. }
  29934. }
  29935. },
  29936. [
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(4, "meters"),
  29940. default: true
  29941. },
  29942. {
  29943. name: "Big",
  29944. height: math.unit(10, "meters")
  29945. },
  29946. {
  29947. name: "Macro",
  29948. height: math.unit(800, "meters")
  29949. },
  29950. {
  29951. name: "Megamacro",
  29952. height: math.unit(100, "km")
  29953. },
  29954. {
  29955. name: "Overgrown",
  29956. height: math.unit(1, "parsec")
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29962. {
  29963. front: {
  29964. height: math.unit(2.5, "meters"),
  29965. weight: math.unit(225, "kg"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/iris/front.svg",
  29969. extra: 3348 / 3251,
  29970. bottom: 205 / 3553
  29971. }
  29972. },
  29973. maw: {
  29974. height: math.unit(0.56, "meter"),
  29975. name: "Maw",
  29976. image: {
  29977. source: "./media/characters/iris/maw.svg"
  29978. }
  29979. },
  29980. },
  29981. [
  29982. {
  29983. name: "Mewter cat",
  29984. height: math.unit(1.2, "meters")
  29985. },
  29986. {
  29987. name: "Minimacro",
  29988. height: math.unit(2.5, "meters"),
  29989. default: true
  29990. },
  29991. {
  29992. name: "Macro",
  29993. height: math.unit(180, "meters")
  29994. },
  29995. {
  29996. name: "Megamacro",
  29997. height: math.unit(2746, "meters")
  29998. },
  29999. ]
  30000. ))
  30001. characterMakers.push(() => makeCharacter(
  30002. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30003. {
  30004. front: {
  30005. height: math.unit(6, "feet"),
  30006. weight: math.unit(135, "lb"),
  30007. name: "Front",
  30008. image: {
  30009. source: "./media/characters/axel/front.svg",
  30010. extra: 908 / 908,
  30011. bottom: 58 / 966
  30012. }
  30013. },
  30014. side: {
  30015. height: math.unit(6, "feet"),
  30016. weight: math.unit(135, "lb"),
  30017. name: "Side",
  30018. image: {
  30019. source: "./media/characters/axel/side.svg",
  30020. extra: 958 / 958,
  30021. bottom: 11 / 969
  30022. }
  30023. },
  30024. back: {
  30025. height: math.unit(6, "feet"),
  30026. weight: math.unit(135, "lb"),
  30027. name: "Back",
  30028. image: {
  30029. source: "./media/characters/axel/back.svg",
  30030. extra: 887 / 887,
  30031. bottom: 34 / 921
  30032. }
  30033. },
  30034. head: {
  30035. height: math.unit(1.07, "feet"),
  30036. name: "Head",
  30037. image: {
  30038. source: "./media/characters/axel/head.svg"
  30039. }
  30040. },
  30041. beak: {
  30042. height: math.unit(1.4, "feet"),
  30043. name: "Beak",
  30044. image: {
  30045. source: "./media/characters/axel/beak.svg"
  30046. }
  30047. },
  30048. beakSide: {
  30049. height: math.unit(1.4, "feet"),
  30050. name: "Beak Side",
  30051. image: {
  30052. source: "./media/characters/axel/beak-side.svg"
  30053. }
  30054. },
  30055. sheath: {
  30056. height: math.unit(0.5, "feet"),
  30057. name: "Sheath",
  30058. image: {
  30059. source: "./media/characters/axel/sheath.svg"
  30060. }
  30061. },
  30062. dick: {
  30063. height: math.unit(0.98, "feet"),
  30064. name: "Dick",
  30065. image: {
  30066. source: "./media/characters/axel/dick.svg"
  30067. }
  30068. },
  30069. },
  30070. [
  30071. {
  30072. name: "Macro",
  30073. height: math.unit(68, "meters"),
  30074. default: true
  30075. },
  30076. ]
  30077. ))
  30078. characterMakers.push(() => makeCharacter(
  30079. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30080. {
  30081. front: {
  30082. height: math.unit(3.5, "meters"),
  30083. weight: math.unit(1200, "kg"),
  30084. name: "Front",
  30085. image: {
  30086. source: "./media/characters/joanna/front.svg",
  30087. extra: 1596 / 1488,
  30088. bottom: 29 / 1625
  30089. }
  30090. },
  30091. back: {
  30092. height: math.unit(3.5, "meters"),
  30093. weight: math.unit(1200, "kg"),
  30094. name: "Back",
  30095. image: {
  30096. source: "./media/characters/joanna/back.svg",
  30097. extra: 1594 / 1495,
  30098. bottom: 26 / 1620
  30099. }
  30100. },
  30101. frontShorts: {
  30102. height: math.unit(3.5, "meters"),
  30103. weight: math.unit(1200, "kg"),
  30104. name: "Front (Shorts)",
  30105. image: {
  30106. source: "./media/characters/joanna/front-shorts.svg",
  30107. extra: 1596 / 1488,
  30108. bottom: 29 / 1625
  30109. }
  30110. },
  30111. frontBiker: {
  30112. height: math.unit(3.5, "meters"),
  30113. weight: math.unit(1200, "kg"),
  30114. name: "Front (Biker)",
  30115. image: {
  30116. source: "./media/characters/joanna/front-biker.svg",
  30117. extra: 1596 / 1488,
  30118. bottom: 29 / 1625
  30119. }
  30120. },
  30121. backBiker: {
  30122. height: math.unit(3.5, "meters"),
  30123. weight: math.unit(1200, "kg"),
  30124. name: "Back (Biker)",
  30125. image: {
  30126. source: "./media/characters/joanna/back-biker.svg",
  30127. extra: 1594 / 1495,
  30128. bottom: 88 / 1682
  30129. }
  30130. },
  30131. bikeLeft: {
  30132. height: math.unit(2.4, "meters"),
  30133. weight: math.unit(1600, "kg"),
  30134. name: "Bike (Left)",
  30135. image: {
  30136. source: "./media/characters/joanna/bike-left.svg",
  30137. extra: 720 / 720,
  30138. bottom: 8 / 728
  30139. }
  30140. },
  30141. bikeRight: {
  30142. height: math.unit(2.4, "meters"),
  30143. weight: math.unit(1600, "kg"),
  30144. name: "Bike (Right)",
  30145. image: {
  30146. source: "./media/characters/joanna/bike-right.svg",
  30147. extra: 720 / 720,
  30148. bottom: 8 / 728
  30149. }
  30150. },
  30151. },
  30152. [
  30153. {
  30154. name: "Incognito",
  30155. height: math.unit(3.5, "meters")
  30156. },
  30157. {
  30158. name: "Casual Big",
  30159. height: math.unit(200, "meters")
  30160. },
  30161. {
  30162. name: "Macro",
  30163. height: math.unit(600, "meters")
  30164. },
  30165. {
  30166. name: "Original",
  30167. height: math.unit(20, "km"),
  30168. default: true
  30169. },
  30170. {
  30171. name: "Giga",
  30172. height: math.unit(400, "km")
  30173. },
  30174. {
  30175. name: "Lounging",
  30176. height: math.unit(1500, "km")
  30177. },
  30178. {
  30179. name: "Planetary",
  30180. height: math.unit(200000, "km")
  30181. },
  30182. ]
  30183. ))
  30184. characterMakers.push(() => makeCharacter(
  30185. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30186. {
  30187. front: {
  30188. height: math.unit(6, "feet"),
  30189. weight: math.unit(150, "lb"),
  30190. name: "Front",
  30191. image: {
  30192. source: "./media/characters/hugo-sigil/front.svg",
  30193. extra: 522 / 500,
  30194. bottom: 2 / 524
  30195. }
  30196. },
  30197. back: {
  30198. height: math.unit(6, "feet"),
  30199. weight: math.unit(150, "lb"),
  30200. name: "Back",
  30201. image: {
  30202. source: "./media/characters/hugo-sigil/back.svg",
  30203. extra: 519 / 495,
  30204. bottom: 5 / 524
  30205. }
  30206. },
  30207. maw: {
  30208. height: math.unit(1.4, "feet"),
  30209. weight: math.unit(150, "lb"),
  30210. name: "Maw",
  30211. image: {
  30212. source: "./media/characters/hugo-sigil/maw.svg"
  30213. }
  30214. },
  30215. feet: {
  30216. height: math.unit(1.56, "feet"),
  30217. weight: math.unit(150, "lb"),
  30218. name: "Feet",
  30219. image: {
  30220. source: "./media/characters/hugo-sigil/feet.svg",
  30221. extra: 177 / 177,
  30222. bottom: 12 / 189
  30223. }
  30224. },
  30225. },
  30226. [
  30227. {
  30228. name: "Normal",
  30229. height: math.unit(6, "feet")
  30230. },
  30231. {
  30232. name: "Macro",
  30233. height: math.unit(200, "feet"),
  30234. default: true
  30235. },
  30236. ]
  30237. ))
  30238. characterMakers.push(() => makeCharacter(
  30239. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30240. {
  30241. front: {
  30242. height: math.unit(6, "feet"),
  30243. weight: math.unit(150, "lb"),
  30244. name: "Front",
  30245. image: {
  30246. source: "./media/characters/peri/front.svg",
  30247. extra: 2354 / 2233,
  30248. bottom: 49 / 2403
  30249. }
  30250. },
  30251. },
  30252. [
  30253. {
  30254. name: "Really Small",
  30255. height: math.unit(1, "nm")
  30256. },
  30257. {
  30258. name: "Micro",
  30259. height: math.unit(4, "inches")
  30260. },
  30261. {
  30262. name: "Normal",
  30263. height: math.unit(7, "inches"),
  30264. default: true
  30265. },
  30266. {
  30267. name: "Macro",
  30268. height: math.unit(400, "feet")
  30269. },
  30270. {
  30271. name: "Megamacro",
  30272. height: math.unit(100, "miles")
  30273. },
  30274. ]
  30275. ))
  30276. characterMakers.push(() => makeCharacter(
  30277. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30278. {
  30279. frontSlim: {
  30280. height: math.unit(7, "feet"),
  30281. name: "Front (Slim)",
  30282. image: {
  30283. source: "./media/characters/issilora/front-slim.svg",
  30284. extra: 529 / 449,
  30285. bottom: 53 / 582
  30286. }
  30287. },
  30288. sideSlim: {
  30289. height: math.unit(7, "feet"),
  30290. name: "Side (Slim)",
  30291. image: {
  30292. source: "./media/characters/issilora/side-slim.svg",
  30293. extra: 570 / 480,
  30294. bottom: 30 / 600
  30295. }
  30296. },
  30297. backSlim: {
  30298. height: math.unit(7, "feet"),
  30299. name: "Back (Slim)",
  30300. image: {
  30301. source: "./media/characters/issilora/back-slim.svg",
  30302. extra: 537 / 455,
  30303. bottom: 46 / 583
  30304. }
  30305. },
  30306. frontBuff: {
  30307. height: math.unit(7, "feet"),
  30308. name: "Front (Buff)",
  30309. image: {
  30310. source: "./media/characters/issilora/front-buff.svg",
  30311. extra: 2310 / 2035,
  30312. bottom: 335 / 2645
  30313. }
  30314. },
  30315. head: {
  30316. height: math.unit(1.94, "feet"),
  30317. name: "Head",
  30318. image: {
  30319. source: "./media/characters/issilora/head.svg"
  30320. }
  30321. },
  30322. },
  30323. [
  30324. {
  30325. name: "Minimum",
  30326. height: math.unit(7, "feet")
  30327. },
  30328. {
  30329. name: "Comfortable",
  30330. height: math.unit(17, "feet")
  30331. },
  30332. {
  30333. name: "Fun Size",
  30334. height: math.unit(47, "feet")
  30335. },
  30336. {
  30337. name: "Natural Macro",
  30338. height: math.unit(137, "feet"),
  30339. default: true
  30340. },
  30341. {
  30342. name: "Maximum Kaiju",
  30343. height: math.unit(397, "feet")
  30344. },
  30345. ]
  30346. ))
  30347. characterMakers.push(() => makeCharacter(
  30348. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30349. {
  30350. front: {
  30351. height: math.unit(50 + 9/12, "feet"),
  30352. weight: math.unit(32.8, "tons"),
  30353. name: "Front",
  30354. image: {
  30355. source: "./media/characters/irb'iiritaahn/front.svg",
  30356. extra: 1878/1826,
  30357. bottom: 326/2204
  30358. }
  30359. },
  30360. back: {
  30361. height: math.unit(50 + 9/12, "feet"),
  30362. weight: math.unit(32.8, "tons"),
  30363. name: "Back",
  30364. image: {
  30365. source: "./media/characters/irb'iiritaahn/back.svg",
  30366. extra: 2052/2018,
  30367. bottom: 152/2204
  30368. }
  30369. },
  30370. head: {
  30371. height: math.unit(12.86, "feet"),
  30372. name: "Head",
  30373. image: {
  30374. source: "./media/characters/irb'iiritaahn/head.svg"
  30375. }
  30376. },
  30377. maw: {
  30378. height: math.unit(9.66, "feet"),
  30379. name: "Maw",
  30380. image: {
  30381. source: "./media/characters/irb'iiritaahn/maw.svg"
  30382. }
  30383. },
  30384. frontDick: {
  30385. height: math.unit(8.78461, "feet"),
  30386. name: "Front Dick",
  30387. image: {
  30388. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30389. }
  30390. },
  30391. rearDick: {
  30392. height: math.unit(8.78461, "feet"),
  30393. name: "Rear Dick",
  30394. image: {
  30395. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30396. }
  30397. },
  30398. rearDickUnfolded: {
  30399. height: math.unit(8.78, "feet"),
  30400. name: "Rear Dick (Unfolded)",
  30401. image: {
  30402. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30403. }
  30404. },
  30405. wings: {
  30406. height: math.unit(43, "feet"),
  30407. name: "Wings",
  30408. image: {
  30409. source: "./media/characters/irb'iiritaahn/wings.svg"
  30410. }
  30411. },
  30412. },
  30413. [
  30414. {
  30415. name: "Macro",
  30416. height: math.unit(50 + 9/12, "feet"),
  30417. default: true
  30418. },
  30419. ]
  30420. ))
  30421. characterMakers.push(() => makeCharacter(
  30422. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30423. {
  30424. front: {
  30425. height: math.unit(205, "cm"),
  30426. weight: math.unit(102, "kg"),
  30427. name: "Front",
  30428. image: {
  30429. source: "./media/characters/irbisgreif/front.svg",
  30430. extra: 785/706,
  30431. bottom: 13/798
  30432. }
  30433. },
  30434. back: {
  30435. height: math.unit(205, "cm"),
  30436. weight: math.unit(102, "kg"),
  30437. name: "Back",
  30438. image: {
  30439. source: "./media/characters/irbisgreif/back.svg",
  30440. extra: 713/701,
  30441. bottom: 26/739
  30442. }
  30443. },
  30444. frontDressed: {
  30445. height: math.unit(216, "cm"),
  30446. weight: math.unit(102, "kg"),
  30447. name: "Front-dressed",
  30448. image: {
  30449. source: "./media/characters/irbisgreif/front-dressed.svg",
  30450. extra: 902/776,
  30451. bottom: 14/916
  30452. }
  30453. },
  30454. sideDressed: {
  30455. height: math.unit(195, "cm"),
  30456. weight: math.unit(102, "kg"),
  30457. name: "Side-dressed",
  30458. image: {
  30459. source: "./media/characters/irbisgreif/side-dressed.svg",
  30460. extra: 788/688,
  30461. bottom: 21/809
  30462. }
  30463. },
  30464. backDressed: {
  30465. height: math.unit(216, "cm"),
  30466. weight: math.unit(102, "kg"),
  30467. name: "Back-dressed",
  30468. image: {
  30469. source: "./media/characters/irbisgreif/back-dressed.svg",
  30470. extra: 901/783,
  30471. bottom: 10/911
  30472. }
  30473. },
  30474. dick: {
  30475. height: math.unit(0.49, "feet"),
  30476. name: "Dick",
  30477. image: {
  30478. source: "./media/characters/irbisgreif/dick.svg"
  30479. }
  30480. },
  30481. wingTop: {
  30482. height: math.unit(1.93 , "feet"),
  30483. name: "Wing-top",
  30484. image: {
  30485. source: "./media/characters/irbisgreif/wing-top.svg"
  30486. }
  30487. },
  30488. wingBottom: {
  30489. height: math.unit(1.93 , "feet"),
  30490. name: "Wing-bottom",
  30491. image: {
  30492. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30493. }
  30494. },
  30495. },
  30496. [
  30497. {
  30498. name: "Normal",
  30499. height: math.unit(216, "cm"),
  30500. default: true
  30501. },
  30502. ]
  30503. ))
  30504. characterMakers.push(() => makeCharacter(
  30505. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30506. {
  30507. front: {
  30508. height: math.unit(6, "feet"),
  30509. weight: math.unit(150, "lb"),
  30510. name: "Front",
  30511. image: {
  30512. source: "./media/characters/pride/front.svg",
  30513. extra: 1299/1230,
  30514. bottom: 18/1317
  30515. }
  30516. },
  30517. },
  30518. [
  30519. {
  30520. name: "Normal",
  30521. height: math.unit(7, "feet")
  30522. },
  30523. {
  30524. name: "Mini-macro",
  30525. height: math.unit(11, "feet")
  30526. },
  30527. {
  30528. name: "Macro",
  30529. height: math.unit(15, "meters"),
  30530. default: true
  30531. },
  30532. {
  30533. name: "Macro+",
  30534. height: math.unit(40, "meters")
  30535. },
  30536. ]
  30537. ))
  30538. characterMakers.push(() => makeCharacter(
  30539. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30540. {
  30541. front: {
  30542. height: math.unit(4 + 2 / 12, "feet"),
  30543. weight: math.unit(95, "lb"),
  30544. name: "Front",
  30545. image: {
  30546. source: "./media/characters/vaelophis-nyx/front.svg",
  30547. extra: 2532/2330,
  30548. bottom: 0/2532
  30549. }
  30550. },
  30551. back: {
  30552. height: math.unit(4 + 2 / 12, "feet"),
  30553. weight: math.unit(95, "lb"),
  30554. name: "Back",
  30555. image: {
  30556. source: "./media/characters/vaelophis-nyx/back.svg",
  30557. extra: 2484/2361,
  30558. bottom: 0/2484
  30559. }
  30560. },
  30561. feralSide: {
  30562. height: math.unit(2 + 1/12, "feet"),
  30563. weight: math.unit(20, "lb"),
  30564. name: "Feral (Side)",
  30565. image: {
  30566. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30567. extra: 1721/1581,
  30568. bottom: 70/1791
  30569. }
  30570. },
  30571. feralLazing: {
  30572. height: math.unit(1.08, "feet"),
  30573. weight: math.unit(20, "lb"),
  30574. name: "Feral (Lazing)",
  30575. image: {
  30576. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30577. extra: 822/822,
  30578. bottom: 248/1070
  30579. }
  30580. },
  30581. ear: {
  30582. height: math.unit(0.416, "feet"),
  30583. name: "Ear",
  30584. image: {
  30585. source: "./media/characters/vaelophis-nyx/ear.svg"
  30586. }
  30587. },
  30588. eye: {
  30589. height: math.unit(0.0748, "feet"),
  30590. name: "Eye",
  30591. image: {
  30592. source: "./media/characters/vaelophis-nyx/eye.svg"
  30593. }
  30594. },
  30595. mouth: {
  30596. height: math.unit(0.378, "feet"),
  30597. name: "Mouth",
  30598. image: {
  30599. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30600. }
  30601. },
  30602. spade: {
  30603. height: math.unit(0.55, "feet"),
  30604. name: "Spade",
  30605. image: {
  30606. source: "./media/characters/vaelophis-nyx/spade.svg"
  30607. }
  30608. },
  30609. },
  30610. [
  30611. {
  30612. name: "Normal",
  30613. height: math.unit(4 + 2/12, "feet"),
  30614. default: true
  30615. },
  30616. ]
  30617. ))
  30618. characterMakers.push(() => makeCharacter(
  30619. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30620. {
  30621. front: {
  30622. height: math.unit(7, "feet"),
  30623. weight: math.unit(231, "lb"),
  30624. name: "Front",
  30625. image: {
  30626. source: "./media/characters/flux/front.svg",
  30627. extra: 919/871,
  30628. bottom: 0/919
  30629. }
  30630. },
  30631. back: {
  30632. height: math.unit(7, "feet"),
  30633. weight: math.unit(231, "lb"),
  30634. name: "Back",
  30635. image: {
  30636. source: "./media/characters/flux/back.svg",
  30637. extra: 1040/992,
  30638. bottom: 0/1040
  30639. }
  30640. },
  30641. frontDressed: {
  30642. height: math.unit(7, "feet"),
  30643. weight: math.unit(231, "lb"),
  30644. name: "Front (Dressed)",
  30645. image: {
  30646. source: "./media/characters/flux/front-dressed.svg",
  30647. extra: 919/871,
  30648. bottom: 0/919
  30649. }
  30650. },
  30651. feralSide: {
  30652. height: math.unit(5, "feet"),
  30653. weight: math.unit(150, "lb"),
  30654. name: "Feral (Side)",
  30655. image: {
  30656. source: "./media/characters/flux/feral-side.svg",
  30657. extra: 598/528,
  30658. bottom: 28/626
  30659. }
  30660. },
  30661. head: {
  30662. height: math.unit(1.585, "feet"),
  30663. name: "Head",
  30664. image: {
  30665. source: "./media/characters/flux/head.svg"
  30666. }
  30667. },
  30668. headSide: {
  30669. height: math.unit(1.74, "feet"),
  30670. name: "Head (Side)",
  30671. image: {
  30672. source: "./media/characters/flux/head-side.svg"
  30673. }
  30674. },
  30675. headSideFire: {
  30676. height: math.unit(1.76, "feet"),
  30677. name: "Head (Side, Fire)",
  30678. image: {
  30679. source: "./media/characters/flux/head-side-fire.svg"
  30680. }
  30681. },
  30682. },
  30683. [
  30684. {
  30685. name: "Normal",
  30686. height: math.unit(7, "feet"),
  30687. default: true
  30688. },
  30689. ]
  30690. ))
  30691. characterMakers.push(() => makeCharacter(
  30692. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30693. {
  30694. front: {
  30695. height: math.unit(9, "feet"),
  30696. weight: math.unit(1012, "lb"),
  30697. name: "Front",
  30698. image: {
  30699. source: "./media/characters/ulfra-lupae/front.svg",
  30700. extra: 1083/1011,
  30701. bottom: 67/1150
  30702. }
  30703. },
  30704. },
  30705. [
  30706. {
  30707. name: "Micro",
  30708. height: math.unit(6, "inches")
  30709. },
  30710. {
  30711. name: "Socializing",
  30712. height: math.unit(6 + 5/12, "feet")
  30713. },
  30714. {
  30715. name: "Normal",
  30716. height: math.unit(9, "feet"),
  30717. default: true
  30718. },
  30719. {
  30720. name: "Macro",
  30721. height: math.unit(150, "feet")
  30722. },
  30723. ]
  30724. ))
  30725. characterMakers.push(() => makeCharacter(
  30726. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30727. {
  30728. front: {
  30729. height: math.unit(5 + 2/12, "feet"),
  30730. weight: math.unit(120, "lb"),
  30731. name: "Front",
  30732. image: {
  30733. source: "./media/characters/timber/front.svg",
  30734. extra: 2814/2705,
  30735. bottom: 181/2995
  30736. }
  30737. },
  30738. },
  30739. [
  30740. {
  30741. name: "Normal",
  30742. height: math.unit(5 + 2/12, "feet"),
  30743. default: true
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30749. {
  30750. front: {
  30751. height: math.unit(5 + 7/12, "feet"),
  30752. weight: math.unit(220, "lb"),
  30753. name: "Front",
  30754. image: {
  30755. source: "./media/characters/nicki/front.svg",
  30756. extra: 453/419,
  30757. bottom: 7/460
  30758. }
  30759. },
  30760. frontAlt: {
  30761. height: math.unit(5 + 7/12, "feet"),
  30762. weight: math.unit(220, "lb"),
  30763. name: "Front-alt",
  30764. image: {
  30765. source: "./media/characters/nicki/front-alt.svg",
  30766. extra: 435/411,
  30767. bottom: 12/447
  30768. }
  30769. },
  30770. back: {
  30771. height: math.unit(5 + 7/12, "feet"),
  30772. weight: math.unit(220, "lb"),
  30773. name: "Back",
  30774. image: {
  30775. source: "./media/characters/nicki/back.svg",
  30776. extra: 440/413,
  30777. bottom: 19/459
  30778. }
  30779. },
  30780. taur: {
  30781. height: math.unit(7 + 6/12, "feet"),
  30782. weight: math.unit(700, "lb"),
  30783. name: "Taur",
  30784. image: {
  30785. source: "./media/characters/nicki/taur.svg",
  30786. extra: 975/773,
  30787. bottom: 0/975
  30788. }
  30789. },
  30790. frontNsfw: {
  30791. height: math.unit(5 + 7/12, "feet"),
  30792. weight: math.unit(220, "lb"),
  30793. name: "Front (NSFW)",
  30794. image: {
  30795. source: "./media/characters/nicki/front-nsfw.svg",
  30796. extra: 453/419,
  30797. bottom: 7/460
  30798. }
  30799. },
  30800. frontNsfwAlt: {
  30801. height: math.unit(5 + 7/12, "feet"),
  30802. weight: math.unit(220, "lb"),
  30803. name: "Front (Alt, NSFW)",
  30804. image: {
  30805. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30806. extra: 435/411,
  30807. bottom: 12/447
  30808. }
  30809. },
  30810. backNsfw: {
  30811. height: math.unit(5 + 7/12, "feet"),
  30812. weight: math.unit(220, "lb"),
  30813. name: "Back (NSFW)",
  30814. image: {
  30815. source: "./media/characters/nicki/back-nsfw.svg",
  30816. extra: 440/413,
  30817. bottom: 19/459
  30818. }
  30819. },
  30820. head: {
  30821. height: math.unit(2.1, "feet"),
  30822. name: "Head",
  30823. image: {
  30824. source: "./media/characters/nicki/head.svg"
  30825. }
  30826. },
  30827. paw: {
  30828. height: math.unit(1.88, "feet"),
  30829. name: "Paw",
  30830. image: {
  30831. source: "./media/characters/nicki/paw.svg"
  30832. }
  30833. },
  30834. },
  30835. [
  30836. {
  30837. name: "Normal",
  30838. height: math.unit(5 + 7/12, "feet"),
  30839. default: true
  30840. },
  30841. ]
  30842. ))
  30843. characterMakers.push(() => makeCharacter(
  30844. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30845. {
  30846. front: {
  30847. height: math.unit(7 + 10/12, "feet"),
  30848. weight: math.unit(3.5, "tons"),
  30849. name: "Front",
  30850. image: {
  30851. source: "./media/characters/lee/front.svg",
  30852. extra: 1773/1615,
  30853. bottom: 86/1859
  30854. }
  30855. },
  30856. hand: {
  30857. height: math.unit(1.78, "feet"),
  30858. name: "Hand",
  30859. image: {
  30860. source: "./media/characters/lee/hand.svg"
  30861. }
  30862. },
  30863. maw: {
  30864. height: math.unit(1.18, "feet"),
  30865. name: "Maw",
  30866. image: {
  30867. source: "./media/characters/lee/maw.svg"
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(7 + 10/12, "feet"),
  30875. default: true
  30876. },
  30877. ]
  30878. ))
  30879. characterMakers.push(() => makeCharacter(
  30880. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30881. {
  30882. front: {
  30883. height: math.unit(9, "feet"),
  30884. name: "Front",
  30885. image: {
  30886. source: "./media/characters/guti/front.svg",
  30887. extra: 4551/4355,
  30888. bottom: 123/4674
  30889. }
  30890. },
  30891. tongue: {
  30892. height: math.unit(1, "feet"),
  30893. name: "Tongue",
  30894. image: {
  30895. source: "./media/characters/guti/tongue.svg"
  30896. }
  30897. },
  30898. paw: {
  30899. height: math.unit(1.18, "feet"),
  30900. name: "Paw",
  30901. image: {
  30902. source: "./media/characters/guti/paw.svg"
  30903. }
  30904. },
  30905. },
  30906. [
  30907. {
  30908. name: "Normal",
  30909. height: math.unit(9, "feet"),
  30910. default: true
  30911. },
  30912. ]
  30913. ))
  30914. characterMakers.push(() => makeCharacter(
  30915. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30916. {
  30917. side: {
  30918. height: math.unit(5, "meters"),
  30919. name: "Side",
  30920. image: {
  30921. source: "./media/characters/vesper/side.svg",
  30922. extra: 1605/1518,
  30923. bottom: 0/1605
  30924. }
  30925. },
  30926. },
  30927. [
  30928. {
  30929. name: "Small",
  30930. height: math.unit(5, "meters")
  30931. },
  30932. {
  30933. name: "Sage",
  30934. height: math.unit(100, "meters"),
  30935. default: true
  30936. },
  30937. {
  30938. name: "Fun Size",
  30939. height: math.unit(600, "meters")
  30940. },
  30941. {
  30942. name: "Goddess",
  30943. height: math.unit(20000, "km")
  30944. },
  30945. {
  30946. name: "Maximum",
  30947. height: math.unit(5, "galaxies")
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(6 + 3/12, "feet"),
  30956. weight: math.unit(190, "lb"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/gawain/front.svg",
  30960. extra: 2222/2139,
  30961. bottom: 90/2312
  30962. }
  30963. },
  30964. back: {
  30965. height: math.unit(6 + 3/12, "feet"),
  30966. weight: math.unit(190, "lb"),
  30967. name: "Back",
  30968. image: {
  30969. source: "./media/characters/gawain/back.svg",
  30970. extra: 2199/2111,
  30971. bottom: 73/2272
  30972. }
  30973. },
  30974. },
  30975. [
  30976. {
  30977. name: "Normal",
  30978. height: math.unit(6 + 3/12, "feet"),
  30979. default: true
  30980. },
  30981. ]
  30982. ))
  30983. characterMakers.push(() => makeCharacter(
  30984. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30985. {
  30986. side: {
  30987. height: math.unit(3.5, "meters"),
  30988. weight: math.unit(16000, "lb"),
  30989. name: "Side",
  30990. image: {
  30991. source: "./media/characters/dascalti/side.svg",
  30992. extra: 392/273,
  30993. bottom: 47/439
  30994. }
  30995. },
  30996. breath: {
  30997. height: math.unit(7.4, "feet"),
  30998. name: "Breath",
  30999. image: {
  31000. source: "./media/characters/dascalti/breath.svg"
  31001. }
  31002. },
  31003. fed: {
  31004. height: math.unit(3.6, "meters"),
  31005. weight: math.unit(16000, "lb"),
  31006. name: "Fed",
  31007. image: {
  31008. source: "./media/characters/dascalti/fed.svg",
  31009. extra: 1419/820,
  31010. bottom: 95/1514
  31011. }
  31012. },
  31013. },
  31014. [
  31015. {
  31016. name: "Normal",
  31017. height: math.unit(3.5, "meters"),
  31018. default: true
  31019. },
  31020. ]
  31021. ))
  31022. characterMakers.push(() => makeCharacter(
  31023. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31024. {
  31025. front: {
  31026. height: math.unit(3 + 5/12, "feet"),
  31027. name: "Front",
  31028. image: {
  31029. source: "./media/characters/mauve/front.svg",
  31030. extra: 1126/1033,
  31031. bottom: 65/1191
  31032. }
  31033. },
  31034. side: {
  31035. height: math.unit(3 + 5/12, "feet"),
  31036. name: "Side",
  31037. image: {
  31038. source: "./media/characters/mauve/side.svg",
  31039. extra: 1089/1001,
  31040. bottom: 29/1118
  31041. }
  31042. },
  31043. back: {
  31044. height: math.unit(3 + 5/12, "feet"),
  31045. name: "Back",
  31046. image: {
  31047. source: "./media/characters/mauve/back.svg",
  31048. extra: 1173/1053,
  31049. bottom: 109/1282
  31050. }
  31051. },
  31052. },
  31053. [
  31054. {
  31055. name: "Normal",
  31056. height: math.unit(3 + 5/12, "feet"),
  31057. default: true
  31058. },
  31059. ]
  31060. ))
  31061. characterMakers.push(() => makeCharacter(
  31062. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31063. {
  31064. front: {
  31065. height: math.unit(6 + 3/12, "feet"),
  31066. weight: math.unit(430, "lb"),
  31067. name: "Front",
  31068. image: {
  31069. source: "./media/characters/carlos/front.svg",
  31070. extra: 1964/1913,
  31071. bottom: 70/2034
  31072. }
  31073. },
  31074. },
  31075. [
  31076. {
  31077. name: "Normal",
  31078. height: math.unit(6 + 3/12, "feet"),
  31079. default: true
  31080. },
  31081. ]
  31082. ))
  31083. characterMakers.push(() => makeCharacter(
  31084. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31085. {
  31086. back: {
  31087. height: math.unit(5 + 10/12, "feet"),
  31088. weight: math.unit(200, "lb"),
  31089. name: "Back",
  31090. image: {
  31091. source: "./media/characters/jax/back.svg",
  31092. extra: 764/739,
  31093. bottom: 25/789
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(5 + 10/12, "feet"),
  31101. default: true
  31102. },
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31107. {
  31108. front: {
  31109. height: math.unit(8, "feet"),
  31110. weight: math.unit(250, "lb"),
  31111. name: "Front",
  31112. image: {
  31113. source: "./media/characters/eikthynir/front.svg",
  31114. extra: 1332/1166,
  31115. bottom: 82/1414
  31116. }
  31117. },
  31118. back: {
  31119. height: math.unit(8, "feet"),
  31120. weight: math.unit(250, "lb"),
  31121. name: "Back",
  31122. image: {
  31123. source: "./media/characters/eikthynir/back.svg",
  31124. extra: 1342/1190,
  31125. bottom: 19/1361
  31126. }
  31127. },
  31128. dick: {
  31129. height: math.unit(2.35, "feet"),
  31130. name: "Dick",
  31131. image: {
  31132. source: "./media/characters/eikthynir/dick.svg"
  31133. }
  31134. },
  31135. },
  31136. [
  31137. {
  31138. name: "Normal",
  31139. height: math.unit(8, "feet"),
  31140. default: true
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31146. {
  31147. front: {
  31148. height: math.unit(99, "meters"),
  31149. weight: math.unit(13000, "tons"),
  31150. name: "Front",
  31151. image: {
  31152. source: "./media/characters/zlmos/front.svg",
  31153. extra: 2202/1992,
  31154. bottom: 315/2517
  31155. }
  31156. },
  31157. },
  31158. [
  31159. {
  31160. name: "Macro",
  31161. height: math.unit(99, "meters"),
  31162. default: true
  31163. },
  31164. ]
  31165. ))
  31166. characterMakers.push(() => makeCharacter(
  31167. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31168. {
  31169. front: {
  31170. height: math.unit(6 + 5/12, "feet"),
  31171. name: "Front",
  31172. image: {
  31173. source: "./media/characters/purri/front.svg",
  31174. extra: 1698/1610,
  31175. bottom: 32/1730
  31176. }
  31177. },
  31178. frontAlt: {
  31179. height: math.unit(6 + 5/12, "feet"),
  31180. name: "Front (Alt)",
  31181. image: {
  31182. source: "./media/characters/purri/front-alt.svg",
  31183. extra: 450/420,
  31184. bottom: 26/476
  31185. }
  31186. },
  31187. boots: {
  31188. height: math.unit(5.5, "feet"),
  31189. name: "Boots",
  31190. image: {
  31191. source: "./media/characters/purri/boots.svg",
  31192. extra: 905/853,
  31193. bottom: 18/923
  31194. }
  31195. },
  31196. lying: {
  31197. height: math.unit(2, "feet"),
  31198. name: "Lying",
  31199. image: {
  31200. source: "./media/characters/purri/lying.svg",
  31201. extra: 940/843,
  31202. bottom: 146/1086
  31203. }
  31204. },
  31205. devious: {
  31206. height: math.unit(1.77, "feet"),
  31207. name: "Devious",
  31208. image: {
  31209. source: "./media/characters/purri/devious.svg",
  31210. extra: 1440/1155,
  31211. bottom: 147/1587
  31212. }
  31213. },
  31214. bean: {
  31215. height: math.unit(1.94, "feet"),
  31216. name: "Bean",
  31217. image: {
  31218. source: "./media/characters/purri/bean.svg"
  31219. }
  31220. },
  31221. },
  31222. [
  31223. {
  31224. name: "Micro",
  31225. height: math.unit(1, "mm")
  31226. },
  31227. {
  31228. name: "Normal",
  31229. height: math.unit(6 + 5/12, "feet"),
  31230. default: true
  31231. },
  31232. {
  31233. name: "Macro :3c",
  31234. height: math.unit(2, "miles")
  31235. },
  31236. ]
  31237. ))
  31238. characterMakers.push(() => makeCharacter(
  31239. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31240. {
  31241. front: {
  31242. height: math.unit(6 + 2/12, "feet"),
  31243. weight: math.unit(250, "lb"),
  31244. name: "Front",
  31245. image: {
  31246. source: "./media/characters/moonlight/front.svg",
  31247. extra: 1044/908,
  31248. bottom: 56/1100
  31249. }
  31250. },
  31251. feral: {
  31252. height: math.unit(3 + 1/12, "feet"),
  31253. weight: math.unit(50, "kg"),
  31254. name: "Feral",
  31255. image: {
  31256. source: "./media/characters/moonlight/feral.svg",
  31257. extra: 3705/2791,
  31258. bottom: 145/3850
  31259. }
  31260. },
  31261. paw: {
  31262. height: math.unit(1, "feet"),
  31263. name: "Paw",
  31264. image: {
  31265. source: "./media/characters/moonlight/paw.svg"
  31266. }
  31267. },
  31268. paws: {
  31269. height: math.unit(0.98, "feet"),
  31270. name: "Paws",
  31271. image: {
  31272. source: "./media/characters/moonlight/paws.svg",
  31273. extra: 939/939,
  31274. bottom: 50/989
  31275. }
  31276. },
  31277. mouth: {
  31278. height: math.unit(0.48, "feet"),
  31279. name: "Mouth",
  31280. image: {
  31281. source: "./media/characters/moonlight/mouth.svg"
  31282. }
  31283. },
  31284. dick: {
  31285. height: math.unit(1.46, "feet"),
  31286. name: "Dick",
  31287. image: {
  31288. source: "./media/characters/moonlight/dick.svg"
  31289. }
  31290. },
  31291. },
  31292. [
  31293. {
  31294. name: "Normal",
  31295. height: math.unit(6 + 2/12, "feet"),
  31296. default: true
  31297. },
  31298. {
  31299. name: "Macro",
  31300. height: math.unit(300, "feet")
  31301. },
  31302. {
  31303. name: "Macro+",
  31304. height: math.unit(1, "mile")
  31305. },
  31306. {
  31307. name: "Mt. Moon",
  31308. height: math.unit(5, "miles")
  31309. },
  31310. {
  31311. name: "Megamacro",
  31312. height: math.unit(15, "miles")
  31313. },
  31314. ]
  31315. ))
  31316. characterMakers.push(() => makeCharacter(
  31317. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31318. {
  31319. back: {
  31320. height: math.unit(6, "feet"),
  31321. weight: math.unit(150, "lb"),
  31322. name: "Back",
  31323. image: {
  31324. source: "./media/characters/sylen/back.svg",
  31325. extra: 1335/1273,
  31326. bottom: 107/1442
  31327. }
  31328. },
  31329. },
  31330. [
  31331. {
  31332. name: "Normal",
  31333. height: math.unit(5 + 5/12, "feet")
  31334. },
  31335. {
  31336. name: "Megamacro",
  31337. height: math.unit(3, "miles"),
  31338. default: true
  31339. },
  31340. ]
  31341. ))
  31342. characterMakers.push(() => makeCharacter(
  31343. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31344. {
  31345. front: {
  31346. height: math.unit(6, "feet"),
  31347. weight: math.unit(190, "lb"),
  31348. name: "Front",
  31349. image: {
  31350. source: "./media/characters/huttser/front.svg",
  31351. extra: 1152/1058,
  31352. bottom: 23/1175
  31353. }
  31354. },
  31355. side: {
  31356. height: math.unit(6, "feet"),
  31357. weight: math.unit(190, "lb"),
  31358. name: "Side",
  31359. image: {
  31360. source: "./media/characters/huttser/side.svg",
  31361. extra: 1174/1065,
  31362. bottom: 18/1192
  31363. }
  31364. },
  31365. back: {
  31366. height: math.unit(6, "feet"),
  31367. weight: math.unit(190, "lb"),
  31368. name: "Back",
  31369. image: {
  31370. source: "./media/characters/huttser/back.svg",
  31371. extra: 1158/1056,
  31372. bottom: 12/1170
  31373. }
  31374. },
  31375. },
  31376. [
  31377. ]
  31378. ))
  31379. characterMakers.push(() => makeCharacter(
  31380. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31381. {
  31382. side: {
  31383. height: math.unit(12 + 9/12, "feet"),
  31384. weight: math.unit(15000, "lb"),
  31385. name: "Side",
  31386. image: {
  31387. source: "./media/characters/faan/side.svg",
  31388. extra: 2747/2697,
  31389. bottom: 0/2747
  31390. }
  31391. },
  31392. front: {
  31393. height: math.unit(12 + 9/12, "feet"),
  31394. weight: math.unit(15000, "lb"),
  31395. name: "Front",
  31396. image: {
  31397. source: "./media/characters/faan/front.svg",
  31398. extra: 607/571,
  31399. bottom: 24/631
  31400. }
  31401. },
  31402. head: {
  31403. height: math.unit(2.85, "feet"),
  31404. name: "Head",
  31405. image: {
  31406. source: "./media/characters/faan/head.svg"
  31407. }
  31408. },
  31409. headAlt: {
  31410. height: math.unit(3.13, "feet"),
  31411. name: "Head-alt",
  31412. image: {
  31413. source: "./media/characters/faan/head-alt.svg"
  31414. }
  31415. },
  31416. },
  31417. [
  31418. {
  31419. name: "Normal",
  31420. height: math.unit(12 + 9/12, "feet"),
  31421. default: true
  31422. },
  31423. ]
  31424. ))
  31425. characterMakers.push(() => makeCharacter(
  31426. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31427. {
  31428. front: {
  31429. height: math.unit(6, "feet"),
  31430. weight: math.unit(300, "lb"),
  31431. name: "Front",
  31432. image: {
  31433. source: "./media/characters/tanio/front.svg",
  31434. extra: 711/673,
  31435. bottom: 25/736
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Normal",
  31442. height: math.unit(6, "feet"),
  31443. default: true
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31449. {
  31450. front: {
  31451. height: math.unit(3, "inches"),
  31452. name: "Front",
  31453. image: {
  31454. source: "./media/characters/noboru/front.svg",
  31455. extra: 1039/932,
  31456. bottom: 18/1057
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "Micro",
  31463. height: math.unit(3, "inches"),
  31464. default: true
  31465. },
  31466. ]
  31467. ))
  31468. characterMakers.push(() => makeCharacter(
  31469. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31470. {
  31471. front: {
  31472. height: math.unit(1.85, "meters"),
  31473. weight: math.unit(80, "kg"),
  31474. name: "Front",
  31475. image: {
  31476. source: "./media/characters/daniel-barrett/front.svg",
  31477. extra: 355/337,
  31478. bottom: 9/364
  31479. }
  31480. },
  31481. },
  31482. [
  31483. {
  31484. name: "Pico",
  31485. height: math.unit(0.0433, "mm")
  31486. },
  31487. {
  31488. name: "Nano",
  31489. height: math.unit(1.5, "mm")
  31490. },
  31491. {
  31492. name: "Micro",
  31493. height: math.unit(5.3, "cm"),
  31494. default: true
  31495. },
  31496. {
  31497. name: "Normal",
  31498. height: math.unit(1.85, "meters")
  31499. },
  31500. {
  31501. name: "Macro",
  31502. height: math.unit(64.7, "meters")
  31503. },
  31504. {
  31505. name: "Megamacro",
  31506. height: math.unit(2.26, "km")
  31507. },
  31508. {
  31509. name: "Gigamacro",
  31510. height: math.unit(79, "km")
  31511. },
  31512. {
  31513. name: "Teramacro",
  31514. height: math.unit(2765, "km")
  31515. },
  31516. {
  31517. name: "Petamacro",
  31518. height: math.unit(96678, "km")
  31519. },
  31520. ]
  31521. ))
  31522. characterMakers.push(() => makeCharacter(
  31523. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31524. {
  31525. front: {
  31526. height: math.unit(30, "meters"),
  31527. weight: math.unit(400, "tons"),
  31528. name: "Front",
  31529. image: {
  31530. source: "./media/characters/zeel/front.svg",
  31531. extra: 2599/2599,
  31532. bottom: 226/2825
  31533. }
  31534. },
  31535. },
  31536. [
  31537. {
  31538. name: "Macro",
  31539. height: math.unit(30, "meters"),
  31540. default: true
  31541. },
  31542. ]
  31543. ))
  31544. characterMakers.push(() => makeCharacter(
  31545. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31546. {
  31547. front: {
  31548. height: math.unit(6 + 7/12, "feet"),
  31549. weight: math.unit(210, "lb"),
  31550. name: "Front",
  31551. image: {
  31552. source: "./media/characters/tarn/front.svg",
  31553. extra: 3517/3220,
  31554. bottom: 91/3608
  31555. }
  31556. },
  31557. back: {
  31558. height: math.unit(6 + 7/12, "feet"),
  31559. weight: math.unit(210, "lb"),
  31560. name: "Back",
  31561. image: {
  31562. source: "./media/characters/tarn/back.svg",
  31563. extra: 3566/3241,
  31564. bottom: 34/3600
  31565. }
  31566. },
  31567. dick: {
  31568. height: math.unit(1.65, "feet"),
  31569. name: "Dick",
  31570. image: {
  31571. source: "./media/characters/tarn/dick.svg"
  31572. }
  31573. },
  31574. paw: {
  31575. height: math.unit(1.80, "feet"),
  31576. name: "Paw",
  31577. image: {
  31578. source: "./media/characters/tarn/paw.svg"
  31579. }
  31580. },
  31581. tongue: {
  31582. height: math.unit(0.97, "feet"),
  31583. name: "Tongue",
  31584. image: {
  31585. source: "./media/characters/tarn/tongue.svg"
  31586. }
  31587. },
  31588. },
  31589. [
  31590. {
  31591. name: "Micro",
  31592. height: math.unit(4, "inches")
  31593. },
  31594. {
  31595. name: "Normal",
  31596. height: math.unit(6 + 7/12, "feet"),
  31597. default: true
  31598. },
  31599. {
  31600. name: "Macro",
  31601. height: math.unit(300, "feet")
  31602. },
  31603. ]
  31604. ))
  31605. characterMakers.push(() => makeCharacter(
  31606. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31607. {
  31608. front: {
  31609. height: math.unit(5 + 7/12, "feet"),
  31610. weight: math.unit(80, "kg"),
  31611. name: "Front",
  31612. image: {
  31613. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31614. extra: 3023/2865,
  31615. bottom: 33/3056
  31616. }
  31617. },
  31618. back: {
  31619. height: math.unit(5 + 7/12, "feet"),
  31620. weight: math.unit(80, "kg"),
  31621. name: "Back",
  31622. image: {
  31623. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31624. extra: 3020/2886,
  31625. bottom: 30/3050
  31626. }
  31627. },
  31628. dick: {
  31629. height: math.unit(0.98, "feet"),
  31630. name: "Dick",
  31631. image: {
  31632. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31633. }
  31634. },
  31635. anatomy: {
  31636. height: math.unit(2.86, "feet"),
  31637. name: "Anatomy",
  31638. image: {
  31639. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31640. }
  31641. },
  31642. },
  31643. [
  31644. {
  31645. name: "Really Small",
  31646. height: math.unit(2, "inches")
  31647. },
  31648. {
  31649. name: "Micro",
  31650. height: math.unit(5.583, "inches")
  31651. },
  31652. {
  31653. name: "Normal",
  31654. height: math.unit(5 + 7/12, "feet"),
  31655. default: true
  31656. },
  31657. {
  31658. name: "Macro",
  31659. height: math.unit(67, "feet")
  31660. },
  31661. {
  31662. name: "Megamacro",
  31663. height: math.unit(134, "feet")
  31664. },
  31665. ]
  31666. ))
  31667. characterMakers.push(() => makeCharacter(
  31668. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31669. {
  31670. front: {
  31671. height: math.unit(9, "feet"),
  31672. weight: math.unit(120, "lb"),
  31673. name: "Front",
  31674. image: {
  31675. source: "./media/characters/sally/front.svg",
  31676. extra: 1506/1349,
  31677. bottom: 66/1572
  31678. }
  31679. },
  31680. },
  31681. [
  31682. {
  31683. name: "Normal",
  31684. height: math.unit(9, "feet"),
  31685. default: true
  31686. },
  31687. ]
  31688. ))
  31689. characterMakers.push(() => makeCharacter(
  31690. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31691. {
  31692. front: {
  31693. height: math.unit(8, "feet"),
  31694. weight: math.unit(900, "lb"),
  31695. name: "Front",
  31696. image: {
  31697. source: "./media/characters/owen/front.svg",
  31698. extra: 1761/1657,
  31699. bottom: 74/1835
  31700. }
  31701. },
  31702. side: {
  31703. height: math.unit(8, "feet"),
  31704. weight: math.unit(900, "lb"),
  31705. name: "Side",
  31706. image: {
  31707. source: "./media/characters/owen/side.svg",
  31708. extra: 1797/1734,
  31709. bottom: 30/1827
  31710. }
  31711. },
  31712. back: {
  31713. height: math.unit(8, "feet"),
  31714. weight: math.unit(900, "lb"),
  31715. name: "Back",
  31716. image: {
  31717. source: "./media/characters/owen/back.svg",
  31718. extra: 1796/1706,
  31719. bottom: 59/1855
  31720. }
  31721. },
  31722. maw: {
  31723. height: math.unit(1.76, "feet"),
  31724. name: "Maw",
  31725. image: {
  31726. source: "./media/characters/owen/maw.svg"
  31727. }
  31728. },
  31729. },
  31730. [
  31731. {
  31732. name: "Normal",
  31733. height: math.unit(8, "feet"),
  31734. default: true
  31735. },
  31736. ]
  31737. ))
  31738. characterMakers.push(() => makeCharacter(
  31739. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31740. {
  31741. front: {
  31742. height: math.unit(4, "feet"),
  31743. weight: math.unit(400, "lb"),
  31744. name: "Front",
  31745. image: {
  31746. source: "./media/characters/ryth/front.svg",
  31747. extra: 1920/1748,
  31748. bottom: 42/1962
  31749. }
  31750. },
  31751. back: {
  31752. height: math.unit(4, "feet"),
  31753. weight: math.unit(400, "lb"),
  31754. name: "Back",
  31755. image: {
  31756. source: "./media/characters/ryth/back.svg",
  31757. extra: 1897/1690,
  31758. bottom: 89/1986
  31759. }
  31760. },
  31761. mouth: {
  31762. height: math.unit(1.39, "feet"),
  31763. name: "Mouth",
  31764. image: {
  31765. source: "./media/characters/ryth/mouth.svg"
  31766. }
  31767. },
  31768. tailmaw: {
  31769. height: math.unit(1.23, "feet"),
  31770. name: "Tailmaw",
  31771. image: {
  31772. source: "./media/characters/ryth/tailmaw.svg"
  31773. }
  31774. },
  31775. goia: {
  31776. height: math.unit(12, "feet"),
  31777. weight: math.unit(10800, "lb"),
  31778. name: "Goia",
  31779. image: {
  31780. source: "./media/characters/ryth/goia.svg",
  31781. extra: 3450/3198,
  31782. bottom: 61/3511
  31783. }
  31784. },
  31785. },
  31786. [
  31787. {
  31788. name: "Normal",
  31789. height: math.unit(4, "feet"),
  31790. default: true
  31791. },
  31792. ]
  31793. ))
  31794. characterMakers.push(() => makeCharacter(
  31795. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31796. {
  31797. front: {
  31798. height: math.unit(7, "feet"),
  31799. weight: math.unit(180, "lb"),
  31800. name: "Front",
  31801. image: {
  31802. source: "./media/characters/necrolance/front.svg",
  31803. extra: 1062/947,
  31804. bottom: 41/1103
  31805. }
  31806. },
  31807. back: {
  31808. height: math.unit(7, "feet"),
  31809. weight: math.unit(180, "lb"),
  31810. name: "Back",
  31811. image: {
  31812. source: "./media/characters/necrolance/back.svg",
  31813. extra: 1045/984,
  31814. bottom: 14/1059
  31815. }
  31816. },
  31817. wing: {
  31818. height: math.unit(2.67, "feet"),
  31819. name: "Wing",
  31820. image: {
  31821. source: "./media/characters/necrolance/wing.svg"
  31822. }
  31823. },
  31824. },
  31825. [
  31826. {
  31827. name: "Normal",
  31828. height: math.unit(7, "feet"),
  31829. default: true
  31830. },
  31831. ]
  31832. ))
  31833. characterMakers.push(() => makeCharacter(
  31834. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31835. {
  31836. front: {
  31837. height: math.unit(76, "meters"),
  31838. weight: math.unit(30000, "tons"),
  31839. name: "Front",
  31840. image: {
  31841. source: "./media/characters/tyler/front.svg",
  31842. extra: 1640/1640,
  31843. bottom: 114/1754
  31844. }
  31845. },
  31846. },
  31847. [
  31848. {
  31849. name: "Macro",
  31850. height: math.unit(76, "meters"),
  31851. default: true
  31852. },
  31853. ]
  31854. ))
  31855. characterMakers.push(() => makeCharacter(
  31856. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31857. {
  31858. front: {
  31859. height: math.unit(4 + 11/12, "feet"),
  31860. weight: math.unit(132, "lb"),
  31861. name: "Front",
  31862. image: {
  31863. source: "./media/characters/icey/front.svg",
  31864. extra: 2750/2550,
  31865. bottom: 33/2783
  31866. }
  31867. },
  31868. back: {
  31869. height: math.unit(4 + 11/12, "feet"),
  31870. weight: math.unit(132, "lb"),
  31871. name: "Back",
  31872. image: {
  31873. source: "./media/characters/icey/back.svg",
  31874. extra: 2624/2481,
  31875. bottom: 35/2659
  31876. }
  31877. },
  31878. },
  31879. [
  31880. {
  31881. name: "Normal",
  31882. height: math.unit(4 + 11/12, "feet"),
  31883. default: true
  31884. },
  31885. ]
  31886. ))
  31887. characterMakers.push(() => makeCharacter(
  31888. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31889. {
  31890. front: {
  31891. height: math.unit(100, "feet"),
  31892. weight: math.unit(0, "lb"),
  31893. name: "Front",
  31894. image: {
  31895. source: "./media/characters/smile/front.svg",
  31896. extra: 2983/2912,
  31897. bottom: 162/3145
  31898. }
  31899. },
  31900. back: {
  31901. height: math.unit(100, "feet"),
  31902. weight: math.unit(0, "lb"),
  31903. name: "Back",
  31904. image: {
  31905. source: "./media/characters/smile/back.svg",
  31906. extra: 3143/3031,
  31907. bottom: 91/3234
  31908. }
  31909. },
  31910. head: {
  31911. height: math.unit(26.3, "feet"),
  31912. weight: math.unit(0, "lb"),
  31913. name: "Head",
  31914. image: {
  31915. source: "./media/characters/smile/head.svg"
  31916. }
  31917. },
  31918. collar: {
  31919. height: math.unit(5.3, "feet"),
  31920. weight: math.unit(0, "lb"),
  31921. name: "Collar",
  31922. image: {
  31923. source: "./media/characters/smile/collar.svg"
  31924. }
  31925. },
  31926. },
  31927. [
  31928. {
  31929. name: "Macro",
  31930. height: math.unit(100, "feet"),
  31931. default: true
  31932. },
  31933. ]
  31934. ))
  31935. characterMakers.push(() => makeCharacter(
  31936. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31937. {
  31938. dragon: {
  31939. height: math.unit(26, "feet"),
  31940. weight: math.unit(36, "tons"),
  31941. name: "Dragon",
  31942. image: {
  31943. source: "./media/characters/arimphae/dragon.svg",
  31944. extra: 1574/983,
  31945. bottom: 357/1931
  31946. }
  31947. },
  31948. drake: {
  31949. height: math.unit(9, "feet"),
  31950. weight: math.unit(1.5, "tons"),
  31951. name: "Drake",
  31952. image: {
  31953. source: "./media/characters/arimphae/drake.svg",
  31954. extra: 1120/925,
  31955. bottom: 435/1555
  31956. }
  31957. },
  31958. },
  31959. [
  31960. {
  31961. name: "Small",
  31962. height: math.unit(26*5/9, "feet")
  31963. },
  31964. {
  31965. name: "Normal",
  31966. height: math.unit(26, "feet"),
  31967. default: true
  31968. },
  31969. ]
  31970. ))
  31971. characterMakers.push(() => makeCharacter(
  31972. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31973. {
  31974. front: {
  31975. height: math.unit(8 + 9/12, "feet"),
  31976. name: "Front",
  31977. image: {
  31978. source: "./media/characters/xander/front.svg",
  31979. extra: 848/673,
  31980. bottom: 62/910
  31981. }
  31982. },
  31983. },
  31984. [
  31985. {
  31986. name: "Normal",
  31987. height: math.unit(8 + 9/12, "feet"),
  31988. default: true
  31989. },
  31990. {
  31991. name: "Gaze Grabber",
  31992. height: math.unit(13 + 8/12, "feet")
  31993. },
  31994. {
  31995. name: "Jaw Dropper",
  31996. height: math.unit(27, "feet")
  31997. },
  31998. {
  31999. name: "Show Stopper",
  32000. height: math.unit(136, "feet")
  32001. },
  32002. {
  32003. name: "Superstar",
  32004. height: math.unit(1.9e6, "miles")
  32005. },
  32006. ]
  32007. ))
  32008. characterMakers.push(() => makeCharacter(
  32009. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32010. {
  32011. side: {
  32012. height: math.unit(2100, "feet"),
  32013. name: "Side",
  32014. image: {
  32015. source: "./media/characters/osiris/side.svg",
  32016. extra: 1105/939,
  32017. bottom: 167/1272
  32018. }
  32019. },
  32020. },
  32021. [
  32022. {
  32023. name: "Macro",
  32024. height: math.unit(2100, "feet"),
  32025. default: true
  32026. },
  32027. ]
  32028. ))
  32029. characterMakers.push(() => makeCharacter(
  32030. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32031. {
  32032. front: {
  32033. height: math.unit(6 + 8/12, "feet"),
  32034. weight: math.unit(225, "lb"),
  32035. name: "Front",
  32036. image: {
  32037. source: "./media/characters/rhys-londe/front.svg",
  32038. extra: 2258/2141,
  32039. bottom: 188/2446
  32040. }
  32041. },
  32042. back: {
  32043. height: math.unit(6 + 8/12, "feet"),
  32044. weight: math.unit(225, "lb"),
  32045. name: "Back",
  32046. image: {
  32047. source: "./media/characters/rhys-londe/back.svg",
  32048. extra: 2237/2137,
  32049. bottom: 63/2300
  32050. }
  32051. },
  32052. frontNsfw: {
  32053. height: math.unit(6 + 8/12, "feet"),
  32054. weight: math.unit(225, "lb"),
  32055. name: "Front (NSFW)",
  32056. image: {
  32057. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32058. extra: 2258/2141,
  32059. bottom: 188/2446
  32060. }
  32061. },
  32062. backNsfw: {
  32063. height: math.unit(6 + 8/12, "feet"),
  32064. weight: math.unit(225, "lb"),
  32065. name: "Back (NSFW)",
  32066. image: {
  32067. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32068. extra: 2237/2137,
  32069. bottom: 63/2300
  32070. }
  32071. },
  32072. dick: {
  32073. height: math.unit(30, "inches"),
  32074. name: "Dick",
  32075. image: {
  32076. source: "./media/characters/rhys-londe/dick.svg"
  32077. }
  32078. },
  32079. maw: {
  32080. height: math.unit(1.6, "feet"),
  32081. name: "Maw",
  32082. image: {
  32083. source: "./media/characters/rhys-londe/maw.svg"
  32084. }
  32085. },
  32086. },
  32087. [
  32088. {
  32089. name: "Normal",
  32090. height: math.unit(6 + 8/12, "feet"),
  32091. default: true
  32092. },
  32093. ]
  32094. ))
  32095. characterMakers.push(() => makeCharacter(
  32096. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32097. {
  32098. front: {
  32099. height: math.unit(3 + 10/12, "feet"),
  32100. weight: math.unit(90, "lb"),
  32101. name: "Front",
  32102. image: {
  32103. source: "./media/characters/taivas-ensim/front.svg",
  32104. extra: 1327/1216,
  32105. bottom: 96/1423
  32106. }
  32107. },
  32108. back: {
  32109. height: math.unit(3 + 10/12, "feet"),
  32110. weight: math.unit(90, "lb"),
  32111. name: "Back",
  32112. image: {
  32113. source: "./media/characters/taivas-ensim/back.svg",
  32114. extra: 1355/1247,
  32115. bottom: 11/1366
  32116. }
  32117. },
  32118. frontNsfw: {
  32119. height: math.unit(3 + 10/12, "feet"),
  32120. weight: math.unit(90, "lb"),
  32121. name: "Front (NSFW)",
  32122. image: {
  32123. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32124. extra: 1327/1216,
  32125. bottom: 96/1423
  32126. }
  32127. },
  32128. backNsfw: {
  32129. height: math.unit(3 + 10/12, "feet"),
  32130. weight: math.unit(90, "lb"),
  32131. name: "Back (NSFW)",
  32132. image: {
  32133. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32134. extra: 1355/1247,
  32135. bottom: 11/1366
  32136. }
  32137. },
  32138. },
  32139. [
  32140. {
  32141. name: "Normal",
  32142. height: math.unit(3 + 10/12, "feet"),
  32143. default: true
  32144. },
  32145. ]
  32146. ))
  32147. characterMakers.push(() => makeCharacter(
  32148. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32149. {
  32150. front: {
  32151. height: math.unit(9 + 6/12, "feet"),
  32152. weight: math.unit(940, "lb"),
  32153. name: "Front",
  32154. image: {
  32155. source: "./media/characters/byliss/front.svg",
  32156. extra: 1327/1290,
  32157. bottom: 82/1409
  32158. }
  32159. },
  32160. back: {
  32161. height: math.unit(9 + 6/12, "feet"),
  32162. weight: math.unit(940, "lb"),
  32163. name: "Back",
  32164. image: {
  32165. source: "./media/characters/byliss/back.svg",
  32166. extra: 1376/1349,
  32167. bottom: 9/1385
  32168. }
  32169. },
  32170. frontNsfw: {
  32171. height: math.unit(9 + 6/12, "feet"),
  32172. weight: math.unit(940, "lb"),
  32173. name: "Front (NSFW)",
  32174. image: {
  32175. source: "./media/characters/byliss/front-nsfw.svg",
  32176. extra: 1327/1290,
  32177. bottom: 82/1409
  32178. }
  32179. },
  32180. backNsfw: {
  32181. height: math.unit(9 + 6/12, "feet"),
  32182. weight: math.unit(940, "lb"),
  32183. name: "Back (NSFW)",
  32184. image: {
  32185. source: "./media/characters/byliss/back-nsfw.svg",
  32186. extra: 1376/1349,
  32187. bottom: 9/1385
  32188. }
  32189. },
  32190. },
  32191. [
  32192. {
  32193. name: "Normal",
  32194. height: math.unit(9 + 6/12, "feet"),
  32195. default: true
  32196. },
  32197. ]
  32198. ))
  32199. characterMakers.push(() => makeCharacter(
  32200. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32201. {
  32202. front: {
  32203. height: math.unit(5 + 2/12, "feet"),
  32204. weight: math.unit(200, "lb"),
  32205. name: "Front",
  32206. image: {
  32207. source: "./media/characters/noraly/front.svg",
  32208. extra: 4985/4773,
  32209. bottom: 150/5135
  32210. }
  32211. },
  32212. full: {
  32213. height: math.unit(5 + 2/12, "feet"),
  32214. weight: math.unit(164, "lb"),
  32215. name: "Full",
  32216. image: {
  32217. source: "./media/characters/noraly/full.svg",
  32218. extra: 1114/1059,
  32219. bottom: 35/1149
  32220. }
  32221. },
  32222. fuller: {
  32223. height: math.unit(5 + 2/12, "feet"),
  32224. weight: math.unit(230, "lb"),
  32225. name: "Fuller",
  32226. image: {
  32227. source: "./media/characters/noraly/fuller.svg",
  32228. extra: 1114/1059,
  32229. bottom: 35/1149
  32230. }
  32231. },
  32232. fullest: {
  32233. height: math.unit(5 + 2/12, "feet"),
  32234. weight: math.unit(300, "lb"),
  32235. name: "Fullest",
  32236. image: {
  32237. source: "./media/characters/noraly/fullest.svg",
  32238. extra: 1114/1059,
  32239. bottom: 35/1149
  32240. }
  32241. },
  32242. },
  32243. [
  32244. {
  32245. name: "Normal",
  32246. height: math.unit(5 + 2/12, "feet"),
  32247. default: true
  32248. },
  32249. ]
  32250. ))
  32251. characterMakers.push(() => makeCharacter(
  32252. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32253. {
  32254. front: {
  32255. height: math.unit(5 + 2/12, "feet"),
  32256. weight: math.unit(210, "lb"),
  32257. name: "Front",
  32258. image: {
  32259. source: "./media/characters/pera/front.svg",
  32260. extra: 1560/1531,
  32261. bottom: 165/1725
  32262. }
  32263. },
  32264. back: {
  32265. height: math.unit(5 + 2/12, "feet"),
  32266. weight: math.unit(210, "lb"),
  32267. name: "Back",
  32268. image: {
  32269. source: "./media/characters/pera/back.svg",
  32270. extra: 1523/1493,
  32271. bottom: 152/1675
  32272. }
  32273. },
  32274. dick: {
  32275. height: math.unit(2.4, "feet"),
  32276. name: "Dick",
  32277. image: {
  32278. source: "./media/characters/pera/dick.svg"
  32279. }
  32280. },
  32281. },
  32282. [
  32283. {
  32284. name: "Normal",
  32285. height: math.unit(5 + 2/12, "feet"),
  32286. default: true
  32287. },
  32288. ]
  32289. ))
  32290. characterMakers.push(() => makeCharacter(
  32291. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32292. {
  32293. front: {
  32294. height: math.unit(12, "feet"),
  32295. weight: math.unit(3200, "lb"),
  32296. name: "Front",
  32297. image: {
  32298. source: "./media/characters/julian/front.svg",
  32299. extra: 2962/2701,
  32300. bottom: 184/3146
  32301. }
  32302. },
  32303. maw: {
  32304. height: math.unit(5.35, "feet"),
  32305. name: "Maw",
  32306. image: {
  32307. source: "./media/characters/julian/maw.svg"
  32308. }
  32309. },
  32310. paw: {
  32311. height: math.unit(3.07, "feet"),
  32312. name: "Paw",
  32313. image: {
  32314. source: "./media/characters/julian/paw.svg"
  32315. }
  32316. },
  32317. },
  32318. [
  32319. {
  32320. name: "Default",
  32321. height: math.unit(12, "feet"),
  32322. default: true
  32323. },
  32324. {
  32325. name: "Big",
  32326. height: math.unit(50, "feet")
  32327. },
  32328. {
  32329. name: "Really Big",
  32330. height: math.unit(1, "mile")
  32331. },
  32332. {
  32333. name: "Extremely Big",
  32334. height: math.unit(100, "miles")
  32335. },
  32336. {
  32337. name: "Planet Hugger",
  32338. height: math.unit(200, "megameters")
  32339. },
  32340. {
  32341. name: "Unreasonably Big",
  32342. height: math.unit(1e300, "meters")
  32343. },
  32344. ]
  32345. ))
  32346. characterMakers.push(() => makeCharacter(
  32347. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32348. {
  32349. solgooleo: {
  32350. height: math.unit(4, "meters"),
  32351. weight: math.unit(6000*1.5, "kg"),
  32352. volume: math.unit(6000, "liters"),
  32353. name: "Solgooleo",
  32354. image: {
  32355. source: "./media/characters/pi/solgooleo.svg",
  32356. extra: 388/331,
  32357. bottom: 29/417
  32358. }
  32359. },
  32360. },
  32361. [
  32362. {
  32363. name: "Normal",
  32364. height: math.unit(4, "meters"),
  32365. default: true
  32366. },
  32367. ]
  32368. ))
  32369. characterMakers.push(() => makeCharacter(
  32370. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32371. {
  32372. front: {
  32373. height: math.unit(8 + 2/12, "feet"),
  32374. weight: math.unit(4, "tons"),
  32375. name: "Front",
  32376. image: {
  32377. source: "./media/characters/shaun/front.svg",
  32378. extra: 1550/1505,
  32379. bottom: 353/1903
  32380. }
  32381. },
  32382. },
  32383. [
  32384. {
  32385. name: "Lorg",
  32386. height: math.unit(8 + 2/12, "feet"),
  32387. default: true
  32388. },
  32389. ]
  32390. ))
  32391. characterMakers.push(() => makeCharacter(
  32392. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32393. {
  32394. front: {
  32395. height: math.unit(7, "feet"),
  32396. name: "Front",
  32397. image: {
  32398. source: "./media/characters/sini/front.svg",
  32399. extra: 726/678,
  32400. bottom: 35/761
  32401. }
  32402. },
  32403. back: {
  32404. height: math.unit(7, "feet"),
  32405. name: "Back",
  32406. image: {
  32407. source: "./media/characters/sini/back.svg",
  32408. extra: 743/701,
  32409. bottom: 12/755
  32410. }
  32411. },
  32412. mawAnthro: {
  32413. height: math.unit(2.14, "feet"),
  32414. name: "Maw (Anthro)",
  32415. image: {
  32416. source: "./media/characters/sini/maw-anthro.svg"
  32417. }
  32418. },
  32419. dick: {
  32420. height: math.unit(1.45, "feet"),
  32421. name: "Dick (Anthro)",
  32422. image: {
  32423. source: "./media/characters/sini/dick-anthro.svg"
  32424. }
  32425. },
  32426. feral: {
  32427. height: math.unit(16, "feet"),
  32428. name: "Feral",
  32429. image: {
  32430. source: "./media/characters/sini/feral.svg",
  32431. extra: 814/605,
  32432. bottom: 11/825
  32433. }
  32434. },
  32435. mawFeral: {
  32436. height: math.unit(5.66, "feet"),
  32437. name: "Maw-feral",
  32438. image: {
  32439. source: "./media/characters/sini/maw-feral.svg"
  32440. }
  32441. },
  32442. footFeral: {
  32443. height: math.unit(5.17, "feet"),
  32444. name: "Foot-feral",
  32445. image: {
  32446. source: "./media/characters/sini/foot-feral.svg"
  32447. }
  32448. },
  32449. },
  32450. [
  32451. {
  32452. name: "Normal",
  32453. height: math.unit(7, "feet"),
  32454. default: true
  32455. },
  32456. ]
  32457. ))
  32458. characterMakers.push(() => makeCharacter(
  32459. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32460. {
  32461. side: {
  32462. height: math.unit(13, "meters"),
  32463. weight: math.unit(9072, "kg"),
  32464. name: "Side",
  32465. image: {
  32466. source: "./media/characters/raylldo/side.svg",
  32467. extra: 403/344,
  32468. bottom: 42/445
  32469. }
  32470. },
  32471. leaping: {
  32472. height: math.unit(12.3, "meters"),
  32473. weight: math.unit(9072, "kg"),
  32474. name: "Leaping",
  32475. image: {
  32476. source: "./media/characters/raylldo/leaping.svg",
  32477. extra: 470/249,
  32478. bottom: 13/483
  32479. }
  32480. },
  32481. flying: {
  32482. height: math.unit(18, "meters"),
  32483. weight: math.unit(9072, "kg"),
  32484. name: "Flying",
  32485. image: {
  32486. source: "./media/characters/raylldo/flying.svg"
  32487. }
  32488. },
  32489. head: {
  32490. height: math.unit(5.85, "meters"),
  32491. name: "Head",
  32492. image: {
  32493. source: "./media/characters/raylldo/head.svg"
  32494. }
  32495. },
  32496. maw: {
  32497. height: math.unit(5.32, "meters"),
  32498. name: "Maw",
  32499. image: {
  32500. source: "./media/characters/raylldo/maw.svg"
  32501. }
  32502. },
  32503. eye: {
  32504. height: math.unit(0.54, "meters"),
  32505. name: "Eye",
  32506. image: {
  32507. source: "./media/characters/raylldo/eye.svg"
  32508. }
  32509. },
  32510. },
  32511. [
  32512. {
  32513. name: "Normal",
  32514. height: math.unit(13, "meters"),
  32515. default: true
  32516. },
  32517. ]
  32518. ))
  32519. characterMakers.push(() => makeCharacter(
  32520. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32521. {
  32522. anthroFront: {
  32523. height: math.unit(9, "feet"),
  32524. weight: math.unit(600, "lb"),
  32525. name: "Anthro (Front)",
  32526. image: {
  32527. source: "./media/characters/glint/anthro-front.svg",
  32528. extra: 1097/1018,
  32529. bottom: 28/1125
  32530. }
  32531. },
  32532. anthroBack: {
  32533. height: math.unit(9, "feet"),
  32534. weight: math.unit(600, "lb"),
  32535. name: "Anthro (Back)",
  32536. image: {
  32537. source: "./media/characters/glint/anthro-back.svg",
  32538. extra: 1154/997,
  32539. bottom: 36/1190
  32540. }
  32541. },
  32542. feral: {
  32543. height: math.unit(11, "feet"),
  32544. weight: math.unit(50000, "lb"),
  32545. name: "Feral",
  32546. image: {
  32547. source: "./media/characters/glint/feral.svg",
  32548. extra: 3035/1585,
  32549. bottom: 1169/4204
  32550. }
  32551. },
  32552. dickAnthro: {
  32553. height: math.unit(0.7, "meters"),
  32554. name: "Dick (Anthro)",
  32555. image: {
  32556. source: "./media/characters/glint/dick-anthro.svg"
  32557. }
  32558. },
  32559. dickFeral: {
  32560. height: math.unit(2.65, "meters"),
  32561. name: "Dick (Feral)",
  32562. image: {
  32563. source: "./media/characters/glint/dick-feral.svg"
  32564. }
  32565. },
  32566. slitHidden: {
  32567. height: math.unit(5.85, "meters"),
  32568. name: "Slit (Hidden)",
  32569. image: {
  32570. source: "./media/characters/glint/slit-hidden.svg"
  32571. }
  32572. },
  32573. slitErect: {
  32574. height: math.unit(5.85, "meters"),
  32575. name: "Slit (Erect)",
  32576. image: {
  32577. source: "./media/characters/glint/slit-erect.svg"
  32578. }
  32579. },
  32580. mawAnthro: {
  32581. height: math.unit(0.63, "meters"),
  32582. name: "Maw (Anthro)",
  32583. image: {
  32584. source: "./media/characters/glint/maw.svg"
  32585. }
  32586. },
  32587. mawFeral: {
  32588. height: math.unit(2.89, "meters"),
  32589. name: "Maw (Feral)",
  32590. image: {
  32591. source: "./media/characters/glint/maw.svg"
  32592. }
  32593. },
  32594. },
  32595. [
  32596. {
  32597. name: "Normal",
  32598. height: math.unit(9, "feet"),
  32599. default: true
  32600. },
  32601. ]
  32602. ))
  32603. characterMakers.push(() => makeCharacter(
  32604. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32605. {
  32606. side: {
  32607. height: math.unit(15, "feet"),
  32608. weight: math.unit(5000, "kg"),
  32609. name: "Side",
  32610. image: {
  32611. source: "./media/characters/kairne/side.svg",
  32612. extra: 979/811,
  32613. bottom: 13/992
  32614. }
  32615. },
  32616. front: {
  32617. height: math.unit(15, "feet"),
  32618. weight: math.unit(5000, "kg"),
  32619. name: "Front",
  32620. image: {
  32621. source: "./media/characters/kairne/front.svg",
  32622. extra: 908/814,
  32623. bottom: 26/934
  32624. }
  32625. },
  32626. sideNsfw: {
  32627. height: math.unit(15, "feet"),
  32628. weight: math.unit(5000, "kg"),
  32629. name: "Side (NSFW)",
  32630. image: {
  32631. source: "./media/characters/kairne/side-nsfw.svg",
  32632. extra: 979/811,
  32633. bottom: 13/992
  32634. }
  32635. },
  32636. frontNsfw: {
  32637. height: math.unit(15, "feet"),
  32638. weight: math.unit(5000, "kg"),
  32639. name: "Front (NSFW)",
  32640. image: {
  32641. source: "./media/characters/kairne/front-nsfw.svg",
  32642. extra: 908/814,
  32643. bottom: 26/934
  32644. }
  32645. },
  32646. dickCaged: {
  32647. height: math.unit(0.65, "meters"),
  32648. name: "Dick-caged",
  32649. image: {
  32650. source: "./media/characters/kairne/dick-caged.svg"
  32651. }
  32652. },
  32653. dick: {
  32654. height: math.unit(0.79, "meters"),
  32655. name: "Dick",
  32656. image: {
  32657. source: "./media/characters/kairne/dick.svg"
  32658. }
  32659. },
  32660. genitals: {
  32661. height: math.unit(1.29, "meters"),
  32662. name: "Genitals",
  32663. image: {
  32664. source: "./media/characters/kairne/genitals.svg"
  32665. }
  32666. },
  32667. maw: {
  32668. height: math.unit(1.73, "meters"),
  32669. name: "Maw",
  32670. image: {
  32671. source: "./media/characters/kairne/maw.svg"
  32672. }
  32673. },
  32674. },
  32675. [
  32676. {
  32677. name: "Normal",
  32678. height: math.unit(15, "feet"),
  32679. default: true
  32680. },
  32681. ]
  32682. ))
  32683. characterMakers.push(() => makeCharacter(
  32684. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32685. {
  32686. front: {
  32687. height: math.unit(5 + 8/12, "feet"),
  32688. weight: math.unit(139, "lb"),
  32689. name: "Front",
  32690. image: {
  32691. source: "./media/characters/biscuit-jackal/front.svg",
  32692. extra: 2106/1961,
  32693. bottom: 58/2164
  32694. }
  32695. },
  32696. back: {
  32697. height: math.unit(5 + 8/12, "feet"),
  32698. weight: math.unit(139, "lb"),
  32699. name: "Back",
  32700. image: {
  32701. source: "./media/characters/biscuit-jackal/back.svg",
  32702. extra: 2132/1976,
  32703. bottom: 57/2189
  32704. }
  32705. },
  32706. werejackal: {
  32707. height: math.unit(6 + 3/12, "feet"),
  32708. weight: math.unit(188, "lb"),
  32709. name: "Werejackal",
  32710. image: {
  32711. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32712. extra: 2373/2178,
  32713. bottom: 53/2426
  32714. }
  32715. },
  32716. },
  32717. [
  32718. {
  32719. name: "Normal",
  32720. height: math.unit(5 + 8/12, "feet"),
  32721. default: true
  32722. },
  32723. ]
  32724. ))
  32725. characterMakers.push(() => makeCharacter(
  32726. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32727. {
  32728. front: {
  32729. height: math.unit(140, "cm"),
  32730. weight: math.unit(45, "kg"),
  32731. name: "Front",
  32732. image: {
  32733. source: "./media/characters/tayra-white/front.svg",
  32734. extra: 2229/2192,
  32735. bottom: 75/2304
  32736. }
  32737. },
  32738. },
  32739. [
  32740. {
  32741. name: "Normal",
  32742. height: math.unit(140, "cm"),
  32743. default: true
  32744. },
  32745. ]
  32746. ))
  32747. characterMakers.push(() => makeCharacter(
  32748. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32749. {
  32750. front: {
  32751. height: math.unit(4 + 5/12, "feet"),
  32752. name: "Front",
  32753. image: {
  32754. source: "./media/characters/scoop/front.svg",
  32755. extra: 1257/1136,
  32756. bottom: 69/1326
  32757. }
  32758. },
  32759. back: {
  32760. height: math.unit(4 + 5/12, "feet"),
  32761. name: "Back",
  32762. image: {
  32763. source: "./media/characters/scoop/back.svg",
  32764. extra: 1321/1152,
  32765. bottom: 32/1353
  32766. }
  32767. },
  32768. maw: {
  32769. height: math.unit(0.68, "feet"),
  32770. name: "Maw",
  32771. image: {
  32772. source: "./media/characters/scoop/maw.svg"
  32773. }
  32774. },
  32775. },
  32776. [
  32777. {
  32778. name: "Really Small",
  32779. height: math.unit(1, "mm")
  32780. },
  32781. {
  32782. name: "Micro",
  32783. height: math.unit(1, "inch")
  32784. },
  32785. {
  32786. name: "Normal",
  32787. height: math.unit(4 + 5/12, "feet"),
  32788. default: true
  32789. },
  32790. {
  32791. name: "Macro",
  32792. height: math.unit(200, "feet")
  32793. },
  32794. {
  32795. name: "Megamacro",
  32796. height: math.unit(3240, "feet")
  32797. },
  32798. {
  32799. name: "Teramacro",
  32800. height: math.unit(2500, "miles")
  32801. },
  32802. ]
  32803. ))
  32804. characterMakers.push(() => makeCharacter(
  32805. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32806. {
  32807. front: {
  32808. height: math.unit(15 + 7/12, "feet"),
  32809. name: "Front",
  32810. image: {
  32811. source: "./media/characters/saphinara/front.svg",
  32812. extra: 604/546,
  32813. bottom: 19/623
  32814. }
  32815. },
  32816. side: {
  32817. height: math.unit(15 + 7/12, "feet"),
  32818. name: "Side",
  32819. image: {
  32820. source: "./media/characters/saphinara/side.svg",
  32821. extra: 605/547,
  32822. bottom: 6/611
  32823. }
  32824. },
  32825. back: {
  32826. height: math.unit(15 + 7/12, "feet"),
  32827. name: "Back",
  32828. image: {
  32829. source: "./media/characters/saphinara/back.svg",
  32830. extra: 591/531,
  32831. bottom: 13/604
  32832. }
  32833. },
  32834. frontTail: {
  32835. height: math.unit(15 + 7/12, "feet"),
  32836. name: "Front (Full Tail)",
  32837. image: {
  32838. source: "./media/characters/saphinara/front-tail.svg",
  32839. extra: 748/547,
  32840. bottom: 66/814
  32841. }
  32842. },
  32843. },
  32844. [
  32845. {
  32846. name: "Normal",
  32847. height: math.unit(15 + 7/12, "feet"),
  32848. default: true
  32849. },
  32850. {
  32851. name: "Angry",
  32852. height: math.unit(30 + 6/12, "feet")
  32853. },
  32854. {
  32855. name: "Enraged",
  32856. height: math.unit(102 + 1/12, "feet")
  32857. },
  32858. ]
  32859. ))
  32860. characterMakers.push(() => makeCharacter(
  32861. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32862. {
  32863. front: {
  32864. height: math.unit(6 + 8/12, "feet"),
  32865. weight: math.unit(300, "lb"),
  32866. name: "Front",
  32867. image: {
  32868. source: "./media/characters/jrain/front.svg",
  32869. extra: 3039/2865,
  32870. bottom: 399/3438
  32871. }
  32872. },
  32873. back: {
  32874. height: math.unit(6 + 8/12, "feet"),
  32875. weight: math.unit(300, "lb"),
  32876. name: "Back",
  32877. image: {
  32878. source: "./media/characters/jrain/back.svg",
  32879. extra: 3089/2938,
  32880. bottom: 172/3261
  32881. }
  32882. },
  32883. head: {
  32884. height: math.unit(2.14, "feet"),
  32885. name: "Head",
  32886. image: {
  32887. source: "./media/characters/jrain/head.svg"
  32888. }
  32889. },
  32890. maw: {
  32891. height: math.unit(1.77, "feet"),
  32892. name: "Maw",
  32893. image: {
  32894. source: "./media/characters/jrain/maw.svg"
  32895. }
  32896. },
  32897. leftHand: {
  32898. height: math.unit(1.1, "feet"),
  32899. name: "Left Hand",
  32900. image: {
  32901. source: "./media/characters/jrain/left-hand.svg"
  32902. }
  32903. },
  32904. rightHand: {
  32905. height: math.unit(1.1, "feet"),
  32906. name: "Right Hand",
  32907. image: {
  32908. source: "./media/characters/jrain/right-hand.svg"
  32909. }
  32910. },
  32911. eye: {
  32912. height: math.unit(0.35, "feet"),
  32913. name: "Eye",
  32914. image: {
  32915. source: "./media/characters/jrain/eye.svg"
  32916. }
  32917. },
  32918. },
  32919. [
  32920. {
  32921. name: "Normal",
  32922. height: math.unit(6 + 8/12, "feet"),
  32923. default: true
  32924. },
  32925. {
  32926. name: "Casually Large",
  32927. height: math.unit(25, "feet")
  32928. },
  32929. {
  32930. name: "Giant",
  32931. height: math.unit(100, "feet")
  32932. },
  32933. {
  32934. name: "Kaiju",
  32935. height: math.unit(300, "feet")
  32936. },
  32937. ]
  32938. ))
  32939. characterMakers.push(() => makeCharacter(
  32940. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32941. {
  32942. dragon: {
  32943. height: math.unit(5, "meters"),
  32944. name: "Dragon",
  32945. image: {
  32946. source: "./media/characters/sabrina/dragon.svg",
  32947. extra: 3670 / 2365,
  32948. bottom: 333 / 4003
  32949. }
  32950. },
  32951. gryphon: {
  32952. height: math.unit(3, "meters"),
  32953. name: "Gryphon",
  32954. image: {
  32955. source: "./media/characters/sabrina/gryphon.svg",
  32956. extra: 1576 / 945,
  32957. bottom: 71 / 1647
  32958. }
  32959. },
  32960. snake: {
  32961. height: math.unit(12, "meters"),
  32962. name: "Snake",
  32963. image: {
  32964. source: "./media/characters/sabrina/snake.svg",
  32965. extra: 1758 / 1320,
  32966. bottom: 186 / 1944
  32967. }
  32968. },
  32969. collar: {
  32970. height: math.unit(1.86, "meters"),
  32971. name: "Collar",
  32972. image: {
  32973. source: "./media/characters/sabrina/collar.svg"
  32974. }
  32975. },
  32976. eye: {
  32977. height: math.unit(0.53, "meters"),
  32978. name: "Eye",
  32979. image: {
  32980. source: "./media/characters/sabrina/eye.svg"
  32981. }
  32982. },
  32983. foot: {
  32984. height: math.unit(1.86, "meters"),
  32985. name: "Foot",
  32986. image: {
  32987. source: "./media/characters/sabrina/foot.svg"
  32988. }
  32989. },
  32990. hand: {
  32991. height: math.unit(1.32, "meters"),
  32992. name: "Hand",
  32993. image: {
  32994. source: "./media/characters/sabrina/hand.svg"
  32995. }
  32996. },
  32997. head: {
  32998. height: math.unit(2.44, "meters"),
  32999. name: "Head",
  33000. image: {
  33001. source: "./media/characters/sabrina/head.svg"
  33002. }
  33003. },
  33004. headAngry: {
  33005. height: math.unit(2.44, "meters"),
  33006. name: "Head (Angry))",
  33007. image: {
  33008. source: "./media/characters/sabrina/head-angry.svg"
  33009. }
  33010. },
  33011. maw: {
  33012. height: math.unit(1.65, "meters"),
  33013. name: "Maw",
  33014. image: {
  33015. source: "./media/characters/sabrina/maw.svg"
  33016. }
  33017. },
  33018. spikes: {
  33019. height: math.unit(1.69, "meters"),
  33020. name: "Spikes",
  33021. image: {
  33022. source: "./media/characters/sabrina/spikes.svg"
  33023. }
  33024. },
  33025. stomach: {
  33026. height: math.unit(1.15, "meters"),
  33027. name: "Stomach",
  33028. image: {
  33029. source: "./media/characters/sabrina/stomach.svg"
  33030. }
  33031. },
  33032. tongue: {
  33033. height: math.unit(1.27, "meters"),
  33034. name: "Tongue",
  33035. image: {
  33036. source: "./media/characters/sabrina/tongue.svg"
  33037. }
  33038. },
  33039. wingDorsal: {
  33040. height: math.unit(4.85, "meters"),
  33041. name: "Wing (Dorsal)",
  33042. image: {
  33043. source: "./media/characters/sabrina/wing-dorsal.svg"
  33044. }
  33045. },
  33046. wingVentral: {
  33047. height: math.unit(4.85, "meters"),
  33048. name: "Wing (Ventral)",
  33049. image: {
  33050. source: "./media/characters/sabrina/wing-ventral.svg"
  33051. }
  33052. },
  33053. },
  33054. [
  33055. {
  33056. name: "Normal",
  33057. height: math.unit(5, "meters"),
  33058. default: true
  33059. },
  33060. ]
  33061. ))
  33062. characterMakers.push(() => makeCharacter(
  33063. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33064. {
  33065. frontMaid: {
  33066. height: math.unit(5 + 5/12, "feet"),
  33067. weight: math.unit(130, "lb"),
  33068. name: "Front (Maid)",
  33069. image: {
  33070. source: "./media/characters/midnight-tales/front-maid.svg",
  33071. extra: 489/454,
  33072. bottom: 61/550
  33073. }
  33074. },
  33075. frontFormal: {
  33076. height: math.unit(5 + 5/12, "feet"),
  33077. weight: math.unit(130, "lb"),
  33078. name: "Front (Formal)",
  33079. image: {
  33080. source: "./media/characters/midnight-tales/front-formal.svg",
  33081. extra: 489/454,
  33082. bottom: 61/550
  33083. }
  33084. },
  33085. back: {
  33086. height: math.unit(5 + 5/12, "feet"),
  33087. weight: math.unit(130, "lb"),
  33088. name: "Back",
  33089. image: {
  33090. source: "./media/characters/midnight-tales/back.svg",
  33091. extra: 498/456,
  33092. bottom: 33/531
  33093. }
  33094. },
  33095. frontBeast: {
  33096. height: math.unit(40, "feet"),
  33097. weight: math.unit(64000, "lb"),
  33098. name: "Front (Beast)",
  33099. image: {
  33100. source: "./media/characters/midnight-tales/front-beast.svg",
  33101. extra: 927/860,
  33102. bottom: 53/980
  33103. }
  33104. },
  33105. backBeast: {
  33106. height: math.unit(40, "feet"),
  33107. weight: math.unit(64000, "lb"),
  33108. name: "Back (Beast)",
  33109. image: {
  33110. source: "./media/characters/midnight-tales/back-beast.svg",
  33111. extra: 929/855,
  33112. bottom: 16/945
  33113. }
  33114. },
  33115. footBeast: {
  33116. height: math.unit(6.7, "feet"),
  33117. name: "Foot (Beast)",
  33118. image: {
  33119. source: "./media/characters/midnight-tales/foot-beast.svg"
  33120. }
  33121. },
  33122. headBeast: {
  33123. height: math.unit(8, "feet"),
  33124. name: "Head (Beast)",
  33125. image: {
  33126. source: "./media/characters/midnight-tales/head-beast.svg"
  33127. }
  33128. },
  33129. },
  33130. [
  33131. {
  33132. name: "Normal",
  33133. height: math.unit(5 + 5 / 12, "feet"),
  33134. default: true
  33135. },
  33136. {
  33137. name: "Macro",
  33138. height: math.unit(25, "feet")
  33139. },
  33140. ]
  33141. ))
  33142. characterMakers.push(() => makeCharacter(
  33143. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33144. {
  33145. front: {
  33146. height: math.unit(5 + 10/12, "feet"),
  33147. name: "Front",
  33148. image: {
  33149. source: "./media/characters/argon/front.svg",
  33150. extra: 2009/1935,
  33151. bottom: 118/2127
  33152. }
  33153. },
  33154. back: {
  33155. height: math.unit(5 + 10/12, "feet"),
  33156. name: "Back",
  33157. image: {
  33158. source: "./media/characters/argon/back.svg",
  33159. extra: 2047/1992,
  33160. bottom: 20/2067
  33161. }
  33162. },
  33163. frontDressed: {
  33164. height: math.unit(5 + 10/12, "feet"),
  33165. name: "Front (Dressed)",
  33166. image: {
  33167. source: "./media/characters/argon/front-dressed.svg",
  33168. extra: 2009/1935,
  33169. bottom: 118/2127
  33170. }
  33171. },
  33172. },
  33173. [
  33174. {
  33175. name: "Normal",
  33176. height: math.unit(5 + 10/12, "feet"),
  33177. default: true
  33178. },
  33179. ]
  33180. ))
  33181. characterMakers.push(() => makeCharacter(
  33182. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33183. {
  33184. front: {
  33185. height: math.unit(8 + 6/12, "feet"),
  33186. weight: math.unit(1150, "lb"),
  33187. name: "Front",
  33188. image: {
  33189. source: "./media/characters/kichi/front.svg",
  33190. extra: 1267/1164,
  33191. bottom: 61/1328
  33192. }
  33193. },
  33194. back: {
  33195. height: math.unit(8 + 6/12, "feet"),
  33196. weight: math.unit(1150, "lb"),
  33197. name: "Back",
  33198. image: {
  33199. source: "./media/characters/kichi/back.svg",
  33200. extra: 1273/1166,
  33201. bottom: 33/1306
  33202. }
  33203. },
  33204. },
  33205. [
  33206. {
  33207. name: "Normal",
  33208. height: math.unit(8 + 6/12, "feet"),
  33209. default: true
  33210. },
  33211. ]
  33212. ))
  33213. characterMakers.push(() => makeCharacter(
  33214. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33215. {
  33216. front: {
  33217. height: math.unit(6, "feet"),
  33218. weight: math.unit(210, "lb"),
  33219. name: "Front",
  33220. image: {
  33221. source: "./media/characters/manetel-greyscale/front.svg",
  33222. extra: 350/312,
  33223. bottom: 8/358
  33224. }
  33225. },
  33226. },
  33227. [
  33228. {
  33229. name: "Micro",
  33230. height: math.unit(2, "inches")
  33231. },
  33232. {
  33233. name: "Normal",
  33234. height: math.unit(6, "feet"),
  33235. default: true
  33236. },
  33237. {
  33238. name: "Minimacro",
  33239. height: math.unit(17, "feet")
  33240. },
  33241. {
  33242. name: "Macro",
  33243. height: math.unit(117, "feet")
  33244. },
  33245. ]
  33246. ))
  33247. characterMakers.push(() => makeCharacter(
  33248. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33249. {
  33250. side: {
  33251. height: math.unit(5 + 1/12, "feet"),
  33252. weight: math.unit(418, "lb"),
  33253. name: "Side",
  33254. image: {
  33255. source: "./media/characters/softpurr/side.svg",
  33256. extra: 1993/1945,
  33257. bottom: 134/2127
  33258. }
  33259. },
  33260. front: {
  33261. height: math.unit(5 + 1/12, "feet"),
  33262. weight: math.unit(418, "lb"),
  33263. name: "Front",
  33264. image: {
  33265. source: "./media/characters/softpurr/front.svg",
  33266. extra: 1950/1856,
  33267. bottom: 174/2124
  33268. }
  33269. },
  33270. paw: {
  33271. height: math.unit(1, "feet"),
  33272. name: "Paw",
  33273. image: {
  33274. source: "./media/characters/softpurr/paw.svg"
  33275. }
  33276. },
  33277. },
  33278. [
  33279. {
  33280. name: "Normal",
  33281. height: math.unit(5 + 1/12, "feet"),
  33282. default: true
  33283. },
  33284. ]
  33285. ))
  33286. characterMakers.push(() => makeCharacter(
  33287. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33288. {
  33289. front: {
  33290. height: math.unit(260, "meters"),
  33291. name: "Front",
  33292. image: {
  33293. source: "./media/characters/anahita/front.svg",
  33294. extra: 665/635,
  33295. bottom: 89/754
  33296. }
  33297. },
  33298. },
  33299. [
  33300. {
  33301. name: "Macro",
  33302. height: math.unit(260, "meters"),
  33303. default: true
  33304. },
  33305. ]
  33306. ))
  33307. characterMakers.push(() => makeCharacter(
  33308. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33309. {
  33310. front: {
  33311. height: math.unit(4 + 10/12, "feet"),
  33312. weight: math.unit(160, "lb"),
  33313. name: "Front",
  33314. image: {
  33315. source: "./media/characters/chip-mouse/front.svg",
  33316. extra: 3528/3408,
  33317. bottom: 0/3528
  33318. }
  33319. },
  33320. frontNsfw: {
  33321. height: math.unit(4 + 10/12, "feet"),
  33322. weight: math.unit(160, "lb"),
  33323. name: "Front (NSFW)",
  33324. image: {
  33325. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33326. extra: 3528/3408,
  33327. bottom: 0/3528
  33328. }
  33329. },
  33330. },
  33331. [
  33332. {
  33333. name: "Normal",
  33334. height: math.unit(4 + 10/12, "feet"),
  33335. default: true
  33336. },
  33337. ]
  33338. ))
  33339. characterMakers.push(() => makeCharacter(
  33340. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33341. {
  33342. side: {
  33343. height: math.unit(10, "feet"),
  33344. weight: math.unit(14000, "lb"),
  33345. name: "Side",
  33346. image: {
  33347. source: "./media/characters/kremm/side.svg",
  33348. extra: 1390/1053,
  33349. bottom: 90/1480
  33350. }
  33351. },
  33352. gut: {
  33353. height: math.unit(5.8, "feet"),
  33354. name: "Gut",
  33355. image: {
  33356. source: "./media/characters/kremm/gut.svg"
  33357. }
  33358. },
  33359. ass: {
  33360. height: math.unit(6.1, "feet"),
  33361. name: "Ass",
  33362. image: {
  33363. source: "./media/characters/kremm/ass.svg"
  33364. }
  33365. },
  33366. jaws: {
  33367. height: math.unit(2.2, "feet"),
  33368. name: "Jaws",
  33369. image: {
  33370. source: "./media/characters/kremm/jaws.svg"
  33371. }
  33372. },
  33373. dick: {
  33374. height: math.unit(4.26, "feet"),
  33375. name: "Dick",
  33376. image: {
  33377. source: "./media/characters/kremm/dick.svg"
  33378. }
  33379. },
  33380. },
  33381. [
  33382. {
  33383. name: "Normal",
  33384. height: math.unit(10, "feet"),
  33385. default: true
  33386. },
  33387. ]
  33388. ))
  33389. characterMakers.push(() => makeCharacter(
  33390. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33391. {
  33392. front: {
  33393. height: math.unit(30, "stories"),
  33394. name: "Front",
  33395. image: {
  33396. source: "./media/characters/kai/front.svg",
  33397. extra: 1892/1718,
  33398. bottom: 162/2054
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Macro",
  33405. height: math.unit(30, "stories"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33412. {
  33413. front: {
  33414. height: math.unit(6 + 4/12, "feet"),
  33415. weight: math.unit(145, "lb"),
  33416. name: "Front",
  33417. image: {
  33418. source: "./media/characters/sykes/front.svg",
  33419. extra: 1321 / 1187,
  33420. bottom: 66 / 1387
  33421. }
  33422. },
  33423. back: {
  33424. height: math.unit(6 + 4/12, "feet"),
  33425. weight: math.unit(145, "lb"),
  33426. name: "Back",
  33427. image: {
  33428. source: "./media/characters/sykes/back.svg",
  33429. extra: 1326/1181,
  33430. bottom: 31/1357
  33431. }
  33432. },
  33433. handBack: {
  33434. height: math.unit(0.9, "feet"),
  33435. name: "Hand (Back)",
  33436. image: {
  33437. source: "./media/characters/sykes/hand-back.svg"
  33438. }
  33439. },
  33440. handFront: {
  33441. height: math.unit(0.839, "feet"),
  33442. name: "Hand (Front)",
  33443. image: {
  33444. source: "./media/characters/sykes/hand-front.svg"
  33445. }
  33446. },
  33447. leftFoot: {
  33448. height: math.unit(1.2, "feet"),
  33449. name: "Foot (Left)",
  33450. image: {
  33451. source: "./media/characters/sykes/foot-left.svg"
  33452. }
  33453. },
  33454. rightFoot: {
  33455. height: math.unit(1.2, "feet"),
  33456. name: "Foot (Right)",
  33457. image: {
  33458. source: "./media/characters/sykes/foot-right.svg"
  33459. }
  33460. },
  33461. maw: {
  33462. height: math.unit(1.93, "feet"),
  33463. name: "Maw",
  33464. image: {
  33465. source: "./media/characters/sykes/maw.svg"
  33466. }
  33467. },
  33468. teeth: {
  33469. height: math.unit(0.51, "feet"),
  33470. name: "Teeth",
  33471. image: {
  33472. source: "./media/characters/sykes/teeth.svg"
  33473. }
  33474. },
  33475. tongue: {
  33476. height: math.unit(2.13, "feet"),
  33477. name: "Tongue",
  33478. image: {
  33479. source: "./media/characters/sykes/tongue.svg"
  33480. }
  33481. },
  33482. uvula: {
  33483. height: math.unit(0.16, "feet"),
  33484. name: "Uvula",
  33485. image: {
  33486. source: "./media/characters/sykes/uvula.svg"
  33487. }
  33488. },
  33489. collar: {
  33490. height: math.unit(0.287, "feet"),
  33491. name: "Collar",
  33492. image: {
  33493. source: "./media/characters/sykes/collar.svg"
  33494. }
  33495. },
  33496. },
  33497. [
  33498. {
  33499. name: "Shrunken",
  33500. height: math.unit(5, "inches")
  33501. },
  33502. {
  33503. name: "Normal",
  33504. height: math.unit(6 + 4 / 12, "feet"),
  33505. default: true
  33506. },
  33507. {
  33508. name: "Big",
  33509. height: math.unit(15, "feet")
  33510. },
  33511. ]
  33512. ))
  33513. characterMakers.push(() => makeCharacter(
  33514. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33515. {
  33516. front: {
  33517. height: math.unit(5 + 8/12, "feet"),
  33518. weight: math.unit(190, "lb"),
  33519. name: "Front",
  33520. image: {
  33521. source: "./media/characters/oven-otter/front.svg",
  33522. extra: 1809/1740,
  33523. bottom: 181/1990
  33524. }
  33525. },
  33526. back: {
  33527. height: math.unit(5 + 8/12, "feet"),
  33528. weight: math.unit(190, "lb"),
  33529. name: "Back",
  33530. image: {
  33531. source: "./media/characters/oven-otter/back.svg",
  33532. extra: 1709/1635,
  33533. bottom: 118/1827
  33534. }
  33535. },
  33536. hand: {
  33537. height: math.unit(1.07, "feet"),
  33538. name: "Hand",
  33539. image: {
  33540. source: "./media/characters/oven-otter/hand.svg"
  33541. }
  33542. },
  33543. beans: {
  33544. height: math.unit(1.74, "feet"),
  33545. name: "Beans",
  33546. image: {
  33547. source: "./media/characters/oven-otter/beans.svg"
  33548. }
  33549. },
  33550. },
  33551. [
  33552. {
  33553. name: "Micro",
  33554. height: math.unit(0.5, "inches")
  33555. },
  33556. {
  33557. name: "Normal",
  33558. height: math.unit(5 + 8/12, "feet"),
  33559. default: true
  33560. },
  33561. {
  33562. name: "Macro",
  33563. height: math.unit(250, "feet")
  33564. },
  33565. {
  33566. name: "Really High",
  33567. height: math.unit(420, "feet")
  33568. },
  33569. ]
  33570. ))
  33571. characterMakers.push(() => makeCharacter(
  33572. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33573. {
  33574. front: {
  33575. height: math.unit(5, "meters"),
  33576. weight: math.unit(292000000000000, "kg"),
  33577. name: "Front",
  33578. image: {
  33579. source: "./media/characters/devourer/front.svg",
  33580. extra: 1800/1733,
  33581. bottom: 211/2011
  33582. }
  33583. },
  33584. maw: {
  33585. height: math.unit(1.1, "meter"),
  33586. name: "Maw",
  33587. image: {
  33588. source: "./media/characters/devourer/maw.svg"
  33589. }
  33590. },
  33591. },
  33592. [
  33593. {
  33594. name: "Small",
  33595. height: math.unit(3, "meters")
  33596. },
  33597. {
  33598. name: "Large",
  33599. height: math.unit(5, "meters"),
  33600. default: true
  33601. },
  33602. ]
  33603. ))
  33604. characterMakers.push(() => makeCharacter(
  33605. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33606. {
  33607. front: {
  33608. height: math.unit(6, "feet"),
  33609. weight: math.unit(400, "lb"),
  33610. name: "Front",
  33611. image: {
  33612. source: "./media/characters/ellarby/front.svg",
  33613. extra: 1909/1763,
  33614. bottom: 80/1989
  33615. }
  33616. },
  33617. back: {
  33618. height: math.unit(6, "feet"),
  33619. weight: math.unit(400, "lb"),
  33620. name: "Back",
  33621. image: {
  33622. source: "./media/characters/ellarby/back.svg",
  33623. extra: 1914/1784,
  33624. bottom: 172/2086
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Mischief",
  33631. height: math.unit(18, "inches")
  33632. },
  33633. {
  33634. name: "Trouble",
  33635. height: math.unit(12, "feet")
  33636. },
  33637. {
  33638. name: "Havoc",
  33639. height: math.unit(200, "feet"),
  33640. default: true
  33641. },
  33642. {
  33643. name: "Pandemonium",
  33644. height: math.unit(1, "mile")
  33645. },
  33646. {
  33647. name: "Catastrophe",
  33648. height: math.unit(100, "miles")
  33649. },
  33650. ]
  33651. ))
  33652. characterMakers.push(() => makeCharacter(
  33653. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33654. {
  33655. front: {
  33656. height: math.unit(4.7, "meters"),
  33657. weight: math.unit(6500, "kg"),
  33658. name: "Front",
  33659. image: {
  33660. source: "./media/characters/vex/front.svg",
  33661. extra: 1288/1140,
  33662. bottom: 100/1388
  33663. }
  33664. },
  33665. },
  33666. [
  33667. {
  33668. name: "Normal",
  33669. height: math.unit(4.7, "meters"),
  33670. default: true
  33671. },
  33672. ]
  33673. ))
  33674. characterMakers.push(() => makeCharacter(
  33675. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33676. {
  33677. normal: {
  33678. height: math.unit(6, "feet"),
  33679. weight: math.unit(350, "lb"),
  33680. name: "Normal",
  33681. image: {
  33682. source: "./media/characters/teshy/normal.svg",
  33683. extra: 1795/1735,
  33684. bottom: 16/1811
  33685. }
  33686. },
  33687. monsterFront: {
  33688. height: math.unit(12, "feet"),
  33689. weight: math.unit(4700, "lb"),
  33690. name: "Monster (Front)",
  33691. image: {
  33692. source: "./media/characters/teshy/monster-front.svg",
  33693. extra: 2042/2034,
  33694. bottom: 128/2170
  33695. }
  33696. },
  33697. monsterSide: {
  33698. height: math.unit(12, "feet"),
  33699. weight: math.unit(4700, "lb"),
  33700. name: "Monster (Side)",
  33701. image: {
  33702. source: "./media/characters/teshy/monster-side.svg",
  33703. extra: 2067/2056,
  33704. bottom: 70/2137
  33705. }
  33706. },
  33707. monsterBack: {
  33708. height: math.unit(12, "feet"),
  33709. weight: math.unit(4700, "lb"),
  33710. name: "Monster (Back)",
  33711. image: {
  33712. source: "./media/characters/teshy/monster-back.svg",
  33713. extra: 1921/1914,
  33714. bottom: 171/2092
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Normal",
  33721. height: math.unit(6, "feet"),
  33722. default: true
  33723. },
  33724. ]
  33725. ))
  33726. characterMakers.push(() => makeCharacter(
  33727. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33728. {
  33729. front: {
  33730. height: math.unit(6, "feet"),
  33731. name: "Front",
  33732. image: {
  33733. source: "./media/characters/ramey/front.svg",
  33734. extra: 790/787,
  33735. bottom: 27/817
  33736. }
  33737. },
  33738. },
  33739. [
  33740. {
  33741. name: "Normal",
  33742. height: math.unit(6, "feet"),
  33743. default: true
  33744. },
  33745. ]
  33746. ))
  33747. characterMakers.push(() => makeCharacter(
  33748. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33749. {
  33750. front: {
  33751. height: math.unit(5 + 5/12, "feet"),
  33752. weight: math.unit(120, "lb"),
  33753. name: "Front",
  33754. image: {
  33755. source: "./media/characters/phirae/front.svg",
  33756. extra: 2491/2436,
  33757. bottom: 38/2529
  33758. }
  33759. },
  33760. },
  33761. [
  33762. {
  33763. name: "Normal",
  33764. height: math.unit(5 + 5/12, "feet"),
  33765. default: true
  33766. },
  33767. ]
  33768. ))
  33769. characterMakers.push(() => makeCharacter(
  33770. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33771. {
  33772. front: {
  33773. height: math.unit(6, "feet"),
  33774. weight: math.unit(150, "lb"),
  33775. name: "Front",
  33776. image: {
  33777. source: "./media/characters/stagglas/front.svg",
  33778. extra: 962/882,
  33779. bottom: 53/1015
  33780. }
  33781. },
  33782. },
  33783. [
  33784. {
  33785. name: "Normal",
  33786. height: math.unit(5 + 3/12, "feet"),
  33787. default: true
  33788. },
  33789. ]
  33790. ))
  33791. characterMakers.push(() => makeCharacter(
  33792. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33793. {
  33794. front: {
  33795. height: math.unit(5 + 4/12, "feet"),
  33796. weight: math.unit(145, "lb"),
  33797. name: "Front",
  33798. image: {
  33799. source: "./media/characters/starra/front.svg",
  33800. extra: 1790/1691,
  33801. bottom: 91/1881
  33802. }
  33803. },
  33804. },
  33805. [
  33806. {
  33807. name: "Normal",
  33808. height: math.unit(5 + 4/12, "feet"),
  33809. default: true
  33810. },
  33811. ]
  33812. ))
  33813. characterMakers.push(() => makeCharacter(
  33814. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33815. {
  33816. front: {
  33817. height: math.unit(2.2, "meters"),
  33818. name: "Front",
  33819. image: {
  33820. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33821. extra: 1194/1005,
  33822. bottom: 25/1219
  33823. }
  33824. },
  33825. },
  33826. [
  33827. {
  33828. name: "Normal",
  33829. height: math.unit(2.2, "meters"),
  33830. default: true
  33831. },
  33832. ]
  33833. ))
  33834. characterMakers.push(() => makeCharacter(
  33835. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33836. {
  33837. side: {
  33838. height: math.unit(8 + 2/12, "feet"),
  33839. weight: math.unit(1240, "lb"),
  33840. name: "Side",
  33841. image: {
  33842. source: "./media/characters/mika-valentine/side.svg",
  33843. extra: 2670/2501,
  33844. bottom: 250/2920
  33845. }
  33846. },
  33847. },
  33848. [
  33849. {
  33850. name: "Normal",
  33851. height: math.unit(8 + 2/12, "feet"),
  33852. default: true
  33853. },
  33854. ]
  33855. ))
  33856. characterMakers.push(() => makeCharacter(
  33857. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33858. {
  33859. front: {
  33860. height: math.unit(7 + 2/12, "feet"),
  33861. name: "Front",
  33862. image: {
  33863. source: "./media/characters/xoltol/front.svg",
  33864. extra: 2212/2124,
  33865. bottom: 84/2296
  33866. }
  33867. },
  33868. side: {
  33869. height: math.unit(7 + 2/12, "feet"),
  33870. name: "Side",
  33871. image: {
  33872. source: "./media/characters/xoltol/side.svg",
  33873. extra: 2273/2197,
  33874. bottom: 26/2299
  33875. }
  33876. },
  33877. hand: {
  33878. height: math.unit(2.5, "feet"),
  33879. name: "Hand",
  33880. image: {
  33881. source: "./media/characters/xoltol/hand.svg"
  33882. }
  33883. },
  33884. },
  33885. [
  33886. {
  33887. name: "Small-ish",
  33888. height: math.unit(5 + 11/12, "feet")
  33889. },
  33890. {
  33891. name: "Normal",
  33892. height: math.unit(7 + 2/12, "feet")
  33893. },
  33894. {
  33895. name: "\"Macro\"",
  33896. height: math.unit(14 + 9/12, "feet"),
  33897. default: true
  33898. },
  33899. {
  33900. name: "Alternate Height",
  33901. height: math.unit(20, "feet")
  33902. },
  33903. {
  33904. name: "Actually Macro",
  33905. height: math.unit(100, "feet")
  33906. },
  33907. ]
  33908. ))
  33909. characterMakers.push(() => makeCharacter(
  33910. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33911. {
  33912. front: {
  33913. height: math.unit(5 + 2/12, "feet"),
  33914. name: "Front",
  33915. image: {
  33916. source: "./media/characters/kotetsu-redwood/front.svg",
  33917. extra: 1053/942,
  33918. bottom: 60/1113
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(5 + 2/12, "feet"),
  33926. default: true
  33927. },
  33928. ]
  33929. ))
  33930. characterMakers.push(() => makeCharacter(
  33931. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33932. {
  33933. front: {
  33934. height: math.unit(2.4, "meters"),
  33935. weight: math.unit(125, "kg"),
  33936. name: "Front",
  33937. image: {
  33938. source: "./media/characters/lilith/front.svg",
  33939. extra: 1590/1513,
  33940. bottom: 203/1793
  33941. }
  33942. },
  33943. },
  33944. [
  33945. {
  33946. name: "Humanoid",
  33947. height: math.unit(2.4, "meters")
  33948. },
  33949. {
  33950. name: "Normal",
  33951. height: math.unit(6, "meters"),
  33952. default: true
  33953. },
  33954. {
  33955. name: "Largest",
  33956. height: math.unit(55, "meters")
  33957. },
  33958. ]
  33959. ))
  33960. characterMakers.push(() => makeCharacter(
  33961. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33962. {
  33963. front: {
  33964. height: math.unit(8 + 4/12, "feet"),
  33965. weight: math.unit(535, "lb"),
  33966. name: "Front",
  33967. image: {
  33968. source: "./media/characters/beh'kah-bolger/front.svg",
  33969. extra: 1660/1603,
  33970. bottom: 37/1697
  33971. }
  33972. },
  33973. },
  33974. [
  33975. {
  33976. name: "Normal",
  33977. height: math.unit(8 + 4/12, "feet"),
  33978. default: true
  33979. },
  33980. {
  33981. name: "Kaiju",
  33982. height: math.unit(250, "feet")
  33983. },
  33984. {
  33985. name: "Still Growing",
  33986. height: math.unit(10, "miles")
  33987. },
  33988. {
  33989. name: "Continental",
  33990. height: math.unit(5000, "miles")
  33991. },
  33992. {
  33993. name: "Final Form",
  33994. height: math.unit(2500000, "miles")
  33995. },
  33996. ]
  33997. ))
  33998. characterMakers.push(() => makeCharacter(
  33999. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34000. {
  34001. front: {
  34002. height: math.unit(7 + 2/12, "feet"),
  34003. weight: math.unit(230, "kg"),
  34004. name: "Front",
  34005. image: {
  34006. source: "./media/characters/tatyana-milewska/front.svg",
  34007. extra: 1199/1150,
  34008. bottom: 86/1285
  34009. }
  34010. },
  34011. },
  34012. [
  34013. {
  34014. name: "Normal",
  34015. height: math.unit(7 + 2/12, "feet"),
  34016. default: true
  34017. },
  34018. {
  34019. name: "Big",
  34020. height: math.unit(12, "feet")
  34021. },
  34022. {
  34023. name: "Minimacro",
  34024. height: math.unit(20, "feet")
  34025. },
  34026. {
  34027. name: "Macro",
  34028. height: math.unit(120, "feet")
  34029. },
  34030. ]
  34031. ))
  34032. characterMakers.push(() => makeCharacter(
  34033. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34034. {
  34035. front: {
  34036. height: math.unit(7 + 8/12, "feet"),
  34037. weight: math.unit(152, "kg"),
  34038. name: "Front",
  34039. image: {
  34040. source: "./media/characters/helen-arri/front.svg",
  34041. extra: 440/423,
  34042. bottom: 14/454
  34043. }
  34044. },
  34045. back: {
  34046. height: math.unit(7 + 8/12, "feet"),
  34047. weight: math.unit(152, "kg"),
  34048. name: "Back",
  34049. image: {
  34050. source: "./media/characters/helen-arri/back.svg",
  34051. extra: 443/426,
  34052. bottom: 8/451
  34053. }
  34054. },
  34055. },
  34056. [
  34057. {
  34058. name: "Normal",
  34059. height: math.unit(7 + 8/12, "feet"),
  34060. default: true
  34061. },
  34062. {
  34063. name: "Big",
  34064. height: math.unit(14, "feet")
  34065. },
  34066. {
  34067. name: "Minimacro",
  34068. height: math.unit(24, "feet")
  34069. },
  34070. {
  34071. name: "Macro",
  34072. height: math.unit(140, "feet")
  34073. },
  34074. ]
  34075. ))
  34076. characterMakers.push(() => makeCharacter(
  34077. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34078. {
  34079. front: {
  34080. height: math.unit(6, "meters"),
  34081. name: "Front",
  34082. image: {
  34083. source: "./media/characters/ehanu-rehu/front.svg",
  34084. extra: 1800/1800,
  34085. bottom: 59/1859
  34086. }
  34087. },
  34088. },
  34089. [
  34090. {
  34091. name: "Normal",
  34092. height: math.unit(6, "meters"),
  34093. default: true
  34094. },
  34095. ]
  34096. ))
  34097. characterMakers.push(() => makeCharacter(
  34098. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34099. {
  34100. front: {
  34101. height: math.unit(7 + 3/12, "feet"),
  34102. name: "Front",
  34103. image: {
  34104. source: "./media/characters/renholder/front.svg",
  34105. extra: 3096/2960,
  34106. bottom: 250/3346
  34107. }
  34108. },
  34109. },
  34110. [
  34111. {
  34112. name: "Normal Bat",
  34113. height: math.unit(7 + 3/12, "feet"),
  34114. default: true
  34115. },
  34116. {
  34117. name: "Slightly Tall Bat",
  34118. height: math.unit(100, "feet")
  34119. },
  34120. {
  34121. name: "Big Bat",
  34122. height: math.unit(1000, "feet")
  34123. },
  34124. {
  34125. name: "City-Sized Bat",
  34126. height: math.unit(200000, "feet")
  34127. },
  34128. {
  34129. name: "Bigger Bat",
  34130. height: math.unit(10000, "miles")
  34131. },
  34132. {
  34133. name: "Solar Sized Bat",
  34134. height: math.unit(100, "AU")
  34135. },
  34136. {
  34137. name: "Galactic Bat",
  34138. height: math.unit(200000, "lightyears")
  34139. },
  34140. {
  34141. name: "Universally Known Bat",
  34142. height: math.unit(1, "universe")
  34143. },
  34144. ]
  34145. ))
  34146. characterMakers.push(() => makeCharacter(
  34147. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34148. {
  34149. front: {
  34150. height: math.unit(6 + 11/12, "feet"),
  34151. weight: math.unit(250, "lb"),
  34152. name: "Front",
  34153. image: {
  34154. source: "./media/characters/cookiecat/front.svg",
  34155. extra: 893/827,
  34156. bottom: 14/907
  34157. }
  34158. },
  34159. },
  34160. [
  34161. {
  34162. name: "Micro",
  34163. height: math.unit(3, "inches")
  34164. },
  34165. {
  34166. name: "Normal",
  34167. height: math.unit(6 + 11/12, "feet"),
  34168. default: true
  34169. },
  34170. {
  34171. name: "Macro",
  34172. height: math.unit(100, "feet")
  34173. },
  34174. {
  34175. name: "Macro+",
  34176. height: math.unit(404, "feet")
  34177. },
  34178. {
  34179. name: "Megamacro",
  34180. height: math.unit(165, "miles")
  34181. },
  34182. {
  34183. name: "Planetary",
  34184. height: math.unit(4600, "miles")
  34185. },
  34186. ]
  34187. ))
  34188. characterMakers.push(() => makeCharacter(
  34189. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34190. {
  34191. front: {
  34192. height: math.unit(10 + 3/12, "feet"),
  34193. weight: math.unit(1500, "lb"),
  34194. name: "Front",
  34195. image: {
  34196. source: "./media/characters/tux-kusanagi/front.svg",
  34197. extra: 944/840,
  34198. bottom: 39/983
  34199. }
  34200. },
  34201. back: {
  34202. height: math.unit(10 + 3/12, "feet"),
  34203. weight: math.unit(1500, "lb"),
  34204. name: "Back",
  34205. image: {
  34206. source: "./media/characters/tux-kusanagi/back.svg",
  34207. extra: 941/842,
  34208. bottom: 28/969
  34209. }
  34210. },
  34211. rump: {
  34212. height: math.unit(5.25, "feet"),
  34213. name: "Rump",
  34214. image: {
  34215. source: "./media/characters/tux-kusanagi/rump.svg"
  34216. }
  34217. },
  34218. beak: {
  34219. height: math.unit(1.54, "feet"),
  34220. name: "Beak",
  34221. image: {
  34222. source: "./media/characters/tux-kusanagi/beak.svg"
  34223. }
  34224. },
  34225. },
  34226. [
  34227. {
  34228. name: "Normal",
  34229. height: math.unit(10 + 3/12, "feet"),
  34230. default: true
  34231. },
  34232. ]
  34233. ))
  34234. characterMakers.push(() => makeCharacter(
  34235. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34236. {
  34237. front: {
  34238. height: math.unit(58, "feet"),
  34239. weight: math.unit(200, "tons"),
  34240. name: "Front",
  34241. image: {
  34242. source: "./media/characters/uzarmazari/front.svg",
  34243. extra: 1575/1455,
  34244. bottom: 152/1727
  34245. }
  34246. },
  34247. back: {
  34248. height: math.unit(58, "feet"),
  34249. weight: math.unit(200, "tons"),
  34250. name: "Back",
  34251. image: {
  34252. source: "./media/characters/uzarmazari/back.svg",
  34253. extra: 1585/1510,
  34254. bottom: 157/1742
  34255. }
  34256. },
  34257. head: {
  34258. height: math.unit(26, "feet"),
  34259. name: "Head",
  34260. image: {
  34261. source: "./media/characters/uzarmazari/head.svg"
  34262. }
  34263. },
  34264. },
  34265. [
  34266. {
  34267. name: "Normal",
  34268. height: math.unit(58, "feet"),
  34269. default: true
  34270. },
  34271. ]
  34272. ))
  34273. characterMakers.push(() => makeCharacter(
  34274. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34275. {
  34276. side: {
  34277. height: math.unit(15, "feet"),
  34278. name: "Side",
  34279. image: {
  34280. source: "./media/characters/akitu/side.svg",
  34281. extra: 1421/1321,
  34282. bottom: 157/1578
  34283. }
  34284. },
  34285. front: {
  34286. height: math.unit(15, "feet"),
  34287. name: "Front",
  34288. image: {
  34289. source: "./media/characters/akitu/front.svg",
  34290. extra: 1435/1326,
  34291. bottom: 232/1667
  34292. }
  34293. },
  34294. },
  34295. [
  34296. {
  34297. name: "Normal",
  34298. height: math.unit(15, "feet"),
  34299. default: true
  34300. },
  34301. ]
  34302. ))
  34303. characterMakers.push(() => makeCharacter(
  34304. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34305. {
  34306. front: {
  34307. height: math.unit(10 + 8/12, "feet"),
  34308. name: "Front",
  34309. image: {
  34310. source: "./media/characters/azalie-croixland/front.svg",
  34311. extra: 1972/1856,
  34312. bottom: 31/2003
  34313. }
  34314. },
  34315. },
  34316. [
  34317. {
  34318. name: "Original Height",
  34319. height: math.unit(5 + 4/12, "feet")
  34320. },
  34321. {
  34322. name: "Normal Height",
  34323. height: math.unit(10 + 8/12, "feet"),
  34324. default: true
  34325. },
  34326. ]
  34327. ))
  34328. characterMakers.push(() => makeCharacter(
  34329. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34330. {
  34331. side: {
  34332. height: math.unit(7 + 1/12, "feet"),
  34333. weight: math.unit(245, "lb"),
  34334. name: "Side",
  34335. image: {
  34336. source: "./media/characters/kavus-kazian/side.svg",
  34337. extra: 349/342,
  34338. bottom: 15/364
  34339. }
  34340. },
  34341. },
  34342. [
  34343. {
  34344. name: "Normal",
  34345. height: math.unit(7 + 1/12, "feet"),
  34346. default: true
  34347. },
  34348. ]
  34349. ))
  34350. characterMakers.push(() => makeCharacter(
  34351. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34352. {
  34353. normal: {
  34354. height: math.unit(5 + 11/12, "feet"),
  34355. name: "Normal",
  34356. image: {
  34357. source: "./media/characters/moonlight-rose/normal.svg",
  34358. extra: 1979/1835,
  34359. bottom: 14/1993
  34360. }
  34361. },
  34362. demon: {
  34363. height: math.unit(5, "km"),
  34364. name: "Demon",
  34365. image: {
  34366. source: "./media/characters/moonlight-rose/demon.svg",
  34367. extra: 986/916,
  34368. bottom: 28/1014
  34369. }
  34370. },
  34371. },
  34372. [
  34373. {
  34374. name: "\"Natural\" height",
  34375. height: math.unit(5 + 11/12, "feet")
  34376. },
  34377. {
  34378. name: "Comfortable Size",
  34379. height: math.unit(40, "meters")
  34380. },
  34381. {
  34382. name: "Common Size",
  34383. height: math.unit(50, "km"),
  34384. default: true
  34385. },
  34386. {
  34387. name: "Demonic",
  34388. height: math.unit(1.24415e+21, "meters")
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34394. {
  34395. front: {
  34396. height: math.unit(16, "feet"),
  34397. weight: math.unit(610, "kg"),
  34398. name: "Front",
  34399. image: {
  34400. source: "./media/characters/huckle/front.svg",
  34401. extra: 1731/1625,
  34402. bottom: 33/1764
  34403. }
  34404. },
  34405. back: {
  34406. height: math.unit(16, "feet"),
  34407. weight: math.unit(610, "kg"),
  34408. name: "Back",
  34409. image: {
  34410. source: "./media/characters/huckle/back.svg",
  34411. extra: 1738/1651,
  34412. bottom: 37/1775
  34413. }
  34414. },
  34415. laughing: {
  34416. height: math.unit(3.75, "feet"),
  34417. name: "Laughing",
  34418. image: {
  34419. source: "./media/characters/huckle/laughing.svg"
  34420. }
  34421. },
  34422. angry: {
  34423. height: math.unit(4.15, "feet"),
  34424. name: "Angry",
  34425. image: {
  34426. source: "./media/characters/huckle/angry.svg"
  34427. }
  34428. },
  34429. },
  34430. [
  34431. {
  34432. name: "Normal",
  34433. height: math.unit(16, "feet"),
  34434. default: true
  34435. },
  34436. {
  34437. name: "Mini Macro",
  34438. height: math.unit(463, "feet")
  34439. },
  34440. {
  34441. name: "Macro",
  34442. height: math.unit(1680, "meters")
  34443. },
  34444. {
  34445. name: "Mega Macro",
  34446. height: math.unit(175, "km")
  34447. },
  34448. {
  34449. name: "Terra Macro",
  34450. height: math.unit(32, "gigameters")
  34451. },
  34452. {
  34453. name: "Multiverse+",
  34454. height: math.unit(2.56e23, "yottameters")
  34455. },
  34456. ]
  34457. ))
  34458. characterMakers.push(() => makeCharacter(
  34459. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34460. {
  34461. front: {
  34462. height: math.unit(6 + 9/12, "feet"),
  34463. weight: math.unit(280, "lb"),
  34464. name: "Front",
  34465. image: {
  34466. source: "./media/characters/candy/front.svg",
  34467. extra: 234/217,
  34468. bottom: 11/245
  34469. }
  34470. },
  34471. },
  34472. [
  34473. {
  34474. name: "Really Small",
  34475. height: math.unit(0.1, "nm")
  34476. },
  34477. {
  34478. name: "Micro",
  34479. height: math.unit(2, "inches")
  34480. },
  34481. {
  34482. name: "Normal",
  34483. height: math.unit(6 + 9/12, "feet"),
  34484. default: true
  34485. },
  34486. {
  34487. name: "Small Macro",
  34488. height: math.unit(69, "feet")
  34489. },
  34490. {
  34491. name: "Macro",
  34492. height: math.unit(160, "feet")
  34493. },
  34494. {
  34495. name: "Megamacro",
  34496. height: math.unit(22000, "miles")
  34497. },
  34498. {
  34499. name: "Gigamacro",
  34500. height: math.unit(50000, "miles")
  34501. },
  34502. ]
  34503. ))
  34504. characterMakers.push(() => makeCharacter(
  34505. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34506. {
  34507. front: {
  34508. height: math.unit(4, "feet"),
  34509. weight: math.unit(90, "lb"),
  34510. name: "Front",
  34511. image: {
  34512. source: "./media/characters/joey-mcdonald/front.svg",
  34513. extra: 1059/852,
  34514. bottom: 33/1092
  34515. }
  34516. },
  34517. back: {
  34518. height: math.unit(4, "feet"),
  34519. weight: math.unit(90, "lb"),
  34520. name: "Back",
  34521. image: {
  34522. source: "./media/characters/joey-mcdonald/back.svg",
  34523. extra: 1077/879,
  34524. bottom: 5/1082
  34525. }
  34526. },
  34527. },
  34528. [
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(4, "feet"),
  34532. default: true
  34533. },
  34534. ]
  34535. ))
  34536. characterMakers.push(() => makeCharacter(
  34537. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34538. {
  34539. front: {
  34540. height: math.unit(12 + 6/12, "feet"),
  34541. name: "Front",
  34542. image: {
  34543. source: "./media/characters/kass-lockheed/front.svg",
  34544. extra: 354/343,
  34545. bottom: 9/363
  34546. }
  34547. },
  34548. back: {
  34549. height: math.unit(12 + 6/12, "feet"),
  34550. name: "Back",
  34551. image: {
  34552. source: "./media/characters/kass-lockheed/back.svg",
  34553. extra: 364/352,
  34554. bottom: 3/367
  34555. }
  34556. },
  34557. dick: {
  34558. height: math.unit(3.12, "feet"),
  34559. name: "Dick",
  34560. image: {
  34561. source: "./media/characters/kass-lockheed/dick.svg"
  34562. }
  34563. },
  34564. head: {
  34565. height: math.unit(2.6, "feet"),
  34566. name: "Head",
  34567. image: {
  34568. source: "./media/characters/kass-lockheed/head.svg"
  34569. }
  34570. },
  34571. bleh: {
  34572. height: math.unit(2.85, "feet"),
  34573. name: "Bleh",
  34574. image: {
  34575. source: "./media/characters/kass-lockheed/bleh.svg"
  34576. }
  34577. },
  34578. smug: {
  34579. height: math.unit(2.85, "feet"),
  34580. name: "Smug",
  34581. image: {
  34582. source: "./media/characters/kass-lockheed/smug.svg"
  34583. }
  34584. },
  34585. },
  34586. [
  34587. {
  34588. name: "Normal",
  34589. height: math.unit(12 + 6/12, "feet"),
  34590. default: true
  34591. },
  34592. ]
  34593. ))
  34594. characterMakers.push(() => makeCharacter(
  34595. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34596. {
  34597. front: {
  34598. height: math.unit(6 + 2/12, "feet"),
  34599. name: "Front",
  34600. image: {
  34601. source: "./media/characters/taylor/front.svg",
  34602. extra: 639/495,
  34603. bottom: 12/651
  34604. }
  34605. },
  34606. },
  34607. [
  34608. {
  34609. name: "Normal",
  34610. height: math.unit(6 + 2/12, "feet"),
  34611. default: true
  34612. },
  34613. {
  34614. name: "Big",
  34615. height: math.unit(15, "feet")
  34616. },
  34617. {
  34618. name: "Lorg",
  34619. height: math.unit(80, "feet")
  34620. },
  34621. {
  34622. name: "Too Lorg",
  34623. height: math.unit(120, "feet")
  34624. },
  34625. ]
  34626. ))
  34627. characterMakers.push(() => makeCharacter(
  34628. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34629. {
  34630. front: {
  34631. height: math.unit(15, "feet"),
  34632. name: "Front",
  34633. image: {
  34634. source: "./media/characters/kaizer/front.svg",
  34635. extra: 1612/1436,
  34636. bottom: 43/1655
  34637. }
  34638. },
  34639. },
  34640. [
  34641. {
  34642. name: "Normal",
  34643. height: math.unit(15, "feet"),
  34644. default: true
  34645. },
  34646. ]
  34647. ))
  34648. characterMakers.push(() => makeCharacter(
  34649. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34650. {
  34651. front: {
  34652. height: math.unit(2, "feet"),
  34653. weight: math.unit(30, "lb"),
  34654. name: "Front",
  34655. image: {
  34656. source: "./media/characters/sandy/front.svg",
  34657. extra: 1439/1307,
  34658. bottom: 194/1633
  34659. }
  34660. },
  34661. },
  34662. [
  34663. {
  34664. name: "Normal",
  34665. height: math.unit(2, "feet"),
  34666. default: true
  34667. },
  34668. ]
  34669. ))
  34670. characterMakers.push(() => makeCharacter(
  34671. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34672. {
  34673. front: {
  34674. height: math.unit(3, "feet"),
  34675. name: "Front",
  34676. image: {
  34677. source: "./media/characters/mellvi/front.svg",
  34678. extra: 1831/1630,
  34679. bottom: 58/1889
  34680. }
  34681. },
  34682. },
  34683. [
  34684. {
  34685. name: "Normal",
  34686. height: math.unit(3, "feet"),
  34687. default: true
  34688. },
  34689. ]
  34690. ))
  34691. characterMakers.push(() => makeCharacter(
  34692. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34693. {
  34694. front: {
  34695. height: math.unit(5 + 11/12, "feet"),
  34696. weight: math.unit(200, "lb"),
  34697. name: "Front",
  34698. image: {
  34699. source: "./media/characters/shirou/front.svg",
  34700. extra: 2491/2383,
  34701. bottom: 189/2680
  34702. }
  34703. },
  34704. back: {
  34705. height: math.unit(5 + 11/12, "feet"),
  34706. weight: math.unit(200, "lb"),
  34707. name: "Back",
  34708. image: {
  34709. source: "./media/characters/shirou/back.svg",
  34710. extra: 2554/2450,
  34711. bottom: 76/2630
  34712. }
  34713. },
  34714. },
  34715. [
  34716. {
  34717. name: "Normal",
  34718. height: math.unit(5 + 11/12, "feet"),
  34719. default: true
  34720. },
  34721. ]
  34722. ))
  34723. characterMakers.push(() => makeCharacter(
  34724. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34725. {
  34726. front: {
  34727. height: math.unit(6 + 3/12, "feet"),
  34728. weight: math.unit(177, "lb"),
  34729. name: "Front",
  34730. image: {
  34731. source: "./media/characters/noryu/front.svg",
  34732. extra: 973/885,
  34733. bottom: 10/983
  34734. }
  34735. },
  34736. },
  34737. [
  34738. {
  34739. name: "Normal",
  34740. height: math.unit(6 + 3/12, "feet"),
  34741. default: true
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34747. {
  34748. front: {
  34749. height: math.unit(5 + 6/12, "feet"),
  34750. weight: math.unit(170, "lb"),
  34751. name: "Front",
  34752. image: {
  34753. source: "./media/characters/mevolas-rubenido/front.svg",
  34754. extra: 2109/1901,
  34755. bottom: 96/2205
  34756. }
  34757. },
  34758. },
  34759. [
  34760. {
  34761. name: "Normal",
  34762. height: math.unit(5 + 6/12, "feet"),
  34763. default: true
  34764. },
  34765. ]
  34766. ))
  34767. characterMakers.push(() => makeCharacter(
  34768. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34769. {
  34770. front: {
  34771. height: math.unit(100, "feet"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/dee/front.svg",
  34775. extra: 2153/2036,
  34776. bottom: 59/2212
  34777. }
  34778. },
  34779. back: {
  34780. height: math.unit(100, "feet"),
  34781. name: "Back",
  34782. image: {
  34783. source: "./media/characters/dee/back.svg",
  34784. extra: 2183/2058,
  34785. bottom: 75/2258
  34786. }
  34787. },
  34788. foot: {
  34789. height: math.unit(19.43, "feet"),
  34790. name: "Foot",
  34791. image: {
  34792. source: "./media/characters/dee/foot.svg"
  34793. }
  34794. },
  34795. hoof: {
  34796. height: math.unit(20.6, "feet"),
  34797. name: "Hoof",
  34798. image: {
  34799. source: "./media/characters/dee/hoof.svg"
  34800. }
  34801. },
  34802. },
  34803. [
  34804. {
  34805. name: "Macro",
  34806. height: math.unit(100, "feet"),
  34807. default: true
  34808. },
  34809. ]
  34810. ))
  34811. characterMakers.push(() => makeCharacter(
  34812. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34813. {
  34814. front: {
  34815. height: math.unit(5 + 6/12, "feet"),
  34816. name: "Front",
  34817. image: {
  34818. source: "./media/characters/teh/front.svg",
  34819. extra: 1002/847,
  34820. bottom: 62/1064
  34821. }
  34822. },
  34823. },
  34824. [
  34825. {
  34826. name: "Normal",
  34827. height: math.unit(5 + 6/12, "feet"),
  34828. default: true
  34829. },
  34830. ]
  34831. ))
  34832. characterMakers.push(() => makeCharacter(
  34833. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34834. {
  34835. side: {
  34836. height: math.unit(6 + 1/12, "feet"),
  34837. weight: math.unit(204, "lb"),
  34838. name: "Side",
  34839. image: {
  34840. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34841. extra: 974/775,
  34842. bottom: 169/1143
  34843. }
  34844. },
  34845. sitting: {
  34846. height: math.unit(6 + 2/12, "feet"),
  34847. weight: math.unit(204, "lb"),
  34848. name: "Sitting",
  34849. image: {
  34850. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34851. extra: 1175/964,
  34852. bottom: 378/1553
  34853. }
  34854. },
  34855. },
  34856. [
  34857. {
  34858. name: "Normal",
  34859. height: math.unit(6 + 1/12, "feet"),
  34860. default: true
  34861. },
  34862. ]
  34863. ))
  34864. characterMakers.push(() => makeCharacter(
  34865. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34866. {
  34867. front: {
  34868. height: math.unit(6, "inches"),
  34869. name: "Front",
  34870. image: {
  34871. source: "./media/characters/tululi/front.svg",
  34872. extra: 1997/1876,
  34873. bottom: 20/2017
  34874. }
  34875. },
  34876. },
  34877. [
  34878. {
  34879. name: "Normal",
  34880. height: math.unit(6, "inches"),
  34881. default: true
  34882. },
  34883. ]
  34884. ))
  34885. characterMakers.push(() => makeCharacter(
  34886. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34887. {
  34888. front: {
  34889. height: math.unit(4 + 1/12, "feet"),
  34890. name: "Front",
  34891. image: {
  34892. source: "./media/characters/star/front.svg",
  34893. extra: 1493/1189,
  34894. bottom: 48/1541
  34895. }
  34896. },
  34897. },
  34898. [
  34899. {
  34900. name: "Normal",
  34901. height: math.unit(4 + 1/12, "feet"),
  34902. default: true
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34908. {
  34909. front: {
  34910. height: math.unit(6 + 3/12, "feet"),
  34911. name: "Front",
  34912. image: {
  34913. source: "./media/characters/comet/front.svg",
  34914. extra: 1681/1462,
  34915. bottom: 26/1707
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Normal",
  34922. height: math.unit(6 + 3/12, "feet"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34929. {
  34930. front: {
  34931. height: math.unit(950, "feet"),
  34932. name: "Front",
  34933. image: {
  34934. source: "./media/characters/vortex/front.svg",
  34935. extra: 1497/1434,
  34936. bottom: 56/1553
  34937. }
  34938. },
  34939. maw: {
  34940. height: math.unit(285, "feet"),
  34941. name: "Maw",
  34942. image: {
  34943. source: "./media/characters/vortex/maw.svg"
  34944. }
  34945. },
  34946. },
  34947. [
  34948. {
  34949. name: "Macro",
  34950. height: math.unit(950, "feet"),
  34951. default: true
  34952. },
  34953. ]
  34954. ))
  34955. characterMakers.push(() => makeCharacter(
  34956. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34957. {
  34958. front: {
  34959. height: math.unit(600, "feet"),
  34960. weight: math.unit(0.02, "grams"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/doodle/front.svg",
  34964. extra: 1578/1413,
  34965. bottom: 37/1615
  34966. }
  34967. },
  34968. },
  34969. [
  34970. {
  34971. name: "Macro",
  34972. height: math.unit(600, "feet"),
  34973. default: true
  34974. },
  34975. ]
  34976. ))
  34977. characterMakers.push(() => makeCharacter(
  34978. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34979. {
  34980. front: {
  34981. height: math.unit(6 + 6/12, "feet"),
  34982. name: "Front",
  34983. image: {
  34984. source: "./media/characters/jai/front.svg",
  34985. extra: 1645/1534,
  34986. bottom: 115/1760
  34987. }
  34988. },
  34989. },
  34990. [
  34991. {
  34992. name: "Normal",
  34993. height: math.unit(6 + 6/12, "feet"),
  34994. default: true
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35000. {
  35001. front: {
  35002. height: math.unit(6 + 8/12, "feet"),
  35003. name: "Front",
  35004. image: {
  35005. source: "./media/characters/pixel/front.svg",
  35006. extra: 1900/1735,
  35007. bottom: 63/1963
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(6 + 8/12, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(4 + 11/12, "feet"),
  35024. weight: math.unit(111, "lb"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/rhett/front.svg",
  35028. extra: 1682/1586,
  35029. bottom: 92/1774
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Mini",
  35036. height: math.unit(1 + 1/12, "feet")
  35037. },
  35038. {
  35039. name: "Normal",
  35040. height: math.unit(4 + 11/12, "feet"),
  35041. default: true
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35047. {
  35048. front: {
  35049. height: math.unit(3 + 3/12, "feet"),
  35050. name: "Front",
  35051. image: {
  35052. source: "./media/characters/penny/front.svg",
  35053. extra: 1406/1311,
  35054. bottom: 26/1432
  35055. }
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Normal",
  35061. height: math.unit(3 + 3/12, "feet"),
  35062. default: true
  35063. },
  35064. ]
  35065. ))
  35066. characterMakers.push(() => makeCharacter(
  35067. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35068. {
  35069. front: {
  35070. height: math.unit(4 + 11/12, "feet"),
  35071. name: "Front",
  35072. image: {
  35073. source: "./media/characters/monty/front.svg",
  35074. extra: 1479/1209,
  35075. bottom: 0/1479
  35076. }
  35077. },
  35078. },
  35079. [
  35080. {
  35081. name: "Normal",
  35082. height: math.unit(4 + 11/12, "feet"),
  35083. default: true
  35084. },
  35085. ]
  35086. ))
  35087. characterMakers.push(() => makeCharacter(
  35088. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35089. {
  35090. front: {
  35091. height: math.unit(8 + 4/12, "feet"),
  35092. name: "Front",
  35093. image: {
  35094. source: "./media/characters/sterling/front.svg",
  35095. extra: 1420/1236,
  35096. bottom: 27/1447
  35097. }
  35098. },
  35099. },
  35100. [
  35101. {
  35102. name: "Normal",
  35103. height: math.unit(8 + 4/12, "feet"),
  35104. default: true
  35105. },
  35106. ]
  35107. ))
  35108. characterMakers.push(() => makeCharacter(
  35109. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35110. {
  35111. front: {
  35112. height: math.unit(15, "feet"),
  35113. name: "Front",
  35114. image: {
  35115. source: "./media/characters/marble/front.svg",
  35116. extra: 973/937,
  35117. bottom: 32/1005
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Normal",
  35124. height: math.unit(15, "feet"),
  35125. default: true
  35126. },
  35127. ]
  35128. ))
  35129. characterMakers.push(() => makeCharacter(
  35130. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35131. {
  35132. front: {
  35133. height: math.unit(3, "inches"),
  35134. name: "Front",
  35135. image: {
  35136. source: "./media/characters/powder/front.svg",
  35137. extra: 1504/1334,
  35138. bottom: 518/2022
  35139. }
  35140. },
  35141. },
  35142. [
  35143. {
  35144. name: "Normal",
  35145. height: math.unit(3, "inches"),
  35146. default: true
  35147. },
  35148. ]
  35149. ))
  35150. characterMakers.push(() => makeCharacter(
  35151. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35152. {
  35153. front: {
  35154. height: math.unit(4 + 5/12, "feet"),
  35155. name: "Front",
  35156. image: {
  35157. source: "./media/characters/joey-raccoon/front.svg",
  35158. extra: 1273/1197,
  35159. bottom: 0/1273
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Normal",
  35166. height: math.unit(4 + 5/12, "feet"),
  35167. default: true
  35168. },
  35169. ]
  35170. ))
  35171. characterMakers.push(() => makeCharacter(
  35172. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35173. {
  35174. front: {
  35175. height: math.unit(8 + 4/12, "feet"),
  35176. name: "Front",
  35177. image: {
  35178. source: "./media/characters/vick/front.svg",
  35179. extra: 2187/2118,
  35180. bottom: 47/2234
  35181. }
  35182. },
  35183. },
  35184. [
  35185. {
  35186. name: "Normal",
  35187. height: math.unit(8 + 4/12, "feet"),
  35188. default: true
  35189. },
  35190. ]
  35191. ))
  35192. characterMakers.push(() => makeCharacter(
  35193. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35194. {
  35195. front: {
  35196. height: math.unit(5 + 5/12, "feet"),
  35197. name: "Front",
  35198. image: {
  35199. source: "./media/characters/mitsy/front.svg",
  35200. extra: 1842/1695,
  35201. bottom: 0/1842
  35202. }
  35203. },
  35204. },
  35205. [
  35206. {
  35207. name: "Normal",
  35208. height: math.unit(5 + 5/12, "feet"),
  35209. default: true
  35210. },
  35211. ]
  35212. ))
  35213. characterMakers.push(() => makeCharacter(
  35214. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35215. {
  35216. front: {
  35217. height: math.unit(6 + 3/12, "feet"),
  35218. name: "Front",
  35219. image: {
  35220. source: "./media/characters/silvy/front.svg",
  35221. extra: 1995/1836,
  35222. bottom: 225/2220
  35223. }
  35224. },
  35225. },
  35226. [
  35227. {
  35228. name: "Normal",
  35229. height: math.unit(6 + 3/12, "feet"),
  35230. default: true
  35231. },
  35232. ]
  35233. ))
  35234. characterMakers.push(() => makeCharacter(
  35235. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35236. {
  35237. front: {
  35238. height: math.unit(3 + 8/12, "feet"),
  35239. name: "Front",
  35240. image: {
  35241. source: "./media/characters/rodney/front.svg",
  35242. extra: 1956/1747,
  35243. bottom: 31/1987
  35244. }
  35245. },
  35246. frontDressed: {
  35247. height: math.unit(2.9, "feet"),
  35248. name: "Front (Dressed)",
  35249. image: {
  35250. source: "./media/characters/rodney/front-dressed.svg",
  35251. extra: 1382/1241,
  35252. bottom: 385/1767
  35253. }
  35254. },
  35255. },
  35256. [
  35257. {
  35258. name: "Normal",
  35259. height: math.unit(3 + 8/12, "feet"),
  35260. default: true
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35266. {
  35267. front: {
  35268. height: math.unit(5 + 9/12, "feet"),
  35269. weight: math.unit(194, "lbs"),
  35270. name: "Front",
  35271. image: {
  35272. source: "./media/characters/zakail-sudekai/front.svg",
  35273. extra: 2696/2533,
  35274. bottom: 248/2944
  35275. }
  35276. },
  35277. maw: {
  35278. height: math.unit(1.35, "feet"),
  35279. name: "Maw",
  35280. image: {
  35281. source: "./media/characters/zakail-sudekai/maw.svg"
  35282. }
  35283. },
  35284. },
  35285. [
  35286. {
  35287. name: "Normal",
  35288. height: math.unit(5 + 9/12, "feet"),
  35289. default: true
  35290. },
  35291. ]
  35292. ))
  35293. characterMakers.push(() => makeCharacter(
  35294. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35295. {
  35296. front: {
  35297. height: math.unit(8 + 4/12, "feet"),
  35298. weight: math.unit(1200, "lb"),
  35299. name: "Front",
  35300. image: {
  35301. source: "./media/characters/eleanor/front.svg",
  35302. extra: 1226/1192,
  35303. bottom: 52/1278
  35304. }
  35305. },
  35306. back: {
  35307. height: math.unit(8 + 4/12, "feet"),
  35308. weight: math.unit(1200, "lb"),
  35309. name: "Back",
  35310. image: {
  35311. source: "./media/characters/eleanor/back.svg",
  35312. extra: 1242/1184,
  35313. bottom: 60/1302
  35314. }
  35315. },
  35316. head: {
  35317. height: math.unit(2.62, "feet"),
  35318. name: "Head",
  35319. image: {
  35320. source: "./media/characters/eleanor/head.svg"
  35321. }
  35322. },
  35323. },
  35324. [
  35325. {
  35326. name: "Normal",
  35327. height: math.unit(8 + 4/12, "feet"),
  35328. default: true
  35329. },
  35330. ]
  35331. ))
  35332. characterMakers.push(() => makeCharacter(
  35333. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35334. {
  35335. front: {
  35336. height: math.unit(8 + 4/12, "feet"),
  35337. weight: math.unit(750, "lb"),
  35338. name: "Front",
  35339. image: {
  35340. source: "./media/characters/tanya/front.svg",
  35341. extra: 1749/1615,
  35342. bottom: 33/1782
  35343. }
  35344. },
  35345. },
  35346. [
  35347. {
  35348. name: "Normal",
  35349. height: math.unit(8 + 4/12, "feet"),
  35350. default: true
  35351. },
  35352. ]
  35353. ))
  35354. characterMakers.push(() => makeCharacter(
  35355. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35356. {
  35357. front: {
  35358. height: math.unit(5, "feet"),
  35359. weight: math.unit(225, "lb"),
  35360. name: "Front",
  35361. image: {
  35362. source: "./media/characters/cindy/front.svg",
  35363. extra: 1320/1250,
  35364. bottom: 42/1362
  35365. }
  35366. },
  35367. frontDressed: {
  35368. height: math.unit(5, "feet"),
  35369. weight: math.unit(225, "lb"),
  35370. name: "Front (Dressed)",
  35371. image: {
  35372. source: "./media/characters/cindy/front-dressed.svg",
  35373. extra: 1320/1250,
  35374. bottom: 42/1362
  35375. }
  35376. },
  35377. back: {
  35378. height: math.unit(5, "feet"),
  35379. weight: math.unit(225, "lb"),
  35380. name: "Back",
  35381. image: {
  35382. source: "./media/characters/cindy/back.svg",
  35383. extra: 1384/1346,
  35384. bottom: 14/1398
  35385. }
  35386. },
  35387. },
  35388. [
  35389. {
  35390. name: "Normal",
  35391. height: math.unit(5, "feet"),
  35392. default: true
  35393. },
  35394. ]
  35395. ))
  35396. characterMakers.push(() => makeCharacter(
  35397. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35398. {
  35399. front: {
  35400. height: math.unit(6 + 9/12, "feet"),
  35401. weight: math.unit(440, "lb"),
  35402. name: "Front",
  35403. image: {
  35404. source: "./media/characters/wilbur-owen/front.svg",
  35405. extra: 1575/1448,
  35406. bottom: 72/1647
  35407. }
  35408. },
  35409. back: {
  35410. height: math.unit(6 + 9/12, "feet"),
  35411. weight: math.unit(440, "lb"),
  35412. name: "Back",
  35413. image: {
  35414. source: "./media/characters/wilbur-owen/back.svg",
  35415. extra: 1578/1445,
  35416. bottom: 36/1614
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(6 + 9/12, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(6 + 5/12, "feet"),
  35433. weight: math.unit(650, "lb"),
  35434. name: "Front",
  35435. image: {
  35436. source: "./media/characters/keegan/front.svg",
  35437. extra: 2387/2198,
  35438. bottom: 33/2420
  35439. }
  35440. },
  35441. side: {
  35442. height: math.unit(6 + 5/12, "feet"),
  35443. weight: math.unit(650, "lb"),
  35444. name: "Side",
  35445. image: {
  35446. source: "./media/characters/keegan/side.svg",
  35447. extra: 2390/2202,
  35448. bottom: 47/2437
  35449. }
  35450. },
  35451. back: {
  35452. height: math.unit(6 + 5/12, "feet"),
  35453. weight: math.unit(650, "lb"),
  35454. name: "Back",
  35455. image: {
  35456. source: "./media/characters/keegan/back.svg",
  35457. extra: 2418/2268,
  35458. bottom: 15/2433
  35459. }
  35460. },
  35461. frontSfw: {
  35462. height: math.unit(6 + 5/12, "feet"),
  35463. weight: math.unit(650, "lb"),
  35464. name: "Front (SFW)",
  35465. image: {
  35466. source: "./media/characters/keegan/front-sfw.svg",
  35467. extra: 2387/2198,
  35468. bottom: 33/2420
  35469. }
  35470. },
  35471. beans: {
  35472. height: math.unit(1.85, "feet"),
  35473. name: "Beans",
  35474. image: {
  35475. source: "./media/characters/keegan/beans.svg"
  35476. }
  35477. },
  35478. },
  35479. [
  35480. {
  35481. name: "Normal",
  35482. height: math.unit(6 + 5/12, "feet"),
  35483. default: true
  35484. },
  35485. ]
  35486. ))
  35487. characterMakers.push(() => makeCharacter(
  35488. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35489. {
  35490. front: {
  35491. height: math.unit(9, "feet"),
  35492. name: "Front",
  35493. image: {
  35494. source: "./media/characters/colton/front.svg",
  35495. extra: 1589/1326,
  35496. bottom: 139/1728
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Normal",
  35503. height: math.unit(9, "feet"),
  35504. default: true
  35505. },
  35506. ]
  35507. ))
  35508. characterMakers.push(() => makeCharacter(
  35509. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35510. {
  35511. front: {
  35512. height: math.unit(2 + 9/12, "feet"),
  35513. name: "Front",
  35514. image: {
  35515. source: "./media/characters/bora/front.svg",
  35516. extra: 1265/1250,
  35517. bottom: 24/1289
  35518. }
  35519. },
  35520. },
  35521. [
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(2 + 9/12, "feet"),
  35525. default: true
  35526. },
  35527. ]
  35528. ))
  35529. characterMakers.push(() => makeCharacter(
  35530. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35531. {
  35532. front: {
  35533. height: math.unit(8, "feet"),
  35534. name: "Front",
  35535. image: {
  35536. source: "./media/characters/myu-myu/front.svg",
  35537. extra: 1949/1857,
  35538. bottom: 90/2039
  35539. }
  35540. },
  35541. },
  35542. [
  35543. {
  35544. name: "Normal",
  35545. height: math.unit(8, "feet"),
  35546. default: true
  35547. },
  35548. {
  35549. name: "Big",
  35550. height: math.unit(15, "feet")
  35551. },
  35552. {
  35553. name: "BIG",
  35554. height: math.unit(25, "feet")
  35555. },
  35556. ]
  35557. ))
  35558. characterMakers.push(() => makeCharacter(
  35559. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35560. {
  35561. side: {
  35562. height: math.unit(7 + 5/12, "feet"),
  35563. weight: math.unit(2800, "lb"),
  35564. name: "Side",
  35565. image: {
  35566. source: "./media/characters/haloren/side.svg",
  35567. extra: 1793/409,
  35568. bottom: 59/1852
  35569. }
  35570. },
  35571. frontPaw: {
  35572. height: math.unit(2.36, "feet"),
  35573. name: "Front paw",
  35574. image: {
  35575. source: "./media/characters/haloren/front-paw.svg"
  35576. }
  35577. },
  35578. hindPaw: {
  35579. height: math.unit(3.18, "feet"),
  35580. name: "Hind paw",
  35581. image: {
  35582. source: "./media/characters/haloren/hind-paw.svg"
  35583. }
  35584. },
  35585. maw: {
  35586. height: math.unit(5.05, "feet"),
  35587. name: "Maw",
  35588. image: {
  35589. source: "./media/characters/haloren/maw.svg"
  35590. }
  35591. },
  35592. dick: {
  35593. height: math.unit(2.90, "feet"),
  35594. name: "Dick",
  35595. image: {
  35596. source: "./media/characters/haloren/dick.svg"
  35597. }
  35598. },
  35599. },
  35600. [
  35601. {
  35602. name: "Normal",
  35603. height: math.unit(7 + 5/12, "feet"),
  35604. default: true
  35605. },
  35606. {
  35607. name: "Enhanced",
  35608. height: math.unit(14 + 3/12, "feet")
  35609. },
  35610. ]
  35611. ))
  35612. characterMakers.push(() => makeCharacter(
  35613. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35614. {
  35615. front: {
  35616. height: math.unit(171, "cm"),
  35617. name: "Front",
  35618. image: {
  35619. source: "./media/characters/kimmy/front.svg",
  35620. extra: 1491/1435,
  35621. bottom: 53/1544
  35622. }
  35623. },
  35624. },
  35625. [
  35626. {
  35627. name: "Small",
  35628. height: math.unit(9, "cm")
  35629. },
  35630. {
  35631. name: "Normal",
  35632. height: math.unit(171, "cm"),
  35633. default: true
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35639. {
  35640. front: {
  35641. height: math.unit(8, "feet"),
  35642. weight: math.unit(300, "lb"),
  35643. name: "Front",
  35644. image: {
  35645. source: "./media/characters/galeboomer/front.svg",
  35646. extra: 4651/4415,
  35647. bottom: 162/4813
  35648. }
  35649. },
  35650. back: {
  35651. height: math.unit(8, "feet"),
  35652. weight: math.unit(300, "lb"),
  35653. name: "Back",
  35654. image: {
  35655. source: "./media/characters/galeboomer/back.svg",
  35656. extra: 4544/4314,
  35657. bottom: 16/4560
  35658. }
  35659. },
  35660. frontAlt: {
  35661. height: math.unit(8, "feet"),
  35662. weight: math.unit(300, "lb"),
  35663. name: "Front (Alt)",
  35664. image: {
  35665. source: "./media/characters/galeboomer/front-alt.svg",
  35666. extra: 4458/4228,
  35667. bottom: 68/4526
  35668. }
  35669. },
  35670. maw: {
  35671. height: math.unit(1.2, "feet"),
  35672. name: "Maw",
  35673. image: {
  35674. source: "./media/characters/galeboomer/maw.svg"
  35675. }
  35676. },
  35677. },
  35678. [
  35679. {
  35680. name: "Normal",
  35681. height: math.unit(8, "feet"),
  35682. default: true
  35683. },
  35684. ]
  35685. ))
  35686. characterMakers.push(() => makeCharacter(
  35687. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35688. {
  35689. front: {
  35690. height: math.unit(5 + 9/12, "feet"),
  35691. weight: math.unit(120, "lb"),
  35692. name: "Front",
  35693. image: {
  35694. source: "./media/characters/chyr/front.svg",
  35695. extra: 1323/1254,
  35696. bottom: 63/1386
  35697. }
  35698. },
  35699. back: {
  35700. height: math.unit(5 + 9/12, "feet"),
  35701. weight: math.unit(120, "lb"),
  35702. name: "Back",
  35703. image: {
  35704. source: "./media/characters/chyr/back.svg",
  35705. extra: 1323/1252,
  35706. bottom: 48/1371
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(5 + 9/12, "feet"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35720. {
  35721. front: {
  35722. height: math.unit(7, "feet"),
  35723. weight: math.unit(310, "lb"),
  35724. name: "Front",
  35725. image: {
  35726. source: "./media/characters/solarus/front.svg",
  35727. extra: 2415/2021,
  35728. bottom: 103/2518
  35729. }
  35730. },
  35731. back: {
  35732. height: math.unit(7, "feet"),
  35733. weight: math.unit(310, "lb"),
  35734. name: "Back",
  35735. image: {
  35736. source: "./media/characters/solarus/back.svg",
  35737. extra: 2463/2089,
  35738. bottom: 79/2542
  35739. }
  35740. },
  35741. },
  35742. [
  35743. {
  35744. name: "Normal",
  35745. height: math.unit(7, "feet"),
  35746. default: true
  35747. },
  35748. ]
  35749. ))
  35750. characterMakers.push(() => makeCharacter(
  35751. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35752. {
  35753. front: {
  35754. height: math.unit(16, "feet"),
  35755. name: "Front",
  35756. image: {
  35757. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35758. extra: 1844/1780,
  35759. bottom: 58/1902
  35760. }
  35761. },
  35762. winterCoat: {
  35763. height: math.unit(16, "feet"),
  35764. name: "Winter Coat",
  35765. image: {
  35766. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35767. extra: 1807/1775,
  35768. bottom: 69/1876
  35769. }
  35770. },
  35771. },
  35772. [
  35773. {
  35774. name: "Normal",
  35775. height: math.unit(16, "feet"),
  35776. default: true
  35777. },
  35778. {
  35779. name: "Chicago Size",
  35780. height: math.unit(560, "feet")
  35781. },
  35782. ]
  35783. ))
  35784. characterMakers.push(() => makeCharacter(
  35785. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35786. {
  35787. front: {
  35788. height: math.unit(11 + 6/12, "feet"),
  35789. weight: math.unit(1366, "lb"),
  35790. name: "Front",
  35791. image: {
  35792. source: "./media/characters/lexor/front.svg",
  35793. extra: 1560/1481,
  35794. bottom: 211/1771
  35795. }
  35796. },
  35797. back: {
  35798. height: math.unit(11 + 6/12, "feet"),
  35799. weight: math.unit(1366, "lb"),
  35800. name: "Back",
  35801. image: {
  35802. source: "./media/characters/lexor/back.svg",
  35803. extra: 1614/1533,
  35804. bottom: 76/1690
  35805. }
  35806. },
  35807. maw: {
  35808. height: math.unit(3, "feet"),
  35809. name: "Maw",
  35810. image: {
  35811. source: "./media/characters/lexor/maw.svg"
  35812. }
  35813. },
  35814. dick: {
  35815. height: math.unit(2.59, "feet"),
  35816. name: "Dick",
  35817. image: {
  35818. source: "./media/characters/lexor/dick.svg"
  35819. }
  35820. },
  35821. },
  35822. [
  35823. {
  35824. name: "Normal",
  35825. height: math.unit(11 + 6/12, "feet"),
  35826. default: true
  35827. },
  35828. ]
  35829. ))
  35830. characterMakers.push(() => makeCharacter(
  35831. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35832. {
  35833. front: {
  35834. height: math.unit(5 + 8/12, "feet"),
  35835. name: "Front",
  35836. image: {
  35837. source: "./media/characters/magnum/front.svg",
  35838. extra: 942/855,
  35839. bottom: 26/968
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Normal",
  35846. height: math.unit(5 + 8/12, "feet"),
  35847. default: true
  35848. },
  35849. ]
  35850. ))
  35851. characterMakers.push(() => makeCharacter(
  35852. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35853. {
  35854. front: {
  35855. height: math.unit(18 + 4/12, "feet"),
  35856. weight: math.unit(1500, "kg"),
  35857. name: "Front",
  35858. image: {
  35859. source: "./media/characters/solas-sharpsman/front.svg",
  35860. extra: 1698/1589,
  35861. bottom: 0/1698
  35862. }
  35863. },
  35864. },
  35865. [
  35866. {
  35867. name: "Normal",
  35868. height: math.unit(18 + 4/12, "feet"),
  35869. default: true
  35870. },
  35871. ]
  35872. ))
  35873. characterMakers.push(() => makeCharacter(
  35874. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35875. {
  35876. front: {
  35877. height: math.unit(5 + 5/12, "feet"),
  35878. weight: math.unit(180, "lb"),
  35879. name: "Front",
  35880. image: {
  35881. source: "./media/characters/october/front.svg",
  35882. extra: 1800/1650,
  35883. bottom: 0/1800
  35884. }
  35885. },
  35886. frontNsfw: {
  35887. height: math.unit(5 + 5/12, "feet"),
  35888. weight: math.unit(180, "lb"),
  35889. name: "Front (NSFW)",
  35890. image: {
  35891. source: "./media/characters/october/front-nsfw.svg",
  35892. extra: 1392/1307,
  35893. bottom: 42/1434
  35894. }
  35895. },
  35896. },
  35897. [
  35898. {
  35899. name: "Normal",
  35900. height: math.unit(5 + 5/12, "feet"),
  35901. default: true
  35902. },
  35903. ]
  35904. ))
  35905. characterMakers.push(() => makeCharacter(
  35906. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35907. {
  35908. front: {
  35909. height: math.unit(8 + 6/12, "feet"),
  35910. name: "Front",
  35911. image: {
  35912. source: "./media/characters/essynkardi/front.svg",
  35913. extra: 1914/1846,
  35914. bottom: 22/1936
  35915. }
  35916. },
  35917. },
  35918. [
  35919. {
  35920. name: "Normal",
  35921. height: math.unit(8 + 6/12, "feet"),
  35922. default: true
  35923. },
  35924. ]
  35925. ))
  35926. characterMakers.push(() => makeCharacter(
  35927. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35928. {
  35929. front: {
  35930. height: math.unit(6 + 6/12, "feet"),
  35931. weight: math.unit(7, "lb"),
  35932. name: "Front",
  35933. image: {
  35934. source: "./media/characters/icky/front.svg",
  35935. extra: 813/782,
  35936. bottom: 66/879
  35937. }
  35938. },
  35939. back: {
  35940. height: math.unit(6 + 6/12, "feet"),
  35941. weight: math.unit(7, "lb"),
  35942. name: "Back",
  35943. image: {
  35944. source: "./media/characters/icky/back.svg",
  35945. extra: 754/735,
  35946. bottom: 56/810
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Normal",
  35953. height: math.unit(6 + 6/12, "feet"),
  35954. default: true
  35955. },
  35956. ]
  35957. ))
  35958. characterMakers.push(() => makeCharacter(
  35959. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35960. {
  35961. front: {
  35962. height: math.unit(15, "feet"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/rojas/front.svg",
  35966. extra: 1462/1408,
  35967. bottom: 95/1557
  35968. }
  35969. },
  35970. back: {
  35971. height: math.unit(15, "feet"),
  35972. name: "Back",
  35973. image: {
  35974. source: "./media/characters/rojas/back.svg",
  35975. extra: 1023/954,
  35976. bottom: 28/1051
  35977. }
  35978. },
  35979. },
  35980. [
  35981. {
  35982. name: "Normal",
  35983. height: math.unit(15, "feet"),
  35984. default: true
  35985. },
  35986. ]
  35987. ))
  35988. characterMakers.push(() => makeCharacter(
  35989. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35990. {
  35991. frontHuman: {
  35992. height: math.unit(5 + 7/12, "feet"),
  35993. name: "Front (Human)",
  35994. image: {
  35995. source: "./media/characters/alek-dryagan/front-human.svg",
  35996. extra: 1687/1667,
  35997. bottom: 69/1756
  35998. }
  35999. },
  36000. backHuman: {
  36001. height: math.unit(5 + 7/12, "feet"),
  36002. name: "Back (Human)",
  36003. image: {
  36004. source: "./media/characters/alek-dryagan/back-human.svg",
  36005. extra: 1670/1649,
  36006. bottom: 65/1735
  36007. }
  36008. },
  36009. frontDemi: {
  36010. height: math.unit(65, "feet"),
  36011. name: "Front (Demi)",
  36012. image: {
  36013. source: "./media/characters/alek-dryagan/front-demi.svg",
  36014. extra: 1669/1642,
  36015. bottom: 49/1718
  36016. }
  36017. },
  36018. backDemi: {
  36019. height: math.unit(65, "feet"),
  36020. name: "Back (Demi)",
  36021. image: {
  36022. source: "./media/characters/alek-dryagan/back-demi.svg",
  36023. extra: 1658/1637,
  36024. bottom: 40/1698
  36025. }
  36026. },
  36027. mawHuman: {
  36028. height: math.unit(0.3, "feet"),
  36029. name: "Maw (Human)",
  36030. image: {
  36031. source: "./media/characters/alek-dryagan/maw-human.svg"
  36032. }
  36033. },
  36034. mawDemi: {
  36035. height: math.unit(3.8, "feet"),
  36036. name: "Maw (Demi)",
  36037. image: {
  36038. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36039. }
  36040. },
  36041. },
  36042. [
  36043. {
  36044. name: "Normal",
  36045. height: math.unit(5 + 7/12, "feet"),
  36046. default: true
  36047. },
  36048. ]
  36049. ))
  36050. characterMakers.push(() => makeCharacter(
  36051. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36052. {
  36053. frontHuman: {
  36054. height: math.unit(5 + 2/12, "feet"),
  36055. name: "Front (Human)",
  36056. image: {
  36057. source: "./media/characters/gen/front-human.svg",
  36058. extra: 1627/1538,
  36059. bottom: 71/1698
  36060. }
  36061. },
  36062. backHuman: {
  36063. height: math.unit(5 + 2/12, "feet"),
  36064. name: "Back (Human)",
  36065. image: {
  36066. source: "./media/characters/gen/back-human.svg",
  36067. extra: 1638/1548,
  36068. bottom: 69/1707
  36069. }
  36070. },
  36071. frontDemi: {
  36072. height: math.unit(5 + 2/12, "feet"),
  36073. name: "Front (Demi)",
  36074. image: {
  36075. source: "./media/characters/gen/front-demi.svg",
  36076. extra: 1627/1538,
  36077. bottom: 71/1698
  36078. }
  36079. },
  36080. backDemi: {
  36081. height: math.unit(5 + 2/12, "feet"),
  36082. name: "Back (Demi)",
  36083. image: {
  36084. source: "./media/characters/gen/back-demi.svg",
  36085. extra: 1638/1548,
  36086. bottom: 69/1707
  36087. }
  36088. },
  36089. },
  36090. [
  36091. {
  36092. name: "Normal",
  36093. height: math.unit(5 + 2/12, "feet"),
  36094. default: true
  36095. },
  36096. ]
  36097. ))
  36098. characterMakers.push(() => makeCharacter(
  36099. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36100. {
  36101. frontImp: {
  36102. height: math.unit(1 + 11/12, "feet"),
  36103. name: "Front (Imp)",
  36104. image: {
  36105. source: "./media/characters/max-kobold/front-imp.svg",
  36106. extra: 1238/1134,
  36107. bottom: 81/1319
  36108. }
  36109. },
  36110. backImp: {
  36111. height: math.unit(1 + 11/12, "feet"),
  36112. name: "Back (Imp)",
  36113. image: {
  36114. source: "./media/characters/max-kobold/back-imp.svg",
  36115. extra: 1334/1175,
  36116. bottom: 34/1368
  36117. }
  36118. },
  36119. frontDemi: {
  36120. height: math.unit(5 + 9/12, "feet"),
  36121. name: "Front (Demi)",
  36122. image: {
  36123. source: "./media/characters/max-kobold/front-demi.svg",
  36124. extra: 1715/1685,
  36125. bottom: 54/1769
  36126. }
  36127. },
  36128. backDemi: {
  36129. height: math.unit(5 + 9/12, "feet"),
  36130. name: "Back (Demi)",
  36131. image: {
  36132. source: "./media/characters/max-kobold/back-demi.svg",
  36133. extra: 1752/1729,
  36134. bottom: 41/1793
  36135. }
  36136. },
  36137. handImp: {
  36138. height: math.unit(0.45, "feet"),
  36139. name: "Hand (Imp)",
  36140. image: {
  36141. source: "./media/characters/max-kobold/hand.svg"
  36142. }
  36143. },
  36144. pawImp: {
  36145. height: math.unit(0.46, "feet"),
  36146. name: "Paw (Imp)",
  36147. image: {
  36148. source: "./media/characters/max-kobold/paw.svg"
  36149. }
  36150. },
  36151. handDemi: {
  36152. height: math.unit(0.80, "feet"),
  36153. name: "Hand (Demi)",
  36154. image: {
  36155. source: "./media/characters/max-kobold/hand.svg"
  36156. }
  36157. },
  36158. pawDemi: {
  36159. height: math.unit(1.1, "feet"),
  36160. name: "Paw (Demi)",
  36161. image: {
  36162. source: "./media/characters/max-kobold/paw.svg"
  36163. }
  36164. },
  36165. headImp: {
  36166. height: math.unit(1.33, "feet"),
  36167. name: "Head (Imp)",
  36168. image: {
  36169. source: "./media/characters/max-kobold/head-imp.svg"
  36170. }
  36171. },
  36172. mawImp: {
  36173. height: math.unit(0.75, "feet"),
  36174. name: "Maw (Imp)",
  36175. image: {
  36176. source: "./media/characters/max-kobold/maw-imp.svg"
  36177. }
  36178. },
  36179. mawDemi: {
  36180. height: math.unit(0.42, "feet"),
  36181. name: "Maw (Demi)",
  36182. image: {
  36183. source: "./media/characters/max-kobold/maw-demi.svg"
  36184. }
  36185. },
  36186. },
  36187. [
  36188. {
  36189. name: "Normal",
  36190. height: math.unit(1 + 11/12, "feet"),
  36191. default: true
  36192. },
  36193. ]
  36194. ))
  36195. characterMakers.push(() => makeCharacter(
  36196. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36197. {
  36198. front: {
  36199. height: math.unit(7 + 5/12, "feet"),
  36200. name: "Front",
  36201. image: {
  36202. source: "./media/characters/carbon/front.svg",
  36203. extra: 1754/1689,
  36204. bottom: 65/1819
  36205. }
  36206. },
  36207. back: {
  36208. height: math.unit(7 + 5/12, "feet"),
  36209. name: "Back",
  36210. image: {
  36211. source: "./media/characters/carbon/back.svg",
  36212. extra: 1762/1695,
  36213. bottom: 24/1786
  36214. }
  36215. },
  36216. frontGigantamax: {
  36217. height: math.unit(150, "feet"),
  36218. name: "Front (Gigantamax)",
  36219. image: {
  36220. source: "./media/characters/carbon/front-gigantamax.svg",
  36221. extra: 1826/1669,
  36222. bottom: 59/1885
  36223. }
  36224. },
  36225. backGigantamax: {
  36226. height: math.unit(150, "feet"),
  36227. name: "Back (Gigantamax)",
  36228. image: {
  36229. source: "./media/characters/carbon/back-gigantamax.svg",
  36230. extra: 1796/1653,
  36231. bottom: 53/1849
  36232. }
  36233. },
  36234. maw: {
  36235. height: math.unit(0.48, "feet"),
  36236. name: "Maw",
  36237. image: {
  36238. source: "./media/characters/carbon/maw.svg"
  36239. }
  36240. },
  36241. mawGigantamax: {
  36242. height: math.unit(7.5, "feet"),
  36243. name: "Maw (Gigantamax)",
  36244. image: {
  36245. source: "./media/characters/carbon/maw-gigantamax.svg"
  36246. }
  36247. },
  36248. },
  36249. [
  36250. {
  36251. name: "Normal",
  36252. height: math.unit(7 + 5/12, "feet"),
  36253. default: true
  36254. },
  36255. ]
  36256. ))
  36257. characterMakers.push(() => makeCharacter(
  36258. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36259. {
  36260. front: {
  36261. height: math.unit(6, "feet"),
  36262. name: "Front",
  36263. image: {
  36264. source: "./media/characters/maverick/front.svg",
  36265. extra: 1672/1661,
  36266. bottom: 85/1757
  36267. }
  36268. },
  36269. back: {
  36270. height: math.unit(6, "feet"),
  36271. name: "Back",
  36272. image: {
  36273. source: "./media/characters/maverick/back.svg",
  36274. extra: 1642/1631,
  36275. bottom: 38/1680
  36276. }
  36277. },
  36278. },
  36279. [
  36280. {
  36281. name: "Normal",
  36282. height: math.unit(6, "feet"),
  36283. default: true
  36284. },
  36285. ]
  36286. ))
  36287. characterMakers.push(() => makeCharacter(
  36288. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36289. {
  36290. front: {
  36291. height: math.unit(15, "feet"),
  36292. weight: math.unit(615, "lb"),
  36293. name: "Front",
  36294. image: {
  36295. source: "./media/characters/grockle/front.svg",
  36296. extra: 1535/1427,
  36297. bottom: 56/1591
  36298. }
  36299. },
  36300. },
  36301. [
  36302. {
  36303. name: "Normal",
  36304. height: math.unit(15, "feet"),
  36305. default: true
  36306. },
  36307. {
  36308. name: "Large",
  36309. height: math.unit(150, "feet")
  36310. },
  36311. {
  36312. name: "Macro",
  36313. height: math.unit(1876, "feet")
  36314. },
  36315. {
  36316. name: "Mega Macro",
  36317. height: math.unit(121940, "feet")
  36318. },
  36319. {
  36320. name: "Giga Macro",
  36321. height: math.unit(750, "km")
  36322. },
  36323. {
  36324. name: "Tera Macro",
  36325. height: math.unit(750000, "km")
  36326. },
  36327. {
  36328. name: "Galactic",
  36329. height: math.unit(1.4e5, "km")
  36330. },
  36331. {
  36332. name: "Godlike",
  36333. height: math.unit(9.8e280, "galaxies")
  36334. },
  36335. ]
  36336. ))
  36337. characterMakers.push(() => makeCharacter(
  36338. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36339. {
  36340. front: {
  36341. height: math.unit(11, "meters"),
  36342. weight: math.unit(20, "tonnes"),
  36343. name: "Front",
  36344. image: {
  36345. source: "./media/characters/alistair/front.svg",
  36346. extra: 1265/1009,
  36347. bottom: 93/1358
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Normal",
  36354. height: math.unit(11, "meters"),
  36355. default: true
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(5 + 8/12, "feet"),
  36364. name: "Front",
  36365. image: {
  36366. source: "./media/characters/haruka/front.svg",
  36367. extra: 2012/1952,
  36368. bottom: 0/2012
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(5 + 8/12, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36382. {
  36383. back: {
  36384. height: math.unit(9, "feet"),
  36385. name: "Back",
  36386. image: {
  36387. source: "./media/characters/vivian-sylveon/back.svg",
  36388. extra: 1853/1714,
  36389. bottom: 0/1853
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(9, "feet"),
  36397. default: true
  36398. },
  36399. {
  36400. name: "Macro",
  36401. height: math.unit(500, "feet")
  36402. },
  36403. {
  36404. name: "Megamacro",
  36405. height: math.unit(600, "miles")
  36406. },
  36407. {
  36408. name: "Gigamacro",
  36409. height: math.unit(30000, "miles")
  36410. },
  36411. ]
  36412. ))
  36413. characterMakers.push(() => makeCharacter(
  36414. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36415. {
  36416. anthro: {
  36417. height: math.unit(5 + 10/12, "feet"),
  36418. weight: math.unit(100, "lb"),
  36419. name: "Anthro",
  36420. image: {
  36421. source: "./media/characters/daiki/anthro.svg",
  36422. extra: 1115/1027,
  36423. bottom: 69/1184
  36424. }
  36425. },
  36426. feral: {
  36427. height: math.unit(200, "feet"),
  36428. name: "Feral",
  36429. image: {
  36430. source: "./media/characters/daiki/feral.svg",
  36431. extra: 1256/313,
  36432. bottom: 39/1295
  36433. }
  36434. },
  36435. feralHead: {
  36436. height: math.unit(171, "feet"),
  36437. name: "Feral Head",
  36438. image: {
  36439. source: "./media/characters/daiki/feral-head.svg"
  36440. }
  36441. },
  36442. manaDragon: {
  36443. height: math.unit(170, "meters"),
  36444. name: "Mana-dragon",
  36445. image: {
  36446. source: "./media/characters/daiki/mana-dragon.svg",
  36447. extra: 763/420,
  36448. bottom: 97/860
  36449. }
  36450. },
  36451. },
  36452. [
  36453. {
  36454. name: "Normal",
  36455. height: math.unit(5 + 10/12, "feet"),
  36456. default: true
  36457. },
  36458. ]
  36459. ))
  36460. characterMakers.push(() => makeCharacter(
  36461. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36462. {
  36463. fullyEquippedFront: {
  36464. height: math.unit(3 + 1/12, "feet"),
  36465. weight: math.unit(24, "lb"),
  36466. name: "Fully Equipped (Front)",
  36467. image: {
  36468. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36469. extra: 687/605,
  36470. bottom: 18/705
  36471. }
  36472. },
  36473. fullyEquippedBack: {
  36474. height: math.unit(3 + 1/12, "feet"),
  36475. weight: math.unit(24, "lb"),
  36476. name: "Fully Equipped (Back)",
  36477. image: {
  36478. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36479. extra: 689/590,
  36480. bottom: 18/707
  36481. }
  36482. },
  36483. dailyWear: {
  36484. height: math.unit(3 + 1/12, "feet"),
  36485. weight: math.unit(24, "lb"),
  36486. name: "Daily Wear",
  36487. image: {
  36488. source: "./media/characters/tea-spot/daily-wear.svg",
  36489. extra: 701/620,
  36490. bottom: 21/722
  36491. }
  36492. },
  36493. maidWork: {
  36494. height: math.unit(3 + 1/12, "feet"),
  36495. weight: math.unit(24, "lb"),
  36496. name: "Maid Work",
  36497. image: {
  36498. source: "./media/characters/tea-spot/maid-work.svg",
  36499. extra: 693/609,
  36500. bottom: 15/708
  36501. }
  36502. },
  36503. },
  36504. [
  36505. {
  36506. name: "Normal",
  36507. height: math.unit(3 + 1/12, "feet"),
  36508. default: true
  36509. },
  36510. ]
  36511. ))
  36512. characterMakers.push(() => makeCharacter(
  36513. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36514. {
  36515. front: {
  36516. height: math.unit(175, "cm"),
  36517. weight: math.unit(75, "kg"),
  36518. name: "Front",
  36519. image: {
  36520. source: "./media/characters/chee/front.svg",
  36521. extra: 1796/1740,
  36522. bottom: 40/1836
  36523. }
  36524. },
  36525. },
  36526. [
  36527. {
  36528. name: "Micro-Micro",
  36529. height: math.unit(1, "nm")
  36530. },
  36531. {
  36532. name: "Micro-erst",
  36533. height: math.unit(1, "micrometer")
  36534. },
  36535. {
  36536. name: "Micro-er",
  36537. height: math.unit(1, "cm")
  36538. },
  36539. {
  36540. name: "Normal",
  36541. height: math.unit(175, "cm"),
  36542. default: true
  36543. },
  36544. {
  36545. name: "Macro",
  36546. height: math.unit(100, "m")
  36547. },
  36548. {
  36549. name: "Macro-er",
  36550. height: math.unit(1, "km")
  36551. },
  36552. {
  36553. name: "Macro-erst",
  36554. height: math.unit(10, "km")
  36555. },
  36556. {
  36557. name: "Macro-Macro",
  36558. height: math.unit(100, "km")
  36559. },
  36560. ]
  36561. ))
  36562. characterMakers.push(() => makeCharacter(
  36563. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36564. {
  36565. front: {
  36566. height: math.unit(11 + 9/12, "feet"),
  36567. weight: math.unit(935, "lb"),
  36568. name: "Front",
  36569. image: {
  36570. source: "./media/characters/kingsley/front.svg",
  36571. extra: 1803/1674,
  36572. bottom: 127/1930
  36573. }
  36574. },
  36575. frontNude: {
  36576. height: math.unit(11 + 9/12, "feet"),
  36577. weight: math.unit(935, "lb"),
  36578. name: "Front (Nude)",
  36579. image: {
  36580. source: "./media/characters/kingsley/front-nude.svg",
  36581. extra: 1803/1674,
  36582. bottom: 127/1930
  36583. }
  36584. },
  36585. },
  36586. [
  36587. {
  36588. name: "Normal",
  36589. height: math.unit(11 + 9/12, "feet"),
  36590. default: true
  36591. },
  36592. ]
  36593. ))
  36594. characterMakers.push(() => makeCharacter(
  36595. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36596. {
  36597. side: {
  36598. height: math.unit(9, "feet"),
  36599. name: "Side",
  36600. image: {
  36601. source: "./media/characters/rymel/side.svg",
  36602. extra: 792/469,
  36603. bottom: 121/913
  36604. }
  36605. },
  36606. maw: {
  36607. height: math.unit(2.4, "meters"),
  36608. name: "Maw",
  36609. image: {
  36610. source: "./media/characters/rymel/maw.svg"
  36611. }
  36612. },
  36613. },
  36614. [
  36615. {
  36616. name: "House Drake",
  36617. height: math.unit(2, "feet")
  36618. },
  36619. {
  36620. name: "Reduced",
  36621. height: math.unit(4.5, "feet")
  36622. },
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(9, "feet"),
  36626. default: true
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36632. {
  36633. front: {
  36634. height: math.unit(1.74, "meters"),
  36635. weight: math.unit(55, "kg"),
  36636. name: "Front",
  36637. image: {
  36638. source: "./media/characters/rubus/front.svg",
  36639. extra: 1894/1742,
  36640. bottom: 44/1938
  36641. }
  36642. },
  36643. },
  36644. [
  36645. {
  36646. name: "Normal",
  36647. height: math.unit(1.74, "meters"),
  36648. default: true
  36649. },
  36650. ]
  36651. ))
  36652. characterMakers.push(() => makeCharacter(
  36653. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36654. {
  36655. front: {
  36656. height: math.unit(5 + 2/12, "feet"),
  36657. weight: math.unit(112, "lb"),
  36658. name: "Front",
  36659. image: {
  36660. source: "./media/characters/cassie-kingston/front.svg",
  36661. extra: 1438/1390,
  36662. bottom: 47/1485
  36663. }
  36664. },
  36665. },
  36666. [
  36667. {
  36668. name: "Normal",
  36669. height: math.unit(5 + 2/12, "feet"),
  36670. default: true
  36671. },
  36672. {
  36673. name: "Macro",
  36674. height: math.unit(128, "feet")
  36675. },
  36676. {
  36677. name: "Megamacro",
  36678. height: math.unit(2.56, "miles")
  36679. },
  36680. ]
  36681. ))
  36682. characterMakers.push(() => makeCharacter(
  36683. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36684. {
  36685. front: {
  36686. height: math.unit(7, "feet"),
  36687. name: "Front",
  36688. image: {
  36689. source: "./media/characters/fox/front.svg",
  36690. extra: 1798/1703,
  36691. bottom: 55/1853
  36692. }
  36693. },
  36694. back: {
  36695. height: math.unit(7, "feet"),
  36696. name: "Back",
  36697. image: {
  36698. source: "./media/characters/fox/back.svg",
  36699. extra: 1748/1649,
  36700. bottom: 32/1780
  36701. }
  36702. },
  36703. head: {
  36704. height: math.unit(1.95, "feet"),
  36705. name: "Head",
  36706. image: {
  36707. source: "./media/characters/fox/head.svg"
  36708. }
  36709. },
  36710. dick: {
  36711. height: math.unit(1.33, "feet"),
  36712. name: "Dick",
  36713. image: {
  36714. source: "./media/characters/fox/dick.svg"
  36715. }
  36716. },
  36717. foot: {
  36718. height: math.unit(1, "feet"),
  36719. name: "Foot",
  36720. image: {
  36721. source: "./media/characters/fox/foot.svg"
  36722. }
  36723. },
  36724. paw: {
  36725. height: math.unit(0.92, "feet"),
  36726. name: "Paw",
  36727. image: {
  36728. source: "./media/characters/fox/paw.svg"
  36729. }
  36730. },
  36731. },
  36732. [
  36733. {
  36734. name: "Small",
  36735. height: math.unit(3, "inches")
  36736. },
  36737. {
  36738. name: "\"Realistic\"",
  36739. height: math.unit(7, "feet")
  36740. },
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(150, "feet"),
  36744. default: true
  36745. },
  36746. {
  36747. name: "BIG",
  36748. height: math.unit(1200, "feet")
  36749. },
  36750. {
  36751. name: "👀",
  36752. height: math.unit(5, "miles")
  36753. },
  36754. {
  36755. name: "👀👀👀",
  36756. height: math.unit(64, "miles")
  36757. },
  36758. ]
  36759. ))
  36760. characterMakers.push(() => makeCharacter(
  36761. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36762. {
  36763. front: {
  36764. height: math.unit(625, "feet"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/asonja-rossa/front.svg",
  36768. extra: 1833/1686,
  36769. bottom: 24/1857
  36770. }
  36771. },
  36772. back: {
  36773. height: math.unit(625, "feet"),
  36774. name: "Back",
  36775. image: {
  36776. source: "./media/characters/asonja-rossa/back.svg",
  36777. extra: 1852/1753,
  36778. bottom: 26/1878
  36779. }
  36780. },
  36781. },
  36782. [
  36783. {
  36784. name: "Macro",
  36785. height: math.unit(625, "feet"),
  36786. default: true
  36787. },
  36788. ]
  36789. ))
  36790. characterMakers.push(() => makeCharacter(
  36791. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36792. {
  36793. side: {
  36794. height: math.unit(6, "feet"),
  36795. weight: math.unit(150, "lb"),
  36796. name: "Side",
  36797. image: {
  36798. source: "./media/characters/rezukii/side.svg",
  36799. extra: 979/542,
  36800. bottom: 87/1066
  36801. }
  36802. },
  36803. },
  36804. [
  36805. {
  36806. name: "Tiny",
  36807. height: math.unit(2, "feet")
  36808. },
  36809. {
  36810. name: "Smol",
  36811. height: math.unit(4, "feet")
  36812. },
  36813. {
  36814. name: "Normal",
  36815. height: math.unit(8, "feet"),
  36816. default: true
  36817. },
  36818. {
  36819. name: "Big",
  36820. height: math.unit(12, "feet")
  36821. },
  36822. {
  36823. name: "Macro",
  36824. height: math.unit(30, "feet")
  36825. },
  36826. ]
  36827. ))
  36828. characterMakers.push(() => makeCharacter(
  36829. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36830. {
  36831. front: {
  36832. height: math.unit(14, "feet"),
  36833. weight: math.unit(9.5, "tonnes"),
  36834. name: "Front",
  36835. image: {
  36836. source: "./media/characters/dawnheart/front.svg",
  36837. extra: 2792/2675,
  36838. bottom: 64/2856
  36839. }
  36840. },
  36841. },
  36842. [
  36843. {
  36844. name: "Normal",
  36845. height: math.unit(14, "feet"),
  36846. default: true
  36847. },
  36848. ]
  36849. ))
  36850. characterMakers.push(() => makeCharacter(
  36851. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36852. {
  36853. front: {
  36854. height: math.unit(1.7, "m"),
  36855. name: "Front",
  36856. image: {
  36857. source: "./media/characters/gladi/front.svg",
  36858. extra: 1460/1362,
  36859. bottom: 19/1479
  36860. }
  36861. },
  36862. back: {
  36863. height: math.unit(1.7, "m"),
  36864. name: "Back",
  36865. image: {
  36866. source: "./media/characters/gladi/back.svg",
  36867. extra: 1459/1357,
  36868. bottom: 12/1471
  36869. }
  36870. },
  36871. feral: {
  36872. height: math.unit(2.05, "m"),
  36873. name: "Feral",
  36874. image: {
  36875. source: "./media/characters/gladi/feral.svg",
  36876. extra: 821/557,
  36877. bottom: 91/912
  36878. }
  36879. },
  36880. },
  36881. [
  36882. {
  36883. name: "Shortest",
  36884. height: math.unit(70, "cm")
  36885. },
  36886. {
  36887. name: "Normal",
  36888. height: math.unit(1.7, "m")
  36889. },
  36890. {
  36891. name: "Macro",
  36892. height: math.unit(10, "m"),
  36893. default: true
  36894. },
  36895. {
  36896. name: "Tallest",
  36897. height: math.unit(200, "m")
  36898. },
  36899. ]
  36900. ))
  36901. characterMakers.push(() => makeCharacter(
  36902. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36903. {
  36904. front: {
  36905. height: math.unit(5 + 7/12, "feet"),
  36906. weight: math.unit(92, "kg"),
  36907. name: "Front",
  36908. image: {
  36909. source: "./media/characters/erdno/front.svg",
  36910. extra: 1954/1889,
  36911. bottom: 22/1976
  36912. }
  36913. },
  36914. },
  36915. [
  36916. {
  36917. name: "Normal",
  36918. height: math.unit(5 + 7/12, "feet"),
  36919. default: true
  36920. },
  36921. ]
  36922. ))
  36923. characterMakers.push(() => makeCharacter(
  36924. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36925. {
  36926. front: {
  36927. height: math.unit(5 + 10/12, "feet"),
  36928. weight: math.unit(150, "lb"),
  36929. name: "Front",
  36930. image: {
  36931. source: "./media/characters/jamie/front.svg",
  36932. extra: 1908/1768,
  36933. bottom: 19/1927
  36934. }
  36935. },
  36936. },
  36937. [
  36938. {
  36939. name: "Minimum",
  36940. height: math.unit(2, "cm")
  36941. },
  36942. {
  36943. name: "Micro",
  36944. height: math.unit(3, "inches")
  36945. },
  36946. {
  36947. name: "Normal",
  36948. height: math.unit(5 + 10/12, "feet"),
  36949. default: true
  36950. },
  36951. {
  36952. name: "Macro",
  36953. height: math.unit(150, "feet")
  36954. },
  36955. {
  36956. name: "Megamacro",
  36957. height: math.unit(10000, "m")
  36958. },
  36959. ]
  36960. ))
  36961. characterMakers.push(() => makeCharacter(
  36962. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36963. {
  36964. front: {
  36965. height: math.unit(2, "meters"),
  36966. weight: math.unit(100, "kg"),
  36967. name: "Front",
  36968. image: {
  36969. source: "./media/characters/shiron/front.svg",
  36970. extra: 2103/1985,
  36971. bottom: 98/2201
  36972. }
  36973. },
  36974. back: {
  36975. height: math.unit(2, "meters"),
  36976. weight: math.unit(100, "kg"),
  36977. name: "Back",
  36978. image: {
  36979. source: "./media/characters/shiron/back.svg",
  36980. extra: 2110/2015,
  36981. bottom: 89/2199
  36982. }
  36983. },
  36984. hand: {
  36985. height: math.unit(0.96, "feet"),
  36986. name: "Hand",
  36987. image: {
  36988. source: "./media/characters/shiron/hand.svg"
  36989. }
  36990. },
  36991. foot: {
  36992. height: math.unit(1.464, "feet"),
  36993. name: "Foot",
  36994. image: {
  36995. source: "./media/characters/shiron/foot.svg"
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(2, "meters")
  37003. },
  37004. {
  37005. name: "Macro",
  37006. height: math.unit(500, "meters"),
  37007. default: true
  37008. },
  37009. {
  37010. name: "Megamacro",
  37011. height: math.unit(20, "km")
  37012. },
  37013. ]
  37014. ))
  37015. characterMakers.push(() => makeCharacter(
  37016. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37017. {
  37018. front: {
  37019. height: math.unit(6, "feet"),
  37020. name: "Front",
  37021. image: {
  37022. source: "./media/characters/sam/front.svg",
  37023. extra: 849/826,
  37024. bottom: 19/868
  37025. }
  37026. },
  37027. },
  37028. [
  37029. {
  37030. name: "Normal",
  37031. height: math.unit(6, "feet"),
  37032. default: true
  37033. },
  37034. ]
  37035. ))
  37036. characterMakers.push(() => makeCharacter(
  37037. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37038. {
  37039. front: {
  37040. height: math.unit(8 + 4/12, "feet"),
  37041. weight: math.unit(122, "kg"),
  37042. name: "Front",
  37043. image: {
  37044. source: "./media/characters/namori-kurogawa/front.svg",
  37045. extra: 1894/1576,
  37046. bottom: 34/1928
  37047. }
  37048. },
  37049. },
  37050. [
  37051. {
  37052. name: "Normal",
  37053. height: math.unit(8 + 4/12, "feet"),
  37054. default: true
  37055. },
  37056. ]
  37057. ))
  37058. characterMakers.push(() => makeCharacter(
  37059. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37060. {
  37061. front: {
  37062. height: math.unit(9, "feet"),
  37063. weight: math.unit(621, "lb"),
  37064. name: "Front",
  37065. image: {
  37066. source: "./media/characters/unmru/front.svg",
  37067. extra: 1853/1747,
  37068. bottom: 73/1926
  37069. }
  37070. },
  37071. side: {
  37072. height: math.unit(9, "feet"),
  37073. weight: math.unit(621, "lb"),
  37074. name: "Side",
  37075. image: {
  37076. source: "./media/characters/unmru/side.svg",
  37077. extra: 1781/1671,
  37078. bottom: 127/1908
  37079. }
  37080. },
  37081. back: {
  37082. height: math.unit(9, "feet"),
  37083. weight: math.unit(621, "lb"),
  37084. name: "Back",
  37085. image: {
  37086. source: "./media/characters/unmru/back.svg",
  37087. extra: 1894/1765,
  37088. bottom: 75/1969
  37089. }
  37090. },
  37091. dick: {
  37092. height: math.unit(3, "feet"),
  37093. weight: math.unit(35, "lb"),
  37094. name: "Dick",
  37095. image: {
  37096. source: "./media/characters/unmru/dick.svg"
  37097. }
  37098. },
  37099. },
  37100. [
  37101. {
  37102. name: "Normal",
  37103. height: math.unit(9, "feet")
  37104. },
  37105. {
  37106. name: "Natural",
  37107. height: math.unit(27, "feet"),
  37108. default: true
  37109. },
  37110. {
  37111. name: "Giant",
  37112. height: math.unit(90, "feet")
  37113. },
  37114. {
  37115. name: "Kaiju",
  37116. height: math.unit(270, "feet")
  37117. },
  37118. {
  37119. name: "Macro",
  37120. height: math.unit(900, "feet")
  37121. },
  37122. {
  37123. name: "Macro+",
  37124. height: math.unit(2700, "feet")
  37125. },
  37126. {
  37127. name: "Megamacro",
  37128. height: math.unit(9000, "feet")
  37129. },
  37130. {
  37131. name: "City-Crushing",
  37132. height: math.unit(27000, "feet")
  37133. },
  37134. {
  37135. name: "Mountain-Mashing",
  37136. height: math.unit(90000, "feet")
  37137. },
  37138. {
  37139. name: "Earth-Eclipsing",
  37140. height: math.unit(2.7e8, "feet")
  37141. },
  37142. {
  37143. name: "Sol-Swallowing",
  37144. height: math.unit(9e10, "feet")
  37145. },
  37146. {
  37147. name: "Majoris-Munching",
  37148. height: math.unit(2.7e13, "feet")
  37149. },
  37150. ]
  37151. ))
  37152. characterMakers.push(() => makeCharacter(
  37153. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37154. {
  37155. front: {
  37156. height: math.unit(1, "inch"),
  37157. name: "Front",
  37158. image: {
  37159. source: "./media/characters/squeaks-mouse/front.svg",
  37160. extra: 352/308,
  37161. bottom: 25/377
  37162. }
  37163. },
  37164. },
  37165. [
  37166. {
  37167. name: "Micro",
  37168. height: math.unit(1, "inch"),
  37169. default: true
  37170. },
  37171. ]
  37172. ))
  37173. characterMakers.push(() => makeCharacter(
  37174. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37175. {
  37176. side: {
  37177. height: math.unit(35, "feet"),
  37178. name: "Side",
  37179. image: {
  37180. source: "./media/characters/sayko/side.svg",
  37181. extra: 1697/1021,
  37182. bottom: 82/1779
  37183. }
  37184. },
  37185. head: {
  37186. height: math.unit(16, "feet"),
  37187. name: "Head",
  37188. image: {
  37189. source: "./media/characters/sayko/head.svg"
  37190. }
  37191. },
  37192. forepaw: {
  37193. height: math.unit(7.85, "feet"),
  37194. name: "Forepaw",
  37195. image: {
  37196. source: "./media/characters/sayko/forepaw.svg"
  37197. }
  37198. },
  37199. hindpaw: {
  37200. height: math.unit(8.8, "feet"),
  37201. name: "Hindpaw",
  37202. image: {
  37203. source: "./media/characters/sayko/hindpaw.svg"
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(35, "feet"),
  37211. default: true
  37212. },
  37213. {
  37214. name: "Colossus",
  37215. height: math.unit(100, "meters")
  37216. },
  37217. {
  37218. name: "\"Small\" Deity",
  37219. height: math.unit(1, "km")
  37220. },
  37221. {
  37222. name: "\"Large\" Deity",
  37223. height: math.unit(15, "km")
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37229. {
  37230. front: {
  37231. height: math.unit(6, "feet"),
  37232. weight: math.unit(250, "lb"),
  37233. name: "Front",
  37234. image: {
  37235. source: "./media/characters/mukiro/front.svg",
  37236. extra: 1368/1310,
  37237. bottom: 34/1402
  37238. }
  37239. },
  37240. },
  37241. [
  37242. {
  37243. name: "Normal",
  37244. height: math.unit(6, "feet"),
  37245. default: true
  37246. },
  37247. ]
  37248. ))
  37249. characterMakers.push(() => makeCharacter(
  37250. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37251. {
  37252. front: {
  37253. height: math.unit(12 + 4/12, "feet"),
  37254. name: "Front",
  37255. image: {
  37256. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37257. extra: 1346/1311,
  37258. bottom: 65/1411
  37259. }
  37260. },
  37261. },
  37262. [
  37263. {
  37264. name: "Base",
  37265. height: math.unit(12 + 4/12, "feet"),
  37266. default: true
  37267. },
  37268. {
  37269. name: "Macro",
  37270. height: math.unit(150, "feet")
  37271. },
  37272. {
  37273. name: "Mega",
  37274. height: math.unit(2, "miles")
  37275. },
  37276. {
  37277. name: "Demi God",
  37278. height: math.unit(4, "AU")
  37279. },
  37280. {
  37281. name: "God Size",
  37282. height: math.unit(1, "universe")
  37283. },
  37284. ]
  37285. ))
  37286. characterMakers.push(() => makeCharacter(
  37287. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37288. {
  37289. front: {
  37290. height: math.unit(3 + 3/12, "feet"),
  37291. weight: math.unit(88, "lb"),
  37292. name: "Front",
  37293. image: {
  37294. source: "./media/characters/trey/front.svg",
  37295. extra: 1815/1509,
  37296. bottom: 60/1875
  37297. }
  37298. },
  37299. },
  37300. [
  37301. {
  37302. name: "Normal",
  37303. height: math.unit(3 + 3/12, "feet"),
  37304. default: true
  37305. },
  37306. ]
  37307. ))
  37308. characterMakers.push(() => makeCharacter(
  37309. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37310. {
  37311. front: {
  37312. height: math.unit(4, "meters"),
  37313. name: "Front",
  37314. image: {
  37315. source: "./media/characters/adelonda/front.svg",
  37316. extra: 1077/982,
  37317. bottom: 39/1116
  37318. }
  37319. },
  37320. back: {
  37321. height: math.unit(4, "meters"),
  37322. name: "Back",
  37323. image: {
  37324. source: "./media/characters/adelonda/back.svg",
  37325. extra: 1105/1003,
  37326. bottom: 25/1130
  37327. }
  37328. },
  37329. },
  37330. [
  37331. {
  37332. name: "Normal",
  37333. height: math.unit(4, "meters"),
  37334. default: true
  37335. },
  37336. ]
  37337. ))
  37338. characterMakers.push(() => makeCharacter(
  37339. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37340. {
  37341. front: {
  37342. height: math.unit(8 + 4/12, "feet"),
  37343. weight: math.unit(670, "lb"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/acadiel/front.svg",
  37347. extra: 1901/1595,
  37348. bottom: 142/2043
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(8 + 4/12, "feet"),
  37356. default: true
  37357. },
  37358. {
  37359. name: "Macro",
  37360. height: math.unit(200, "feet")
  37361. },
  37362. ]
  37363. ))
  37364. characterMakers.push(() => makeCharacter(
  37365. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37366. {
  37367. front: {
  37368. height: math.unit(6 + 2/12, "feet"),
  37369. weight: math.unit(185, "lb"),
  37370. name: "Front",
  37371. image: {
  37372. source: "./media/characters/kayne-ein/front.svg",
  37373. extra: 1780/1560,
  37374. bottom: 81/1861
  37375. }
  37376. },
  37377. },
  37378. [
  37379. {
  37380. name: "Normal",
  37381. height: math.unit(6 + 2/12, "feet"),
  37382. default: true
  37383. },
  37384. {
  37385. name: "Transformation Stage",
  37386. height: math.unit(15, "feet")
  37387. },
  37388. {
  37389. name: "Macro",
  37390. height: math.unit(150, "feet")
  37391. },
  37392. {
  37393. name: "Earth's Shadow",
  37394. height: math.unit(6200, "miles")
  37395. },
  37396. {
  37397. name: "Universal Demon",
  37398. height: math.unit(28e9, "parsecs")
  37399. },
  37400. {
  37401. name: "Multiverse God",
  37402. height: math.unit(3, "multiverses")
  37403. },
  37404. ]
  37405. ))
  37406. characterMakers.push(() => makeCharacter(
  37407. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37408. {
  37409. front: {
  37410. height: math.unit(5 + 5/12, "feet"),
  37411. name: "Front",
  37412. image: {
  37413. source: "./media/characters/fawn/front.svg",
  37414. extra: 1873/1731,
  37415. bottom: 95/1968
  37416. }
  37417. },
  37418. back: {
  37419. height: math.unit(5 + 5/12, "feet"),
  37420. name: "Back",
  37421. image: {
  37422. source: "./media/characters/fawn/back.svg",
  37423. extra: 1813/1700,
  37424. bottom: 14/1827
  37425. }
  37426. },
  37427. hoof: {
  37428. height: math.unit(1.45, "feet"),
  37429. name: "Hoof",
  37430. image: {
  37431. source: "./media/characters/fawn/hoof.svg"
  37432. }
  37433. },
  37434. },
  37435. [
  37436. {
  37437. name: "Normal",
  37438. height: math.unit(5 + 5/12, "feet"),
  37439. default: true
  37440. },
  37441. ]
  37442. ))
  37443. characterMakers.push(() => makeCharacter(
  37444. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37445. {
  37446. front: {
  37447. height: math.unit(2 + 5/12, "feet"),
  37448. name: "Front",
  37449. image: {
  37450. source: "./media/characters/orion/front.svg",
  37451. extra: 1366/1304,
  37452. bottom: 43/1409
  37453. }
  37454. },
  37455. paw: {
  37456. height: math.unit(0.52, "feet"),
  37457. name: "Paw",
  37458. image: {
  37459. source: "./media/characters/orion/paw.svg"
  37460. }
  37461. },
  37462. },
  37463. [
  37464. {
  37465. name: "Normal",
  37466. height: math.unit(2 + 5/12, "feet"),
  37467. default: true
  37468. },
  37469. ]
  37470. ))
  37471. characterMakers.push(() => makeCharacter(
  37472. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37473. {
  37474. front: {
  37475. height: math.unit(5 + 10/12, "feet"),
  37476. name: "Front",
  37477. image: {
  37478. source: "./media/characters/vera/front.svg",
  37479. extra: 1680/1575,
  37480. bottom: 49/1729
  37481. }
  37482. },
  37483. back: {
  37484. height: math.unit(5 + 10/12, "feet"),
  37485. name: "Back",
  37486. image: {
  37487. source: "./media/characters/vera/back.svg",
  37488. extra: 1700/1588,
  37489. bottom: 18/1718
  37490. }
  37491. },
  37492. arcanine: {
  37493. height: math.unit(6 + 8/12, "feet"),
  37494. name: "Arcanine",
  37495. image: {
  37496. source: "./media/characters/vera/arcanine.svg",
  37497. extra: 1590/1511,
  37498. bottom: 71/1661
  37499. }
  37500. },
  37501. maw: {
  37502. height: math.unit(0.82, "feet"),
  37503. name: "Maw",
  37504. image: {
  37505. source: "./media/characters/vera/maw.svg"
  37506. }
  37507. },
  37508. mawArcanine: {
  37509. height: math.unit(0.97, "feet"),
  37510. name: "Maw (Arcanine)",
  37511. image: {
  37512. source: "./media/characters/vera/maw-arcanine.svg"
  37513. }
  37514. },
  37515. paw: {
  37516. height: math.unit(0.75, "feet"),
  37517. name: "Paw",
  37518. image: {
  37519. source: "./media/characters/vera/paw.svg"
  37520. }
  37521. },
  37522. pawprint: {
  37523. height: math.unit(0.52, "feet"),
  37524. name: "Pawprint",
  37525. image: {
  37526. source: "./media/characters/vera/pawprint.svg"
  37527. }
  37528. },
  37529. },
  37530. [
  37531. {
  37532. name: "Normal",
  37533. height: math.unit(5 + 10/12, "feet"),
  37534. default: true
  37535. },
  37536. {
  37537. name: "Macro",
  37538. height: math.unit(75, "feet")
  37539. },
  37540. ]
  37541. ))
  37542. characterMakers.push(() => makeCharacter(
  37543. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37544. {
  37545. front: {
  37546. height: math.unit(4, "feet"),
  37547. weight: math.unit(40, "lb"),
  37548. name: "Front",
  37549. image: {
  37550. source: "./media/characters/orvan-rabbit/front.svg",
  37551. extra: 1896/1642,
  37552. bottom: 29/1925
  37553. }
  37554. },
  37555. },
  37556. [
  37557. {
  37558. name: "Normal",
  37559. height: math.unit(4, "feet"),
  37560. default: true
  37561. },
  37562. ]
  37563. ))
  37564. characterMakers.push(() => makeCharacter(
  37565. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37566. {
  37567. front: {
  37568. height: math.unit(6, "feet"),
  37569. weight: math.unit(168, "lb"),
  37570. name: "Front",
  37571. image: {
  37572. source: "./media/characters/lisa/front.svg",
  37573. extra: 2065/1867,
  37574. bottom: 46/2111
  37575. }
  37576. },
  37577. back: {
  37578. height: math.unit(6, "feet"),
  37579. weight: math.unit(168, "lb"),
  37580. name: "Back",
  37581. image: {
  37582. source: "./media/characters/lisa/back.svg",
  37583. extra: 1982/1838,
  37584. bottom: 29/2011
  37585. }
  37586. },
  37587. maw: {
  37588. height: math.unit(0.81, "feet"),
  37589. name: "Maw",
  37590. image: {
  37591. source: "./media/characters/lisa/maw.svg"
  37592. }
  37593. },
  37594. paw: {
  37595. height: math.unit(0.9, "feet"),
  37596. name: "Paw",
  37597. image: {
  37598. source: "./media/characters/lisa/paw.svg"
  37599. }
  37600. },
  37601. caribousune: {
  37602. height: math.unit(7 + 2/12, "feet"),
  37603. weight: math.unit(268, "lb"),
  37604. name: "Caribousune",
  37605. image: {
  37606. source: "./media/characters/lisa/caribousune.svg",
  37607. extra: 1843/1633,
  37608. bottom: 29/1872
  37609. }
  37610. },
  37611. frontCaribousune: {
  37612. height: math.unit(7 + 2/12, "feet"),
  37613. weight: math.unit(268, "lb"),
  37614. name: "Front (Caribousune)",
  37615. image: {
  37616. source: "./media/characters/lisa/front-caribousune.svg",
  37617. extra: 1818/1638,
  37618. bottom: 52/1870
  37619. }
  37620. },
  37621. sideCaribousune: {
  37622. height: math.unit(7 + 2/12, "feet"),
  37623. weight: math.unit(268, "lb"),
  37624. name: "Side (Caribousune)",
  37625. image: {
  37626. source: "./media/characters/lisa/side-caribousune.svg",
  37627. extra: 1851/1635,
  37628. bottom: 16/1867
  37629. }
  37630. },
  37631. backCaribousune: {
  37632. height: math.unit(7 + 2/12, "feet"),
  37633. weight: math.unit(268, "lb"),
  37634. name: "Back (Caribousune)",
  37635. image: {
  37636. source: "./media/characters/lisa/back-caribousune.svg",
  37637. extra: 1801/1604,
  37638. bottom: 44/1845
  37639. }
  37640. },
  37641. caribou: {
  37642. height: math.unit(7 + 2/12, "feet"),
  37643. weight: math.unit(268, "lb"),
  37644. name: "Caribou",
  37645. image: {
  37646. source: "./media/characters/lisa/caribou.svg",
  37647. extra: 1843/1633,
  37648. bottom: 29/1872
  37649. }
  37650. },
  37651. frontCaribou: {
  37652. height: math.unit(7 + 2/12, "feet"),
  37653. weight: math.unit(268, "lb"),
  37654. name: "Front (Caribou)",
  37655. image: {
  37656. source: "./media/characters/lisa/front-caribou.svg",
  37657. extra: 1818/1638,
  37658. bottom: 52/1870
  37659. }
  37660. },
  37661. sideCaribou: {
  37662. height: math.unit(7 + 2/12, "feet"),
  37663. weight: math.unit(268, "lb"),
  37664. name: "Side (Caribou)",
  37665. image: {
  37666. source: "./media/characters/lisa/side-caribou.svg",
  37667. extra: 1851/1635,
  37668. bottom: 16/1867
  37669. }
  37670. },
  37671. backCaribou: {
  37672. height: math.unit(7 + 2/12, "feet"),
  37673. weight: math.unit(268, "lb"),
  37674. name: "Back (Caribou)",
  37675. image: {
  37676. source: "./media/characters/lisa/back-caribou.svg",
  37677. extra: 1801/1604,
  37678. bottom: 44/1845
  37679. }
  37680. },
  37681. mawCaribou: {
  37682. height: math.unit(1.45, "feet"),
  37683. name: "Maw (Caribou)",
  37684. image: {
  37685. source: "./media/characters/lisa/maw-caribou.svg"
  37686. }
  37687. },
  37688. mawCaribousune: {
  37689. height: math.unit(1.45, "feet"),
  37690. name: "Maw (Caribousune)",
  37691. image: {
  37692. source: "./media/characters/lisa/maw-caribousune.svg"
  37693. }
  37694. },
  37695. pawCaribousune: {
  37696. height: math.unit(1.61, "feet"),
  37697. name: "Paw (Caribou)",
  37698. image: {
  37699. source: "./media/characters/lisa/paw-caribousune.svg"
  37700. }
  37701. },
  37702. },
  37703. [
  37704. {
  37705. name: "Normal",
  37706. height: math.unit(6, "feet")
  37707. },
  37708. {
  37709. name: "God Size",
  37710. height: math.unit(72, "feet"),
  37711. default: true
  37712. },
  37713. {
  37714. name: "Towering",
  37715. height: math.unit(288, "feet")
  37716. },
  37717. {
  37718. name: "City Size",
  37719. height: math.unit(48384, "feet")
  37720. },
  37721. {
  37722. name: "Continental",
  37723. height: math.unit(4200, "miles")
  37724. },
  37725. {
  37726. name: "Planet Eater",
  37727. height: math.unit(42, "earths")
  37728. },
  37729. {
  37730. name: "Star Swallower",
  37731. height: math.unit(42, "solarradii")
  37732. },
  37733. {
  37734. name: "System Swallower",
  37735. height: math.unit(84000, "AU")
  37736. },
  37737. {
  37738. name: "Galaxy Gobbler",
  37739. height: math.unit(42, "galaxies")
  37740. },
  37741. {
  37742. name: "Universe Devourer",
  37743. height: math.unit(42, "universes")
  37744. },
  37745. {
  37746. name: "Multiverse Muncher",
  37747. height: math.unit(42, "multiverses")
  37748. },
  37749. ]
  37750. ))
  37751. characterMakers.push(() => makeCharacter(
  37752. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37753. {
  37754. front: {
  37755. height: math.unit(36, "feet"),
  37756. name: "Front",
  37757. image: {
  37758. source: "./media/characters/shadow-rat/front.svg",
  37759. extra: 1845/1758,
  37760. bottom: 83/1928
  37761. }
  37762. },
  37763. },
  37764. [
  37765. {
  37766. name: "Macro",
  37767. height: math.unit(36, "feet"),
  37768. default: true
  37769. },
  37770. ]
  37771. ))
  37772. characterMakers.push(() => makeCharacter(
  37773. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37774. {
  37775. side: {
  37776. height: math.unit(8, "feet"),
  37777. weight: math.unit(2630, "lb"),
  37778. name: "Side",
  37779. image: {
  37780. source: "./media/characters/torallia/side.svg",
  37781. extra: 2164/2021,
  37782. bottom: 371/2535
  37783. }
  37784. },
  37785. },
  37786. [
  37787. {
  37788. name: "Mortal Interaction",
  37789. height: math.unit(8, "feet")
  37790. },
  37791. {
  37792. name: "Natural",
  37793. height: math.unit(24, "feet"),
  37794. default: true
  37795. },
  37796. {
  37797. name: "Giant",
  37798. height: math.unit(80, "feet")
  37799. },
  37800. {
  37801. name: "Kaiju",
  37802. height: math.unit(240, "feet")
  37803. },
  37804. {
  37805. name: "Macro",
  37806. height: math.unit(800, "feet")
  37807. },
  37808. {
  37809. name: "Macro+",
  37810. height: math.unit(2400, "feet")
  37811. },
  37812. {
  37813. name: "Macro++",
  37814. height: math.unit(8000, "feet")
  37815. },
  37816. {
  37817. name: "City-Crushing",
  37818. height: math.unit(24000, "feet")
  37819. },
  37820. {
  37821. name: "Mountain-Mashing",
  37822. height: math.unit(80000, "feet")
  37823. },
  37824. {
  37825. name: "District Demolisher",
  37826. height: math.unit(240000, "feet")
  37827. },
  37828. {
  37829. name: "Tri-County Terror",
  37830. height: math.unit(800000, "feet")
  37831. },
  37832. {
  37833. name: "State Smasher",
  37834. height: math.unit(2.4e6, "feet")
  37835. },
  37836. {
  37837. name: "Nation Nemesis",
  37838. height: math.unit(8e6, "feet")
  37839. },
  37840. {
  37841. name: "Continent Cracker",
  37842. height: math.unit(2.4e7, "feet")
  37843. },
  37844. {
  37845. name: "Planet-Pillaging",
  37846. height: math.unit(8e7, "feet")
  37847. },
  37848. {
  37849. name: "Earth-Eclipsing",
  37850. height: math.unit(2.4e8, "feet")
  37851. },
  37852. {
  37853. name: "Jovian-Jostling",
  37854. height: math.unit(8e8, "feet")
  37855. },
  37856. {
  37857. name: "Gas Giant Gulper",
  37858. height: math.unit(2.4e9, "feet")
  37859. },
  37860. {
  37861. name: "Astral Annihilator",
  37862. height: math.unit(8e9, "feet")
  37863. },
  37864. {
  37865. name: "Celestial Conqueror",
  37866. height: math.unit(2.4e10, "feet")
  37867. },
  37868. {
  37869. name: "Sol-Swallowing",
  37870. height: math.unit(8e10, "feet")
  37871. },
  37872. {
  37873. name: "Hunter of the Heavens",
  37874. height: math.unit(2.4e13, "feet")
  37875. },
  37876. ]
  37877. ))
  37878. characterMakers.push(() => makeCharacter(
  37879. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37880. {
  37881. front: {
  37882. height: math.unit(6 + 8/12, "feet"),
  37883. name: "Front",
  37884. image: {
  37885. source: "./media/characters/rebecca-pawlson/front.svg",
  37886. extra: 1737/1596,
  37887. bottom: 107/1844
  37888. }
  37889. },
  37890. back: {
  37891. height: math.unit(6 + 8/12, "feet"),
  37892. name: "Back",
  37893. image: {
  37894. source: "./media/characters/rebecca-pawlson/back.svg",
  37895. extra: 1702/1523,
  37896. bottom: 86/1788
  37897. }
  37898. },
  37899. },
  37900. [
  37901. {
  37902. name: "Normal",
  37903. height: math.unit(6 + 8/12, "feet")
  37904. },
  37905. {
  37906. name: "Mini Macro",
  37907. height: math.unit(10, "feet"),
  37908. default: true
  37909. },
  37910. {
  37911. name: "Macro",
  37912. height: math.unit(100, "feet")
  37913. },
  37914. {
  37915. name: "Mega Macro",
  37916. height: math.unit(2500, "feet")
  37917. },
  37918. {
  37919. name: "Giga Macro",
  37920. height: math.unit(50, "miles")
  37921. },
  37922. ]
  37923. ))
  37924. characterMakers.push(() => makeCharacter(
  37925. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37926. {
  37927. front: {
  37928. height: math.unit(7 + 6/12, "feet"),
  37929. weight: math.unit(600, "lb"),
  37930. name: "Front",
  37931. image: {
  37932. source: "./media/characters/moxie-nova/front.svg",
  37933. extra: 1734/1652,
  37934. bottom: 41/1775
  37935. }
  37936. },
  37937. },
  37938. [
  37939. {
  37940. name: "Normal",
  37941. height: math.unit(7 + 6/12, "feet"),
  37942. default: true
  37943. },
  37944. ]
  37945. ))
  37946. characterMakers.push(() => makeCharacter(
  37947. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37948. {
  37949. front: {
  37950. height: math.unit(5, "feet"),
  37951. weight: math.unit(150, "lb"),
  37952. name: "Front",
  37953. image: {
  37954. source: "./media/characters/tiffany/front.svg",
  37955. extra: 1941/1845,
  37956. bottom: 58/1999
  37957. }
  37958. },
  37959. },
  37960. [
  37961. {
  37962. name: "Normal",
  37963. height: math.unit(5, "feet"),
  37964. default: true
  37965. },
  37966. ]
  37967. ))
  37968. characterMakers.push(() => makeCharacter(
  37969. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37970. {
  37971. front: {
  37972. height: math.unit(8, "feet"),
  37973. weight: math.unit(300, "lb"),
  37974. name: "Front",
  37975. image: {
  37976. source: "./media/characters/raxinath/front.svg",
  37977. extra: 1407/1309,
  37978. bottom: 39/1446
  37979. }
  37980. },
  37981. back: {
  37982. height: math.unit(8, "feet"),
  37983. weight: math.unit(300, "lb"),
  37984. name: "Back",
  37985. image: {
  37986. source: "./media/characters/raxinath/back.svg",
  37987. extra: 1405/1315,
  37988. bottom: 9/1414
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Speck",
  37995. height: math.unit(0.5, "nm")
  37996. },
  37997. {
  37998. name: "Micro",
  37999. height: math.unit(3, "inches")
  38000. },
  38001. {
  38002. name: "Kobold",
  38003. height: math.unit(3, "feet")
  38004. },
  38005. {
  38006. name: "Normal",
  38007. height: math.unit(8, "feet"),
  38008. default: true
  38009. },
  38010. {
  38011. name: "Giant",
  38012. height: math.unit(50, "feet")
  38013. },
  38014. {
  38015. name: "Macro",
  38016. height: math.unit(1000, "feet")
  38017. },
  38018. {
  38019. name: "Megamacro",
  38020. height: math.unit(1, "mile")
  38021. },
  38022. ]
  38023. ))
  38024. characterMakers.push(() => makeCharacter(
  38025. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38026. {
  38027. front: {
  38028. height: math.unit(10, "feet"),
  38029. weight: math.unit(1442, "lb"),
  38030. name: "Front",
  38031. image: {
  38032. source: "./media/characters/mal-dragon/front.svg",
  38033. extra: 1515/1444,
  38034. bottom: 113/1628
  38035. }
  38036. },
  38037. back: {
  38038. height: math.unit(10, "feet"),
  38039. weight: math.unit(1442, "lb"),
  38040. name: "Back",
  38041. image: {
  38042. source: "./media/characters/mal-dragon/back.svg",
  38043. extra: 1527/1434,
  38044. bottom: 25/1552
  38045. }
  38046. },
  38047. },
  38048. [
  38049. {
  38050. name: "Mortal Interaction",
  38051. height: math.unit(10, "feet"),
  38052. default: true
  38053. },
  38054. {
  38055. name: "Large",
  38056. height: math.unit(30, "feet")
  38057. },
  38058. {
  38059. name: "Kaiju",
  38060. height: math.unit(300, "feet")
  38061. },
  38062. {
  38063. name: "Megamacro",
  38064. height: math.unit(10000, "feet")
  38065. },
  38066. {
  38067. name: "Continent Cracker",
  38068. height: math.unit(30000000, "feet")
  38069. },
  38070. {
  38071. name: "Sol-Swallowing",
  38072. height: math.unit(1e11, "feet")
  38073. },
  38074. {
  38075. name: "Light Universal",
  38076. height: math.unit(5, "universes")
  38077. },
  38078. {
  38079. name: "Universe Atoms",
  38080. height: math.unit(1.829e9, "universes")
  38081. },
  38082. {
  38083. name: "Light Multiversal",
  38084. height: math.unit(5, "multiverses")
  38085. },
  38086. {
  38087. name: "Multiverse Atoms",
  38088. height: math.unit(1.829e9, "multiverses")
  38089. },
  38090. {
  38091. name: "Fabric of Time",
  38092. height: math.unit(1e262, "multiverses")
  38093. },
  38094. ]
  38095. ))
  38096. characterMakers.push(() => makeCharacter(
  38097. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38098. {
  38099. front: {
  38100. height: math.unit(9, "feet"),
  38101. weight: math.unit(1050, "lb"),
  38102. name: "Front",
  38103. image: {
  38104. source: "./media/characters/tabitha/front.svg",
  38105. extra: 2083/1994,
  38106. bottom: 68/2151
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Baseline",
  38113. height: math.unit(9, "feet"),
  38114. default: true
  38115. },
  38116. {
  38117. name: "Giant",
  38118. height: math.unit(90, "feet")
  38119. },
  38120. {
  38121. name: "Macro",
  38122. height: math.unit(900, "feet")
  38123. },
  38124. {
  38125. name: "Megamacro",
  38126. height: math.unit(9000, "feet")
  38127. },
  38128. {
  38129. name: "City-Crushing",
  38130. height: math.unit(27000, "feet")
  38131. },
  38132. {
  38133. name: "Mountain-Mashing",
  38134. height: math.unit(90000, "feet")
  38135. },
  38136. {
  38137. name: "Nation Nemesis",
  38138. height: math.unit(9e6, "feet")
  38139. },
  38140. {
  38141. name: "Continent Cracker",
  38142. height: math.unit(27e6, "feet")
  38143. },
  38144. {
  38145. name: "Earth-Eclipsing",
  38146. height: math.unit(2.7e8, "feet")
  38147. },
  38148. {
  38149. name: "Gas Giant Gulper",
  38150. height: math.unit(2.7e9, "feet")
  38151. },
  38152. {
  38153. name: "Sol-Swallowing",
  38154. height: math.unit(9e10, "feet")
  38155. },
  38156. {
  38157. name: "Galaxy Gulper",
  38158. height: math.unit(9, "galaxies")
  38159. },
  38160. {
  38161. name: "Cosmos Churner",
  38162. height: math.unit(9, "universes")
  38163. },
  38164. ]
  38165. ))
  38166. characterMakers.push(() => makeCharacter(
  38167. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38168. {
  38169. front: {
  38170. height: math.unit(160, "cm"),
  38171. weight: math.unit(55, "kg"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/tow/front.svg",
  38175. extra: 1751/1722,
  38176. bottom: 74/1825
  38177. }
  38178. },
  38179. },
  38180. [
  38181. {
  38182. name: "Norm",
  38183. height: math.unit(160, "cm")
  38184. },
  38185. {
  38186. name: "Casual",
  38187. height: math.unit(3200, "m"),
  38188. default: true
  38189. },
  38190. {
  38191. name: "Show-Off",
  38192. height: math.unit(160, "km")
  38193. },
  38194. ]
  38195. ))
  38196. characterMakers.push(() => makeCharacter(
  38197. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38198. {
  38199. front: {
  38200. height: math.unit(7 + 11/12, "feet"),
  38201. weight: math.unit(342.8, "lb"),
  38202. name: "Front",
  38203. image: {
  38204. source: "./media/characters/vivian-orca-dragon/front.svg",
  38205. extra: 1890/1865,
  38206. bottom: 28/1918
  38207. }
  38208. },
  38209. },
  38210. [
  38211. {
  38212. name: "Micro",
  38213. height: math.unit(5, "inches")
  38214. },
  38215. {
  38216. name: "Normal",
  38217. height: math.unit(7 + 11/12, "feet"),
  38218. default: true
  38219. },
  38220. {
  38221. name: "Macro",
  38222. height: math.unit(395 + 7/12, "feet")
  38223. },
  38224. ]
  38225. ))
  38226. characterMakers.push(() => makeCharacter(
  38227. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38228. {
  38229. side: {
  38230. height: math.unit(10, "feet"),
  38231. weight: math.unit(1442, "lb"),
  38232. name: "Side",
  38233. image: {
  38234. source: "./media/characters/lotherakon/side.svg",
  38235. extra: 1604/1497,
  38236. bottom: 89/1693
  38237. }
  38238. },
  38239. },
  38240. [
  38241. {
  38242. name: "Mortal Interaction",
  38243. height: math.unit(10, "feet")
  38244. },
  38245. {
  38246. name: "Large",
  38247. height: math.unit(30, "feet"),
  38248. default: true
  38249. },
  38250. {
  38251. name: "Giant",
  38252. height: math.unit(100, "feet")
  38253. },
  38254. {
  38255. name: "Kaiju",
  38256. height: math.unit(300, "feet")
  38257. },
  38258. {
  38259. name: "Macro",
  38260. height: math.unit(1000, "feet")
  38261. },
  38262. {
  38263. name: "Macro+",
  38264. height: math.unit(3000, "feet")
  38265. },
  38266. {
  38267. name: "Megamacro",
  38268. height: math.unit(10000, "feet")
  38269. },
  38270. {
  38271. name: "City-Crushing",
  38272. height: math.unit(30000, "feet")
  38273. },
  38274. {
  38275. name: "Continent Cracker",
  38276. height: math.unit(30e6, "feet")
  38277. },
  38278. {
  38279. name: "Earth Eclipsing",
  38280. height: math.unit(3e8, "feet")
  38281. },
  38282. {
  38283. name: "Gas Giant Gulper",
  38284. height: math.unit(3e9, "feet")
  38285. },
  38286. {
  38287. name: "Sol-Swallowing",
  38288. height: math.unit(1e11, "feet")
  38289. },
  38290. {
  38291. name: "System Swallower",
  38292. height: math.unit(3e14, "feet")
  38293. },
  38294. {
  38295. name: "Galaxy Gulper",
  38296. height: math.unit(10, "galaxies")
  38297. },
  38298. {
  38299. name: "Light Universal",
  38300. height: math.unit(5, "universes")
  38301. },
  38302. {
  38303. name: "Universe Palm",
  38304. height: math.unit(20, "universes")
  38305. },
  38306. {
  38307. name: "Light Multiversal",
  38308. height: math.unit(5, "multiverses")
  38309. },
  38310. {
  38311. name: "Multiverse Palm",
  38312. height: math.unit(20, "multiverses")
  38313. },
  38314. {
  38315. name: "Inferno Incarnate",
  38316. height: math.unit(1e7, "multiverses")
  38317. },
  38318. ]
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38322. {
  38323. front: {
  38324. height: math.unit(8, "feet"),
  38325. weight: math.unit(1200, "lb"),
  38326. name: "Front",
  38327. image: {
  38328. source: "./media/characters/malithee/front.svg",
  38329. extra: 1675/1640,
  38330. bottom: 162/1837
  38331. }
  38332. },
  38333. },
  38334. [
  38335. {
  38336. name: "Mortal Interaction",
  38337. height: math.unit(8, "feet"),
  38338. default: true
  38339. },
  38340. {
  38341. name: "Large",
  38342. height: math.unit(24, "feet")
  38343. },
  38344. {
  38345. name: "Kaiju",
  38346. height: math.unit(240, "feet")
  38347. },
  38348. {
  38349. name: "Megamacro",
  38350. height: math.unit(8000, "feet")
  38351. },
  38352. {
  38353. name: "Continent Cracker",
  38354. height: math.unit(24e6, "feet")
  38355. },
  38356. {
  38357. name: "Earth-Eclipsing",
  38358. height: math.unit(2.4e8, "feet")
  38359. },
  38360. {
  38361. name: "Sol-Swallowing",
  38362. height: math.unit(8e10, "feet")
  38363. },
  38364. {
  38365. name: "Galaxy Gulper",
  38366. height: math.unit(8, "galaxies")
  38367. },
  38368. {
  38369. name: "Light Universal",
  38370. height: math.unit(4, "universes")
  38371. },
  38372. {
  38373. name: "Universe Atoms",
  38374. height: math.unit(1.829e9, "universes")
  38375. },
  38376. {
  38377. name: "Light Multiversal",
  38378. height: math.unit(4, "multiverses")
  38379. },
  38380. {
  38381. name: "Multiverse Atoms",
  38382. height: math.unit(1.829e9, "multiverses")
  38383. },
  38384. {
  38385. name: "Nigh-Omnipresence",
  38386. height: math.unit(8e261, "multiverses")
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(10, "feet"),
  38395. weight: math.unit(1500, "lb"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/miles-thestia/front.svg",
  38399. extra: 1812/1727,
  38400. bottom: 86/1898
  38401. }
  38402. },
  38403. back: {
  38404. height: math.unit(10, "feet"),
  38405. weight: math.unit(1500, "lb"),
  38406. name: "Back",
  38407. image: {
  38408. source: "./media/characters/miles-thestia/back.svg",
  38409. extra: 1799/1690,
  38410. bottom: 47/1846
  38411. }
  38412. },
  38413. frontNsfw: {
  38414. height: math.unit(10, "feet"),
  38415. weight: math.unit(1500, "lb"),
  38416. name: "Front (NSFW)",
  38417. image: {
  38418. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38419. extra: 1812/1727,
  38420. bottom: 86/1898
  38421. }
  38422. },
  38423. },
  38424. [
  38425. {
  38426. name: "Mini-Macro",
  38427. height: math.unit(10, "feet"),
  38428. default: true
  38429. },
  38430. ]
  38431. ))
  38432. characterMakers.push(() => makeCharacter(
  38433. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38434. {
  38435. front: {
  38436. height: math.unit(25, "feet"),
  38437. name: "Front",
  38438. image: {
  38439. source: "./media/characters/titan-s-wulf/front.svg",
  38440. extra: 1560/1484,
  38441. bottom: 76/1636
  38442. }
  38443. },
  38444. },
  38445. [
  38446. {
  38447. name: "Smallest",
  38448. height: math.unit(25, "feet"),
  38449. default: true
  38450. },
  38451. {
  38452. name: "Normal",
  38453. height: math.unit(200, "feet")
  38454. },
  38455. {
  38456. name: "Macro",
  38457. height: math.unit(200000, "feet")
  38458. },
  38459. {
  38460. name: "Multiversal Original",
  38461. height: math.unit(10000, "multiverses")
  38462. },
  38463. ]
  38464. ))
  38465. characterMakers.push(() => makeCharacter(
  38466. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38467. {
  38468. front: {
  38469. height: math.unit(8, "feet"),
  38470. weight: math.unit(553, "lb"),
  38471. name: "Front",
  38472. image: {
  38473. source: "./media/characters/tawendeh/front.svg",
  38474. extra: 2365/2268,
  38475. bottom: 83/2448
  38476. }
  38477. },
  38478. frontClothed: {
  38479. height: math.unit(8, "feet"),
  38480. weight: math.unit(553, "lb"),
  38481. name: "Front (Clothed)",
  38482. image: {
  38483. source: "./media/characters/tawendeh/front-clothed.svg",
  38484. extra: 2365/2268,
  38485. bottom: 83/2448
  38486. }
  38487. },
  38488. back: {
  38489. height: math.unit(8, "feet"),
  38490. weight: math.unit(553, "lb"),
  38491. name: "Back",
  38492. image: {
  38493. source: "./media/characters/tawendeh/back.svg",
  38494. extra: 2397/2294,
  38495. bottom: 42/2439
  38496. }
  38497. },
  38498. },
  38499. [
  38500. {
  38501. name: "Mortal Interaction",
  38502. height: math.unit(8, "feet"),
  38503. default: true
  38504. },
  38505. {
  38506. name: "Giant",
  38507. height: math.unit(80, "feet")
  38508. },
  38509. {
  38510. name: "Macro",
  38511. height: math.unit(800, "feet")
  38512. },
  38513. {
  38514. name: "Megamacro",
  38515. height: math.unit(8000, "feet")
  38516. },
  38517. {
  38518. name: "City-Crushing",
  38519. height: math.unit(24000, "feet")
  38520. },
  38521. {
  38522. name: "Mountain-Mashing",
  38523. height: math.unit(80000, "feet")
  38524. },
  38525. {
  38526. name: "Nation Nemesis",
  38527. height: math.unit(8e6, "feet")
  38528. },
  38529. {
  38530. name: "Continent Cracker",
  38531. height: math.unit(24e6, "feet")
  38532. },
  38533. {
  38534. name: "Earth-Eclipsing",
  38535. height: math.unit(2.4e8, "feet")
  38536. },
  38537. {
  38538. name: "Gas Giant Gulper",
  38539. height: math.unit(2.4e9, "feet")
  38540. },
  38541. {
  38542. name: "Sol-Swallowing",
  38543. height: math.unit(8e10, "feet")
  38544. },
  38545. {
  38546. name: "Galaxy Gulper",
  38547. height: math.unit(8, "galaxies")
  38548. },
  38549. {
  38550. name: "Cosmos Churner",
  38551. height: math.unit(8, "universes")
  38552. },
  38553. {
  38554. name: "Omnipotent Otter",
  38555. height: math.unit(80, "universes")
  38556. },
  38557. ]
  38558. ))
  38559. characterMakers.push(() => makeCharacter(
  38560. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38561. {
  38562. front: {
  38563. height: math.unit(2.6, "meters"),
  38564. weight: math.unit(900, "kg"),
  38565. name: "Front",
  38566. image: {
  38567. source: "./media/characters/neesha/front.svg",
  38568. extra: 1803/1653,
  38569. bottom: 128/1931
  38570. }
  38571. },
  38572. },
  38573. [
  38574. {
  38575. name: "Normal",
  38576. height: math.unit(2.6, "meters"),
  38577. default: true
  38578. },
  38579. {
  38580. name: "Macro",
  38581. height: math.unit(50, "meters")
  38582. },
  38583. ]
  38584. ))
  38585. characterMakers.push(() => makeCharacter(
  38586. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38587. {
  38588. front: {
  38589. height: math.unit(5, "feet"),
  38590. weight: math.unit(185, "lb"),
  38591. name: "Front",
  38592. image: {
  38593. source: "./media/characters/kyera/front.svg",
  38594. extra: 1875/1790,
  38595. bottom: 96/1971
  38596. }
  38597. },
  38598. },
  38599. [
  38600. {
  38601. name: "Normal",
  38602. height: math.unit(5, "feet"),
  38603. default: true
  38604. },
  38605. ]
  38606. ))
  38607. characterMakers.push(() => makeCharacter(
  38608. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38609. {
  38610. front: {
  38611. height: math.unit(7 + 6/12, "feet"),
  38612. weight: math.unit(540, "lb"),
  38613. name: "Front",
  38614. image: {
  38615. source: "./media/characters/yuko/front.svg",
  38616. extra: 1282/1222,
  38617. bottom: 101/1383
  38618. }
  38619. },
  38620. frontClothed: {
  38621. height: math.unit(7 + 6/12, "feet"),
  38622. weight: math.unit(540, "lb"),
  38623. name: "Front (Clothed)",
  38624. image: {
  38625. source: "./media/characters/yuko/front-clothed.svg",
  38626. extra: 1282/1222,
  38627. bottom: 101/1383
  38628. }
  38629. },
  38630. },
  38631. [
  38632. {
  38633. name: "Normal",
  38634. height: math.unit(7 + 6/12, "feet"),
  38635. default: true
  38636. },
  38637. {
  38638. name: "Macro",
  38639. height: math.unit(26 + 9/12, "feet")
  38640. },
  38641. {
  38642. name: "Megamacro",
  38643. height: math.unit(300, "feet")
  38644. },
  38645. {
  38646. name: "Gigamacro",
  38647. height: math.unit(5000, "feet")
  38648. },
  38649. {
  38650. name: "Planetary",
  38651. height: math.unit(10000, "miles")
  38652. },
  38653. ]
  38654. ))
  38655. characterMakers.push(() => makeCharacter(
  38656. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38657. {
  38658. front: {
  38659. height: math.unit(8 + 2/12, "feet"),
  38660. weight: math.unit(600, "lb"),
  38661. name: "Front",
  38662. image: {
  38663. source: "./media/characters/deam-nitrel/front.svg",
  38664. extra: 1308/1234,
  38665. bottom: 125/1433
  38666. }
  38667. },
  38668. },
  38669. [
  38670. {
  38671. name: "Normal",
  38672. height: math.unit(8 + 2/12, "feet"),
  38673. default: true
  38674. },
  38675. ]
  38676. ))
  38677. characterMakers.push(() => makeCharacter(
  38678. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38679. {
  38680. front: {
  38681. height: math.unit(6.1, "feet"),
  38682. weight: math.unit(180, "lb"),
  38683. name: "Front",
  38684. image: {
  38685. source: "./media/characters/skyress/front.svg",
  38686. extra: 1045/915,
  38687. bottom: 28/1073
  38688. }
  38689. },
  38690. maw: {
  38691. height: math.unit(1, "feet"),
  38692. name: "Maw",
  38693. image: {
  38694. source: "./media/characters/skyress/maw.svg"
  38695. }
  38696. },
  38697. },
  38698. [
  38699. {
  38700. name: "Normal",
  38701. height: math.unit(6.1, "feet"),
  38702. default: true
  38703. },
  38704. {
  38705. name: "Macro",
  38706. height: math.unit(200, "feet")
  38707. },
  38708. ]
  38709. ))
  38710. characterMakers.push(() => makeCharacter(
  38711. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38712. {
  38713. front: {
  38714. height: math.unit(4 + 2/12, "feet"),
  38715. weight: math.unit(40, "kg"),
  38716. name: "Front",
  38717. image: {
  38718. source: "./media/characters/amethyst-jones/front.svg",
  38719. extra: 1220/1150,
  38720. bottom: 101/1321
  38721. }
  38722. },
  38723. },
  38724. [
  38725. {
  38726. name: "Normal",
  38727. height: math.unit(4 + 2/12, "feet"),
  38728. default: true
  38729. },
  38730. ]
  38731. ))
  38732. characterMakers.push(() => makeCharacter(
  38733. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38734. {
  38735. front: {
  38736. height: math.unit(1.7, "m"),
  38737. weight: math.unit(135, "lb"),
  38738. name: "Front",
  38739. image: {
  38740. source: "./media/characters/jade/front.svg",
  38741. extra: 1818/1767,
  38742. bottom: 32/1850
  38743. }
  38744. },
  38745. back: {
  38746. height: math.unit(1.7, "m"),
  38747. weight: math.unit(135, "lb"),
  38748. name: "Back",
  38749. image: {
  38750. source: "./media/characters/jade/back.svg",
  38751. extra: 1869/1809,
  38752. bottom: 35/1904
  38753. }
  38754. },
  38755. hand: {
  38756. height: math.unit(0.24, "m"),
  38757. name: "Hand",
  38758. image: {
  38759. source: "./media/characters/jade/hand.svg"
  38760. }
  38761. },
  38762. foot: {
  38763. height: math.unit(0.263, "m"),
  38764. name: "Foot",
  38765. image: {
  38766. source: "./media/characters/jade/foot.svg"
  38767. }
  38768. },
  38769. dick: {
  38770. height: math.unit(0.47, "m"),
  38771. name: "Dick",
  38772. image: {
  38773. source: "./media/characters/jade/dick.svg"
  38774. }
  38775. },
  38776. },
  38777. [
  38778. {
  38779. name: "Micro",
  38780. height: math.unit(22, "cm")
  38781. },
  38782. {
  38783. name: "Normal",
  38784. height: math.unit(1.7, "m"),
  38785. default: true
  38786. },
  38787. {
  38788. name: "Macro",
  38789. height: math.unit(152, "m")
  38790. },
  38791. ]
  38792. ))
  38793. characterMakers.push(() => makeCharacter(
  38794. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38795. {
  38796. front: {
  38797. height: math.unit(100, "miles"),
  38798. weight: math.unit(20000, "tons"),
  38799. name: "Front",
  38800. image: {
  38801. source: "./media/characters/cookie/front.svg",
  38802. extra: 1125/1070,
  38803. bottom: 30/1155
  38804. }
  38805. },
  38806. },
  38807. [
  38808. {
  38809. name: "Big",
  38810. height: math.unit(50, "feet")
  38811. },
  38812. {
  38813. name: "Macro",
  38814. height: math.unit(100, "miles"),
  38815. default: true
  38816. },
  38817. {
  38818. name: "Megamacro",
  38819. height: math.unit(90000, "miles")
  38820. },
  38821. ]
  38822. ))
  38823. characterMakers.push(() => makeCharacter(
  38824. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38825. {
  38826. front: {
  38827. height: math.unit(6, "feet"),
  38828. weight: math.unit(145, "lb"),
  38829. name: "Front",
  38830. image: {
  38831. source: "./media/characters/farzian/front.svg",
  38832. extra: 1902/1693,
  38833. bottom: 108/2010
  38834. }
  38835. },
  38836. },
  38837. [
  38838. {
  38839. name: "Macro",
  38840. height: math.unit(500, "feet"),
  38841. default: true
  38842. },
  38843. ]
  38844. ))
  38845. characterMakers.push(() => makeCharacter(
  38846. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38847. {
  38848. front: {
  38849. height: math.unit(3 + 6/12, "feet"),
  38850. weight: math.unit(50, "lb"),
  38851. name: "Front",
  38852. image: {
  38853. source: "./media/characters/kimberly-tilson/front.svg",
  38854. extra: 1400/1322,
  38855. bottom: 36/1436
  38856. }
  38857. },
  38858. back: {
  38859. height: math.unit(3 + 6/12, "feet"),
  38860. weight: math.unit(50, "lb"),
  38861. name: "Back",
  38862. image: {
  38863. source: "./media/characters/kimberly-tilson/back.svg",
  38864. extra: 1370/1307,
  38865. bottom: 20/1390
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Normal",
  38872. height: math.unit(3 + 6/12, "feet"),
  38873. default: true
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38879. {
  38880. front: {
  38881. height: math.unit(1148, "feet"),
  38882. weight: math.unit(34057, "lb"),
  38883. name: "Front",
  38884. image: {
  38885. source: "./media/characters/harthos/front.svg",
  38886. extra: 1391/1339,
  38887. bottom: 13/1404
  38888. }
  38889. },
  38890. },
  38891. [
  38892. {
  38893. name: "Macro",
  38894. height: math.unit(1148, "feet"),
  38895. default: true
  38896. },
  38897. ]
  38898. ))
  38899. characterMakers.push(() => makeCharacter(
  38900. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38901. {
  38902. front: {
  38903. height: math.unit(15, "feet"),
  38904. name: "Front",
  38905. image: {
  38906. source: "./media/characters/hypatia/front.svg",
  38907. extra: 1653/1591,
  38908. bottom: 79/1732
  38909. }
  38910. },
  38911. },
  38912. [
  38913. {
  38914. name: "Normal",
  38915. height: math.unit(15, "feet")
  38916. },
  38917. {
  38918. name: "Small",
  38919. height: math.unit(300, "feet")
  38920. },
  38921. {
  38922. name: "Macro",
  38923. height: math.unit(2500, "feet"),
  38924. default: true
  38925. },
  38926. {
  38927. name: "Mega Macro",
  38928. height: math.unit(1500, "miles")
  38929. },
  38930. {
  38931. name: "Giga Macro",
  38932. height: math.unit(1.5e6, "miles")
  38933. },
  38934. ]
  38935. ))
  38936. characterMakers.push(() => makeCharacter(
  38937. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38938. {
  38939. front: {
  38940. height: math.unit(6, "feet"),
  38941. weight: math.unit(200, "lb"),
  38942. name: "Front",
  38943. image: {
  38944. source: "./media/characters/wulver/front.svg",
  38945. extra: 1724/1632,
  38946. bottom: 130/1854
  38947. }
  38948. },
  38949. frontNsfw: {
  38950. height: math.unit(6, "feet"),
  38951. weight: math.unit(200, "lb"),
  38952. name: "Front (NSFW)",
  38953. image: {
  38954. source: "./media/characters/wulver/front-nsfw.svg",
  38955. extra: 1724/1632,
  38956. bottom: 130/1854
  38957. }
  38958. },
  38959. },
  38960. [
  38961. {
  38962. name: "Human-Sized",
  38963. height: math.unit(6, "feet")
  38964. },
  38965. {
  38966. name: "Normal",
  38967. height: math.unit(4, "meters"),
  38968. default: true
  38969. },
  38970. {
  38971. name: "Large",
  38972. height: math.unit(6, "m")
  38973. },
  38974. ]
  38975. ))
  38976. characterMakers.push(() => makeCharacter(
  38977. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38978. {
  38979. front: {
  38980. height: math.unit(7, "feet"),
  38981. name: "Front",
  38982. image: {
  38983. source: "./media/characters/maru/front.svg",
  38984. extra: 1595/1570,
  38985. bottom: 0/1595
  38986. }
  38987. },
  38988. },
  38989. [
  38990. {
  38991. name: "Normal",
  38992. height: math.unit(7, "feet"),
  38993. default: true
  38994. },
  38995. {
  38996. name: "Macro",
  38997. height: math.unit(700, "feet")
  38998. },
  38999. {
  39000. name: "Mega Macro",
  39001. height: math.unit(25, "miles")
  39002. },
  39003. ]
  39004. ))
  39005. characterMakers.push(() => makeCharacter(
  39006. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39007. {
  39008. front: {
  39009. height: math.unit(6, "feet"),
  39010. weight: math.unit(170, "lb"),
  39011. name: "Front",
  39012. image: {
  39013. source: "./media/characters/xenon/front.svg",
  39014. extra: 1376/1305,
  39015. bottom: 56/1432
  39016. }
  39017. },
  39018. back: {
  39019. height: math.unit(6, "feet"),
  39020. weight: math.unit(170, "lb"),
  39021. name: "Back",
  39022. image: {
  39023. source: "./media/characters/xenon/back.svg",
  39024. extra: 1328/1259,
  39025. bottom: 95/1423
  39026. }
  39027. },
  39028. maw: {
  39029. height: math.unit(0.52, "feet"),
  39030. name: "Maw",
  39031. image: {
  39032. source: "./media/characters/xenon/maw.svg"
  39033. }
  39034. },
  39035. hand: {
  39036. height: math.unit(0.82, "feet"),
  39037. name: "Hand",
  39038. image: {
  39039. source: "./media/characters/xenon/hand.svg"
  39040. }
  39041. },
  39042. foot: {
  39043. height: math.unit(1.13, "feet"),
  39044. name: "Foot",
  39045. image: {
  39046. source: "./media/characters/xenon/foot.svg"
  39047. }
  39048. },
  39049. },
  39050. [
  39051. {
  39052. name: "Micro",
  39053. height: math.unit(0.8, "inches")
  39054. },
  39055. {
  39056. name: "Normal",
  39057. height: math.unit(6, "feet")
  39058. },
  39059. {
  39060. name: "Macro",
  39061. height: math.unit(50, "feet"),
  39062. default: true
  39063. },
  39064. {
  39065. name: "Macro+",
  39066. height: math.unit(250, "feet")
  39067. },
  39068. {
  39069. name: "Megamacro",
  39070. height: math.unit(1500, "feet")
  39071. },
  39072. ]
  39073. ))
  39074. characterMakers.push(() => makeCharacter(
  39075. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39076. {
  39077. front: {
  39078. height: math.unit(7 + 5/12, "feet"),
  39079. name: "Front",
  39080. image: {
  39081. source: "./media/characters/zane/front.svg",
  39082. extra: 1260/1203,
  39083. bottom: 94/1354
  39084. }
  39085. },
  39086. back: {
  39087. height: math.unit(5.05, "feet"),
  39088. name: "Back",
  39089. image: {
  39090. source: "./media/characters/zane/back.svg",
  39091. extra: 893/829,
  39092. bottom: 30/923
  39093. }
  39094. },
  39095. werewolf: {
  39096. height: math.unit(11, "feet"),
  39097. name: "Werewolf",
  39098. image: {
  39099. source: "./media/characters/zane/werewolf.svg",
  39100. extra: 1383/1323,
  39101. bottom: 89/1472
  39102. }
  39103. },
  39104. foot: {
  39105. height: math.unit(1.46, "feet"),
  39106. name: "Foot",
  39107. image: {
  39108. source: "./media/characters/zane/foot.svg"
  39109. }
  39110. },
  39111. footFront: {
  39112. height: math.unit(0.784, "feet"),
  39113. name: "Foot (Front)",
  39114. image: {
  39115. source: "./media/characters/zane/foot-front.svg"
  39116. }
  39117. },
  39118. dick: {
  39119. height: math.unit(1.95, "feet"),
  39120. name: "Dick",
  39121. image: {
  39122. source: "./media/characters/zane/dick.svg"
  39123. }
  39124. },
  39125. dickWerewolf: {
  39126. height: math.unit(3.77, "feet"),
  39127. name: "Dick (Werewolf)",
  39128. image: {
  39129. source: "./media/characters/zane/dick.svg"
  39130. }
  39131. },
  39132. },
  39133. [
  39134. {
  39135. name: "Normal",
  39136. height: math.unit(7 + 5/12, "feet"),
  39137. default: true
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39143. {
  39144. front: {
  39145. height: math.unit(6 + 2/12, "feet"),
  39146. weight: math.unit(284, "lb"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/benni-desparque/front.svg",
  39150. extra: 1353/1126,
  39151. bottom: 69/1422
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Civilian",
  39158. height: math.unit(6 + 2/12, "feet")
  39159. },
  39160. {
  39161. name: "Normal",
  39162. height: math.unit(98, "feet"),
  39163. default: true
  39164. },
  39165. {
  39166. name: "Kaiju Fighter",
  39167. height: math.unit(268, "feet")
  39168. },
  39169. ]
  39170. ))
  39171. characterMakers.push(() => makeCharacter(
  39172. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39173. {
  39174. front: {
  39175. height: math.unit(5, "feet"),
  39176. weight: math.unit(105, "lb"),
  39177. name: "Front",
  39178. image: {
  39179. source: "./media/characters/maxine/front.svg",
  39180. extra: 1386/1250,
  39181. bottom: 71/1457
  39182. }
  39183. },
  39184. },
  39185. [
  39186. {
  39187. name: "Normal",
  39188. height: math.unit(5, "feet"),
  39189. default: true
  39190. },
  39191. ]
  39192. ))
  39193. characterMakers.push(() => makeCharacter(
  39194. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39195. {
  39196. front: {
  39197. height: math.unit(11 + 7/12, "feet"),
  39198. weight: math.unit(9576, "lb"),
  39199. name: "Front",
  39200. image: {
  39201. source: "./media/characters/scaly/front.svg",
  39202. extra: 888/867,
  39203. bottom: 36/924
  39204. }
  39205. },
  39206. },
  39207. [
  39208. {
  39209. name: "Normal",
  39210. height: math.unit(11 + 7/12, "feet"),
  39211. default: true
  39212. },
  39213. ]
  39214. ))
  39215. characterMakers.push(() => makeCharacter(
  39216. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39217. {
  39218. front: {
  39219. height: math.unit(9, "inches"),
  39220. name: "Front",
  39221. image: {
  39222. source: "./media/characters/saelria/front.svg",
  39223. extra: 662/621,
  39224. bottom: 12/674
  39225. }
  39226. },
  39227. },
  39228. [
  39229. {
  39230. name: "Tiny",
  39231. height: math.unit(9, "inches"),
  39232. default: true
  39233. },
  39234. ]
  39235. ))
  39236. characterMakers.push(() => makeCharacter(
  39237. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39238. {
  39239. front: {
  39240. height: math.unit(80, "meters"),
  39241. weight: math.unit(7000, "tonnes"),
  39242. name: "Front",
  39243. image: {
  39244. source: "./media/characters/tef/front.svg",
  39245. extra: 2036/1991,
  39246. bottom: 54/2090
  39247. }
  39248. },
  39249. back: {
  39250. height: math.unit(80, "meters"),
  39251. weight: math.unit(7000, "tonnes"),
  39252. name: "Back",
  39253. image: {
  39254. source: "./media/characters/tef/back.svg",
  39255. extra: 2036/1991,
  39256. bottom: 54/2090
  39257. }
  39258. },
  39259. },
  39260. [
  39261. {
  39262. name: "Macro",
  39263. height: math.unit(80, "meters"),
  39264. default: true
  39265. },
  39266. ]
  39267. ))
  39268. characterMakers.push(() => makeCharacter(
  39269. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39270. {
  39271. front: {
  39272. height: math.unit(13, "feet"),
  39273. weight: math.unit(6, "tons"),
  39274. name: "Front",
  39275. image: {
  39276. source: "./media/characters/rover/front.svg",
  39277. extra: 1233/1156,
  39278. bottom: 50/1283
  39279. }
  39280. },
  39281. back: {
  39282. height: math.unit(13, "feet"),
  39283. weight: math.unit(6, "tons"),
  39284. name: "Back",
  39285. image: {
  39286. source: "./media/characters/rover/back.svg",
  39287. extra: 1327/1258,
  39288. bottom: 39/1366
  39289. }
  39290. },
  39291. },
  39292. [
  39293. {
  39294. name: "Normal",
  39295. height: math.unit(13, "feet"),
  39296. default: true
  39297. },
  39298. {
  39299. name: "Macro",
  39300. height: math.unit(1300, "feet")
  39301. },
  39302. {
  39303. name: "Megamacro",
  39304. height: math.unit(1300, "miles")
  39305. },
  39306. {
  39307. name: "Gigamacro",
  39308. height: math.unit(1300000, "miles")
  39309. },
  39310. ]
  39311. ))
  39312. characterMakers.push(() => makeCharacter(
  39313. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39314. {
  39315. front: {
  39316. height: math.unit(6, "feet"),
  39317. weight: math.unit(150, "lb"),
  39318. name: "Front",
  39319. image: {
  39320. source: "./media/characters/ariz/front.svg",
  39321. extra: 1401/1346,
  39322. bottom: 5/1406
  39323. }
  39324. },
  39325. },
  39326. [
  39327. {
  39328. name: "Normal",
  39329. height: math.unit(10, "feet"),
  39330. default: true
  39331. },
  39332. ]
  39333. ))
  39334. characterMakers.push(() => makeCharacter(
  39335. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39336. {
  39337. front: {
  39338. height: math.unit(6, "feet"),
  39339. weight: math.unit(140, "lb"),
  39340. name: "Front",
  39341. image: {
  39342. source: "./media/characters/sigrun/front.svg",
  39343. extra: 1418/1359,
  39344. bottom: 27/1445
  39345. }
  39346. },
  39347. },
  39348. [
  39349. {
  39350. name: "Macro",
  39351. height: math.unit(35, "feet"),
  39352. default: true
  39353. },
  39354. ]
  39355. ))
  39356. characterMakers.push(() => makeCharacter(
  39357. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39358. {
  39359. front: {
  39360. height: math.unit(6, "feet"),
  39361. weight: math.unit(150, "lb"),
  39362. name: "Front",
  39363. image: {
  39364. source: "./media/characters/numin/front.svg",
  39365. extra: 1433/1388,
  39366. bottom: 12/1445
  39367. }
  39368. },
  39369. },
  39370. [
  39371. {
  39372. name: "Macro",
  39373. height: math.unit(21.5, "km"),
  39374. default: true
  39375. },
  39376. ]
  39377. ))
  39378. characterMakers.push(() => makeCharacter(
  39379. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39380. {
  39381. front: {
  39382. height: math.unit(6, "feet"),
  39383. weight: math.unit(463, "lb"),
  39384. name: "Front",
  39385. image: {
  39386. source: "./media/characters/melwa/front.svg",
  39387. extra: 1307/1248,
  39388. bottom: 93/1400
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "Macro",
  39395. height: math.unit(50, "meters"),
  39396. default: true
  39397. },
  39398. ]
  39399. ))
  39400. characterMakers.push(() => makeCharacter(
  39401. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39402. {
  39403. front: {
  39404. height: math.unit(325, "feet"),
  39405. name: "Front",
  39406. image: {
  39407. source: "./media/characters/zorkaiju/front.svg",
  39408. extra: 1955/1814,
  39409. bottom: 40/1995
  39410. }
  39411. },
  39412. frontExtended: {
  39413. height: math.unit(325, "feet"),
  39414. name: "Front (Extended)",
  39415. image: {
  39416. source: "./media/characters/zorkaiju/front-extended.svg",
  39417. extra: 1955/1814,
  39418. bottom: 40/1995
  39419. }
  39420. },
  39421. side: {
  39422. height: math.unit(325, "feet"),
  39423. name: "Side",
  39424. image: {
  39425. source: "./media/characters/zorkaiju/side.svg",
  39426. extra: 1495/1396,
  39427. bottom: 17/1512
  39428. }
  39429. },
  39430. sideExtended: {
  39431. height: math.unit(325, "feet"),
  39432. name: "Side (Extended)",
  39433. image: {
  39434. source: "./media/characters/zorkaiju/side-extended.svg",
  39435. extra: 1495/1396,
  39436. bottom: 17/1512
  39437. }
  39438. },
  39439. back: {
  39440. height: math.unit(325, "feet"),
  39441. name: "Back",
  39442. image: {
  39443. source: "./media/characters/zorkaiju/back.svg",
  39444. extra: 1959/1821,
  39445. bottom: 31/1990
  39446. }
  39447. },
  39448. backExtended: {
  39449. height: math.unit(325, "feet"),
  39450. name: "Back (Extended)",
  39451. image: {
  39452. source: "./media/characters/zorkaiju/back-extended.svg",
  39453. extra: 1959/1821,
  39454. bottom: 31/1990
  39455. }
  39456. },
  39457. hand: {
  39458. height: math.unit(58.4, "feet"),
  39459. name: "Hand",
  39460. image: {
  39461. source: "./media/characters/zorkaiju/hand.svg"
  39462. }
  39463. },
  39464. handExtended: {
  39465. height: math.unit(61.4, "feet"),
  39466. name: "Hand (Extended)",
  39467. image: {
  39468. source: "./media/characters/zorkaiju/hand-extended.svg"
  39469. }
  39470. },
  39471. foot: {
  39472. height: math.unit(95, "feet"),
  39473. name: "Foot",
  39474. image: {
  39475. source: "./media/characters/zorkaiju/foot.svg"
  39476. }
  39477. },
  39478. leftArm: {
  39479. height: math.unit(59, "feet"),
  39480. name: "Left Arm",
  39481. image: {
  39482. source: "./media/characters/zorkaiju/left-arm.svg"
  39483. }
  39484. },
  39485. rightArm: {
  39486. height: math.unit(59, "feet"),
  39487. name: "Right Arm",
  39488. image: {
  39489. source: "./media/characters/zorkaiju/right-arm.svg"
  39490. }
  39491. },
  39492. tail: {
  39493. height: math.unit(104, "feet"),
  39494. name: "Tail",
  39495. image: {
  39496. source: "./media/characters/zorkaiju/tail.svg"
  39497. }
  39498. },
  39499. tailExtended: {
  39500. height: math.unit(104, "feet"),
  39501. name: "Tail (Extended)",
  39502. image: {
  39503. source: "./media/characters/zorkaiju/tail-extended.svg"
  39504. }
  39505. },
  39506. tailBottom: {
  39507. height: math.unit(104, "feet"),
  39508. name: "Tail Bottom",
  39509. image: {
  39510. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39511. }
  39512. },
  39513. crystal: {
  39514. height: math.unit(27.54, "feet"),
  39515. name: "Crystal",
  39516. image: {
  39517. source: "./media/characters/zorkaiju/crystal.svg"
  39518. }
  39519. },
  39520. },
  39521. [
  39522. {
  39523. name: "Kaiju",
  39524. height: math.unit(325, "feet"),
  39525. default: true
  39526. },
  39527. ]
  39528. ))
  39529. characterMakers.push(() => makeCharacter(
  39530. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39531. {
  39532. front: {
  39533. height: math.unit(6 + 1/12, "feet"),
  39534. weight: math.unit(115, "lb"),
  39535. name: "Front",
  39536. image: {
  39537. source: "./media/characters/bailey-belfry/front.svg",
  39538. extra: 1240/1121,
  39539. bottom: 101/1341
  39540. }
  39541. },
  39542. },
  39543. [
  39544. {
  39545. name: "Normal",
  39546. height: math.unit(6 + 1/12, "feet"),
  39547. default: true
  39548. },
  39549. ]
  39550. ))
  39551. characterMakers.push(() => makeCharacter(
  39552. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39553. {
  39554. side: {
  39555. height: math.unit(4, "meters"),
  39556. weight: math.unit(250, "kg"),
  39557. name: "Side",
  39558. image: {
  39559. source: "./media/characters/blacky/side.svg",
  39560. extra: 1027/919,
  39561. bottom: 43/1070
  39562. }
  39563. },
  39564. maw: {
  39565. height: math.unit(1, "meters"),
  39566. name: "Maw",
  39567. image: {
  39568. source: "./media/characters/blacky/maw.svg"
  39569. }
  39570. },
  39571. paw: {
  39572. height: math.unit(1, "meters"),
  39573. name: "Paw",
  39574. image: {
  39575. source: "./media/characters/blacky/paw.svg"
  39576. }
  39577. },
  39578. },
  39579. [
  39580. {
  39581. name: "Normal",
  39582. height: math.unit(4, "meters"),
  39583. default: true
  39584. },
  39585. ]
  39586. ))
  39587. characterMakers.push(() => makeCharacter(
  39588. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39589. {
  39590. front: {
  39591. height: math.unit(170, "cm"),
  39592. weight: math.unit(66, "kg"),
  39593. name: "Front",
  39594. image: {
  39595. source: "./media/characters/thux-ei/front.svg",
  39596. extra: 1109/1011,
  39597. bottom: 8/1117
  39598. }
  39599. },
  39600. },
  39601. [
  39602. {
  39603. name: "Normal",
  39604. height: math.unit(170, "cm"),
  39605. default: true
  39606. },
  39607. ]
  39608. ))
  39609. characterMakers.push(() => makeCharacter(
  39610. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39611. {
  39612. front: {
  39613. height: math.unit(5, "feet"),
  39614. weight: math.unit(120, "lb"),
  39615. name: "Front",
  39616. image: {
  39617. source: "./media/characters/roxanne-voltaire/front.svg",
  39618. extra: 1901/1779,
  39619. bottom: 53/1954
  39620. }
  39621. },
  39622. },
  39623. [
  39624. {
  39625. name: "Normal",
  39626. height: math.unit(5, "feet"),
  39627. default: true
  39628. },
  39629. {
  39630. name: "Giant",
  39631. height: math.unit(50, "feet")
  39632. },
  39633. {
  39634. name: "Titan",
  39635. height: math.unit(500, "feet")
  39636. },
  39637. {
  39638. name: "Macro",
  39639. height: math.unit(5000, "feet")
  39640. },
  39641. {
  39642. name: "Megamacro",
  39643. height: math.unit(50000, "feet")
  39644. },
  39645. {
  39646. name: "Gigamacro",
  39647. height: math.unit(500000, "feet")
  39648. },
  39649. {
  39650. name: "Teramacro",
  39651. height: math.unit(5e6, "feet")
  39652. },
  39653. ]
  39654. ))
  39655. characterMakers.push(() => makeCharacter(
  39656. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39657. {
  39658. front: {
  39659. height: math.unit(6 + 2/12, "feet"),
  39660. name: "Front",
  39661. image: {
  39662. source: "./media/characters/squeaks/front.svg",
  39663. extra: 1823/1768,
  39664. bottom: 138/1961
  39665. }
  39666. },
  39667. },
  39668. [
  39669. {
  39670. name: "Micro",
  39671. height: math.unit(0.5, "inches")
  39672. },
  39673. {
  39674. name: "Normal",
  39675. height: math.unit(6 + 2/12, "feet"),
  39676. default: true
  39677. },
  39678. {
  39679. name: "Macro",
  39680. height: math.unit(600, "feet")
  39681. },
  39682. ]
  39683. ))
  39684. characterMakers.push(() => makeCharacter(
  39685. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39686. {
  39687. front: {
  39688. height: math.unit(1.72, "meters"),
  39689. name: "Front",
  39690. image: {
  39691. source: "./media/characters/archinger/front.svg",
  39692. extra: 1861/1675,
  39693. bottom: 125/1986
  39694. }
  39695. },
  39696. back: {
  39697. height: math.unit(1.72, "meters"),
  39698. name: "Back",
  39699. image: {
  39700. source: "./media/characters/archinger/back.svg",
  39701. extra: 1844/1701,
  39702. bottom: 104/1948
  39703. }
  39704. },
  39705. cock: {
  39706. height: math.unit(0.59, "feet"),
  39707. name: "Cock",
  39708. image: {
  39709. source: "./media/characters/archinger/cock.svg"
  39710. }
  39711. },
  39712. },
  39713. [
  39714. {
  39715. name: "Normal",
  39716. height: math.unit(1.72, "meters"),
  39717. default: true
  39718. },
  39719. {
  39720. name: "Macro",
  39721. height: math.unit(84, "meters")
  39722. },
  39723. {
  39724. name: "Macro+",
  39725. height: math.unit(112, "meters")
  39726. },
  39727. {
  39728. name: "Macro++",
  39729. height: math.unit(960, "meters")
  39730. },
  39731. {
  39732. name: "Macro+++",
  39733. height: math.unit(4, "km")
  39734. },
  39735. {
  39736. name: "Macro++++",
  39737. height: math.unit(48, "km")
  39738. },
  39739. {
  39740. name: "Macro+++++",
  39741. height: math.unit(4500, "km")
  39742. },
  39743. ]
  39744. ))
  39745. characterMakers.push(() => makeCharacter(
  39746. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39747. {
  39748. front: {
  39749. height: math.unit(5 + 5/12, "feet"),
  39750. name: "Front",
  39751. image: {
  39752. source: "./media/characters/alsnapz/front.svg",
  39753. extra: 1157/1065,
  39754. bottom: 42/1199
  39755. }
  39756. },
  39757. },
  39758. [
  39759. {
  39760. name: "Normal",
  39761. height: math.unit(5 + 5/12, "feet"),
  39762. default: true
  39763. },
  39764. ]
  39765. ))
  39766. characterMakers.push(() => makeCharacter(
  39767. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39768. {
  39769. side: {
  39770. height: math.unit(3.2, "earths"),
  39771. name: "Side",
  39772. image: {
  39773. source: "./media/characters/mag/side.svg",
  39774. extra: 1331/1008,
  39775. bottom: 52/1383
  39776. }
  39777. },
  39778. wing: {
  39779. height: math.unit(1.94, "earths"),
  39780. name: "Wing",
  39781. image: {
  39782. source: "./media/characters/mag/wing.svg"
  39783. }
  39784. },
  39785. dick: {
  39786. height: math.unit(1.8, "earths"),
  39787. name: "Dick",
  39788. image: {
  39789. source: "./media/characters/mag/dick.svg"
  39790. }
  39791. },
  39792. ass: {
  39793. height: math.unit(1.33, "earths"),
  39794. name: "Ass",
  39795. image: {
  39796. source: "./media/characters/mag/ass.svg"
  39797. }
  39798. },
  39799. head: {
  39800. height: math.unit(1.1, "earths"),
  39801. name: "Head",
  39802. image: {
  39803. source: "./media/characters/mag/head.svg"
  39804. }
  39805. },
  39806. maw: {
  39807. height: math.unit(1.62, "earths"),
  39808. name: "Maw",
  39809. image: {
  39810. source: "./media/characters/mag/maw.svg"
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Small",
  39817. height: math.unit(162, "feet")
  39818. },
  39819. {
  39820. name: "Normal",
  39821. height: math.unit(3.2, "earths"),
  39822. default: true
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39828. {
  39829. front: {
  39830. height: math.unit(512, "feet"),
  39831. weight: math.unit(63509, "tonnes"),
  39832. name: "Front",
  39833. image: {
  39834. source: "./media/characters/vorrel-harroc/front.svg",
  39835. extra: 1075/1063,
  39836. bottom: 62/1137
  39837. }
  39838. },
  39839. },
  39840. [
  39841. {
  39842. name: "Normal",
  39843. height: math.unit(10, "feet")
  39844. },
  39845. {
  39846. name: "Macro",
  39847. height: math.unit(512, "feet"),
  39848. default: true
  39849. },
  39850. {
  39851. name: "Megamacro",
  39852. height: math.unit(256, "miles")
  39853. },
  39854. {
  39855. name: "Gigamacro",
  39856. height: math.unit(4096, "miles")
  39857. },
  39858. ]
  39859. ))
  39860. characterMakers.push(() => makeCharacter(
  39861. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39862. {
  39863. side: {
  39864. height: math.unit(50, "feet"),
  39865. name: "Side",
  39866. image: {
  39867. source: "./media/characters/froimar/side.svg",
  39868. extra: 855/638,
  39869. bottom: 99/954
  39870. }
  39871. },
  39872. },
  39873. [
  39874. {
  39875. name: "Macro",
  39876. height: math.unit(50, "feet"),
  39877. default: true
  39878. },
  39879. ]
  39880. ))
  39881. characterMakers.push(() => makeCharacter(
  39882. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39883. {
  39884. front: {
  39885. height: math.unit(210, "miles"),
  39886. name: "Front",
  39887. image: {
  39888. source: "./media/characters/timothy/front.svg",
  39889. extra: 1007/943,
  39890. bottom: 62/1069
  39891. }
  39892. },
  39893. frontSkirt: {
  39894. height: math.unit(210, "miles"),
  39895. name: "Front (Skirt)",
  39896. image: {
  39897. source: "./media/characters/timothy/front-skirt.svg",
  39898. extra: 1007/943,
  39899. bottom: 62/1069
  39900. }
  39901. },
  39902. frontCoat: {
  39903. height: math.unit(210, "miles"),
  39904. name: "Front (Coat)",
  39905. image: {
  39906. source: "./media/characters/timothy/front-coat.svg",
  39907. extra: 1007/943,
  39908. bottom: 62/1069
  39909. }
  39910. },
  39911. },
  39912. [
  39913. {
  39914. name: "Macro",
  39915. height: math.unit(210, "miles"),
  39916. default: true
  39917. },
  39918. {
  39919. name: "Megamacro",
  39920. height: math.unit(210000, "miles")
  39921. },
  39922. ]
  39923. ))
  39924. characterMakers.push(() => makeCharacter(
  39925. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39926. {
  39927. front: {
  39928. height: math.unit(188, "feet"),
  39929. name: "Front",
  39930. image: {
  39931. source: "./media/characters/pyotr/front.svg",
  39932. extra: 1912/1826,
  39933. bottom: 18/1930
  39934. }
  39935. },
  39936. },
  39937. [
  39938. {
  39939. name: "Macro",
  39940. height: math.unit(188, "feet"),
  39941. default: true
  39942. },
  39943. {
  39944. name: "Megamacro",
  39945. height: math.unit(8, "miles")
  39946. },
  39947. ]
  39948. ))
  39949. characterMakers.push(() => makeCharacter(
  39950. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39951. {
  39952. side: {
  39953. height: math.unit(10, "feet"),
  39954. weight: math.unit(4500, "lb"),
  39955. name: "Side",
  39956. image: {
  39957. source: "./media/characters/ackart/side.svg",
  39958. extra: 1776/1668,
  39959. bottom: 116/1892
  39960. }
  39961. },
  39962. },
  39963. [
  39964. {
  39965. name: "Normal",
  39966. height: math.unit(10, "feet"),
  39967. default: true
  39968. },
  39969. ]
  39970. ))
  39971. characterMakers.push(() => makeCharacter(
  39972. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39973. {
  39974. side: {
  39975. height: math.unit(21, "feet"),
  39976. name: "Side",
  39977. image: {
  39978. source: "./media/characters/nolow/side.svg",
  39979. extra: 1484/1434,
  39980. bottom: 85/1569
  39981. }
  39982. },
  39983. sideErect: {
  39984. height: math.unit(21, "feet"),
  39985. name: "Side-erect",
  39986. image: {
  39987. source: "./media/characters/nolow/side-erect.svg",
  39988. extra: 1484/1434,
  39989. bottom: 85/1569
  39990. }
  39991. },
  39992. },
  39993. [
  39994. {
  39995. name: "Regular",
  39996. height: math.unit(12, "feet")
  39997. },
  39998. {
  39999. name: "Big Chee",
  40000. height: math.unit(21, "feet"),
  40001. default: true
  40002. },
  40003. ]
  40004. ))
  40005. characterMakers.push(() => makeCharacter(
  40006. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40007. {
  40008. front: {
  40009. height: math.unit(7, "feet"),
  40010. weight: math.unit(250, "lb"),
  40011. name: "Front",
  40012. image: {
  40013. source: "./media/characters/nines/front.svg",
  40014. extra: 1741/1607,
  40015. bottom: 41/1782
  40016. }
  40017. },
  40018. side: {
  40019. height: math.unit(7, "feet"),
  40020. weight: math.unit(250, "lb"),
  40021. name: "Side",
  40022. image: {
  40023. source: "./media/characters/nines/side.svg",
  40024. extra: 1854/1735,
  40025. bottom: 93/1947
  40026. }
  40027. },
  40028. back: {
  40029. height: math.unit(7, "feet"),
  40030. weight: math.unit(250, "lb"),
  40031. name: "Back",
  40032. image: {
  40033. source: "./media/characters/nines/back.svg",
  40034. extra: 1748/1615,
  40035. bottom: 20/1768
  40036. }
  40037. },
  40038. },
  40039. [
  40040. {
  40041. name: "Megamacro",
  40042. height: math.unit(99, "km"),
  40043. default: true
  40044. },
  40045. ]
  40046. ))
  40047. characterMakers.push(() => makeCharacter(
  40048. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40049. {
  40050. front: {
  40051. height: math.unit(5 + 10/12, "feet"),
  40052. weight: math.unit(210, "lb"),
  40053. name: "Front",
  40054. image: {
  40055. source: "./media/characters/zenith/front.svg",
  40056. extra: 1531/1452,
  40057. bottom: 198/1729
  40058. }
  40059. },
  40060. back: {
  40061. height: math.unit(5 + 10/12, "feet"),
  40062. weight: math.unit(210, "lb"),
  40063. name: "Back",
  40064. image: {
  40065. source: "./media/characters/zenith/back.svg",
  40066. extra: 1571/1487,
  40067. bottom: 75/1646
  40068. }
  40069. },
  40070. },
  40071. [
  40072. {
  40073. name: "Normal",
  40074. height: math.unit(5 + 10/12, "feet"),
  40075. default: true
  40076. }
  40077. ]
  40078. ))
  40079. characterMakers.push(() => makeCharacter(
  40080. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40081. {
  40082. front: {
  40083. height: math.unit(4, "feet"),
  40084. weight: math.unit(60, "lb"),
  40085. name: "Front",
  40086. image: {
  40087. source: "./media/characters/jasper/front.svg",
  40088. extra: 1450/1379,
  40089. bottom: 19/1469
  40090. }
  40091. },
  40092. },
  40093. [
  40094. {
  40095. name: "Normal",
  40096. height: math.unit(4, "feet"),
  40097. default: true
  40098. },
  40099. ]
  40100. ))
  40101. characterMakers.push(() => makeCharacter(
  40102. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40103. {
  40104. front: {
  40105. height: math.unit(6 + 5/12, "feet"),
  40106. weight: math.unit(290, "lb"),
  40107. name: "Front",
  40108. image: {
  40109. source: "./media/characters/tiberius-thyben/front.svg",
  40110. extra: 757/739,
  40111. bottom: 39/796
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Micro",
  40118. height: math.unit(1.5, "inches")
  40119. },
  40120. {
  40121. name: "Normal",
  40122. height: math.unit(6 + 5/12, "feet"),
  40123. default: true
  40124. },
  40125. {
  40126. name: "Macro",
  40127. height: math.unit(300, "feet")
  40128. },
  40129. ]
  40130. ))
  40131. characterMakers.push(() => makeCharacter(
  40132. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40133. {
  40134. front: {
  40135. height: math.unit(5 + 6/12, "feet"),
  40136. weight: math.unit(60, "kg"),
  40137. name: "Front",
  40138. image: {
  40139. source: "./media/characters/sabre/front.svg",
  40140. extra: 738/671,
  40141. bottom: 27/765
  40142. }
  40143. },
  40144. },
  40145. [
  40146. {
  40147. name: "Teeny",
  40148. height: math.unit(2, "inches")
  40149. },
  40150. {
  40151. name: "Smol",
  40152. height: math.unit(8, "inches")
  40153. },
  40154. {
  40155. name: "Normal",
  40156. height: math.unit(5 + 6/12, "feet"),
  40157. default: true
  40158. },
  40159. {
  40160. name: "Mini-Macro",
  40161. height: math.unit(15, "feet")
  40162. },
  40163. {
  40164. name: "Macro",
  40165. height: math.unit(50, "feet")
  40166. },
  40167. ]
  40168. ))
  40169. characterMakers.push(() => makeCharacter(
  40170. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40171. {
  40172. front: {
  40173. height: math.unit(6 + 4/12, "feet"),
  40174. weight: math.unit(170, "lb"),
  40175. name: "Front",
  40176. image: {
  40177. source: "./media/characters/charlie/front.svg",
  40178. extra: 1348/1228,
  40179. bottom: 15/1363
  40180. }
  40181. },
  40182. },
  40183. [
  40184. {
  40185. name: "Macro",
  40186. height: math.unit(1700, "meters"),
  40187. default: true
  40188. },
  40189. {
  40190. name: "MegaMacro",
  40191. height: math.unit(20400, "meters")
  40192. },
  40193. ]
  40194. ))
  40195. characterMakers.push(() => makeCharacter(
  40196. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40197. {
  40198. front: {
  40199. height: math.unit(6 + 3/12, "feet"),
  40200. weight: math.unit(185, "lb"),
  40201. name: "Front",
  40202. image: {
  40203. source: "./media/characters/susan-grant/front.svg",
  40204. extra: 1351/1327,
  40205. bottom: 26/1377
  40206. }
  40207. },
  40208. },
  40209. [
  40210. {
  40211. name: "Normal",
  40212. height: math.unit(6 + 3/12, "feet"),
  40213. default: true
  40214. },
  40215. {
  40216. name: "Macro",
  40217. height: math.unit(225, "feet")
  40218. },
  40219. {
  40220. name: "Macro+",
  40221. height: math.unit(900, "feet")
  40222. },
  40223. {
  40224. name: "MegaMacro",
  40225. height: math.unit(14400, "feet")
  40226. },
  40227. ]
  40228. ))
  40229. characterMakers.push(() => makeCharacter(
  40230. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40231. {
  40232. front: {
  40233. height: math.unit(5 + 4/12, "feet"),
  40234. weight: math.unit(110, "lb"),
  40235. name: "Front",
  40236. image: {
  40237. source: "./media/characters/axel-isanov/front.svg",
  40238. extra: 1096/1065,
  40239. bottom: 13/1109
  40240. }
  40241. },
  40242. },
  40243. [
  40244. {
  40245. name: "Normal",
  40246. height: math.unit(5 + 4/12, "feet"),
  40247. default: true
  40248. },
  40249. ]
  40250. ))
  40251. characterMakers.push(() => makeCharacter(
  40252. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40253. {
  40254. front: {
  40255. height: math.unit(9, "feet"),
  40256. weight: math.unit(467, "lb"),
  40257. name: "Front",
  40258. image: {
  40259. source: "./media/characters/necahual/front.svg",
  40260. extra: 920/873,
  40261. bottom: 26/946
  40262. }
  40263. },
  40264. back: {
  40265. height: math.unit(9, "feet"),
  40266. weight: math.unit(467, "lb"),
  40267. name: "Back",
  40268. image: {
  40269. source: "./media/characters/necahual/back.svg",
  40270. extra: 930/884,
  40271. bottom: 16/946
  40272. }
  40273. },
  40274. frontUnderwear: {
  40275. height: math.unit(9, "feet"),
  40276. weight: math.unit(467, "lb"),
  40277. name: "Front (Underwear)",
  40278. image: {
  40279. source: "./media/characters/necahual/front-underwear.svg",
  40280. extra: 920/873,
  40281. bottom: 26/946
  40282. }
  40283. },
  40284. frontDressed: {
  40285. height: math.unit(9, "feet"),
  40286. weight: math.unit(467, "lb"),
  40287. name: "Front (Dressed)",
  40288. image: {
  40289. source: "./media/characters/necahual/front-dressed.svg",
  40290. extra: 920/873,
  40291. bottom: 26/946
  40292. }
  40293. },
  40294. },
  40295. [
  40296. {
  40297. name: "Comprsesed",
  40298. height: math.unit(9, "feet")
  40299. },
  40300. {
  40301. name: "Natural",
  40302. height: math.unit(15, "feet"),
  40303. default: true
  40304. },
  40305. {
  40306. name: "Boosted",
  40307. height: math.unit(50, "feet")
  40308. },
  40309. {
  40310. name: "Boosted+",
  40311. height: math.unit(150, "feet")
  40312. },
  40313. {
  40314. name: "Max",
  40315. height: math.unit(500, "feet")
  40316. },
  40317. ]
  40318. ))
  40319. characterMakers.push(() => makeCharacter(
  40320. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40321. {
  40322. front: {
  40323. height: math.unit(22 + 1/12, "feet"),
  40324. weight: math.unit(3200, "lb"),
  40325. name: "Front",
  40326. image: {
  40327. source: "./media/characters/theo-acacia/front.svg",
  40328. extra: 1796/1741,
  40329. bottom: 83/1879
  40330. }
  40331. },
  40332. frontUnderwear: {
  40333. height: math.unit(22 + 1/12, "feet"),
  40334. weight: math.unit(3200, "lb"),
  40335. name: "Front (Underwear)",
  40336. image: {
  40337. source: "./media/characters/theo-acacia/front-underwear.svg",
  40338. extra: 1796/1741,
  40339. bottom: 83/1879
  40340. }
  40341. },
  40342. frontNude: {
  40343. height: math.unit(22 + 1/12, "feet"),
  40344. weight: math.unit(3200, "lb"),
  40345. name: "Front (Nude)",
  40346. image: {
  40347. source: "./media/characters/theo-acacia/front-nude.svg",
  40348. extra: 1796/1741,
  40349. bottom: 83/1879
  40350. }
  40351. },
  40352. },
  40353. [
  40354. {
  40355. name: "Normal",
  40356. height: math.unit(22 + 1/12, "feet"),
  40357. default: true
  40358. },
  40359. ]
  40360. ))
  40361. characterMakers.push(() => makeCharacter(
  40362. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40363. {
  40364. front: {
  40365. height: math.unit(20, "feet"),
  40366. name: "Front",
  40367. image: {
  40368. source: "./media/characters/astra/front.svg",
  40369. extra: 1850/1714,
  40370. bottom: 106/1956
  40371. }
  40372. },
  40373. frontUndressed: {
  40374. height: math.unit(20, "feet"),
  40375. name: "Front (Undressed)",
  40376. image: {
  40377. source: "./media/characters/astra/front-undressed.svg",
  40378. extra: 1926/1749,
  40379. bottom: 0/1926
  40380. }
  40381. },
  40382. hand: {
  40383. height: math.unit(1.53, "feet"),
  40384. name: "Hand",
  40385. image: {
  40386. source: "./media/characters/astra/hand.svg"
  40387. }
  40388. },
  40389. paw: {
  40390. height: math.unit(1.53, "feet"),
  40391. name: "Paw",
  40392. image: {
  40393. source: "./media/characters/astra/paw.svg"
  40394. }
  40395. },
  40396. },
  40397. [
  40398. {
  40399. name: "Smallest",
  40400. height: math.unit(20, "feet")
  40401. },
  40402. {
  40403. name: "Normal",
  40404. height: math.unit(1e9, "miles"),
  40405. default: true
  40406. },
  40407. {
  40408. name: "Larger",
  40409. height: math.unit(5, "multiverses")
  40410. },
  40411. {
  40412. name: "Largest",
  40413. height: math.unit(1e9, "multiverses")
  40414. },
  40415. ]
  40416. ))
  40417. characterMakers.push(() => makeCharacter(
  40418. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40419. {
  40420. front: {
  40421. height: math.unit(8, "feet"),
  40422. name: "Front",
  40423. image: {
  40424. source: "./media/characters/breanna/front.svg",
  40425. extra: 1912/1632,
  40426. bottom: 33/1945
  40427. }
  40428. },
  40429. },
  40430. [
  40431. {
  40432. name: "Smallest",
  40433. height: math.unit(8, "feet")
  40434. },
  40435. {
  40436. name: "Normal",
  40437. height: math.unit(1, "mile"),
  40438. default: true
  40439. },
  40440. {
  40441. name: "Maximum",
  40442. height: math.unit(1500000000000, "lightyears")
  40443. },
  40444. ]
  40445. ))
  40446. characterMakers.push(() => makeCharacter(
  40447. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40448. {
  40449. front: {
  40450. height: math.unit(5 + 11/12, "feet"),
  40451. weight: math.unit(155, "lb"),
  40452. name: "Front",
  40453. image: {
  40454. source: "./media/characters/cai/front.svg",
  40455. extra: 1823/1702,
  40456. bottom: 32/1855
  40457. }
  40458. },
  40459. back: {
  40460. height: math.unit(5 + 11/12, "feet"),
  40461. weight: math.unit(155, "lb"),
  40462. name: "Back",
  40463. image: {
  40464. source: "./media/characters/cai/back.svg",
  40465. extra: 1809/1708,
  40466. bottom: 31/1840
  40467. }
  40468. },
  40469. },
  40470. [
  40471. {
  40472. name: "Normal",
  40473. height: math.unit(5 + 11/12, "feet"),
  40474. default: true
  40475. },
  40476. {
  40477. name: "Big",
  40478. height: math.unit(15, "feet")
  40479. },
  40480. {
  40481. name: "Macro",
  40482. height: math.unit(200, "feet")
  40483. },
  40484. ]
  40485. ))
  40486. characterMakers.push(() => makeCharacter(
  40487. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40488. {
  40489. front: {
  40490. height: math.unit(5 + 6/12, "feet"),
  40491. weight: math.unit(160, "lb"),
  40492. name: "Front",
  40493. image: {
  40494. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40495. extra: 1227/1174,
  40496. bottom: 37/1264
  40497. }
  40498. },
  40499. },
  40500. [
  40501. {
  40502. name: "Macro",
  40503. height: math.unit(444, "meters"),
  40504. default: true
  40505. },
  40506. ]
  40507. ))
  40508. characterMakers.push(() => makeCharacter(
  40509. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40510. {
  40511. front: {
  40512. height: math.unit(18 + 7/12, "feet"),
  40513. name: "Front",
  40514. image: {
  40515. source: "./media/characters/rex/front.svg",
  40516. extra: 1941/1807,
  40517. bottom: 66/2007
  40518. }
  40519. },
  40520. back: {
  40521. height: math.unit(18 + 7/12, "feet"),
  40522. name: "Back",
  40523. image: {
  40524. source: "./media/characters/rex/back.svg",
  40525. extra: 1937/1822,
  40526. bottom: 42/1979
  40527. }
  40528. },
  40529. boot: {
  40530. height: math.unit(3.45, "feet"),
  40531. name: "Boot",
  40532. image: {
  40533. source: "./media/characters/rex/boot.svg"
  40534. }
  40535. },
  40536. paw: {
  40537. height: math.unit(4.17, "feet"),
  40538. name: "Paw",
  40539. image: {
  40540. source: "./media/characters/rex/paw.svg"
  40541. }
  40542. },
  40543. head: {
  40544. height: math.unit(6.728, "feet"),
  40545. name: "Head",
  40546. image: {
  40547. source: "./media/characters/rex/head.svg"
  40548. }
  40549. },
  40550. },
  40551. [
  40552. {
  40553. name: "Nano",
  40554. height: math.unit(18 + 7/12, "feet")
  40555. },
  40556. {
  40557. name: "Micro",
  40558. height: math.unit(1.5, "megameters")
  40559. },
  40560. {
  40561. name: "Normal",
  40562. height: math.unit(440, "megameters"),
  40563. default: true
  40564. },
  40565. {
  40566. name: "Macro",
  40567. height: math.unit(2.5, "gigameters")
  40568. },
  40569. {
  40570. name: "Gigamacro",
  40571. height: math.unit(2, "galaxies")
  40572. },
  40573. ]
  40574. ))
  40575. characterMakers.push(() => makeCharacter(
  40576. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40577. {
  40578. side: {
  40579. height: math.unit(32, "feet"),
  40580. weight: math.unit(250000, "lb"),
  40581. name: "Side",
  40582. image: {
  40583. source: "./media/characters/silverwing/side.svg",
  40584. extra: 1100/1019,
  40585. bottom: 204/1304
  40586. }
  40587. },
  40588. },
  40589. [
  40590. {
  40591. name: "Normal",
  40592. height: math.unit(32, "feet"),
  40593. default: true
  40594. },
  40595. ]
  40596. ))
  40597. characterMakers.push(() => makeCharacter(
  40598. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40599. {
  40600. front: {
  40601. height: math.unit(6 + 6/12, "feet"),
  40602. weight: math.unit(350, "lb"),
  40603. name: "Front",
  40604. image: {
  40605. source: "./media/characters/tristan-hawthorne/front.svg",
  40606. extra: 1159/1124,
  40607. bottom: 37/1196
  40608. }
  40609. },
  40610. },
  40611. [
  40612. {
  40613. name: "Normal",
  40614. height: math.unit(6 + 6/12, "feet"),
  40615. default: true
  40616. },
  40617. ]
  40618. ))
  40619. characterMakers.push(() => makeCharacter(
  40620. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40621. {
  40622. front: {
  40623. height: math.unit(5 + 11/12, "feet"),
  40624. weight: math.unit(190, "lb"),
  40625. name: "Front",
  40626. image: {
  40627. source: "./media/characters/mizu/front.svg",
  40628. extra: 1988/1788,
  40629. bottom: 14/2002
  40630. }
  40631. },
  40632. },
  40633. [
  40634. {
  40635. name: "Normal",
  40636. height: math.unit(5 + 11/12, "feet"),
  40637. default: true
  40638. },
  40639. ]
  40640. ))
  40641. characterMakers.push(() => makeCharacter(
  40642. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40643. {
  40644. front: {
  40645. height: math.unit(6, "feet"),
  40646. name: "Front",
  40647. image: {
  40648. source: "./media/characters/moonlight-rose-terra/front.svg",
  40649. extra: 1434/1252,
  40650. bottom: 48/1482
  40651. }
  40652. },
  40653. },
  40654. [
  40655. {
  40656. name: "TRAPPIST-1D",
  40657. height: math.unit(4992*2, "km")
  40658. },
  40659. {
  40660. name: "Earth",
  40661. height: math.unit(6367*2, "km"),
  40662. default: true
  40663. },
  40664. {
  40665. name: "Kepler-22b",
  40666. height: math.unit(15282*2, "km")
  40667. },
  40668. ]
  40669. ))
  40670. characterMakers.push(() => makeCharacter(
  40671. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40672. {
  40673. front: {
  40674. height: math.unit(6, "feet"),
  40675. name: "Front",
  40676. image: {
  40677. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40678. extra: 1851/1712,
  40679. bottom: 0/1851
  40680. }
  40681. },
  40682. },
  40683. [
  40684. {
  40685. name: "Enceladus",
  40686. height: math.unit(513*2, "km")
  40687. },
  40688. {
  40689. name: "Europe",
  40690. height: math.unit(1560*2, "km")
  40691. },
  40692. {
  40693. name: "Neptune",
  40694. height: math.unit(24622*2, "km"),
  40695. default: true
  40696. },
  40697. {
  40698. name: "CoRoT-9b",
  40699. height: math.unit(75067*2, "km")
  40700. },
  40701. ]
  40702. ))
  40703. characterMakers.push(() => makeCharacter(
  40704. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40705. {
  40706. front: {
  40707. height: math.unit(6, "feet"),
  40708. name: "Front",
  40709. image: {
  40710. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40711. extra: 1367/1286,
  40712. bottom: 55/1422
  40713. }
  40714. },
  40715. },
  40716. [
  40717. {
  40718. name: "Saturn",
  40719. height: math.unit(58232*2, "km")
  40720. },
  40721. {
  40722. name: "Jupiter",
  40723. height: math.unit(69911*2, "km"),
  40724. default: true
  40725. },
  40726. {
  40727. name: "HD 100546 b",
  40728. height: math.unit(482938, "km")
  40729. },
  40730. ]
  40731. ))
  40732. characterMakers.push(() => makeCharacter(
  40733. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40734. {
  40735. front: {
  40736. height: math.unit(1.7, "feet"),
  40737. weight: math.unit(50, "lb"),
  40738. name: "Front",
  40739. image: {
  40740. source: "./media/characters/dechroma/front.svg",
  40741. extra: 1095/859,
  40742. bottom: 64/1159
  40743. }
  40744. },
  40745. },
  40746. [
  40747. {
  40748. name: "Normal",
  40749. height: math.unit(1.7, "feet"),
  40750. default: true
  40751. },
  40752. ]
  40753. ))
  40754. characterMakers.push(() => makeCharacter(
  40755. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40756. {
  40757. side: {
  40758. height: math.unit(30, "feet"),
  40759. name: "Side",
  40760. image: {
  40761. source: "./media/characters/veluren-thanazel/side.svg",
  40762. extra: 1611/633,
  40763. bottom: 118/1729
  40764. }
  40765. },
  40766. front: {
  40767. height: math.unit(30, "feet"),
  40768. name: "Front",
  40769. image: {
  40770. source: "./media/characters/veluren-thanazel/front.svg",
  40771. extra: 1486/636,
  40772. bottom: 238/1724
  40773. }
  40774. },
  40775. head: {
  40776. height: math.unit(21.4, "feet"),
  40777. name: "Head",
  40778. image: {
  40779. source: "./media/characters/veluren-thanazel/head.svg"
  40780. }
  40781. },
  40782. genitals: {
  40783. height: math.unit(19.4, "feet"),
  40784. name: "Genitals",
  40785. image: {
  40786. source: "./media/characters/veluren-thanazel/genitals.svg"
  40787. }
  40788. },
  40789. },
  40790. [
  40791. {
  40792. name: "Social",
  40793. height: math.unit(6, "feet")
  40794. },
  40795. {
  40796. name: "Play",
  40797. height: math.unit(12, "feet")
  40798. },
  40799. {
  40800. name: "True",
  40801. height: math.unit(30, "feet"),
  40802. default: true
  40803. },
  40804. ]
  40805. ))
  40806. characterMakers.push(() => makeCharacter(
  40807. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40808. {
  40809. front: {
  40810. height: math.unit(7 + 6/12, "feet"),
  40811. weight: math.unit(500, "kg"),
  40812. name: "Front",
  40813. image: {
  40814. source: "./media/characters/arcturas/front.svg",
  40815. extra: 1700/1500,
  40816. bottom: 145/1845
  40817. }
  40818. },
  40819. },
  40820. [
  40821. {
  40822. name: "Normal",
  40823. height: math.unit(7 + 6/12, "feet"),
  40824. default: true
  40825. },
  40826. ]
  40827. ))
  40828. characterMakers.push(() => makeCharacter(
  40829. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40830. {
  40831. side: {
  40832. height: math.unit(6, "feet"),
  40833. weight: math.unit(2, "tons"),
  40834. name: "Side",
  40835. image: {
  40836. source: "./media/characters/vitaen/side.svg",
  40837. extra: 1157/617,
  40838. bottom: 122/1279
  40839. }
  40840. },
  40841. },
  40842. [
  40843. {
  40844. name: "Normal",
  40845. height: math.unit(6, "feet"),
  40846. default: true
  40847. },
  40848. ]
  40849. ))
  40850. characterMakers.push(() => makeCharacter(
  40851. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40852. {
  40853. front: {
  40854. height: math.unit(19, "feet"),
  40855. name: "Front",
  40856. image: {
  40857. source: "./media/characters/fia-dreamweaver/front.svg",
  40858. extra: 1630/1504,
  40859. bottom: 25/1655
  40860. }
  40861. },
  40862. },
  40863. [
  40864. {
  40865. name: "Normal",
  40866. height: math.unit(19, "feet"),
  40867. default: true
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(5 + 4/12, "feet"),
  40876. name: "Front",
  40877. image: {
  40878. source: "./media/characters/artan/front.svg",
  40879. extra: 1618/1535,
  40880. bottom: 46/1664
  40881. }
  40882. },
  40883. back: {
  40884. height: math.unit(5 + 4/12, "feet"),
  40885. name: "Back",
  40886. image: {
  40887. source: "./media/characters/artan/back.svg",
  40888. extra: 1618/1543,
  40889. bottom: 31/1649
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(5 + 4/12, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  40903. {
  40904. side: {
  40905. height: math.unit(182, "cm"),
  40906. weight: math.unit(1000, "lb"),
  40907. name: "Side",
  40908. image: {
  40909. source: "./media/characters/silver-dragon/side.svg",
  40910. extra: 710/287,
  40911. bottom: 88/798
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Normal",
  40918. height: math.unit(182, "cm"),
  40919. default: true
  40920. },
  40921. ]
  40922. ))
  40923. characterMakers.push(() => makeCharacter(
  40924. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  40925. {
  40926. side: {
  40927. height: math.unit(6 + 6/12, "feet"),
  40928. weight: math.unit(1.5, "tons"),
  40929. name: "Side",
  40930. image: {
  40931. source: "./media/characters/zephyr/side.svg",
  40932. extra: 1433/586,
  40933. bottom: 109/1542
  40934. }
  40935. },
  40936. },
  40937. [
  40938. {
  40939. name: "Normal",
  40940. height: math.unit(6 + 6/12, "feet"),
  40941. default: true
  40942. },
  40943. ]
  40944. ))
  40945. characterMakers.push(() => makeCharacter(
  40946. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  40947. {
  40948. side: {
  40949. height: math.unit(1, "feet"),
  40950. name: "Side",
  40951. image: {
  40952. source: "./media/characters/vixye/side.svg",
  40953. extra: 632/541,
  40954. bottom: 0/632
  40955. }
  40956. },
  40957. },
  40958. [
  40959. {
  40960. name: "Normal",
  40961. height: math.unit(1, "feet"),
  40962. default: true
  40963. },
  40964. {
  40965. name: "True",
  40966. height: math.unit(1e15, "multiverses")
  40967. },
  40968. ]
  40969. ))
  40970. characterMakers.push(() => makeCharacter(
  40971. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  40972. {
  40973. front: {
  40974. height: math.unit(8 + 2/12, "feet"),
  40975. weight: math.unit(650, "lb"),
  40976. name: "Front",
  40977. image: {
  40978. source: "./media/characters/darla-mac-lochlainn/front.svg",
  40979. extra: 1174/1137,
  40980. bottom: 82/1256
  40981. }
  40982. },
  40983. back: {
  40984. height: math.unit(8 + 2/12, "feet"),
  40985. weight: math.unit(650, "lb"),
  40986. name: "Back",
  40987. image: {
  40988. source: "./media/characters/darla-mac-lochlainn/back.svg",
  40989. extra: 1204/1157,
  40990. bottom: 46/1250
  40991. }
  40992. },
  40993. },
  40994. [
  40995. {
  40996. name: "Wildform",
  40997. height: math.unit(8 + 2/12, "feet"),
  40998. default: true
  40999. },
  41000. ]
  41001. ))
  41002. characterMakers.push(() => makeCharacter(
  41003. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41004. {
  41005. front: {
  41006. height: math.unit(18, "feet"),
  41007. name: "Front",
  41008. image: {
  41009. source: "./media/characters/cyphin/front.svg",
  41010. extra: 970/886,
  41011. bottom: 42/1012
  41012. }
  41013. },
  41014. back: {
  41015. height: math.unit(18, "feet"),
  41016. name: "Back",
  41017. image: {
  41018. source: "./media/characters/cyphin/back.svg",
  41019. extra: 1009/894,
  41020. bottom: 24/1033
  41021. }
  41022. },
  41023. head: {
  41024. height: math.unit(5.05, "feet"),
  41025. name: "Head",
  41026. image: {
  41027. source: "./media/characters/cyphin/head.svg"
  41028. }
  41029. },
  41030. tailbud: {
  41031. height: math.unit(5, "feet"),
  41032. name: "Tailbud",
  41033. image: {
  41034. source: "./media/characters/cyphin/tailbud.svg"
  41035. }
  41036. },
  41037. },
  41038. [
  41039. ]
  41040. ))
  41041. characterMakers.push(() => makeCharacter(
  41042. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41043. {
  41044. side: {
  41045. height: math.unit(10, "feet"),
  41046. weight: math.unit(6, "tons"),
  41047. name: "Side",
  41048. image: {
  41049. source: "./media/characters/raijin/side.svg",
  41050. extra: 1529/613,
  41051. bottom: 337/1866
  41052. }
  41053. },
  41054. },
  41055. [
  41056. {
  41057. name: "Normal",
  41058. height: math.unit(10, "feet"),
  41059. default: true
  41060. },
  41061. ]
  41062. ))
  41063. characterMakers.push(() => makeCharacter(
  41064. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41065. {
  41066. side: {
  41067. height: math.unit(9, "feet"),
  41068. name: "Side",
  41069. image: {
  41070. source: "./media/characters/nilghais/side.svg",
  41071. extra: 1047/744,
  41072. bottom: 91/1138
  41073. }
  41074. },
  41075. head: {
  41076. height: math.unit(3.14, "feet"),
  41077. name: "Head",
  41078. image: {
  41079. source: "./media/characters/nilghais/head.svg"
  41080. }
  41081. },
  41082. mouth: {
  41083. height: math.unit(4.6, "feet"),
  41084. name: "Mouth",
  41085. image: {
  41086. source: "./media/characters/nilghais/mouth.svg"
  41087. }
  41088. },
  41089. wings: {
  41090. height: math.unit(24, "feet"),
  41091. name: "Wings",
  41092. image: {
  41093. source: "./media/characters/nilghais/wings.svg"
  41094. }
  41095. },
  41096. ass: {
  41097. height: math.unit(6.12, "feet"),
  41098. name: "Ass",
  41099. image: {
  41100. source: "./media/characters/nilghais/ass.svg"
  41101. }
  41102. },
  41103. },
  41104. [
  41105. {
  41106. name: "Normal",
  41107. height: math.unit(9, "feet"),
  41108. default: true
  41109. },
  41110. ]
  41111. ))
  41112. characterMakers.push(() => makeCharacter(
  41113. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41114. {
  41115. regular: {
  41116. height: math.unit(16 + 2/12, "feet"),
  41117. weight: math.unit(2300, "lb"),
  41118. name: "Regular",
  41119. image: {
  41120. source: "./media/characters/zolgar/regular.svg",
  41121. extra: 1246/1004,
  41122. bottom: 124/1370
  41123. }
  41124. },
  41125. boxers: {
  41126. height: math.unit(16 + 2/12, "feet"),
  41127. weight: math.unit(2300, "lb"),
  41128. name: "Boxers",
  41129. image: {
  41130. source: "./media/characters/zolgar/boxers.svg",
  41131. extra: 1246/1004,
  41132. bottom: 124/1370
  41133. }
  41134. },
  41135. armored: {
  41136. height: math.unit(16 + 2/12, "feet"),
  41137. weight: math.unit(2300, "lb"),
  41138. name: "Armored",
  41139. image: {
  41140. source: "./media/characters/zolgar/armored.svg",
  41141. extra: 1246/1004,
  41142. bottom: 124/1370
  41143. }
  41144. },
  41145. goth: {
  41146. height: math.unit(16 + 2/12, "feet"),
  41147. weight: math.unit(2300, "lb"),
  41148. name: "Goth",
  41149. image: {
  41150. source: "./media/characters/zolgar/goth.svg",
  41151. extra: 1246/1004,
  41152. bottom: 124/1370
  41153. }
  41154. },
  41155. },
  41156. [
  41157. {
  41158. name: "Shrunken Down",
  41159. height: math.unit(9 + 2/12, "feet")
  41160. },
  41161. {
  41162. name: "Normal",
  41163. height: math.unit(16 + 2/12, "feet"),
  41164. default: true
  41165. },
  41166. ]
  41167. ))
  41168. characterMakers.push(() => makeCharacter(
  41169. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41170. {
  41171. front: {
  41172. height: math.unit(6, "feet"),
  41173. weight: math.unit(168, "lb"),
  41174. name: "Front",
  41175. image: {
  41176. source: "./media/characters/luca/front.svg",
  41177. extra: 841/667,
  41178. bottom: 102/943
  41179. }
  41180. },
  41181. },
  41182. [
  41183. {
  41184. name: "Normal",
  41185. height: math.unit(6, "feet"),
  41186. default: true
  41187. },
  41188. ]
  41189. ))
  41190. characterMakers.push(() => makeCharacter(
  41191. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41192. {
  41193. side: {
  41194. height: math.unit(7 + 3/12, "feet"),
  41195. weight: math.unit(312, "lb"),
  41196. name: "Side",
  41197. image: {
  41198. source: "./media/characters/zezo/side.svg",
  41199. extra: 1192/1067,
  41200. bottom: 63/1255
  41201. }
  41202. },
  41203. },
  41204. [
  41205. {
  41206. name: "Normal",
  41207. height: math.unit(7 + 3/12, "feet"),
  41208. default: true
  41209. },
  41210. ]
  41211. ))
  41212. characterMakers.push(() => makeCharacter(
  41213. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41214. {
  41215. front: {
  41216. height: math.unit(5 + 5/12, "feet"),
  41217. weight: math.unit(170, "lb"),
  41218. name: "Front",
  41219. image: {
  41220. source: "./media/characters/mayso/front.svg",
  41221. extra: 1215/1108,
  41222. bottom: 16/1231
  41223. }
  41224. },
  41225. },
  41226. [
  41227. {
  41228. name: "Normal",
  41229. height: math.unit(5 + 5/12, "feet"),
  41230. default: true
  41231. },
  41232. ]
  41233. ))
  41234. characterMakers.push(() => makeCharacter(
  41235. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41236. {
  41237. front: {
  41238. height: math.unit(4 + 3/12, "feet"),
  41239. weight: math.unit(80, "lb"),
  41240. name: "Front",
  41241. image: {
  41242. source: "./media/characters/hess/front.svg",
  41243. extra: 1200/1123,
  41244. bottom: 16/1216
  41245. }
  41246. },
  41247. },
  41248. [
  41249. {
  41250. name: "Normal",
  41251. height: math.unit(4 + 3/12, "feet"),
  41252. default: true
  41253. },
  41254. ]
  41255. ))
  41256. characterMakers.push(() => makeCharacter(
  41257. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41258. {
  41259. front: {
  41260. height: math.unit(1.9, "meters"),
  41261. name: "Front",
  41262. image: {
  41263. source: "./media/characters/ashgar/front.svg",
  41264. extra: 1177/1146,
  41265. bottom: 99/1276
  41266. }
  41267. },
  41268. back: {
  41269. height: math.unit(1.9, "meters"),
  41270. name: "Back",
  41271. image: {
  41272. source: "./media/characters/ashgar/back.svg",
  41273. extra: 1201/1183,
  41274. bottom: 53/1254
  41275. }
  41276. },
  41277. feral: {
  41278. height: math.unit(1.4, "meters"),
  41279. name: "Feral",
  41280. image: {
  41281. source: "./media/characters/ashgar/feral.svg",
  41282. extra: 370/345,
  41283. bottom: 45/415
  41284. }
  41285. },
  41286. },
  41287. [
  41288. {
  41289. name: "Normal",
  41290. height: math.unit(1.9, "meters"),
  41291. default: true
  41292. },
  41293. ]
  41294. ))
  41295. characterMakers.push(() => makeCharacter(
  41296. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41297. {
  41298. regular: {
  41299. height: math.unit(6, "feet"),
  41300. weight: math.unit(220, "lb"),
  41301. name: "Regular",
  41302. image: {
  41303. source: "./media/characters/phillip/regular.svg",
  41304. extra: 1373/1277,
  41305. bottom: 75/1448
  41306. }
  41307. },
  41308. dressed: {
  41309. height: math.unit(6, "feet"),
  41310. weight: math.unit(220, "lb"),
  41311. name: "Dressed",
  41312. image: {
  41313. source: "./media/characters/phillip/dressed.svg",
  41314. extra: 1373/1277,
  41315. bottom: 75/1448
  41316. }
  41317. },
  41318. paw: {
  41319. height: math.unit(1.44, "feet"),
  41320. name: "Paw",
  41321. image: {
  41322. source: "./media/characters/phillip/paw.svg"
  41323. }
  41324. },
  41325. },
  41326. [
  41327. {
  41328. name: "Normal",
  41329. height: math.unit(6, "feet"),
  41330. default: true
  41331. },
  41332. ]
  41333. ))
  41334. characterMakers.push(() => makeCharacter(
  41335. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41336. {
  41337. side: {
  41338. height: math.unit(42, "feet"),
  41339. name: "Side",
  41340. image: {
  41341. source: "./media/characters/uvula/side.svg",
  41342. extra: 683/586,
  41343. bottom: 60/743
  41344. }
  41345. },
  41346. front: {
  41347. height: math.unit(42, "feet"),
  41348. name: "Front",
  41349. image: {
  41350. source: "./media/characters/uvula/front.svg",
  41351. extra: 705/613,
  41352. bottom: 54/759
  41353. }
  41354. },
  41355. maw: {
  41356. height: math.unit(23.5, "feet"),
  41357. name: "Maw",
  41358. image: {
  41359. source: "./media/characters/uvula/maw.svg"
  41360. }
  41361. },
  41362. },
  41363. [
  41364. {
  41365. name: "Original Size",
  41366. height: math.unit(14, "inches")
  41367. },
  41368. {
  41369. name: "Human Size",
  41370. height: math.unit(6, "feet")
  41371. },
  41372. {
  41373. name: "Big",
  41374. height: math.unit(42, "feet"),
  41375. default: true
  41376. },
  41377. {
  41378. name: "Bigger",
  41379. height: math.unit(100, "feet")
  41380. },
  41381. ]
  41382. ))
  41383. characterMakers.push(() => makeCharacter(
  41384. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41385. {
  41386. front: {
  41387. height: math.unit(5 + 11/12, "feet"),
  41388. name: "Front",
  41389. image: {
  41390. source: "./media/characters/lannah/front.svg",
  41391. extra: 1208/1113,
  41392. bottom: 97/1305
  41393. }
  41394. },
  41395. },
  41396. [
  41397. {
  41398. name: "Normal",
  41399. height: math.unit(5 + 11/12, "feet"),
  41400. default: true
  41401. },
  41402. ]
  41403. ))
  41404. characterMakers.push(() => makeCharacter(
  41405. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41406. {
  41407. front: {
  41408. height: math.unit(6 + 3/12, "feet"),
  41409. weight: math.unit(3.5, "tons"),
  41410. name: "Front",
  41411. image: {
  41412. source: "./media/characters/emberflame/front.svg",
  41413. extra: 1198/672,
  41414. bottom: 82/1280
  41415. }
  41416. },
  41417. side: {
  41418. height: math.unit(6 + 3/12, "feet"),
  41419. weight: math.unit(3.5, "tons"),
  41420. name: "Side",
  41421. image: {
  41422. source: "./media/characters/emberflame/side.svg",
  41423. extra: 938/527,
  41424. bottom: 56/994
  41425. }
  41426. },
  41427. },
  41428. [
  41429. {
  41430. name: "Normal",
  41431. height: math.unit(6 + 3/12, "feet"),
  41432. default: true
  41433. },
  41434. ]
  41435. ))
  41436. characterMakers.push(() => makeCharacter(
  41437. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41438. {
  41439. side: {
  41440. height: math.unit(17.5, "feet"),
  41441. weight: math.unit(35, "tons"),
  41442. name: "Side",
  41443. image: {
  41444. source: "./media/characters/sophie-ambrose/side.svg",
  41445. extra: 1573/1242,
  41446. bottom: 71/1644
  41447. }
  41448. },
  41449. maw: {
  41450. height: math.unit(7.4, "feet"),
  41451. name: "Maw",
  41452. image: {
  41453. source: "./media/characters/sophie-ambrose/maw.svg"
  41454. }
  41455. },
  41456. },
  41457. [
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(17.5, "feet"),
  41461. default: true
  41462. },
  41463. ]
  41464. ))
  41465. characterMakers.push(() => makeCharacter(
  41466. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41467. {
  41468. front: {
  41469. height: math.unit(280, "feet"),
  41470. weight: math.unit(550, "tons"),
  41471. name: "Front",
  41472. image: {
  41473. source: "./media/characters/king-mugi/front.svg",
  41474. extra: 1102/947,
  41475. bottom: 104/1206
  41476. }
  41477. },
  41478. },
  41479. [
  41480. {
  41481. name: "King Mugi",
  41482. height: math.unit(280, "feet"),
  41483. default: true
  41484. },
  41485. ]
  41486. ))
  41487. characterMakers.push(() => makeCharacter(
  41488. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41489. {
  41490. front: {
  41491. height: math.unit(64, "meters"),
  41492. name: "Front",
  41493. image: {
  41494. source: "./media/characters/nova-fox/front.svg",
  41495. extra: 1310/1246,
  41496. bottom: 65/1375
  41497. }
  41498. },
  41499. },
  41500. [
  41501. {
  41502. name: "Macro",
  41503. height: math.unit(64, "meters"),
  41504. default: true
  41505. },
  41506. ]
  41507. ))
  41508. characterMakers.push(() => makeCharacter(
  41509. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41510. {
  41511. front: {
  41512. height: math.unit(6 + 3/12, "feet"),
  41513. weight: math.unit(170, "lb"),
  41514. name: "Front",
  41515. image: {
  41516. source: "./media/characters/sam-bat/front.svg",
  41517. extra: 1601/1411,
  41518. bottom: 125/1726
  41519. }
  41520. },
  41521. back: {
  41522. height: math.unit(6 + 3/12, "feet"),
  41523. weight: math.unit(170, "lb"),
  41524. name: "Back",
  41525. image: {
  41526. source: "./media/characters/sam-bat/back.svg",
  41527. extra: 1577/1405,
  41528. bottom: 58/1635
  41529. }
  41530. },
  41531. },
  41532. [
  41533. {
  41534. name: "Normal",
  41535. height: math.unit(6 + 3/12, "feet"),
  41536. default: true
  41537. },
  41538. ]
  41539. ))
  41540. characterMakers.push(() => makeCharacter(
  41541. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41542. {
  41543. front: {
  41544. height: math.unit(59, "feet"),
  41545. weight: math.unit(40000, "lb"),
  41546. name: "Front",
  41547. image: {
  41548. source: "./media/characters/inari/front.svg",
  41549. extra: 1884/1350,
  41550. bottom: 95/1979
  41551. }
  41552. },
  41553. },
  41554. [
  41555. {
  41556. name: "Gigantamax",
  41557. height: math.unit(59, "feet"),
  41558. default: true
  41559. },
  41560. ]
  41561. ))
  41562. characterMakers.push(() => makeCharacter(
  41563. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41564. {
  41565. front: {
  41566. height: math.unit(5 + 8/12, "feet"),
  41567. name: "Front",
  41568. image: {
  41569. source: "./media/characters/elizabeth/front.svg",
  41570. extra: 1395/1298,
  41571. bottom: 54/1449
  41572. }
  41573. },
  41574. mouth: {
  41575. height: math.unit(1.97, "feet"),
  41576. name: "Mouth",
  41577. image: {
  41578. source: "./media/characters/elizabeth/mouth.svg"
  41579. }
  41580. },
  41581. foot: {
  41582. height: math.unit(1.17, "feet"),
  41583. name: "Foot",
  41584. image: {
  41585. source: "./media/characters/elizabeth/foot.svg"
  41586. }
  41587. },
  41588. },
  41589. [
  41590. {
  41591. name: "Normal",
  41592. height: math.unit(5 + 8/12, "feet"),
  41593. default: true
  41594. },
  41595. {
  41596. name: "Minimacro",
  41597. height: math.unit(18, "feet")
  41598. },
  41599. {
  41600. name: "Macro",
  41601. height: math.unit(180, "feet")
  41602. },
  41603. ]
  41604. ))
  41605. characterMakers.push(() => makeCharacter(
  41606. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41607. {
  41608. front: {
  41609. height: math.unit(5 + 2/12, "feet"),
  41610. name: "Front",
  41611. image: {
  41612. source: "./media/characters/october-gossamer/front.svg",
  41613. extra: 505/454,
  41614. bottom: 7/512
  41615. }
  41616. },
  41617. back: {
  41618. height: math.unit(5 + 2/12, "feet"),
  41619. name: "Back",
  41620. image: {
  41621. source: "./media/characters/october-gossamer/back.svg",
  41622. extra: 501/454,
  41623. bottom: 11/512
  41624. }
  41625. },
  41626. },
  41627. [
  41628. {
  41629. name: "Normal",
  41630. height: math.unit(5 + 2/12, "feet"),
  41631. default: true
  41632. },
  41633. ]
  41634. ))
  41635. characterMakers.push(() => makeCharacter(
  41636. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41637. {
  41638. front: {
  41639. height: math.unit(5, "feet"),
  41640. name: "Front",
  41641. image: {
  41642. source: "./media/characters/epiglottis/front.svg",
  41643. extra: 923/849,
  41644. bottom: 17/940
  41645. }
  41646. },
  41647. },
  41648. [
  41649. {
  41650. name: "Original Size",
  41651. height: math.unit(10, "inches")
  41652. },
  41653. {
  41654. name: "Human Size",
  41655. height: math.unit(5, "feet"),
  41656. default: true
  41657. },
  41658. {
  41659. name: "Big",
  41660. height: math.unit(25, "feet")
  41661. },
  41662. {
  41663. name: "Bigger",
  41664. height: math.unit(50, "feet")
  41665. },
  41666. {
  41667. name: "oh lawd",
  41668. height: math.unit(75, "feet")
  41669. },
  41670. ]
  41671. ))
  41672. //characters
  41673. function makeCharacters() {
  41674. const results = [];
  41675. characterMakers.forEach(character => {
  41676. results.push(character());
  41677. });
  41678. return results;
  41679. }