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

41654 строки
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"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "Tyrannosaurus Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. "magpie": {
  1679. name: "Magpie",
  1680. parents: ["corvid"]
  1681. },
  1682. "civet": {
  1683. name: "Civet",
  1684. parents: ["feliform"]
  1685. },
  1686. "feliform": {
  1687. name: "Feliform",
  1688. parents: ["mammal"]
  1689. },
  1690. "tiefling": {
  1691. name: "Tiefling",
  1692. parents: ["devil"]
  1693. },
  1694. "devil": {
  1695. name: "Devil",
  1696. parents: ["supernatural"]
  1697. },
  1698. "sika-deer": {
  1699. name: "Sika Deer",
  1700. parents: ["deer"]
  1701. },
  1702. "vaporeon": {
  1703. name: "Vaporeon",
  1704. parents: ["eeveelution"]
  1705. },
  1706. "leafeon": {
  1707. name: "Leafeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "jolteon": {
  1711. name: "Jolteon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. }
  1715. //species
  1716. function getSpeciesInfo(speciesList) {
  1717. let result = new Set();
  1718. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1719. result.add(entry)
  1720. });
  1721. return Array.from(result);
  1722. };
  1723. function getSpeciesInfoHelper(species) {
  1724. if (!speciesData[species]) {
  1725. console.warn(species + " doesn't exist");
  1726. return [];
  1727. }
  1728. if (speciesData[species].parents) {
  1729. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1730. } else {
  1731. return [species];
  1732. }
  1733. }
  1734. characterMakers.push(() => makeCharacter(
  1735. {
  1736. name: "Fen",
  1737. species: ["crux"],
  1738. description: {
  1739. title: "Bio",
  1740. text: "Very furry. Sheds on everything."
  1741. },
  1742. tags: [
  1743. "anthro",
  1744. "goo"
  1745. ]
  1746. },
  1747. {
  1748. back: {
  1749. height: math.unit(2.2428, "meter"),
  1750. weight: math.unit(124.738, "kg"),
  1751. name: "Back",
  1752. image: {
  1753. source: "./media/characters/fen/back.svg",
  1754. },
  1755. info: {
  1756. description: {
  1757. mode: "append",
  1758. text: "\n\nHe is not currently looking at you."
  1759. }
  1760. }
  1761. },
  1762. full: {
  1763. height: math.unit(1.34, "meter"),
  1764. weight: math.unit(225, "kg"),
  1765. name: "Full",
  1766. image: {
  1767. source: "./media/characters/fen/full.svg"
  1768. },
  1769. info: {
  1770. description: {
  1771. mode: "append",
  1772. text: "\n\nMunch."
  1773. }
  1774. }
  1775. },
  1776. kneeling: {
  1777. height: math.unit(5.4, "feet"),
  1778. weight: math.unit(124.738, "kg"),
  1779. name: "Kneeling",
  1780. image: {
  1781. source: "./media/characters/fen/kneeling.svg",
  1782. extra: 563 / 507
  1783. }
  1784. },
  1785. goo: {
  1786. height: math.unit(2.8, "feet"),
  1787. weight: math.unit(125, "kg"),
  1788. capacity: math.unit(1, "people"),
  1789. name: "Goo",
  1790. image: {
  1791. source: "./media/characters/fen/goo.svg",
  1792. bottom: 116 / 613
  1793. }
  1794. },
  1795. lounging: {
  1796. height: math.unit(6.5, "feet"),
  1797. weight: math.unit(125, "kg"),
  1798. name: "Lounging",
  1799. image: {
  1800. source: "./media/characters/fen/lounging.svg"
  1801. }
  1802. },
  1803. },
  1804. [
  1805. {
  1806. name: "Normal",
  1807. height: math.unit(2.2428, "meter")
  1808. },
  1809. {
  1810. name: "Big",
  1811. height: math.unit(12, "feet")
  1812. },
  1813. {
  1814. name: "Minimacro",
  1815. height: math.unit(40, "feet"),
  1816. default: true,
  1817. info: {
  1818. description: {
  1819. mode: "append",
  1820. text: "\n\nTOO DAMN BIG"
  1821. }
  1822. }
  1823. },
  1824. {
  1825. name: "Macro",
  1826. height: math.unit(100, "feet"),
  1827. info: {
  1828. description: {
  1829. mode: "append",
  1830. text: "\n\nTOO DAMN BIG"
  1831. }
  1832. }
  1833. },
  1834. {
  1835. name: "Macro+",
  1836. height: math.unit(300, "feet")
  1837. },
  1838. {
  1839. name: "Megamacro",
  1840. height: math.unit(2, "miles")
  1841. }
  1842. ]
  1843. ))
  1844. characterMakers.push(() => makeCharacter(
  1845. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1846. {
  1847. front: {
  1848. height: math.unit(183, "cm"),
  1849. weight: math.unit(80, "kg"),
  1850. name: "Front",
  1851. image: {
  1852. source: "./media/characters/sofia-fluttertail/front.svg",
  1853. bottom: 0.01,
  1854. extra: 2154 / 2081
  1855. }
  1856. },
  1857. frontAlt: {
  1858. height: math.unit(183, "cm"),
  1859. weight: math.unit(80, "kg"),
  1860. name: "Front (alt)",
  1861. image: {
  1862. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1863. }
  1864. },
  1865. back: {
  1866. height: math.unit(183, "cm"),
  1867. weight: math.unit(80, "kg"),
  1868. name: "Back",
  1869. image: {
  1870. source: "./media/characters/sofia-fluttertail/back.svg"
  1871. }
  1872. },
  1873. kneeling: {
  1874. height: math.unit(125, "cm"),
  1875. weight: math.unit(80, "kg"),
  1876. name: "Kneeling",
  1877. image: {
  1878. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1879. extra: 1033 / 977,
  1880. bottom: 23.7 / 1057
  1881. }
  1882. },
  1883. maw: {
  1884. height: math.unit(183 / 5, "cm"),
  1885. name: "Maw",
  1886. image: {
  1887. source: "./media/characters/sofia-fluttertail/maw.svg"
  1888. }
  1889. },
  1890. mawcloseup: {
  1891. height: math.unit(183 / 5 * 0.41, "cm"),
  1892. name: "Maw (Closeup)",
  1893. image: {
  1894. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1895. }
  1896. },
  1897. paws: {
  1898. height: math.unit(1.17, "feet"),
  1899. name: "Paws",
  1900. image: {
  1901. source: "./media/characters/sofia-fluttertail/paws.svg",
  1902. extra: 851 / 851,
  1903. bottom: 17 / 868
  1904. }
  1905. },
  1906. },
  1907. [
  1908. {
  1909. name: "Normal",
  1910. height: math.unit(1.83, "meter")
  1911. },
  1912. {
  1913. name: "Size Thief",
  1914. height: math.unit(18, "feet")
  1915. },
  1916. {
  1917. name: "50 Foot Collie",
  1918. height: math.unit(50, "feet")
  1919. },
  1920. {
  1921. name: "Macro",
  1922. height: math.unit(96, "feet"),
  1923. default: true
  1924. },
  1925. {
  1926. name: "Megamerger",
  1927. height: math.unit(650, "feet")
  1928. },
  1929. ]
  1930. ))
  1931. characterMakers.push(() => makeCharacter(
  1932. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1933. {
  1934. front: {
  1935. height: math.unit(7, "feet"),
  1936. weight: math.unit(100, "kg"),
  1937. name: "Front",
  1938. image: {
  1939. source: "./media/characters/march/front.svg",
  1940. extra: 1992/1851,
  1941. bottom: 39/2031
  1942. }
  1943. },
  1944. foot: {
  1945. height: math.unit(0.9, "feet"),
  1946. name: "Foot",
  1947. image: {
  1948. source: "./media/characters/march/foot.svg"
  1949. }
  1950. },
  1951. },
  1952. [
  1953. {
  1954. name: "Normal",
  1955. height: math.unit(7.9, "feet")
  1956. },
  1957. {
  1958. name: "Macro",
  1959. height: math.unit(220, "meters")
  1960. },
  1961. {
  1962. name: "Megamacro",
  1963. height: math.unit(2.98, "km"),
  1964. default: true
  1965. },
  1966. {
  1967. name: "Gigamacro",
  1968. height: math.unit(15963, "km")
  1969. },
  1970. {
  1971. name: "Teramacro",
  1972. height: math.unit(2980000000, "km")
  1973. },
  1974. {
  1975. name: "Examacro",
  1976. height: math.unit(250, "parsecs")
  1977. },
  1978. ]
  1979. ))
  1980. characterMakers.push(() => makeCharacter(
  1981. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1982. {
  1983. front: {
  1984. height: math.unit(6, "feet"),
  1985. weight: math.unit(60, "kg"),
  1986. name: "Front",
  1987. image: {
  1988. source: "./media/characters/noir/front.svg",
  1989. extra: 1,
  1990. bottom: 0.032
  1991. }
  1992. },
  1993. },
  1994. [
  1995. {
  1996. name: "Normal",
  1997. height: math.unit(6.6, "feet")
  1998. },
  1999. {
  2000. name: "Macro",
  2001. height: math.unit(500, "feet")
  2002. },
  2003. {
  2004. name: "Megamacro",
  2005. height: math.unit(2.5, "km"),
  2006. default: true
  2007. },
  2008. {
  2009. name: "Gigamacro",
  2010. height: math.unit(22500, "km")
  2011. },
  2012. {
  2013. name: "Teramacro",
  2014. height: math.unit(2500000000, "km")
  2015. },
  2016. {
  2017. name: "Examacro",
  2018. height: math.unit(200, "parsecs")
  2019. },
  2020. ]
  2021. ))
  2022. characterMakers.push(() => makeCharacter(
  2023. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2024. {
  2025. front: {
  2026. height: math.unit(7, "feet"),
  2027. weight: math.unit(100, "kg"),
  2028. name: "Front",
  2029. image: {
  2030. source: "./media/characters/okuri/front.svg",
  2031. extra: 1,
  2032. bottom: 0.037
  2033. }
  2034. },
  2035. back: {
  2036. height: math.unit(7, "feet"),
  2037. weight: math.unit(100, "kg"),
  2038. name: "Back",
  2039. image: {
  2040. source: "./media/characters/okuri/back.svg",
  2041. extra: 1,
  2042. bottom: 0.007
  2043. }
  2044. },
  2045. },
  2046. [
  2047. {
  2048. name: "Megamacro",
  2049. height: math.unit(100, "miles"),
  2050. default: true
  2051. },
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2056. {
  2057. front: {
  2058. height: math.unit(7, "feet"),
  2059. weight: math.unit(100, "kg"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/manny/front.svg",
  2063. extra: 1,
  2064. bottom: 0.06
  2065. }
  2066. },
  2067. back: {
  2068. height: math.unit(7, "feet"),
  2069. weight: math.unit(100, "kg"),
  2070. name: "Back",
  2071. image: {
  2072. source: "./media/characters/manny/back.svg",
  2073. extra: 1,
  2074. bottom: 0.014
  2075. }
  2076. },
  2077. },
  2078. [
  2079. {
  2080. name: "Normal",
  2081. height: math.unit(7, "feet"),
  2082. },
  2083. {
  2084. name: "Macro",
  2085. height: math.unit(78, "feet"),
  2086. default: true
  2087. },
  2088. {
  2089. name: "Macro+",
  2090. height: math.unit(300, "meters")
  2091. },
  2092. {
  2093. name: "Macro++",
  2094. height: math.unit(2400, "meters")
  2095. },
  2096. {
  2097. name: "Megamacro",
  2098. height: math.unit(5167, "meters")
  2099. },
  2100. {
  2101. name: "Gigamacro",
  2102. height: math.unit(41769, "miles")
  2103. },
  2104. ]
  2105. ))
  2106. characterMakers.push(() => makeCharacter(
  2107. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2108. {
  2109. front: {
  2110. height: math.unit(7, "feet"),
  2111. weight: math.unit(100, "kg"),
  2112. name: "Front",
  2113. image: {
  2114. source: "./media/characters/adake/front-1.svg"
  2115. }
  2116. },
  2117. frontAlt: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Front (Alt)",
  2121. image: {
  2122. source: "./media/characters/adake/front-2.svg",
  2123. extra: 1,
  2124. bottom: 0.01
  2125. }
  2126. },
  2127. back: {
  2128. height: math.unit(7, "feet"),
  2129. weight: math.unit(100, "kg"),
  2130. name: "Back",
  2131. image: {
  2132. source: "./media/characters/adake/back.svg",
  2133. }
  2134. },
  2135. kneel: {
  2136. height: math.unit(5.385, "feet"),
  2137. weight: math.unit(100, "kg"),
  2138. name: "Kneeling",
  2139. image: {
  2140. source: "./media/characters/adake/kneel.svg",
  2141. bottom: 0.052
  2142. }
  2143. },
  2144. },
  2145. [
  2146. {
  2147. name: "Normal",
  2148. height: math.unit(7, "feet"),
  2149. },
  2150. {
  2151. name: "Macro",
  2152. height: math.unit(78, "feet"),
  2153. default: true
  2154. },
  2155. {
  2156. name: "Macro+",
  2157. height: math.unit(300, "meters")
  2158. },
  2159. {
  2160. name: "Macro++",
  2161. height: math.unit(2400, "meters")
  2162. },
  2163. {
  2164. name: "Megamacro",
  2165. height: math.unit(5167, "meters")
  2166. },
  2167. {
  2168. name: "Gigamacro",
  2169. height: math.unit(41769, "miles")
  2170. },
  2171. ]
  2172. ))
  2173. characterMakers.push(() => makeCharacter(
  2174. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2175. {
  2176. front: {
  2177. height: math.unit(1.65, "meters"),
  2178. weight: math.unit(50, "kg"),
  2179. name: "Front",
  2180. image: {
  2181. source: "./media/characters/elijah/front.svg",
  2182. extra: 858 / 830,
  2183. bottom: 95.5 / 953.8559
  2184. }
  2185. },
  2186. back: {
  2187. height: math.unit(1.65, "meters"),
  2188. weight: math.unit(50, "kg"),
  2189. name: "Back",
  2190. image: {
  2191. source: "./media/characters/elijah/back.svg",
  2192. extra: 895 / 850,
  2193. bottom: 5.3 / 897.956
  2194. }
  2195. },
  2196. frontNsfw: {
  2197. height: math.unit(1.65, "meters"),
  2198. weight: math.unit(50, "kg"),
  2199. name: "Front (NSFW)",
  2200. image: {
  2201. source: "./media/characters/elijah/front-nsfw.svg",
  2202. extra: 858 / 830,
  2203. bottom: 95.5 / 953.8559
  2204. }
  2205. },
  2206. backNsfw: {
  2207. height: math.unit(1.65, "meters"),
  2208. weight: math.unit(50, "kg"),
  2209. name: "Back (NSFW)",
  2210. image: {
  2211. source: "./media/characters/elijah/back-nsfw.svg",
  2212. extra: 895 / 850,
  2213. bottom: 5.3 / 897.956
  2214. }
  2215. },
  2216. dick: {
  2217. height: math.unit(1, "feet"),
  2218. name: "Dick",
  2219. image: {
  2220. source: "./media/characters/elijah/dick.svg"
  2221. }
  2222. },
  2223. beakOpen: {
  2224. height: math.unit(1.25, "feet"),
  2225. name: "Beak (Open)",
  2226. image: {
  2227. source: "./media/characters/elijah/beak-open.svg"
  2228. }
  2229. },
  2230. beakShut: {
  2231. height: math.unit(1.25, "feet"),
  2232. name: "Beak (Shut)",
  2233. image: {
  2234. source: "./media/characters/elijah/beak-shut.svg"
  2235. }
  2236. },
  2237. footFlexing: {
  2238. height: math.unit(1.61, "feet"),
  2239. name: "Foot (Flexing)",
  2240. image: {
  2241. source: "./media/characters/elijah/foot-flexing.svg"
  2242. }
  2243. },
  2244. footStepping: {
  2245. height: math.unit(1.44, "feet"),
  2246. name: "Foot (Stepping)",
  2247. image: {
  2248. source: "./media/characters/elijah/foot-stepping.svg"
  2249. }
  2250. },
  2251. plantigradeLeg: {
  2252. height: math.unit(2.34, "feet"),
  2253. name: "Plantigrade Leg",
  2254. image: {
  2255. source: "./media/characters/elijah/plantigrade-leg.svg"
  2256. }
  2257. },
  2258. plantigradeFootLeft: {
  2259. height: math.unit(0.9, "feet"),
  2260. name: "Plantigrade Foot (Left)",
  2261. image: {
  2262. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2263. }
  2264. },
  2265. plantigradeFootRight: {
  2266. height: math.unit(0.9, "feet"),
  2267. name: "Plantigrade Foot (Right)",
  2268. image: {
  2269. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2270. }
  2271. },
  2272. },
  2273. [
  2274. {
  2275. name: "Normal",
  2276. height: math.unit(1.65, "meters")
  2277. },
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(55, "meters"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Macro+",
  2285. height: math.unit(105, "meters")
  2286. },
  2287. ]
  2288. ))
  2289. characterMakers.push(() => makeCharacter(
  2290. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2291. {
  2292. front: {
  2293. height: math.unit(11, "feet"),
  2294. weight: math.unit(320, "kg"),
  2295. name: "Front",
  2296. image: {
  2297. source: "./media/characters/rai/front.svg",
  2298. extra: 1802/1696,
  2299. bottom: 68/1870
  2300. }
  2301. },
  2302. frontDressed: {
  2303. height: math.unit(11, "feet"),
  2304. weight: math.unit(320, "kg"),
  2305. name: "Front (Dressed)",
  2306. image: {
  2307. source: "./media/characters/rai/front-dressed.svg",
  2308. extra: 1802/1696,
  2309. bottom: 68/1870
  2310. }
  2311. },
  2312. side: {
  2313. height: math.unit(11, "feet"),
  2314. weight: math.unit(320, "kg"),
  2315. name: "Side",
  2316. image: {
  2317. source: "./media/characters/rai/side.svg",
  2318. extra: 1789/1710,
  2319. bottom: 115/1904
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(11, "feet"),
  2324. weight: math.unit(320, "kg"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/rai/back.svg",
  2328. extra: 1770/1707,
  2329. bottom: 28/1798
  2330. }
  2331. },
  2332. feral: {
  2333. height: math.unit(11, "feet"),
  2334. weight: math.unit(640, "kg"),
  2335. name: "Feral",
  2336. image: {
  2337. source: "./media/characters/rai/feral.svg",
  2338. extra: 1035/642,
  2339. bottom: 86/1121
  2340. }
  2341. },
  2342. dragon: {
  2343. height: math.unit(23, "feet"),
  2344. weight: math.unit(50000, "lb"),
  2345. name: "Dragon",
  2346. image: {
  2347. source: "./media/characters/rai/dragon.svg",
  2348. extra: 2498 / 2030,
  2349. bottom: 85.2 / 2584
  2350. }
  2351. },
  2352. maw: {
  2353. height: math.unit(6 / 3.81416, "feet"),
  2354. name: "Maw",
  2355. image: {
  2356. source: "./media/characters/rai/maw.svg"
  2357. }
  2358. },
  2359. },
  2360. [
  2361. {
  2362. name: "Normal",
  2363. height: math.unit(11, "feet")
  2364. },
  2365. {
  2366. name: "Macro",
  2367. height: math.unit(302, "feet"),
  2368. default: true
  2369. },
  2370. ]
  2371. ))
  2372. characterMakers.push(() => makeCharacter(
  2373. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2374. {
  2375. frontDressed: {
  2376. height: math.unit(216, "feet"),
  2377. weight: math.unit(7000000, "lb"),
  2378. name: "Front (Dressed)",
  2379. image: {
  2380. source: "./media/characters/jazzy/front-dressed.svg",
  2381. extra: 2738 / 2651,
  2382. bottom: 41.8 / 2786
  2383. }
  2384. },
  2385. backDressed: {
  2386. height: math.unit(216, "feet"),
  2387. weight: math.unit(7000000, "lb"),
  2388. name: "Back (Dressed)",
  2389. image: {
  2390. source: "./media/characters/jazzy/back-dressed.svg",
  2391. extra: 2775 / 2673,
  2392. bottom: 36.8 / 2817
  2393. }
  2394. },
  2395. front: {
  2396. height: math.unit(216, "feet"),
  2397. weight: math.unit(7000000, "lb"),
  2398. name: "Front",
  2399. image: {
  2400. source: "./media/characters/jazzy/front.svg",
  2401. extra: 2738 / 2651,
  2402. bottom: 41.8 / 2786
  2403. }
  2404. },
  2405. back: {
  2406. height: math.unit(216, "feet"),
  2407. weight: math.unit(7000000, "lb"),
  2408. name: "Back",
  2409. image: {
  2410. source: "./media/characters/jazzy/back.svg",
  2411. extra: 2775 / 2673,
  2412. bottom: 36.8 / 2817
  2413. }
  2414. },
  2415. maw: {
  2416. height: math.unit(20, "feet"),
  2417. name: "Maw",
  2418. image: {
  2419. source: "./media/characters/jazzy/maw.svg"
  2420. }
  2421. },
  2422. paws: {
  2423. height: math.unit(27.5, "feet"),
  2424. name: "Paws",
  2425. image: {
  2426. source: "./media/characters/jazzy/paws.svg"
  2427. }
  2428. },
  2429. eye: {
  2430. height: math.unit(4.4, "feet"),
  2431. name: "Eye",
  2432. image: {
  2433. source: "./media/characters/jazzy/eye.svg"
  2434. }
  2435. },
  2436. droneOffense: {
  2437. height: math.unit(9.5, "inches"),
  2438. name: "Drone (Offense)",
  2439. image: {
  2440. source: "./media/characters/jazzy/drone-offense.svg"
  2441. }
  2442. },
  2443. droneRecon: {
  2444. height: math.unit(9.5, "inches"),
  2445. name: "Drone (Recon)",
  2446. image: {
  2447. source: "./media/characters/jazzy/drone-recon.svg"
  2448. }
  2449. },
  2450. droneDefense: {
  2451. height: math.unit(9.5, "inches"),
  2452. name: "Drone (Defense)",
  2453. image: {
  2454. source: "./media/characters/jazzy/drone-defense.svg"
  2455. }
  2456. },
  2457. },
  2458. [
  2459. {
  2460. name: "Macro",
  2461. height: math.unit(216, "feet"),
  2462. default: true
  2463. },
  2464. ]
  2465. ))
  2466. characterMakers.push(() => makeCharacter(
  2467. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2468. {
  2469. front: {
  2470. height: math.unit(9 + 6/12, "feet"),
  2471. weight: math.unit(700, "lb"),
  2472. name: "Front",
  2473. image: {
  2474. source: "./media/characters/flamm/front.svg",
  2475. extra: 1751/1632,
  2476. bottom: 46/1797
  2477. }
  2478. },
  2479. buff: {
  2480. height: math.unit(9 + 6/12, "feet"),
  2481. weight: math.unit(950, "lb"),
  2482. name: "Buff",
  2483. image: {
  2484. source: "./media/characters/flamm/buff.svg",
  2485. extra: 3018/2874,
  2486. bottom: 221/3239
  2487. }
  2488. },
  2489. },
  2490. [
  2491. {
  2492. name: "Normal",
  2493. height: math.unit(9.5, "feet")
  2494. },
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(200, "feet"),
  2498. default: true
  2499. },
  2500. ]
  2501. ))
  2502. characterMakers.push(() => makeCharacter(
  2503. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2504. {
  2505. front: {
  2506. height: math.unit(5 + 3/12, "feet"),
  2507. weight: math.unit(60, "kg"),
  2508. name: "Front",
  2509. image: {
  2510. source: "./media/characters/zephiro/front.svg",
  2511. extra: 2309 / 2162,
  2512. bottom: 0.069
  2513. }
  2514. },
  2515. side: {
  2516. height: math.unit(5 + 3/12, "feet"),
  2517. weight: math.unit(60, "kg"),
  2518. name: "Side",
  2519. image: {
  2520. source: "./media/characters/zephiro/side.svg",
  2521. extra: 2403 / 2279,
  2522. bottom: 0.015
  2523. }
  2524. },
  2525. back: {
  2526. height: math.unit(5 + 3/12, "feet"),
  2527. weight: math.unit(60, "kg"),
  2528. name: "Back",
  2529. image: {
  2530. source: "./media/characters/zephiro/back.svg",
  2531. extra: 2373 / 2244,
  2532. bottom: 0.013
  2533. }
  2534. },
  2535. hand: {
  2536. height: math.unit(0.68, "feet"),
  2537. name: "Hand",
  2538. image: {
  2539. source: "./media/characters/zephiro/hand.svg"
  2540. }
  2541. },
  2542. paw: {
  2543. height: math.unit(1, "feet"),
  2544. name: "Paw",
  2545. image: {
  2546. source: "./media/characters/zephiro/paw.svg"
  2547. }
  2548. },
  2549. beans: {
  2550. height: math.unit(0.93, "feet"),
  2551. name: "Beans",
  2552. image: {
  2553. source: "./media/characters/zephiro/beans.svg"
  2554. }
  2555. },
  2556. },
  2557. [
  2558. {
  2559. name: "Micro",
  2560. height: math.unit(3, "inches")
  2561. },
  2562. {
  2563. name: "Normal",
  2564. height: math.unit(5 + 3 / 12, "feet"),
  2565. default: true
  2566. },
  2567. {
  2568. name: "Macro",
  2569. height: math.unit(118, "feet")
  2570. },
  2571. ]
  2572. ))
  2573. characterMakers.push(() => makeCharacter(
  2574. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2575. {
  2576. front: {
  2577. height: math.unit(5, "feet"),
  2578. weight: math.unit(90, "kg"),
  2579. name: "Front",
  2580. image: {
  2581. source: "./media/characters/fory/front.svg",
  2582. extra: 2862 / 2674,
  2583. bottom: 180 / 3043.8
  2584. }
  2585. },
  2586. back: {
  2587. height: math.unit(5, "feet"),
  2588. weight: math.unit(90, "kg"),
  2589. name: "Back",
  2590. image: {
  2591. source: "./media/characters/fory/back.svg",
  2592. extra: 2962 / 2791,
  2593. bottom: 106 / 3071.8
  2594. }
  2595. },
  2596. foot: {
  2597. height: math.unit(2.14, "feet"),
  2598. name: "Foot",
  2599. image: {
  2600. source: "./media/characters/fory/foot.svg"
  2601. }
  2602. },
  2603. },
  2604. [
  2605. {
  2606. name: "Normal",
  2607. height: math.unit(5, "feet")
  2608. },
  2609. {
  2610. name: "Macro",
  2611. height: math.unit(50, "feet"),
  2612. default: true
  2613. },
  2614. {
  2615. name: "Megamacro",
  2616. height: math.unit(10, "miles")
  2617. },
  2618. {
  2619. name: "Gigamacro",
  2620. height: math.unit(5, "earths")
  2621. },
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2626. {
  2627. front: {
  2628. height: math.unit(7, "feet"),
  2629. weight: math.unit(90, "kg"),
  2630. name: "Front",
  2631. image: {
  2632. source: "./media/characters/kurrikage/front.svg",
  2633. extra: 1,
  2634. bottom: 0.035
  2635. }
  2636. },
  2637. back: {
  2638. height: math.unit(7, "feet"),
  2639. weight: math.unit(90, "lb"),
  2640. name: "Back",
  2641. image: {
  2642. source: "./media/characters/kurrikage/back.svg"
  2643. }
  2644. },
  2645. paw: {
  2646. height: math.unit(1.5, "feet"),
  2647. name: "Paw",
  2648. image: {
  2649. source: "./media/characters/kurrikage/paw.svg"
  2650. }
  2651. },
  2652. staff: {
  2653. height: math.unit(6.7, "feet"),
  2654. name: "Staff",
  2655. image: {
  2656. source: "./media/characters/kurrikage/staff.svg"
  2657. }
  2658. },
  2659. peek: {
  2660. height: math.unit(1.05, "feet"),
  2661. name: "Peeking",
  2662. image: {
  2663. source: "./media/characters/kurrikage/peek.svg",
  2664. bottom: 0.08
  2665. }
  2666. },
  2667. },
  2668. [
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(12, "feet"),
  2672. default: true
  2673. },
  2674. {
  2675. name: "Big",
  2676. height: math.unit(20, "feet")
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(500, "feet")
  2681. },
  2682. {
  2683. name: "Megamacro",
  2684. height: math.unit(20, "miles")
  2685. },
  2686. ]
  2687. ))
  2688. characterMakers.push(() => makeCharacter(
  2689. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2690. {
  2691. front: {
  2692. height: math.unit(6, "feet"),
  2693. weight: math.unit(75, "kg"),
  2694. name: "Front",
  2695. image: {
  2696. source: "./media/characters/shingo/front.svg",
  2697. extra: 706/681,
  2698. bottom: 11/717
  2699. }
  2700. },
  2701. frontAlt: {
  2702. height: math.unit(6, "feet"),
  2703. weight: math.unit(75, "kg"),
  2704. name: "Front (Alt)",
  2705. image: {
  2706. source: "./media/characters/shingo/front-alt.svg",
  2707. extra: 3511 / 3338,
  2708. bottom: 0.005
  2709. }
  2710. },
  2711. paw: {
  2712. height: math.unit(1, "feet"),
  2713. name: "Paw",
  2714. image: {
  2715. source: "./media/characters/shingo/paw.svg"
  2716. }
  2717. },
  2718. },
  2719. [
  2720. {
  2721. name: "Micro",
  2722. height: math.unit(4, "inches")
  2723. },
  2724. {
  2725. name: "Normal",
  2726. height: math.unit(6, "feet"),
  2727. default: true
  2728. },
  2729. {
  2730. name: "Macro",
  2731. height: math.unit(108, "feet")
  2732. },
  2733. {
  2734. name: "Macro+",
  2735. height: math.unit(1500, "feet")
  2736. },
  2737. ]
  2738. ))
  2739. characterMakers.push(() => makeCharacter(
  2740. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2741. {
  2742. side: {
  2743. height: math.unit(6, "feet"),
  2744. weight: math.unit(75, "kg"),
  2745. name: "Side",
  2746. image: {
  2747. source: "./media/characters/aigey/side.svg"
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(200, "feet"),
  2755. default: true
  2756. },
  2757. {
  2758. name: "Megamacro",
  2759. height: math.unit(100, "miles")
  2760. },
  2761. ]
  2762. )
  2763. )
  2764. characterMakers.push(() => makeCharacter(
  2765. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2766. {
  2767. front: {
  2768. height: math.unit(5 + 5 / 12, "feet"),
  2769. weight: math.unit(75, "kg"),
  2770. name: "Front",
  2771. image: {
  2772. source: "./media/characters/natasha/front.svg",
  2773. extra: 859 / 824,
  2774. bottom: 23 / 879.6
  2775. }
  2776. },
  2777. frontNsfw: {
  2778. height: math.unit(5 + 5 / 12, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Front (NSFW)",
  2781. image: {
  2782. source: "./media/characters/natasha/front-nsfw.svg",
  2783. extra: 859 / 824,
  2784. bottom: 23 / 879.6
  2785. }
  2786. },
  2787. frontErect: {
  2788. height: math.unit(5 + 5 / 12, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Front (Erect)",
  2791. image: {
  2792. source: "./media/characters/natasha/front-erect.svg",
  2793. extra: 859 / 824,
  2794. bottom: 23 / 879.6
  2795. }
  2796. },
  2797. back: {
  2798. height: math.unit(5 + 5 / 12, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Back",
  2801. image: {
  2802. source: "./media/characters/natasha/back.svg",
  2803. extra: 887.9 / 852.6,
  2804. bottom: 9.7 / 896.4
  2805. }
  2806. },
  2807. backAlt: {
  2808. height: math.unit(5 + 5 / 12, "feet"),
  2809. weight: math.unit(75, "kg"),
  2810. name: "Back (Alt)",
  2811. image: {
  2812. source: "./media/characters/natasha/back-alt.svg",
  2813. extra: 1236.7 / 1192,
  2814. bottom: 22.3 / 1258.2
  2815. }
  2816. },
  2817. dick: {
  2818. height: math.unit(1.772, "feet"),
  2819. name: "Dick",
  2820. image: {
  2821. source: "./media/characters/natasha/dick.svg"
  2822. }
  2823. },
  2824. paw: {
  2825. height: math.unit(0.250, "meters"),
  2826. name: "Paw",
  2827. image: {
  2828. source: "./media/characters/natasha/paw.svg"
  2829. }
  2830. },
  2831. },
  2832. [
  2833. {
  2834. name: "Normal",
  2835. height: math.unit(5 + 5 / 12, "feet")
  2836. },
  2837. {
  2838. name: "Large",
  2839. height: math.unit(12, "feet")
  2840. },
  2841. {
  2842. name: "Macro",
  2843. height: math.unit(100, "feet"),
  2844. default: true
  2845. },
  2846. {
  2847. name: "Macro+",
  2848. height: math.unit(260, "feet")
  2849. },
  2850. {
  2851. name: "Macro++",
  2852. height: math.unit(1, "mile")
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(6, "feet"),
  2861. weight: math.unit(75, "kg"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/malik/front.svg"
  2865. }
  2866. },
  2867. side: {
  2868. height: math.unit(6, "feet"),
  2869. weight: math.unit(75, "kg"),
  2870. name: "Side",
  2871. image: {
  2872. source: "./media/characters/malik/side.svg",
  2873. extra: 1.1539
  2874. }
  2875. },
  2876. back: {
  2877. height: math.unit(6, "feet"),
  2878. weight: math.unit(75, "kg"),
  2879. name: "Back",
  2880. image: {
  2881. source: "./media/characters/malik/back.svg"
  2882. }
  2883. },
  2884. },
  2885. [
  2886. {
  2887. name: "Macro",
  2888. height: math.unit(156, "feet"),
  2889. default: true
  2890. },
  2891. {
  2892. name: "Macro+",
  2893. height: math.unit(1188, "feet")
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(6, "feet"),
  2902. weight: math.unit(75, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/sefer/front.svg",
  2906. extra: 848 / 659,
  2907. bottom: 28.3 / 876.442
  2908. }
  2909. },
  2910. back: {
  2911. height: math.unit(6, "feet"),
  2912. weight: math.unit(75, "kg"),
  2913. name: "Back",
  2914. image: {
  2915. source: "./media/characters/sefer/back.svg",
  2916. extra: 864 / 695,
  2917. bottom: 10 / 871
  2918. }
  2919. },
  2920. frontDressed: {
  2921. height: math.unit(6, "feet"),
  2922. weight: math.unit(75, "kg"),
  2923. name: "Front (Dressed)",
  2924. image: {
  2925. source: "./media/characters/sefer/front-dressed.svg",
  2926. extra: 839 / 653,
  2927. bottom: 37.6 / 878
  2928. }
  2929. },
  2930. },
  2931. [
  2932. {
  2933. name: "Normal",
  2934. height: math.unit(6, "feet"),
  2935. default: true
  2936. },
  2937. ]
  2938. ))
  2939. characterMakers.push(() => makeCharacter(
  2940. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2941. {
  2942. body: {
  2943. height: math.unit(2.2428, "meter"),
  2944. weight: math.unit(124.738, "kg"),
  2945. name: "Body",
  2946. image: {
  2947. extra: 1225 / 1050,
  2948. source: "./media/characters/north/front.svg"
  2949. }
  2950. }
  2951. },
  2952. [
  2953. {
  2954. name: "Micro",
  2955. height: math.unit(4, "inches")
  2956. },
  2957. {
  2958. name: "Macro",
  2959. height: math.unit(63, "meters")
  2960. },
  2961. {
  2962. name: "Megamacro",
  2963. height: math.unit(101, "miles"),
  2964. default: true
  2965. }
  2966. ]
  2967. ))
  2968. characterMakers.push(() => makeCharacter(
  2969. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2970. {
  2971. angled: {
  2972. height: math.unit(4, "meter"),
  2973. weight: math.unit(150, "kg"),
  2974. name: "Angled",
  2975. image: {
  2976. source: "./media/characters/talan/angled-sfw.svg",
  2977. bottom: 29 / 3734
  2978. }
  2979. },
  2980. angledNsfw: {
  2981. height: math.unit(4, "meter"),
  2982. weight: math.unit(150, "kg"),
  2983. name: "Angled (NSFW)",
  2984. image: {
  2985. source: "./media/characters/talan/angled-nsfw.svg",
  2986. bottom: 29 / 3734
  2987. }
  2988. },
  2989. frontNsfw: {
  2990. height: math.unit(4, "meter"),
  2991. weight: math.unit(150, "kg"),
  2992. name: "Front (NSFW)",
  2993. image: {
  2994. source: "./media/characters/talan/front-nsfw.svg",
  2995. bottom: 29 / 3734
  2996. }
  2997. },
  2998. sideNsfw: {
  2999. height: math.unit(4, "meter"),
  3000. weight: math.unit(150, "kg"),
  3001. name: "Side (NSFW)",
  3002. image: {
  3003. source: "./media/characters/talan/side-nsfw.svg",
  3004. bottom: 29 / 3734
  3005. }
  3006. },
  3007. back: {
  3008. height: math.unit(4, "meter"),
  3009. weight: math.unit(150, "kg"),
  3010. name: "Back",
  3011. image: {
  3012. source: "./media/characters/talan/back.svg"
  3013. }
  3014. },
  3015. dickBottom: {
  3016. height: math.unit(0.621, "meter"),
  3017. name: "Dick (Bottom)",
  3018. image: {
  3019. source: "./media/characters/talan/dick-bottom.svg"
  3020. }
  3021. },
  3022. dickTop: {
  3023. height: math.unit(0.621, "meter"),
  3024. name: "Dick (Top)",
  3025. image: {
  3026. source: "./media/characters/talan/dick-top.svg"
  3027. }
  3028. },
  3029. dickSide: {
  3030. height: math.unit(0.305, "meter"),
  3031. name: "Dick (Side)",
  3032. image: {
  3033. source: "./media/characters/talan/dick-side.svg"
  3034. }
  3035. },
  3036. dickFront: {
  3037. height: math.unit(0.305, "meter"),
  3038. name: "Dick (Front)",
  3039. image: {
  3040. source: "./media/characters/talan/dick-front.svg"
  3041. }
  3042. },
  3043. },
  3044. [
  3045. {
  3046. name: "Normal",
  3047. height: math.unit(4, "meters")
  3048. },
  3049. {
  3050. name: "Macro",
  3051. height: math.unit(100, "meters")
  3052. },
  3053. {
  3054. name: "Megamacro",
  3055. height: math.unit(2, "miles"),
  3056. default: true
  3057. },
  3058. {
  3059. name: "Gigamacro",
  3060. height: math.unit(5000, "miles")
  3061. },
  3062. {
  3063. name: "Teramacro",
  3064. height: math.unit(100, "parsecs")
  3065. }
  3066. ]
  3067. ))
  3068. characterMakers.push(() => makeCharacter(
  3069. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3070. {
  3071. front: {
  3072. height: math.unit(2, "meter"),
  3073. weight: math.unit(90, "kg"),
  3074. name: "Front",
  3075. image: {
  3076. source: "./media/characters/gael'rathus/front.svg"
  3077. }
  3078. },
  3079. frontAlt: {
  3080. height: math.unit(2, "meter"),
  3081. weight: math.unit(90, "kg"),
  3082. name: "Front (alt)",
  3083. image: {
  3084. source: "./media/characters/gael'rathus/front-alt.svg"
  3085. }
  3086. },
  3087. frontAlt2: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(90, "kg"),
  3090. name: "Front (alt 2)",
  3091. image: {
  3092. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3093. }
  3094. }
  3095. },
  3096. [
  3097. {
  3098. name: "Normal",
  3099. height: math.unit(9, "feet"),
  3100. default: true
  3101. },
  3102. {
  3103. name: "Large",
  3104. height: math.unit(25, "feet")
  3105. },
  3106. {
  3107. name: "Macro",
  3108. height: math.unit(0.25, "miles")
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(10, "miles")
  3113. }
  3114. ]
  3115. ))
  3116. characterMakers.push(() => makeCharacter(
  3117. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3118. {
  3119. side: {
  3120. height: math.unit(2, "meter"),
  3121. weight: math.unit(140, "kg"),
  3122. name: "Side",
  3123. image: {
  3124. source: "./media/characters/sosha/side.svg",
  3125. bottom: 0.042
  3126. }
  3127. },
  3128. },
  3129. [
  3130. {
  3131. name: "Normal",
  3132. height: math.unit(12, "feet"),
  3133. default: true
  3134. }
  3135. ]
  3136. ))
  3137. characterMakers.push(() => makeCharacter(
  3138. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3139. {
  3140. side: {
  3141. height: math.unit(5 + 5 / 12, "feet"),
  3142. weight: math.unit(170, "kg"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/runnola/side.svg",
  3146. extra: 741 / 448,
  3147. bottom: 0.05
  3148. }
  3149. },
  3150. },
  3151. [
  3152. {
  3153. name: "Small",
  3154. height: math.unit(3, "feet")
  3155. },
  3156. {
  3157. name: "Normal",
  3158. height: math.unit(5 + 5 / 12, "feet"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Big",
  3163. height: math.unit(10, "feet")
  3164. },
  3165. ]
  3166. ))
  3167. characterMakers.push(() => makeCharacter(
  3168. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3169. {
  3170. front: {
  3171. height: math.unit(2, "meter"),
  3172. weight: math.unit(50, "kg"),
  3173. name: "Front",
  3174. image: {
  3175. source: "./media/characters/kurribird/front.svg",
  3176. bottom: 0.015
  3177. }
  3178. },
  3179. frontAlt: {
  3180. height: math.unit(1.5, "meter"),
  3181. weight: math.unit(50, "kg"),
  3182. name: "Front (Alt)",
  3183. image: {
  3184. source: "./media/characters/kurribird/front-alt.svg",
  3185. extra: 1.45
  3186. }
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Normal",
  3192. height: math.unit(7, "feet")
  3193. },
  3194. {
  3195. name: "Big",
  3196. height: math.unit(12, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro",
  3201. height: math.unit(1500, "feet")
  3202. },
  3203. {
  3204. name: "Megamacro",
  3205. height: math.unit(2, "miles")
  3206. }
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(2, "meter"),
  3214. weight: math.unit(80, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/elbial/front.svg",
  3218. extra: 1643 / 1556,
  3219. bottom: 60.2 / 1696
  3220. }
  3221. },
  3222. side: {
  3223. height: math.unit(2, "meter"),
  3224. weight: math.unit(80, "kg"),
  3225. name: "Side",
  3226. image: {
  3227. source: "./media/characters/elbial/side.svg",
  3228. extra: 1630 / 1565,
  3229. bottom: 71.5 / 1697
  3230. }
  3231. },
  3232. back: {
  3233. height: math.unit(2, "meter"),
  3234. weight: math.unit(80, "kg"),
  3235. name: "Back",
  3236. image: {
  3237. source: "./media/characters/elbial/back.svg",
  3238. extra: 1668 / 1595,
  3239. bottom: 5.6 / 1672
  3240. }
  3241. },
  3242. frontDressed: {
  3243. height: math.unit(2, "meter"),
  3244. weight: math.unit(80, "kg"),
  3245. name: "Front (Dressed)",
  3246. image: {
  3247. source: "./media/characters/elbial/front-dressed.svg",
  3248. extra: 1653 / 1584,
  3249. bottom: 57 / 1708
  3250. }
  3251. },
  3252. genitals: {
  3253. height: math.unit(2 / 3.367, "meter"),
  3254. name: "Genitals",
  3255. image: {
  3256. source: "./media/characters/elbial/genitals.svg"
  3257. }
  3258. },
  3259. },
  3260. [
  3261. {
  3262. name: "Large",
  3263. height: math.unit(100, "feet")
  3264. },
  3265. {
  3266. name: "Macro",
  3267. height: math.unit(500, "feet"),
  3268. default: true
  3269. },
  3270. {
  3271. name: "Megamacro",
  3272. height: math.unit(10, "miles")
  3273. },
  3274. {
  3275. name: "Gigamacro",
  3276. height: math.unit(25000, "miles")
  3277. },
  3278. {
  3279. name: "Full-Size",
  3280. height: math.unit(8000000, "gigaparsecs")
  3281. }
  3282. ]
  3283. ))
  3284. characterMakers.push(() => makeCharacter(
  3285. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3286. {
  3287. front: {
  3288. height: math.unit(2, "meter"),
  3289. weight: math.unit(60, "kg"),
  3290. name: "Front",
  3291. image: {
  3292. source: "./media/characters/noah/front.svg"
  3293. }
  3294. },
  3295. talons: {
  3296. height: math.unit(0.315, "meter"),
  3297. name: "Talons",
  3298. image: {
  3299. source: "./media/characters/noah/talons.svg"
  3300. }
  3301. }
  3302. },
  3303. [
  3304. {
  3305. name: "Large",
  3306. height: math.unit(50, "feet")
  3307. },
  3308. {
  3309. name: "Macro",
  3310. height: math.unit(750, "feet"),
  3311. default: true
  3312. },
  3313. {
  3314. name: "Megamacro",
  3315. height: math.unit(50, "miles")
  3316. },
  3317. {
  3318. name: "Gigamacro",
  3319. height: math.unit(100000, "miles")
  3320. },
  3321. {
  3322. name: "Full-Size",
  3323. height: math.unit(3000000000, "miles")
  3324. }
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3329. {
  3330. front: {
  3331. height: math.unit(2, "meter"),
  3332. weight: math.unit(80, "kg"),
  3333. name: "Front",
  3334. image: {
  3335. source: "./media/characters/natalya/front.svg"
  3336. }
  3337. },
  3338. back: {
  3339. height: math.unit(2, "meter"),
  3340. weight: math.unit(80, "kg"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/natalya/back.svg"
  3344. }
  3345. }
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(150, "feet"),
  3351. default: true
  3352. },
  3353. {
  3354. name: "Megamacro",
  3355. height: math.unit(5, "miles")
  3356. },
  3357. {
  3358. name: "Full-Size",
  3359. height: math.unit(600, "kiloparsecs")
  3360. }
  3361. ]
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3365. {
  3366. front: {
  3367. height: math.unit(2, "meter"),
  3368. weight: math.unit(50, "kg"),
  3369. name: "Front",
  3370. image: {
  3371. source: "./media/characters/erestrebah/front.svg",
  3372. extra: 208 / 193,
  3373. bottom: 0.055
  3374. }
  3375. },
  3376. back: {
  3377. height: math.unit(2, "meter"),
  3378. weight: math.unit(50, "kg"),
  3379. name: "Back",
  3380. image: {
  3381. source: "./media/characters/erestrebah/back.svg",
  3382. extra: 1.3
  3383. }
  3384. }
  3385. },
  3386. [
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(10, "feet")
  3390. },
  3391. {
  3392. name: "Large",
  3393. height: math.unit(50, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(300, "feet")
  3399. },
  3400. {
  3401. name: "Macro+",
  3402. height: math.unit(750, "feet")
  3403. },
  3404. {
  3405. name: "Megamacro",
  3406. height: math.unit(3, "miles")
  3407. }
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(2, "meter"),
  3415. weight: math.unit(80, "kg"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/jennifer/front.svg",
  3419. bottom: 0.11,
  3420. extra: 1.16
  3421. }
  3422. },
  3423. frontAlt: {
  3424. height: math.unit(2, "meter"),
  3425. weight: math.unit(80, "kg"),
  3426. name: "Front (Alt)",
  3427. image: {
  3428. source: "./media/characters/jennifer/front-alt.svg"
  3429. }
  3430. }
  3431. },
  3432. [
  3433. {
  3434. name: "Canon Height",
  3435. height: math.unit(120, "feet"),
  3436. default: true
  3437. },
  3438. {
  3439. name: "Macro+",
  3440. height: math.unit(300, "feet")
  3441. },
  3442. {
  3443. name: "Megamacro",
  3444. height: math.unit(20000, "feet")
  3445. }
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3450. {
  3451. front: {
  3452. height: math.unit(2, "meter"),
  3453. weight: math.unit(50, "kg"),
  3454. name: "Front",
  3455. image: {
  3456. source: "./media/characters/kalista/front.svg",
  3457. extra: 1947 / 1700,
  3458. bottom: 76.6 / 1412.98
  3459. }
  3460. },
  3461. back: {
  3462. height: math.unit(2, "meter"),
  3463. weight: math.unit(50, "kg"),
  3464. name: "Back",
  3465. image: {
  3466. source: "./media/characters/kalista/back.svg",
  3467. extra: 1366 / 1156,
  3468. bottom: 33.9 / 1362.78
  3469. }
  3470. }
  3471. },
  3472. [
  3473. {
  3474. name: "Uncomfortably Small",
  3475. height: math.unit(10, "feet")
  3476. },
  3477. {
  3478. name: "Small",
  3479. height: math.unit(30, "feet")
  3480. },
  3481. {
  3482. name: "Macro",
  3483. height: math.unit(100, "feet"),
  3484. default: true
  3485. },
  3486. {
  3487. name: "Macro+",
  3488. height: math.unit(2000, "feet")
  3489. },
  3490. {
  3491. name: "True Form",
  3492. height: math.unit(8924, "miles")
  3493. }
  3494. ]
  3495. ))
  3496. characterMakers.push(() => makeCharacter(
  3497. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3498. {
  3499. front: {
  3500. height: math.unit(2, "meter"),
  3501. weight: math.unit(120, "kg"),
  3502. name: "Front",
  3503. image: {
  3504. source: "./media/characters/ggv/front.svg"
  3505. }
  3506. },
  3507. side: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(120, "kg"),
  3510. name: "Side",
  3511. image: {
  3512. source: "./media/characters/ggv/side.svg"
  3513. }
  3514. }
  3515. },
  3516. [
  3517. {
  3518. name: "Extremely Puny",
  3519. height: math.unit(9 + 5 / 12, "feet")
  3520. },
  3521. {
  3522. name: "Horribly Small",
  3523. height: math.unit(47.7, "miles"),
  3524. default: true
  3525. },
  3526. {
  3527. name: "Reasonably Sized",
  3528. height: math.unit(25000, "parsecs")
  3529. },
  3530. {
  3531. name: "Slightly Uncompressed",
  3532. height: math.unit(7.77e31, "parsecs")
  3533. },
  3534. {
  3535. name: "Omniversal",
  3536. height: math.unit(1e300, "meters")
  3537. },
  3538. ]
  3539. ))
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(2, "meter"),
  3545. weight: math.unit(75, "lb"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/napalm/front.svg"
  3549. }
  3550. },
  3551. back: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(75, "lb"),
  3554. name: "Back",
  3555. image: {
  3556. source: "./media/characters/napalm/back.svg"
  3557. }
  3558. }
  3559. },
  3560. [
  3561. {
  3562. name: "Standard",
  3563. height: math.unit(55, "feet"),
  3564. default: true
  3565. }
  3566. ]
  3567. ))
  3568. characterMakers.push(() => makeCharacter(
  3569. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3570. {
  3571. front: {
  3572. height: math.unit(7 + 5 / 6, "feet"),
  3573. weight: math.unit(325, "lb"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/asana/front.svg",
  3577. extra: 1133 / 1060,
  3578. bottom: 15.2 / 1148.6
  3579. }
  3580. },
  3581. back: {
  3582. height: math.unit(7 + 5 / 6, "feet"),
  3583. weight: math.unit(325, "lb"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/asana/back.svg",
  3587. extra: 1114 / 1043,
  3588. bottom: 5 / 1120
  3589. }
  3590. },
  3591. dressedDark: {
  3592. height: math.unit(7 + 5 / 6, "feet"),
  3593. weight: math.unit(325, "lb"),
  3594. name: "Dressed (Dark)",
  3595. image: {
  3596. source: "./media/characters/asana/dressed-dark.svg",
  3597. extra: 1133 / 1060,
  3598. bottom: 15.2 / 1148.6
  3599. }
  3600. },
  3601. dressedLight: {
  3602. height: math.unit(7 + 5 / 6, "feet"),
  3603. weight: math.unit(325, "lb"),
  3604. name: "Dressed (Light)",
  3605. image: {
  3606. source: "./media/characters/asana/dressed-light.svg",
  3607. extra: 1133 / 1060,
  3608. bottom: 15.2 / 1148.6
  3609. }
  3610. },
  3611. },
  3612. [
  3613. {
  3614. name: "Standard",
  3615. height: math.unit(7 + 5 / 6, "feet"),
  3616. default: true
  3617. },
  3618. {
  3619. name: "Large",
  3620. height: math.unit(10, "meters")
  3621. },
  3622. {
  3623. name: "Macro",
  3624. height: math.unit(2500, "meters")
  3625. },
  3626. {
  3627. name: "Megamacro",
  3628. height: math.unit(5e6, "meters")
  3629. },
  3630. {
  3631. name: "Examacro",
  3632. height: math.unit(5e12, "lightyears")
  3633. },
  3634. {
  3635. name: "Max Size",
  3636. height: math.unit(1e31, "lightyears")
  3637. }
  3638. ]
  3639. ))
  3640. characterMakers.push(() => makeCharacter(
  3641. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3642. {
  3643. front: {
  3644. height: math.unit(2, "meter"),
  3645. weight: math.unit(60, "kg"),
  3646. name: "Front",
  3647. image: {
  3648. source: "./media/characters/ebony/front.svg",
  3649. bottom: 0.03,
  3650. extra: 1045 / 810 + 0.03
  3651. }
  3652. },
  3653. side: {
  3654. height: math.unit(2, "meter"),
  3655. weight: math.unit(60, "kg"),
  3656. name: "Side",
  3657. image: {
  3658. source: "./media/characters/ebony/side.svg",
  3659. bottom: 0.03,
  3660. extra: 1045 / 810 + 0.03
  3661. }
  3662. },
  3663. back: {
  3664. height: math.unit(2, "meter"),
  3665. weight: math.unit(60, "kg"),
  3666. name: "Back",
  3667. image: {
  3668. source: "./media/characters/ebony/back.svg",
  3669. bottom: 0.01,
  3670. extra: 1045 / 810 + 0.01
  3671. }
  3672. },
  3673. },
  3674. [
  3675. // TODO check why I did this lol
  3676. {
  3677. name: "Standard",
  3678. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3679. default: true
  3680. },
  3681. {
  3682. name: "Macro",
  3683. height: math.unit(200, "feet")
  3684. },
  3685. {
  3686. name: "Gigamacro",
  3687. height: math.unit(13000, "km")
  3688. }
  3689. ]
  3690. ))
  3691. characterMakers.push(() => makeCharacter(
  3692. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3693. {
  3694. front: {
  3695. height: math.unit(6, "feet"),
  3696. weight: math.unit(175, "lb"),
  3697. name: "Front",
  3698. image: {
  3699. source: "./media/characters/mountain/front.svg",
  3700. extra: 972 / 955,
  3701. bottom: 64 / 1036.6
  3702. }
  3703. },
  3704. back: {
  3705. height: math.unit(6, "feet"),
  3706. weight: math.unit(175, "lb"),
  3707. name: "Back",
  3708. image: {
  3709. source: "./media/characters/mountain/back.svg",
  3710. extra: 970 / 950,
  3711. bottom: 28.25 / 999
  3712. }
  3713. },
  3714. },
  3715. [
  3716. {
  3717. name: "Large",
  3718. height: math.unit(20, "meters")
  3719. },
  3720. {
  3721. name: "Macro",
  3722. height: math.unit(300, "meters")
  3723. },
  3724. {
  3725. name: "Gigamacro",
  3726. height: math.unit(10000, "km"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Examacro",
  3731. height: math.unit(10e9, "lightyears")
  3732. }
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(8, "feet"),
  3740. weight: math.unit(500, "lb"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/rick/front.svg"
  3744. }
  3745. }
  3746. },
  3747. [
  3748. {
  3749. name: "Normal",
  3750. height: math.unit(8, "feet"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Macro",
  3755. height: math.unit(5, "km")
  3756. }
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3761. {
  3762. front: {
  3763. height: math.unit(8, "feet"),
  3764. weight: math.unit(120, "lb"),
  3765. name: "Front",
  3766. image: {
  3767. source: "./media/characters/ona/front.svg"
  3768. }
  3769. },
  3770. frontAlt: {
  3771. height: math.unit(8, "feet"),
  3772. weight: math.unit(120, "lb"),
  3773. name: "Front (Alt)",
  3774. image: {
  3775. source: "./media/characters/ona/front-alt.svg"
  3776. }
  3777. },
  3778. back: {
  3779. height: math.unit(8, "feet"),
  3780. weight: math.unit(120, "lb"),
  3781. name: "Back",
  3782. image: {
  3783. source: "./media/characters/ona/back.svg"
  3784. }
  3785. },
  3786. foot: {
  3787. height: math.unit(1.1, "feet"),
  3788. name: "Foot",
  3789. image: {
  3790. source: "./media/characters/ona/foot.svg"
  3791. }
  3792. }
  3793. },
  3794. [
  3795. {
  3796. name: "Megamacro",
  3797. height: math.unit(70, "km"),
  3798. default: true
  3799. },
  3800. {
  3801. name: "Gigamacro",
  3802. height: math.unit(681818, "miles")
  3803. },
  3804. {
  3805. name: "Examacro",
  3806. height: math.unit(3800000, "lightyears")
  3807. },
  3808. ]
  3809. ))
  3810. characterMakers.push(() => makeCharacter(
  3811. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3812. {
  3813. front: {
  3814. height: math.unit(12, "feet"),
  3815. weight: math.unit(3000, "lb"),
  3816. name: "Front",
  3817. image: {
  3818. source: "./media/characters/mech/front.svg",
  3819. extra: 2900 / 2770,
  3820. bottom: 110 / 3010
  3821. }
  3822. },
  3823. back: {
  3824. height: math.unit(12, "feet"),
  3825. weight: math.unit(3000, "lb"),
  3826. name: "Back",
  3827. image: {
  3828. source: "./media/characters/mech/back.svg",
  3829. extra: 3011 / 2890,
  3830. bottom: 94 / 3105
  3831. }
  3832. },
  3833. maw: {
  3834. height: math.unit(3.07, "feet"),
  3835. name: "Maw",
  3836. image: {
  3837. source: "./media/characters/mech/maw.svg"
  3838. }
  3839. },
  3840. head: {
  3841. height: math.unit(2.82, "feet"),
  3842. name: "Head",
  3843. image: {
  3844. source: "./media/characters/mech/head.svg"
  3845. }
  3846. },
  3847. dick: {
  3848. height: math.unit(1.43, "feet"),
  3849. name: "Dick",
  3850. image: {
  3851. source: "./media/characters/mech/dick.svg"
  3852. }
  3853. },
  3854. },
  3855. [
  3856. {
  3857. name: "Normal",
  3858. height: math.unit(12, "feet")
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(300, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Macro+",
  3867. height: math.unit(1500, "feet")
  3868. },
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(1.3, "meter"),
  3876. weight: math.unit(30, "kg"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/gregory/front.svg",
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(1.3, "meter"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Macro",
  3891. height: math.unit(20, "meter")
  3892. }
  3893. ]
  3894. ))
  3895. characterMakers.push(() => makeCharacter(
  3896. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3897. {
  3898. front: {
  3899. height: math.unit(2.8, "meter"),
  3900. weight: math.unit(200, "kg"),
  3901. name: "Front",
  3902. image: {
  3903. source: "./media/characters/elory/front.svg",
  3904. }
  3905. }
  3906. },
  3907. [
  3908. {
  3909. name: "Normal",
  3910. height: math.unit(2.8, "meter"),
  3911. default: true
  3912. },
  3913. {
  3914. name: "Macro",
  3915. height: math.unit(38, "meter")
  3916. }
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3921. {
  3922. front: {
  3923. height: math.unit(470, "feet"),
  3924. weight: math.unit(924, "tons"),
  3925. name: "Front",
  3926. image: {
  3927. source: "./media/characters/angelpatamon/front.svg",
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Normal",
  3934. height: math.unit(470, "feet"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Deity Size I",
  3939. height: math.unit(28651.2, "km")
  3940. },
  3941. {
  3942. name: "Deity Size II",
  3943. height: math.unit(171907.2, "km")
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3949. {
  3950. side: {
  3951. height: math.unit(7.2, "meter"),
  3952. weight: math.unit(8.2, "tons"),
  3953. name: "Side",
  3954. image: {
  3955. source: "./media/characters/cryae/side.svg",
  3956. extra: 3500 / 1500
  3957. }
  3958. }
  3959. },
  3960. [
  3961. {
  3962. name: "Normal",
  3963. height: math.unit(7.2, "meter"),
  3964. default: true
  3965. }
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3970. {
  3971. front: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(175, "lb"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/xera/front.svg",
  3977. extra: 2377 / 1972,
  3978. bottom: 75.5 / 2452
  3979. }
  3980. },
  3981. side: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(175, "lb"),
  3984. name: "Side",
  3985. image: {
  3986. source: "./media/characters/xera/side.svg",
  3987. extra: 2345 / 2019,
  3988. bottom: 39.7 / 2384
  3989. }
  3990. },
  3991. back: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(175, "lb"),
  3994. name: "Back",
  3995. image: {
  3996. source: "./media/characters/xera/back.svg",
  3997. extra: 2095 / 1984,
  3998. bottom: 67 / 2166
  3999. }
  4000. },
  4001. },
  4002. [
  4003. {
  4004. name: "Small",
  4005. height: math.unit(10, "feet")
  4006. },
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(500, "meters"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Macro+",
  4014. height: math.unit(10, "km")
  4015. },
  4016. {
  4017. name: "Gigamacro",
  4018. height: math.unit(25000, "km")
  4019. },
  4020. {
  4021. name: "Teramacro",
  4022. height: math.unit(3e6, "km")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(175, "lb"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/nebula/front.svg",
  4035. extra: 2566 / 2362,
  4036. bottom: 81 / 2644
  4037. }
  4038. }
  4039. },
  4040. [
  4041. {
  4042. name: "Small",
  4043. height: math.unit(4.5, "meters")
  4044. },
  4045. {
  4046. name: "Macro",
  4047. height: math.unit(1500, "meters"),
  4048. default: true
  4049. },
  4050. {
  4051. name: "Megamacro",
  4052. height: math.unit(150, "km")
  4053. },
  4054. {
  4055. name: "Gigamacro",
  4056. height: math.unit(27000, "km")
  4057. }
  4058. ]
  4059. ))
  4060. characterMakers.push(() => makeCharacter(
  4061. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4062. {
  4063. front: {
  4064. height: math.unit(6, "feet"),
  4065. weight: math.unit(225, "lb"),
  4066. name: "Front",
  4067. image: {
  4068. source: "./media/characters/abysgar/front.svg"
  4069. }
  4070. }
  4071. },
  4072. [
  4073. {
  4074. name: "Small",
  4075. height: math.unit(4.5, "meters")
  4076. },
  4077. {
  4078. name: "Macro",
  4079. height: math.unit(1250, "meters"),
  4080. default: true
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(125, "km")
  4085. },
  4086. {
  4087. name: "Gigamacro",
  4088. height: math.unit(26000, "km")
  4089. }
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4094. {
  4095. front: {
  4096. height: math.unit(6, "feet"),
  4097. weight: math.unit(180, "lb"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/yakuz/front.svg"
  4101. }
  4102. }
  4103. },
  4104. [
  4105. {
  4106. name: "Small",
  4107. height: math.unit(5, "meters")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(1500, "meters"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "Megamacro",
  4116. height: math.unit(200, "km")
  4117. },
  4118. {
  4119. name: "Gigamacro",
  4120. height: math.unit(100000, "km")
  4121. }
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4126. {
  4127. front: {
  4128. height: math.unit(6, "feet"),
  4129. weight: math.unit(175, "lb"),
  4130. name: "Front",
  4131. image: {
  4132. source: "./media/characters/mirova/front.svg",
  4133. extra: 3334 / 3071,
  4134. bottom: 42 / 3375.6
  4135. }
  4136. }
  4137. },
  4138. [
  4139. {
  4140. name: "Small",
  4141. height: math.unit(5, "meters")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(900, "meters"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Megamacro",
  4150. height: math.unit(135, "km")
  4151. },
  4152. {
  4153. name: "Gigamacro",
  4154. height: math.unit(20000, "km")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4160. {
  4161. side: {
  4162. height: math.unit(28.35, "feet"),
  4163. weight: math.unit(99.75, "tons"),
  4164. name: "Side",
  4165. image: {
  4166. source: "./media/characters/asana-mech/side.svg",
  4167. extra: 923 / 699,
  4168. bottom: 50 / 975
  4169. }
  4170. },
  4171. chaingun: {
  4172. height: math.unit(7, "feet"),
  4173. weight: math.unit(2400, "lb"),
  4174. name: "Chaingun",
  4175. image: {
  4176. source: "./media/characters/asana-mech/chaingun.svg"
  4177. }
  4178. },
  4179. laser: {
  4180. height: math.unit(7.12, "feet"),
  4181. weight: math.unit(2000, "lb"),
  4182. name: "Laser",
  4183. image: {
  4184. source: "./media/characters/asana-mech/laser.svg"
  4185. }
  4186. },
  4187. },
  4188. [
  4189. {
  4190. name: "Normal",
  4191. height: math.unit(28.35, "feet"),
  4192. default: true
  4193. },
  4194. {
  4195. name: "Macro",
  4196. height: math.unit(2500, "feet")
  4197. },
  4198. {
  4199. name: "Megamacro",
  4200. height: math.unit(25, "miles")
  4201. },
  4202. {
  4203. name: "Examacro",
  4204. height: math.unit(6e8, "lightyears")
  4205. },
  4206. ]
  4207. ))
  4208. characterMakers.push(() => makeCharacter(
  4209. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4210. {
  4211. front: {
  4212. height: math.unit(5, "meters"),
  4213. weight: math.unit(1000, "kg"),
  4214. name: "Front",
  4215. image: {
  4216. source: "./media/characters/asche/front.svg",
  4217. extra: 1258 / 1190,
  4218. bottom: 47 / 1305
  4219. }
  4220. },
  4221. frontUnderwear: {
  4222. height: math.unit(5, "meters"),
  4223. weight: math.unit(1000, "kg"),
  4224. name: "Front (Underwear)",
  4225. image: {
  4226. source: "./media/characters/asche/front-underwear.svg",
  4227. extra: 1258 / 1190,
  4228. bottom: 47 / 1305
  4229. }
  4230. },
  4231. frontDressed: {
  4232. height: math.unit(5, "meters"),
  4233. weight: math.unit(1000, "kg"),
  4234. name: "Front (Dressed)",
  4235. image: {
  4236. source: "./media/characters/asche/front-dressed.svg",
  4237. extra: 1258 / 1190,
  4238. bottom: 47 / 1305
  4239. }
  4240. },
  4241. frontArmor: {
  4242. height: math.unit(5, "meters"),
  4243. weight: math.unit(1000, "kg"),
  4244. name: "Front (Armored)",
  4245. image: {
  4246. source: "./media/characters/asche/front-armored.svg",
  4247. extra: 1374 / 1308,
  4248. bottom: 23 / 1397
  4249. }
  4250. },
  4251. mp724: {
  4252. height: math.unit(0.96, "meters"),
  4253. weight: math.unit(38, "kg"),
  4254. name: "H&K MP724",
  4255. image: {
  4256. source: "./media/characters/asche/h&k-mp724.svg"
  4257. }
  4258. },
  4259. side: {
  4260. height: math.unit(5, "meters"),
  4261. weight: math.unit(1000, "kg"),
  4262. name: "Side",
  4263. image: {
  4264. source: "./media/characters/asche/side.svg",
  4265. extra: 1717 / 1609,
  4266. bottom: 0.005
  4267. }
  4268. },
  4269. back: {
  4270. height: math.unit(5, "meters"),
  4271. weight: math.unit(1000, "kg"),
  4272. name: "Back",
  4273. image: {
  4274. source: "./media/characters/asche/back.svg",
  4275. extra: 1570 / 1501
  4276. }
  4277. },
  4278. },
  4279. [
  4280. {
  4281. name: "DEFCON 5",
  4282. height: math.unit(5, "meters")
  4283. },
  4284. {
  4285. name: "DEFCON 4",
  4286. height: math.unit(500, "meters"),
  4287. default: true
  4288. },
  4289. {
  4290. name: "DEFCON 3",
  4291. height: math.unit(5, "km")
  4292. },
  4293. {
  4294. name: "DEFCON 2",
  4295. height: math.unit(500, "km")
  4296. },
  4297. {
  4298. name: "DEFCON 1",
  4299. height: math.unit(500000, "km")
  4300. },
  4301. {
  4302. name: "DEFCON 0",
  4303. height: math.unit(3, "gigaparsecs")
  4304. },
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(2, "meters"),
  4312. weight: math.unit(76, "kg"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/gale/front.svg"
  4316. }
  4317. },
  4318. frontAlt1: {
  4319. height: math.unit(2, "meters"),
  4320. weight: math.unit(76, "kg"),
  4321. name: "Front (Alt 1)",
  4322. image: {
  4323. source: "./media/characters/gale/front-alt-1.svg"
  4324. }
  4325. },
  4326. frontAlt2: {
  4327. height: math.unit(2, "meters"),
  4328. weight: math.unit(76, "kg"),
  4329. name: "Front (Alt 2)",
  4330. image: {
  4331. source: "./media/characters/gale/front-alt-2.svg"
  4332. }
  4333. },
  4334. },
  4335. [
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(7, "feet")
  4339. },
  4340. {
  4341. name: "Macro",
  4342. height: math.unit(150, "feet"),
  4343. default: true
  4344. },
  4345. {
  4346. name: "Macro+",
  4347. height: math.unit(300, "feet")
  4348. },
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4353. {
  4354. front: {
  4355. height: math.unit(2, "meters"),
  4356. weight: math.unit(76, "kg"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/draylen/front.svg"
  4360. }
  4361. }
  4362. },
  4363. [
  4364. {
  4365. name: "Macro",
  4366. height: math.unit(150, "feet"),
  4367. default: true
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(7 + 9 / 12, "feet"),
  4376. weight: math.unit(379, "lbs"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/chez/front.svg"
  4380. }
  4381. },
  4382. side: {
  4383. height: math.unit(7 + 9 / 12, "feet"),
  4384. weight: math.unit(379, "lbs"),
  4385. name: "Side",
  4386. image: {
  4387. source: "./media/characters/chez/side.svg"
  4388. }
  4389. }
  4390. },
  4391. [
  4392. {
  4393. name: "Normal",
  4394. height: math.unit(7 + 9 / 12, "feet"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "God King",
  4399. height: math.unit(9750000, "meters")
  4400. }
  4401. ]
  4402. ))
  4403. characterMakers.push(() => makeCharacter(
  4404. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4405. {
  4406. front: {
  4407. height: math.unit(6, "feet"),
  4408. weight: math.unit(275, "lbs"),
  4409. name: "Front",
  4410. image: {
  4411. source: "./media/characters/kaylum/front.svg",
  4412. bottom: 0.01,
  4413. extra: 1166 / 1031
  4414. }
  4415. },
  4416. frontWingless: {
  4417. height: math.unit(6, "feet"),
  4418. weight: math.unit(275, "lbs"),
  4419. name: "Front (Wingless)",
  4420. image: {
  4421. source: "./media/characters/kaylum/front-wingless.svg",
  4422. bottom: 0.01,
  4423. extra: 1117 / 1031
  4424. }
  4425. }
  4426. },
  4427. [
  4428. {
  4429. name: "Normal",
  4430. height: math.unit(3.05, "meters")
  4431. },
  4432. {
  4433. name: "Master",
  4434. height: math.unit(5.5, "meters")
  4435. },
  4436. {
  4437. name: "Rampage",
  4438. height: math.unit(19, "meters")
  4439. },
  4440. {
  4441. name: "Macro Lite",
  4442. height: math.unit(37, "meters")
  4443. },
  4444. {
  4445. name: "Hyper Predator",
  4446. height: math.unit(61, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(138, "meters"),
  4451. default: true
  4452. }
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4457. {
  4458. front: {
  4459. height: math.unit(6, "feet"),
  4460. weight: math.unit(150, "lbs"),
  4461. name: "Front",
  4462. image: {
  4463. source: "./media/characters/geta/front.svg"
  4464. }
  4465. }
  4466. },
  4467. [
  4468. {
  4469. name: "Micro",
  4470. height: math.unit(3, "inches"),
  4471. default: true
  4472. },
  4473. {
  4474. name: "Normal",
  4475. height: math.unit(5 + 5 / 12, "feet")
  4476. }
  4477. ]
  4478. ))
  4479. characterMakers.push(() => makeCharacter(
  4480. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4481. {
  4482. front: {
  4483. height: math.unit(6, "feet"),
  4484. weight: math.unit(300, "lbs"),
  4485. name: "Front",
  4486. image: {
  4487. source: "./media/characters/tyrnn/front.svg"
  4488. }
  4489. }
  4490. },
  4491. [
  4492. {
  4493. name: "Main Height",
  4494. height: math.unit(355, "feet"),
  4495. default: true
  4496. },
  4497. {
  4498. name: "Fave. Height",
  4499. height: math.unit(2400, "feet")
  4500. }
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(300, "lbs"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/appledectomy/front.svg"
  4512. }
  4513. }
  4514. },
  4515. [
  4516. {
  4517. name: "Macro",
  4518. height: math.unit(2500, "feet")
  4519. },
  4520. {
  4521. name: "Megamacro",
  4522. height: math.unit(50, "miles"),
  4523. default: true
  4524. },
  4525. {
  4526. name: "Gigamacro",
  4527. height: math.unit(5000, "miles")
  4528. },
  4529. {
  4530. name: "Teramacro",
  4531. height: math.unit(250000, "miles")
  4532. },
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4537. {
  4538. front: {
  4539. height: math.unit(6, "feet"),
  4540. weight: math.unit(200, "lbs"),
  4541. name: "Front",
  4542. image: {
  4543. source: "./media/characters/vulpes/front.svg",
  4544. extra: 573 / 543,
  4545. bottom: 0.033
  4546. }
  4547. },
  4548. side: {
  4549. height: math.unit(6, "feet"),
  4550. weight: math.unit(200, "lbs"),
  4551. name: "Side",
  4552. image: {
  4553. source: "./media/characters/vulpes/side.svg",
  4554. extra: 577 / 549,
  4555. bottom: 11 / 588
  4556. }
  4557. },
  4558. back: {
  4559. height: math.unit(6, "feet"),
  4560. weight: math.unit(200, "lbs"),
  4561. name: "Back",
  4562. image: {
  4563. source: "./media/characters/vulpes/back.svg",
  4564. extra: 573 / 549,
  4565. bottom: 20 / 593
  4566. }
  4567. },
  4568. feet: {
  4569. height: math.unit(1.276, "feet"),
  4570. name: "Feet",
  4571. image: {
  4572. source: "./media/characters/vulpes/feet.svg"
  4573. }
  4574. },
  4575. maw: {
  4576. height: math.unit(1.18, "feet"),
  4577. name: "Maw",
  4578. image: {
  4579. source: "./media/characters/vulpes/maw.svg"
  4580. }
  4581. },
  4582. },
  4583. [
  4584. {
  4585. name: "Micro",
  4586. height: math.unit(2, "inches")
  4587. },
  4588. {
  4589. name: "Normal",
  4590. height: math.unit(6.3, "feet")
  4591. },
  4592. {
  4593. name: "Macro",
  4594. height: math.unit(850, "feet")
  4595. },
  4596. {
  4597. name: "Megamacro",
  4598. height: math.unit(7500, "feet"),
  4599. default: true
  4600. },
  4601. {
  4602. name: "Gigamacro",
  4603. height: math.unit(570000, "miles")
  4604. }
  4605. ]
  4606. ))
  4607. characterMakers.push(() => makeCharacter(
  4608. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4609. {
  4610. front: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(210, "lbs"),
  4613. name: "Front",
  4614. image: {
  4615. source: "./media/characters/rain-fallen/front.svg"
  4616. }
  4617. },
  4618. side: {
  4619. height: math.unit(6, "feet"),
  4620. weight: math.unit(210, "lbs"),
  4621. name: "Side",
  4622. image: {
  4623. source: "./media/characters/rain-fallen/side.svg"
  4624. }
  4625. },
  4626. back: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(210, "lbs"),
  4629. name: "Back",
  4630. image: {
  4631. source: "./media/characters/rain-fallen/back.svg"
  4632. }
  4633. },
  4634. feral: {
  4635. height: math.unit(9, "feet"),
  4636. weight: math.unit(700, "lbs"),
  4637. name: "Feral",
  4638. image: {
  4639. source: "./media/characters/rain-fallen/feral.svg"
  4640. }
  4641. },
  4642. },
  4643. [
  4644. {
  4645. name: "Meddling with Mortals",
  4646. height: math.unit(8 + 8/12, "feet")
  4647. },
  4648. {
  4649. name: "Normal",
  4650. height: math.unit(5, "meter")
  4651. },
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(150, "meter"),
  4655. default: true
  4656. },
  4657. {
  4658. name: "Megamacro",
  4659. height: math.unit(278e6, "meter")
  4660. },
  4661. {
  4662. name: "Gigamacro",
  4663. height: math.unit(2e9, "meter")
  4664. },
  4665. {
  4666. name: "Teramacro",
  4667. height: math.unit(8e12, "meter")
  4668. },
  4669. {
  4670. name: "Devourer",
  4671. height: math.unit(14, "zettameters")
  4672. },
  4673. {
  4674. name: "Scarlet King",
  4675. height: math.unit(18, "yottameters")
  4676. },
  4677. {
  4678. name: "Void",
  4679. height: math.unit(1e88, "yottameters")
  4680. }
  4681. ]
  4682. ))
  4683. characterMakers.push(() => makeCharacter(
  4684. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4685. {
  4686. standing: {
  4687. height: math.unit(6, "feet"),
  4688. weight: math.unit(180, "lbs"),
  4689. name: "Standing",
  4690. image: {
  4691. source: "./media/characters/zaakira/standing.svg",
  4692. extra: 1599/1504,
  4693. bottom: 39/1638
  4694. }
  4695. },
  4696. laying: {
  4697. height: math.unit(3, "feet"),
  4698. weight: math.unit(180, "lbs"),
  4699. name: "Laying",
  4700. image: {
  4701. source: "./media/characters/zaakira/laying.svg"
  4702. }
  4703. },
  4704. },
  4705. [
  4706. {
  4707. name: "Normal",
  4708. height: math.unit(12, "feet")
  4709. },
  4710. {
  4711. name: "Macro",
  4712. height: math.unit(279, "feet"),
  4713. default: true
  4714. }
  4715. ]
  4716. ))
  4717. characterMakers.push(() => makeCharacter(
  4718. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4719. {
  4720. femSfw: {
  4721. height: math.unit(8, "feet"),
  4722. weight: math.unit(350, "lb"),
  4723. name: "Fem",
  4724. image: {
  4725. source: "./media/characters/sigvald/fem-sfw.svg",
  4726. extra: 182 / 164,
  4727. bottom: 8.7 / 190.5
  4728. }
  4729. },
  4730. femNsfw: {
  4731. height: math.unit(8, "feet"),
  4732. weight: math.unit(350, "lb"),
  4733. name: "Fem (NSFW)",
  4734. image: {
  4735. source: "./media/characters/sigvald/fem-nsfw.svg",
  4736. extra: 182 / 164,
  4737. bottom: 8.7 / 190.5
  4738. }
  4739. },
  4740. maleNsfw: {
  4741. height: math.unit(8, "feet"),
  4742. weight: math.unit(350, "lb"),
  4743. name: "Male (NSFW)",
  4744. image: {
  4745. source: "./media/characters/sigvald/male-nsfw.svg",
  4746. extra: 182 / 164,
  4747. bottom: 8.7 / 190.5
  4748. }
  4749. },
  4750. hermNsfw: {
  4751. height: math.unit(8, "feet"),
  4752. weight: math.unit(350, "lb"),
  4753. name: "Herm (NSFW)",
  4754. image: {
  4755. source: "./media/characters/sigvald/herm-nsfw.svg",
  4756. extra: 182 / 164,
  4757. bottom: 8.7 / 190.5
  4758. }
  4759. },
  4760. dick: {
  4761. height: math.unit(2.36, "feet"),
  4762. name: "Dick",
  4763. image: {
  4764. source: "./media/characters/sigvald/dick.svg"
  4765. }
  4766. },
  4767. eye: {
  4768. height: math.unit(0.31, "feet"),
  4769. name: "Eye",
  4770. image: {
  4771. source: "./media/characters/sigvald/eye.svg"
  4772. }
  4773. },
  4774. mouth: {
  4775. height: math.unit(0.92, "feet"),
  4776. name: "Mouth",
  4777. image: {
  4778. source: "./media/characters/sigvald/mouth.svg"
  4779. }
  4780. },
  4781. paws: {
  4782. height: math.unit(2.2, "feet"),
  4783. name: "Paws",
  4784. image: {
  4785. source: "./media/characters/sigvald/paws.svg"
  4786. }
  4787. }
  4788. },
  4789. [
  4790. {
  4791. name: "Normal",
  4792. height: math.unit(8, "feet")
  4793. },
  4794. {
  4795. name: "Large",
  4796. height: math.unit(12, "feet")
  4797. },
  4798. {
  4799. name: "Larger",
  4800. height: math.unit(20, "feet")
  4801. },
  4802. {
  4803. name: "Macro",
  4804. height: math.unit(150, "feet")
  4805. },
  4806. {
  4807. name: "Macro+",
  4808. height: math.unit(200, "feet"),
  4809. default: true
  4810. },
  4811. ]
  4812. ))
  4813. characterMakers.push(() => makeCharacter(
  4814. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4815. {
  4816. side: {
  4817. height: math.unit(12, "feet"),
  4818. weight: math.unit(2000, "kg"),
  4819. name: "Side",
  4820. image: {
  4821. source: "./media/characters/scott/side.svg",
  4822. extra: 754 / 724,
  4823. bottom: 0.069
  4824. }
  4825. },
  4826. upright: {
  4827. height: math.unit(12, "feet"),
  4828. weight: math.unit(2000, "kg"),
  4829. name: "Upright",
  4830. image: {
  4831. source: "./media/characters/scott/upright.svg",
  4832. extra: 3881 / 3722,
  4833. bottom: 0.05
  4834. }
  4835. },
  4836. },
  4837. [
  4838. {
  4839. name: "Normal",
  4840. height: math.unit(12, "feet"),
  4841. default: true
  4842. },
  4843. ]
  4844. ))
  4845. characterMakers.push(() => makeCharacter(
  4846. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4847. {
  4848. side: {
  4849. height: math.unit(8, "meters"),
  4850. weight: math.unit(84755, "lbs"),
  4851. name: "Side",
  4852. image: {
  4853. source: "./media/characters/tobias/side.svg",
  4854. extra: 1474 / 1096,
  4855. bottom: 38.9 / 1513.1235
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(8, "meters"),
  4863. default: true
  4864. },
  4865. ]
  4866. ))
  4867. characterMakers.push(() => makeCharacter(
  4868. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4869. {
  4870. front: {
  4871. height: math.unit(5.5, "feet"),
  4872. weight: math.unit(400, "lbs"),
  4873. name: "Front",
  4874. image: {
  4875. source: "./media/characters/kieran/front.svg",
  4876. extra: 2694 / 2364,
  4877. bottom: 217 / 2908
  4878. }
  4879. },
  4880. side: {
  4881. height: math.unit(5.5, "feet"),
  4882. weight: math.unit(400, "lbs"),
  4883. name: "Side",
  4884. image: {
  4885. source: "./media/characters/kieran/side.svg",
  4886. extra: 875 / 777,
  4887. bottom: 84.6 / 959
  4888. }
  4889. },
  4890. },
  4891. [
  4892. {
  4893. name: "Normal",
  4894. height: math.unit(5.5, "feet"),
  4895. default: true
  4896. },
  4897. ]
  4898. ))
  4899. characterMakers.push(() => makeCharacter(
  4900. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4901. {
  4902. side: {
  4903. height: math.unit(2, "meters"),
  4904. weight: math.unit(70, "kg"),
  4905. name: "Side",
  4906. image: {
  4907. source: "./media/characters/sanya/side.svg",
  4908. bottom: 0.02,
  4909. extra: 1.02
  4910. }
  4911. },
  4912. },
  4913. [
  4914. {
  4915. name: "Small",
  4916. height: math.unit(2, "meters")
  4917. },
  4918. {
  4919. name: "Normal",
  4920. height: math.unit(3, "meters")
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(16, "meters"),
  4925. default: true
  4926. },
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4931. {
  4932. front: {
  4933. height: math.unit(2, "meters"),
  4934. weight: math.unit(120, "kg"),
  4935. name: "Front",
  4936. image: {
  4937. source: "./media/characters/miranda/front.svg",
  4938. extra: 195 / 185,
  4939. bottom: 10.9 / 206.5
  4940. }
  4941. },
  4942. back: {
  4943. height: math.unit(2, "meters"),
  4944. weight: math.unit(120, "kg"),
  4945. name: "Back",
  4946. image: {
  4947. source: "./media/characters/miranda/back.svg",
  4948. extra: 201 / 193,
  4949. bottom: 2.3 / 203.7
  4950. }
  4951. },
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(10, "feet"),
  4957. default: true
  4958. }
  4959. ]
  4960. ))
  4961. characterMakers.push(() => makeCharacter(
  4962. { name: "James", species: ["deer"], tags: ["anthro"] },
  4963. {
  4964. side: {
  4965. height: math.unit(2, "meters"),
  4966. weight: math.unit(100, "kg"),
  4967. name: "Front",
  4968. image: {
  4969. source: "./media/characters/james/front.svg",
  4970. extra: 10 / 8.5
  4971. }
  4972. },
  4973. },
  4974. [
  4975. {
  4976. name: "Normal",
  4977. height: math.unit(8.5, "feet"),
  4978. default: true
  4979. }
  4980. ]
  4981. ))
  4982. characterMakers.push(() => makeCharacter(
  4983. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4984. {
  4985. side: {
  4986. height: math.unit(9.5, "feet"),
  4987. weight: math.unit(2500, "lbs"),
  4988. name: "Side",
  4989. image: {
  4990. source: "./media/characters/heather/side.svg"
  4991. }
  4992. },
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(9.5, "feet"),
  4998. default: true
  4999. }
  5000. ]
  5001. ))
  5002. characterMakers.push(() => makeCharacter(
  5003. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5004. {
  5005. side: {
  5006. height: math.unit(6.5, "feet"),
  5007. weight: math.unit(400, "lbs"),
  5008. name: "Side",
  5009. image: {
  5010. source: "./media/characters/lukas/side.svg",
  5011. extra: 7.25 / 6.5
  5012. }
  5013. },
  5014. },
  5015. [
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(6.5, "feet"),
  5019. default: true
  5020. }
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5025. {
  5026. side: {
  5027. height: math.unit(5, "feet"),
  5028. weight: math.unit(3000, "lbs"),
  5029. name: "Side",
  5030. image: {
  5031. source: "./media/characters/louise/side.svg"
  5032. }
  5033. },
  5034. },
  5035. [
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(5, "feet"),
  5039. default: true
  5040. }
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5045. {
  5046. side: {
  5047. height: math.unit(6, "feet"),
  5048. weight: math.unit(150, "lbs"),
  5049. name: "Side",
  5050. image: {
  5051. source: "./media/characters/ramona/side.svg"
  5052. }
  5053. },
  5054. },
  5055. [
  5056. {
  5057. name: "Normal",
  5058. height: math.unit(5.3, "meters"),
  5059. default: true
  5060. },
  5061. {
  5062. name: "Macro",
  5063. height: math.unit(20, "stories")
  5064. },
  5065. {
  5066. name: "Macro+",
  5067. height: math.unit(50, "stories")
  5068. },
  5069. ]
  5070. ))
  5071. characterMakers.push(() => makeCharacter(
  5072. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5073. {
  5074. standing: {
  5075. height: math.unit(5.75, "feet"),
  5076. weight: math.unit(160, "lbs"),
  5077. name: "Standing",
  5078. image: {
  5079. source: "./media/characters/deerpuff/standing.svg",
  5080. extra: 682 / 624
  5081. }
  5082. },
  5083. sitting: {
  5084. height: math.unit(5.75 / 1.79, "feet"),
  5085. weight: math.unit(160, "lbs"),
  5086. name: "Sitting",
  5087. image: {
  5088. source: "./media/characters/deerpuff/sitting.svg",
  5089. bottom: 44 / 400,
  5090. extra: 1
  5091. }
  5092. },
  5093. taurLaying: {
  5094. height: math.unit(6, "feet"),
  5095. weight: math.unit(400, "lbs"),
  5096. name: "Taur (Laying)",
  5097. image: {
  5098. source: "./media/characters/deerpuff/taur-laying.svg"
  5099. }
  5100. },
  5101. },
  5102. [
  5103. {
  5104. name: "Puffball",
  5105. height: math.unit(6, "inches")
  5106. },
  5107. {
  5108. name: "Normalpuff",
  5109. height: math.unit(5.75, "feet")
  5110. },
  5111. {
  5112. name: "Macropuff",
  5113. height: math.unit(1500, "feet"),
  5114. default: true
  5115. },
  5116. {
  5117. name: "Megapuff",
  5118. height: math.unit(500, "miles")
  5119. },
  5120. {
  5121. name: "Gigapuff",
  5122. height: math.unit(250000, "miles")
  5123. },
  5124. {
  5125. name: "Omegapuff",
  5126. height: math.unit(1000, "lightyears")
  5127. },
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5132. {
  5133. stomping: {
  5134. height: math.unit(6, "feet"),
  5135. weight: math.unit(170, "lbs"),
  5136. name: "Stomping",
  5137. image: {
  5138. source: "./media/characters/vivian/stomping.svg"
  5139. }
  5140. },
  5141. sitting: {
  5142. height: math.unit(6 / 1.75, "feet"),
  5143. weight: math.unit(170, "lbs"),
  5144. name: "Sitting",
  5145. image: {
  5146. source: "./media/characters/vivian/sitting.svg",
  5147. bottom: 1 / 6.4,
  5148. extra: 1,
  5149. }
  5150. },
  5151. },
  5152. [
  5153. {
  5154. name: "Normal",
  5155. height: math.unit(7, "feet"),
  5156. default: true
  5157. },
  5158. {
  5159. name: "Macro",
  5160. height: math.unit(10, "stories")
  5161. },
  5162. {
  5163. name: "Macro+",
  5164. height: math.unit(30, "stories")
  5165. },
  5166. {
  5167. name: "Megamacro",
  5168. height: math.unit(10, "miles")
  5169. },
  5170. {
  5171. name: "Megamacro+",
  5172. height: math.unit(2750000, "meters")
  5173. },
  5174. ]
  5175. ))
  5176. characterMakers.push(() => makeCharacter(
  5177. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5178. {
  5179. front: {
  5180. height: math.unit(6, "feet"),
  5181. weight: math.unit(160, "lbs"),
  5182. name: "Front",
  5183. image: {
  5184. source: "./media/characters/prince/front.svg",
  5185. extra: 3400 / 3000
  5186. }
  5187. },
  5188. jumping: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(160, "lbs"),
  5191. name: "Jumping",
  5192. image: {
  5193. source: "./media/characters/prince/jump.svg",
  5194. extra: 2555 / 2134
  5195. }
  5196. },
  5197. },
  5198. [
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(7.75, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Not cute",
  5206. height: math.unit(17, "feet")
  5207. },
  5208. {
  5209. name: "I said NOT",
  5210. height: math.unit(91, "feet")
  5211. },
  5212. {
  5213. name: "Please stop",
  5214. height: math.unit(560, "feet")
  5215. },
  5216. {
  5217. name: "What have you done",
  5218. height: math.unit(2200, "feet")
  5219. },
  5220. {
  5221. name: "Deer God",
  5222. height: math.unit(3.6, "miles")
  5223. },
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5228. {
  5229. standing: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(300, "lbs"),
  5232. name: "Standing",
  5233. image: {
  5234. source: "./media/characters/psymon/standing.svg",
  5235. extra: 1888 / 1810,
  5236. bottom: 0.05
  5237. }
  5238. },
  5239. slithering: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(300, "lbs"),
  5242. name: "Slithering",
  5243. image: {
  5244. source: "./media/characters/psymon/slithering.svg",
  5245. extra: 1330 / 1224
  5246. }
  5247. },
  5248. slitheringAlt: {
  5249. height: math.unit(6, "feet"),
  5250. weight: math.unit(300, "lbs"),
  5251. name: "Slithering (Alt)",
  5252. image: {
  5253. source: "./media/characters/psymon/slithering-alt.svg",
  5254. extra: 1330 / 1224
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(11.25, "feet"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Large",
  5266. height: math.unit(27, "feet")
  5267. },
  5268. {
  5269. name: "Giant",
  5270. height: math.unit(87, "feet")
  5271. },
  5272. {
  5273. name: "Macro",
  5274. height: math.unit(365, "feet")
  5275. },
  5276. {
  5277. name: "Megamacro",
  5278. height: math.unit(3, "miles")
  5279. },
  5280. {
  5281. name: "World Serpent",
  5282. height: math.unit(8000, "miles")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(180, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/daimos/front.svg",
  5295. extra: 4160 / 3897,
  5296. bottom: 0.021
  5297. }
  5298. }
  5299. },
  5300. [
  5301. {
  5302. name: "Normal",
  5303. height: math.unit(8, "feet"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Big Dog",
  5308. height: math.unit(22, "feet")
  5309. },
  5310. {
  5311. name: "Macro",
  5312. height: math.unit(127, "feet")
  5313. },
  5314. {
  5315. name: "Megamacro",
  5316. height: math.unit(3600, "feet")
  5317. },
  5318. ]
  5319. ))
  5320. characterMakers.push(() => makeCharacter(
  5321. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5322. {
  5323. side: {
  5324. height: math.unit(6, "feet"),
  5325. weight: math.unit(180, "lbs"),
  5326. name: "Side",
  5327. image: {
  5328. source: "./media/characters/blake/side.svg",
  5329. extra: 1212 / 1120,
  5330. bottom: 0.05
  5331. }
  5332. },
  5333. crouched: {
  5334. height: math.unit(6 * 0.57, "feet"),
  5335. weight: math.unit(180, "lbs"),
  5336. name: "Crouched",
  5337. image: {
  5338. source: "./media/characters/blake/crouched.svg",
  5339. extra: 840 / 587,
  5340. bottom: 0.04
  5341. }
  5342. },
  5343. bent: {
  5344. height: math.unit(6 * 0.75, "feet"),
  5345. weight: math.unit(180, "lbs"),
  5346. name: "Bent",
  5347. image: {
  5348. source: "./media/characters/blake/bent.svg",
  5349. extra: 592 / 544,
  5350. bottom: 0.035
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(8 + 1 / 6, "feet"),
  5358. default: true
  5359. },
  5360. {
  5361. name: "Big Backside",
  5362. height: math.unit(37, "feet")
  5363. },
  5364. {
  5365. name: "Subway Shredder",
  5366. height: math.unit(72, "feet")
  5367. },
  5368. {
  5369. name: "City Carver",
  5370. height: math.unit(1675, "feet")
  5371. },
  5372. {
  5373. name: "Tectonic Tweaker",
  5374. height: math.unit(2300, "miles")
  5375. },
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(6, "feet"),
  5383. weight: math.unit(180, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/guisetto/front.svg",
  5387. extra: 856 / 817,
  5388. bottom: 0.06
  5389. }
  5390. },
  5391. airborne: {
  5392. height: math.unit(6, "feet"),
  5393. weight: math.unit(180, "lbs"),
  5394. name: "Airborne",
  5395. image: {
  5396. source: "./media/characters/guisetto/airborne.svg",
  5397. extra: 584 / 525
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(10 + 11 / 12, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Large",
  5409. height: math.unit(35, "feet")
  5410. },
  5411. {
  5412. name: "Macro",
  5413. height: math.unit(475, "feet")
  5414. },
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5419. {
  5420. front: {
  5421. height: math.unit(6, "feet"),
  5422. weight: math.unit(180, "lbs"),
  5423. name: "Front",
  5424. image: {
  5425. source: "./media/characters/luxor/front.svg",
  5426. extra: 2940 / 2152
  5427. }
  5428. },
  5429. back: {
  5430. height: math.unit(6, "feet"),
  5431. weight: math.unit(180, "lbs"),
  5432. name: "Back",
  5433. image: {
  5434. source: "./media/characters/luxor/back.svg",
  5435. extra: 1083 / 960
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(5 + 5 / 6, "feet"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Lamp",
  5447. height: math.unit(50, "feet")
  5448. },
  5449. {
  5450. name: "Lämp",
  5451. height: math.unit(300, "feet")
  5452. },
  5453. {
  5454. name: "The sun is a lamp",
  5455. height: math.unit(250000, "miles")
  5456. },
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5461. {
  5462. front: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(50, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/huoyan/front.svg"
  5468. }
  5469. },
  5470. side: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(180, "lbs"),
  5473. name: "Side",
  5474. image: {
  5475. source: "./media/characters/huoyan/side.svg"
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "Chef",
  5482. height: math.unit(9, "feet")
  5483. },
  5484. {
  5485. name: "Normal",
  5486. height: math.unit(65, "feet"),
  5487. default: true
  5488. },
  5489. {
  5490. name: "Macro",
  5491. height: math.unit(780, "feet")
  5492. },
  5493. {
  5494. name: "Flaming Mountain",
  5495. height: math.unit(4.8, "miles")
  5496. },
  5497. {
  5498. name: "Celestial",
  5499. height: math.unit(765000, "miles")
  5500. },
  5501. ]
  5502. ))
  5503. characterMakers.push(() => makeCharacter(
  5504. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5505. {
  5506. front: {
  5507. height: math.unit(5 + 3 / 4, "feet"),
  5508. weight: math.unit(120, "lbs"),
  5509. name: "Front",
  5510. image: {
  5511. source: "./media/characters/tails/front.svg"
  5512. }
  5513. }
  5514. },
  5515. [
  5516. {
  5517. name: "Normal",
  5518. height: math.unit(5 + 3 / 4, "feet"),
  5519. default: true
  5520. }
  5521. ]
  5522. ))
  5523. characterMakers.push(() => makeCharacter(
  5524. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5525. {
  5526. front: {
  5527. height: math.unit(4, "feet"),
  5528. weight: math.unit(50, "lbs"),
  5529. name: "Front",
  5530. image: {
  5531. source: "./media/characters/rainy/front.svg"
  5532. }
  5533. }
  5534. },
  5535. [
  5536. {
  5537. name: "Macro",
  5538. height: math.unit(800, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(150, "lbs"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/rainier/front.svg"
  5552. }
  5553. }
  5554. },
  5555. [
  5556. {
  5557. name: "Micro",
  5558. height: math.unit(2, "mm"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(8 + 4/12, "feet"),
  5568. name: "Front",
  5569. image: {
  5570. source: "./media/characters/andy-renard/front.svg",
  5571. extra: 1839/1726,
  5572. bottom: 134/1973
  5573. }
  5574. },
  5575. back: {
  5576. height: math.unit(8 + 4/12, "feet"),
  5577. name: "Back",
  5578. image: {
  5579. source: "./media/characters/andy-renard/back.svg",
  5580. extra: 1838/1710,
  5581. bottom: 105/1943
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Tall",
  5588. height: math.unit(8 + 4/12, "feet")
  5589. },
  5590. {
  5591. name: "Mini Macro",
  5592. height: math.unit(15, "feet"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Macro",
  5597. height: math.unit(100, "feet")
  5598. },
  5599. {
  5600. name: "Mega Macro",
  5601. height: math.unit(1000, "feet")
  5602. },
  5603. {
  5604. name: "Giga Macro",
  5605. height: math.unit(10, "miles")
  5606. },
  5607. {
  5608. name: "God Macro",
  5609. height: math.unit(1, "multiverse")
  5610. },
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(210, "lbs"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/cimmaron/front-sfw.svg",
  5622. extra: 701 / 676,
  5623. bottom: 0.046
  5624. }
  5625. },
  5626. back: {
  5627. height: math.unit(6, "feet"),
  5628. weight: math.unit(210, "lbs"),
  5629. name: "Back",
  5630. image: {
  5631. source: "./media/characters/cimmaron/back-sfw.svg",
  5632. extra: 701 / 676,
  5633. bottom: 0.046
  5634. }
  5635. },
  5636. frontNsfw: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(210, "lbs"),
  5639. name: "Front (NSFW)",
  5640. image: {
  5641. source: "./media/characters/cimmaron/front-nsfw.svg",
  5642. extra: 701 / 676,
  5643. bottom: 0.046
  5644. }
  5645. },
  5646. backNsfw: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(210, "lbs"),
  5649. name: "Back (NSFW)",
  5650. image: {
  5651. source: "./media/characters/cimmaron/back-nsfw.svg",
  5652. extra: 701 / 676,
  5653. bottom: 0.046
  5654. }
  5655. },
  5656. dick: {
  5657. height: math.unit(1.714, "feet"),
  5658. name: "Dick",
  5659. image: {
  5660. source: "./media/characters/cimmaron/dick.svg"
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(6, "feet"),
  5668. default: true
  5669. },
  5670. {
  5671. name: "Macro Mayor",
  5672. height: math.unit(350, "meters")
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(200, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/akari/front.svg",
  5685. extra: 962 / 901,
  5686. bottom: 0.04
  5687. }
  5688. }
  5689. },
  5690. [
  5691. {
  5692. name: "Micro",
  5693. height: math.unit(5, "inches"),
  5694. default: true
  5695. },
  5696. {
  5697. name: "Normal",
  5698. height: math.unit(7, "feet")
  5699. },
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5704. {
  5705. front: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(140, "lbs"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/cynosura/front.svg",
  5711. extra: 896 / 847
  5712. }
  5713. },
  5714. back: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(140, "lbs"),
  5717. name: "Back",
  5718. image: {
  5719. source: "./media/characters/cynosura/back.svg",
  5720. extra: 1365 / 1250
  5721. }
  5722. },
  5723. },
  5724. [
  5725. {
  5726. name: "Micro",
  5727. height: math.unit(4, "inches")
  5728. },
  5729. {
  5730. name: "Normal",
  5731. height: math.unit(5.75, "feet"),
  5732. default: true
  5733. },
  5734. {
  5735. name: "Tall",
  5736. height: math.unit(10, "feet")
  5737. },
  5738. {
  5739. name: "Big",
  5740. height: math.unit(20, "feet")
  5741. },
  5742. {
  5743. name: "Macro",
  5744. height: math.unit(50, "feet")
  5745. },
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5750. {
  5751. front: {
  5752. height: math.unit(13 + 2/12, "feet"),
  5753. weight: math.unit(800, "kg"),
  5754. name: "Front",
  5755. image: {
  5756. source: "./media/characters/gin/front.svg",
  5757. extra: 1312/1191,
  5758. bottom: 45/1357
  5759. }
  5760. },
  5761. mouth: {
  5762. height: math.unit(2.39 * 1.8, "feet"),
  5763. name: "Mouth",
  5764. image: {
  5765. source: "./media/characters/gin/mouth.svg"
  5766. }
  5767. },
  5768. hand: {
  5769. height: math.unit(1.57 * 2.19, "feet"),
  5770. name: "Hand",
  5771. image: {
  5772. source: "./media/characters/gin/hand.svg"
  5773. }
  5774. },
  5775. foot: {
  5776. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5777. name: "Foot",
  5778. image: {
  5779. source: "./media/characters/gin/foot.svg"
  5780. }
  5781. },
  5782. sole: {
  5783. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5784. name: "Sole",
  5785. image: {
  5786. source: "./media/characters/gin/sole.svg"
  5787. }
  5788. },
  5789. },
  5790. [
  5791. {
  5792. name: "Very Small",
  5793. height: math.unit(13 + 2 / 12, "feet")
  5794. },
  5795. {
  5796. name: "Micro",
  5797. height: math.unit(600, "miles")
  5798. },
  5799. {
  5800. name: "Regular",
  5801. height: math.unit(20, "earths"),
  5802. default: true
  5803. },
  5804. {
  5805. name: "Macro",
  5806. height: math.unit(2.2, "solarradii")
  5807. },
  5808. {
  5809. name: "Teramacro",
  5810. height: math.unit(1.2, "galaxies")
  5811. },
  5812. {
  5813. name: "Omegamacro",
  5814. height: math.unit(200, "universes")
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(6 + 1 / 6, "feet"),
  5823. weight: math.unit(178, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/guy/front.svg"
  5827. }
  5828. }
  5829. },
  5830. [
  5831. {
  5832. name: "Normal",
  5833. height: math.unit(6 + 1 / 6, "feet"),
  5834. default: true
  5835. },
  5836. {
  5837. name: "Large",
  5838. height: math.unit(25 + 7 / 12, "feet")
  5839. },
  5840. {
  5841. name: "Macro",
  5842. height: math.unit(60 + 9 / 12, "feet")
  5843. },
  5844. {
  5845. name: "Macro+",
  5846. height: math.unit(246, "feet")
  5847. },
  5848. {
  5849. name: "Macro++",
  5850. height: math.unit(878, "feet")
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(9, "feet"),
  5859. weight: math.unit(800, "lbs"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/tiberius/front.svg",
  5863. extra: 2295 / 2071
  5864. }
  5865. },
  5866. back: {
  5867. height: math.unit(9, "feet"),
  5868. weight: math.unit(800, "lbs"),
  5869. name: "Back",
  5870. image: {
  5871. source: "./media/characters/tiberius/back.svg",
  5872. extra: 2373 / 2160
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Normal",
  5879. height: math.unit(9, "feet"),
  5880. default: true
  5881. }
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5886. {
  5887. front: {
  5888. height: math.unit(6, "feet"),
  5889. weight: math.unit(600, "lbs"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/surgo/front.svg",
  5893. extra: 3591 / 2227
  5894. }
  5895. },
  5896. back: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(600, "lbs"),
  5899. name: "Back",
  5900. image: {
  5901. source: "./media/characters/surgo/back.svg",
  5902. extra: 3557 / 2228
  5903. }
  5904. },
  5905. laying: {
  5906. height: math.unit(6 * 0.85, "feet"),
  5907. weight: math.unit(600, "lbs"),
  5908. name: "Laying",
  5909. image: {
  5910. source: "./media/characters/surgo/laying.svg"
  5911. }
  5912. },
  5913. },
  5914. [
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(6, "feet"),
  5918. default: true
  5919. }
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5924. {
  5925. side: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(150, "lbs"),
  5928. name: "Side",
  5929. image: {
  5930. source: "./media/characters/cibus/side.svg",
  5931. extra: 800 / 400
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(6, "feet"),
  5939. default: true
  5940. }
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5945. {
  5946. front: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(240, "lbs"),
  5949. name: "Front",
  5950. image: {
  5951. source: "./media/characters/nibbles/front.svg"
  5952. }
  5953. },
  5954. side: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(240, "lbs"),
  5957. name: "Side",
  5958. image: {
  5959. source: "./media/characters/nibbles/side.svg"
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(9, "feet"),
  5967. default: true
  5968. }
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5973. {
  5974. side: {
  5975. height: math.unit(5 + 1 / 6, "feet"),
  5976. weight: math.unit(130, "lbs"),
  5977. name: "Side",
  5978. image: {
  5979. source: "./media/characters/rikky/side.svg",
  5980. extra: 851 / 801
  5981. }
  5982. },
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(5 + 1 / 6, "feet")
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(152, "feet"),
  5992. default: true
  5993. },
  5994. {
  5995. name: "Megamacro",
  5996. height: math.unit(7, "miles")
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6002. {
  6003. side: {
  6004. height: math.unit(370, "cm"),
  6005. weight: math.unit(350, "lbs"),
  6006. name: "Side",
  6007. image: {
  6008. source: "./media/characters/malfressa/side.svg"
  6009. }
  6010. },
  6011. walking: {
  6012. height: math.unit(370, "cm"),
  6013. weight: math.unit(350, "lbs"),
  6014. name: "Walking",
  6015. image: {
  6016. source: "./media/characters/malfressa/walking.svg"
  6017. }
  6018. },
  6019. feral: {
  6020. height: math.unit(2500, "cm"),
  6021. weight: math.unit(100000, "lbs"),
  6022. name: "Feral",
  6023. image: {
  6024. source: "./media/characters/malfressa/feral.svg",
  6025. extra: 2108 / 837,
  6026. bottom: 0.02
  6027. }
  6028. },
  6029. },
  6030. [
  6031. {
  6032. name: "Normal",
  6033. height: math.unit(370, "cm")
  6034. },
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(300, "meters"),
  6038. default: true
  6039. }
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6044. {
  6045. front: {
  6046. height: math.unit(6, "feet"),
  6047. weight: math.unit(60, "kg"),
  6048. name: "Front",
  6049. image: {
  6050. source: "./media/characters/jaro/front.svg"
  6051. }
  6052. },
  6053. back: {
  6054. height: math.unit(6, "feet"),
  6055. weight: math.unit(60, "kg"),
  6056. name: "Back",
  6057. image: {
  6058. source: "./media/characters/jaro/back.svg"
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Micro",
  6065. height: math.unit(7, "inches")
  6066. },
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(5.5, "feet"),
  6070. default: true
  6071. },
  6072. {
  6073. name: "Minimacro",
  6074. height: math.unit(20, "feet")
  6075. },
  6076. {
  6077. name: "Macro",
  6078. height: math.unit(200, "meters")
  6079. }
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(195, "lb"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/rogue/front.svg"
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(90, "feet"),
  6098. default: true
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6104. {
  6105. front: {
  6106. height: math.unit(5 + 8 / 12, "feet"),
  6107. weight: math.unit(140, "lb"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/piper/front.svg",
  6111. extra: 3948/3655,
  6112. bottom: 0/3948
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Micro",
  6119. height: math.unit(2, "inches")
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5 + 8 / 12, "feet")
  6124. },
  6125. {
  6126. name: "Macro",
  6127. height: math.unit(250, "feet"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Megamacro",
  6132. height: math.unit(7, "miles")
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(6, "feet"),
  6141. weight: math.unit(220, "lb"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/gemini/front.svg"
  6145. }
  6146. },
  6147. back: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(220, "lb"),
  6150. name: "Back",
  6151. image: {
  6152. source: "./media/characters/gemini/back.svg"
  6153. }
  6154. },
  6155. kneeling: {
  6156. height: math.unit(6 / 1.5, "feet"),
  6157. weight: math.unit(220, "lb"),
  6158. name: "Kneeling",
  6159. image: {
  6160. source: "./media/characters/gemini/kneeling.svg",
  6161. bottom: 0.02
  6162. }
  6163. },
  6164. },
  6165. [
  6166. {
  6167. name: "Macro",
  6168. height: math.unit(300, "meters"),
  6169. default: true
  6170. },
  6171. {
  6172. name: "Megamacro",
  6173. height: math.unit(6900, "meters")
  6174. },
  6175. ]
  6176. ))
  6177. characterMakers.push(() => makeCharacter(
  6178. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6179. {
  6180. anthro: {
  6181. height: math.unit(2.35, "meters"),
  6182. weight: math.unit(73, "kg"),
  6183. name: "Anthro",
  6184. image: {
  6185. source: "./media/characters/alicia/anthro.svg",
  6186. extra: 2571 / 2385,
  6187. bottom: 75 / 2648
  6188. }
  6189. },
  6190. paw: {
  6191. height: math.unit(1.32, "feet"),
  6192. name: "Paw",
  6193. image: {
  6194. source: "./media/characters/alicia/paw.svg"
  6195. }
  6196. },
  6197. feral: {
  6198. height: math.unit(1.69, "meters"),
  6199. weight: math.unit(73, "kg"),
  6200. name: "Feral",
  6201. image: {
  6202. source: "./media/characters/alicia/feral.svg",
  6203. extra: 2123 / 1715,
  6204. bottom: 222 / 2349
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Normal",
  6211. height: math.unit(2.35, "meters")
  6212. },
  6213. {
  6214. name: "Macro",
  6215. height: math.unit(60, "meters"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Megamacro",
  6220. height: math.unit(10000, "kilometers")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(7, "feet"),
  6229. weight: math.unit(250, "lbs"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/archy/front.svg"
  6233. }
  6234. }
  6235. },
  6236. [
  6237. {
  6238. name: "Micro",
  6239. height: math.unit(1, "inch")
  6240. },
  6241. {
  6242. name: "Shorty",
  6243. height: math.unit(5, "feet")
  6244. },
  6245. {
  6246. name: "Normal",
  6247. height: math.unit(7, "feet")
  6248. },
  6249. {
  6250. name: "Macro",
  6251. height: math.unit(600, "meters"),
  6252. default: true
  6253. },
  6254. {
  6255. name: "Megamacro",
  6256. height: math.unit(1, "mile")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(1.65, "meters"),
  6265. weight: math.unit(74, "kg"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/berri/front.svg",
  6269. extra: 857 / 837,
  6270. bottom: 18 / 877
  6271. }
  6272. },
  6273. bum: {
  6274. height: math.unit(1.46, "feet"),
  6275. name: "Bum",
  6276. image: {
  6277. source: "./media/characters/berri/bum.svg"
  6278. }
  6279. },
  6280. mouth: {
  6281. height: math.unit(0.44, "feet"),
  6282. name: "Mouth",
  6283. image: {
  6284. source: "./media/characters/berri/mouth.svg"
  6285. }
  6286. },
  6287. paw: {
  6288. height: math.unit(0.826, "feet"),
  6289. name: "Paw",
  6290. image: {
  6291. source: "./media/characters/berri/paw.svg"
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(1.65, "meters")
  6299. },
  6300. {
  6301. name: "Macro",
  6302. height: math.unit(60, "m"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Megamacro",
  6307. height: math.unit(9.213, "km")
  6308. },
  6309. {
  6310. name: "Planet Eater",
  6311. height: math.unit(489, "megameters")
  6312. },
  6313. {
  6314. name: "Teramacro",
  6315. height: math.unit(2471635000000, "meters")
  6316. },
  6317. {
  6318. name: "Examacro",
  6319. height: math.unit(8.0624e+26, "meters")
  6320. }
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6325. {
  6326. front: {
  6327. height: math.unit(1.72, "meters"),
  6328. weight: math.unit(68, "kg"),
  6329. name: "Front",
  6330. image: {
  6331. source: "./media/characters/lexi/front.svg"
  6332. }
  6333. }
  6334. },
  6335. [
  6336. {
  6337. name: "Very Smol",
  6338. height: math.unit(10, "mm")
  6339. },
  6340. {
  6341. name: "Micro",
  6342. height: math.unit(6.8, "cm"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(1.72, "m")
  6348. }
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6353. {
  6354. front: {
  6355. height: math.unit(1.69, "meters"),
  6356. weight: math.unit(68, "kg"),
  6357. name: "Front",
  6358. image: {
  6359. source: "./media/characters/martin/front.svg",
  6360. extra: 596 / 581
  6361. }
  6362. }
  6363. },
  6364. [
  6365. {
  6366. name: "Micro",
  6367. height: math.unit(6.85, "cm"),
  6368. default: true
  6369. },
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(1.69, "m")
  6373. }
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6378. {
  6379. front: {
  6380. height: math.unit(1.69, "meters"),
  6381. weight: math.unit(68, "kg"),
  6382. name: "Front",
  6383. image: {
  6384. source: "./media/characters/juno/front.svg"
  6385. }
  6386. }
  6387. },
  6388. [
  6389. {
  6390. name: "Micro",
  6391. height: math.unit(7, "cm")
  6392. },
  6393. {
  6394. name: "Normal",
  6395. height: math.unit(1.89, "m")
  6396. },
  6397. {
  6398. name: "Macro",
  6399. height: math.unit(353, "meters"),
  6400. default: true
  6401. }
  6402. ]
  6403. ))
  6404. characterMakers.push(() => makeCharacter(
  6405. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6406. {
  6407. front: {
  6408. height: math.unit(1.93, "meters"),
  6409. weight: math.unit(83, "kg"),
  6410. name: "Front",
  6411. image: {
  6412. source: "./media/characters/samantha/front.svg"
  6413. }
  6414. },
  6415. frontClothed: {
  6416. height: math.unit(1.93, "meters"),
  6417. weight: math.unit(83, "kg"),
  6418. name: "Front (Clothed)",
  6419. image: {
  6420. source: "./media/characters/samantha/front-clothed.svg"
  6421. }
  6422. },
  6423. back: {
  6424. height: math.unit(1.93, "meters"),
  6425. weight: math.unit(83, "kg"),
  6426. name: "Back",
  6427. image: {
  6428. source: "./media/characters/samantha/back.svg"
  6429. }
  6430. },
  6431. },
  6432. [
  6433. {
  6434. name: "Normal",
  6435. height: math.unit(1.93, "m")
  6436. },
  6437. {
  6438. name: "Macro",
  6439. height: math.unit(74, "meters"),
  6440. default: true
  6441. },
  6442. {
  6443. name: "Macro+",
  6444. height: math.unit(223, "meters"),
  6445. },
  6446. {
  6447. name: "Megamacro",
  6448. height: math.unit(8381, "meters"),
  6449. },
  6450. {
  6451. name: "Megamacro+",
  6452. height: math.unit(12000, "kilometers")
  6453. },
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6458. {
  6459. front: {
  6460. height: math.unit(1.92, "meters"),
  6461. weight: math.unit(80, "kg"),
  6462. name: "Front",
  6463. image: {
  6464. source: "./media/characters/dr-clay/front.svg"
  6465. }
  6466. },
  6467. frontClothed: {
  6468. height: math.unit(1.92, "meters"),
  6469. weight: math.unit(80, "kg"),
  6470. name: "Front (Clothed)",
  6471. image: {
  6472. source: "./media/characters/dr-clay/front-clothed.svg"
  6473. }
  6474. }
  6475. },
  6476. [
  6477. {
  6478. name: "Normal",
  6479. height: math.unit(1.92, "m")
  6480. },
  6481. {
  6482. name: "Macro",
  6483. height: math.unit(214, "meters"),
  6484. default: true
  6485. },
  6486. {
  6487. name: "Macro+",
  6488. height: math.unit(12.237, "meters"),
  6489. },
  6490. {
  6491. name: "Megamacro",
  6492. height: math.unit(557, "megameters"),
  6493. },
  6494. {
  6495. name: "Unimaginable",
  6496. height: math.unit(120e9, "lightyears")
  6497. },
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6502. {
  6503. front: {
  6504. height: math.unit(2, "meters"),
  6505. weight: math.unit(80, "kg"),
  6506. name: "Front",
  6507. image: {
  6508. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6509. }
  6510. }
  6511. },
  6512. [
  6513. {
  6514. name: "Teramacro",
  6515. height: math.unit(500000, "lightyears"),
  6516. default: true
  6517. },
  6518. ]
  6519. ))
  6520. characterMakers.push(() => makeCharacter(
  6521. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6522. {
  6523. crux: {
  6524. height: math.unit(2, "meters"),
  6525. weight: math.unit(150, "kg"),
  6526. name: "Crux",
  6527. image: {
  6528. source: "./media/characters/vemus/crux.svg",
  6529. extra: 1074/936,
  6530. bottom: 23/1097
  6531. }
  6532. },
  6533. skunkTanuki: {
  6534. height: math.unit(2, "meters"),
  6535. weight: math.unit(150, "kg"),
  6536. name: "Skunk-Tanuki",
  6537. image: {
  6538. source: "./media/characters/vemus/skunk-tanuki.svg",
  6539. extra: 926/893,
  6540. bottom: 20/946
  6541. }
  6542. },
  6543. },
  6544. [
  6545. {
  6546. name: "Normal",
  6547. height: math.unit(3.75, "meters"),
  6548. default: true
  6549. },
  6550. {
  6551. name: "Big",
  6552. height: math.unit(8, "meters")
  6553. },
  6554. {
  6555. name: "Macro",
  6556. height: math.unit(100, "meters")
  6557. },
  6558. {
  6559. name: "Macro+",
  6560. height: math.unit(1500, "meters")
  6561. },
  6562. {
  6563. name: "Stellar",
  6564. height: math.unit(14e8, "meters")
  6565. },
  6566. ]
  6567. ))
  6568. characterMakers.push(() => makeCharacter(
  6569. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6570. {
  6571. front: {
  6572. height: math.unit(2, "meters"),
  6573. weight: math.unit(70, "kg"),
  6574. name: "Front",
  6575. image: {
  6576. source: "./media/characters/beherit/front.svg",
  6577. extra: 1408 / 1242
  6578. }
  6579. }
  6580. },
  6581. [
  6582. {
  6583. name: "Normal",
  6584. height: math.unit(6, "feet")
  6585. },
  6586. {
  6587. name: "Lorg",
  6588. height: math.unit(25, "feet"),
  6589. default: true
  6590. },
  6591. {
  6592. name: "Lorger",
  6593. height: math.unit(75, "feet")
  6594. },
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(200, "meters")
  6598. },
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6603. {
  6604. front: {
  6605. height: math.unit(2, "meters"),
  6606. weight: math.unit(150, "kg"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/everett/front.svg",
  6610. extra: 2038 / 1737,
  6611. bottom: 0.03
  6612. }
  6613. },
  6614. paw: {
  6615. height: math.unit(2 / 3.6, "meters"),
  6616. name: "Paw",
  6617. image: {
  6618. source: "./media/characters/everett/paw.svg"
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(15, "feet"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Lorg",
  6630. height: math.unit(70, "feet"),
  6631. default: true
  6632. },
  6633. {
  6634. name: "Lorger",
  6635. height: math.unit(250, "feet")
  6636. },
  6637. {
  6638. name: "Macro",
  6639. height: math.unit(500, "meters")
  6640. },
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(2, "meters"),
  6648. weight: math.unit(86, "kg"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/rose/front.svg",
  6652. extra: 1785/1636,
  6653. bottom: 30/1815
  6654. }
  6655. },
  6656. frontSporty: {
  6657. height: math.unit(2, "meters"),
  6658. weight: math.unit(86, "kg"),
  6659. name: "Front (Sporty)",
  6660. image: {
  6661. source: "./media/characters/rose/front-sporty.svg",
  6662. extra: 350/335,
  6663. bottom: 10/360
  6664. }
  6665. },
  6666. frontAlt: {
  6667. height: math.unit(1.6, "meters"),
  6668. weight: math.unit(86, "kg"),
  6669. name: "Front (Alt)",
  6670. image: {
  6671. source: "./media/characters/rose/front-alt.svg",
  6672. extra: 299/283,
  6673. bottom: 3/302
  6674. }
  6675. },
  6676. plush: {
  6677. height: math.unit(2, "meters"),
  6678. weight: math.unit(86/3, "kg"),
  6679. name: "Plush",
  6680. image: {
  6681. source: "./media/characters/rose/plush.svg",
  6682. extra: 361/337,
  6683. bottom: 11/372
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "True Micro",
  6690. height: math.unit(9, "cm")
  6691. },
  6692. {
  6693. name: "Micro",
  6694. height: math.unit(16, "cm")
  6695. },
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(1.85, "meters"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Mini-Macro",
  6703. height: math.unit(5, "meters")
  6704. },
  6705. {
  6706. name: "Macro",
  6707. height: math.unit(15, "meters")
  6708. },
  6709. {
  6710. name: "True Macro",
  6711. height: math.unit(40, "meters")
  6712. },
  6713. {
  6714. name: "City Scale",
  6715. height: math.unit(1, "km")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(2, "meters"),
  6724. weight: math.unit(350, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/regal/front.svg"
  6728. }
  6729. },
  6730. back: {
  6731. height: math.unit(2, "meters"),
  6732. weight: math.unit(350, "lbs"),
  6733. name: "Back",
  6734. image: {
  6735. source: "./media/characters/regal/back.svg"
  6736. }
  6737. },
  6738. },
  6739. [
  6740. {
  6741. name: "Macro",
  6742. height: math.unit(350, "feet"),
  6743. default: true
  6744. }
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(4 + 11 / 12, "feet"),
  6752. weight: math.unit(100, "lbs"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/opal/front.svg"
  6756. }
  6757. },
  6758. frontAlt: {
  6759. height: math.unit(4 + 11 / 12, "feet"),
  6760. weight: math.unit(100, "lbs"),
  6761. name: "Front (Alt)",
  6762. image: {
  6763. source: "./media/characters/opal/front-alt.svg"
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Small",
  6770. height: math.unit(4 + 11 / 12, "feet")
  6771. },
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(20, "feet"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Macro",
  6779. height: math.unit(120, "feet")
  6780. },
  6781. {
  6782. name: "Megamacro",
  6783. height: math.unit(80, "miles")
  6784. },
  6785. {
  6786. name: "True Size",
  6787. height: math.unit(100000, "lightyears")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(6, "feet"),
  6796. weight: math.unit(200, "lbs"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/vector-wuff/front.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(2.8, "meters")
  6807. },
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(450, "meters"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Megamacro",
  6815. height: math.unit(15, "kilometers")
  6816. }
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(6, "feet"),
  6824. weight: math.unit(256, "lbs"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/dannik/front.svg"
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Macro",
  6834. height: math.unit(69.57, "meters"),
  6835. default: true
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(120, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/azura-saharah/front.svg"
  6848. }
  6849. },
  6850. back: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(120, "lbs"),
  6853. name: "Back",
  6854. image: {
  6855. source: "./media/characters/azura-saharah/back.svg"
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(100, "feet"),
  6863. default: true
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6869. {
  6870. side: {
  6871. height: math.unit(5 + 4 / 12, "feet"),
  6872. weight: math.unit(163, "lbs"),
  6873. name: "Side",
  6874. image: {
  6875. source: "./media/characters/kennedy/side.svg"
  6876. }
  6877. }
  6878. },
  6879. [
  6880. {
  6881. name: "Standard Doggo",
  6882. height: math.unit(5 + 4 / 12, "feet")
  6883. },
  6884. {
  6885. name: "Big Doggo",
  6886. height: math.unit(25 + 3 / 12, "feet"),
  6887. default: true
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(90, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/odi-lunar/front.svg"
  6900. }
  6901. }
  6902. },
  6903. [
  6904. {
  6905. name: "Micro",
  6906. height: math.unit(3, "inches"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Normal",
  6911. height: math.unit(5.5, "feet")
  6912. }
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6917. {
  6918. back: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(220, "lbs"),
  6921. name: "Back",
  6922. image: {
  6923. source: "./media/characters/mandake/back.svg"
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(7, "feet"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(78, "feet")
  6936. },
  6937. {
  6938. name: "Macro+",
  6939. height: math.unit(300, "meters")
  6940. },
  6941. {
  6942. name: "Macro++",
  6943. height: math.unit(2400, "feet")
  6944. },
  6945. {
  6946. name: "Megamacro",
  6947. height: math.unit(5167, "meters")
  6948. },
  6949. {
  6950. name: "Gigamacro",
  6951. height: math.unit(41769, "miles")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(6, "feet"),
  6960. weight: math.unit(120, "lbs"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/yozey/front.svg"
  6964. }
  6965. },
  6966. frontAlt: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(120, "lbs"),
  6969. name: "Front (Alt)",
  6970. image: {
  6971. source: "./media/characters/yozey/front-alt.svg"
  6972. }
  6973. },
  6974. side: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(120, "lbs"),
  6977. name: "Side",
  6978. image: {
  6979. source: "./media/characters/yozey/side.svg"
  6980. }
  6981. },
  6982. },
  6983. [
  6984. {
  6985. name: "Micro",
  6986. height: math.unit(3, "inches"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(6, "feet")
  6992. }
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6997. {
  6998. front: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(103, "lbs"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/valeska-voss/front.svg"
  7004. }
  7005. }
  7006. },
  7007. [
  7008. {
  7009. name: "Mini-Sized Sub",
  7010. height: math.unit(3.1, "inches")
  7011. },
  7012. {
  7013. name: "Mid-Sized Sub",
  7014. height: math.unit(6.2, "inches")
  7015. },
  7016. {
  7017. name: "Full-Sized Sub",
  7018. height: math.unit(9.3, "inches")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(5 + 2 / 12, "foot"),
  7023. default: true
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(160, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/gene-zeta/front.svg",
  7036. extra: 3006 / 2826,
  7037. bottom: 182 / 3188
  7038. }
  7039. }
  7040. },
  7041. [
  7042. {
  7043. name: "Micro",
  7044. height: math.unit(6, "inches")
  7045. },
  7046. {
  7047. name: "Normal",
  7048. height: math.unit(5 + 11 / 12, "foot"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Macro",
  7053. height: math.unit(140, "feet")
  7054. },
  7055. {
  7056. name: "Supercharged",
  7057. height: math.unit(2500, "feet")
  7058. },
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(350, "lbs"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/razinox/front.svg",
  7070. extra: 1686 / 1548,
  7071. bottom: 28.2 / 1868
  7072. }
  7073. },
  7074. back: {
  7075. height: math.unit(6, "feet"),
  7076. weight: math.unit(350, "lbs"),
  7077. name: "Back",
  7078. image: {
  7079. source: "./media/characters/razinox/back.svg",
  7080. extra: 1660 / 1590,
  7081. bottom: 15 / 1665
  7082. }
  7083. },
  7084. },
  7085. [
  7086. {
  7087. name: "Normal",
  7088. height: math.unit(10 + 8 / 12, "foot")
  7089. },
  7090. {
  7091. name: "Minimacro",
  7092. height: math.unit(15, "foot")
  7093. },
  7094. {
  7095. name: "Macro",
  7096. height: math.unit(60, "foot"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Megamacro",
  7101. height: math.unit(5, "miles")
  7102. },
  7103. {
  7104. name: "Gigamacro",
  7105. height: math.unit(6000, "miles")
  7106. },
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(150, "lbs"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/cobalt/front.svg"
  7118. }
  7119. }
  7120. },
  7121. [
  7122. {
  7123. name: "Normal",
  7124. height: math.unit(8 + 1 / 12, "foot")
  7125. },
  7126. {
  7127. name: "Macro",
  7128. height: math.unit(111, "foot"),
  7129. default: true
  7130. },
  7131. {
  7132. name: "Supracosmic",
  7133. height: math.unit(1e42, "feet")
  7134. },
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(140, "lbs"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/amanda/front.svg"
  7146. }
  7147. }
  7148. },
  7149. [
  7150. {
  7151. name: "Micro",
  7152. height: math.unit(5, "inches"),
  7153. default: true
  7154. },
  7155. ]
  7156. ))
  7157. characterMakers.push(() => makeCharacter(
  7158. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7159. {
  7160. front: {
  7161. height: math.unit(2.75, "meters"),
  7162. weight: math.unit(1200, "lb"),
  7163. name: "Front",
  7164. image: {
  7165. source: "./media/characters/teal/front.svg",
  7166. extra: 2463 / 2320,
  7167. bottom: 166 / 2629
  7168. }
  7169. },
  7170. back: {
  7171. height: math.unit(2.75, "meters"),
  7172. weight: math.unit(1200, "lb"),
  7173. name: "Back",
  7174. image: {
  7175. source: "./media/characters/teal/back.svg",
  7176. extra: 2580 / 2489,
  7177. bottom: 151 / 2731
  7178. }
  7179. },
  7180. sitting: {
  7181. height: math.unit(1.9, "meters"),
  7182. weight: math.unit(1200, "lb"),
  7183. name: "Sitting",
  7184. image: {
  7185. source: "./media/characters/teal/sitting.svg",
  7186. extra: 623 / 590,
  7187. bottom: 121 / 744
  7188. }
  7189. },
  7190. standing: {
  7191. height: math.unit(2.75, "meters"),
  7192. weight: math.unit(1200, "lb"),
  7193. name: "Standing",
  7194. image: {
  7195. source: "./media/characters/teal/standing.svg",
  7196. extra: 923 / 893,
  7197. bottom: 60 / 983
  7198. }
  7199. },
  7200. stretching: {
  7201. height: math.unit(3.65, "meters"),
  7202. weight: math.unit(1200, "lb"),
  7203. name: "Stretching",
  7204. image: {
  7205. source: "./media/characters/teal/stretching.svg",
  7206. extra: 1276 / 1244,
  7207. bottom: 0 / 1276
  7208. }
  7209. },
  7210. legged: {
  7211. height: math.unit(1.3, "meters"),
  7212. weight: math.unit(100, "lb"),
  7213. name: "Legged",
  7214. image: {
  7215. source: "./media/characters/teal/legged.svg",
  7216. extra: 462 / 437,
  7217. bottom: 24 / 486
  7218. }
  7219. },
  7220. naga: {
  7221. height: math.unit(5.4, "meters"),
  7222. weight: math.unit(4000, "lb"),
  7223. name: "Naga",
  7224. image: {
  7225. source: "./media/characters/teal/naga.svg",
  7226. extra: 1902 / 1858,
  7227. bottom: 0 / 1902
  7228. }
  7229. },
  7230. hand: {
  7231. height: math.unit(0.52, "meters"),
  7232. name: "Hand",
  7233. image: {
  7234. source: "./media/characters/teal/hand.svg"
  7235. }
  7236. },
  7237. maw: {
  7238. height: math.unit(0.43, "meters"),
  7239. name: "Maw",
  7240. image: {
  7241. source: "./media/characters/teal/maw.svg"
  7242. }
  7243. },
  7244. slit: {
  7245. height: math.unit(0.25, "meters"),
  7246. name: "Slit",
  7247. image: {
  7248. source: "./media/characters/teal/slit.svg"
  7249. }
  7250. },
  7251. },
  7252. [
  7253. {
  7254. name: "Normal",
  7255. height: math.unit(2.75, "meters"),
  7256. default: true
  7257. },
  7258. {
  7259. name: "Macro",
  7260. height: math.unit(300, "feet")
  7261. },
  7262. {
  7263. name: "Macro+",
  7264. height: math.unit(2000, "feet")
  7265. },
  7266. ]
  7267. ))
  7268. characterMakers.push(() => makeCharacter(
  7269. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7270. {
  7271. frontCat: {
  7272. height: math.unit(6, "feet"),
  7273. weight: math.unit(180, "lbs"),
  7274. name: "Front (Cat)",
  7275. image: {
  7276. source: "./media/characters/ravin-amulet/front-cat.svg"
  7277. }
  7278. },
  7279. frontCatAlt: {
  7280. height: math.unit(6, "feet"),
  7281. weight: math.unit(180, "lbs"),
  7282. name: "Front (Alt, Cat)",
  7283. image: {
  7284. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7285. }
  7286. },
  7287. frontWerewolf: {
  7288. height: math.unit(6 * 1.2, "feet"),
  7289. weight: math.unit(225, "lbs"),
  7290. name: "Front (Werewolf)",
  7291. image: {
  7292. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7293. }
  7294. },
  7295. backWerewolf: {
  7296. height: math.unit(6 * 1.2, "feet"),
  7297. weight: math.unit(225, "lbs"),
  7298. name: "Back (Werewolf)",
  7299. image: {
  7300. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7301. }
  7302. },
  7303. },
  7304. [
  7305. {
  7306. name: "Nano",
  7307. height: math.unit(1, "micrometer")
  7308. },
  7309. {
  7310. name: "Micro",
  7311. height: math.unit(1, "inch")
  7312. },
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(6, "feet"),
  7316. default: true
  7317. },
  7318. {
  7319. name: "Macro",
  7320. height: math.unit(60, "feet")
  7321. }
  7322. ]
  7323. ))
  7324. characterMakers.push(() => makeCharacter(
  7325. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7326. {
  7327. front: {
  7328. height: math.unit(6, "feet"),
  7329. weight: math.unit(165, "lbs"),
  7330. name: "Front",
  7331. image: {
  7332. source: "./media/characters/fluoresce/front.svg"
  7333. }
  7334. }
  7335. },
  7336. [
  7337. {
  7338. name: "Micro",
  7339. height: math.unit(6, "cm")
  7340. },
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(5 + 7 / 12, "feet"),
  7344. default: true
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(56, "feet")
  7349. },
  7350. {
  7351. name: "Megamacro",
  7352. height: math.unit(1.9, "miles")
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(9 + 6 / 12, "feet"),
  7361. weight: math.unit(523, "lbs"),
  7362. name: "Side",
  7363. image: {
  7364. source: "./media/characters/aurora/side.svg"
  7365. }
  7366. }
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(9 + 6 / 12, "feet")
  7372. },
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(96, "feet"),
  7376. default: true
  7377. },
  7378. {
  7379. name: "Macro+",
  7380. height: math.unit(243, "feet")
  7381. },
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7386. {
  7387. front: {
  7388. height: math.unit(194, "cm"),
  7389. weight: math.unit(90, "kg"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/ranek/front.svg"
  7393. }
  7394. },
  7395. side: {
  7396. height: math.unit(194, "cm"),
  7397. weight: math.unit(90, "kg"),
  7398. name: "Side",
  7399. image: {
  7400. source: "./media/characters/ranek/side.svg"
  7401. }
  7402. },
  7403. back: {
  7404. height: math.unit(194, "cm"),
  7405. weight: math.unit(90, "kg"),
  7406. name: "Back",
  7407. image: {
  7408. source: "./media/characters/ranek/back.svg"
  7409. }
  7410. },
  7411. feral: {
  7412. height: math.unit(30, "cm"),
  7413. weight: math.unit(1.6, "lbs"),
  7414. name: "Feral",
  7415. image: {
  7416. source: "./media/characters/ranek/feral.svg"
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Normal",
  7423. height: math.unit(194, "cm"),
  7424. default: true
  7425. },
  7426. {
  7427. name: "Macro",
  7428. height: math.unit(100, "meters")
  7429. },
  7430. ]
  7431. ))
  7432. characterMakers.push(() => makeCharacter(
  7433. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7434. {
  7435. front: {
  7436. height: math.unit(5 + 6 / 12, "feet"),
  7437. weight: math.unit(153, "lbs"),
  7438. name: "Front",
  7439. image: {
  7440. source: "./media/characters/andrew-cooper/front.svg"
  7441. }
  7442. },
  7443. },
  7444. [
  7445. {
  7446. name: "Nano",
  7447. height: math.unit(1, "mm")
  7448. },
  7449. {
  7450. name: "Micro",
  7451. height: math.unit(2, "inches")
  7452. },
  7453. {
  7454. name: "Normal",
  7455. height: math.unit(5 + 6 / 12, "feet"),
  7456. default: true
  7457. }
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(6, "feet"),
  7465. weight: math.unit(180, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/akane-sato/front.svg",
  7469. extra: 1219 / 1140
  7470. }
  7471. },
  7472. back: {
  7473. height: math.unit(6, "feet"),
  7474. weight: math.unit(180, "lbs"),
  7475. name: "Back",
  7476. image: {
  7477. source: "./media/characters/akane-sato/back.svg",
  7478. extra: 1219 / 1170
  7479. }
  7480. },
  7481. },
  7482. [
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(2.5, "meters")
  7486. },
  7487. {
  7488. name: "Macro",
  7489. height: math.unit(250, "meters"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Megamacro",
  7494. height: math.unit(25, "km")
  7495. },
  7496. ]
  7497. ))
  7498. characterMakers.push(() => makeCharacter(
  7499. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7500. {
  7501. front: {
  7502. height: math.unit(6, "feet"),
  7503. weight: math.unit(65, "kg"),
  7504. name: "Front",
  7505. image: {
  7506. source: "./media/characters/rook/front.svg",
  7507. extra: 960 / 950
  7508. }
  7509. }
  7510. },
  7511. [
  7512. {
  7513. name: "Normal",
  7514. height: math.unit(8.8, "feet")
  7515. },
  7516. {
  7517. name: "Macro",
  7518. height: math.unit(88, "feet"),
  7519. default: true
  7520. },
  7521. {
  7522. name: "Megamacro",
  7523. height: math.unit(8, "miles")
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7529. {
  7530. front: {
  7531. height: math.unit(12 + 2 / 12, "feet"),
  7532. weight: math.unit(808, "lbs"),
  7533. name: "Front",
  7534. image: {
  7535. source: "./media/characters/prodigy/front.svg"
  7536. }
  7537. }
  7538. },
  7539. [
  7540. {
  7541. name: "Normal",
  7542. height: math.unit(12 + 2 / 12, "feet"),
  7543. default: true
  7544. },
  7545. {
  7546. name: "Macro",
  7547. height: math.unit(143, "feet")
  7548. },
  7549. {
  7550. name: "Macro+",
  7551. height: math.unit(400, "feet")
  7552. },
  7553. ]
  7554. ))
  7555. characterMakers.push(() => makeCharacter(
  7556. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7557. {
  7558. front: {
  7559. height: math.unit(6, "feet"),
  7560. weight: math.unit(225, "lbs"),
  7561. name: "Front",
  7562. image: {
  7563. source: "./media/characters/daniel/front.svg"
  7564. }
  7565. },
  7566. leaning: {
  7567. height: math.unit(6, "feet"),
  7568. weight: math.unit(225, "lbs"),
  7569. name: "Leaning",
  7570. image: {
  7571. source: "./media/characters/daniel/leaning.svg"
  7572. }
  7573. },
  7574. },
  7575. [
  7576. {
  7577. name: "Macro",
  7578. height: math.unit(1000, "feet"),
  7579. default: true
  7580. },
  7581. ]
  7582. ))
  7583. characterMakers.push(() => makeCharacter(
  7584. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7585. {
  7586. front: {
  7587. height: math.unit(6, "feet"),
  7588. weight: math.unit(88, "lbs"),
  7589. name: "Front",
  7590. image: {
  7591. source: "./media/characters/chiros/front.svg",
  7592. extra: 306 / 226
  7593. }
  7594. },
  7595. side: {
  7596. height: math.unit(6, "feet"),
  7597. weight: math.unit(88, "lbs"),
  7598. name: "Side",
  7599. image: {
  7600. source: "./media/characters/chiros/side.svg",
  7601. extra: 306 / 226
  7602. }
  7603. },
  7604. },
  7605. [
  7606. {
  7607. name: "Normal",
  7608. height: math.unit(6, "cm"),
  7609. default: true
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7615. {
  7616. front: {
  7617. height: math.unit(6, "feet"),
  7618. weight: math.unit(100, "lbs"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/selka/front.svg",
  7622. extra: 947 / 887
  7623. }
  7624. }
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(5, "cm"),
  7630. default: true
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(8 + 3 / 12, "feet"),
  7639. weight: math.unit(424, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/verin/front.svg",
  7643. extra: 1845 / 1550
  7644. }
  7645. },
  7646. frontArmored: {
  7647. height: math.unit(8 + 3 / 12, "feet"),
  7648. weight: math.unit(424, "lbs"),
  7649. name: "Front (Armored)",
  7650. image: {
  7651. source: "./media/characters/verin/front-armor.svg",
  7652. extra: 1845 / 1550,
  7653. bottom: 0.01
  7654. }
  7655. },
  7656. back: {
  7657. height: math.unit(8 + 3 / 12, "feet"),
  7658. weight: math.unit(424, "lbs"),
  7659. name: "Back",
  7660. image: {
  7661. source: "./media/characters/verin/back.svg",
  7662. bottom: 0.1,
  7663. extra: 1
  7664. }
  7665. },
  7666. foot: {
  7667. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7668. name: "Foot",
  7669. image: {
  7670. source: "./media/characters/verin/foot.svg"
  7671. }
  7672. },
  7673. },
  7674. [
  7675. {
  7676. name: "Normal",
  7677. height: math.unit(8 + 3 / 12, "feet")
  7678. },
  7679. {
  7680. name: "Minimacro",
  7681. height: math.unit(21, "feet"),
  7682. default: true
  7683. },
  7684. {
  7685. name: "Macro",
  7686. height: math.unit(626, "feet")
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(2.718, "meters"),
  7695. weight: math.unit(150, "lbs"),
  7696. name: "Front",
  7697. image: {
  7698. source: "./media/characters/sovrim-terraquian/front.svg"
  7699. }
  7700. },
  7701. back: {
  7702. height: math.unit(2.718, "meters"),
  7703. weight: math.unit(150, "lbs"),
  7704. name: "Back",
  7705. image: {
  7706. source: "./media/characters/sovrim-terraquian/back.svg"
  7707. }
  7708. }
  7709. },
  7710. [
  7711. {
  7712. name: "Micro",
  7713. height: math.unit(2, "inches")
  7714. },
  7715. {
  7716. name: "Small",
  7717. height: math.unit(1, "meter")
  7718. },
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(Math.E, "meters"),
  7722. default: true
  7723. },
  7724. {
  7725. name: "Macro",
  7726. height: math.unit(20, "meters")
  7727. },
  7728. {
  7729. name: "Macro+",
  7730. height: math.unit(400, "meters")
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(7, "feet"),
  7739. weight: math.unit(489, "lbs"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/reece-silvermane/front.svg",
  7743. bottom: 0.02,
  7744. extra: 1
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Macro",
  7751. height: math.unit(1.5, "miles"),
  7752. default: true
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(78, "kg"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/kane/front.svg",
  7765. extra: 978 / 899
  7766. }
  7767. },
  7768. },
  7769. [
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(2.1, "m"),
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(1, "km"),
  7777. default: true
  7778. },
  7779. ]
  7780. ))
  7781. characterMakers.push(() => makeCharacter(
  7782. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7783. {
  7784. front: {
  7785. height: math.unit(6, "feet"),
  7786. weight: math.unit(200, "kg"),
  7787. name: "Front",
  7788. image: {
  7789. source: "./media/characters/tegon/front.svg",
  7790. bottom: 0.01,
  7791. extra: 1
  7792. }
  7793. },
  7794. },
  7795. [
  7796. {
  7797. name: "Micro",
  7798. height: math.unit(1, "inch")
  7799. },
  7800. {
  7801. name: "Normal",
  7802. height: math.unit(6 + 3 / 12, "feet"),
  7803. default: true
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(300, "feet")
  7808. },
  7809. {
  7810. name: "Megamacro",
  7811. height: math.unit(69, "miles")
  7812. },
  7813. ]
  7814. ))
  7815. characterMakers.push(() => makeCharacter(
  7816. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7817. {
  7818. side: {
  7819. height: math.unit(6, "feet"),
  7820. weight: math.unit(2304, "lbs"),
  7821. name: "Side",
  7822. image: {
  7823. source: "./media/characters/arcturax/side.svg",
  7824. extra: 790 / 376,
  7825. bottom: 0.01
  7826. }
  7827. },
  7828. },
  7829. [
  7830. {
  7831. name: "Micro",
  7832. height: math.unit(2, "inch")
  7833. },
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(6, "feet")
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(39, "feet"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Megamacro",
  7845. height: math.unit(7, "miles")
  7846. },
  7847. ]
  7848. ))
  7849. characterMakers.push(() => makeCharacter(
  7850. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7851. {
  7852. front: {
  7853. height: math.unit(6, "feet"),
  7854. weight: math.unit(50, "lbs"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/sentri/front.svg",
  7858. extra: 1750 / 1570,
  7859. bottom: 0.025
  7860. }
  7861. },
  7862. frontAlt: {
  7863. height: math.unit(6, "feet"),
  7864. weight: math.unit(50, "lbs"),
  7865. name: "Front (Alt)",
  7866. image: {
  7867. source: "./media/characters/sentri/front-alt.svg",
  7868. extra: 1750 / 1570,
  7869. bottom: 0.025
  7870. }
  7871. },
  7872. },
  7873. [
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(15, "feet"),
  7877. default: true
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(2500, "feet")
  7882. }
  7883. ]
  7884. ))
  7885. characterMakers.push(() => makeCharacter(
  7886. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7887. {
  7888. front: {
  7889. height: math.unit(5 + 8 / 12, "feet"),
  7890. weight: math.unit(130, "lbs"),
  7891. name: "Front",
  7892. image: {
  7893. source: "./media/characters/corvin/front.svg",
  7894. extra: 1803 / 1629
  7895. }
  7896. },
  7897. frontShirt: {
  7898. height: math.unit(5 + 8 / 12, "feet"),
  7899. weight: math.unit(130, "lbs"),
  7900. name: "Front (Shirt)",
  7901. image: {
  7902. source: "./media/characters/corvin/front-shirt.svg",
  7903. extra: 1803 / 1629
  7904. }
  7905. },
  7906. frontPoncho: {
  7907. height: math.unit(5 + 8 / 12, "feet"),
  7908. weight: math.unit(130, "lbs"),
  7909. name: "Front (Poncho)",
  7910. image: {
  7911. source: "./media/characters/corvin/front-poncho.svg",
  7912. extra: 1803 / 1629
  7913. }
  7914. },
  7915. side: {
  7916. height: math.unit(5 + 8 / 12, "feet"),
  7917. weight: math.unit(130, "lbs"),
  7918. name: "Side",
  7919. image: {
  7920. source: "./media/characters/corvin/side.svg",
  7921. extra: 1012 / 945
  7922. }
  7923. },
  7924. back: {
  7925. height: math.unit(5 + 8 / 12, "feet"),
  7926. weight: math.unit(130, "lbs"),
  7927. name: "Back",
  7928. image: {
  7929. source: "./media/characters/corvin/back.svg",
  7930. extra: 1803 / 1629
  7931. }
  7932. },
  7933. },
  7934. [
  7935. {
  7936. name: "Micro",
  7937. height: math.unit(3, "inches")
  7938. },
  7939. {
  7940. name: "Normal",
  7941. height: math.unit(5 + 8 / 12, "feet")
  7942. },
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(300, "feet"),
  7946. default: true
  7947. },
  7948. {
  7949. name: "Megamacro",
  7950. height: math.unit(500, "miles")
  7951. }
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7956. {
  7957. front: {
  7958. height: math.unit(6, "feet"),
  7959. weight: math.unit(135, "lbs"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/q/front.svg",
  7963. extra: 854 / 752,
  7964. bottom: 0.005
  7965. }
  7966. },
  7967. back: {
  7968. height: math.unit(6, "feet"),
  7969. weight: math.unit(130, "lbs"),
  7970. name: "Back",
  7971. image: {
  7972. source: "./media/characters/q/back.svg",
  7973. extra: 854 / 752
  7974. }
  7975. },
  7976. },
  7977. [
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(90, "feet"),
  7981. default: true
  7982. },
  7983. {
  7984. name: "Extra Macro",
  7985. height: math.unit(300, "feet"),
  7986. },
  7987. {
  7988. name: "BIG WALF",
  7989. height: math.unit(750, "feet"),
  7990. },
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7995. {
  7996. front: {
  7997. height: math.unit(6, "feet"),
  7998. weight: math.unit(150, "lbs"),
  7999. name: "Front",
  8000. image: {
  8001. source: "./media/characters/carley/front.svg",
  8002. extra: 3927 / 3540,
  8003. bottom: 29.2 / 735
  8004. }
  8005. }
  8006. },
  8007. [
  8008. {
  8009. name: "Normal",
  8010. height: math.unit(6 + 3 / 12, "feet")
  8011. },
  8012. {
  8013. name: "Macro",
  8014. height: math.unit(185, "feet"),
  8015. default: true
  8016. },
  8017. {
  8018. name: "Megamacro",
  8019. height: math.unit(8, "miles"),
  8020. },
  8021. ]
  8022. ))
  8023. characterMakers.push(() => makeCharacter(
  8024. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8025. {
  8026. front: {
  8027. height: math.unit(3, "feet"),
  8028. weight: math.unit(28, "lbs"),
  8029. name: "Front",
  8030. image: {
  8031. source: "./media/characters/citrine/front.svg"
  8032. }
  8033. }
  8034. },
  8035. [
  8036. {
  8037. name: "Normal",
  8038. height: math.unit(3, "feet"),
  8039. default: true
  8040. }
  8041. ]
  8042. ))
  8043. characterMakers.push(() => makeCharacter(
  8044. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8045. {
  8046. front: {
  8047. height: math.unit(14, "feet"),
  8048. weight: math.unit(1450, "kg"),
  8049. capacity: math.unit(15, "people"),
  8050. name: "Front",
  8051. image: {
  8052. source: "./media/characters/aura-starwind/front.svg",
  8053. extra: 1455 / 1335
  8054. }
  8055. },
  8056. side: {
  8057. height: math.unit(14, "feet"),
  8058. weight: math.unit(1450, "kg"),
  8059. capacity: math.unit(15, "people"),
  8060. name: "Side",
  8061. image: {
  8062. source: "./media/characters/aura-starwind/side.svg",
  8063. extra: 1654 / 1497
  8064. }
  8065. },
  8066. taur: {
  8067. height: math.unit(18, "feet"),
  8068. weight: math.unit(5500, "kg"),
  8069. capacity: math.unit(50, "people"),
  8070. name: "Taur",
  8071. image: {
  8072. source: "./media/characters/aura-starwind/taur.svg",
  8073. extra: 1760 / 1650
  8074. }
  8075. },
  8076. feral: {
  8077. height: math.unit(46, "feet"),
  8078. weight: math.unit(25000, "kg"),
  8079. capacity: math.unit(120, "people"),
  8080. name: "Feral",
  8081. image: {
  8082. source: "./media/characters/aura-starwind/feral.svg"
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(14, "feet"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Macro",
  8094. height: math.unit(50, "meters")
  8095. },
  8096. {
  8097. name: "Megamacro",
  8098. height: math.unit(5000, "meters")
  8099. },
  8100. {
  8101. name: "Gigamacro",
  8102. height: math.unit(100000, "kilometers")
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(2 + 7 / 12, "feet"),
  8111. weight: math.unit(32, "lbs"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/rivet/front.svg",
  8115. extra: 1716 / 1658,
  8116. bottom: 0.03
  8117. }
  8118. },
  8119. foot: {
  8120. height: math.unit(0.551, "feet"),
  8121. name: "Rivet's Foot",
  8122. image: {
  8123. source: "./media/characters/rivet/foot.svg"
  8124. },
  8125. rename: true
  8126. }
  8127. },
  8128. [
  8129. {
  8130. name: "Micro",
  8131. height: math.unit(1.5, "inches"),
  8132. },
  8133. {
  8134. name: "Normal",
  8135. height: math.unit(2 + 7 / 12, "feet"),
  8136. default: true
  8137. },
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(85, "feet")
  8141. },
  8142. {
  8143. name: "Megamacro",
  8144. height: math.unit(2.2, "km")
  8145. }
  8146. ]
  8147. ))
  8148. characterMakers.push(() => makeCharacter(
  8149. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8150. {
  8151. front: {
  8152. height: math.unit(5 + 9 / 12, "feet"),
  8153. weight: math.unit(150, "lbs"),
  8154. name: "Front",
  8155. image: {
  8156. source: "./media/characters/coffee/front.svg",
  8157. extra: 3666 / 3032,
  8158. bottom: 0.04
  8159. }
  8160. },
  8161. foot: {
  8162. height: math.unit(1.29, "feet"),
  8163. name: "Foot",
  8164. image: {
  8165. source: "./media/characters/coffee/foot.svg"
  8166. }
  8167. },
  8168. },
  8169. [
  8170. {
  8171. name: "Micro",
  8172. height: math.unit(2, "inches"),
  8173. },
  8174. {
  8175. name: "Normal",
  8176. height: math.unit(5 + 9 / 12, "feet"),
  8177. default: true
  8178. },
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(800, "feet")
  8182. },
  8183. {
  8184. name: "Megamacro",
  8185. height: math.unit(25, "miles")
  8186. }
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8191. {
  8192. front: {
  8193. height: math.unit(6, "feet"),
  8194. weight: math.unit(200, "lbs"),
  8195. name: "Front",
  8196. image: {
  8197. source: "./media/characters/chari-gal/front.svg",
  8198. extra: 1568 / 1385,
  8199. bottom: 0.047
  8200. }
  8201. },
  8202. gigantamax: {
  8203. height: math.unit(6 * 16, "feet"),
  8204. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8205. name: "Gigantamax",
  8206. image: {
  8207. source: "./media/characters/chari-gal/gigantamax.svg",
  8208. extra: 1124 / 888,
  8209. bottom: 0.03
  8210. }
  8211. },
  8212. },
  8213. [
  8214. {
  8215. name: "Normal",
  8216. height: math.unit(5 + 7 / 12, "feet")
  8217. },
  8218. {
  8219. name: "Macro",
  8220. height: math.unit(200, "feet"),
  8221. default: true
  8222. }
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(150, "lbs"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/nova/front.svg",
  8234. extra: 5000 / 4722,
  8235. bottom: 0.02
  8236. }
  8237. }
  8238. },
  8239. [
  8240. {
  8241. name: "Micro-",
  8242. height: math.unit(0.8, "inches")
  8243. },
  8244. {
  8245. name: "Micro",
  8246. height: math.unit(2, "inches"),
  8247. default: true
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(3 + 1 / 12, "feet"),
  8256. weight: math.unit(21.7, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/argent/front.svg",
  8260. extra: 1471 / 1331,
  8261. bottom: 100.8 / 1575.5
  8262. }
  8263. }
  8264. },
  8265. [
  8266. {
  8267. name: "Micro",
  8268. height: math.unit(2, "inches")
  8269. },
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(3 + 1 / 12, "feet"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(120, "feet")
  8278. },
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8283. {
  8284. lamp: {
  8285. height: math.unit(7 * 1559 / 989, "feet"),
  8286. name: "Magic Lamp",
  8287. image: {
  8288. source: "./media/characters/mira-al-cul/lamp.svg",
  8289. extra: 1617 / 1559
  8290. }
  8291. },
  8292. front: {
  8293. height: math.unit(7, "feet"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/mira-al-cul/front.svg",
  8297. extra: 1044 / 990
  8298. }
  8299. },
  8300. },
  8301. [
  8302. {
  8303. name: "Heavily Restricted",
  8304. height: math.unit(7 * 1559 / 989, "feet")
  8305. },
  8306. {
  8307. name: "Freshly Freed",
  8308. height: math.unit(50 * 1559 / 989, "feet")
  8309. },
  8310. {
  8311. name: "World Encompassing",
  8312. height: math.unit(10000 * 1559 / 989, "miles")
  8313. },
  8314. {
  8315. name: "Galactic",
  8316. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8317. },
  8318. {
  8319. name: "Palmed Universe",
  8320. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8321. default: true
  8322. },
  8323. {
  8324. name: "Multiversal Matriarch",
  8325. height: math.unit(8.87e10, "yottameters")
  8326. },
  8327. {
  8328. name: "Void Mother",
  8329. height: math.unit(3.14e110, "yottaparsecs")
  8330. },
  8331. {
  8332. name: "Toying with Transcendence",
  8333. height: math.unit(1e307, "meters")
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8339. {
  8340. front: {
  8341. height: math.unit(17 + 1 / 12, "feet"),
  8342. weight: math.unit(476.2 * 5, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/kuro-shi-uchū/front.svg",
  8346. extra: 2329 / 1835,
  8347. bottom: 0.02
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Micro",
  8354. height: math.unit(2, "inches")
  8355. },
  8356. {
  8357. name: "Normal",
  8358. height: math.unit(12, "meters")
  8359. },
  8360. {
  8361. name: "Planetary",
  8362. height: math.unit(0.00929, "AU"),
  8363. default: true
  8364. },
  8365. {
  8366. name: "Universal",
  8367. height: math.unit(20, "gigaparsecs")
  8368. },
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8373. {
  8374. front: {
  8375. height: math.unit(5 + 2 / 12, "feet"),
  8376. weight: math.unit(120, "lbs"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/katherine/front.svg",
  8380. extra: 2075 / 1969
  8381. }
  8382. },
  8383. dress: {
  8384. height: math.unit(5 + 2 / 12, "feet"),
  8385. weight: math.unit(120, "lbs"),
  8386. name: "Dress",
  8387. image: {
  8388. source: "./media/characters/katherine/dress.svg",
  8389. extra: 2258 / 2064
  8390. }
  8391. },
  8392. },
  8393. [
  8394. {
  8395. name: "Micro",
  8396. height: math.unit(1, "inches"),
  8397. default: true
  8398. },
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(5 + 2 / 12, "feet")
  8402. },
  8403. {
  8404. name: "Macro",
  8405. height: math.unit(100, "meters")
  8406. },
  8407. {
  8408. name: "Megamacro",
  8409. height: math.unit(80, "miles")
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(7 + 8 / 12, "feet"),
  8418. weight: math.unit(250, "lbs"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/yevis/front.svg",
  8422. extra: 1938 / 1755
  8423. }
  8424. }
  8425. },
  8426. [
  8427. {
  8428. name: "Mortal",
  8429. height: math.unit(7 + 8 / 12, "feet")
  8430. },
  8431. {
  8432. name: "Battle",
  8433. height: math.unit(25 + 11 / 12, "feet")
  8434. },
  8435. {
  8436. name: "Wrath",
  8437. height: math.unit(1654 + 11 / 12, "feet")
  8438. },
  8439. {
  8440. name: "Planet Destroyer",
  8441. height: math.unit(12000, "miles")
  8442. },
  8443. {
  8444. name: "Galaxy Conqueror",
  8445. height: math.unit(1.45, "zettameters"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Universal War",
  8450. height: math.unit(184, "gigaparsecs")
  8451. },
  8452. {
  8453. name: "Eternity War",
  8454. height: math.unit(1.98e55, "yottaparsecs")
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8460. {
  8461. front: {
  8462. height: math.unit(5 + 8 / 12, "feet"),
  8463. weight: math.unit(63, "kg"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/xavier/front.svg",
  8467. extra: 944 / 883
  8468. }
  8469. },
  8470. frontStretch: {
  8471. height: math.unit(5 + 8 / 12, "feet"),
  8472. weight: math.unit(63, "kg"),
  8473. name: "Stretching",
  8474. image: {
  8475. source: "./media/characters/xavier/front-stretch.svg",
  8476. extra: 962 / 820
  8477. }
  8478. },
  8479. },
  8480. [
  8481. {
  8482. name: "Normal",
  8483. height: math.unit(5 + 8 / 12, "feet")
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(100, "meters"),
  8488. default: true
  8489. },
  8490. {
  8491. name: "McLargeHuge",
  8492. height: math.unit(10, "miles")
  8493. },
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8498. {
  8499. front: {
  8500. height: math.unit(5 + 5 / 12, "feet"),
  8501. weight: math.unit(150, "lb"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/joshii/front.svg",
  8505. extra: 765 / 653,
  8506. bottom: 51 / 816
  8507. }
  8508. },
  8509. foot: {
  8510. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8511. name: "Foot",
  8512. image: {
  8513. source: "./media/characters/joshii/foot.svg"
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Micro",
  8520. height: math.unit(2, "inches"),
  8521. default: true
  8522. },
  8523. {
  8524. name: "Normal",
  8525. height: math.unit(5 + 5 / 12, "feet")
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(785, "feet")
  8530. },
  8531. {
  8532. name: "Megamacro",
  8533. height: math.unit(24.5, "miles")
  8534. },
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8539. {
  8540. front: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(150, "lb"),
  8543. name: "Front",
  8544. image: {
  8545. source: "./media/characters/goddess-elizabeth/front.svg",
  8546. extra: 1800 / 1525,
  8547. bottom: 0.005
  8548. }
  8549. },
  8550. foot: {
  8551. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8552. name: "Foot",
  8553. image: {
  8554. source: "./media/characters/goddess-elizabeth/foot.svg"
  8555. }
  8556. },
  8557. mouth: {
  8558. height: math.unit(6, "feet"),
  8559. name: "Mouth",
  8560. image: {
  8561. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8562. }
  8563. },
  8564. },
  8565. [
  8566. {
  8567. name: "Micro",
  8568. height: math.unit(12, "feet")
  8569. },
  8570. {
  8571. name: "Normal",
  8572. height: math.unit(80, "miles"),
  8573. default: true
  8574. },
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(15000, "parsecs")
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(5 + 9 / 12, "feet"),
  8586. weight: math.unit(144, "lb"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/kara/front.svg"
  8590. }
  8591. },
  8592. feet: {
  8593. height: math.unit(6 / 6.765, "feet"),
  8594. name: "Kara's Feet",
  8595. rename: true,
  8596. image: {
  8597. source: "./media/characters/kara/feet.svg"
  8598. }
  8599. },
  8600. },
  8601. [
  8602. {
  8603. name: "Normal",
  8604. height: math.unit(5 + 9 / 12, "feet")
  8605. },
  8606. {
  8607. name: "Macro",
  8608. height: math.unit(174, "feet"),
  8609. default: true
  8610. },
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8615. {
  8616. front: {
  8617. height: math.unit(18, "feet"),
  8618. weight: math.unit(4050, "lb"),
  8619. name: "Front",
  8620. image: {
  8621. source: "./media/characters/tyrone/front.svg",
  8622. extra: 2405 / 2270,
  8623. bottom: 182 / 2587
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(18, "feet"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(300, "feet")
  8636. },
  8637. {
  8638. name: "Megamacro",
  8639. height: math.unit(15, "km")
  8640. },
  8641. {
  8642. name: "Gigamacro",
  8643. height: math.unit(500, "km")
  8644. },
  8645. {
  8646. name: "Teramacro",
  8647. height: math.unit(0.5, "gigameters")
  8648. },
  8649. {
  8650. name: "Omnimacro",
  8651. height: math.unit(1e252, "yottauniverse")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(7 + 8 / 12, "feet"),
  8660. weight: math.unit(120, "lb"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/danny/front.svg",
  8664. extra: 1490 / 1350
  8665. }
  8666. },
  8667. back: {
  8668. height: math.unit(7 + 8 / 12, "feet"),
  8669. weight: math.unit(120, "lb"),
  8670. name: "Back",
  8671. image: {
  8672. source: "./media/characters/danny/back.svg",
  8673. extra: 1490 / 1350
  8674. }
  8675. },
  8676. },
  8677. [
  8678. {
  8679. name: "Normal",
  8680. height: math.unit(7 + 8 / 12, "feet"),
  8681. default: true
  8682. },
  8683. ]
  8684. ))
  8685. characterMakers.push(() => makeCharacter(
  8686. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8687. {
  8688. front: {
  8689. height: math.unit(3.5, "inches"),
  8690. weight: math.unit(19, "grams"),
  8691. name: "Front",
  8692. image: {
  8693. source: "./media/characters/mallow/front.svg",
  8694. extra: 471 / 431
  8695. }
  8696. },
  8697. back: {
  8698. height: math.unit(3.5, "inches"),
  8699. weight: math.unit(19, "grams"),
  8700. name: "Back",
  8701. image: {
  8702. source: "./media/characters/mallow/back.svg",
  8703. extra: 471 / 431
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(3.5, "inches"),
  8711. default: true
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(9, "feet"),
  8720. weight: math.unit(230, "kg"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/starry-aqua/front.svg"
  8724. }
  8725. },
  8726. back: {
  8727. height: math.unit(9, "feet"),
  8728. weight: math.unit(230, "kg"),
  8729. name: "Back",
  8730. image: {
  8731. source: "./media/characters/starry-aqua/back.svg"
  8732. }
  8733. },
  8734. hand: {
  8735. height: math.unit(9 * 0.1168, "feet"),
  8736. name: "Hand",
  8737. image: {
  8738. source: "./media/characters/starry-aqua/hand.svg"
  8739. }
  8740. },
  8741. foot: {
  8742. height: math.unit(9 * 0.18, "feet"),
  8743. name: "Foot",
  8744. image: {
  8745. source: "./media/characters/starry-aqua/foot.svg"
  8746. }
  8747. }
  8748. },
  8749. [
  8750. {
  8751. name: "Micro",
  8752. height: math.unit(3, "inches")
  8753. },
  8754. {
  8755. name: "Normal",
  8756. height: math.unit(9, "feet")
  8757. },
  8758. {
  8759. name: "Macro",
  8760. height: math.unit(300, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Megamacro",
  8765. height: math.unit(3200, "feet")
  8766. }
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8771. {
  8772. front: {
  8773. height: math.unit(6, "feet"),
  8774. weight: math.unit(230, "lb"),
  8775. name: "Front",
  8776. image: {
  8777. source: "./media/characters/luka/front.svg",
  8778. extra: 1,
  8779. bottom: 0.025
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(12 + 8 / 12, "feet"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Minimacro",
  8791. height: math.unit(20, "feet")
  8792. },
  8793. {
  8794. name: "Macro",
  8795. height: math.unit(250, "feet")
  8796. },
  8797. {
  8798. name: "Megamacro",
  8799. height: math.unit(5, "miles")
  8800. },
  8801. {
  8802. name: "Gigamacro",
  8803. height: math.unit(8000, "miles")
  8804. },
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8809. {
  8810. front: {
  8811. height: math.unit(6, "feet"),
  8812. weight: math.unit(150, "lb"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/natalie-nightring/front.svg",
  8816. extra: 1,
  8817. bottom: 0.06
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Uh Oh",
  8824. height: math.unit(0.1, "mm")
  8825. },
  8826. {
  8827. name: "Small",
  8828. height: math.unit(3, "inches")
  8829. },
  8830. {
  8831. name: "Human Scale",
  8832. height: math.unit(6, "feet")
  8833. },
  8834. {
  8835. name: "Librarian",
  8836. height: math.unit(50, "feet"),
  8837. default: true
  8838. },
  8839. {
  8840. name: "Immense",
  8841. height: math.unit(200, "miles")
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8847. {
  8848. front: {
  8849. height: math.unit(6, "feet"),
  8850. weight: math.unit(180, "lbs"),
  8851. name: "Front",
  8852. image: {
  8853. source: "./media/characters/danni-rosie/front.svg",
  8854. extra: 1260 / 1128,
  8855. bottom: 0.022
  8856. }
  8857. },
  8858. },
  8859. [
  8860. {
  8861. name: "Micro",
  8862. height: math.unit(2, "inches"),
  8863. default: true
  8864. },
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8869. {
  8870. front: {
  8871. height: math.unit(5 + 9 / 12, "feet"),
  8872. weight: math.unit(220, "lb"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/samantha-kruse/front.svg",
  8876. extra: (985 / 935),
  8877. bottom: 0.03
  8878. }
  8879. },
  8880. frontUndressed: {
  8881. height: math.unit(5 + 9 / 12, "feet"),
  8882. weight: math.unit(220, "lb"),
  8883. name: "Front (Undressed)",
  8884. image: {
  8885. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8886. extra: (973 / 923),
  8887. bottom: 0.025
  8888. }
  8889. },
  8890. fat: {
  8891. height: math.unit(5 + 9 / 12, "feet"),
  8892. weight: math.unit(900, "lb"),
  8893. name: "Front (Fat)",
  8894. image: {
  8895. source: "./media/characters/samantha-kruse/fat.svg",
  8896. extra: 2688 / 2561
  8897. }
  8898. },
  8899. },
  8900. [
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(5 + 9 / 12, "feet"),
  8904. default: true
  8905. }
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8910. {
  8911. back: {
  8912. height: math.unit(5 + 4 / 12, "feet"),
  8913. weight: math.unit(4963, "lb"),
  8914. name: "Back",
  8915. image: {
  8916. source: "./media/characters/amelia-rosie/back.svg",
  8917. extra: 1113 / 963,
  8918. bottom: 0.01
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Level 0",
  8925. height: math.unit(5 + 4 / 12, "feet")
  8926. },
  8927. {
  8928. name: "Level 1",
  8929. height: math.unit(164597, "feet"),
  8930. default: true
  8931. },
  8932. {
  8933. name: "Level 2",
  8934. height: math.unit(956243, "miles")
  8935. },
  8936. {
  8937. name: "Level 3",
  8938. height: math.unit(29421709423, "miles")
  8939. },
  8940. {
  8941. name: "Level 4",
  8942. height: math.unit(154, "lightyears")
  8943. },
  8944. {
  8945. name: "Level 5",
  8946. height: math.unit(4738272, "lightyears")
  8947. },
  8948. {
  8949. name: "Level 6",
  8950. height: math.unit(145787152896, "lightyears")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(5 + 11 / 12, "feet"),
  8959. weight: math.unit(65, "kg"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/rook-kitara/front.svg",
  8963. extra: 1347 / 1274,
  8964. bottom: 0.005
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Totally Unfair",
  8971. height: math.unit(1.8, "mm")
  8972. },
  8973. {
  8974. name: "Lap Rookie",
  8975. height: math.unit(1.4, "feet")
  8976. },
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(5 + 11 / 12, "feet"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "How Did This Happen",
  8984. height: math.unit(80, "miles")
  8985. }
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(7, "feet"),
  8993. weight: math.unit(300, "lb"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/pisces/front.svg",
  8997. extra: 2255 / 2115,
  8998. bottom: 0.03
  8999. }
  9000. },
  9001. back: {
  9002. height: math.unit(7, "feet"),
  9003. weight: math.unit(300, "lb"),
  9004. name: "Back",
  9005. image: {
  9006. source: "./media/characters/pisces/back.svg",
  9007. extra: 2146 / 2055,
  9008. bottom: 0.04
  9009. }
  9010. },
  9011. },
  9012. [
  9013. {
  9014. name: "Normal",
  9015. height: math.unit(7, "feet"),
  9016. default: true
  9017. },
  9018. {
  9019. name: "Swimming Pool",
  9020. height: math.unit(12.2, "meters")
  9021. },
  9022. {
  9023. name: "Olympic Swimming Pool",
  9024. height: math.unit(56.3, "meters")
  9025. },
  9026. {
  9027. name: "Lake Superior",
  9028. height: math.unit(93900, "meters")
  9029. },
  9030. {
  9031. name: "Mediterranean Sea",
  9032. height: math.unit(644457, "meters")
  9033. },
  9034. {
  9035. name: "World's Oceans",
  9036. height: math.unit(4567491, "meters")
  9037. },
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9042. {
  9043. front: {
  9044. height: math.unit(2.3, "meters"),
  9045. weight: math.unit(120, "kg"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/zelas/front.svg"
  9049. }
  9050. },
  9051. side: {
  9052. height: math.unit(2.3, "meters"),
  9053. weight: math.unit(120, "kg"),
  9054. name: "Side",
  9055. image: {
  9056. source: "./media/characters/zelas/side.svg"
  9057. }
  9058. },
  9059. back: {
  9060. height: math.unit(2.3, "meters"),
  9061. weight: math.unit(120, "kg"),
  9062. name: "Back",
  9063. image: {
  9064. source: "./media/characters/zelas/back.svg"
  9065. }
  9066. },
  9067. foot: {
  9068. height: math.unit(1.116, "feet"),
  9069. name: "Foot",
  9070. image: {
  9071. source: "./media/characters/zelas/foot.svg"
  9072. }
  9073. },
  9074. },
  9075. [
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(2.3, "meters")
  9079. },
  9080. {
  9081. name: "Macro",
  9082. height: math.unit(30, "meters"),
  9083. default: true
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(1, "inch"),
  9092. weight: math.unit(0.21, "grams"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/talbot/front.svg",
  9096. extra: 594 / 544
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Micro",
  9103. height: math.unit(1, "inch"),
  9104. default: true
  9105. },
  9106. ]
  9107. ))
  9108. characterMakers.push(() => makeCharacter(
  9109. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9110. {
  9111. front: {
  9112. height: math.unit(3 + 3 / 12, "feet"),
  9113. weight: math.unit(51.8, "lb"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/fliss/front.svg",
  9117. extra: 840 / 640
  9118. }
  9119. },
  9120. },
  9121. [
  9122. {
  9123. name: "Teeny Tiny",
  9124. height: math.unit(1, "mm")
  9125. },
  9126. {
  9127. name: "Small",
  9128. height: math.unit(1, "inch"),
  9129. default: true
  9130. },
  9131. {
  9132. name: "Standard Sylveon",
  9133. height: math.unit(3 + 3 / 12, "feet")
  9134. },
  9135. {
  9136. name: "Large Nuisance",
  9137. height: math.unit(33, "feet")
  9138. },
  9139. {
  9140. name: "City Filler",
  9141. height: math.unit(3000, "feet")
  9142. },
  9143. {
  9144. name: "New Horizon",
  9145. height: math.unit(6000, "miles")
  9146. },
  9147. ]
  9148. ))
  9149. characterMakers.push(() => makeCharacter(
  9150. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9151. {
  9152. front: {
  9153. height: math.unit(5, "cm"),
  9154. weight: math.unit(1.94, "g"),
  9155. name: "Front",
  9156. image: {
  9157. source: "./media/characters/fleta/front.svg",
  9158. extra: 835 / 803
  9159. }
  9160. },
  9161. back: {
  9162. height: math.unit(5, "cm"),
  9163. weight: math.unit(1.94, "g"),
  9164. name: "Back",
  9165. image: {
  9166. source: "./media/characters/fleta/back.svg",
  9167. extra: 835 / 803
  9168. }
  9169. },
  9170. },
  9171. [
  9172. {
  9173. name: "Micro",
  9174. height: math.unit(5, "cm"),
  9175. default: true
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(6, "feet"),
  9184. weight: math.unit(225, "lb"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/dominic/front.svg",
  9188. extra: 1770 / 1620,
  9189. bottom: 0.025
  9190. }
  9191. },
  9192. back: {
  9193. height: math.unit(6, "feet"),
  9194. weight: math.unit(225, "lb"),
  9195. name: "Back",
  9196. image: {
  9197. source: "./media/characters/dominic/back.svg",
  9198. extra: 1745 / 1620,
  9199. bottom: 0.065
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Nano",
  9206. height: math.unit(0.1, "mm")
  9207. },
  9208. {
  9209. name: "Micro-",
  9210. height: math.unit(1, "mm")
  9211. },
  9212. {
  9213. name: "Micro",
  9214. height: math.unit(4, "inches")
  9215. },
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(6 + 4 / 12, "feet"),
  9219. default: true
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(115, "feet")
  9224. },
  9225. {
  9226. name: "Macro+",
  9227. height: math.unit(955, "feet")
  9228. },
  9229. {
  9230. name: "Megamacro",
  9231. height: math.unit(8990, "feet")
  9232. },
  9233. {
  9234. name: "Gigmacro",
  9235. height: math.unit(9310, "miles")
  9236. },
  9237. {
  9238. name: "Teramacro",
  9239. height: math.unit(1567005010, "miles")
  9240. },
  9241. {
  9242. name: "Examacro",
  9243. height: math.unit(1425, "parsecs")
  9244. },
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9249. {
  9250. front: {
  9251. height: math.unit(400, "feet"),
  9252. weight: math.unit(44444444, "lb"),
  9253. name: "Front",
  9254. image: {
  9255. source: "./media/characters/major-colonel/front.svg"
  9256. }
  9257. },
  9258. back: {
  9259. height: math.unit(400, "feet"),
  9260. weight: math.unit(44444444, "lb"),
  9261. name: "Back",
  9262. image: {
  9263. source: "./media/characters/major-colonel/back.svg"
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(400, "feet"),
  9271. default: true
  9272. },
  9273. ]
  9274. ))
  9275. characterMakers.push(() => makeCharacter(
  9276. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9277. {
  9278. catFront: {
  9279. height: math.unit(6, "feet"),
  9280. weight: math.unit(120, "lb"),
  9281. name: "Front (Cat Side)",
  9282. image: {
  9283. source: "./media/characters/axel-lycan/cat-front.svg",
  9284. extra: 430 / 402,
  9285. bottom: 43 / 472.35
  9286. }
  9287. },
  9288. catBack: {
  9289. height: math.unit(6, "feet"),
  9290. weight: math.unit(120, "lb"),
  9291. name: "Back (Cat Side)",
  9292. image: {
  9293. source: "./media/characters/axel-lycan/cat-back.svg",
  9294. extra: 447 / 419,
  9295. bottom: 23.3 / 469
  9296. }
  9297. },
  9298. wolfFront: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(120, "lb"),
  9301. name: "Front (Wolf Side)",
  9302. image: {
  9303. source: "./media/characters/axel-lycan/wolf-front.svg",
  9304. extra: 485 / 456,
  9305. bottom: 19 / 504
  9306. }
  9307. },
  9308. wolfBack: {
  9309. height: math.unit(6, "feet"),
  9310. weight: math.unit(120, "lb"),
  9311. name: "Back (Wolf Side)",
  9312. image: {
  9313. source: "./media/characters/axel-lycan/wolf-back.svg",
  9314. extra: 475 / 438,
  9315. bottom: 39.2 / 514
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Macro",
  9322. height: math.unit(1, "km"),
  9323. default: true
  9324. },
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9329. {
  9330. front: {
  9331. height: math.unit(5 + 9 / 12, "feet"),
  9332. weight: math.unit(175, "lb"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/vanrel-hyena/front.svg",
  9336. extra: 1086 / 1010,
  9337. bottom: 0.04
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Normal",
  9344. height: math.unit(5 + 9 / 12, "feet"),
  9345. default: true
  9346. },
  9347. ]
  9348. ))
  9349. characterMakers.push(() => makeCharacter(
  9350. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9351. {
  9352. front: {
  9353. height: math.unit(6, "feet"),
  9354. weight: math.unit(103, "lb"),
  9355. name: "Front",
  9356. image: {
  9357. source: "./media/characters/abbott-absol/front.svg",
  9358. extra: 2010 / 1842
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Megamicro",
  9365. height: math.unit(0.1, "mm")
  9366. },
  9367. {
  9368. name: "Micro",
  9369. height: math.unit(1, "inch")
  9370. },
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(6, "feet"),
  9374. default: true
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(6, "feet"),
  9383. weight: math.unit(264, "lb"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/hector/front.svg",
  9387. extra: 2280 / 2130,
  9388. bottom: 0.07
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(12.25, "foot"),
  9396. default: true
  9397. },
  9398. {
  9399. name: "Macro",
  9400. height: math.unit(160, "feet")
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9406. {
  9407. front: {
  9408. height: math.unit(6, "feet"),
  9409. weight: math.unit(150, "lb"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/sal/front.svg",
  9413. extra: 1846 / 1699,
  9414. bottom: 0.04
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Megamacro",
  9421. height: math.unit(10, "miles"),
  9422. default: true
  9423. },
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9428. {
  9429. front: {
  9430. height: math.unit(3, "meters"),
  9431. weight: math.unit(450, "kg"),
  9432. name: "front",
  9433. image: {
  9434. source: "./media/characters/ranger/front.svg",
  9435. extra: 2401 / 2243,
  9436. bottom: 0.05
  9437. }
  9438. },
  9439. },
  9440. [
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(3, "meters"),
  9444. default: true
  9445. },
  9446. ]
  9447. ))
  9448. characterMakers.push(() => makeCharacter(
  9449. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9450. {
  9451. front: {
  9452. height: math.unit(14, "feet"),
  9453. weight: math.unit(800, "kg"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/theresa/front.svg",
  9457. extra: 3575 / 3346,
  9458. bottom: 0.03
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(14, "feet"),
  9466. default: true
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9472. {
  9473. front: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(3, "kg"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/ine/front.svg",
  9479. extra: 678 / 539,
  9480. bottom: 0.023
  9481. }
  9482. },
  9483. },
  9484. [
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(2.265, "feet"),
  9488. default: true
  9489. },
  9490. ]
  9491. ))
  9492. characterMakers.push(() => makeCharacter(
  9493. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9494. {
  9495. front: {
  9496. height: math.unit(5, "feet"),
  9497. weight: math.unit(30, "kg"),
  9498. name: "Front",
  9499. image: {
  9500. source: "./media/characters/vial/front.svg",
  9501. extra: 1365 / 1277,
  9502. bottom: 0.04
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(5, "feet"),
  9510. default: true
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9516. {
  9517. side: {
  9518. height: math.unit(3.4, "meters"),
  9519. weight: math.unit(1000, "lb"),
  9520. name: "Side",
  9521. image: {
  9522. source: "./media/characters/rovoska/side.svg",
  9523. extra: 4403 / 1515
  9524. }
  9525. },
  9526. },
  9527. [
  9528. {
  9529. name: "Normal",
  9530. height: math.unit(3.4, "meters"),
  9531. default: true
  9532. },
  9533. ]
  9534. ))
  9535. characterMakers.push(() => makeCharacter(
  9536. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9537. {
  9538. front: {
  9539. height: math.unit(8, "feet"),
  9540. weight: math.unit(315, "lb"),
  9541. name: "Front",
  9542. image: {
  9543. source: "./media/characters/gunner-rotthbauer/front.svg"
  9544. }
  9545. },
  9546. back: {
  9547. height: math.unit(8, "feet"),
  9548. weight: math.unit(315, "lb"),
  9549. name: "Back",
  9550. image: {
  9551. source: "./media/characters/gunner-rotthbauer/back.svg"
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Micro",
  9558. height: math.unit(3.5, "inches")
  9559. },
  9560. {
  9561. name: "Normal",
  9562. height: math.unit(8, "feet"),
  9563. default: true
  9564. },
  9565. {
  9566. name: "Macro",
  9567. height: math.unit(250, "feet")
  9568. },
  9569. {
  9570. name: "Megamacro",
  9571. height: math.unit(1, "AU")
  9572. },
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(5 + 5 / 12, "feet"),
  9580. weight: math.unit(140, "lb"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/allatia/front.svg",
  9584. extra: 1227 / 1180,
  9585. bottom: 0.027
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(5 + 5 / 12, "feet")
  9593. },
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(250, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Megamacro",
  9601. height: math.unit(8, "miles")
  9602. }
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(6, "feet"),
  9610. weight: math.unit(120, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/tene/front.svg",
  9614. extra: 1728 / 1578,
  9615. bottom: 0.022
  9616. }
  9617. },
  9618. stomping: {
  9619. height: math.unit(2.025, "meters"),
  9620. weight: math.unit(120, "lb"),
  9621. name: "Stomping",
  9622. image: {
  9623. source: "./media/characters/tene/stomping.svg",
  9624. extra: 938 / 873,
  9625. bottom: 0.01
  9626. }
  9627. },
  9628. sitting: {
  9629. height: math.unit(1, "meter"),
  9630. weight: math.unit(120, "lb"),
  9631. name: "Sitting",
  9632. image: {
  9633. source: "./media/characters/tene/sitting.svg",
  9634. extra: 437 / 415,
  9635. bottom: 0.1
  9636. }
  9637. },
  9638. feral: {
  9639. height: math.unit(3.9, "feet"),
  9640. weight: math.unit(250, "lb"),
  9641. name: "Feral",
  9642. image: {
  9643. source: "./media/characters/tene/feral.svg",
  9644. extra: 717 / 458,
  9645. bottom: 0.179
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Normal",
  9652. height: math.unit(6, "feet")
  9653. },
  9654. {
  9655. name: "Macro",
  9656. height: math.unit(300, "feet"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Megamacro",
  9661. height: math.unit(5, "miles")
  9662. },
  9663. ]
  9664. ))
  9665. characterMakers.push(() => makeCharacter(
  9666. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9667. {
  9668. side: {
  9669. height: math.unit(6, "feet"),
  9670. name: "Side",
  9671. image: {
  9672. source: "./media/characters/evander/side.svg",
  9673. extra: 877 / 477
  9674. }
  9675. },
  9676. },
  9677. [
  9678. {
  9679. name: "Normal",
  9680. height: math.unit(0.83, "meters"),
  9681. default: true
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(12, "feet"),
  9690. weight: math.unit(1000, "lb"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9694. extra: 1762 / 1611
  9695. }
  9696. },
  9697. back: {
  9698. height: math.unit(12, "feet"),
  9699. weight: math.unit(1000, "lb"),
  9700. name: "Back",
  9701. image: {
  9702. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9703. extra: 1762 / 1611
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(12, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Kaiju",
  9715. height: math.unit(150, "feet")
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9721. {
  9722. front: {
  9723. height: math.unit(6, "feet"),
  9724. weight: math.unit(150, "lb"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/zero-alurus/front.svg"
  9728. }
  9729. },
  9730. back: {
  9731. height: math.unit(6, "feet"),
  9732. weight: math.unit(150, "lb"),
  9733. name: "Back",
  9734. image: {
  9735. source: "./media/characters/zero-alurus/back.svg"
  9736. }
  9737. },
  9738. },
  9739. [
  9740. {
  9741. name: "Normal",
  9742. height: math.unit(5 + 10 / 12, "feet")
  9743. },
  9744. {
  9745. name: "Macro",
  9746. height: math.unit(60, "feet"),
  9747. default: true
  9748. },
  9749. {
  9750. name: "Macro+",
  9751. height: math.unit(450, "feet")
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9757. {
  9758. front: {
  9759. height: math.unit(6, "feet"),
  9760. weight: math.unit(200, "lb"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/mega-shi/front.svg",
  9764. extra: 1279 / 1250,
  9765. bottom: 0.02
  9766. }
  9767. },
  9768. back: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(200, "lb"),
  9771. name: "Back",
  9772. image: {
  9773. source: "./media/characters/mega-shi/back.svg",
  9774. extra: 1279 / 1250,
  9775. bottom: 0.02
  9776. }
  9777. },
  9778. },
  9779. [
  9780. {
  9781. name: "Micro",
  9782. height: math.unit(16 + 6 / 12, "feet")
  9783. },
  9784. {
  9785. name: "Third Dimension",
  9786. height: math.unit(40, "meters")
  9787. },
  9788. {
  9789. name: "Normal",
  9790. height: math.unit(660, "feet"),
  9791. default: true
  9792. },
  9793. {
  9794. name: "Megamacro",
  9795. height: math.unit(10, "miles")
  9796. },
  9797. {
  9798. name: "Planetary Launch",
  9799. height: math.unit(500, "miles")
  9800. },
  9801. {
  9802. name: "Interstellar",
  9803. height: math.unit(1e9, "miles")
  9804. },
  9805. {
  9806. name: "Leaving the Universe",
  9807. height: math.unit(1, "gigaparsec")
  9808. },
  9809. {
  9810. name: "Travelling Universes",
  9811. height: math.unit(30e15, "parsecs")
  9812. },
  9813. ]
  9814. ))
  9815. characterMakers.push(() => makeCharacter(
  9816. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9817. {
  9818. front: {
  9819. height: math.unit(6, "feet"),
  9820. weight: math.unit(150, "lb"),
  9821. name: "Front",
  9822. image: {
  9823. source: "./media/characters/odyssey/front.svg",
  9824. extra: 1782 / 1582,
  9825. bottom: 0.01
  9826. }
  9827. },
  9828. side: {
  9829. height: math.unit(5.7, "feet"),
  9830. weight: math.unit(140, "lb"),
  9831. name: "Side",
  9832. image: {
  9833. source: "./media/characters/odyssey/side.svg",
  9834. extra: 6462 / 5700
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Normal",
  9841. height: math.unit(5 + 4 / 12, "feet")
  9842. },
  9843. {
  9844. name: "Macro",
  9845. height: math.unit(1, "km")
  9846. },
  9847. {
  9848. name: "Megamacro",
  9849. height: math.unit(3000, "km")
  9850. },
  9851. {
  9852. name: "Gigamacro",
  9853. height: math.unit(1, "AU"),
  9854. default: true
  9855. },
  9856. {
  9857. name: "Omniversal",
  9858. height: math.unit(100e14, "lightyears")
  9859. },
  9860. ]
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9864. {
  9865. front: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(300, "lb"),
  9868. name: "Front",
  9869. image: {
  9870. source: "./media/characters/mekuto/front.svg",
  9871. extra: 921 / 832,
  9872. bottom: 0.03
  9873. }
  9874. },
  9875. hand: {
  9876. height: math.unit(6 / 10.24, "feet"),
  9877. name: "Hand",
  9878. image: {
  9879. source: "./media/characters/mekuto/hand.svg"
  9880. }
  9881. },
  9882. foot: {
  9883. height: math.unit(6 / 5.05, "feet"),
  9884. name: "Foot",
  9885. image: {
  9886. source: "./media/characters/mekuto/foot.svg"
  9887. }
  9888. },
  9889. },
  9890. [
  9891. {
  9892. name: "Minimicro",
  9893. height: math.unit(0.2, "inches")
  9894. },
  9895. {
  9896. name: "Micro",
  9897. height: math.unit(1.5, "inches")
  9898. },
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(5 + 11 / 12, "feet"),
  9902. default: true
  9903. },
  9904. {
  9905. name: "Minimacro",
  9906. height: math.unit(17 + 9 / 12, "feet")
  9907. },
  9908. {
  9909. name: "Macro",
  9910. height: math.unit(177.5, "feet")
  9911. },
  9912. {
  9913. name: "Megamacro",
  9914. height: math.unit(152, "miles")
  9915. },
  9916. ]
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9920. {
  9921. front: {
  9922. height: math.unit(6.5, "inches"),
  9923. weight: math.unit(13, "oz"),
  9924. name: "Front",
  9925. image: {
  9926. source: "./media/characters/dafydd-tomos/front.svg",
  9927. extra: 2990 / 2603,
  9928. bottom: 0.03
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Micro",
  9935. height: math.unit(6.5, "inches"),
  9936. default: true
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(6, "feet"),
  9945. weight: math.unit(150, "lb"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/splinter/front.svg",
  9949. extra: 2990 / 2882,
  9950. bottom: 0.04
  9951. }
  9952. },
  9953. back: {
  9954. height: math.unit(6, "feet"),
  9955. weight: math.unit(150, "lb"),
  9956. name: "Back",
  9957. image: {
  9958. source: "./media/characters/splinter/back.svg",
  9959. extra: 2990 / 2882,
  9960. bottom: 0.04
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Normal",
  9967. height: math.unit(6, "feet")
  9968. },
  9969. {
  9970. name: "Macro",
  9971. height: math.unit(230, "meters"),
  9972. default: true
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(4 + 10 / 12, "feet"),
  9981. weight: math.unit(480, "lb"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/snow-gabumon/front.svg",
  9985. extra: 1140 / 963,
  9986. bottom: 0.058
  9987. }
  9988. },
  9989. back: {
  9990. height: math.unit(4 + 10 / 12, "feet"),
  9991. weight: math.unit(480, "lb"),
  9992. name: "Back",
  9993. image: {
  9994. source: "./media/characters/snow-gabumon/back.svg",
  9995. extra: 1115 / 962,
  9996. bottom: 0.041
  9997. }
  9998. },
  9999. frontUndresed: {
  10000. height: math.unit(4 + 10 / 12, "feet"),
  10001. weight: math.unit(480, "lb"),
  10002. name: "Front (Undressed)",
  10003. image: {
  10004. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10005. extra: 1061 / 960,
  10006. bottom: 0.045
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Micro",
  10013. height: math.unit(1, "inch")
  10014. },
  10015. {
  10016. name: "Normal",
  10017. height: math.unit(4 + 10 / 12, "feet"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Macro",
  10022. height: math.unit(200, "feet")
  10023. },
  10024. {
  10025. name: "Megamacro",
  10026. height: math.unit(120, "miles")
  10027. },
  10028. {
  10029. name: "Gigamacro",
  10030. height: math.unit(9800, "miles")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10036. {
  10037. front: {
  10038. height: math.unit(1.7, "meters"),
  10039. weight: math.unit(140, "lb"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/moody/front.svg",
  10043. extra: 3226 / 3007,
  10044. bottom: 0.087
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Micro",
  10051. height: math.unit(1, "mm")
  10052. },
  10053. {
  10054. name: "Normal",
  10055. height: math.unit(1.7, "meters"),
  10056. default: true
  10057. },
  10058. {
  10059. name: "Macro",
  10060. height: math.unit(80, "meters")
  10061. },
  10062. {
  10063. name: "Macro+",
  10064. height: math.unit(500, "meters")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10070. {
  10071. front: {
  10072. height: math.unit(6, "feet"),
  10073. weight: math.unit(150, "lb"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/zyas/front.svg",
  10077. extra: 1180 / 1120,
  10078. bottom: 0.045
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(10, "feet"),
  10086. default: true
  10087. },
  10088. {
  10089. name: "Macro",
  10090. height: math.unit(500, "feet")
  10091. },
  10092. {
  10093. name: "Megamacro",
  10094. height: math.unit(5, "miles")
  10095. },
  10096. {
  10097. name: "Teramacro",
  10098. height: math.unit(150000, "miles")
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(150, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/cuon/front.svg",
  10111. extra: 1390 / 1320,
  10112. bottom: 0.008
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Micro",
  10119. height: math.unit(3, "inches")
  10120. },
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(18 + 9 / 12, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(360, "feet")
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(360, "miles")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(2.4, "meters"),
  10141. weight: math.unit(70, "kg"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/nyanuxk/front.svg",
  10145. extra: 1172 / 1084,
  10146. bottom: 0.065
  10147. }
  10148. },
  10149. side: {
  10150. height: math.unit(2.4, "meters"),
  10151. weight: math.unit(70, "kg"),
  10152. name: "Side",
  10153. image: {
  10154. source: "./media/characters/nyanuxk/side.svg",
  10155. extra: 1190 / 1132,
  10156. bottom: 0.007
  10157. }
  10158. },
  10159. back: {
  10160. height: math.unit(2.4, "meters"),
  10161. weight: math.unit(70, "kg"),
  10162. name: "Back",
  10163. image: {
  10164. source: "./media/characters/nyanuxk/back.svg",
  10165. extra: 1200 / 1141,
  10166. bottom: 0.015
  10167. }
  10168. },
  10169. foot: {
  10170. height: math.unit(0.52, "meters"),
  10171. name: "Foot",
  10172. image: {
  10173. source: "./media/characters/nyanuxk/foot.svg"
  10174. }
  10175. },
  10176. },
  10177. [
  10178. {
  10179. name: "Micro",
  10180. height: math.unit(2, "cm")
  10181. },
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(2.4, "meters"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Smaller Macro",
  10189. height: math.unit(120, "meters")
  10190. },
  10191. {
  10192. name: "Bigger Macro",
  10193. height: math.unit(1.2, "km")
  10194. },
  10195. {
  10196. name: "Megamacro",
  10197. height: math.unit(15, "kilometers")
  10198. },
  10199. {
  10200. name: "Gigamacro",
  10201. height: math.unit(2000, "km")
  10202. },
  10203. {
  10204. name: "Teramacro",
  10205. height: math.unit(500000, "km")
  10206. },
  10207. ]
  10208. ))
  10209. characterMakers.push(() => makeCharacter(
  10210. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10211. {
  10212. side: {
  10213. height: math.unit(6, "feet"),
  10214. name: "Side",
  10215. image: {
  10216. source: "./media/characters/ailbhe/side.svg",
  10217. extra: 757 / 464,
  10218. bottom: 0.041
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(1.07, "meters"),
  10226. default: true
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(6, "feet"),
  10235. weight: math.unit(120, "kg"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/zevulfius/front.svg",
  10239. extra: 965 / 903
  10240. }
  10241. },
  10242. side: {
  10243. height: math.unit(6, "feet"),
  10244. weight: math.unit(120, "kg"),
  10245. name: "Side",
  10246. image: {
  10247. source: "./media/characters/zevulfius/side.svg",
  10248. extra: 939 / 900
  10249. }
  10250. },
  10251. back: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(120, "kg"),
  10254. name: "Back",
  10255. image: {
  10256. source: "./media/characters/zevulfius/back.svg",
  10257. extra: 918 / 854,
  10258. bottom: 0.005
  10259. }
  10260. },
  10261. foot: {
  10262. height: math.unit(6 / 3.72, "feet"),
  10263. name: "Foot",
  10264. image: {
  10265. source: "./media/characters/zevulfius/foot.svg"
  10266. }
  10267. },
  10268. },
  10269. [
  10270. {
  10271. name: "Macro",
  10272. height: math.unit(750, "meters")
  10273. },
  10274. {
  10275. name: "Megamacro",
  10276. height: math.unit(20, "km"),
  10277. default: true
  10278. },
  10279. {
  10280. name: "Gigamacro",
  10281. height: math.unit(2000, "km")
  10282. },
  10283. {
  10284. name: "Teramacro",
  10285. height: math.unit(250000, "km")
  10286. },
  10287. ]
  10288. ))
  10289. characterMakers.push(() => makeCharacter(
  10290. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10291. {
  10292. front: {
  10293. height: math.unit(100, "feet"),
  10294. weight: math.unit(350, "kg"),
  10295. name: "Front",
  10296. image: {
  10297. source: "./media/characters/rikes/front.svg",
  10298. extra: 1565 / 1483,
  10299. bottom: 0.017
  10300. }
  10301. },
  10302. },
  10303. [
  10304. {
  10305. name: "Macro",
  10306. height: math.unit(100, "feet"),
  10307. default: true
  10308. },
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10313. {
  10314. anthro: {
  10315. height: math.unit(8, "feet"),
  10316. weight: math.unit(120, "kg"),
  10317. name: "Anthro",
  10318. image: {
  10319. source: "./media/characters/adam-silver-mane/anthro.svg",
  10320. extra: 5743 / 5339,
  10321. bottom: 0.07
  10322. }
  10323. },
  10324. taur: {
  10325. height: math.unit(16, "feet"),
  10326. weight: math.unit(1500, "kg"),
  10327. name: "Taur",
  10328. image: {
  10329. source: "./media/characters/adam-silver-mane/taur.svg",
  10330. extra: 1713 / 1571,
  10331. bottom: 0.01
  10332. }
  10333. },
  10334. },
  10335. [
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(8, "feet")
  10339. },
  10340. {
  10341. name: "Minimacro",
  10342. height: math.unit(80, "feet")
  10343. },
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(800, "feet"),
  10347. default: true
  10348. },
  10349. {
  10350. name: "Megamacro",
  10351. height: math.unit(8000, "feet")
  10352. },
  10353. {
  10354. name: "Gigamacro",
  10355. height: math.unit(800, "miles")
  10356. },
  10357. {
  10358. name: "Teramacro",
  10359. height: math.unit(80000, "miles")
  10360. },
  10361. {
  10362. name: "Celestial",
  10363. height: math.unit(8e6, "miles")
  10364. },
  10365. {
  10366. name: "Star Dragon",
  10367. height: math.unit(800000, "parsecs")
  10368. },
  10369. {
  10370. name: "Godly",
  10371. height: math.unit(800, "teraparsecs")
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10377. {
  10378. front: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(150, "lb"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/ky'owin/front.svg",
  10384. extra: 3888 / 3068,
  10385. bottom: 0.015
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Normal",
  10392. height: math.unit(6 + 8 / 12, "feet")
  10393. },
  10394. {
  10395. name: "Large",
  10396. height: math.unit(68, "feet")
  10397. },
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(132, "feet")
  10401. },
  10402. {
  10403. name: "Macro+",
  10404. height: math.unit(340, "feet")
  10405. },
  10406. {
  10407. name: "Macro++",
  10408. height: math.unit(680, "feet"),
  10409. default: true
  10410. },
  10411. {
  10412. name: "Megamacro",
  10413. height: math.unit(1, "mile")
  10414. },
  10415. {
  10416. name: "Megamacro+",
  10417. height: math.unit(10, "miles")
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10423. {
  10424. front: {
  10425. height: math.unit(4, "feet"),
  10426. weight: math.unit(50, "lb"),
  10427. name: "Front",
  10428. image: {
  10429. source: "./media/characters/mal/front.svg",
  10430. extra: 785 / 724,
  10431. bottom: 0.07
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Micro",
  10438. height: math.unit(4, "inches")
  10439. },
  10440. {
  10441. name: "Normal",
  10442. height: math.unit(4, "feet"),
  10443. default: true
  10444. },
  10445. {
  10446. name: "Macro",
  10447. height: math.unit(200, "feet")
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(6, "feet"),
  10456. weight: math.unit(150, "lb"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/jordan-deware/front.svg",
  10460. extra: 1191 / 1012
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Nano",
  10467. height: math.unit(0.01, "mm")
  10468. },
  10469. {
  10470. name: "Minimicro",
  10471. height: math.unit(1, "mm")
  10472. },
  10473. {
  10474. name: "Micro",
  10475. height: math.unit(0.5, "inches")
  10476. },
  10477. {
  10478. name: "Normal",
  10479. height: math.unit(4, "feet"),
  10480. default: true
  10481. },
  10482. {
  10483. name: "Minimacro",
  10484. height: math.unit(40, "meters")
  10485. },
  10486. {
  10487. name: "Small Macro",
  10488. height: math.unit(400, "meters")
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(4, "miles")
  10493. },
  10494. {
  10495. name: "Megamacro",
  10496. height: math.unit(40, "miles")
  10497. },
  10498. {
  10499. name: "Megamacro+",
  10500. height: math.unit(400, "miles")
  10501. },
  10502. {
  10503. name: "Gigamacro",
  10504. height: math.unit(400000, "miles")
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10510. {
  10511. side: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(150, "lb"),
  10514. name: "Side",
  10515. image: {
  10516. source: "./media/characters/kimiko/side.svg",
  10517. extra: 600 / 358
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(15, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(220, "feet")
  10530. },
  10531. {
  10532. name: "Macro+",
  10533. height: math.unit(1450, "feet")
  10534. },
  10535. {
  10536. name: "Megamacro",
  10537. height: math.unit(11500, "feet")
  10538. },
  10539. {
  10540. name: "Gigamacro",
  10541. height: math.unit(9500, "miles")
  10542. },
  10543. {
  10544. name: "Teramacro",
  10545. height: math.unit(2208005005, "miles")
  10546. },
  10547. {
  10548. name: "Examacro",
  10549. height: math.unit(2750, "parsecs")
  10550. },
  10551. {
  10552. name: "Zettamacro",
  10553. height: math.unit(101500, "parsecs")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(70, "kg"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/andrew-sleepy/front.svg"
  10566. }
  10567. },
  10568. side: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(70, "kg"),
  10571. name: "Side",
  10572. image: {
  10573. source: "./media/characters/andrew-sleepy/side.svg"
  10574. }
  10575. },
  10576. },
  10577. [
  10578. {
  10579. name: "Micro",
  10580. height: math.unit(1, "mm"),
  10581. default: true
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10587. {
  10588. front: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(150, "lb"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/judio/front.svg",
  10594. extra: 1258 / 1110
  10595. }
  10596. },
  10597. },
  10598. [
  10599. {
  10600. name: "Normal",
  10601. height: math.unit(5 + 6 / 12, "feet")
  10602. },
  10603. {
  10604. name: "Macro",
  10605. height: math.unit(1000, "feet"),
  10606. default: true
  10607. },
  10608. {
  10609. name: "Megamacro",
  10610. height: math.unit(10, "miles")
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(68, "kg"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/nomaxice/front.svg",
  10623. extra: 1498 / 1073,
  10624. bottom: 0.075
  10625. }
  10626. },
  10627. foot: {
  10628. height: math.unit(1.1, "feet"),
  10629. name: "Foot",
  10630. image: {
  10631. source: "./media/characters/nomaxice/foot.svg"
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Micro",
  10638. height: math.unit(8, "cm")
  10639. },
  10640. {
  10641. name: "Norm",
  10642. height: math.unit(1.82, "m")
  10643. },
  10644. {
  10645. name: "Norm+",
  10646. height: math.unit(8.8, "feet")
  10647. },
  10648. {
  10649. name: "Big",
  10650. height: math.unit(8, "meters"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Macro",
  10655. height: math.unit(18, "meters")
  10656. },
  10657. {
  10658. name: "Macro+",
  10659. height: math.unit(88, "meters")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10665. {
  10666. front: {
  10667. height: math.unit(12, "feet"),
  10668. weight: math.unit(1.5, "tons"),
  10669. name: "Front",
  10670. image: {
  10671. source: "./media/characters/dydros/front.svg",
  10672. extra: 863 / 800,
  10673. bottom: 0.015
  10674. }
  10675. },
  10676. back: {
  10677. height: math.unit(12, "feet"),
  10678. weight: math.unit(1.5, "tons"),
  10679. name: "Back",
  10680. image: {
  10681. source: "./media/characters/dydros/back.svg",
  10682. extra: 900 / 843,
  10683. bottom: 0.005
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Normal",
  10690. height: math.unit(12, "feet"),
  10691. default: true
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(100, "kg"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/riggi/front.svg",
  10704. extra: 5787 / 5303
  10705. }
  10706. },
  10707. hyper: {
  10708. height: math.unit(6 * 5 / 3, "feet"),
  10709. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10710. name: "Hyper",
  10711. image: {
  10712. source: "./media/characters/riggi/hyper.svg",
  10713. extra: 3595 / 3485
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Small Macro",
  10720. height: math.unit(50, "feet")
  10721. },
  10722. {
  10723. name: "Default",
  10724. height: math.unit(200, "feet"),
  10725. default: true
  10726. },
  10727. {
  10728. name: "Loom",
  10729. height: math.unit(10000, "feet")
  10730. },
  10731. {
  10732. name: "Cruising Altitude",
  10733. height: math.unit(30000, "feet")
  10734. },
  10735. {
  10736. name: "Megamacro",
  10737. height: math.unit(100, "miles")
  10738. },
  10739. {
  10740. name: "Continent Sized",
  10741. height: math.unit(2800, "miles")
  10742. },
  10743. {
  10744. name: "Earth Sized",
  10745. height: math.unit(8000, "miles")
  10746. },
  10747. ]
  10748. ))
  10749. characterMakers.push(() => makeCharacter(
  10750. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10751. {
  10752. front: {
  10753. height: math.unit(6, "feet"),
  10754. weight: math.unit(250, "lb"),
  10755. name: "Front",
  10756. image: {
  10757. source: "./media/characters/alexi/front.svg",
  10758. extra: 3483 / 3291,
  10759. bottom: 0.04
  10760. }
  10761. },
  10762. back: {
  10763. height: math.unit(6, "feet"),
  10764. weight: math.unit(250, "lb"),
  10765. name: "Back",
  10766. image: {
  10767. source: "./media/characters/alexi/back.svg",
  10768. extra: 3533 / 3356,
  10769. bottom: 0.021
  10770. }
  10771. },
  10772. frontTransforming: {
  10773. height: math.unit(8.58, "feet"),
  10774. weight: math.unit(1300, "lb"),
  10775. name: "Transforming",
  10776. image: {
  10777. source: "./media/characters/alexi/front-transforming.svg",
  10778. extra: 437 / 409,
  10779. bottom: 19 / 458.66
  10780. }
  10781. },
  10782. frontTransformed: {
  10783. height: math.unit(12.5, "feet"),
  10784. weight: math.unit(4000, "lb"),
  10785. name: "Transformed",
  10786. image: {
  10787. source: "./media/characters/alexi/front-transformed.svg",
  10788. extra: 639 / 614,
  10789. bottom: 30.55 / 671
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(14, "feet"),
  10797. default: true
  10798. },
  10799. {
  10800. name: "Minimacro",
  10801. height: math.unit(30, "meters")
  10802. },
  10803. {
  10804. name: "Macro",
  10805. height: math.unit(500, "meters")
  10806. },
  10807. {
  10808. name: "Megamacro",
  10809. height: math.unit(9000, "km")
  10810. },
  10811. {
  10812. name: "Teramacro",
  10813. height: math.unit(384000, "km")
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10819. {
  10820. front: {
  10821. height: math.unit(6, "feet"),
  10822. weight: math.unit(150, "lb"),
  10823. name: "Front",
  10824. image: {
  10825. source: "./media/characters/kayroo/front.svg",
  10826. extra: 1153 / 1038,
  10827. bottom: 0.06
  10828. }
  10829. },
  10830. foot: {
  10831. height: math.unit(6, "feet"),
  10832. weight: math.unit(150, "lb"),
  10833. name: "Foot",
  10834. image: {
  10835. source: "./media/characters/kayroo/foot.svg"
  10836. }
  10837. },
  10838. },
  10839. [
  10840. {
  10841. name: "Normal",
  10842. height: math.unit(8, "feet"),
  10843. default: true
  10844. },
  10845. {
  10846. name: "Minimacro",
  10847. height: math.unit(250, "feet")
  10848. },
  10849. {
  10850. name: "Macro",
  10851. height: math.unit(2800, "feet")
  10852. },
  10853. {
  10854. name: "Megamacro",
  10855. height: math.unit(5200, "feet")
  10856. },
  10857. {
  10858. name: "Gigamacro",
  10859. height: math.unit(27000, "feet")
  10860. },
  10861. {
  10862. name: "Omega",
  10863. height: math.unit(45000, "feet")
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10869. {
  10870. front: {
  10871. height: math.unit(18, "feet"),
  10872. weight: math.unit(5800, "lb"),
  10873. name: "Front",
  10874. image: {
  10875. source: "./media/characters/rhys/front.svg",
  10876. extra: 3386 / 3090,
  10877. bottom: 0.07
  10878. }
  10879. },
  10880. },
  10881. [
  10882. {
  10883. name: "Normal",
  10884. height: math.unit(18, "feet"),
  10885. default: true
  10886. },
  10887. {
  10888. name: "Working Size",
  10889. height: math.unit(200, "feet")
  10890. },
  10891. {
  10892. name: "Demolition Size",
  10893. height: math.unit(2000, "feet")
  10894. },
  10895. {
  10896. name: "Maximum Licensed Size",
  10897. height: math.unit(5, "miles")
  10898. },
  10899. {
  10900. name: "Maximum Observed Size",
  10901. height: math.unit(10, "yottameters")
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10907. {
  10908. front: {
  10909. height: math.unit(6, "feet"),
  10910. weight: math.unit(250, "lb"),
  10911. name: "Front",
  10912. image: {
  10913. source: "./media/characters/toto/front.svg",
  10914. extra: 527 / 479,
  10915. bottom: 0.05
  10916. }
  10917. },
  10918. },
  10919. [
  10920. {
  10921. name: "Micro",
  10922. height: math.unit(3, "feet")
  10923. },
  10924. {
  10925. name: "Normal",
  10926. height: math.unit(10, "feet")
  10927. },
  10928. {
  10929. name: "Macro",
  10930. height: math.unit(150, "feet"),
  10931. default: true
  10932. },
  10933. {
  10934. name: "Megamacro",
  10935. height: math.unit(1200, "feet")
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "King", species: ["lion"], tags: ["anthro"] },
  10941. {
  10942. back: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(150, "lb"),
  10945. name: "Back",
  10946. image: {
  10947. source: "./media/characters/king/back.svg"
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Micro",
  10954. height: math.unit(2, "inches")
  10955. },
  10956. {
  10957. name: "Normal",
  10958. height: math.unit(8, "feet")
  10959. },
  10960. {
  10961. name: "Macro",
  10962. height: math.unit(200, "feet"),
  10963. default: true
  10964. },
  10965. {
  10966. name: "Megamacro",
  10967. height: math.unit(50, "miles")
  10968. },
  10969. ]
  10970. ))
  10971. characterMakers.push(() => makeCharacter(
  10972. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10973. {
  10974. anthro: {
  10975. height: math.unit(6 + 5 / 12, "feet"),
  10976. weight: math.unit(280, "lb"),
  10977. name: "Anthro",
  10978. image: {
  10979. source: "./media/characters/cordite/anthro.svg",
  10980. extra: 1986 / 1905,
  10981. bottom: 0.025
  10982. }
  10983. },
  10984. feral: {
  10985. height: math.unit(2, "feet"),
  10986. weight: math.unit(90, "lb"),
  10987. name: "Feral",
  10988. image: {
  10989. source: "./media/characters/cordite/feral.svg",
  10990. extra: 1260 / 755,
  10991. bottom: 0.05
  10992. }
  10993. },
  10994. },
  10995. [
  10996. {
  10997. name: "Normal",
  10998. height: math.unit(6 + 5 / 12, "feet"),
  10999. default: true
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11005. {
  11006. front: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(150, "lb"),
  11009. name: "Front",
  11010. image: {
  11011. source: "./media/characters/pianostrong/front.svg",
  11012. extra: 6577 / 6254,
  11013. bottom: 0.02
  11014. }
  11015. },
  11016. side: {
  11017. height: math.unit(6, "feet"),
  11018. weight: math.unit(150, "lb"),
  11019. name: "Side",
  11020. image: {
  11021. source: "./media/characters/pianostrong/side.svg",
  11022. extra: 6106 / 5730
  11023. }
  11024. },
  11025. back: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(150, "lb"),
  11028. name: "Back",
  11029. image: {
  11030. source: "./media/characters/pianostrong/back.svg",
  11031. extra: 6085 / 5733,
  11032. bottom: 0.01
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Macro",
  11039. height: math.unit(100, "feet")
  11040. },
  11041. {
  11042. name: "Macro+",
  11043. height: math.unit(300, "feet"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Macro++",
  11048. height: math.unit(1000, "feet")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11054. {
  11055. front: {
  11056. height: math.unit(6, "feet"),
  11057. weight: math.unit(150, "lb"),
  11058. name: "Front",
  11059. image: {
  11060. source: "./media/characters/kona/front.svg",
  11061. extra: 2960 / 2629,
  11062. bottom: 0.005
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(11 + 8 / 12, "feet")
  11070. },
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(850, "feet"),
  11074. default: true
  11075. },
  11076. {
  11077. name: "Macro+",
  11078. height: math.unit(1.5, "km"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Megamacro",
  11083. height: math.unit(80, "miles")
  11084. },
  11085. {
  11086. name: "Gigamacro",
  11087. height: math.unit(3500, "miles")
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11093. {
  11094. side: {
  11095. height: math.unit(1.9, "meters"),
  11096. weight: math.unit(326, "kg"),
  11097. name: "Side",
  11098. image: {
  11099. source: "./media/characters/levi/side.svg",
  11100. extra: 1704 / 1334,
  11101. bottom: 0.02
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Normal",
  11108. height: math.unit(1.9, "meters"),
  11109. default: true
  11110. },
  11111. {
  11112. name: "Macro",
  11113. height: math.unit(20, "meters")
  11114. },
  11115. {
  11116. name: "Macro+",
  11117. height: math.unit(200, "meters")
  11118. },
  11119. {
  11120. name: "Megamacro",
  11121. height: math.unit(2, "km")
  11122. },
  11123. {
  11124. name: "Megamacro+",
  11125. height: math.unit(20, "km")
  11126. },
  11127. {
  11128. name: "Gigamacro",
  11129. height: math.unit(2500, "km")
  11130. },
  11131. {
  11132. name: "Gigamacro+",
  11133. height: math.unit(120000, "km")
  11134. },
  11135. {
  11136. name: "Teramacro",
  11137. height: math.unit(7.77e6, "km")
  11138. },
  11139. ]
  11140. ))
  11141. characterMakers.push(() => makeCharacter(
  11142. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11143. {
  11144. front: {
  11145. height: math.unit(6 + 4 / 12, "feet"),
  11146. weight: math.unit(188, "lb"),
  11147. name: "Front",
  11148. image: {
  11149. source: "./media/characters/bmc/front.svg",
  11150. extra: 1067 / 1022,
  11151. bottom: 0.047
  11152. }
  11153. },
  11154. },
  11155. [
  11156. {
  11157. name: "Human-sized",
  11158. height: math.unit(6 + 4 / 12, "feet")
  11159. },
  11160. {
  11161. name: "Small",
  11162. height: math.unit(250, "feet")
  11163. },
  11164. {
  11165. name: "Normal",
  11166. height: math.unit(1250, "feet"),
  11167. default: true
  11168. },
  11169. {
  11170. name: "Good Day",
  11171. height: math.unit(88, "miles")
  11172. },
  11173. {
  11174. name: "Largest Measured Size",
  11175. height: math.unit(11.2e6, "lightyears")
  11176. },
  11177. ]
  11178. ))
  11179. characterMakers.push(() => makeCharacter(
  11180. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11181. {
  11182. front: {
  11183. height: math.unit(20, "feet"),
  11184. weight: math.unit(2016, "kg"),
  11185. name: "Front",
  11186. image: {
  11187. source: "./media/characters/sven-the-kaiju/front.svg",
  11188. extra: 1277/1250,
  11189. bottom: 35/1312
  11190. }
  11191. },
  11192. mouth: {
  11193. height: math.unit(1.85, "feet"),
  11194. name: "Mouth",
  11195. image: {
  11196. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Fairy",
  11203. height: math.unit(6, "inches")
  11204. },
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(20, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Rampage",
  11212. height: math.unit(200, "feet")
  11213. },
  11214. {
  11215. name: "Archfey Forest Guardian",
  11216. height: math.unit(1, "mile")
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(4, "meters"),
  11225. weight: math.unit(2, "tons"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/marik/front.svg",
  11229. extra: 1057 / 1003,
  11230. bottom: 0.08
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(4, "meters"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Macro",
  11242. height: math.unit(20, "meters")
  11243. },
  11244. {
  11245. name: "Megamacro",
  11246. height: math.unit(50, "km")
  11247. },
  11248. {
  11249. name: "Gigamacro",
  11250. height: math.unit(100, "km")
  11251. },
  11252. {
  11253. name: "Alpha Macro",
  11254. height: math.unit(7.88e7, "yottameters")
  11255. },
  11256. ]
  11257. ))
  11258. characterMakers.push(() => makeCharacter(
  11259. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11260. {
  11261. front: {
  11262. height: math.unit(6, "feet"),
  11263. weight: math.unit(110, "lb"),
  11264. name: "Front",
  11265. image: {
  11266. source: "./media/characters/mel/front.svg",
  11267. extra: 736 / 617,
  11268. bottom: 0.017
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Pico",
  11275. height: math.unit(3, "pm")
  11276. },
  11277. {
  11278. name: "Nano",
  11279. height: math.unit(3, "nm")
  11280. },
  11281. {
  11282. name: "Micro",
  11283. height: math.unit(0.3, "mm"),
  11284. default: true
  11285. },
  11286. {
  11287. name: "Micro+",
  11288. height: math.unit(3, "mm")
  11289. },
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(5 + 10.5 / 12, "feet")
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11298. {
  11299. kaiju: {
  11300. height: math.unit(1.75, "meters"),
  11301. weight: math.unit(55, "kg"),
  11302. name: "Kaiju",
  11303. image: {
  11304. source: "./media/characters/lykonous/kaiju.svg",
  11305. extra: 1055 / 946,
  11306. bottom: 0.135
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(2.5, "meters"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Kaiju Dragon",
  11318. height: math.unit(60, "meters")
  11319. },
  11320. {
  11321. name: "Mega Kaiju",
  11322. height: math.unit(120, "km")
  11323. },
  11324. {
  11325. name: "Giga Kaiju",
  11326. height: math.unit(200, "megameters")
  11327. },
  11328. {
  11329. name: "Terra Kaiju",
  11330. height: math.unit(400, "gigameters")
  11331. },
  11332. {
  11333. name: "Kaiju Dragon God",
  11334. height: math.unit(13000, "exaparsecs")
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(150, "lb"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/blü/front.svg",
  11347. extra: 1883 / 1564,
  11348. bottom: 0.031
  11349. }
  11350. },
  11351. },
  11352. [
  11353. {
  11354. name: "Normal",
  11355. height: math.unit(13, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Big Boi",
  11360. height: math.unit(150, "meters")
  11361. },
  11362. {
  11363. name: "Mini Stomper",
  11364. height: math.unit(300, "meters")
  11365. },
  11366. {
  11367. name: "Macro",
  11368. height: math.unit(1000, "meters")
  11369. },
  11370. {
  11371. name: "Megamacro",
  11372. height: math.unit(11000, "meters")
  11373. },
  11374. {
  11375. name: "Gigamacro",
  11376. height: math.unit(11000, "km")
  11377. },
  11378. {
  11379. name: "Teramacro",
  11380. height: math.unit(420000, "km")
  11381. },
  11382. {
  11383. name: "Examacro",
  11384. height: math.unit(120, "parsecs")
  11385. },
  11386. {
  11387. name: "God Tho",
  11388. height: math.unit(98000000000, "parsecs")
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11394. {
  11395. taurFront: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(200, "lb"),
  11398. name: "Taur (Front)",
  11399. image: {
  11400. source: "./media/characters/scales/taur-front.svg",
  11401. extra: 1,
  11402. bottom: 0.05
  11403. }
  11404. },
  11405. taurBack: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(200, "lb"),
  11408. name: "Taur (Back)",
  11409. image: {
  11410. source: "./media/characters/scales/taur-back.svg",
  11411. extra: 1,
  11412. bottom: 0.08
  11413. }
  11414. },
  11415. anthro: {
  11416. height: math.unit(6 * 7 / 12, "feet"),
  11417. weight: math.unit(100, "lb"),
  11418. name: "Anthro",
  11419. image: {
  11420. source: "./media/characters/scales/anthro.svg",
  11421. extra: 1,
  11422. bottom: 0.06
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(12, "feet"),
  11430. default: true
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(150, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/koragos/front.svg",
  11443. extra: 841 / 794,
  11444. bottom: 0.035
  11445. }
  11446. },
  11447. back: {
  11448. height: math.unit(6, "feet"),
  11449. weight: math.unit(150, "lb"),
  11450. name: "Back",
  11451. image: {
  11452. source: "./media/characters/koragos/back.svg",
  11453. extra: 841 / 810,
  11454. bottom: 0.022
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Normal",
  11461. height: math.unit(6 + 11 / 12, "feet"),
  11462. default: true
  11463. },
  11464. {
  11465. name: "Macro",
  11466. height: math.unit(490, "feet")
  11467. },
  11468. {
  11469. name: "Megamacro",
  11470. height: math.unit(10, "miles")
  11471. },
  11472. {
  11473. name: "Gigamacro",
  11474. height: math.unit(50, "miles")
  11475. },
  11476. ]
  11477. ))
  11478. characterMakers.push(() => makeCharacter(
  11479. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11480. {
  11481. front: {
  11482. height: math.unit(6, "feet"),
  11483. weight: math.unit(250, "lb"),
  11484. name: "Front",
  11485. image: {
  11486. source: "./media/characters/xylrem/front.svg",
  11487. extra: 3323 / 3050,
  11488. bottom: 0.065
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Micro",
  11495. height: math.unit(4, "feet")
  11496. },
  11497. {
  11498. name: "Normal",
  11499. height: math.unit(16, "feet"),
  11500. default: true
  11501. },
  11502. {
  11503. name: "Macro",
  11504. height: math.unit(2720, "feet")
  11505. },
  11506. {
  11507. name: "Megamacro",
  11508. height: math.unit(25000, "miles")
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11514. {
  11515. front: {
  11516. height: math.unit(8, "feet"),
  11517. weight: math.unit(250, "kg"),
  11518. name: "Front",
  11519. image: {
  11520. source: "./media/characters/ikideru/front.svg",
  11521. extra: 930 / 870,
  11522. bottom: 0.087
  11523. }
  11524. },
  11525. back: {
  11526. height: math.unit(8, "feet"),
  11527. weight: math.unit(250, "kg"),
  11528. name: "Back",
  11529. image: {
  11530. source: "./media/characters/ikideru/back.svg",
  11531. extra: 919 / 852,
  11532. bottom: 0.055
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Rare",
  11539. height: math.unit(8, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Playful Loom",
  11544. height: math.unit(80, "feet")
  11545. },
  11546. {
  11547. name: "City Leaner",
  11548. height: math.unit(230, "feet")
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(2500, "feet")
  11553. },
  11554. {
  11555. name: "Gigamacro",
  11556. height: math.unit(26400, "feet")
  11557. },
  11558. {
  11559. name: "Tectonic Shifter",
  11560. height: math.unit(1.7, "megameters")
  11561. },
  11562. {
  11563. name: "Planet Carer",
  11564. height: math.unit(21, "megameters")
  11565. },
  11566. {
  11567. name: "God",
  11568. height: math.unit(11157.22, "parsecs")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(6, "feet"),
  11577. weight: math.unit(120, "lb"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/neo/front.svg"
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Micro",
  11587. height: math.unit(2, "inches"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Human Size",
  11592. height: math.unit(5 + 8 / 12, "feet")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(13 + 10 / 12, "feet"),
  11601. weight: math.unit(5320, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/chauncey-chantz/front.svg",
  11605. extra: 1587 / 1435,
  11606. bottom: 0.02
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Normal",
  11613. height: math.unit(13 + 10 / 12, "feet"),
  11614. default: true
  11615. },
  11616. {
  11617. name: "Macro",
  11618. height: math.unit(45, "feet")
  11619. },
  11620. {
  11621. name: "Megamacro",
  11622. height: math.unit(250, "miles")
  11623. },
  11624. {
  11625. name: "Planetary",
  11626. height: math.unit(10000, "miles")
  11627. },
  11628. {
  11629. name: "Galactic",
  11630. height: math.unit(40000, "parsecs")
  11631. },
  11632. {
  11633. name: "Universal",
  11634. height: math.unit(1, "yottameter")
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11640. {
  11641. front: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(150, "lb"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/epifox/front.svg",
  11647. extra: 1,
  11648. bottom: 0.075
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Micro",
  11655. height: math.unit(6, "inches")
  11656. },
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(12, "feet"),
  11660. default: true
  11661. },
  11662. {
  11663. name: "Macro",
  11664. height: math.unit(3810, "feet")
  11665. },
  11666. {
  11667. name: "Megamacro",
  11668. height: math.unit(500, "miles")
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11674. {
  11675. front: {
  11676. height: math.unit(1.8796, "m"),
  11677. weight: math.unit(230, "lb"),
  11678. name: "Front",
  11679. image: {
  11680. source: "./media/characters/colin-t/front.svg",
  11681. extra: 1272 / 1193,
  11682. bottom: 0.07
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Micro",
  11689. height: math.unit(0.571, "meters")
  11690. },
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(1.8796, "meters"),
  11694. default: true
  11695. },
  11696. {
  11697. name: "Tall",
  11698. height: math.unit(4, "meters")
  11699. },
  11700. {
  11701. name: "Macro",
  11702. height: math.unit(67.241, "meters")
  11703. },
  11704. {
  11705. name: "Megamacro",
  11706. height: math.unit(371.856, "meters")
  11707. },
  11708. {
  11709. name: "Planetary",
  11710. height: math.unit(12631.5689, "km")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(1.85, "meters"),
  11719. weight: math.unit(80, "kg"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/matvei/front.svg",
  11723. extra: 614 / 594,
  11724. bottom: 0.01
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(1.85, "meters"),
  11732. default: true
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11738. {
  11739. front: {
  11740. height: math.unit(5 + 9 / 12, "feet"),
  11741. weight: math.unit(70, "lb"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/quincy/front.svg",
  11745. extra: 3041 / 2751
  11746. }
  11747. },
  11748. back: {
  11749. height: math.unit(5 + 9 / 12, "feet"),
  11750. weight: math.unit(70, "lb"),
  11751. name: "Back",
  11752. image: {
  11753. source: "./media/characters/quincy/back.svg",
  11754. extra: 3041 / 2751
  11755. }
  11756. },
  11757. flying: {
  11758. height: math.unit(5 + 4 / 12, "feet"),
  11759. weight: math.unit(70, "lb"),
  11760. name: "Flying",
  11761. image: {
  11762. source: "./media/characters/quincy/flying.svg",
  11763. extra: 1044 / 930
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Micro",
  11770. height: math.unit(3, "cm")
  11771. },
  11772. {
  11773. name: "Normal",
  11774. height: math.unit(5 + 9 / 12, "feet")
  11775. },
  11776. {
  11777. name: "Macro",
  11778. height: math.unit(200, "meters"),
  11779. default: true
  11780. },
  11781. {
  11782. name: "Megamacro",
  11783. height: math.unit(1000, "meters")
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11789. {
  11790. front: {
  11791. height: math.unit(4 + 7 / 12, "feet"),
  11792. weight: math.unit(50, "lb"),
  11793. name: "Front",
  11794. image: {
  11795. source: "./media/characters/vanrel/front.svg",
  11796. extra: 1,
  11797. bottom: 0.02
  11798. }
  11799. },
  11800. frontAlt: {
  11801. height: math.unit(4 + 7 / 12, "feet"),
  11802. weight: math.unit(50, "lb"),
  11803. name: "Front-alt",
  11804. image: {
  11805. source: "./media/characters/vanrel/front-alt.svg",
  11806. extra: 1,
  11807. bottom: 15 / 1511
  11808. }
  11809. },
  11810. elemental: {
  11811. height: math.unit(3, "feet"),
  11812. weight: math.unit(50, "lb"),
  11813. name: "Elemental",
  11814. image: {
  11815. source: "./media/characters/vanrel/elemental.svg",
  11816. extra: 192.3 / 162.8,
  11817. bottom: 1.79 / 194.17
  11818. }
  11819. },
  11820. side: {
  11821. height: math.unit(4 + 7 / 12, "feet"),
  11822. weight: math.unit(50, "lb"),
  11823. name: "Side",
  11824. image: {
  11825. source: "./media/characters/vanrel/side.svg",
  11826. extra: 1,
  11827. bottom: 0.025
  11828. }
  11829. },
  11830. tome: {
  11831. height: math.unit(1.35, "feet"),
  11832. weight: math.unit(10, "lb"),
  11833. name: "Vanrel's Tome",
  11834. rename: true,
  11835. image: {
  11836. source: "./media/characters/vanrel/tome.svg"
  11837. }
  11838. },
  11839. beans: {
  11840. height: math.unit(0.89, "feet"),
  11841. name: "Beans",
  11842. image: {
  11843. source: "./media/characters/vanrel/beans.svg"
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(4 + 7 / 12, "feet"),
  11851. default: true
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11857. {
  11858. front: {
  11859. height: math.unit(7 + 5 / 12, "feet"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/kuiper-vanrel/front.svg",
  11863. extra: 1219/1169,
  11864. bottom: 69/1288
  11865. }
  11866. },
  11867. back: {
  11868. height: math.unit(7 + 5 / 12, "feet"),
  11869. name: "Back",
  11870. image: {
  11871. source: "./media/characters/kuiper-vanrel/back.svg",
  11872. extra: 1236/1193,
  11873. bottom: 27/1263
  11874. }
  11875. },
  11876. foot: {
  11877. height: math.unit(0.55, "meters"),
  11878. name: "Foot",
  11879. image: {
  11880. source: "./media/characters/kuiper-vanrel/foot.svg",
  11881. }
  11882. },
  11883. battle: {
  11884. height: math.unit(6.824, "feet"),
  11885. name: "Battle",
  11886. image: {
  11887. source: "./media/characters/kuiper-vanrel/battle.svg",
  11888. extra: 1466 / 1327,
  11889. bottom: 29 / 1492.5
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(7 + 5 / 12, "feet"),
  11897. default: true
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(8 + 5 / 12, "feet"),
  11906. name: "Front",
  11907. image: {
  11908. source: "./media/characters/keset-vanrel/front.svg",
  11909. extra: 1231/1148,
  11910. bottom: 82/1313
  11911. }
  11912. },
  11913. back: {
  11914. height: math.unit(8 + 5 / 12, "feet"),
  11915. name: "Back",
  11916. image: {
  11917. source: "./media/characters/keset-vanrel/back.svg",
  11918. extra: 1240/1174,
  11919. bottom: 33/1273
  11920. }
  11921. },
  11922. hand: {
  11923. height: math.unit(0.6, "meters"),
  11924. name: "Hand",
  11925. image: {
  11926. source: "./media/characters/keset-vanrel/hand.svg"
  11927. }
  11928. },
  11929. foot: {
  11930. height: math.unit(0.94978, "meters"),
  11931. name: "Foot",
  11932. image: {
  11933. source: "./media/characters/keset-vanrel/foot.svg"
  11934. }
  11935. },
  11936. battle: {
  11937. height: math.unit(7.408, "feet"),
  11938. name: "Battle",
  11939. image: {
  11940. source: "./media/characters/keset-vanrel/battle.svg",
  11941. extra: 1890 / 1386,
  11942. bottom: 73.28 / 1970
  11943. }
  11944. },
  11945. },
  11946. [
  11947. {
  11948. name: "Normal",
  11949. height: math.unit(8 + 5 / 12, "feet"),
  11950. default: true
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11956. {
  11957. front: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(150, "lb"),
  11960. name: "Front",
  11961. image: {
  11962. source: "./media/characters/neos/front.svg",
  11963. extra: 1696 / 992,
  11964. bottom: 0.14
  11965. }
  11966. },
  11967. },
  11968. [
  11969. {
  11970. name: "Normal",
  11971. height: math.unit(54, "cm"),
  11972. default: true
  11973. },
  11974. {
  11975. name: "Macro",
  11976. height: math.unit(100, "m")
  11977. },
  11978. {
  11979. name: "Megamacro",
  11980. height: math.unit(10, "km")
  11981. },
  11982. {
  11983. name: "Megamacro+",
  11984. height: math.unit(100, "km")
  11985. },
  11986. {
  11987. name: "Gigamacro",
  11988. height: math.unit(100, "Mm")
  11989. },
  11990. {
  11991. name: "Teramacro",
  11992. height: math.unit(100, "Gm")
  11993. },
  11994. {
  11995. name: "Examacro",
  11996. height: math.unit(100, "Em")
  11997. },
  11998. {
  11999. name: "Godly",
  12000. height: math.unit(10000, "Ym")
  12001. },
  12002. {
  12003. name: "Beyond Godly",
  12004. height: math.unit(25, "multiverses")
  12005. },
  12006. ]
  12007. ))
  12008. characterMakers.push(() => makeCharacter(
  12009. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12010. {
  12011. feminine: {
  12012. height: math.unit(5, "feet"),
  12013. weight: math.unit(100, "lb"),
  12014. name: "Feminine",
  12015. image: {
  12016. source: "./media/characters/sammy-mouse/feminine.svg",
  12017. extra: 2526 / 2425,
  12018. bottom: 0.123
  12019. }
  12020. },
  12021. masculine: {
  12022. height: math.unit(5, "feet"),
  12023. weight: math.unit(100, "lb"),
  12024. name: "Masculine",
  12025. image: {
  12026. source: "./media/characters/sammy-mouse/masculine.svg",
  12027. extra: 2526 / 2425,
  12028. bottom: 0.123
  12029. }
  12030. },
  12031. },
  12032. [
  12033. {
  12034. name: "Micro",
  12035. height: math.unit(5, "inches")
  12036. },
  12037. {
  12038. name: "Normal",
  12039. height: math.unit(5, "feet"),
  12040. default: true
  12041. },
  12042. {
  12043. name: "Macro",
  12044. height: math.unit(60, "feet")
  12045. },
  12046. ]
  12047. ))
  12048. characterMakers.push(() => makeCharacter(
  12049. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12050. {
  12051. front: {
  12052. height: math.unit(4, "feet"),
  12053. weight: math.unit(50, "lb"),
  12054. name: "Front",
  12055. image: {
  12056. source: "./media/characters/kole/front.svg",
  12057. extra: 1423 / 1303,
  12058. bottom: 0.025
  12059. }
  12060. },
  12061. back: {
  12062. height: math.unit(4, "feet"),
  12063. weight: math.unit(50, "lb"),
  12064. name: "Back",
  12065. image: {
  12066. source: "./media/characters/kole/back.svg",
  12067. extra: 1426 / 1280,
  12068. bottom: 0.02
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Normal",
  12075. height: math.unit(4, "feet"),
  12076. default: true
  12077. },
  12078. ]
  12079. ))
  12080. characterMakers.push(() => makeCharacter(
  12081. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12082. {
  12083. front: {
  12084. height: math.unit(2 + 6 / 12, "feet"),
  12085. weight: math.unit(20, "lb"),
  12086. name: "Front",
  12087. image: {
  12088. source: "./media/characters/rufran/front.svg",
  12089. extra: 2041 / 1839,
  12090. bottom: 0.055
  12091. }
  12092. },
  12093. back: {
  12094. height: math.unit(2 + 6 / 12, "feet"),
  12095. weight: math.unit(20, "lb"),
  12096. name: "Back",
  12097. image: {
  12098. source: "./media/characters/rufran/back.svg",
  12099. extra: 2054 / 1839,
  12100. bottom: 0.01
  12101. }
  12102. },
  12103. hand: {
  12104. height: math.unit(0.2166, "meters"),
  12105. name: "Hand",
  12106. image: {
  12107. source: "./media/characters/rufran/hand.svg"
  12108. }
  12109. },
  12110. foot: {
  12111. height: math.unit(0.185, "meters"),
  12112. name: "Foot",
  12113. image: {
  12114. source: "./media/characters/rufran/foot.svg"
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Micro",
  12121. height: math.unit(1, "inch")
  12122. },
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(2 + 6 / 12, "feet"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Big",
  12130. height: math.unit(60, "feet")
  12131. },
  12132. {
  12133. name: "Macro",
  12134. height: math.unit(325, "feet")
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(0.3, "meters"),
  12143. weight: math.unit(3.5, "kg"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/chip/front.svg",
  12147. extra: 748 / 674
  12148. }
  12149. },
  12150. },
  12151. [
  12152. {
  12153. name: "Micro",
  12154. height: math.unit(1, "inch"),
  12155. default: true
  12156. },
  12157. ]
  12158. ))
  12159. characterMakers.push(() => makeCharacter(
  12160. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12161. {
  12162. side: {
  12163. height: math.unit(2.3, "meters"),
  12164. weight: math.unit(3500, "lb"),
  12165. name: "Side",
  12166. image: {
  12167. source: "./media/characters/torvid/side.svg",
  12168. extra: 1972 / 722,
  12169. bottom: 0.035
  12170. }
  12171. },
  12172. },
  12173. [
  12174. {
  12175. name: "Normal",
  12176. height: math.unit(2.3, "meters"),
  12177. default: true
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(2, "meters"),
  12186. weight: math.unit(150.5, "kg"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/susan/front.svg",
  12190. extra: 693 / 635,
  12191. bottom: 0.05
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Megamacro",
  12198. height: math.unit(505, "miles"),
  12199. default: true
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(6, "feet"),
  12208. weight: math.unit(150, "lb"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/raindrops/front.svg",
  12212. extra: 2655 / 2461,
  12213. bottom: 49 / 2705
  12214. }
  12215. },
  12216. back: {
  12217. height: math.unit(6, "feet"),
  12218. weight: math.unit(150, "lb"),
  12219. name: "Back",
  12220. image: {
  12221. source: "./media/characters/raindrops/back.svg",
  12222. extra: 2574 / 2400,
  12223. bottom: 65 / 2634
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Micro",
  12230. height: math.unit(6, "inches")
  12231. },
  12232. {
  12233. name: "Normal",
  12234. height: math.unit(6 + 2 / 12, "feet")
  12235. },
  12236. {
  12237. name: "Macro",
  12238. height: math.unit(131, "feet"),
  12239. default: true
  12240. },
  12241. {
  12242. name: "Megamacro",
  12243. height: math.unit(15, "miles")
  12244. },
  12245. {
  12246. name: "Gigamacro",
  12247. height: math.unit(4000, "miles")
  12248. },
  12249. {
  12250. name: "Teramacro",
  12251. height: math.unit(315000, "miles")
  12252. },
  12253. ]
  12254. ))
  12255. characterMakers.push(() => makeCharacter(
  12256. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12257. {
  12258. front: {
  12259. height: math.unit(2.794, "meters"),
  12260. weight: math.unit(325, "kg"),
  12261. name: "Front",
  12262. image: {
  12263. source: "./media/characters/tezwa/front.svg",
  12264. extra: 2083 / 1906,
  12265. bottom: 0.031
  12266. }
  12267. },
  12268. foot: {
  12269. height: math.unit(0.687, "meters"),
  12270. name: "Foot",
  12271. image: {
  12272. source: "./media/characters/tezwa/foot.svg"
  12273. }
  12274. },
  12275. },
  12276. [
  12277. {
  12278. name: "Normal",
  12279. height: math.unit(9 + 2 / 12, "feet"),
  12280. default: true
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12286. {
  12287. front: {
  12288. height: math.unit(58, "feet"),
  12289. weight: math.unit(89000, "lb"),
  12290. name: "Front",
  12291. image: {
  12292. source: "./media/characters/typhus/front.svg",
  12293. extra: 816 / 800,
  12294. bottom: 0.065
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Macro",
  12301. height: math.unit(58, "feet"),
  12302. default: true
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12308. {
  12309. front: {
  12310. height: math.unit(12, "feet"),
  12311. weight: math.unit(6, "tonnes"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/lyra-von-wulf/front.svg",
  12315. extra: 1,
  12316. bottom: 0.10
  12317. }
  12318. },
  12319. frontMecha: {
  12320. height: math.unit(12, "feet"),
  12321. weight: math.unit(12, "tonnes"),
  12322. name: "Front (Mecha)",
  12323. image: {
  12324. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12325. extra: 1,
  12326. bottom: 0.042
  12327. }
  12328. },
  12329. maw: {
  12330. height: math.unit(2.2, "feet"),
  12331. name: "Maw",
  12332. image: {
  12333. source: "./media/characters/lyra-von-wulf/maw.svg"
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(12, "feet"),
  12341. default: true
  12342. },
  12343. {
  12344. name: "Classic",
  12345. height: math.unit(50, "feet")
  12346. },
  12347. {
  12348. name: "Macro",
  12349. height: math.unit(500, "feet")
  12350. },
  12351. {
  12352. name: "Megamacro",
  12353. height: math.unit(1, "mile")
  12354. },
  12355. {
  12356. name: "Gigamacro",
  12357. height: math.unit(400, "miles")
  12358. },
  12359. {
  12360. name: "Teramacro",
  12361. height: math.unit(22000, "miles")
  12362. },
  12363. {
  12364. name: "Solarmacro",
  12365. height: math.unit(8600000, "miles")
  12366. },
  12367. {
  12368. name: "Galactic",
  12369. height: math.unit(1057000, "lightyears")
  12370. },
  12371. ]
  12372. ))
  12373. characterMakers.push(() => makeCharacter(
  12374. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12375. {
  12376. front: {
  12377. height: math.unit(6 + 10 / 12, "feet"),
  12378. weight: math.unit(150, "lb"),
  12379. name: "Front",
  12380. image: {
  12381. source: "./media/characters/dixon/front.svg",
  12382. extra: 3361 / 3209,
  12383. bottom: 0.01
  12384. }
  12385. },
  12386. },
  12387. [
  12388. {
  12389. name: "Normal",
  12390. height: math.unit(6 + 10 / 12, "feet"),
  12391. default: true
  12392. },
  12393. {
  12394. name: "Big",
  12395. height: math.unit(12, "meters")
  12396. },
  12397. {
  12398. name: "Macro",
  12399. height: math.unit(500, "meters")
  12400. },
  12401. {
  12402. name: "Megamacro",
  12403. height: math.unit(2, "km")
  12404. },
  12405. ]
  12406. ))
  12407. characterMakers.push(() => makeCharacter(
  12408. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12409. {
  12410. front: {
  12411. height: math.unit(185, "cm"),
  12412. weight: math.unit(68, "kg"),
  12413. name: "Front",
  12414. image: {
  12415. source: "./media/characters/kauko/front.svg",
  12416. extra: 1455 / 1421,
  12417. bottom: 0.03
  12418. }
  12419. },
  12420. back: {
  12421. height: math.unit(185, "cm"),
  12422. weight: math.unit(68, "kg"),
  12423. name: "Back",
  12424. image: {
  12425. source: "./media/characters/kauko/back.svg",
  12426. extra: 1455 / 1421,
  12427. bottom: 0.004
  12428. }
  12429. },
  12430. },
  12431. [
  12432. {
  12433. name: "Normal",
  12434. height: math.unit(185, "cm"),
  12435. default: true
  12436. },
  12437. ]
  12438. ))
  12439. characterMakers.push(() => makeCharacter(
  12440. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12441. {
  12442. front: {
  12443. height: math.unit(6, "feet"),
  12444. weight: math.unit(150, "kg"),
  12445. name: "Front",
  12446. image: {
  12447. source: "./media/characters/varg/front.svg",
  12448. extra: 1108 / 1018,
  12449. bottom: 0.0375
  12450. }
  12451. },
  12452. },
  12453. [
  12454. {
  12455. name: "Normal",
  12456. height: math.unit(5, "meters")
  12457. },
  12458. {
  12459. name: "Macro",
  12460. height: math.unit(200, "meters")
  12461. },
  12462. {
  12463. name: "Megamacro",
  12464. height: math.unit(20, "kilometers")
  12465. },
  12466. {
  12467. name: "True Size",
  12468. height: math.unit(211, "km"),
  12469. default: true
  12470. },
  12471. {
  12472. name: "Gigamacro",
  12473. height: math.unit(1000, "km")
  12474. },
  12475. {
  12476. name: "Gigamacro+",
  12477. height: math.unit(8000, "km")
  12478. },
  12479. {
  12480. name: "Teramacro",
  12481. height: math.unit(1000000, "km")
  12482. },
  12483. ]
  12484. ))
  12485. characterMakers.push(() => makeCharacter(
  12486. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12487. {
  12488. front: {
  12489. height: math.unit(7 + 7 / 12, "feet"),
  12490. weight: math.unit(267, "lb"),
  12491. name: "Front",
  12492. image: {
  12493. source: "./media/characters/dayza/front.svg",
  12494. extra: 1262 / 1200,
  12495. bottom: 0.035
  12496. }
  12497. },
  12498. side: {
  12499. height: math.unit(7 + 7 / 12, "feet"),
  12500. weight: math.unit(267, "lb"),
  12501. name: "Side",
  12502. image: {
  12503. source: "./media/characters/dayza/side.svg",
  12504. extra: 1295 / 1245,
  12505. bottom: 0.05
  12506. }
  12507. },
  12508. back: {
  12509. height: math.unit(7 + 7 / 12, "feet"),
  12510. weight: math.unit(267, "lb"),
  12511. name: "Back",
  12512. image: {
  12513. source: "./media/characters/dayza/back.svg",
  12514. extra: 1241 / 1170
  12515. }
  12516. },
  12517. },
  12518. [
  12519. {
  12520. name: "Normal",
  12521. height: math.unit(7 + 7 / 12, "feet"),
  12522. default: true
  12523. },
  12524. {
  12525. name: "Macro",
  12526. height: math.unit(155, "feet")
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12532. {
  12533. front: {
  12534. height: math.unit(6 + 5 / 12, "feet"),
  12535. weight: math.unit(160, "lb"),
  12536. name: "Front",
  12537. image: {
  12538. source: "./media/characters/xanthos/front.svg",
  12539. extra: 1,
  12540. bottom: 0.04
  12541. }
  12542. },
  12543. back: {
  12544. height: math.unit(6 + 5 / 12, "feet"),
  12545. weight: math.unit(160, "lb"),
  12546. name: "Back",
  12547. image: {
  12548. source: "./media/characters/xanthos/back.svg",
  12549. extra: 1,
  12550. bottom: 0.03
  12551. }
  12552. },
  12553. hand: {
  12554. height: math.unit(0.928, "feet"),
  12555. name: "Hand",
  12556. image: {
  12557. source: "./media/characters/xanthos/hand.svg"
  12558. }
  12559. },
  12560. foot: {
  12561. height: math.unit(1.286, "feet"),
  12562. name: "Foot",
  12563. image: {
  12564. source: "./media/characters/xanthos/foot.svg"
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Normal",
  12571. height: math.unit(6 + 5 / 12, "feet"),
  12572. default: true
  12573. },
  12574. {
  12575. name: "Normal+",
  12576. height: math.unit(6, "meters")
  12577. },
  12578. {
  12579. name: "Macro",
  12580. height: math.unit(40, "feet")
  12581. },
  12582. {
  12583. name: "Macro+",
  12584. height: math.unit(200, "meters")
  12585. },
  12586. {
  12587. name: "Megamacro",
  12588. height: math.unit(20, "km")
  12589. },
  12590. {
  12591. name: "Megamacro+",
  12592. height: math.unit(100, "km")
  12593. },
  12594. ]
  12595. ))
  12596. characterMakers.push(() => makeCharacter(
  12597. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12598. {
  12599. front: {
  12600. height: math.unit(6 + 3 / 12, "feet"),
  12601. weight: math.unit(215, "lb"),
  12602. name: "Front",
  12603. image: {
  12604. source: "./media/characters/grynn/front.svg",
  12605. extra: 4627 / 4209,
  12606. bottom: 0.047
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Micro",
  12613. height: math.unit(6, "inches")
  12614. },
  12615. {
  12616. name: "Normal",
  12617. height: math.unit(6 + 3 / 12, "feet"),
  12618. default: true
  12619. },
  12620. {
  12621. name: "Big",
  12622. height: math.unit(104, "feet")
  12623. },
  12624. {
  12625. name: "Macro",
  12626. height: math.unit(944, "feet")
  12627. },
  12628. {
  12629. name: "Macro+",
  12630. height: math.unit(9480, "feet")
  12631. },
  12632. {
  12633. name: "Megamacro",
  12634. height: math.unit(78752, "feet")
  12635. },
  12636. {
  12637. name: "Megamacro+",
  12638. height: math.unit(630128, "feet")
  12639. },
  12640. {
  12641. name: "Megamacro++",
  12642. height: math.unit(3150695, "feet")
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(7 + 5 / 12, "feet"),
  12651. weight: math.unit(450, "lb"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/mocha-aura/front.svg",
  12655. extra: 1907 / 1817,
  12656. bottom: 0.04
  12657. }
  12658. },
  12659. back: {
  12660. height: math.unit(7 + 5 / 12, "feet"),
  12661. weight: math.unit(450, "lb"),
  12662. name: "Back",
  12663. image: {
  12664. source: "./media/characters/mocha-aura/back.svg",
  12665. extra: 1900 / 1825,
  12666. bottom: 0.045
  12667. }
  12668. },
  12669. },
  12670. [
  12671. {
  12672. name: "Nano",
  12673. height: math.unit(1, "nm")
  12674. },
  12675. {
  12676. name: "Megamicro",
  12677. height: math.unit(1, "mm")
  12678. },
  12679. {
  12680. name: "Micro",
  12681. height: math.unit(3, "inches")
  12682. },
  12683. {
  12684. name: "Normal",
  12685. height: math.unit(7 + 5 / 12, "feet"),
  12686. default: true
  12687. },
  12688. {
  12689. name: "Macro",
  12690. height: math.unit(30, "feet")
  12691. },
  12692. {
  12693. name: "Megamacro",
  12694. height: math.unit(3500, "feet")
  12695. },
  12696. {
  12697. name: "Teramacro",
  12698. height: math.unit(500000, "miles")
  12699. },
  12700. {
  12701. name: "Petamacro",
  12702. height: math.unit(50000000000000000, "parsecs")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(150, "lb"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/ilisha-devya/front.svg",
  12715. extra: 1,
  12716. bottom: 0.175
  12717. }
  12718. },
  12719. back: {
  12720. height: math.unit(6, "feet"),
  12721. weight: math.unit(150, "lb"),
  12722. name: "Back",
  12723. image: {
  12724. source: "./media/characters/ilisha-devya/back.svg",
  12725. extra: 1,
  12726. bottom: 0.015
  12727. }
  12728. },
  12729. },
  12730. [
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(500, "feet"),
  12734. default: true
  12735. },
  12736. {
  12737. name: "Megamacro",
  12738. height: math.unit(10, "miles")
  12739. },
  12740. {
  12741. name: "Gigamacro",
  12742. height: math.unit(100000, "miles")
  12743. },
  12744. {
  12745. name: "Examacro",
  12746. height: math.unit(1e9, "lightyears")
  12747. },
  12748. {
  12749. name: "Omniversal",
  12750. height: math.unit(1e33, "lightyears")
  12751. },
  12752. {
  12753. name: "Beyond Infinite",
  12754. height: math.unit(1e100, "lightyears")
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12760. {
  12761. Side: {
  12762. height: math.unit(6, "feet"),
  12763. weight: math.unit(150, "lb"),
  12764. name: "Side",
  12765. image: {
  12766. source: "./media/characters/mira/side.svg",
  12767. extra: 900 / 799,
  12768. bottom: 0.02
  12769. }
  12770. },
  12771. },
  12772. [
  12773. {
  12774. name: "Human Size",
  12775. height: math.unit(6, "feet")
  12776. },
  12777. {
  12778. name: "Macro",
  12779. height: math.unit(100, "feet"),
  12780. default: true
  12781. },
  12782. {
  12783. name: "Megamacro",
  12784. height: math.unit(10, "miles")
  12785. },
  12786. {
  12787. name: "Gigamacro",
  12788. height: math.unit(25000, "miles")
  12789. },
  12790. {
  12791. name: "Teramacro",
  12792. height: math.unit(300, "AU")
  12793. },
  12794. {
  12795. name: "Full Size",
  12796. height: math.unit(4.5e10, "lightyears")
  12797. },
  12798. ]
  12799. ))
  12800. characterMakers.push(() => makeCharacter(
  12801. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12802. {
  12803. front: {
  12804. height: math.unit(6, "feet"),
  12805. weight: math.unit(150, "lb"),
  12806. name: "Front",
  12807. image: {
  12808. source: "./media/characters/holly/front.svg",
  12809. extra: 639 / 606
  12810. }
  12811. },
  12812. back: {
  12813. height: math.unit(6, "feet"),
  12814. weight: math.unit(150, "lb"),
  12815. name: "Back",
  12816. image: {
  12817. source: "./media/characters/holly/back.svg",
  12818. extra: 623 / 598
  12819. }
  12820. },
  12821. frontWorking: {
  12822. height: math.unit(6, "feet"),
  12823. weight: math.unit(150, "lb"),
  12824. name: "Front (Working)",
  12825. image: {
  12826. source: "./media/characters/holly/front-working.svg",
  12827. extra: 607 / 577,
  12828. bottom: 0.048
  12829. }
  12830. },
  12831. },
  12832. [
  12833. {
  12834. name: "Normal",
  12835. height: math.unit(12 + 3 / 12, "feet"),
  12836. default: true
  12837. },
  12838. ]
  12839. ))
  12840. characterMakers.push(() => makeCharacter(
  12841. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12842. {
  12843. front: {
  12844. height: math.unit(6, "feet"),
  12845. weight: math.unit(150, "lb"),
  12846. name: "Front",
  12847. image: {
  12848. source: "./media/characters/porter/front.svg",
  12849. extra: 1,
  12850. bottom: 0.01
  12851. }
  12852. },
  12853. frontRobes: {
  12854. height: math.unit(6, "feet"),
  12855. weight: math.unit(150, "lb"),
  12856. name: "Front (Robes)",
  12857. image: {
  12858. source: "./media/characters/porter/front-robes.svg",
  12859. extra: 1.01,
  12860. bottom: 0.01
  12861. }
  12862. },
  12863. },
  12864. [
  12865. {
  12866. name: "Normal",
  12867. height: math.unit(11 + 9 / 12, "feet"),
  12868. default: true
  12869. },
  12870. ]
  12871. ))
  12872. characterMakers.push(() => makeCharacter(
  12873. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12874. {
  12875. legendary: {
  12876. height: math.unit(6, "feet"),
  12877. weight: math.unit(150, "lb"),
  12878. name: "Legendary",
  12879. image: {
  12880. source: "./media/characters/lucy/legendary.svg",
  12881. extra: 1355 / 1100,
  12882. bottom: 0.045
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Legendary",
  12889. height: math.unit(86882 * 2, "miles"),
  12890. default: true
  12891. },
  12892. ]
  12893. ))
  12894. characterMakers.push(() => makeCharacter(
  12895. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12896. {
  12897. front: {
  12898. height: math.unit(6, "feet"),
  12899. weight: math.unit(150, "lb"),
  12900. name: "Front",
  12901. image: {
  12902. source: "./media/characters/drusilla/front.svg",
  12903. extra: 678 / 635,
  12904. bottom: 0.03
  12905. }
  12906. },
  12907. back: {
  12908. height: math.unit(6, "feet"),
  12909. weight: math.unit(150, "lb"),
  12910. name: "Back",
  12911. image: {
  12912. source: "./media/characters/drusilla/back.svg",
  12913. extra: 678 / 635,
  12914. bottom: 0.005
  12915. }
  12916. },
  12917. },
  12918. [
  12919. {
  12920. name: "Macro",
  12921. height: math.unit(100, "feet")
  12922. },
  12923. {
  12924. name: "Canon Height",
  12925. height: math.unit(2000, "feet"),
  12926. default: true
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12932. {
  12933. front: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(180, "lb"),
  12936. name: "Front",
  12937. image: {
  12938. source: "./media/characters/renard-thatch/front.svg",
  12939. extra: 2411 / 2275,
  12940. bottom: 0.01
  12941. }
  12942. },
  12943. frontPosing: {
  12944. height: math.unit(6, "feet"),
  12945. weight: math.unit(180, "lb"),
  12946. name: "Front (Posing)",
  12947. image: {
  12948. source: "./media/characters/renard-thatch/front-posing.svg",
  12949. extra: 2381 / 2261,
  12950. bottom: 0.01
  12951. }
  12952. },
  12953. back: {
  12954. height: math.unit(6, "feet"),
  12955. weight: math.unit(180, "lb"),
  12956. name: "Back",
  12957. image: {
  12958. source: "./media/characters/renard-thatch/back.svg",
  12959. extra: 2428 / 2288
  12960. }
  12961. },
  12962. },
  12963. [
  12964. {
  12965. name: "Micro",
  12966. height: math.unit(3, "inches")
  12967. },
  12968. {
  12969. name: "Default",
  12970. height: math.unit(6, "feet"),
  12971. default: true
  12972. },
  12973. {
  12974. name: "Macro",
  12975. height: math.unit(75, "feet")
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12981. {
  12982. front: {
  12983. height: math.unit(1450, "feet"),
  12984. weight: math.unit(1.21e6, "tons"),
  12985. name: "Front",
  12986. image: {
  12987. source: "./media/characters/sekvra/front.svg",
  12988. extra: 1,
  12989. bottom: 0.03
  12990. }
  12991. },
  12992. frontClothed: {
  12993. height: math.unit(1450, "feet"),
  12994. weight: math.unit(1.21e6, "tons"),
  12995. name: "Front (Clothed)",
  12996. image: {
  12997. source: "./media/characters/sekvra/front-clothed.svg",
  12998. extra: 1,
  12999. bottom: 0.03
  13000. }
  13001. },
  13002. side: {
  13003. height: math.unit(1450, "feet"),
  13004. weight: math.unit(1.21e6, "tons"),
  13005. name: "Side",
  13006. image: {
  13007. source: "./media/characters/sekvra/side.svg",
  13008. extra: 1,
  13009. bottom: 0.025
  13010. }
  13011. },
  13012. back: {
  13013. height: math.unit(1450, "feet"),
  13014. weight: math.unit(1.21e6, "tons"),
  13015. name: "Back",
  13016. image: {
  13017. source: "./media/characters/sekvra/back.svg",
  13018. extra: 1,
  13019. bottom: 0.005
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Macro",
  13026. height: math.unit(1450, "feet"),
  13027. default: true
  13028. },
  13029. {
  13030. name: "Megamacro",
  13031. height: math.unit(15000, "feet")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(150, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/carmine/front.svg",
  13044. extra: 1,
  13045. bottom: 0.035
  13046. }
  13047. },
  13048. frontArmor: {
  13049. height: math.unit(6, "feet"),
  13050. weight: math.unit(150, "lb"),
  13051. name: "Front (Armor)",
  13052. image: {
  13053. source: "./media/characters/carmine/front-armor.svg",
  13054. extra: 1,
  13055. bottom: 0.035
  13056. }
  13057. },
  13058. },
  13059. [
  13060. {
  13061. name: "Large",
  13062. height: math.unit(1, "mile")
  13063. },
  13064. {
  13065. name: "Huge",
  13066. height: math.unit(40, "miles"),
  13067. default: true
  13068. },
  13069. {
  13070. name: "Colossal",
  13071. height: math.unit(2500, "miles")
  13072. },
  13073. ]
  13074. ))
  13075. characterMakers.push(() => makeCharacter(
  13076. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13077. {
  13078. front: {
  13079. height: math.unit(6, "feet"),
  13080. weight: math.unit(150, "lb"),
  13081. name: "Front",
  13082. image: {
  13083. source: "./media/characters/elyssia/front.svg",
  13084. extra: 2201 / 2035,
  13085. bottom: 0.05
  13086. }
  13087. },
  13088. frontClothed: {
  13089. height: math.unit(6, "feet"),
  13090. weight: math.unit(150, "lb"),
  13091. name: "Front (Clothed)",
  13092. image: {
  13093. source: "./media/characters/elyssia/front-clothed.svg",
  13094. extra: 2201 / 2035,
  13095. bottom: 0.05
  13096. }
  13097. },
  13098. back: {
  13099. height: math.unit(6, "feet"),
  13100. weight: math.unit(150, "lb"),
  13101. name: "Back",
  13102. image: {
  13103. source: "./media/characters/elyssia/back.svg",
  13104. extra: 2201 / 2035,
  13105. bottom: 0.013
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Smaller",
  13112. height: math.unit(150, "feet")
  13113. },
  13114. {
  13115. name: "Standard",
  13116. height: math.unit(1400, "feet"),
  13117. default: true
  13118. },
  13119. {
  13120. name: "Distracted",
  13121. height: math.unit(15000, "feet")
  13122. },
  13123. ]
  13124. ))
  13125. characterMakers.push(() => makeCharacter(
  13126. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13127. {
  13128. front: {
  13129. height: math.unit(7 + 4 / 12, "feet"),
  13130. weight: math.unit(500, "lb"),
  13131. name: "Front",
  13132. image: {
  13133. source: "./media/characters/geno-maxwell/front.svg",
  13134. extra: 2207 / 2040,
  13135. bottom: 0.015
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Micro",
  13142. height: math.unit(3, "inches")
  13143. },
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(7 + 4 / 12, "feet"),
  13147. default: true
  13148. },
  13149. {
  13150. name: "Macro",
  13151. height: math.unit(220, "feet")
  13152. },
  13153. {
  13154. name: "Megamacro",
  13155. height: math.unit(11, "miles")
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(7 + 4 / 12, "feet"),
  13164. weight: math.unit(500, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/regena-maxwell/front.svg",
  13168. extra: 3115 / 2770,
  13169. bottom: 0.02
  13170. }
  13171. },
  13172. },
  13173. [
  13174. {
  13175. name: "Normal",
  13176. height: math.unit(7 + 4 / 12, "feet"),
  13177. default: true
  13178. },
  13179. {
  13180. name: "Macro",
  13181. height: math.unit(220, "feet")
  13182. },
  13183. {
  13184. name: "Megamacro",
  13185. height: math.unit(11, "miles")
  13186. },
  13187. ]
  13188. ))
  13189. characterMakers.push(() => makeCharacter(
  13190. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13191. {
  13192. front: {
  13193. height: math.unit(6, "feet"),
  13194. weight: math.unit(150, "lb"),
  13195. name: "Front",
  13196. image: {
  13197. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13198. extra: 860 / 690,
  13199. bottom: 0.03
  13200. }
  13201. },
  13202. },
  13203. [
  13204. {
  13205. name: "Normal",
  13206. height: math.unit(1.7, "meters"),
  13207. default: true
  13208. },
  13209. ]
  13210. ))
  13211. characterMakers.push(() => makeCharacter(
  13212. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13213. {
  13214. front: {
  13215. height: math.unit(6, "feet"),
  13216. weight: math.unit(150, "lb"),
  13217. name: "Front",
  13218. image: {
  13219. source: "./media/characters/quilly/front.svg",
  13220. extra: 890 / 776
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Gigamacro",
  13227. height: math.unit(404090, "miles"),
  13228. default: true
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13234. {
  13235. front: {
  13236. height: math.unit(7 + 8 / 12, "feet"),
  13237. weight: math.unit(350, "lb"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/tempest/front.svg",
  13241. extra: 1175 / 1086,
  13242. bottom: 0.02
  13243. }
  13244. },
  13245. },
  13246. [
  13247. {
  13248. name: "Normal",
  13249. height: math.unit(7 + 8 / 12, "feet"),
  13250. default: true
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13256. {
  13257. side: {
  13258. height: math.unit(4 + 5 / 12, "feet"),
  13259. weight: math.unit(80, "lb"),
  13260. name: "Side",
  13261. image: {
  13262. source: "./media/characters/rodger/side.svg",
  13263. extra: 1235 / 1118
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Micro",
  13270. height: math.unit(1, "inch")
  13271. },
  13272. {
  13273. name: "Normal",
  13274. height: math.unit(4 + 5 / 12, "feet"),
  13275. default: true
  13276. },
  13277. {
  13278. name: "Macro",
  13279. height: math.unit(120, "feet")
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13285. {
  13286. front: {
  13287. height: math.unit(6, "feet"),
  13288. weight: math.unit(150, "lb"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/danyel/front.svg",
  13292. extra: 1185 / 1123,
  13293. bottom: 0.05
  13294. }
  13295. },
  13296. },
  13297. [
  13298. {
  13299. name: "Shrunken",
  13300. height: math.unit(0.5, "mm")
  13301. },
  13302. {
  13303. name: "Micro",
  13304. height: math.unit(1, "mm"),
  13305. default: true
  13306. },
  13307. {
  13308. name: "Upsized",
  13309. height: math.unit(5 + 5 / 12, "feet")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(5 + 6 / 12, "feet"),
  13318. weight: math.unit(200, "lb"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/vivian-bijoux/front.svg",
  13322. extra: 1,
  13323. bottom: 0.072
  13324. }
  13325. },
  13326. },
  13327. [
  13328. {
  13329. name: "Normal",
  13330. height: math.unit(5 + 6 / 12, "feet"),
  13331. default: true
  13332. },
  13333. {
  13334. name: "Bad Dream",
  13335. height: math.unit(500, "feet")
  13336. },
  13337. {
  13338. name: "Nightmare",
  13339. height: math.unit(500, "miles")
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13345. {
  13346. front: {
  13347. height: math.unit(6 + 1 / 12, "feet"),
  13348. weight: math.unit(260, "lb"),
  13349. name: "Front",
  13350. image: {
  13351. source: "./media/characters/zeta/front.svg",
  13352. extra: 1968 / 1889,
  13353. bottom: 0.06
  13354. }
  13355. },
  13356. back: {
  13357. height: math.unit(6 + 1 / 12, "feet"),
  13358. weight: math.unit(260, "lb"),
  13359. name: "Back",
  13360. image: {
  13361. source: "./media/characters/zeta/back.svg",
  13362. extra: 1944 / 1858,
  13363. bottom: 0.03
  13364. }
  13365. },
  13366. hand: {
  13367. height: math.unit(1.112, "feet"),
  13368. name: "Hand",
  13369. image: {
  13370. source: "./media/characters/zeta/hand.svg"
  13371. }
  13372. },
  13373. foot: {
  13374. height: math.unit(1.48, "feet"),
  13375. name: "Foot",
  13376. image: {
  13377. source: "./media/characters/zeta/foot.svg"
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Micro",
  13384. height: math.unit(6, "inches")
  13385. },
  13386. {
  13387. name: "Normal",
  13388. height: math.unit(6 + 1 / 12, "feet"),
  13389. default: true
  13390. },
  13391. {
  13392. name: "Macro",
  13393. height: math.unit(20, "feet")
  13394. },
  13395. ]
  13396. ))
  13397. characterMakers.push(() => makeCharacter(
  13398. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13399. {
  13400. front: {
  13401. height: math.unit(6, "feet"),
  13402. weight: math.unit(150, "lb"),
  13403. name: "Front",
  13404. image: {
  13405. source: "./media/characters/jamie-larsen/front.svg",
  13406. extra: 962 / 933,
  13407. bottom: 0.02
  13408. }
  13409. },
  13410. back: {
  13411. height: math.unit(6, "feet"),
  13412. weight: math.unit(150, "lb"),
  13413. name: "Back",
  13414. image: {
  13415. source: "./media/characters/jamie-larsen/back.svg",
  13416. extra: 997 / 946
  13417. }
  13418. },
  13419. },
  13420. [
  13421. {
  13422. name: "Macro",
  13423. height: math.unit(28 + 7 / 12, "feet"),
  13424. default: true
  13425. },
  13426. {
  13427. name: "Macro+",
  13428. height: math.unit(180, "feet")
  13429. },
  13430. {
  13431. name: "Megamacro",
  13432. height: math.unit(10, "miles")
  13433. },
  13434. {
  13435. name: "Gigamacro",
  13436. height: math.unit(200000, "miles")
  13437. },
  13438. ]
  13439. ))
  13440. characterMakers.push(() => makeCharacter(
  13441. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13442. {
  13443. front: {
  13444. height: math.unit(6, "feet"),
  13445. weight: math.unit(120, "lb"),
  13446. name: "Front",
  13447. image: {
  13448. source: "./media/characters/vance/front.svg",
  13449. extra: 1980 / 1890,
  13450. bottom: 0.09
  13451. }
  13452. },
  13453. back: {
  13454. height: math.unit(6, "feet"),
  13455. weight: math.unit(120, "lb"),
  13456. name: "Back",
  13457. image: {
  13458. source: "./media/characters/vance/back.svg",
  13459. extra: 2081 / 1994,
  13460. bottom: 0.014
  13461. }
  13462. },
  13463. hand: {
  13464. height: math.unit(0.88, "feet"),
  13465. name: "Hand",
  13466. image: {
  13467. source: "./media/characters/vance/hand.svg"
  13468. }
  13469. },
  13470. foot: {
  13471. height: math.unit(0.64, "feet"),
  13472. name: "Foot",
  13473. image: {
  13474. source: "./media/characters/vance/foot.svg"
  13475. }
  13476. },
  13477. },
  13478. [
  13479. {
  13480. name: "Small",
  13481. height: math.unit(90, "feet"),
  13482. default: true
  13483. },
  13484. {
  13485. name: "Macro",
  13486. height: math.unit(100, "meters")
  13487. },
  13488. {
  13489. name: "Megamacro",
  13490. height: math.unit(15, "miles")
  13491. },
  13492. ]
  13493. ))
  13494. characterMakers.push(() => makeCharacter(
  13495. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13496. {
  13497. front: {
  13498. height: math.unit(6, "feet"),
  13499. weight: math.unit(180, "lb"),
  13500. name: "Front",
  13501. image: {
  13502. source: "./media/characters/xochitl/front.svg",
  13503. extra: 2297 / 2261,
  13504. bottom: 0.065
  13505. }
  13506. },
  13507. back: {
  13508. height: math.unit(6, "feet"),
  13509. weight: math.unit(180, "lb"),
  13510. name: "Back",
  13511. image: {
  13512. source: "./media/characters/xochitl/back.svg",
  13513. extra: 2386 / 2354,
  13514. bottom: 0.01
  13515. }
  13516. },
  13517. foot: {
  13518. height: math.unit(6 / 5 * 1.15, "feet"),
  13519. weight: math.unit(150, "lb"),
  13520. name: "Foot",
  13521. image: {
  13522. source: "./media/characters/xochitl/foot.svg"
  13523. }
  13524. },
  13525. },
  13526. [
  13527. {
  13528. name: "Macro",
  13529. height: math.unit(80, "feet")
  13530. },
  13531. {
  13532. name: "Macro+",
  13533. height: math.unit(400, "feet"),
  13534. default: true
  13535. },
  13536. {
  13537. name: "Gigamacro",
  13538. height: math.unit(80000, "miles")
  13539. },
  13540. {
  13541. name: "Gigamacro+",
  13542. height: math.unit(400000, "miles")
  13543. },
  13544. {
  13545. name: "Teramacro",
  13546. height: math.unit(300, "AU")
  13547. },
  13548. ]
  13549. ))
  13550. characterMakers.push(() => makeCharacter(
  13551. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13552. {
  13553. front: {
  13554. height: math.unit(6, "feet"),
  13555. weight: math.unit(150, "lb"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/vincent/front.svg",
  13559. extra: 1130 / 1080,
  13560. bottom: 0.055
  13561. }
  13562. },
  13563. beak: {
  13564. height: math.unit(6 * 0.1, "feet"),
  13565. name: "Beak",
  13566. image: {
  13567. source: "./media/characters/vincent/beak.svg"
  13568. }
  13569. },
  13570. hand: {
  13571. height: math.unit(6 * 0.85, "feet"),
  13572. weight: math.unit(150, "lb"),
  13573. name: "Hand",
  13574. image: {
  13575. source: "./media/characters/vincent/hand.svg"
  13576. }
  13577. },
  13578. foot: {
  13579. height: math.unit(6 * 0.19, "feet"),
  13580. weight: math.unit(150, "lb"),
  13581. name: "Foot",
  13582. image: {
  13583. source: "./media/characters/vincent/foot.svg"
  13584. }
  13585. },
  13586. },
  13587. [
  13588. {
  13589. name: "Base",
  13590. height: math.unit(6 + 5 / 12, "feet"),
  13591. default: true
  13592. },
  13593. {
  13594. name: "Macro",
  13595. height: math.unit(300, "feet")
  13596. },
  13597. {
  13598. name: "Megamacro",
  13599. height: math.unit(2, "miles")
  13600. },
  13601. {
  13602. name: "Gigamacro",
  13603. height: math.unit(1000, "miles")
  13604. },
  13605. ]
  13606. ))
  13607. characterMakers.push(() => makeCharacter(
  13608. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13609. {
  13610. front: {
  13611. height: math.unit(2, "meters"),
  13612. weight: math.unit(500, "kg"),
  13613. name: "Front",
  13614. image: {
  13615. source: "./media/characters/coatl/front.svg",
  13616. extra: 3948 / 3500,
  13617. bottom: 0.082
  13618. }
  13619. },
  13620. },
  13621. [
  13622. {
  13623. name: "Normal",
  13624. height: math.unit(4, "meters")
  13625. },
  13626. {
  13627. name: "Macro",
  13628. height: math.unit(100, "meters"),
  13629. default: true
  13630. },
  13631. {
  13632. name: "Macro+",
  13633. height: math.unit(300, "meters")
  13634. },
  13635. {
  13636. name: "Megamacro",
  13637. height: math.unit(3, "gigameters")
  13638. },
  13639. {
  13640. name: "Megamacro+",
  13641. height: math.unit(300, "terameters")
  13642. },
  13643. {
  13644. name: "Megamacro++",
  13645. height: math.unit(3, "lightyears")
  13646. },
  13647. ]
  13648. ))
  13649. characterMakers.push(() => makeCharacter(
  13650. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13651. {
  13652. front: {
  13653. height: math.unit(6, "feet"),
  13654. weight: math.unit(50, "kg"),
  13655. name: "front",
  13656. image: {
  13657. source: "./media/characters/shiroryu/front.svg",
  13658. extra: 1990 / 1935
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Mortal Mingling",
  13665. height: math.unit(3, "meters")
  13666. },
  13667. {
  13668. name: "Kaiju-ish",
  13669. height: math.unit(250, "meters")
  13670. },
  13671. {
  13672. name: "Somewhat Godly",
  13673. height: math.unit(400, "km"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Planetary",
  13678. height: math.unit(300, "megameters")
  13679. },
  13680. {
  13681. name: "Galaxy-dwarfing",
  13682. height: math.unit(450, "kiloparsecs")
  13683. },
  13684. {
  13685. name: "Universe Eater",
  13686. height: math.unit(150, "gigaparsecs")
  13687. },
  13688. {
  13689. name: "Almost Immeasurable",
  13690. height: math.unit(1.3e266, "yottaparsecs")
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13696. {
  13697. front: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(150, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/umeko/front.svg",
  13703. extra: 1,
  13704. bottom: 0.019
  13705. }
  13706. },
  13707. frontArmored: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Front (Armored)",
  13711. image: {
  13712. source: "./media/characters/umeko/front-armored.svg",
  13713. extra: 1,
  13714. bottom: 0.021
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Macro",
  13721. height: math.unit(220, "feet"),
  13722. default: true
  13723. },
  13724. {
  13725. name: "Guardian Dragon",
  13726. height: math.unit(50, "miles")
  13727. },
  13728. {
  13729. name: "Cosmic",
  13730. height: math.unit(800000, "miles")
  13731. },
  13732. ]
  13733. ))
  13734. characterMakers.push(() => makeCharacter(
  13735. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13736. {
  13737. front: {
  13738. height: math.unit(6, "feet"),
  13739. weight: math.unit(150, "lb"),
  13740. name: "Front",
  13741. image: {
  13742. source: "./media/characters/cassidy/front.svg",
  13743. extra: 1,
  13744. bottom: 0.043
  13745. }
  13746. },
  13747. },
  13748. [
  13749. {
  13750. name: "Canon Height",
  13751. height: math.unit(120, "feet"),
  13752. default: true
  13753. },
  13754. {
  13755. name: "Macro+",
  13756. height: math.unit(400, "feet")
  13757. },
  13758. {
  13759. name: "Macro++",
  13760. height: math.unit(4000, "feet")
  13761. },
  13762. {
  13763. name: "Megamacro",
  13764. height: math.unit(3, "miles")
  13765. },
  13766. ]
  13767. ))
  13768. characterMakers.push(() => makeCharacter(
  13769. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13770. {
  13771. front: {
  13772. height: math.unit(6, "feet"),
  13773. weight: math.unit(150, "lb"),
  13774. name: "Front",
  13775. image: {
  13776. source: "./media/characters/isaac/front.svg",
  13777. extra: 896 / 815,
  13778. bottom: 0.11
  13779. }
  13780. },
  13781. },
  13782. [
  13783. {
  13784. name: "Human Size",
  13785. height: math.unit(8, "feet"),
  13786. default: true
  13787. },
  13788. {
  13789. name: "Macro",
  13790. height: math.unit(400, "feet")
  13791. },
  13792. {
  13793. name: "Megamacro",
  13794. height: math.unit(50, "miles")
  13795. },
  13796. {
  13797. name: "Canon Height",
  13798. height: math.unit(200, "AU")
  13799. },
  13800. ]
  13801. ))
  13802. characterMakers.push(() => makeCharacter(
  13803. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13804. {
  13805. front: {
  13806. height: math.unit(6, "feet"),
  13807. weight: math.unit(72, "kg"),
  13808. name: "Front",
  13809. image: {
  13810. source: "./media/characters/sleekit/front.svg",
  13811. extra: 4693 / 4487,
  13812. bottom: 0.012
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Minimum Height",
  13819. height: math.unit(10, "meters")
  13820. },
  13821. {
  13822. name: "Smaller",
  13823. height: math.unit(25, "meters")
  13824. },
  13825. {
  13826. name: "Larger",
  13827. height: math.unit(38, "meters"),
  13828. default: true
  13829. },
  13830. {
  13831. name: "Maximum height",
  13832. height: math.unit(100, "meters")
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13838. {
  13839. front: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(150, "lb"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/nillia/front.svg",
  13845. extra: 2195 / 2037,
  13846. bottom: 0.005
  13847. }
  13848. },
  13849. back: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(150, "lb"),
  13852. name: "Back",
  13853. image: {
  13854. source: "./media/characters/nillia/back.svg",
  13855. extra: 2195 / 2037,
  13856. bottom: 0.005
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Canon Height",
  13863. height: math.unit(489, "feet"),
  13864. default: true
  13865. }
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/mesmyriza/front.svg",
  13877. extra: 2067 / 1784,
  13878. bottom: 0.035
  13879. }
  13880. },
  13881. foot: {
  13882. height: math.unit(6 / (250 / 35), "feet"),
  13883. name: "Foot",
  13884. image: {
  13885. source: "./media/characters/mesmyriza/foot.svg"
  13886. }
  13887. },
  13888. },
  13889. [
  13890. {
  13891. name: "Macro",
  13892. height: math.unit(457, "meters"),
  13893. default: true
  13894. },
  13895. {
  13896. name: "Megamacro",
  13897. height: math.unit(8, "megameters")
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(6, "feet"),
  13906. weight: math.unit(250, "lb"),
  13907. name: "Front",
  13908. image: {
  13909. source: "./media/characters/saudade/front.svg",
  13910. extra: 1172 / 1139,
  13911. bottom: 0.035
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "Micro",
  13918. height: math.unit(3, "inches")
  13919. },
  13920. {
  13921. name: "Normal",
  13922. height: math.unit(6, "feet"),
  13923. default: true
  13924. },
  13925. {
  13926. name: "Macro",
  13927. height: math.unit(50, "feet")
  13928. },
  13929. {
  13930. name: "Megamacro",
  13931. height: math.unit(2800, "feet")
  13932. },
  13933. ]
  13934. ))
  13935. characterMakers.push(() => makeCharacter(
  13936. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13937. {
  13938. front: {
  13939. height: math.unit(5 + 4 / 12, "feet"),
  13940. weight: math.unit(100, "lb"),
  13941. name: "Front",
  13942. image: {
  13943. source: "./media/characters/keireer/front.svg",
  13944. extra: 716 / 666,
  13945. bottom: 0.05
  13946. }
  13947. },
  13948. },
  13949. [
  13950. {
  13951. name: "Normal",
  13952. height: math.unit(5 + 4 / 12, "feet"),
  13953. default: true
  13954. },
  13955. ]
  13956. ))
  13957. characterMakers.push(() => makeCharacter(
  13958. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13959. {
  13960. front: {
  13961. height: math.unit(6, "feet"),
  13962. weight: math.unit(90, "kg"),
  13963. name: "Front",
  13964. image: {
  13965. source: "./media/characters/mirja/front.svg",
  13966. extra: 1789 / 1683,
  13967. bottom: 0.05
  13968. }
  13969. },
  13970. frontDressed: {
  13971. height: math.unit(6, "feet"),
  13972. weight: math.unit(90, "lb"),
  13973. name: "Front (Dressed)",
  13974. image: {
  13975. source: "./media/characters/mirja/front-dressed.svg",
  13976. extra: 1789 / 1683,
  13977. bottom: 0.05
  13978. }
  13979. },
  13980. back: {
  13981. height: math.unit(6, "feet"),
  13982. weight: math.unit(90, "lb"),
  13983. name: "Back",
  13984. image: {
  13985. source: "./media/characters/mirja/back.svg",
  13986. extra: 953 / 917,
  13987. bottom: 0.017
  13988. }
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "\"Incognito\"",
  13994. height: math.unit(3, "meters")
  13995. },
  13996. {
  13997. name: "Strolling Size",
  13998. height: math.unit(15, "km")
  13999. },
  14000. {
  14001. name: "Larger Strolling Size",
  14002. height: math.unit(400, "km")
  14003. },
  14004. {
  14005. name: "Preferred Size",
  14006. height: math.unit(5000, "km")
  14007. },
  14008. {
  14009. name: "True Size",
  14010. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14011. default: true
  14012. },
  14013. ]
  14014. ))
  14015. characterMakers.push(() => makeCharacter(
  14016. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14017. {
  14018. front: {
  14019. height: math.unit(15, "feet"),
  14020. weight: math.unit(880, "kg"),
  14021. name: "Front",
  14022. image: {
  14023. source: "./media/characters/nightraver/front.svg",
  14024. extra: 2444 / 2160,
  14025. bottom: 0.027
  14026. }
  14027. },
  14028. back: {
  14029. height: math.unit(15, "feet"),
  14030. weight: math.unit(880, "kg"),
  14031. name: "Back",
  14032. image: {
  14033. source: "./media/characters/nightraver/back.svg",
  14034. extra: 2309 / 2180,
  14035. bottom: 0.005
  14036. }
  14037. },
  14038. sole: {
  14039. height: math.unit(2.878, "feet"),
  14040. name: "Sole",
  14041. image: {
  14042. source: "./media/characters/nightraver/sole.svg"
  14043. }
  14044. },
  14045. foot: {
  14046. height: math.unit(2.285, "feet"),
  14047. name: "Foot",
  14048. image: {
  14049. source: "./media/characters/nightraver/foot.svg"
  14050. }
  14051. },
  14052. maw: {
  14053. height: math.unit(2.67, "feet"),
  14054. name: "Maw",
  14055. image: {
  14056. source: "./media/characters/nightraver/maw.svg"
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Micro",
  14063. height: math.unit(1, "cm")
  14064. },
  14065. {
  14066. name: "Normal",
  14067. height: math.unit(15, "feet"),
  14068. default: true
  14069. },
  14070. {
  14071. name: "Macro",
  14072. height: math.unit(300, "feet")
  14073. },
  14074. {
  14075. name: "Megamacro",
  14076. height: math.unit(300, "miles")
  14077. },
  14078. {
  14079. name: "Gigamacro",
  14080. height: math.unit(10000, "miles")
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14086. {
  14087. side: {
  14088. height: math.unit(2, "inches"),
  14089. weight: math.unit(5, "grams"),
  14090. name: "Side",
  14091. image: {
  14092. source: "./media/characters/arc/side.svg"
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Micro",
  14099. height: math.unit(2, "inches"),
  14100. default: true
  14101. },
  14102. ]
  14103. ))
  14104. characterMakers.push(() => makeCharacter(
  14105. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14106. {
  14107. front: {
  14108. height: math.unit(1.1938, "meters"),
  14109. weight: math.unit(54, "kg"),
  14110. name: "Front",
  14111. image: {
  14112. source: "./media/characters/nebula-shahar/front.svg",
  14113. extra: 1642 / 1436,
  14114. bottom: 0.06
  14115. }
  14116. },
  14117. },
  14118. [
  14119. {
  14120. name: "Megamicro",
  14121. height: math.unit(0.3, "mm")
  14122. },
  14123. {
  14124. name: "Micro",
  14125. height: math.unit(3, "cm")
  14126. },
  14127. {
  14128. name: "Normal",
  14129. height: math.unit(138, "cm"),
  14130. default: true
  14131. },
  14132. {
  14133. name: "Macro",
  14134. height: math.unit(30, "m")
  14135. },
  14136. ]
  14137. ))
  14138. characterMakers.push(() => makeCharacter(
  14139. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14140. {
  14141. front: {
  14142. height: math.unit(5.24, "feet"),
  14143. weight: math.unit(150, "lb"),
  14144. name: "Front",
  14145. image: {
  14146. source: "./media/characters/shayla/front.svg",
  14147. extra: 1512 / 1414,
  14148. bottom: 0.01
  14149. }
  14150. },
  14151. back: {
  14152. height: math.unit(5.24, "feet"),
  14153. weight: math.unit(150, "lb"),
  14154. name: "Back",
  14155. image: {
  14156. source: "./media/characters/shayla/back.svg",
  14157. extra: 1512 / 1414
  14158. }
  14159. },
  14160. hand: {
  14161. height: math.unit(0.7781496062992126, "feet"),
  14162. name: "Hand",
  14163. image: {
  14164. source: "./media/characters/shayla/hand.svg"
  14165. }
  14166. },
  14167. foot: {
  14168. height: math.unit(1.4206036745406823, "feet"),
  14169. name: "Foot",
  14170. image: {
  14171. source: "./media/characters/shayla/foot.svg"
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Micro",
  14178. height: math.unit(0.32, "feet")
  14179. },
  14180. {
  14181. name: "Normal",
  14182. height: math.unit(5.24, "feet"),
  14183. default: true
  14184. },
  14185. {
  14186. name: "Macro",
  14187. height: math.unit(492.12, "feet")
  14188. },
  14189. {
  14190. name: "Megamacro",
  14191. height: math.unit(186.41, "miles")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(2.2, "m"),
  14200. weight: math.unit(120, "kg"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/pia-jr/front.svg",
  14204. extra: 1000 / 970,
  14205. bottom: 0.035
  14206. }
  14207. },
  14208. hand: {
  14209. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14210. name: "Hand",
  14211. image: {
  14212. source: "./media/characters/pia-jr/hand.svg"
  14213. }
  14214. },
  14215. paw: {
  14216. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14217. name: "Paw",
  14218. image: {
  14219. source: "./media/characters/pia-jr/paw.svg"
  14220. }
  14221. },
  14222. },
  14223. [
  14224. {
  14225. name: "Micro",
  14226. height: math.unit(1.2, "cm")
  14227. },
  14228. {
  14229. name: "Normal",
  14230. height: math.unit(2.2, "m"),
  14231. default: true
  14232. },
  14233. {
  14234. name: "Macro",
  14235. height: math.unit(180, "m")
  14236. },
  14237. {
  14238. name: "Megamacro",
  14239. height: math.unit(420, "km")
  14240. },
  14241. ]
  14242. ))
  14243. characterMakers.push(() => makeCharacter(
  14244. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14245. {
  14246. front: {
  14247. height: math.unit(2, "m"),
  14248. weight: math.unit(115, "kg"),
  14249. name: "Front",
  14250. image: {
  14251. source: "./media/characters/pia-sr/front.svg",
  14252. extra: 760 / 730,
  14253. bottom: 0.015
  14254. }
  14255. },
  14256. back: {
  14257. height: math.unit(2, "m"),
  14258. weight: math.unit(115, "kg"),
  14259. name: "Back",
  14260. image: {
  14261. source: "./media/characters/pia-sr/back.svg",
  14262. extra: 760 / 730,
  14263. bottom: 0.01
  14264. }
  14265. },
  14266. hand: {
  14267. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14268. name: "Hand",
  14269. image: {
  14270. source: "./media/characters/pia-sr/hand.svg"
  14271. }
  14272. },
  14273. foot: {
  14274. height: math.unit(1.83, "feet"),
  14275. name: "Foot",
  14276. image: {
  14277. source: "./media/characters/pia-sr/foot.svg"
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Micro",
  14284. height: math.unit(88, "mm")
  14285. },
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(2, "m"),
  14289. default: true
  14290. },
  14291. {
  14292. name: "Macro",
  14293. height: math.unit(200, "m")
  14294. },
  14295. {
  14296. name: "Megamacro",
  14297. height: math.unit(420, "km")
  14298. },
  14299. ]
  14300. ))
  14301. characterMakers.push(() => makeCharacter(
  14302. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14303. {
  14304. front: {
  14305. height: math.unit(8 + 2 / 12, "feet"),
  14306. weight: math.unit(300, "lb"),
  14307. name: "Front",
  14308. image: {
  14309. source: "./media/characters/kibibyte/front.svg",
  14310. extra: 2221 / 2098,
  14311. bottom: 0.04
  14312. }
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "Normal",
  14318. height: math.unit(8 + 2 / 12, "feet"),
  14319. default: true
  14320. },
  14321. {
  14322. name: "Socialable Macro",
  14323. height: math.unit(50, "feet")
  14324. },
  14325. {
  14326. name: "Macro",
  14327. height: math.unit(300, "feet")
  14328. },
  14329. {
  14330. name: "Megamacro",
  14331. height: math.unit(500, "miles")
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14337. {
  14338. front: {
  14339. height: math.unit(6, "feet"),
  14340. weight: math.unit(150, "lb"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/felix/front.svg",
  14344. extra: 762 / 722,
  14345. bottom: 0.02
  14346. }
  14347. },
  14348. frontClothed: {
  14349. height: math.unit(6, "feet"),
  14350. weight: math.unit(150, "lb"),
  14351. name: "Front (Clothed)",
  14352. image: {
  14353. source: "./media/characters/felix/front-clothed.svg",
  14354. extra: 762 / 722,
  14355. bottom: 0.02
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(6 + 8 / 12, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Macro",
  14367. height: math.unit(2600, "feet")
  14368. },
  14369. {
  14370. name: "Megamacro",
  14371. height: math.unit(450, "miles")
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(6 + 1 / 12, "feet"),
  14380. weight: math.unit(250, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/tobo/front.svg",
  14384. extra: 608 / 586,
  14385. bottom: 0.023
  14386. }
  14387. },
  14388. back: {
  14389. height: math.unit(6 + 1 / 12, "feet"),
  14390. weight: math.unit(250, "lb"),
  14391. name: "Back",
  14392. image: {
  14393. source: "./media/characters/tobo/back.svg",
  14394. extra: 608 / 586
  14395. }
  14396. },
  14397. },
  14398. [
  14399. {
  14400. name: "Nano",
  14401. height: math.unit(2, "nm")
  14402. },
  14403. {
  14404. name: "Megamicro",
  14405. height: math.unit(0.1, "mm")
  14406. },
  14407. {
  14408. name: "Micro",
  14409. height: math.unit(1, "inch"),
  14410. default: true
  14411. },
  14412. {
  14413. name: "Human-sized",
  14414. height: math.unit(6 + 1 / 12, "feet")
  14415. },
  14416. {
  14417. name: "Macro",
  14418. height: math.unit(250, "feet")
  14419. },
  14420. {
  14421. name: "Megamacro",
  14422. height: math.unit(75, "miles")
  14423. },
  14424. {
  14425. name: "Texas-sized",
  14426. height: math.unit(750, "miles")
  14427. },
  14428. {
  14429. name: "Teramacro",
  14430. height: math.unit(50000, "miles")
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14436. {
  14437. front: {
  14438. height: math.unit(6, "feet"),
  14439. weight: math.unit(269, "lb"),
  14440. name: "Front",
  14441. image: {
  14442. source: "./media/characters/danny-kapowsky/front.svg",
  14443. extra: 766 / 736,
  14444. bottom: 0.044
  14445. }
  14446. },
  14447. back: {
  14448. height: math.unit(6, "feet"),
  14449. weight: math.unit(269, "lb"),
  14450. name: "Back",
  14451. image: {
  14452. source: "./media/characters/danny-kapowsky/back.svg",
  14453. extra: 797 / 760,
  14454. bottom: 0.025
  14455. }
  14456. },
  14457. },
  14458. [
  14459. {
  14460. name: "Macro",
  14461. height: math.unit(150, "feet"),
  14462. default: true
  14463. },
  14464. {
  14465. name: "Macro+",
  14466. height: math.unit(200, "feet")
  14467. },
  14468. {
  14469. name: "Macro++",
  14470. height: math.unit(300, "feet")
  14471. },
  14472. {
  14473. name: "Macro+++",
  14474. height: math.unit(400, "feet")
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14480. {
  14481. side: {
  14482. height: math.unit(6, "feet"),
  14483. weight: math.unit(170, "lb"),
  14484. name: "Side",
  14485. image: {
  14486. source: "./media/characters/finn/side.svg",
  14487. extra: 1953 / 1807,
  14488. bottom: 0.057
  14489. }
  14490. },
  14491. },
  14492. [
  14493. {
  14494. name: "Megamacro",
  14495. height: math.unit(14445, "feet"),
  14496. default: true
  14497. },
  14498. ]
  14499. ))
  14500. characterMakers.push(() => makeCharacter(
  14501. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14502. {
  14503. front: {
  14504. height: math.unit(5 + 6 / 12, "feet"),
  14505. weight: math.unit(125, "lb"),
  14506. name: "Front",
  14507. image: {
  14508. source: "./media/characters/roy/front.svg",
  14509. extra: 1,
  14510. bottom: 0.11
  14511. }
  14512. },
  14513. },
  14514. [
  14515. {
  14516. name: "Micro",
  14517. height: math.unit(3, "inches"),
  14518. default: true
  14519. },
  14520. {
  14521. name: "Normal",
  14522. height: math.unit(5 + 6 / 12, "feet")
  14523. },
  14524. {
  14525. name: "Lesser Macro",
  14526. height: math.unit(60, "feet")
  14527. },
  14528. {
  14529. name: "Greater Macro",
  14530. height: math.unit(120, "feet")
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(6, "feet"),
  14539. weight: math.unit(100, "lb"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/aevsivs/front.svg",
  14543. extra: 1,
  14544. bottom: 0.03
  14545. }
  14546. },
  14547. back: {
  14548. height: math.unit(6, "feet"),
  14549. weight: math.unit(100, "lb"),
  14550. name: "Back",
  14551. image: {
  14552. source: "./media/characters/aevsivs/back.svg"
  14553. }
  14554. },
  14555. },
  14556. [
  14557. {
  14558. name: "Micro",
  14559. height: math.unit(2, "inches"),
  14560. default: true
  14561. },
  14562. {
  14563. name: "Normal",
  14564. height: math.unit(5, "feet")
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14570. {
  14571. front: {
  14572. height: math.unit(5 + 7 / 12, "feet"),
  14573. weight: math.unit(159, "lb"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/hildegard/front.svg",
  14577. extra: 289 / 269,
  14578. bottom: 7.63 / 297.8
  14579. }
  14580. },
  14581. back: {
  14582. height: math.unit(5 + 7 / 12, "feet"),
  14583. weight: math.unit(159, "lb"),
  14584. name: "Back",
  14585. image: {
  14586. source: "./media/characters/hildegard/back.svg",
  14587. extra: 280 / 260,
  14588. bottom: 2.3 / 282
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(5 + 7 / 12, "feet"),
  14596. default: true
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14602. {
  14603. bernard: {
  14604. height: math.unit(2 + 7 / 12, "feet"),
  14605. weight: math.unit(66, "lb"),
  14606. name: "Bernard",
  14607. rename: true,
  14608. image: {
  14609. source: "./media/characters/bernard-wilder/bernard.svg",
  14610. extra: 192 / 128,
  14611. bottom: 0.05
  14612. }
  14613. },
  14614. wilder: {
  14615. height: math.unit(5 + 8 / 12, "feet"),
  14616. weight: math.unit(143, "lb"),
  14617. name: "Wilder",
  14618. rename: true,
  14619. image: {
  14620. source: "./media/characters/bernard-wilder/wilder.svg",
  14621. extra: 361 / 312,
  14622. bottom: 0.02
  14623. }
  14624. },
  14625. },
  14626. [
  14627. {
  14628. name: "Normal",
  14629. height: math.unit(2 + 7 / 12, "feet"),
  14630. default: true
  14631. },
  14632. ]
  14633. ))
  14634. characterMakers.push(() => makeCharacter(
  14635. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14636. {
  14637. anthro: {
  14638. height: math.unit(6 + 1 / 12, "feet"),
  14639. weight: math.unit(155, "lb"),
  14640. name: "Anthro",
  14641. image: {
  14642. source: "./media/characters/hearth/anthro.svg",
  14643. extra: 260 / 250,
  14644. bottom: 0.02
  14645. }
  14646. },
  14647. feral: {
  14648. height: math.unit(3.78, "feet"),
  14649. weight: math.unit(35, "kg"),
  14650. name: "Feral",
  14651. image: {
  14652. source: "./media/characters/hearth/feral.svg",
  14653. extra: 153 / 135,
  14654. bottom: 0.03
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "Normal",
  14661. height: math.unit(6 + 1 / 12, "feet"),
  14662. default: true
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14668. {
  14669. front: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(182, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/ingrid/front.svg",
  14675. extra: 294 / 268,
  14676. bottom: 0.027
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(6, "feet"),
  14684. default: true
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14690. {
  14691. eevee: {
  14692. height: math.unit(2 + 10 / 12, "feet"),
  14693. weight: math.unit(86, "lb"),
  14694. name: "Malgam",
  14695. image: {
  14696. source: "./media/characters/malgam/eevee.svg",
  14697. extra: 218 / 180,
  14698. bottom: 0.2
  14699. }
  14700. },
  14701. sylveon: {
  14702. height: math.unit(4, "feet"),
  14703. weight: math.unit(101, "lb"),
  14704. name: "Future Malgam",
  14705. rename: true,
  14706. image: {
  14707. source: "./media/characters/malgam/sylveon.svg",
  14708. extra: 371 / 325,
  14709. bottom: 0.015
  14710. }
  14711. },
  14712. gigantamax: {
  14713. height: math.unit(50, "feet"),
  14714. name: "Gigantamax Malgam",
  14715. rename: true,
  14716. image: {
  14717. source: "./media/characters/malgam/gigantamax.svg"
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Normal",
  14724. height: math.unit(2 + 10 / 12, "feet"),
  14725. default: true
  14726. },
  14727. ]
  14728. ))
  14729. characterMakers.push(() => makeCharacter(
  14730. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14731. {
  14732. front: {
  14733. height: math.unit(5 + 11 / 12, "feet"),
  14734. weight: math.unit(188, "lb"),
  14735. name: "Front",
  14736. image: {
  14737. source: "./media/characters/fleur/front.svg",
  14738. extra: 309 / 283,
  14739. bottom: 0.007
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Normal",
  14746. height: math.unit(5 + 11 / 12, "feet"),
  14747. default: true
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14753. {
  14754. front: {
  14755. height: math.unit(5 + 4 / 12, "feet"),
  14756. weight: math.unit(122, "lb"),
  14757. name: "Front",
  14758. image: {
  14759. source: "./media/characters/jude/front.svg",
  14760. extra: 288 / 273,
  14761. bottom: 0.03
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Normal",
  14768. height: math.unit(5 + 4 / 12, "feet"),
  14769. default: true
  14770. },
  14771. ]
  14772. ))
  14773. characterMakers.push(() => makeCharacter(
  14774. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14775. {
  14776. front: {
  14777. height: math.unit(5 + 11 / 12, "feet"),
  14778. weight: math.unit(190, "lb"),
  14779. name: "Front",
  14780. image: {
  14781. source: "./media/characters/seara/front.svg",
  14782. extra: 1,
  14783. bottom: 0.05
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Normal",
  14790. height: math.unit(5 + 11 / 12, "feet"),
  14791. default: true
  14792. },
  14793. ]
  14794. ))
  14795. characterMakers.push(() => makeCharacter(
  14796. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14797. {
  14798. front: {
  14799. height: math.unit(16 + 5 / 12, "feet"),
  14800. weight: math.unit(524, "lb"),
  14801. name: "Front",
  14802. image: {
  14803. source: "./media/characters/caspian/front.svg",
  14804. extra: 1,
  14805. bottom: 0.04
  14806. }
  14807. },
  14808. },
  14809. [
  14810. {
  14811. name: "Normal",
  14812. height: math.unit(16 + 5 / 12, "feet"),
  14813. default: true
  14814. },
  14815. ]
  14816. ))
  14817. characterMakers.push(() => makeCharacter(
  14818. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14819. {
  14820. front: {
  14821. height: math.unit(5 + 7 / 12, "feet"),
  14822. weight: math.unit(170, "lb"),
  14823. name: "Front",
  14824. image: {
  14825. source: "./media/characters/mika/front.svg",
  14826. extra: 1,
  14827. bottom: 0.016
  14828. }
  14829. },
  14830. },
  14831. [
  14832. {
  14833. name: "Normal",
  14834. height: math.unit(5 + 7 / 12, "feet"),
  14835. default: true
  14836. },
  14837. ]
  14838. ))
  14839. characterMakers.push(() => makeCharacter(
  14840. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14841. {
  14842. front: {
  14843. height: math.unit(6 + 2 / 12, "feet"),
  14844. weight: math.unit(268, "lb"),
  14845. name: "Front",
  14846. image: {
  14847. source: "./media/characters/sol/front.svg",
  14848. extra: 247 / 231,
  14849. bottom: 0.05
  14850. }
  14851. },
  14852. },
  14853. [
  14854. {
  14855. name: "Normal",
  14856. height: math.unit(6 + 2 / 12, "feet"),
  14857. default: true
  14858. },
  14859. ]
  14860. ))
  14861. characterMakers.push(() => makeCharacter(
  14862. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14863. {
  14864. buizel: {
  14865. height: math.unit(2 + 5 / 12, "feet"),
  14866. weight: math.unit(87, "lb"),
  14867. name: "Buizel",
  14868. image: {
  14869. source: "./media/characters/umiko/buizel.svg",
  14870. extra: 172 / 157,
  14871. bottom: 0.01
  14872. }
  14873. },
  14874. floatzel: {
  14875. height: math.unit(5 + 9 / 12, "feet"),
  14876. weight: math.unit(250, "lb"),
  14877. name: "Floatzel",
  14878. image: {
  14879. source: "./media/characters/umiko/floatzel.svg",
  14880. extra: 262 / 248
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Normal",
  14887. height: math.unit(2 + 5 / 12, "feet"),
  14888. default: true
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14894. {
  14895. front: {
  14896. height: math.unit(6 + 2 / 12, "feet"),
  14897. weight: math.unit(146, "lb"),
  14898. name: "Front",
  14899. image: {
  14900. source: "./media/characters/iliac/front.svg",
  14901. extra: 389 / 365,
  14902. bottom: 0.035
  14903. }
  14904. },
  14905. },
  14906. [
  14907. {
  14908. name: "Normal",
  14909. height: math.unit(6 + 2 / 12, "feet"),
  14910. default: true
  14911. },
  14912. ]
  14913. ))
  14914. characterMakers.push(() => makeCharacter(
  14915. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14916. {
  14917. front: {
  14918. height: math.unit(6, "feet"),
  14919. weight: math.unit(170, "lb"),
  14920. name: "Front",
  14921. image: {
  14922. source: "./media/characters/topaz/front.svg",
  14923. extra: 317 / 303,
  14924. bottom: 0.055
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Normal",
  14931. height: math.unit(6, "feet"),
  14932. default: true
  14933. },
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14938. {
  14939. front: {
  14940. height: math.unit(5 + 11 / 12, "feet"),
  14941. weight: math.unit(144, "lb"),
  14942. name: "Front",
  14943. image: {
  14944. source: "./media/characters/gabriel/front.svg",
  14945. extra: 285 / 262,
  14946. bottom: 0.004
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Normal",
  14953. height: math.unit(5 + 11 / 12, "feet"),
  14954. default: true
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14960. {
  14961. side: {
  14962. height: math.unit(6 + 5 / 12, "feet"),
  14963. weight: math.unit(300, "lb"),
  14964. name: "Side",
  14965. image: {
  14966. source: "./media/characters/tempest-suicune/side.svg",
  14967. extra: 195 / 154,
  14968. bottom: 0.04
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(6 + 5 / 12, "feet"),
  14976. default: true
  14977. },
  14978. ]
  14979. ))
  14980. characterMakers.push(() => makeCharacter(
  14981. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14982. {
  14983. front: {
  14984. height: math.unit(7 + 2 / 12, "feet"),
  14985. weight: math.unit(322, "lb"),
  14986. name: "Front",
  14987. image: {
  14988. source: "./media/characters/vulcan/front.svg",
  14989. extra: 154 / 147,
  14990. bottom: 0.04
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(7 + 2 / 12, "feet"),
  14998. default: true
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15004. {
  15005. front: {
  15006. height: math.unit(5 + 10 / 12, "feet"),
  15007. weight: math.unit(264, "lb"),
  15008. name: "Front",
  15009. image: {
  15010. source: "./media/characters/gault/front.svg",
  15011. extra: 161 / 140,
  15012. bottom: 0.028
  15013. }
  15014. },
  15015. },
  15016. [
  15017. {
  15018. name: "Normal",
  15019. height: math.unit(5 + 10 / 12, "feet"),
  15020. default: true
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(6, "feet"),
  15029. weight: math.unit(150, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/shard/front.svg",
  15033. extra: 273 / 238,
  15034. bottom: 0.02
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(3 + 6 / 12, "feet"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15048. {
  15049. front: {
  15050. height: math.unit(5 + 11 / 12, "feet"),
  15051. weight: math.unit(146, "lb"),
  15052. name: "Front",
  15053. image: {
  15054. source: "./media/characters/ashe/front.svg",
  15055. extra: 400 / 373,
  15056. bottom: 0.01
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(5 + 11 / 12, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(5 + 5 / 12, "feet"),
  15073. weight: math.unit(135, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/beatrix/front.svg",
  15077. extra: 392 / 379,
  15078. bottom: 0.01
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(6, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(6, "feet"),
  15095. weight: math.unit(150, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/ignatius/front.svg",
  15099. extra: 245 / 222,
  15100. bottom: 0.01
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(5 + 5 / 12, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(6 + 2 / 12, "feet"),
  15117. weight: math.unit(138, "lb"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/mei-li/front.svg",
  15121. extra: 237 / 229,
  15122. bottom: 0.03
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(6 + 2 / 12, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(2 + 4 / 12, "feet"),
  15139. weight: math.unit(62, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/puru/front.svg",
  15143. extra: 206 / 149,
  15144. bottom: 0.06
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(2 + 4 / 12, "feet"),
  15152. default: true
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15158. {
  15159. anthro: {
  15160. height: math.unit(5 + 8/12, "feet"),
  15161. weight: math.unit(200, "lb"),
  15162. energyNeed: math.unit(2000, "kcal"),
  15163. name: "Anthro",
  15164. image: {
  15165. source: "./media/characters/kee/anthro.svg",
  15166. extra: 3251/3184,
  15167. bottom: 250/3501
  15168. }
  15169. },
  15170. taur: {
  15171. height: math.unit(11, "feet"),
  15172. weight: math.unit(500, "lb"),
  15173. energyNeed: math.unit(5000, "kcal"),
  15174. name: "Taur",
  15175. image: {
  15176. source: "./media/characters/kee/taur.svg",
  15177. extra: 1362/1320,
  15178. bottom: 83/1445
  15179. }
  15180. },
  15181. },
  15182. [
  15183. {
  15184. name: "Normal",
  15185. height: math.unit(5 + 8/12, "feet"),
  15186. default: true
  15187. },
  15188. {
  15189. name: "Macro",
  15190. height: math.unit(35, "feet")
  15191. },
  15192. ]
  15193. ))
  15194. characterMakers.push(() => makeCharacter(
  15195. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15196. {
  15197. anthro: {
  15198. height: math.unit(7, "feet"),
  15199. weight: math.unit(190, "lb"),
  15200. name: "Anthro",
  15201. image: {
  15202. source: "./media/characters/cobalt-dracha/anthro.svg",
  15203. extra: 231 / 225,
  15204. bottom: 0.04
  15205. }
  15206. },
  15207. feral: {
  15208. height: math.unit(9 + 7 / 12, "feet"),
  15209. weight: math.unit(294, "lb"),
  15210. name: "Feral",
  15211. image: {
  15212. source: "./media/characters/cobalt-dracha/feral.svg",
  15213. extra: 692 / 633,
  15214. bottom: 0.05
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(7, "feet"),
  15222. default: true
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15228. {
  15229. fallen: {
  15230. height: math.unit(11 + 8 / 12, "feet"),
  15231. weight: math.unit(485, "lb"),
  15232. name: "Java (Fallen)",
  15233. rename: true,
  15234. image: {
  15235. source: "./media/characters/java/fallen.svg",
  15236. extra: 226 / 208,
  15237. bottom: 0.005
  15238. }
  15239. },
  15240. godkin: {
  15241. height: math.unit(10 + 6 / 12, "feet"),
  15242. weight: math.unit(328, "lb"),
  15243. name: "Java (Godkin)",
  15244. rename: true,
  15245. image: {
  15246. source: "./media/characters/java/godkin.svg",
  15247. extra: 270 / 262,
  15248. bottom: 0.02
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(11 + 8 / 12, "feet"),
  15256. default: true
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(7 + 8 / 12, "feet"),
  15265. weight: math.unit(320, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/skoll/front.svg",
  15269. extra: 232 / 220,
  15270. bottom: 0.02
  15271. }
  15272. },
  15273. },
  15274. [
  15275. {
  15276. name: "Normal",
  15277. height: math.unit(7 + 8 / 12, "feet"),
  15278. default: true
  15279. },
  15280. ]
  15281. ))
  15282. characterMakers.push(() => makeCharacter(
  15283. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15284. {
  15285. front: {
  15286. height: math.unit(5 + 9 / 12, "feet"),
  15287. weight: math.unit(170, "lb"),
  15288. name: "Front",
  15289. image: {
  15290. source: "./media/characters/purna/front.svg",
  15291. extra: 239 / 229,
  15292. bottom: 0.01
  15293. }
  15294. },
  15295. },
  15296. [
  15297. {
  15298. name: "Normal",
  15299. height: math.unit(5 + 9 / 12, "feet"),
  15300. default: true
  15301. },
  15302. ]
  15303. ))
  15304. characterMakers.push(() => makeCharacter(
  15305. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15306. {
  15307. front: {
  15308. height: math.unit(5 + 9 / 12, "feet"),
  15309. weight: math.unit(142, "lb"),
  15310. name: "Front",
  15311. image: {
  15312. source: "./media/characters/kuva/front.svg",
  15313. extra: 281 / 271,
  15314. bottom: 0.006
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Normal",
  15321. height: math.unit(5 + 9 / 12, "feet"),
  15322. default: true
  15323. },
  15324. ]
  15325. ))
  15326. characterMakers.push(() => makeCharacter(
  15327. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15328. {
  15329. anthro: {
  15330. height: math.unit(9 + 2 / 12, "feet"),
  15331. weight: math.unit(270, "lb"),
  15332. name: "Anthro",
  15333. image: {
  15334. source: "./media/characters/embra/anthro.svg",
  15335. extra: 200 / 187,
  15336. bottom: 0.02
  15337. }
  15338. },
  15339. feral: {
  15340. height: math.unit(18 + 8 / 12, "feet"),
  15341. weight: math.unit(576, "lb"),
  15342. name: "Feral",
  15343. image: {
  15344. source: "./media/characters/embra/feral.svg",
  15345. extra: 152 / 137,
  15346. bottom: 0.037
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(9 + 2 / 12, "feet"),
  15354. default: true
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15360. {
  15361. anthro: {
  15362. height: math.unit(10 + 9 / 12, "feet"),
  15363. weight: math.unit(224, "lb"),
  15364. name: "Anthro",
  15365. image: {
  15366. source: "./media/characters/grottos/anthro.svg",
  15367. extra: 350 / 332,
  15368. bottom: 0.045
  15369. }
  15370. },
  15371. feral: {
  15372. height: math.unit(20 + 7 / 12, "feet"),
  15373. weight: math.unit(629, "lb"),
  15374. name: "Feral",
  15375. image: {
  15376. source: "./media/characters/grottos/feral.svg",
  15377. extra: 207 / 190,
  15378. bottom: 0.05
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(10 + 9 / 12, "feet"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15392. {
  15393. anthro: {
  15394. height: math.unit(9 + 6 / 12, "feet"),
  15395. weight: math.unit(298, "lb"),
  15396. name: "Anthro",
  15397. image: {
  15398. source: "./media/characters/frifna/anthro.svg",
  15399. extra: 282 / 269,
  15400. bottom: 0.015
  15401. }
  15402. },
  15403. feral: {
  15404. height: math.unit(16 + 2 / 12, "feet"),
  15405. weight: math.unit(624, "lb"),
  15406. name: "Feral",
  15407. image: {
  15408. source: "./media/characters/frifna/feral.svg"
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(9 + 6 / 12, "feet"),
  15416. default: true
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(6 + 2 / 12, "feet"),
  15425. weight: math.unit(168, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/elise/front.svg",
  15429. extra: 276 / 271
  15430. }
  15431. },
  15432. },
  15433. [
  15434. {
  15435. name: "Normal",
  15436. height: math.unit(6 + 2 / 12, "feet"),
  15437. default: true
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15443. {
  15444. front: {
  15445. height: math.unit(5 + 10 / 12, "feet"),
  15446. weight: math.unit(210, "lb"),
  15447. name: "Front",
  15448. image: {
  15449. source: "./media/characters/glade/front.svg",
  15450. extra: 258 / 247,
  15451. bottom: 0.008
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(5 + 10 / 12, "feet"),
  15459. default: true
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15465. {
  15466. front: {
  15467. height: math.unit(5 + 10 / 12, "feet"),
  15468. weight: math.unit(129, "lb"),
  15469. name: "Front",
  15470. image: {
  15471. source: "./media/characters/rina/front.svg",
  15472. extra: 266 / 255,
  15473. bottom: 0.005
  15474. }
  15475. },
  15476. },
  15477. [
  15478. {
  15479. name: "Normal",
  15480. height: math.unit(5 + 10 / 12, "feet"),
  15481. default: true
  15482. },
  15483. ]
  15484. ))
  15485. characterMakers.push(() => makeCharacter(
  15486. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15487. {
  15488. front: {
  15489. height: math.unit(6 + 1 / 12, "feet"),
  15490. weight: math.unit(192, "lb"),
  15491. name: "Front",
  15492. image: {
  15493. source: "./media/characters/veronica/front.svg",
  15494. extra: 319 / 309,
  15495. bottom: 0.005
  15496. }
  15497. },
  15498. },
  15499. [
  15500. {
  15501. name: "Normal",
  15502. height: math.unit(6 + 1 / 12, "feet"),
  15503. default: true
  15504. },
  15505. ]
  15506. ))
  15507. characterMakers.push(() => makeCharacter(
  15508. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15509. {
  15510. front: {
  15511. height: math.unit(9 + 3 / 12, "feet"),
  15512. weight: math.unit(1100, "lb"),
  15513. name: "Front",
  15514. image: {
  15515. source: "./media/characters/braxton/front.svg",
  15516. extra: 1057 / 984,
  15517. bottom: 0.05
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Normal",
  15524. height: math.unit(9 + 3 / 12, "feet")
  15525. },
  15526. {
  15527. name: "Giant",
  15528. height: math.unit(300, "feet"),
  15529. default: true
  15530. },
  15531. {
  15532. name: "Macro",
  15533. height: math.unit(700, "feet")
  15534. },
  15535. {
  15536. name: "Megamacro",
  15537. height: math.unit(6000, "feet")
  15538. },
  15539. ]
  15540. ))
  15541. characterMakers.push(() => makeCharacter(
  15542. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15543. {
  15544. front: {
  15545. height: math.unit(6 + 7 / 12, "feet"),
  15546. weight: math.unit(150, "lb"),
  15547. name: "Front",
  15548. image: {
  15549. source: "./media/characters/blue-feyonics/front.svg",
  15550. extra: 1403 / 1306,
  15551. bottom: 0.047
  15552. }
  15553. },
  15554. },
  15555. [
  15556. {
  15557. name: "Normal",
  15558. height: math.unit(6 + 7 / 12, "feet"),
  15559. default: true
  15560. },
  15561. ]
  15562. ))
  15563. characterMakers.push(() => makeCharacter(
  15564. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15565. {
  15566. front: {
  15567. height: math.unit(1.8, "meters"),
  15568. weight: math.unit(60, "kg"),
  15569. name: "Front",
  15570. image: {
  15571. source: "./media/characters/maxwell/front.svg",
  15572. extra: 2060 / 1873
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Micro",
  15579. height: math.unit(1, "mm")
  15580. },
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(1.8, "meter"),
  15584. default: true
  15585. },
  15586. {
  15587. name: "Macro",
  15588. height: math.unit(30, "meters")
  15589. },
  15590. {
  15591. name: "Megamacro",
  15592. height: math.unit(10, "km")
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15598. {
  15599. front: {
  15600. height: math.unit(6, "feet"),
  15601. weight: math.unit(150, "lb"),
  15602. name: "Front",
  15603. image: {
  15604. source: "./media/characters/jack/front.svg",
  15605. extra: 1754 / 1640,
  15606. bottom: 0.01
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(80000, "feet"),
  15614. default: true
  15615. },
  15616. {
  15617. name: "Max size",
  15618. height: math.unit(10, "lightyears")
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15624. {
  15625. urban: {
  15626. height: math.unit(5, "feet"),
  15627. weight: math.unit(240, "lb"),
  15628. name: "Urban",
  15629. image: {
  15630. source: "./media/characters/cafat/urban.svg",
  15631. extra: 1223/1126,
  15632. bottom: 205/1428
  15633. }
  15634. },
  15635. summer: {
  15636. height: math.unit(5, "feet"),
  15637. weight: math.unit(240, "lb"),
  15638. name: "Summer",
  15639. image: {
  15640. source: "./media/characters/cafat/summer.svg",
  15641. extra: 1223/1126,
  15642. bottom: 205/1428
  15643. }
  15644. },
  15645. winter: {
  15646. height: math.unit(5, "feet"),
  15647. weight: math.unit(240, "lb"),
  15648. name: "Winter",
  15649. image: {
  15650. source: "./media/characters/cafat/winter.svg",
  15651. extra: 1223/1126,
  15652. bottom: 205/1428
  15653. }
  15654. },
  15655. lingerie: {
  15656. height: math.unit(5, "feet"),
  15657. weight: math.unit(240, "lb"),
  15658. name: "Lingerie",
  15659. image: {
  15660. source: "./media/characters/cafat/lingerie.svg",
  15661. extra: 1223/1126,
  15662. bottom: 205/1428
  15663. }
  15664. },
  15665. upright: {
  15666. height: math.unit(6.3, "feet"),
  15667. weight: math.unit(240, "lb"),
  15668. name: "Upright",
  15669. image: {
  15670. source: "./media/characters/cafat/upright.svg",
  15671. bottom: 0.01
  15672. }
  15673. },
  15674. uprightFull: {
  15675. height: math.unit(6.3, "feet"),
  15676. weight: math.unit(240, "lb"),
  15677. name: "Upright (Full)",
  15678. image: {
  15679. source: "./media/characters/cafat/upright-full.svg",
  15680. bottom: 0.01
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Small",
  15687. height: math.unit(5, "feet"),
  15688. default: true
  15689. },
  15690. {
  15691. name: "Large",
  15692. height: math.unit(13, "feet")
  15693. },
  15694. ]
  15695. ))
  15696. characterMakers.push(() => makeCharacter(
  15697. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15698. {
  15699. front: {
  15700. height: math.unit(6, "feet"),
  15701. weight: math.unit(150, "lb"),
  15702. name: "Front",
  15703. image: {
  15704. source: "./media/characters/verin-raharra/front.svg",
  15705. extra: 5019 / 4835,
  15706. bottom: 0.023
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(7 + 5 / 12, "feet"),
  15714. default: true
  15715. },
  15716. {
  15717. name: "Upsized",
  15718. height: math.unit(20, "feet")
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15724. {
  15725. front: {
  15726. height: math.unit(7, "feet"),
  15727. weight: math.unit(230, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/nakata/front.svg",
  15731. extra: 1.005,
  15732. bottom: 0.01
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(7, "feet"),
  15740. default: true
  15741. },
  15742. {
  15743. name: "Big",
  15744. height: math.unit(14, "feet")
  15745. },
  15746. {
  15747. name: "Macro",
  15748. height: math.unit(400, "feet")
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(4.91, "feet"),
  15757. weight: math.unit(100, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/lily/front.svg",
  15761. extra: 1585 / 1415,
  15762. bottom: 0.02
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(4.91, "feet"),
  15770. default: true
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15776. {
  15777. laying: {
  15778. height: math.unit(4 + 4 / 12, "feet"),
  15779. weight: math.unit(600, "lb"),
  15780. name: "Laying",
  15781. image: {
  15782. source: "./media/characters/sheila/laying.svg",
  15783. extra: 1333 / 1265,
  15784. bottom: 0.16
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(4 + 4 / 12, "feet"),
  15792. default: true
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15798. {
  15799. front: {
  15800. height: math.unit(6, "feet"),
  15801. weight: math.unit(190, "lb"),
  15802. name: "Front",
  15803. image: {
  15804. source: "./media/characters/sax/front.svg",
  15805. extra: 1187 / 973,
  15806. bottom: 0.042
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Micro",
  15813. height: math.unit(4, "inches"),
  15814. default: true
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Pandora", species: ["fox"], 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/pandora/front.svg",
  15827. extra: 2720 / 2556,
  15828. bottom: 0.015
  15829. }
  15830. },
  15831. back: {
  15832. height: math.unit(6, "feet"),
  15833. weight: math.unit(150, "lb"),
  15834. name: "Back",
  15835. image: {
  15836. source: "./media/characters/pandora/back.svg",
  15837. extra: 2720 / 2556,
  15838. bottom: 0.01
  15839. }
  15840. },
  15841. beans: {
  15842. height: math.unit(6 / 8, "feet"),
  15843. name: "Beans",
  15844. image: {
  15845. source: "./media/characters/pandora/beans.svg"
  15846. }
  15847. },
  15848. collar: {
  15849. height: math.unit(0.31, "feet"),
  15850. name: "Collar",
  15851. image: {
  15852. source: "./media/characters/pandora/collar.svg"
  15853. }
  15854. },
  15855. skirt: {
  15856. height: math.unit(6, "feet"),
  15857. weight: math.unit(150, "lb"),
  15858. name: "Skirt",
  15859. image: {
  15860. source: "./media/characters/pandora/skirt.svg",
  15861. extra: 1622 / 1525,
  15862. bottom: 0.015
  15863. }
  15864. },
  15865. hoodie: {
  15866. height: math.unit(6, "feet"),
  15867. weight: math.unit(150, "lb"),
  15868. name: "Hoodie",
  15869. image: {
  15870. source: "./media/characters/pandora/hoodie.svg",
  15871. extra: 1622 / 1525,
  15872. bottom: 0.015
  15873. }
  15874. },
  15875. casual: {
  15876. height: math.unit(6, "feet"),
  15877. weight: math.unit(150, "lb"),
  15878. name: "Casual",
  15879. image: {
  15880. source: "./media/characters/pandora/casual.svg",
  15881. extra: 1622 / 1525,
  15882. bottom: 0.015
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(6, "feet")
  15890. },
  15891. {
  15892. name: "Big Steppy",
  15893. height: math.unit(1, "km"),
  15894. default: true
  15895. },
  15896. {
  15897. name: "Galactic Steppy",
  15898. height: math.unit(2, "gigameters")
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15904. {
  15905. side: {
  15906. height: math.unit(10, "feet"),
  15907. weight: math.unit(800, "kg"),
  15908. name: "Side",
  15909. image: {
  15910. source: "./media/characters/venio-darcony/side.svg",
  15911. extra: 1373 / 1003,
  15912. bottom: 0.037
  15913. }
  15914. },
  15915. front: {
  15916. height: math.unit(19, "feet"),
  15917. weight: math.unit(800, "kg"),
  15918. name: "Front",
  15919. image: {
  15920. source: "./media/characters/venio-darcony/front.svg"
  15921. }
  15922. },
  15923. back: {
  15924. height: math.unit(19, "feet"),
  15925. weight: math.unit(800, "kg"),
  15926. name: "Back",
  15927. image: {
  15928. source: "./media/characters/venio-darcony/back.svg"
  15929. }
  15930. },
  15931. sideNsfw: {
  15932. height: math.unit(10, "feet"),
  15933. weight: math.unit(800, "kg"),
  15934. name: "Side (NSFW)",
  15935. image: {
  15936. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15937. extra: 1373 / 1003,
  15938. bottom: 0.037
  15939. }
  15940. },
  15941. frontNsfw: {
  15942. height: math.unit(19, "feet"),
  15943. weight: math.unit(800, "kg"),
  15944. name: "Front (NSFW)",
  15945. image: {
  15946. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15947. }
  15948. },
  15949. backNsfw: {
  15950. height: math.unit(19, "feet"),
  15951. weight: math.unit(800, "kg"),
  15952. name: "Back (NSFW)",
  15953. image: {
  15954. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15955. }
  15956. },
  15957. sideArmored: {
  15958. height: math.unit(10, "feet"),
  15959. weight: math.unit(800, "kg"),
  15960. name: "Side (Armored)",
  15961. image: {
  15962. source: "./media/characters/venio-darcony/side-armored.svg",
  15963. extra: 1373 / 1003,
  15964. bottom: 0.037
  15965. }
  15966. },
  15967. frontArmored: {
  15968. height: math.unit(19, "feet"),
  15969. weight: math.unit(900, "kg"),
  15970. name: "Front (Armored)",
  15971. image: {
  15972. source: "./media/characters/venio-darcony/front-armored.svg"
  15973. }
  15974. },
  15975. backArmored: {
  15976. height: math.unit(19, "feet"),
  15977. weight: math.unit(900, "kg"),
  15978. name: "Back (Armored)",
  15979. image: {
  15980. source: "./media/characters/venio-darcony/back-armored.svg"
  15981. }
  15982. },
  15983. sword: {
  15984. height: math.unit(10, "feet"),
  15985. weight: math.unit(50, "lb"),
  15986. name: "Sword",
  15987. image: {
  15988. source: "./media/characters/venio-darcony/sword.svg"
  15989. }
  15990. },
  15991. },
  15992. [
  15993. {
  15994. name: "Normal",
  15995. height: math.unit(10, "feet")
  15996. },
  15997. {
  15998. name: "Macro",
  15999. height: math.unit(130, "feet"),
  16000. default: true
  16001. },
  16002. {
  16003. name: "Macro+",
  16004. height: math.unit(240, "feet")
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16010. {
  16011. front: {
  16012. height: math.unit(6, "feet"),
  16013. weight: math.unit(150, "lb"),
  16014. name: "Front",
  16015. image: {
  16016. source: "./media/characters/veski/front.svg",
  16017. extra: 1299 / 1225,
  16018. bottom: 0.04
  16019. }
  16020. },
  16021. back: {
  16022. height: math.unit(6, "feet"),
  16023. weight: math.unit(150, "lb"),
  16024. name: "Back",
  16025. image: {
  16026. source: "./media/characters/veski/back.svg",
  16027. extra: 1299 / 1225,
  16028. bottom: 0.008
  16029. }
  16030. },
  16031. maw: {
  16032. height: math.unit(1.5 * 1.21, "feet"),
  16033. name: "Maw",
  16034. image: {
  16035. source: "./media/characters/veski/maw.svg"
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Macro",
  16042. height: math.unit(2, "km"),
  16043. default: true
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16049. {
  16050. front: {
  16051. height: math.unit(5 + 7 / 12, "feet"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/isabelle/front.svg",
  16055. extra: 2130 / 1976,
  16056. bottom: 0.05
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Supermicro",
  16063. height: math.unit(10, "micrometers")
  16064. },
  16065. {
  16066. name: "Micro",
  16067. height: math.unit(1, "inch")
  16068. },
  16069. {
  16070. name: "Tiny",
  16071. height: math.unit(5, "inches")
  16072. },
  16073. {
  16074. name: "Standard",
  16075. height: math.unit(5 + 7 / 12, "inches")
  16076. },
  16077. {
  16078. name: "Macro",
  16079. height: math.unit(80, "meters"),
  16080. default: true
  16081. },
  16082. {
  16083. name: "Megamacro",
  16084. height: math.unit(250, "meters")
  16085. },
  16086. {
  16087. name: "Gigamacro",
  16088. height: math.unit(5, "km")
  16089. },
  16090. {
  16091. name: "Cosmic",
  16092. height: math.unit(2.5e6, "miles")
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16098. {
  16099. front: {
  16100. height: math.unit(6, "feet"),
  16101. weight: math.unit(150, "lb"),
  16102. name: "Front",
  16103. image: {
  16104. source: "./media/characters/hanzo/front.svg",
  16105. extra: 374 / 344,
  16106. bottom: 0.02
  16107. }
  16108. },
  16109. },
  16110. [
  16111. {
  16112. name: "Normal",
  16113. height: math.unit(8, "feet"),
  16114. default: true
  16115. },
  16116. ]
  16117. ))
  16118. characterMakers.push(() => makeCharacter(
  16119. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16120. {
  16121. front: {
  16122. height: math.unit(7, "feet"),
  16123. weight: math.unit(130, "lb"),
  16124. name: "Front",
  16125. image: {
  16126. source: "./media/characters/anna/front.svg",
  16127. extra: 169 / 145,
  16128. bottom: 0.06
  16129. }
  16130. },
  16131. full: {
  16132. height: math.unit(4.96, "feet"),
  16133. weight: math.unit(220, "lb"),
  16134. name: "Full",
  16135. image: {
  16136. source: "./media/characters/anna/full.svg",
  16137. extra: 138 / 114,
  16138. bottom: 0.15
  16139. }
  16140. },
  16141. tongue: {
  16142. height: math.unit(2.53, "feet"),
  16143. name: "Tongue",
  16144. image: {
  16145. source: "./media/characters/anna/tongue.svg"
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Normal",
  16152. height: math.unit(7, "feet"),
  16153. default: true
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16159. {
  16160. front: {
  16161. height: math.unit(7, "feet"),
  16162. weight: math.unit(150, "lb"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/ian-corvid/front.svg",
  16166. extra: 150 / 142,
  16167. bottom: 0.02
  16168. }
  16169. },
  16170. back: {
  16171. height: math.unit(7, "feet"),
  16172. weight: math.unit(150, "lb"),
  16173. name: "Back",
  16174. image: {
  16175. source: "./media/characters/ian-corvid/back.svg",
  16176. extra: 150 / 143,
  16177. bottom: 0.01
  16178. }
  16179. },
  16180. stomping: {
  16181. height: math.unit(7, "feet"),
  16182. weight: math.unit(150, "lb"),
  16183. name: "Stomping",
  16184. image: {
  16185. source: "./media/characters/ian-corvid/stomping.svg",
  16186. extra: 76 / 72
  16187. }
  16188. },
  16189. sitting: {
  16190. height: math.unit(7 / 1.8, "feet"),
  16191. weight: math.unit(150, "lb"),
  16192. name: "Sitting",
  16193. image: {
  16194. source: "./media/characters/ian-corvid/sitting.svg",
  16195. extra: 1400 / 1269,
  16196. bottom: 0.15
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Tiny Microw",
  16203. height: math.unit(1, "inch")
  16204. },
  16205. {
  16206. name: "Microw",
  16207. height: math.unit(6, "inches")
  16208. },
  16209. {
  16210. name: "Crow",
  16211. height: math.unit(7 + 1 / 12, "feet"),
  16212. default: true
  16213. },
  16214. {
  16215. name: "Macrow",
  16216. height: math.unit(176, "feet")
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16222. {
  16223. front: {
  16224. height: math.unit(5 + 7 / 12, "feet"),
  16225. weight: math.unit(147, "lb"),
  16226. name: "Front",
  16227. image: {
  16228. source: "./media/characters/natalie-kellon/front.svg",
  16229. extra: 1214 / 1141,
  16230. bottom: 0.02
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Micro",
  16237. height: math.unit(1 / 16, "inch")
  16238. },
  16239. {
  16240. name: "Tiny",
  16241. height: math.unit(4, "inches")
  16242. },
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(5 + 7 / 12, "feet"),
  16246. default: true
  16247. },
  16248. {
  16249. name: "Amazon",
  16250. height: math.unit(12, "feet")
  16251. },
  16252. {
  16253. name: "Giantess",
  16254. height: math.unit(160, "meters")
  16255. },
  16256. {
  16257. name: "Titaness",
  16258. height: math.unit(800, "meters")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(150, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/alluria/front.svg",
  16271. extra: 806 / 738,
  16272. bottom: 0.01
  16273. }
  16274. },
  16275. side: {
  16276. height: math.unit(6, "feet"),
  16277. weight: math.unit(150, "lb"),
  16278. name: "Side",
  16279. image: {
  16280. source: "./media/characters/alluria/side.svg",
  16281. extra: 800 / 750,
  16282. }
  16283. },
  16284. back: {
  16285. height: math.unit(6, "feet"),
  16286. weight: math.unit(150, "lb"),
  16287. name: "Back",
  16288. image: {
  16289. source: "./media/characters/alluria/back.svg",
  16290. extra: 806 / 738,
  16291. }
  16292. },
  16293. frontMaid: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(150, "lb"),
  16296. name: "Front (Maid)",
  16297. image: {
  16298. source: "./media/characters/alluria/front-maid.svg",
  16299. extra: 806 / 738,
  16300. bottom: 0.01
  16301. }
  16302. },
  16303. sideMaid: {
  16304. height: math.unit(6, "feet"),
  16305. weight: math.unit(150, "lb"),
  16306. name: "Side (Maid)",
  16307. image: {
  16308. source: "./media/characters/alluria/side-maid.svg",
  16309. extra: 800 / 750,
  16310. bottom: 0.005
  16311. }
  16312. },
  16313. backMaid: {
  16314. height: math.unit(6, "feet"),
  16315. weight: math.unit(150, "lb"),
  16316. name: "Back (Maid)",
  16317. image: {
  16318. source: "./media/characters/alluria/back-maid.svg",
  16319. extra: 806 / 738,
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Micro",
  16326. height: math.unit(6, "inches"),
  16327. default: true
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(6, "feet"),
  16336. weight: math.unit(150, "lb"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/kyle/front.svg",
  16340. extra: 1069 / 962,
  16341. bottom: 77.228 / 1727.45
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Macro",
  16348. height: math.unit(150, "feet"),
  16349. default: true
  16350. },
  16351. ]
  16352. ))
  16353. characterMakers.push(() => makeCharacter(
  16354. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16355. {
  16356. front: {
  16357. height: math.unit(6, "feet"),
  16358. weight: math.unit(300, "lb"),
  16359. name: "Front",
  16360. image: {
  16361. source: "./media/characters/duncan/front.svg",
  16362. extra: 1650 / 1482,
  16363. bottom: 0.05
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Macro",
  16370. height: math.unit(100, "feet"),
  16371. default: true
  16372. },
  16373. ]
  16374. ))
  16375. characterMakers.push(() => makeCharacter(
  16376. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16377. {
  16378. front: {
  16379. height: math.unit(5 + 4 / 12, "feet"),
  16380. weight: math.unit(220, "lb"),
  16381. name: "Front",
  16382. image: {
  16383. source: "./media/characters/memory/front.svg",
  16384. extra: 3641 / 3545,
  16385. bottom: 0.03
  16386. }
  16387. },
  16388. back: {
  16389. height: math.unit(5 + 4 / 12, "feet"),
  16390. weight: math.unit(220, "lb"),
  16391. name: "Back",
  16392. image: {
  16393. source: "./media/characters/memory/back.svg",
  16394. extra: 3641 / 3545,
  16395. bottom: 0.025
  16396. }
  16397. },
  16398. frontSkirt: {
  16399. height: math.unit(5 + 4 / 12, "feet"),
  16400. weight: math.unit(220, "lb"),
  16401. name: "Front (Skirt)",
  16402. image: {
  16403. source: "./media/characters/memory/front-skirt.svg",
  16404. extra: 3641 / 3545,
  16405. bottom: 0.03
  16406. }
  16407. },
  16408. frontDress: {
  16409. height: math.unit(5 + 4 / 12, "feet"),
  16410. weight: math.unit(220, "lb"),
  16411. name: "Front (Dress)",
  16412. image: {
  16413. source: "./media/characters/memory/front-dress.svg",
  16414. extra: 3641 / 3545,
  16415. bottom: 0.03
  16416. }
  16417. },
  16418. },
  16419. [
  16420. {
  16421. name: "Micro",
  16422. height: math.unit(6, "inches"),
  16423. default: true
  16424. },
  16425. {
  16426. name: "Normal",
  16427. height: math.unit(5 + 4 / 12, "feet")
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16433. {
  16434. front: {
  16435. height: math.unit(4 + 11 / 12, "feet"),
  16436. weight: math.unit(100, "lb"),
  16437. name: "Front",
  16438. image: {
  16439. source: "./media/characters/luno/front.svg",
  16440. extra: 1535 / 1487,
  16441. bottom: 0.03
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Micro",
  16448. height: math.unit(3, "inches")
  16449. },
  16450. {
  16451. name: "Normal",
  16452. height: math.unit(4 + 11 / 12, "feet"),
  16453. default: true
  16454. },
  16455. {
  16456. name: "Macro",
  16457. height: math.unit(300, "feet")
  16458. },
  16459. {
  16460. name: "Megamacro",
  16461. height: math.unit(700, "miles")
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(6 + 2 / 12, "feet"),
  16470. weight: math.unit(170, "lb"),
  16471. name: "Front",
  16472. image: {
  16473. source: "./media/characters/jamesy/front.svg",
  16474. extra: 440 / 382,
  16475. bottom: 0.005
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Micro",
  16482. height: math.unit(3, "inches")
  16483. },
  16484. {
  16485. name: "Normal",
  16486. height: math.unit(6 + 2 / 12, "feet"),
  16487. default: true
  16488. },
  16489. {
  16490. name: "Macro",
  16491. height: math.unit(300, "feet")
  16492. },
  16493. {
  16494. name: "Megamacro",
  16495. height: math.unit(700, "miles")
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16501. {
  16502. front: {
  16503. height: math.unit(6, "feet"),
  16504. weight: math.unit(160, "lb"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/mark/front.svg",
  16508. extra: 3300 / 3100,
  16509. bottom: 136.42 / 3440.47
  16510. }
  16511. },
  16512. },
  16513. [
  16514. {
  16515. name: "Macro",
  16516. height: math.unit(120, "meters")
  16517. },
  16518. {
  16519. name: "Bigger Macro",
  16520. height: math.unit(350, "meters")
  16521. },
  16522. {
  16523. name: "Megamacro",
  16524. height: math.unit(8, "km"),
  16525. default: true
  16526. },
  16527. {
  16528. name: "Continental",
  16529. height: math.unit(4550, "km")
  16530. },
  16531. {
  16532. name: "Planetary",
  16533. height: math.unit(65000, "km")
  16534. },
  16535. ]
  16536. ))
  16537. characterMakers.push(() => makeCharacter(
  16538. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16539. {
  16540. front: {
  16541. height: math.unit(6, "feet"),
  16542. weight: math.unit(400, "lb"),
  16543. name: "Front",
  16544. image: {
  16545. source: "./media/characters/mac/front.svg",
  16546. extra: 1048 / 987.7,
  16547. bottom: 60 / 1107.6,
  16548. }
  16549. },
  16550. },
  16551. [
  16552. {
  16553. name: "Macro",
  16554. height: math.unit(500, "feet"),
  16555. default: true
  16556. },
  16557. ]
  16558. ))
  16559. characterMakers.push(() => makeCharacter(
  16560. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16561. {
  16562. front: {
  16563. height: math.unit(5 + 2 / 12, "feet"),
  16564. weight: math.unit(190, "lb"),
  16565. name: "Front",
  16566. image: {
  16567. source: "./media/characters/bari/front.svg",
  16568. extra: 3156 / 2880,
  16569. bottom: 0.03
  16570. }
  16571. },
  16572. back: {
  16573. height: math.unit(5 + 2 / 12, "feet"),
  16574. weight: math.unit(190, "lb"),
  16575. name: "Back",
  16576. image: {
  16577. source: "./media/characters/bari/back.svg",
  16578. extra: 3260 / 2834,
  16579. bottom: 0.025
  16580. }
  16581. },
  16582. frontPlush: {
  16583. height: math.unit(5 + 2 / 12, "feet"),
  16584. weight: math.unit(190, "lb"),
  16585. name: "Front (Plush)",
  16586. image: {
  16587. source: "./media/characters/bari/front-plush.svg",
  16588. extra: 1112 / 1061,
  16589. bottom: 0.002
  16590. }
  16591. },
  16592. },
  16593. [
  16594. {
  16595. name: "Micro",
  16596. height: math.unit(3, "inches")
  16597. },
  16598. {
  16599. name: "Normal",
  16600. height: math.unit(5 + 2 / 12, "feet"),
  16601. default: true
  16602. },
  16603. {
  16604. name: "Macro",
  16605. height: math.unit(20, "feet")
  16606. },
  16607. ]
  16608. ))
  16609. characterMakers.push(() => makeCharacter(
  16610. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16611. {
  16612. front: {
  16613. height: math.unit(6 + 1 / 12, "feet"),
  16614. weight: math.unit(275, "lb"),
  16615. name: "Front",
  16616. image: {
  16617. source: "./media/characters/hunter-misha-raven/front.svg"
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Mortal",
  16624. height: math.unit(6 + 1 / 12, "feet")
  16625. },
  16626. {
  16627. name: "Divine",
  16628. height: math.unit(1.12134e34, "parsecs"),
  16629. default: true
  16630. },
  16631. ]
  16632. ))
  16633. characterMakers.push(() => makeCharacter(
  16634. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16635. {
  16636. front: {
  16637. height: math.unit(6 + 3 / 12, "feet"),
  16638. weight: math.unit(220, "lb"),
  16639. name: "Front",
  16640. image: {
  16641. source: "./media/characters/max-calore/front.svg",
  16642. extra: 1700 / 1648,
  16643. bottom: 0.01
  16644. }
  16645. },
  16646. back: {
  16647. height: math.unit(6 + 3 / 12, "feet"),
  16648. weight: math.unit(220, "lb"),
  16649. name: "Back",
  16650. image: {
  16651. source: "./media/characters/max-calore/back.svg",
  16652. extra: 1700 / 1648,
  16653. bottom: 0.01
  16654. }
  16655. },
  16656. },
  16657. [
  16658. {
  16659. name: "Normal",
  16660. height: math.unit(6 + 3 / 12, "feet"),
  16661. default: true
  16662. },
  16663. ]
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16667. {
  16668. side: {
  16669. height: math.unit(2 + 8 / 12, "feet"),
  16670. weight: math.unit(99, "lb"),
  16671. name: "Side",
  16672. image: {
  16673. source: "./media/characters/aspen/side.svg",
  16674. extra: 152 / 138,
  16675. bottom: 0.032
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Normal",
  16682. height: math.unit(2 + 8 / 12, "feet"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16689. {
  16690. side: {
  16691. height: math.unit(3 + 2 / 12, "feet"),
  16692. weight: math.unit(224, "lb"),
  16693. name: "Side",
  16694. image: {
  16695. source: "./media/characters/sheila-feral-wolf/side.svg",
  16696. extra: 179 / 166,
  16697. bottom: 0.03
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(3 + 2 / 12, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16711. {
  16712. side: {
  16713. height: math.unit(1 + 9 / 12, "feet"),
  16714. weight: math.unit(38, "lb"),
  16715. name: "Side",
  16716. image: {
  16717. source: "./media/characters/michelle/side.svg",
  16718. extra: 147 / 136.7,
  16719. bottom: 0.03
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(1 + 9 / 12, "feet"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16733. {
  16734. front: {
  16735. height: math.unit(1 + 1 / 12, "feet"),
  16736. weight: math.unit(18, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/nino/front.svg"
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(1 + 1 / 12, "feet"),
  16747. default: true
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(1, "feet"),
  16756. weight: math.unit(16, "lb"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/viola/front.svg"
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Normal",
  16766. height: math.unit(1, "feet"),
  16767. default: true
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(6 + 5 / 12, "feet"),
  16776. weight: math.unit(580, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/atlas/front.svg",
  16780. extra: 298.5 / 290,
  16781. bottom: 0.015
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(6 + 5 / 12, "feet"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16795. {
  16796. side: {
  16797. height: math.unit(1 + 10 / 12, "feet"),
  16798. weight: math.unit(25, "lb"),
  16799. name: "Side",
  16800. image: {
  16801. source: "./media/characters/davy/side.svg",
  16802. extra: 200 / 170,
  16803. bottom: 0.01
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(1 + 10 / 12, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16817. {
  16818. side: {
  16819. height: math.unit(4 + 8 / 12, "feet"),
  16820. weight: math.unit(166, "lb"),
  16821. name: "Side",
  16822. image: {
  16823. source: "./media/characters/fiona/side.svg",
  16824. extra: 232 / 220,
  16825. bottom: 0.03
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Normal",
  16832. height: math.unit(4 + 8 / 12, "feet"),
  16833. default: true
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16839. {
  16840. front: {
  16841. height: math.unit(2, "feet"),
  16842. weight: math.unit(62, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/lyla/front.svg",
  16846. bottom: 0.1
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Normal",
  16853. height: math.unit(2, "feet"),
  16854. default: true
  16855. },
  16856. ]
  16857. ))
  16858. characterMakers.push(() => makeCharacter(
  16859. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16860. {
  16861. side: {
  16862. height: math.unit(1.8, "feet"),
  16863. weight: math.unit(44, "lb"),
  16864. name: "Side",
  16865. image: {
  16866. source: "./media/characters/perseus/side.svg",
  16867. bottom: 0.21
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(1.8, "feet"),
  16875. default: true
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16881. {
  16882. side: {
  16883. height: math.unit(4 + 2 / 12, "feet"),
  16884. weight: math.unit(20, "lb"),
  16885. name: "Side",
  16886. image: {
  16887. source: "./media/characters/remus/side.svg"
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(4 + 2 / 12, "feet"),
  16895. default: true
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(4 + 11 / 12, "feet"),
  16904. weight: math.unit(114, "lb"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/raf/front.svg",
  16908. bottom: 20.5 / 1863
  16909. }
  16910. },
  16911. side: {
  16912. height: math.unit(4 + 11 / 12, "feet"),
  16913. weight: math.unit(114, "lb"),
  16914. name: "Side",
  16915. image: {
  16916. source: "./media/characters/raf/side.svg",
  16917. bottom: 22 / 1822
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Micro",
  16924. height: math.unit(2, "inches")
  16925. },
  16926. {
  16927. name: "Normal",
  16928. height: math.unit(4 + 11 / 12, "feet"),
  16929. default: true
  16930. },
  16931. {
  16932. name: "Macro",
  16933. height: math.unit(70, "feet")
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16939. {
  16940. front: {
  16941. height: math.unit(1.5, "meters"),
  16942. weight: math.unit(68, "kg"),
  16943. name: "Front",
  16944. image: {
  16945. source: "./media/characters/liam-einarr/front.svg",
  16946. extra: 2822 / 2666
  16947. }
  16948. },
  16949. back: {
  16950. height: math.unit(1.5, "meters"),
  16951. weight: math.unit(68, "kg"),
  16952. name: "Back",
  16953. image: {
  16954. source: "./media/characters/liam-einarr/back.svg",
  16955. extra: 2822 / 2666,
  16956. bottom: 0.015
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Normal",
  16963. height: math.unit(1.5, "meters"),
  16964. default: true
  16965. },
  16966. {
  16967. name: "Macro",
  16968. height: math.unit(150, "meters")
  16969. },
  16970. {
  16971. name: "Megamacro",
  16972. height: math.unit(35, "km")
  16973. },
  16974. ]
  16975. ))
  16976. characterMakers.push(() => makeCharacter(
  16977. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16978. {
  16979. front: {
  16980. height: math.unit(6, "feet"),
  16981. weight: math.unit(75, "kg"),
  16982. name: "Front",
  16983. image: {
  16984. source: "./media/characters/linda/front.svg",
  16985. extra: 930 / 874,
  16986. bottom: 0.004
  16987. }
  16988. },
  16989. },
  16990. [
  16991. {
  16992. name: "Normal",
  16993. height: math.unit(6, "feet"),
  16994. default: true
  16995. },
  16996. ]
  16997. ))
  16998. characterMakers.push(() => makeCharacter(
  16999. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17000. {
  17001. front: {
  17002. height: math.unit(6 + 8 / 12, "feet"),
  17003. weight: math.unit(220, "lb"),
  17004. name: "Front",
  17005. image: {
  17006. source: "./media/characters/caylex/front.svg",
  17007. extra: 821 / 772,
  17008. bottom: 0.07
  17009. }
  17010. },
  17011. back: {
  17012. height: math.unit(6 + 8 / 12, "feet"),
  17013. weight: math.unit(220, "lb"),
  17014. name: "Back",
  17015. image: {
  17016. source: "./media/characters/caylex/back.svg",
  17017. extra: 821 / 772,
  17018. bottom: 0.022
  17019. }
  17020. },
  17021. hand: {
  17022. height: math.unit(1.25, "feet"),
  17023. name: "Hand",
  17024. image: {
  17025. source: "./media/characters/caylex/hand.svg"
  17026. }
  17027. },
  17028. foot: {
  17029. height: math.unit(1.6, "feet"),
  17030. name: "Foot",
  17031. image: {
  17032. source: "./media/characters/caylex/foot.svg"
  17033. }
  17034. },
  17035. armored: {
  17036. height: math.unit(6 + 8 / 12, "feet"),
  17037. weight: math.unit(250, "lb"),
  17038. name: "Armored",
  17039. image: {
  17040. source: "./media/characters/caylex/armored.svg",
  17041. extra: 1420 / 1310,
  17042. bottom: 0.045
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(6 + 8 / 12, "feet"),
  17050. default: true
  17051. },
  17052. {
  17053. name: "Normal+",
  17054. height: math.unit(12, "feet")
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17060. {
  17061. front: {
  17062. height: math.unit(7 + 6 / 12, "feet"),
  17063. weight: math.unit(288, "lb"),
  17064. name: "Front",
  17065. image: {
  17066. source: "./media/characters/alana/front.svg",
  17067. extra: 679 / 653,
  17068. bottom: 22.5 / 701
  17069. }
  17070. },
  17071. },
  17072. [
  17073. {
  17074. name: "Normal",
  17075. height: math.unit(7 + 6 / 12, "feet")
  17076. },
  17077. {
  17078. name: "Large",
  17079. height: math.unit(50, "feet")
  17080. },
  17081. {
  17082. name: "Macro",
  17083. height: math.unit(100, "feet"),
  17084. default: true
  17085. },
  17086. {
  17087. name: "Macro+",
  17088. height: math.unit(200, "feet")
  17089. },
  17090. ]
  17091. ))
  17092. characterMakers.push(() => makeCharacter(
  17093. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17094. {
  17095. front: {
  17096. height: math.unit(6 + 1 / 12, "feet"),
  17097. weight: math.unit(210, "lb"),
  17098. name: "Front",
  17099. image: {
  17100. source: "./media/characters/hasani/front.svg",
  17101. extra: 244 / 232,
  17102. bottom: 0.01
  17103. }
  17104. },
  17105. back: {
  17106. height: math.unit(6 + 1 / 12, "feet"),
  17107. weight: math.unit(210, "lb"),
  17108. name: "Back",
  17109. image: {
  17110. source: "./media/characters/hasani/back.svg",
  17111. extra: 244 / 232,
  17112. bottom: 0.01
  17113. }
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Normal",
  17119. height: math.unit(6 + 1 / 12, "feet")
  17120. },
  17121. {
  17122. name: "Macro",
  17123. height: math.unit(175, "feet"),
  17124. default: true
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17130. {
  17131. front: {
  17132. height: math.unit(1.82, "meters"),
  17133. weight: math.unit(140, "lb"),
  17134. name: "Front",
  17135. image: {
  17136. source: "./media/characters/nita/front.svg",
  17137. extra: 2473 / 2363,
  17138. bottom: 0.01
  17139. }
  17140. },
  17141. },
  17142. [
  17143. {
  17144. name: "Normal",
  17145. height: math.unit(1.82, "m")
  17146. },
  17147. {
  17148. name: "Macro",
  17149. height: math.unit(300, "m")
  17150. },
  17151. {
  17152. name: "Mistake Canon",
  17153. height: math.unit(0.5, "miles"),
  17154. default: true
  17155. },
  17156. {
  17157. name: "Big Mistake",
  17158. height: math.unit(13, "miles")
  17159. },
  17160. {
  17161. name: "Playing God",
  17162. height: math.unit(2450, "miles")
  17163. },
  17164. ]
  17165. ))
  17166. characterMakers.push(() => makeCharacter(
  17167. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17168. {
  17169. front: {
  17170. height: math.unit(4, "feet"),
  17171. weight: math.unit(120, "lb"),
  17172. name: "Front",
  17173. image: {
  17174. source: "./media/characters/shiriko/front.svg",
  17175. extra: 195 / 188
  17176. }
  17177. },
  17178. },
  17179. [
  17180. {
  17181. name: "Normal",
  17182. height: math.unit(4, "feet"),
  17183. default: true
  17184. },
  17185. ]
  17186. ))
  17187. characterMakers.push(() => makeCharacter(
  17188. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17189. {
  17190. front: {
  17191. height: math.unit(6, "feet"),
  17192. name: "front",
  17193. image: {
  17194. source: "./media/characters/deja/front.svg",
  17195. extra: 926 / 840,
  17196. bottom: 0.07
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Planck Length",
  17203. height: math.unit(1.6e-35, "meters")
  17204. },
  17205. {
  17206. name: "Normal",
  17207. height: math.unit(30.48, "meters"),
  17208. default: true
  17209. },
  17210. {
  17211. name: "Universal",
  17212. height: math.unit(8.8e26, "meters")
  17213. },
  17214. ]
  17215. ))
  17216. characterMakers.push(() => makeCharacter(
  17217. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17218. {
  17219. side: {
  17220. height: math.unit(8, "feet"),
  17221. weight: math.unit(6300, "lb"),
  17222. name: "Side",
  17223. image: {
  17224. source: "./media/characters/anima/side.svg",
  17225. bottom: 0.035
  17226. }
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Normal",
  17232. height: math.unit(8, "feet"),
  17233. default: true
  17234. },
  17235. ]
  17236. ))
  17237. characterMakers.push(() => makeCharacter(
  17238. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17239. {
  17240. front: {
  17241. height: math.unit(8, "feet"),
  17242. weight: math.unit(350, "lb"),
  17243. name: "Front",
  17244. image: {
  17245. source: "./media/characters/bianca/front.svg",
  17246. extra: 234 / 225,
  17247. bottom: 0.03
  17248. }
  17249. },
  17250. },
  17251. [
  17252. {
  17253. name: "Normal",
  17254. height: math.unit(8, "feet"),
  17255. default: true
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17261. {
  17262. front: {
  17263. height: math.unit(6, "feet"),
  17264. weight: math.unit(150, "lb"),
  17265. name: "Front",
  17266. image: {
  17267. source: "./media/characters/adinia/front.svg",
  17268. extra: 1845 / 1672,
  17269. bottom: 0.02
  17270. }
  17271. },
  17272. back: {
  17273. height: math.unit(6, "feet"),
  17274. weight: math.unit(150, "lb"),
  17275. name: "Back",
  17276. image: {
  17277. source: "./media/characters/adinia/back.svg",
  17278. extra: 1845 / 1672,
  17279. bottom: 0.002
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(11 + 5 / 12, "feet"),
  17287. default: true
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17293. {
  17294. front: {
  17295. height: math.unit(3, "meters"),
  17296. weight: math.unit(200, "kg"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/lykasa/front.svg",
  17300. extra: 1076 / 976,
  17301. bottom: 0.06
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Normal",
  17308. height: math.unit(3, "meters")
  17309. },
  17310. {
  17311. name: "Kaiju",
  17312. height: math.unit(120, "meters"),
  17313. default: true
  17314. },
  17315. {
  17316. name: "Mega Kaiju",
  17317. height: math.unit(240, "km")
  17318. },
  17319. {
  17320. name: "Giga Kaiju",
  17321. height: math.unit(400, "megameters")
  17322. },
  17323. {
  17324. name: "Tera Kaiju",
  17325. height: math.unit(800, "gigameters")
  17326. },
  17327. {
  17328. name: "Kaiju Dragon Goddess",
  17329. height: math.unit(26, "zettaparsecs")
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17335. {
  17336. side: {
  17337. height: math.unit(283 / 124 * 6, "feet"),
  17338. weight: math.unit(35000, "lb"),
  17339. name: "Side",
  17340. image: {
  17341. source: "./media/characters/malfaren/side.svg",
  17342. extra: 2500 / 1010,
  17343. bottom: 0.01
  17344. }
  17345. },
  17346. front: {
  17347. height: math.unit(22.36, "feet"),
  17348. weight: math.unit(35000, "lb"),
  17349. name: "Front",
  17350. image: {
  17351. source: "./media/characters/malfaren/front.svg",
  17352. extra: 1631 / 1476,
  17353. bottom: 0.01
  17354. }
  17355. },
  17356. maw: {
  17357. height: math.unit(6.9, "feet"),
  17358. name: "Maw",
  17359. image: {
  17360. source: "./media/characters/malfaren/maw.svg"
  17361. }
  17362. },
  17363. },
  17364. [
  17365. {
  17366. name: "Big",
  17367. height: math.unit(283 / 162 * 6, "feet"),
  17368. },
  17369. {
  17370. name: "Bigger",
  17371. height: math.unit(283 / 124 * 6, "feet")
  17372. },
  17373. {
  17374. name: "Massive",
  17375. height: math.unit(283 / 92 * 6, "feet"),
  17376. default: true
  17377. },
  17378. {
  17379. name: "👀💦",
  17380. height: math.unit(283 / 73 * 6, "feet"),
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17386. {
  17387. front: {
  17388. height: math.unit(1.7, "m"),
  17389. weight: math.unit(70, "kg"),
  17390. name: "Front",
  17391. image: {
  17392. source: "./media/characters/kernel/front.svg",
  17393. extra: 222 / 210,
  17394. bottom: 0.007
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Nano",
  17401. height: math.unit(17, "micrometers")
  17402. },
  17403. {
  17404. name: "Micro",
  17405. height: math.unit(1.7, "mm")
  17406. },
  17407. {
  17408. name: "Small",
  17409. height: math.unit(1.7, "cm")
  17410. },
  17411. {
  17412. name: "Normal",
  17413. height: math.unit(1.7, "m"),
  17414. default: true
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17420. {
  17421. front: {
  17422. height: math.unit(1.75, "meters"),
  17423. weight: math.unit(65, "kg"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/jayne-folest/front.svg",
  17427. extra: 2115 / 2007,
  17428. bottom: 0.02
  17429. }
  17430. },
  17431. back: {
  17432. height: math.unit(1.75, "meters"),
  17433. weight: math.unit(65, "kg"),
  17434. name: "Back",
  17435. image: {
  17436. source: "./media/characters/jayne-folest/back.svg",
  17437. extra: 2115 / 2007,
  17438. bottom: 0.005
  17439. }
  17440. },
  17441. frontClothed: {
  17442. height: math.unit(1.75, "meters"),
  17443. weight: math.unit(65, "kg"),
  17444. name: "Front (Clothed)",
  17445. image: {
  17446. source: "./media/characters/jayne-folest/front-clothed.svg",
  17447. extra: 2115 / 2007,
  17448. bottom: 0.035
  17449. }
  17450. },
  17451. hand: {
  17452. height: math.unit(1 / 1.260, "feet"),
  17453. name: "Hand",
  17454. image: {
  17455. source: "./media/characters/jayne-folest/hand.svg"
  17456. }
  17457. },
  17458. foot: {
  17459. height: math.unit(1 / 0.918, "feet"),
  17460. name: "Foot",
  17461. image: {
  17462. source: "./media/characters/jayne-folest/foot.svg"
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Micro",
  17469. height: math.unit(4, "cm")
  17470. },
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(1.75, "meters")
  17474. },
  17475. {
  17476. name: "Macro",
  17477. height: math.unit(47.5, "meters"),
  17478. default: true
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17484. {
  17485. front: {
  17486. height: math.unit(180, "cm"),
  17487. weight: math.unit(70, "kg"),
  17488. name: "Front",
  17489. image: {
  17490. source: "./media/characters/algier/front.svg",
  17491. extra: 596 / 572,
  17492. bottom: 0.04
  17493. }
  17494. },
  17495. back: {
  17496. height: math.unit(180, "cm"),
  17497. weight: math.unit(70, "kg"),
  17498. name: "Back",
  17499. image: {
  17500. source: "./media/characters/algier/back.svg",
  17501. extra: 596 / 572,
  17502. bottom: 0.025
  17503. }
  17504. },
  17505. frontdressed: {
  17506. height: math.unit(180, "cm"),
  17507. weight: math.unit(150, "kg"),
  17508. name: "Front-dressed",
  17509. image: {
  17510. source: "./media/characters/algier/front-dressed.svg",
  17511. extra: 596 / 572,
  17512. bottom: 0.038
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Micro",
  17519. height: math.unit(5, "cm")
  17520. },
  17521. {
  17522. name: "Normal",
  17523. height: math.unit(180, "cm"),
  17524. default: true
  17525. },
  17526. {
  17527. name: "Macro",
  17528. height: math.unit(64, "m")
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17534. {
  17535. upright: {
  17536. height: math.unit(7, "feet"),
  17537. weight: math.unit(300, "lb"),
  17538. name: "Upright",
  17539. image: {
  17540. source: "./media/characters/pretzel/upright.svg",
  17541. extra: 534 / 522,
  17542. bottom: 0.065
  17543. }
  17544. },
  17545. sprawling: {
  17546. height: math.unit(3.75, "feet"),
  17547. weight: math.unit(300, "lb"),
  17548. name: "Sprawling",
  17549. image: {
  17550. source: "./media/characters/pretzel/sprawling.svg",
  17551. extra: 314 / 281,
  17552. bottom: 0.1
  17553. }
  17554. },
  17555. tongue: {
  17556. height: math.unit(2, "feet"),
  17557. name: "Tongue",
  17558. image: {
  17559. source: "./media/characters/pretzel/tongue.svg"
  17560. }
  17561. },
  17562. },
  17563. [
  17564. {
  17565. name: "Normal",
  17566. height: math.unit(7, "feet"),
  17567. default: true
  17568. },
  17569. {
  17570. name: "Oversized",
  17571. height: math.unit(15, "feet")
  17572. },
  17573. {
  17574. name: "Huge",
  17575. height: math.unit(30, "feet")
  17576. },
  17577. {
  17578. name: "Macro",
  17579. height: math.unit(250, "feet")
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17585. {
  17586. sideFront: {
  17587. height: math.unit(5 + 2 / 12, "feet"),
  17588. weight: math.unit(120, "lb"),
  17589. name: "Front Side",
  17590. image: {
  17591. source: "./media/characters/roxi/side-front.svg",
  17592. extra: 2924 / 2717,
  17593. bottom: 0.08
  17594. }
  17595. },
  17596. sideBack: {
  17597. height: math.unit(5 + 2 / 12, "feet"),
  17598. weight: math.unit(120, "lb"),
  17599. name: "Back Side",
  17600. image: {
  17601. source: "./media/characters/roxi/side-back.svg",
  17602. extra: 2904 / 2693,
  17603. bottom: 0.06
  17604. }
  17605. },
  17606. front: {
  17607. height: math.unit(5 + 2 / 12, "feet"),
  17608. weight: math.unit(120, "lb"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/roxi/front.svg",
  17612. extra: 2028 / 1907,
  17613. bottom: 0.01
  17614. }
  17615. },
  17616. frontAlt: {
  17617. height: math.unit(5 + 2 / 12, "feet"),
  17618. weight: math.unit(120, "lb"),
  17619. name: "Front (Alt)",
  17620. image: {
  17621. source: "./media/characters/roxi/front-alt.svg",
  17622. extra: 1828 / 1798,
  17623. bottom: 0.01
  17624. }
  17625. },
  17626. sitting: {
  17627. height: math.unit(2.8, "feet"),
  17628. weight: math.unit(120, "lb"),
  17629. name: "Sitting",
  17630. image: {
  17631. source: "./media/characters/roxi/sitting.svg",
  17632. extra: 2660 / 2462,
  17633. bottom: 0.1
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(5 + 2 / 12, "feet"),
  17641. default: true
  17642. },
  17643. ]
  17644. ))
  17645. characterMakers.push(() => makeCharacter(
  17646. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17647. {
  17648. side: {
  17649. height: math.unit(55, "feet"),
  17650. weight: math.unit(153, "tons"),
  17651. name: "Side",
  17652. image: {
  17653. source: "./media/characters/shadow/side.svg",
  17654. extra: 701 / 628,
  17655. bottom: 0.02
  17656. }
  17657. },
  17658. flying: {
  17659. height: math.unit(145, "feet"),
  17660. weight: math.unit(153, "tons"),
  17661. name: "Flying",
  17662. image: {
  17663. source: "./media/characters/shadow/flying.svg"
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(55, "feet"),
  17671. default: true
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17677. {
  17678. front: {
  17679. height: math.unit(6, "feet"),
  17680. weight: math.unit(200, "lb"),
  17681. name: "Front",
  17682. image: {
  17683. source: "./media/characters/marcie/front.svg",
  17684. extra: 960 / 876,
  17685. bottom: 58 / 1017.87
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Macro",
  17692. height: math.unit(1, "mile"),
  17693. default: true
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17699. {
  17700. front: {
  17701. height: math.unit(7, "feet"),
  17702. weight: math.unit(200, "lb"),
  17703. name: "Front",
  17704. image: {
  17705. source: "./media/characters/kachina/front.svg",
  17706. extra: 1290.68 / 1119,
  17707. bottom: 36.5 / 1327.18
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(7, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17721. {
  17722. looking: {
  17723. height: math.unit(2, "meters"),
  17724. weight: math.unit(300, "kg"),
  17725. name: "Looking",
  17726. image: {
  17727. source: "./media/characters/kash/looking.svg",
  17728. extra: 474 / 344,
  17729. bottom: 0.03
  17730. }
  17731. },
  17732. side: {
  17733. height: math.unit(2, "meters"),
  17734. weight: math.unit(300, "kg"),
  17735. name: "Side",
  17736. image: {
  17737. source: "./media/characters/kash/side.svg",
  17738. extra: 302 / 251,
  17739. bottom: 0.03
  17740. }
  17741. },
  17742. front: {
  17743. height: math.unit(2, "meters"),
  17744. weight: math.unit(300, "kg"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/kash/front.svg",
  17748. extra: 495 / 360,
  17749. bottom: 0.015
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(2, "meters"),
  17757. default: true
  17758. },
  17759. {
  17760. name: "Big",
  17761. height: math.unit(3, "meters")
  17762. },
  17763. {
  17764. name: "Large",
  17765. height: math.unit(5, "meters")
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17771. {
  17772. feeding: {
  17773. height: math.unit(6.7, "feet"),
  17774. weight: math.unit(350, "lb"),
  17775. name: "Feeding",
  17776. image: {
  17777. source: "./media/characters/lalim/feeding.svg",
  17778. }
  17779. },
  17780. },
  17781. [
  17782. {
  17783. name: "Normal",
  17784. height: math.unit(6.7, "feet"),
  17785. default: true
  17786. },
  17787. ]
  17788. ))
  17789. characterMakers.push(() => makeCharacter(
  17790. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17791. {
  17792. front: {
  17793. height: math.unit(9.5, "feet"),
  17794. weight: math.unit(600, "lb"),
  17795. name: "Front",
  17796. image: {
  17797. source: "./media/characters/de'vout/front.svg",
  17798. extra: 1443 / 1328,
  17799. bottom: 0.025
  17800. }
  17801. },
  17802. back: {
  17803. height: math.unit(9.5, "feet"),
  17804. weight: math.unit(600, "lb"),
  17805. name: "Back",
  17806. image: {
  17807. source: "./media/characters/de'vout/back.svg",
  17808. extra: 1443 / 1328
  17809. }
  17810. },
  17811. frontDressed: {
  17812. height: math.unit(9.5, "feet"),
  17813. weight: math.unit(600, "lb"),
  17814. name: "Front (Dressed",
  17815. image: {
  17816. source: "./media/characters/de'vout/front-dressed.svg",
  17817. extra: 1443 / 1328,
  17818. bottom: 0.025
  17819. }
  17820. },
  17821. backDressed: {
  17822. height: math.unit(9.5, "feet"),
  17823. weight: math.unit(600, "lb"),
  17824. name: "Back (Dressed",
  17825. image: {
  17826. source: "./media/characters/de'vout/back-dressed.svg",
  17827. extra: 1443 / 1328
  17828. }
  17829. },
  17830. },
  17831. [
  17832. {
  17833. name: "Normal",
  17834. height: math.unit(9.5, "feet"),
  17835. default: true
  17836. },
  17837. ]
  17838. ))
  17839. characterMakers.push(() => makeCharacter(
  17840. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17841. {
  17842. front: {
  17843. height: math.unit(8, "feet"),
  17844. weight: math.unit(225, "lb"),
  17845. name: "Front",
  17846. image: {
  17847. source: "./media/characters/talana/front.svg",
  17848. extra: 1410 / 1300,
  17849. bottom: 0.015
  17850. }
  17851. },
  17852. frontDressed: {
  17853. height: math.unit(8, "feet"),
  17854. weight: math.unit(225, "lb"),
  17855. name: "Front (Dressed",
  17856. image: {
  17857. source: "./media/characters/talana/front-dressed.svg",
  17858. extra: 1410 / 1300,
  17859. bottom: 0.015
  17860. }
  17861. },
  17862. },
  17863. [
  17864. {
  17865. name: "Normal",
  17866. height: math.unit(8, "feet"),
  17867. default: true
  17868. },
  17869. ]
  17870. ))
  17871. characterMakers.push(() => makeCharacter(
  17872. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17873. {
  17874. side: {
  17875. height: math.unit(7.2, "feet"),
  17876. weight: math.unit(150, "lb"),
  17877. name: "Side",
  17878. image: {
  17879. source: "./media/characters/xeauvok/side.svg",
  17880. extra: 1975 / 1523,
  17881. bottom: 0.07
  17882. }
  17883. },
  17884. },
  17885. [
  17886. {
  17887. name: "Normal",
  17888. height: math.unit(7.2, "feet"),
  17889. default: true
  17890. },
  17891. ]
  17892. ))
  17893. characterMakers.push(() => makeCharacter(
  17894. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17895. {
  17896. side: {
  17897. height: math.unit(10, "feet"),
  17898. weight: math.unit(900, "kg"),
  17899. name: "Side",
  17900. image: {
  17901. source: "./media/characters/zara/side.svg",
  17902. extra: 504 / 498
  17903. }
  17904. },
  17905. },
  17906. [
  17907. {
  17908. name: "Normal",
  17909. height: math.unit(10, "feet"),
  17910. default: true
  17911. },
  17912. ]
  17913. ))
  17914. characterMakers.push(() => makeCharacter(
  17915. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17916. {
  17917. side: {
  17918. height: math.unit(6, "feet"),
  17919. weight: math.unit(150, "lb"),
  17920. name: "Side",
  17921. image: {
  17922. source: "./media/characters/richard-dragon/side.svg",
  17923. extra: 845 / 340,
  17924. bottom: 0.017
  17925. }
  17926. },
  17927. maw: {
  17928. height: math.unit(2.97, "feet"),
  17929. name: "Maw",
  17930. image: {
  17931. source: "./media/characters/richard-dragon/maw.svg"
  17932. }
  17933. },
  17934. },
  17935. [
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17940. {
  17941. front: {
  17942. height: math.unit(4, "feet"),
  17943. weight: math.unit(100, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/richard-smeargle/front.svg",
  17947. extra: 2952 / 2820,
  17948. bottom: 0.028
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Normal",
  17955. height: math.unit(4, "feet"),
  17956. default: true
  17957. },
  17958. {
  17959. name: "Dynamax",
  17960. height: math.unit(20, "meters")
  17961. },
  17962. ]
  17963. ))
  17964. characterMakers.push(() => makeCharacter(
  17965. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17966. {
  17967. front: {
  17968. height: math.unit(6, "feet"),
  17969. weight: math.unit(110, "lb"),
  17970. name: "Front",
  17971. image: {
  17972. source: "./media/characters/klay/front.svg",
  17973. extra: 962 / 883,
  17974. bottom: 0.04
  17975. }
  17976. },
  17977. back: {
  17978. height: math.unit(6, "feet"),
  17979. weight: math.unit(110, "lb"),
  17980. name: "Back",
  17981. image: {
  17982. source: "./media/characters/klay/back.svg",
  17983. extra: 962 / 883
  17984. }
  17985. },
  17986. beans: {
  17987. height: math.unit(1.15, "feet"),
  17988. name: "Beans",
  17989. image: {
  17990. source: "./media/characters/klay/beans.svg"
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Micro",
  17997. height: math.unit(6, "inches")
  17998. },
  17999. {
  18000. name: "Mini",
  18001. height: math.unit(3, "feet")
  18002. },
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(6, "feet"),
  18006. default: true
  18007. },
  18008. {
  18009. name: "Big",
  18010. height: math.unit(25, "feet")
  18011. },
  18012. {
  18013. name: "Macro",
  18014. height: math.unit(100, "feet")
  18015. },
  18016. {
  18017. name: "Megamacro",
  18018. height: math.unit(400, "feet")
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(6, "feet"),
  18027. weight: math.unit(160, "lb"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/marcus/front.svg",
  18031. extra: 734 / 676,
  18032. bottom: 0.03
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Little",
  18039. height: math.unit(6, "feet")
  18040. },
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(110, "feet"),
  18044. default: true
  18045. },
  18046. {
  18047. name: "Macro",
  18048. height: math.unit(250, "feet")
  18049. },
  18050. {
  18051. name: "Megamacro",
  18052. height: math.unit(1000, "feet")
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18058. {
  18059. front: {
  18060. height: math.unit(7, "feet"),
  18061. weight: math.unit(275, "lb"),
  18062. name: "Front",
  18063. image: {
  18064. source: "./media/characters/claude-delroute/front.svg",
  18065. extra: 230 / 214,
  18066. bottom: 0.007
  18067. }
  18068. },
  18069. side: {
  18070. height: math.unit(7, "feet"),
  18071. weight: math.unit(275, "lb"),
  18072. name: "Side",
  18073. image: {
  18074. source: "./media/characters/claude-delroute/side.svg",
  18075. extra: 222 / 214,
  18076. bottom: 0.01
  18077. }
  18078. },
  18079. back: {
  18080. height: math.unit(7, "feet"),
  18081. weight: math.unit(275, "lb"),
  18082. name: "Back",
  18083. image: {
  18084. source: "./media/characters/claude-delroute/back.svg",
  18085. extra: 230 / 214,
  18086. bottom: 0.015
  18087. }
  18088. },
  18089. maw: {
  18090. height: math.unit(0.6407, "meters"),
  18091. name: "Maw",
  18092. image: {
  18093. source: "./media/characters/claude-delroute/maw.svg"
  18094. }
  18095. },
  18096. },
  18097. [
  18098. {
  18099. name: "Normal",
  18100. height: math.unit(7, "feet"),
  18101. default: true
  18102. },
  18103. {
  18104. name: "Lorge",
  18105. height: math.unit(20, "feet")
  18106. },
  18107. ]
  18108. ))
  18109. characterMakers.push(() => makeCharacter(
  18110. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18111. {
  18112. front: {
  18113. height: math.unit(8 + 4 / 12, "feet"),
  18114. weight: math.unit(600, "lb"),
  18115. name: "Front",
  18116. image: {
  18117. source: "./media/characters/dragonien/front.svg",
  18118. extra: 100 / 94,
  18119. bottom: 3.3 / 103.3445
  18120. }
  18121. },
  18122. back: {
  18123. height: math.unit(8 + 4 / 12, "feet"),
  18124. weight: math.unit(600, "lb"),
  18125. name: "Back",
  18126. image: {
  18127. source: "./media/characters/dragonien/back.svg",
  18128. extra: 776 / 746,
  18129. bottom: 6.4 / 782.0616
  18130. }
  18131. },
  18132. foot: {
  18133. height: math.unit(1.54, "feet"),
  18134. name: "Foot",
  18135. image: {
  18136. source: "./media/characters/dragonien/foot.svg",
  18137. }
  18138. },
  18139. },
  18140. [
  18141. {
  18142. name: "Normal",
  18143. height: math.unit(8 + 4 / 12, "feet"),
  18144. default: true
  18145. },
  18146. {
  18147. name: "Macro",
  18148. height: math.unit(200, "feet")
  18149. },
  18150. {
  18151. name: "Megamacro",
  18152. height: math.unit(1, "mile")
  18153. },
  18154. {
  18155. name: "Gigamacro",
  18156. height: math.unit(1000, "miles")
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18162. {
  18163. front: {
  18164. height: math.unit(5 + 2 / 12, "feet"),
  18165. weight: math.unit(110, "lb"),
  18166. name: "Front",
  18167. image: {
  18168. source: "./media/characters/desta/front.svg",
  18169. extra: 767 / 726,
  18170. bottom: 11.7 / 779
  18171. }
  18172. },
  18173. back: {
  18174. height: math.unit(5 + 2 / 12, "feet"),
  18175. weight: math.unit(110, "lb"),
  18176. name: "Back",
  18177. image: {
  18178. source: "./media/characters/desta/back.svg",
  18179. extra: 777 / 728,
  18180. bottom: 6 / 784
  18181. }
  18182. },
  18183. frontAlt: {
  18184. height: math.unit(5 + 2 / 12, "feet"),
  18185. weight: math.unit(110, "lb"),
  18186. name: "Front",
  18187. image: {
  18188. source: "./media/characters/desta/front-alt.svg",
  18189. extra: 1482 / 1417
  18190. }
  18191. },
  18192. side: {
  18193. height: math.unit(5 + 2 / 12, "feet"),
  18194. weight: math.unit(110, "lb"),
  18195. name: "Side",
  18196. image: {
  18197. source: "./media/characters/desta/side.svg",
  18198. extra: 2579 / 2491,
  18199. bottom: 0.053
  18200. }
  18201. },
  18202. },
  18203. [
  18204. {
  18205. name: "Micro",
  18206. height: math.unit(6, "inches")
  18207. },
  18208. {
  18209. name: "Normal",
  18210. height: math.unit(5 + 2 / 12, "feet"),
  18211. default: true
  18212. },
  18213. {
  18214. name: "Macro",
  18215. height: math.unit(62, "feet")
  18216. },
  18217. {
  18218. name: "Megamacro",
  18219. height: math.unit(1800, "feet")
  18220. },
  18221. ]
  18222. ))
  18223. characterMakers.push(() => makeCharacter(
  18224. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18225. {
  18226. front: {
  18227. height: math.unit(10, "feet"),
  18228. weight: math.unit(700, "lb"),
  18229. name: "Front",
  18230. image: {
  18231. source: "./media/characters/storm-alystar/front.svg",
  18232. extra: 2112 / 1898,
  18233. bottom: 0.034
  18234. }
  18235. },
  18236. },
  18237. [
  18238. {
  18239. name: "Micro",
  18240. height: math.unit(3.5, "inches")
  18241. },
  18242. {
  18243. name: "Normal",
  18244. height: math.unit(10, "feet"),
  18245. default: true
  18246. },
  18247. {
  18248. name: "Macro",
  18249. height: math.unit(400, "feet")
  18250. },
  18251. {
  18252. name: "Deific",
  18253. height: math.unit(60, "miles")
  18254. },
  18255. ]
  18256. ))
  18257. characterMakers.push(() => makeCharacter(
  18258. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18259. {
  18260. front: {
  18261. height: math.unit(2.35, "meters"),
  18262. weight: math.unit(119, "kg"),
  18263. name: "Front",
  18264. image: {
  18265. source: "./media/characters/ilia/front.svg",
  18266. extra: 1285 / 1255,
  18267. bottom: 0.06
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Normal",
  18274. height: math.unit(2.35, "meters")
  18275. },
  18276. {
  18277. name: "Macro",
  18278. height: math.unit(140, "meters"),
  18279. default: true
  18280. },
  18281. {
  18282. name: "Megamacro",
  18283. height: math.unit(100, "miles")
  18284. },
  18285. ]
  18286. ))
  18287. characterMakers.push(() => makeCharacter(
  18288. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18289. {
  18290. front: {
  18291. height: math.unit(6 + 5 / 12, "feet"),
  18292. weight: math.unit(190, "lb"),
  18293. name: "Front",
  18294. image: {
  18295. source: "./media/characters/kingdead/front.svg",
  18296. extra: 1228 / 1177
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Micro",
  18303. height: math.unit(7, "inches")
  18304. },
  18305. {
  18306. name: "Normal",
  18307. height: math.unit(6 + 5 / 12, "feet")
  18308. },
  18309. {
  18310. name: "Macro",
  18311. height: math.unit(150, "feet"),
  18312. default: true
  18313. },
  18314. {
  18315. name: "Megamacro",
  18316. height: math.unit(200, "miles")
  18317. },
  18318. ]
  18319. ))
  18320. characterMakers.push(() => makeCharacter(
  18321. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18322. {
  18323. front: {
  18324. height: math.unit(8, "feet"),
  18325. weight: math.unit(600, "lb"),
  18326. name: "Front",
  18327. image: {
  18328. source: "./media/characters/kyrehx/front.svg",
  18329. extra: 1195 / 1095,
  18330. bottom: 0.034
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Micro",
  18337. height: math.unit(2, "inches")
  18338. },
  18339. {
  18340. name: "Normal",
  18341. height: math.unit(8, "feet"),
  18342. default: true
  18343. },
  18344. {
  18345. name: "Macro",
  18346. height: math.unit(255, "feet")
  18347. },
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18352. {
  18353. front: {
  18354. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18355. weight: math.unit(184, "lb"),
  18356. name: "Front",
  18357. image: {
  18358. source: "./media/characters/xang/front.svg",
  18359. extra: 845 / 755
  18360. }
  18361. },
  18362. },
  18363. [
  18364. {
  18365. name: "Normal",
  18366. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18367. default: true
  18368. },
  18369. {
  18370. name: "Macro",
  18371. height: math.unit(0.935 * 146, "feet")
  18372. },
  18373. {
  18374. name: "Megamacro",
  18375. height: math.unit(0.935 * 3, "miles")
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18381. {
  18382. frontDressed: {
  18383. height: math.unit(5 + 7 / 12, "feet"),
  18384. weight: math.unit(140, "lb"),
  18385. name: "Front (Dressed)",
  18386. image: {
  18387. source: "./media/characters/doc-weardno/front-dressed.svg",
  18388. extra: 263 / 234
  18389. }
  18390. },
  18391. backDressed: {
  18392. height: math.unit(5 + 7 / 12, "feet"),
  18393. weight: math.unit(140, "lb"),
  18394. name: "Back (Dressed)",
  18395. image: {
  18396. source: "./media/characters/doc-weardno/back-dressed.svg",
  18397. extra: 266 / 238
  18398. }
  18399. },
  18400. front: {
  18401. height: math.unit(5 + 7 / 12, "feet"),
  18402. weight: math.unit(140, "lb"),
  18403. name: "Front",
  18404. image: {
  18405. source: "./media/characters/doc-weardno/front.svg",
  18406. extra: 254 / 233
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Micro",
  18413. height: math.unit(3, "inches")
  18414. },
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(5 + 7 / 12, "feet"),
  18418. default: true
  18419. },
  18420. {
  18421. name: "Macro",
  18422. height: math.unit(25, "feet")
  18423. },
  18424. {
  18425. name: "Megamacro",
  18426. height: math.unit(2, "miles")
  18427. },
  18428. ]
  18429. ))
  18430. characterMakers.push(() => makeCharacter(
  18431. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18432. {
  18433. front: {
  18434. height: math.unit(6 + 2 / 12, "feet"),
  18435. weight: math.unit(153, "lb"),
  18436. name: "Front",
  18437. image: {
  18438. source: "./media/characters/seth-whilst/front.svg",
  18439. bottom: 0.07
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Micro",
  18446. height: math.unit(5, "inches")
  18447. },
  18448. {
  18449. name: "Normal",
  18450. height: math.unit(6 + 2 / 12, "feet"),
  18451. default: true
  18452. },
  18453. ]
  18454. ))
  18455. characterMakers.push(() => makeCharacter(
  18456. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18457. {
  18458. front: {
  18459. height: math.unit(3, "inches"),
  18460. weight: math.unit(8, "grams"),
  18461. name: "Front",
  18462. image: {
  18463. source: "./media/characters/pocket-jabari/front.svg",
  18464. extra: 1024 / 974,
  18465. bottom: 0.039
  18466. }
  18467. },
  18468. },
  18469. [
  18470. {
  18471. name: "Minimicro",
  18472. height: math.unit(8, "mm")
  18473. },
  18474. {
  18475. name: "Micro",
  18476. height: math.unit(3, "inches"),
  18477. default: true
  18478. },
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(3, "feet")
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18487. {
  18488. front: {
  18489. height: math.unit(15, "feet"),
  18490. weight: math.unit(3280, "lb"),
  18491. name: "Front",
  18492. image: {
  18493. source: "./media/characters/sapphy/front.svg",
  18494. extra: 671 / 577,
  18495. bottom: 0.085
  18496. }
  18497. },
  18498. back: {
  18499. height: math.unit(15, "feet"),
  18500. weight: math.unit(3280, "lb"),
  18501. name: "Back",
  18502. image: {
  18503. source: "./media/characters/sapphy/back.svg",
  18504. extra: 631 / 607,
  18505. bottom: 0.045
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Normal",
  18512. height: math.unit(15, "feet")
  18513. },
  18514. {
  18515. name: "Casual Macro",
  18516. height: math.unit(120, "feet")
  18517. },
  18518. {
  18519. name: "Macro",
  18520. height: math.unit(2150, "feet"),
  18521. default: true
  18522. },
  18523. {
  18524. name: "Megamacro",
  18525. height: math.unit(8, "miles")
  18526. },
  18527. {
  18528. name: "Galaxy Mom",
  18529. height: math.unit(6, "megalightyears")
  18530. },
  18531. ]
  18532. ))
  18533. characterMakers.push(() => makeCharacter(
  18534. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18535. {
  18536. front: {
  18537. height: math.unit(6, "feet"),
  18538. weight: math.unit(170, "lb"),
  18539. name: "Front",
  18540. image: {
  18541. source: "./media/characters/kiro/front.svg",
  18542. extra: 1064 / 1012,
  18543. bottom: 0.052
  18544. }
  18545. },
  18546. },
  18547. [
  18548. {
  18549. name: "Micro",
  18550. height: math.unit(6, "inches")
  18551. },
  18552. {
  18553. name: "Normal",
  18554. height: math.unit(6, "feet"),
  18555. default: true
  18556. },
  18557. {
  18558. name: "Macro",
  18559. height: math.unit(72, "feet")
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18565. {
  18566. front: {
  18567. height: math.unit(5 + 9 / 12, "feet"),
  18568. weight: math.unit(175, "lb"),
  18569. name: "Front",
  18570. image: {
  18571. source: "./media/characters/irishfox/front.svg",
  18572. extra: 1912 / 1680,
  18573. bottom: 0.02
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Nano",
  18580. height: math.unit(1, "mm")
  18581. },
  18582. {
  18583. name: "Micro",
  18584. height: math.unit(2, "inches")
  18585. },
  18586. {
  18587. name: "Normal",
  18588. height: math.unit(5 + 9 / 12, "feet"),
  18589. default: true
  18590. },
  18591. {
  18592. name: "Macro",
  18593. height: math.unit(45, "feet")
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18599. {
  18600. front: {
  18601. height: math.unit(6 + 1 / 12, "feet"),
  18602. weight: math.unit(75, "lb"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/aronai-sieyes/front.svg",
  18606. extra: 1556 / 1480,
  18607. bottom: 0.015
  18608. }
  18609. },
  18610. side: {
  18611. height: math.unit(6 + 1 / 12, "feet"),
  18612. weight: math.unit(75, "lb"),
  18613. name: "Side",
  18614. image: {
  18615. source: "./media/characters/aronai-sieyes/side.svg",
  18616. extra: 1433 / 1390,
  18617. bottom: 0.0393
  18618. }
  18619. },
  18620. back: {
  18621. height: math.unit(6 + 1 / 12, "feet"),
  18622. weight: math.unit(75, "lb"),
  18623. name: "Back",
  18624. image: {
  18625. source: "./media/characters/aronai-sieyes/back.svg",
  18626. extra: 1544 / 1494,
  18627. bottom: 0.02
  18628. }
  18629. },
  18630. frontClothed: {
  18631. height: math.unit(6 + 1 / 12, "feet"),
  18632. weight: math.unit(75, "lb"),
  18633. name: "Front (Clothed)",
  18634. image: {
  18635. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18636. extra: 1582 / 1527
  18637. }
  18638. },
  18639. feral: {
  18640. height: math.unit(18, "feet"),
  18641. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18642. name: "Feral",
  18643. image: {
  18644. source: "./media/characters/aronai-sieyes/feral.svg",
  18645. extra: 1530 / 1240,
  18646. bottom: 0.035
  18647. }
  18648. },
  18649. },
  18650. [
  18651. {
  18652. name: "Micro",
  18653. height: math.unit(2, "inches")
  18654. },
  18655. {
  18656. name: "Normal",
  18657. height: math.unit(6 + 1 / 12, "feet"),
  18658. default: true
  18659. }
  18660. ]
  18661. ))
  18662. characterMakers.push(() => makeCharacter(
  18663. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18664. {
  18665. front: {
  18666. height: math.unit(12, "feet"),
  18667. weight: math.unit(410, "kg"),
  18668. name: "Front",
  18669. image: {
  18670. source: "./media/characters/xuna/front.svg",
  18671. extra: 2184 / 1980
  18672. }
  18673. },
  18674. side: {
  18675. height: math.unit(12, "feet"),
  18676. weight: math.unit(410, "kg"),
  18677. name: "Side",
  18678. image: {
  18679. source: "./media/characters/xuna/side.svg",
  18680. extra: 2184 / 1980
  18681. }
  18682. },
  18683. back: {
  18684. height: math.unit(12, "feet"),
  18685. weight: math.unit(410, "kg"),
  18686. name: "Back",
  18687. image: {
  18688. source: "./media/characters/xuna/back.svg",
  18689. extra: 2184 / 1980
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Nano glow",
  18696. height: math.unit(10, "nm")
  18697. },
  18698. {
  18699. name: "Micro floof",
  18700. height: math.unit(0.3, "m")
  18701. },
  18702. {
  18703. name: "Huggable softy boi",
  18704. height: math.unit(3.6576, "m"),
  18705. default: true
  18706. },
  18707. {
  18708. name: "Admirable floof",
  18709. height: math.unit(80, "meters")
  18710. },
  18711. {
  18712. name: "Gentle macro",
  18713. height: math.unit(300, "meters")
  18714. },
  18715. {
  18716. name: "Very careful floof",
  18717. height: math.unit(3200, "meters")
  18718. },
  18719. {
  18720. name: "The mega floof",
  18721. height: math.unit(36000, "meters")
  18722. },
  18723. {
  18724. name: "Giga-fur-Wicker",
  18725. height: math.unit(4800000, "meters")
  18726. },
  18727. {
  18728. name: "Licky world",
  18729. height: math.unit(20000000, "meters")
  18730. },
  18731. {
  18732. name: "Floofy cyan sun",
  18733. height: math.unit(1500000000, "meters")
  18734. },
  18735. {
  18736. name: "Milky Wicker",
  18737. height: math.unit(1000000000000000000000, "meters")
  18738. },
  18739. {
  18740. name: "The observing Wicker",
  18741. height: math.unit(999999999999999999999999999, "meters")
  18742. },
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18747. {
  18748. front: {
  18749. height: math.unit(5 + 9 / 12, "feet"),
  18750. weight: math.unit(150, "lb"),
  18751. name: "Front",
  18752. image: {
  18753. source: "./media/characters/arokha-sieyes/front.svg",
  18754. extra: 1425 / 1284,
  18755. bottom: 0.05
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Normal",
  18762. height: math.unit(5 + 9 / 12, "feet")
  18763. },
  18764. {
  18765. name: "Macro",
  18766. height: math.unit(30, "meters"),
  18767. default: true
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18773. {
  18774. front: {
  18775. height: math.unit(6, "feet"),
  18776. weight: math.unit(180, "lb"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/arokh-sieyes/front.svg",
  18780. extra: 1830 / 1769,
  18781. bottom: 0.01
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Normal",
  18788. height: math.unit(6, "feet")
  18789. },
  18790. {
  18791. name: "Macro",
  18792. height: math.unit(30, "meters"),
  18793. default: true
  18794. },
  18795. ]
  18796. ))
  18797. characterMakers.push(() => makeCharacter(
  18798. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18799. {
  18800. side: {
  18801. height: math.unit(13 + 1 / 12, "feet"),
  18802. weight: math.unit(8.5, "tonnes"),
  18803. name: "Side",
  18804. image: {
  18805. source: "./media/characters/goldeneye/side.svg",
  18806. extra: 1182 / 778,
  18807. bottom: 0.067
  18808. }
  18809. },
  18810. paw: {
  18811. height: math.unit(3.4, "feet"),
  18812. name: "Paw",
  18813. image: {
  18814. source: "./media/characters/goldeneye/paw.svg"
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(13 + 1 / 12, "feet"),
  18822. default: true
  18823. },
  18824. ]
  18825. ))
  18826. characterMakers.push(() => makeCharacter(
  18827. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18828. {
  18829. front: {
  18830. height: math.unit(6 + 1 / 12, "feet"),
  18831. weight: math.unit(210, "lb"),
  18832. name: "Front",
  18833. image: {
  18834. source: "./media/characters/leonardo-lycheborne/front.svg",
  18835. extra: 390 / 365,
  18836. bottom: 0.032
  18837. }
  18838. },
  18839. side: {
  18840. height: math.unit(6 + 1 / 12, "feet"),
  18841. weight: math.unit(210, "lb"),
  18842. name: "Side",
  18843. image: {
  18844. source: "./media/characters/leonardo-lycheborne/side.svg",
  18845. extra: 390 / 365,
  18846. bottom: 0.005
  18847. }
  18848. },
  18849. back: {
  18850. height: math.unit(6 + 1 / 12, "feet"),
  18851. weight: math.unit(210, "lb"),
  18852. name: "Back",
  18853. image: {
  18854. source: "./media/characters/leonardo-lycheborne/back.svg",
  18855. extra: 392 / 366,
  18856. bottom: 0.01
  18857. }
  18858. },
  18859. hand: {
  18860. height: math.unit(1.08, "feet"),
  18861. name: "Hand",
  18862. image: {
  18863. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18864. }
  18865. },
  18866. foot: {
  18867. height: math.unit(1.32, "feet"),
  18868. name: "Foot",
  18869. image: {
  18870. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18871. }
  18872. },
  18873. were: {
  18874. height: math.unit(20, "feet"),
  18875. weight: math.unit(7800, "lb"),
  18876. name: "Were",
  18877. image: {
  18878. source: "./media/characters/leonardo-lycheborne/were.svg",
  18879. extra: 308 / 294,
  18880. bottom: 0.048
  18881. }
  18882. },
  18883. feral: {
  18884. height: math.unit(7.5, "feet"),
  18885. weight: math.unit(600, "lb"),
  18886. name: "Feral",
  18887. image: {
  18888. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18889. extra: 210 / 186,
  18890. bottom: 0.108
  18891. }
  18892. },
  18893. taur: {
  18894. height: math.unit(11, "feet"),
  18895. weight: math.unit(3300, "lb"),
  18896. name: "Taur",
  18897. image: {
  18898. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18899. extra: 320 / 303,
  18900. bottom: 0.025
  18901. }
  18902. },
  18903. barghest: {
  18904. height: math.unit(11, "feet"),
  18905. weight: math.unit(1300, "lb"),
  18906. name: "Barghest",
  18907. image: {
  18908. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18909. extra: 323 / 302,
  18910. bottom: 0.027
  18911. }
  18912. },
  18913. dick: {
  18914. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18915. name: "Dick",
  18916. image: {
  18917. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18918. }
  18919. },
  18920. dickWere: {
  18921. height: math.unit((20) / 3.8, "feet"),
  18922. name: "Dick (Were)",
  18923. image: {
  18924. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(6 + 1 / 12, "feet"),
  18932. default: true
  18933. },
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(10, "feet"),
  18941. weight: math.unit(350, "lb"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/jet/front.svg",
  18945. extra: 2050 / 1980,
  18946. bottom: 0.013
  18947. }
  18948. },
  18949. back: {
  18950. height: math.unit(10, "feet"),
  18951. weight: math.unit(350, "lb"),
  18952. name: "Back",
  18953. image: {
  18954. source: "./media/characters/jet/back.svg",
  18955. extra: 2050 / 1980,
  18956. bottom: 0.013
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Micro",
  18963. height: math.unit(6, "inches")
  18964. },
  18965. {
  18966. name: "Normal",
  18967. height: math.unit(10, "feet"),
  18968. default: true
  18969. },
  18970. {
  18971. name: "Macro",
  18972. height: math.unit(100, "feet")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(15, "feet"),
  18981. weight: math.unit(2800, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/tanarath/front.svg",
  18985. extra: 2392 / 2220,
  18986. bottom: 0.03
  18987. }
  18988. },
  18989. back: {
  18990. height: math.unit(15, "feet"),
  18991. weight: math.unit(2800, "lb"),
  18992. name: "Back",
  18993. image: {
  18994. source: "./media/characters/tanarath/back.svg",
  18995. extra: 2392 / 2220,
  18996. bottom: 0.03
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(15, "feet"),
  19004. default: true
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19010. {
  19011. front: {
  19012. height: math.unit(7 + 1 / 12, "feet"),
  19013. weight: math.unit(175, "lb"),
  19014. name: "Front",
  19015. image: {
  19016. source: "./media/characters/patty-cattybatty/front.svg",
  19017. extra: 908 / 874,
  19018. bottom: 0.025
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Micro",
  19025. height: math.unit(1, "inch")
  19026. },
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(7 + 1 / 12, "feet")
  19030. },
  19031. {
  19032. name: "Mini Macro",
  19033. height: math.unit(155, "feet")
  19034. },
  19035. {
  19036. name: "Macro",
  19037. height: math.unit(1077, "feet")
  19038. },
  19039. {
  19040. name: "Mega Macro",
  19041. height: math.unit(47650, "feet"),
  19042. default: true
  19043. },
  19044. {
  19045. name: "Giga Macro",
  19046. height: math.unit(440, "miles")
  19047. },
  19048. {
  19049. name: "Tera Macro",
  19050. height: math.unit(8700, "miles")
  19051. },
  19052. {
  19053. name: "Planetary Macro",
  19054. height: math.unit(32700, "miles")
  19055. },
  19056. {
  19057. name: "Solar Macro",
  19058. height: math.unit(550000, "miles")
  19059. },
  19060. {
  19061. name: "Celestial Macro",
  19062. height: math.unit(2.5, "AU")
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19068. {
  19069. front: {
  19070. height: math.unit(4 + 5 / 12, "feet"),
  19071. weight: math.unit(90, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/cappu/front.svg",
  19075. extra: 1247 / 1152,
  19076. bottom: 0.012
  19077. }
  19078. },
  19079. },
  19080. [
  19081. {
  19082. name: "Normal",
  19083. height: math.unit(4 + 5 / 12, "feet"),
  19084. default: true
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19090. {
  19091. frontDressed: {
  19092. height: math.unit(70, "cm"),
  19093. weight: math.unit(6, "kg"),
  19094. name: "Front (Dressed)",
  19095. image: {
  19096. source: "./media/characters/sebi/front-dressed.svg",
  19097. extra: 713.5 / 686.5,
  19098. bottom: 0.003
  19099. }
  19100. },
  19101. front: {
  19102. height: math.unit(70, "cm"),
  19103. weight: math.unit(5, "kg"),
  19104. name: "Front",
  19105. image: {
  19106. source: "./media/characters/sebi/front.svg",
  19107. extra: 713.5 / 686.5,
  19108. bottom: 0.003
  19109. }
  19110. }
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(70, "cm"),
  19116. default: true
  19117. },
  19118. {
  19119. name: "Macro",
  19120. height: math.unit(8, "meters")
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(6, "feet"),
  19129. weight: math.unit(150, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/typhek/front.svg",
  19133. extra: 1948 / 1929,
  19134. bottom: 0.025
  19135. }
  19136. },
  19137. side: {
  19138. height: math.unit(6, "feet"),
  19139. weight: math.unit(150, "lb"),
  19140. name: "Side",
  19141. image: {
  19142. source: "./media/characters/typhek/side.svg",
  19143. extra: 2034 / 2010,
  19144. bottom: 0.003
  19145. }
  19146. },
  19147. back: {
  19148. height: math.unit(6, "feet"),
  19149. weight: math.unit(150, "lb"),
  19150. name: "Back",
  19151. image: {
  19152. source: "./media/characters/typhek/back.svg",
  19153. extra: 2005 / 1978,
  19154. bottom: 0.004
  19155. }
  19156. },
  19157. palm: {
  19158. height: math.unit(1.2, "feet"),
  19159. name: "Palm",
  19160. image: {
  19161. source: "./media/characters/typhek/palm.svg"
  19162. }
  19163. },
  19164. fist: {
  19165. height: math.unit(1.1, "feet"),
  19166. name: "Fist",
  19167. image: {
  19168. source: "./media/characters/typhek/fist.svg"
  19169. }
  19170. },
  19171. foot: {
  19172. height: math.unit(1.57, "feet"),
  19173. name: "Foot",
  19174. image: {
  19175. source: "./media/characters/typhek/foot.svg"
  19176. }
  19177. },
  19178. sole: {
  19179. height: math.unit(2.05, "feet"),
  19180. name: "Sole",
  19181. image: {
  19182. source: "./media/characters/typhek/sole.svg"
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Macro",
  19189. height: math.unit(40, "stories"),
  19190. default: true
  19191. },
  19192. {
  19193. name: "Megamacro",
  19194. height: math.unit(1, "mile")
  19195. },
  19196. {
  19197. name: "Gigamacro",
  19198. height: math.unit(4000, "solarradii")
  19199. },
  19200. {
  19201. name: "Universal",
  19202. height: math.unit(1.1, "universes")
  19203. }
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19208. {
  19209. side: {
  19210. height: math.unit(5 + 7 / 12, "feet"),
  19211. weight: math.unit(150, "lb"),
  19212. name: "Side",
  19213. image: {
  19214. source: "./media/characters/kassy/side.svg",
  19215. extra: 1280 / 1225,
  19216. bottom: 0.002
  19217. }
  19218. },
  19219. front: {
  19220. height: math.unit(5 + 7 / 12, "feet"),
  19221. weight: math.unit(150, "lb"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/kassy/front.svg",
  19225. extra: 1280 / 1225,
  19226. bottom: 0.025
  19227. }
  19228. },
  19229. back: {
  19230. height: math.unit(5 + 7 / 12, "feet"),
  19231. weight: math.unit(150, "lb"),
  19232. name: "Back",
  19233. image: {
  19234. source: "./media/characters/kassy/back.svg",
  19235. extra: 1280 / 1225,
  19236. bottom: 0.002
  19237. }
  19238. },
  19239. foot: {
  19240. height: math.unit(1.266, "feet"),
  19241. name: "Foot",
  19242. image: {
  19243. source: "./media/characters/kassy/foot.svg"
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(5 + 7 / 12, "feet")
  19251. },
  19252. {
  19253. name: "Macro",
  19254. height: math.unit(137, "feet"),
  19255. default: true
  19256. },
  19257. {
  19258. name: "Megamacro",
  19259. height: math.unit(1, "mile")
  19260. },
  19261. ]
  19262. ))
  19263. characterMakers.push(() => makeCharacter(
  19264. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19265. {
  19266. front: {
  19267. height: math.unit(6 + 1 / 12, "feet"),
  19268. weight: math.unit(200, "lb"),
  19269. name: "Front",
  19270. image: {
  19271. source: "./media/characters/neil/front.svg",
  19272. extra: 1326 / 1250,
  19273. bottom: 0.023
  19274. }
  19275. },
  19276. },
  19277. [
  19278. {
  19279. name: "Normal",
  19280. height: math.unit(6 + 1 / 12, "feet"),
  19281. default: true
  19282. },
  19283. {
  19284. name: "Macro",
  19285. height: math.unit(200, "feet")
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19291. {
  19292. front: {
  19293. height: math.unit(5 + 9 / 12, "feet"),
  19294. weight: math.unit(190, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/atticus/front.svg",
  19298. extra: 2934 / 2785,
  19299. bottom: 0.025
  19300. }
  19301. },
  19302. },
  19303. [
  19304. {
  19305. name: "Normal",
  19306. height: math.unit(5 + 9 / 12, "feet"),
  19307. default: true
  19308. },
  19309. {
  19310. name: "Macro",
  19311. height: math.unit(180, "feet")
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19317. {
  19318. side: {
  19319. height: math.unit(9, "feet"),
  19320. weight: math.unit(650, "lb"),
  19321. name: "Side",
  19322. image: {
  19323. source: "./media/characters/milo/side.svg",
  19324. extra: 2644 / 2310,
  19325. bottom: 0.032
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(9, "feet"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Macro",
  19337. height: math.unit(300, "feet")
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19343. {
  19344. side: {
  19345. height: math.unit(8, "meters"),
  19346. weight: math.unit(90000, "kg"),
  19347. name: "Side",
  19348. image: {
  19349. source: "./media/characters/ijzer/side.svg",
  19350. extra: 2756 / 1600,
  19351. bottom: 0.01
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Small",
  19358. height: math.unit(3, "meters")
  19359. },
  19360. {
  19361. name: "Normal",
  19362. height: math.unit(8, "meters"),
  19363. default: true
  19364. },
  19365. {
  19366. name: "Normal+",
  19367. height: math.unit(10, "meters")
  19368. },
  19369. {
  19370. name: "Bigger",
  19371. height: math.unit(24, "meters")
  19372. },
  19373. {
  19374. name: "Huge",
  19375. height: math.unit(80, "meters")
  19376. },
  19377. ]
  19378. ))
  19379. characterMakers.push(() => makeCharacter(
  19380. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19381. {
  19382. front: {
  19383. height: math.unit(6 + 2 / 12, "feet"),
  19384. weight: math.unit(153, "lb"),
  19385. name: "Front",
  19386. image: {
  19387. source: "./media/characters/luca-cervicum/front.svg",
  19388. extra: 370 / 327,
  19389. bottom: 0.015
  19390. }
  19391. },
  19392. back: {
  19393. height: math.unit(6 + 2 / 12, "feet"),
  19394. weight: math.unit(153, "lb"),
  19395. name: "Back",
  19396. image: {
  19397. source: "./media/characters/luca-cervicum/back.svg",
  19398. extra: 367 / 333,
  19399. bottom: 0.005
  19400. }
  19401. },
  19402. frontGear: {
  19403. height: math.unit(6 + 2 / 12, "feet"),
  19404. weight: math.unit(173, "lb"),
  19405. name: "Front (Gear)",
  19406. image: {
  19407. source: "./media/characters/luca-cervicum/front-gear.svg",
  19408. extra: 377 / 333,
  19409. bottom: 0.006
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(6 + 2 / 12, "feet"),
  19417. default: true
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(6 + 1 / 12, "feet"),
  19426. weight: math.unit(304, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/oliver/front.svg",
  19430. extra: 157 / 143,
  19431. bottom: 0.08
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(6 + 1 / 12, "feet"),
  19439. default: true
  19440. },
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19445. {
  19446. front: {
  19447. height: math.unit(5 + 7 / 12, "feet"),
  19448. weight: math.unit(140, "lb"),
  19449. name: "Front",
  19450. image: {
  19451. source: "./media/characters/shane/front.svg",
  19452. extra: 304 / 289,
  19453. bottom: 0.005
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(5 + 7 / 12, "feet"),
  19461. default: true
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19467. {
  19468. front: {
  19469. height: math.unit(5 + 9 / 12, "feet"),
  19470. weight: math.unit(178, "lb"),
  19471. name: "Front",
  19472. image: {
  19473. source: "./media/characters/shin/front.svg",
  19474. extra: 159 / 151,
  19475. bottom: 0.015
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(5 + 9 / 12, "feet"),
  19483. default: true
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19489. {
  19490. front: {
  19491. height: math.unit(5 + 10 / 12, "feet"),
  19492. weight: math.unit(168, "lb"),
  19493. name: "Front",
  19494. image: {
  19495. source: "./media/characters/xerxes/front.svg",
  19496. extra: 282 / 260,
  19497. bottom: 0.045
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(5 + 10 / 12, "feet"),
  19505. default: true
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19511. {
  19512. front: {
  19513. height: math.unit(6 + 7 / 12, "feet"),
  19514. weight: math.unit(208, "lb"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/chaska/front.svg",
  19518. extra: 332 / 319,
  19519. bottom: 0.015
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(6 + 7 / 12, "feet"),
  19527. default: true
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19533. {
  19534. front: {
  19535. height: math.unit(5 + 8 / 12, "feet"),
  19536. weight: math.unit(208, "lb"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/enuk/front.svg",
  19540. extra: 437 / 406,
  19541. bottom: 0.02
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(5 + 8 / 12, "feet"),
  19549. default: true
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19555. {
  19556. front: {
  19557. height: math.unit(5 + 10 / 12, "feet"),
  19558. weight: math.unit(252, "lb"),
  19559. name: "Front",
  19560. image: {
  19561. source: "./media/characters/bruun/front.svg",
  19562. extra: 197 / 187,
  19563. bottom: 0.012
  19564. }
  19565. },
  19566. },
  19567. [
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(5 + 10 / 12, "feet"),
  19571. default: true
  19572. },
  19573. ]
  19574. ))
  19575. characterMakers.push(() => makeCharacter(
  19576. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19577. {
  19578. front: {
  19579. height: math.unit(6 + 10 / 12, "feet"),
  19580. weight: math.unit(255, "lb"),
  19581. name: "Front",
  19582. image: {
  19583. source: "./media/characters/alexeev/front.svg",
  19584. extra: 213 / 200,
  19585. bottom: 0.05
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(6 + 10 / 12, "feet"),
  19593. default: true
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19599. {
  19600. front: {
  19601. height: math.unit(2 + 8 / 12, "feet"),
  19602. weight: math.unit(22, "lb"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/evelyn/front.svg",
  19606. extra: 208 / 180
  19607. }
  19608. },
  19609. },
  19610. [
  19611. {
  19612. name: "Normal",
  19613. height: math.unit(2 + 8 / 12, "feet"),
  19614. default: true
  19615. },
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19620. {
  19621. front: {
  19622. height: math.unit(5 + 9 / 12, "feet"),
  19623. weight: math.unit(139, "lb"),
  19624. name: "Front",
  19625. image: {
  19626. source: "./media/characters/inca/front.svg",
  19627. extra: 294 / 291,
  19628. bottom: 0.03
  19629. }
  19630. },
  19631. },
  19632. [
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(5 + 9 / 12, "feet"),
  19636. default: true
  19637. },
  19638. ]
  19639. ))
  19640. characterMakers.push(() => makeCharacter(
  19641. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19642. {
  19643. front: {
  19644. height: math.unit(5 + 1 / 12, "feet"),
  19645. weight: math.unit(84, "lb"),
  19646. name: "Front",
  19647. image: {
  19648. source: "./media/characters/magdalene/front.svg",
  19649. extra: 293 / 273
  19650. }
  19651. },
  19652. },
  19653. [
  19654. {
  19655. name: "Normal",
  19656. height: math.unit(5 + 1 / 12, "feet"),
  19657. default: true
  19658. },
  19659. ]
  19660. ))
  19661. characterMakers.push(() => makeCharacter(
  19662. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19663. {
  19664. front: {
  19665. height: math.unit(6 + 3 / 12, "feet"),
  19666. weight: math.unit(185, "lb"),
  19667. name: "Front",
  19668. image: {
  19669. source: "./media/characters/mera/front.svg",
  19670. extra: 291 / 277,
  19671. bottom: 0.03
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Normal",
  19678. height: math.unit(6 + 3 / 12, "feet"),
  19679. default: true
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19685. {
  19686. front: {
  19687. height: math.unit(6 + 7 / 12, "feet"),
  19688. weight: math.unit(160, "lb"),
  19689. name: "Front",
  19690. image: {
  19691. source: "./media/characters/ceres/front.svg",
  19692. extra: 1023 / 950,
  19693. bottom: 0.027
  19694. }
  19695. },
  19696. back: {
  19697. height: math.unit(6 + 7 / 12, "feet"),
  19698. weight: math.unit(160, "lb"),
  19699. name: "Back",
  19700. image: {
  19701. source: "./media/characters/ceres/back.svg",
  19702. extra: 1023 / 950
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Normal",
  19709. height: math.unit(6 + 7 / 12, "feet"),
  19710. default: true
  19711. },
  19712. ]
  19713. ))
  19714. characterMakers.push(() => makeCharacter(
  19715. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19716. {
  19717. front: {
  19718. height: math.unit(5 + 10 / 12, "feet"),
  19719. weight: math.unit(150, "lb"),
  19720. name: "Front",
  19721. image: {
  19722. source: "./media/characters/kris/front.svg",
  19723. extra: 885 / 803,
  19724. bottom: 0.03
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(5 + 10 / 12, "feet"),
  19732. default: true
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(7, "feet"),
  19741. weight: math.unit(120, "kg"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/taluthus/front.svg",
  19745. extra: 903 / 833,
  19746. bottom: 0.015
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Normal",
  19753. height: math.unit(7, "feet"),
  19754. default: true
  19755. },
  19756. {
  19757. name: "Macro",
  19758. height: math.unit(300, "feet")
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19764. {
  19765. front: {
  19766. height: math.unit(5 + 9 / 12, "feet"),
  19767. weight: math.unit(145, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/dawn/front.svg",
  19771. extra: 2094 / 2016,
  19772. bottom: 0.025
  19773. }
  19774. },
  19775. back: {
  19776. height: math.unit(5 + 9 / 12, "feet"),
  19777. weight: math.unit(160, "lb"),
  19778. name: "Back",
  19779. image: {
  19780. source: "./media/characters/dawn/back.svg",
  19781. extra: 2112 / 2080,
  19782. bottom: 0.005
  19783. }
  19784. },
  19785. },
  19786. [
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(6 + 7 / 12, "feet"),
  19790. default: true
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19796. {
  19797. anthro: {
  19798. height: math.unit(8 + 3 / 12, "feet"),
  19799. weight: math.unit(450, "lb"),
  19800. name: "Anthro",
  19801. image: {
  19802. source: "./media/characters/arador/anthro.svg",
  19803. extra: 1835 / 1718,
  19804. bottom: 0.025
  19805. }
  19806. },
  19807. feral: {
  19808. height: math.unit(4, "feet"),
  19809. weight: math.unit(200, "lb"),
  19810. name: "Feral",
  19811. image: {
  19812. source: "./media/characters/arador/feral.svg",
  19813. extra: 1683 / 1514,
  19814. bottom: 0.07
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Normal",
  19821. height: math.unit(8 + 3 / 12, "feet")
  19822. },
  19823. {
  19824. name: "Macro",
  19825. height: math.unit(82.5, "feet"),
  19826. default: true
  19827. },
  19828. ]
  19829. ))
  19830. characterMakers.push(() => makeCharacter(
  19831. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19832. {
  19833. front: {
  19834. height: math.unit(5 + 10 / 12, "feet"),
  19835. weight: math.unit(125, "lb"),
  19836. name: "Front",
  19837. image: {
  19838. source: "./media/characters/dharsi/front.svg",
  19839. extra: 716 / 630,
  19840. bottom: 0.035
  19841. }
  19842. },
  19843. },
  19844. [
  19845. {
  19846. name: "Nano",
  19847. height: math.unit(100, "nm")
  19848. },
  19849. {
  19850. name: "Micro",
  19851. height: math.unit(2, "inches")
  19852. },
  19853. {
  19854. name: "Normal",
  19855. height: math.unit(5 + 10 / 12, "feet"),
  19856. default: true
  19857. },
  19858. {
  19859. name: "Macro",
  19860. height: math.unit(1000, "feet")
  19861. },
  19862. {
  19863. name: "Megamacro",
  19864. height: math.unit(10, "miles")
  19865. },
  19866. {
  19867. name: "Gigamacro",
  19868. height: math.unit(3000, "miles")
  19869. },
  19870. {
  19871. name: "Teramacro",
  19872. height: math.unit(500000, "miles")
  19873. },
  19874. {
  19875. name: "Teramacro+",
  19876. height: math.unit(30, "galaxies")
  19877. },
  19878. ]
  19879. ))
  19880. characterMakers.push(() => makeCharacter(
  19881. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19882. {
  19883. front: {
  19884. height: math.unit(6, "feet"),
  19885. weight: math.unit(150, "lb"),
  19886. name: "Front",
  19887. image: {
  19888. source: "./media/characters/deathy/front.svg",
  19889. extra: 1552 / 1463,
  19890. bottom: 0.025
  19891. }
  19892. },
  19893. side: {
  19894. height: math.unit(6, "feet"),
  19895. weight: math.unit(150, "lb"),
  19896. name: "Side",
  19897. image: {
  19898. source: "./media/characters/deathy/side.svg",
  19899. extra: 1604 / 1455,
  19900. bottom: 0.025
  19901. }
  19902. },
  19903. back: {
  19904. height: math.unit(6, "feet"),
  19905. weight: math.unit(150, "lb"),
  19906. name: "Back",
  19907. image: {
  19908. source: "./media/characters/deathy/back.svg",
  19909. extra: 1580 / 1463,
  19910. bottom: 0.005
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Micro",
  19917. height: math.unit(5, "millimeters")
  19918. },
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(6 + 5 / 12, "feet"),
  19922. default: true
  19923. },
  19924. ]
  19925. ))
  19926. characterMakers.push(() => makeCharacter(
  19927. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19928. {
  19929. front: {
  19930. height: math.unit(16, "feet"),
  19931. weight: math.unit(4000, "lb"),
  19932. name: "Front",
  19933. image: {
  19934. source: "./media/characters/juniper/front.svg",
  19935. bottom: 0.04
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(16, "feet"),
  19943. default: true
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19949. {
  19950. front: {
  19951. height: math.unit(6, "feet"),
  19952. weight: math.unit(150, "lb"),
  19953. name: "Front",
  19954. image: {
  19955. source: "./media/characters/hipster/front.svg",
  19956. extra: 1312 / 1209,
  19957. bottom: 0.025
  19958. }
  19959. },
  19960. back: {
  19961. height: math.unit(6, "feet"),
  19962. weight: math.unit(150, "lb"),
  19963. name: "Back",
  19964. image: {
  19965. source: "./media/characters/hipster/back.svg",
  19966. extra: 1281 / 1196,
  19967. bottom: 0.01
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Micro",
  19974. height: math.unit(1, "mm")
  19975. },
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(4, "inches"),
  19979. default: true
  19980. },
  19981. {
  19982. name: "Macro",
  19983. height: math.unit(500, "feet")
  19984. },
  19985. {
  19986. name: "Megamacro",
  19987. height: math.unit(1000, "miles")
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(6, "feet"),
  19996. weight: math.unit(150, "lb"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/tendirmuldr/front.svg",
  20000. extra: 1878 / 1772,
  20001. bottom: 0.015
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Megamacro",
  20008. height: math.unit(1500, "miles"),
  20009. default: true
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20015. {
  20016. front: {
  20017. height: math.unit(14, "feet"),
  20018. weight: math.unit(12000, "lb"),
  20019. name: "Front",
  20020. image: {
  20021. source: "./media/characters/mort/front.svg",
  20022. extra: 365 / 318,
  20023. bottom: 0.01
  20024. }
  20025. },
  20026. side: {
  20027. height: math.unit(14, "feet"),
  20028. weight: math.unit(12000, "lb"),
  20029. name: "Side",
  20030. image: {
  20031. source: "./media/characters/mort/side.svg",
  20032. extra: 365 / 318,
  20033. bottom: 0.052
  20034. },
  20035. default: true
  20036. },
  20037. back: {
  20038. height: math.unit(14, "feet"),
  20039. weight: math.unit(12000, "lb"),
  20040. name: "Back",
  20041. image: {
  20042. source: "./media/characters/mort/back.svg",
  20043. extra: 371 / 332,
  20044. bottom: 0.18
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Normal",
  20051. height: math.unit(14, "feet"),
  20052. default: true
  20053. },
  20054. ]
  20055. ))
  20056. characterMakers.push(() => makeCharacter(
  20057. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20058. {
  20059. front: {
  20060. height: math.unit(8, "feet"),
  20061. weight: math.unit(1, "ton"),
  20062. name: "Front",
  20063. image: {
  20064. source: "./media/characters/lycoa/front.svg",
  20065. extra: 1875 / 1789,
  20066. bottom: 0.022
  20067. }
  20068. },
  20069. back: {
  20070. height: math.unit(8, "feet"),
  20071. weight: math.unit(1, "ton"),
  20072. name: "Back",
  20073. image: {
  20074. source: "./media/characters/lycoa/back.svg",
  20075. extra: 1835 / 1781,
  20076. bottom: 0.03
  20077. }
  20078. },
  20079. head: {
  20080. height: math.unit(2.1, "feet"),
  20081. name: "Head",
  20082. image: {
  20083. source: "./media/characters/lycoa/head.svg"
  20084. }
  20085. },
  20086. tailmaw: {
  20087. height: math.unit(1.9, "feet"),
  20088. name: "Tailmaw",
  20089. image: {
  20090. source: "./media/characters/lycoa/tailmaw.svg"
  20091. }
  20092. },
  20093. tentacles: {
  20094. height: math.unit(2.1, "feet"),
  20095. name: "Tentacles",
  20096. image: {
  20097. source: "./media/characters/lycoa/tentacles.svg"
  20098. }
  20099. },
  20100. dick: {
  20101. height: math.unit(1.73, "feet"),
  20102. name: "Dick",
  20103. image: {
  20104. source: "./media/characters/lycoa/dick.svg"
  20105. }
  20106. },
  20107. },
  20108. [
  20109. {
  20110. name: "Normal",
  20111. height: math.unit(8, "feet"),
  20112. default: true
  20113. },
  20114. {
  20115. name: "Macro",
  20116. height: math.unit(30, "feet")
  20117. },
  20118. ]
  20119. ))
  20120. characterMakers.push(() => makeCharacter(
  20121. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20122. {
  20123. front: {
  20124. height: math.unit(4 + 2 / 12, "feet"),
  20125. weight: math.unit(70, "lb"),
  20126. name: "Front",
  20127. image: {
  20128. source: "./media/characters/naldara/front.svg",
  20129. extra: 841 / 720,
  20130. bottom: 0.04
  20131. }
  20132. },
  20133. naga: {
  20134. height: math.unit(23, "feet"),
  20135. weight: math.unit(15000, "kg"),
  20136. name: "Naga",
  20137. image: {
  20138. source: "./media/characters/naldara/naga.svg",
  20139. extra: 3290 / 2959,
  20140. bottom: 124 / 3432
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(4 + 2 / 12, "feet"),
  20148. default: true
  20149. },
  20150. ]
  20151. ))
  20152. characterMakers.push(() => makeCharacter(
  20153. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20154. {
  20155. front: {
  20156. height: math.unit(13 + 7 / 12, "feet"),
  20157. weight: math.unit(1500, "lb"),
  20158. name: "Front",
  20159. image: {
  20160. source: "./media/characters/briar/front.svg",
  20161. extra: 626 / 596,
  20162. bottom: 0.08
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Normal",
  20169. height: math.unit(13 + 7 / 12, "feet"),
  20170. default: true
  20171. },
  20172. ]
  20173. ))
  20174. characterMakers.push(() => makeCharacter(
  20175. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20176. {
  20177. side: {
  20178. height: math.unit(10, "feet"),
  20179. weight: math.unit(500, "lb"),
  20180. name: "Side",
  20181. image: {
  20182. source: "./media/characters/vanguard/side.svg",
  20183. extra: 502 / 425,
  20184. bottom: 0.087
  20185. }
  20186. },
  20187. },
  20188. [
  20189. {
  20190. name: "Normal",
  20191. height: math.unit(10, "feet"),
  20192. default: true
  20193. },
  20194. ]
  20195. ))
  20196. characterMakers.push(() => makeCharacter(
  20197. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20198. {
  20199. front: {
  20200. height: math.unit(7.5, "feet"),
  20201. weight: math.unit(2, "lb"),
  20202. name: "Front",
  20203. image: {
  20204. source: "./media/characters/artemis/front.svg",
  20205. extra: 1192 / 1075,
  20206. bottom: 0.07
  20207. }
  20208. },
  20209. frontNsfw: {
  20210. height: math.unit(7.5, "feet"),
  20211. weight: math.unit(2, "lb"),
  20212. name: "Front (NSFW)",
  20213. image: {
  20214. source: "./media/characters/artemis/front-nsfw.svg",
  20215. extra: 1192 / 1075,
  20216. bottom: 0.07
  20217. }
  20218. },
  20219. frontNsfwer: {
  20220. height: math.unit(7.5, "feet"),
  20221. weight: math.unit(2, "lb"),
  20222. name: "Front (NSFW-er)",
  20223. image: {
  20224. source: "./media/characters/artemis/front-nsfwer.svg",
  20225. extra: 1192 / 1075,
  20226. bottom: 0.07
  20227. }
  20228. },
  20229. side: {
  20230. height: math.unit(7.5, "feet"),
  20231. weight: math.unit(2, "lb"),
  20232. name: "Side",
  20233. image: {
  20234. source: "./media/characters/artemis/side.svg",
  20235. extra: 1192 / 1075,
  20236. bottom: 0.07
  20237. }
  20238. },
  20239. sideNsfw: {
  20240. height: math.unit(7.5, "feet"),
  20241. weight: math.unit(2, "lb"),
  20242. name: "Side (NSFW)",
  20243. image: {
  20244. source: "./media/characters/artemis/side-nsfw.svg",
  20245. extra: 1192 / 1075,
  20246. bottom: 0.07
  20247. }
  20248. },
  20249. sideNsfwer: {
  20250. height: math.unit(7.5, "feet"),
  20251. weight: math.unit(2, "lb"),
  20252. name: "Side (NSFW-er)",
  20253. image: {
  20254. source: "./media/characters/artemis/side-nsfwer.svg",
  20255. extra: 1192 / 1075,
  20256. bottom: 0.07
  20257. }
  20258. },
  20259. maw: {
  20260. height: math.unit(1.1, "feet"),
  20261. name: "Maw",
  20262. image: {
  20263. source: "./media/characters/artemis/maw.svg"
  20264. }
  20265. },
  20266. stomach: {
  20267. height: math.unit(0.95, "feet"),
  20268. name: "Stomach",
  20269. image: {
  20270. source: "./media/characters/artemis/stomach.svg"
  20271. }
  20272. },
  20273. dickCanine: {
  20274. height: math.unit(1, "feet"),
  20275. name: "Dick (Canine)",
  20276. image: {
  20277. source: "./media/characters/artemis/dick-canine.svg"
  20278. }
  20279. },
  20280. dickEquine: {
  20281. height: math.unit(0.85, "feet"),
  20282. name: "Dick (Equine)",
  20283. image: {
  20284. source: "./media/characters/artemis/dick-equine.svg"
  20285. }
  20286. },
  20287. dickExotic: {
  20288. height: math.unit(0.85, "feet"),
  20289. name: "Dick (Exotic)",
  20290. image: {
  20291. source: "./media/characters/artemis/dick-exotic.svg"
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Normal",
  20298. height: math.unit(7.5, "feet"),
  20299. default: true
  20300. },
  20301. {
  20302. name: "Enlarged",
  20303. height: math.unit(12, "feet")
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20309. {
  20310. front: {
  20311. height: math.unit(5 + 3 / 12, "feet"),
  20312. weight: math.unit(160, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/kira/front.svg",
  20316. extra: 906 / 786,
  20317. bottom: 0.01
  20318. }
  20319. },
  20320. back: {
  20321. height: math.unit(5 + 3 / 12, "feet"),
  20322. weight: math.unit(160, "lb"),
  20323. name: "Back",
  20324. image: {
  20325. source: "./media/characters/kira/back.svg",
  20326. extra: 882 / 757,
  20327. bottom: 0.005
  20328. }
  20329. },
  20330. frontDressed: {
  20331. height: math.unit(5 + 3 / 12, "feet"),
  20332. weight: math.unit(160, "lb"),
  20333. name: "Front (Dressed)",
  20334. image: {
  20335. source: "./media/characters/kira/front-dressed.svg",
  20336. extra: 906 / 786,
  20337. bottom: 0.01
  20338. }
  20339. },
  20340. beans: {
  20341. height: math.unit(0.92, "feet"),
  20342. name: "Beans",
  20343. image: {
  20344. source: "./media/characters/kira/beans.svg"
  20345. }
  20346. },
  20347. },
  20348. [
  20349. {
  20350. name: "Normal",
  20351. height: math.unit(5 + 3 / 12, "feet"),
  20352. default: true
  20353. },
  20354. ]
  20355. ))
  20356. characterMakers.push(() => makeCharacter(
  20357. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20358. {
  20359. front: {
  20360. height: math.unit(5 + 4 / 12, "feet"),
  20361. weight: math.unit(145, "lb"),
  20362. name: "Front",
  20363. image: {
  20364. source: "./media/characters/scramble/front.svg",
  20365. extra: 763 / 727,
  20366. bottom: 0.05
  20367. }
  20368. },
  20369. back: {
  20370. height: math.unit(5 + 4 / 12, "feet"),
  20371. weight: math.unit(145, "lb"),
  20372. name: "Back",
  20373. image: {
  20374. source: "./media/characters/scramble/back.svg",
  20375. extra: 826 / 737,
  20376. bottom: 0.002
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(5 + 4 / 12, "feet"),
  20384. default: true
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20390. {
  20391. side: {
  20392. height: math.unit(6 + 2 / 12, "feet"),
  20393. weight: math.unit(190, "lb"),
  20394. name: "Side",
  20395. image: {
  20396. source: "./media/characters/biscuit/side.svg",
  20397. extra: 858 / 791,
  20398. bottom: 0.044
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(6 + 2 / 12, "feet"),
  20406. default: true
  20407. },
  20408. ]
  20409. ))
  20410. characterMakers.push(() => makeCharacter(
  20411. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20412. {
  20413. front: {
  20414. height: math.unit(5 + 2 / 12, "feet"),
  20415. weight: math.unit(120, "lb"),
  20416. name: "Front",
  20417. image: {
  20418. source: "./media/characters/poffin/front.svg",
  20419. extra: 786 / 680,
  20420. bottom: 0.005
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Normal",
  20427. height: math.unit(5 + 2 / 12, "feet"),
  20428. default: true
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(6 + 3 / 12, "feet"),
  20437. weight: math.unit(519, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/dhari/front.svg",
  20441. extra: 1048 / 946,
  20442. bottom: 0.015
  20443. }
  20444. },
  20445. back: {
  20446. height: math.unit(6 + 3 / 12, "feet"),
  20447. weight: math.unit(519, "lb"),
  20448. name: "Back",
  20449. image: {
  20450. source: "./media/characters/dhari/back.svg",
  20451. extra: 1048 / 931,
  20452. bottom: 0.005
  20453. }
  20454. },
  20455. frontDressed: {
  20456. height: math.unit(6 + 3 / 12, "feet"),
  20457. weight: math.unit(519, "lb"),
  20458. name: "Front (Dressed)",
  20459. image: {
  20460. source: "./media/characters/dhari/front-dressed.svg",
  20461. extra: 1713 / 1546,
  20462. bottom: 0.02
  20463. }
  20464. },
  20465. backDressed: {
  20466. height: math.unit(6 + 3 / 12, "feet"),
  20467. weight: math.unit(519, "lb"),
  20468. name: "Back (Dressed)",
  20469. image: {
  20470. source: "./media/characters/dhari/back-dressed.svg",
  20471. extra: 1699 / 1537,
  20472. bottom: 0.01
  20473. }
  20474. },
  20475. maw: {
  20476. height: math.unit(0.95, "feet"),
  20477. name: "Maw",
  20478. image: {
  20479. source: "./media/characters/dhari/maw.svg"
  20480. }
  20481. },
  20482. wereFront: {
  20483. height: math.unit(12 + 8 / 12, "feet"),
  20484. weight: math.unit(4000, "lb"),
  20485. name: "Front (Were)",
  20486. image: {
  20487. source: "./media/characters/dhari/were-front.svg",
  20488. extra: 1065 / 969,
  20489. bottom: 0.015
  20490. }
  20491. },
  20492. wereBack: {
  20493. height: math.unit(12 + 8 / 12, "feet"),
  20494. weight: math.unit(4000, "lb"),
  20495. name: "Back (Were)",
  20496. image: {
  20497. source: "./media/characters/dhari/were-back.svg",
  20498. extra: 1065 / 969,
  20499. bottom: 0.012
  20500. }
  20501. },
  20502. wereMaw: {
  20503. height: math.unit(0.625, "meters"),
  20504. name: "Maw (Were)",
  20505. image: {
  20506. source: "./media/characters/dhari/were-maw.svg"
  20507. }
  20508. },
  20509. },
  20510. [
  20511. {
  20512. name: "Normal",
  20513. height: math.unit(6 + 3 / 12, "feet"),
  20514. default: true
  20515. },
  20516. ]
  20517. ))
  20518. characterMakers.push(() => makeCharacter(
  20519. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20520. {
  20521. anthro: {
  20522. height: math.unit(5 + 7 / 12, "feet"),
  20523. weight: math.unit(175, "lb"),
  20524. name: "Anthro",
  20525. image: {
  20526. source: "./media/characters/rena-dyne/anthro.svg",
  20527. extra: 1849 / 1785,
  20528. bottom: 0.005
  20529. }
  20530. },
  20531. taur: {
  20532. height: math.unit(15 + 6 / 12, "feet"),
  20533. weight: math.unit(8000, "lb"),
  20534. name: "Taur",
  20535. image: {
  20536. source: "./media/characters/rena-dyne/taur.svg",
  20537. extra: 2315 / 2234,
  20538. bottom: 0.033
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Normal",
  20545. height: math.unit(5 + 7 / 12, "feet"),
  20546. default: true
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20552. {
  20553. front: {
  20554. height: math.unit(8, "feet"),
  20555. weight: math.unit(600, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/weremeep/front.svg",
  20559. extra: 967 / 862,
  20560. bottom: 0.01
  20561. }
  20562. },
  20563. },
  20564. [
  20565. {
  20566. name: "Normal",
  20567. height: math.unit(8, "feet"),
  20568. default: true
  20569. },
  20570. {
  20571. name: "Lorg",
  20572. height: math.unit(12, "feet")
  20573. },
  20574. {
  20575. name: "Oh Lawd She Comin'",
  20576. height: math.unit(20, "feet")
  20577. },
  20578. ]
  20579. ))
  20580. characterMakers.push(() => makeCharacter(
  20581. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20582. {
  20583. front: {
  20584. height: math.unit(4, "feet"),
  20585. weight: math.unit(90, "lb"),
  20586. name: "Front",
  20587. image: {
  20588. source: "./media/characters/reza/front.svg",
  20589. extra: 1183 / 1111,
  20590. bottom: 0.017
  20591. }
  20592. },
  20593. back: {
  20594. height: math.unit(4, "feet"),
  20595. weight: math.unit(90, "lb"),
  20596. name: "Back",
  20597. image: {
  20598. source: "./media/characters/reza/back.svg",
  20599. extra: 1183 / 1111,
  20600. bottom: 0.01
  20601. }
  20602. },
  20603. drake: {
  20604. height: math.unit(30, "feet"),
  20605. weight: math.unit(246960, "lb"),
  20606. name: "Drake",
  20607. image: {
  20608. source: "./media/characters/reza/drake.svg",
  20609. extra: 2350 / 2024,
  20610. bottom: 60.7 / 2403
  20611. }
  20612. },
  20613. },
  20614. [
  20615. {
  20616. name: "Normal",
  20617. height: math.unit(4, "feet"),
  20618. default: true
  20619. },
  20620. ]
  20621. ))
  20622. characterMakers.push(() => makeCharacter(
  20623. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20624. {
  20625. side: {
  20626. height: math.unit(15, "feet"),
  20627. weight: math.unit(14, "tons"),
  20628. name: "Side",
  20629. image: {
  20630. source: "./media/characters/athea/side.svg",
  20631. extra: 960 / 540,
  20632. bottom: 0.003
  20633. }
  20634. },
  20635. sitting: {
  20636. height: math.unit(6 * 2.85, "feet"),
  20637. weight: math.unit(14, "tons"),
  20638. name: "Sitting",
  20639. image: {
  20640. source: "./media/characters/athea/sitting.svg",
  20641. extra: 621 / 581,
  20642. bottom: 0.075
  20643. }
  20644. },
  20645. maw: {
  20646. height: math.unit(7.59498031496063, "feet"),
  20647. name: "Maw",
  20648. image: {
  20649. source: "./media/characters/athea/maw.svg"
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Lap Cat",
  20656. height: math.unit(2.5, "feet")
  20657. },
  20658. {
  20659. name: "Minimacro",
  20660. height: math.unit(15, "feet"),
  20661. default: true
  20662. },
  20663. {
  20664. name: "Macro",
  20665. height: math.unit(120, "feet")
  20666. },
  20667. {
  20668. name: "Macro+",
  20669. height: math.unit(640, "feet")
  20670. },
  20671. {
  20672. name: "Colossus",
  20673. height: math.unit(2.2, "miles")
  20674. },
  20675. ]
  20676. ))
  20677. characterMakers.push(() => makeCharacter(
  20678. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20679. {
  20680. front: {
  20681. height: math.unit(8 + 8 / 12, "feet"),
  20682. weight: math.unit(130, "kg"),
  20683. name: "Front",
  20684. image: {
  20685. source: "./media/characters/seroko/front.svg",
  20686. extra: 1385 / 1280,
  20687. bottom: 0.025
  20688. }
  20689. },
  20690. back: {
  20691. height: math.unit(8 + 8 / 12, "feet"),
  20692. weight: math.unit(130, "kg"),
  20693. name: "Back",
  20694. image: {
  20695. source: "./media/characters/seroko/back.svg",
  20696. extra: 1369 / 1238,
  20697. bottom: 0.018
  20698. }
  20699. },
  20700. frontDressed: {
  20701. height: math.unit(8 + 8 / 12, "feet"),
  20702. weight: math.unit(130, "kg"),
  20703. name: "Front (Dressed)",
  20704. image: {
  20705. source: "./media/characters/seroko/front-dressed.svg",
  20706. extra: 1366 / 1275,
  20707. bottom: 0.03
  20708. }
  20709. },
  20710. },
  20711. [
  20712. {
  20713. name: "Normal",
  20714. height: math.unit(8 + 8 / 12, "feet"),
  20715. default: true
  20716. },
  20717. ]
  20718. ))
  20719. characterMakers.push(() => makeCharacter(
  20720. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20721. {
  20722. front: {
  20723. height: math.unit(5.5, "feet"),
  20724. weight: math.unit(160, "lb"),
  20725. name: "Front",
  20726. image: {
  20727. source: "./media/characters/quatzi/front.svg",
  20728. extra: 2346 / 2242,
  20729. bottom: 0.015
  20730. }
  20731. },
  20732. },
  20733. [
  20734. {
  20735. name: "Normal",
  20736. height: math.unit(5.5, "feet"),
  20737. default: true
  20738. },
  20739. {
  20740. name: "Big",
  20741. height: math.unit(7.7, "feet")
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20747. {
  20748. front: {
  20749. height: math.unit(5 + 11 / 12, "feet"),
  20750. weight: math.unit(180, "lb"),
  20751. name: "Front",
  20752. image: {
  20753. source: "./media/characters/sen/front.svg",
  20754. extra: 1321 / 1254,
  20755. bottom: 0.015
  20756. }
  20757. },
  20758. side: {
  20759. height: math.unit(5 + 11 / 12, "feet"),
  20760. weight: math.unit(180, "lb"),
  20761. name: "Side",
  20762. image: {
  20763. source: "./media/characters/sen/side.svg",
  20764. extra: 1321 / 1254,
  20765. bottom: 0.007
  20766. }
  20767. },
  20768. back: {
  20769. height: math.unit(5 + 11 / 12, "feet"),
  20770. weight: math.unit(180, "lb"),
  20771. name: "Back",
  20772. image: {
  20773. source: "./media/characters/sen/back.svg",
  20774. extra: 1321 / 1254
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Normal",
  20781. height: math.unit(5 + 11 / 12, "feet"),
  20782. default: true
  20783. },
  20784. ]
  20785. ))
  20786. characterMakers.push(() => makeCharacter(
  20787. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20788. {
  20789. front: {
  20790. height: math.unit(166.6, "cm"),
  20791. weight: math.unit(66.6, "kg"),
  20792. name: "Front",
  20793. image: {
  20794. source: "./media/characters/fruity/front.svg",
  20795. extra: 1510 / 1386,
  20796. bottom: 0.04
  20797. }
  20798. },
  20799. back: {
  20800. height: math.unit(166.6, "cm"),
  20801. weight: math.unit(66.6, "lb"),
  20802. name: "Back",
  20803. image: {
  20804. source: "./media/characters/fruity/back.svg",
  20805. extra: 1563 / 1435,
  20806. bottom: 0.005
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(166.6, "cm"),
  20814. default: true
  20815. },
  20816. {
  20817. name: "Demonic",
  20818. height: math.unit(166.6, "feet")
  20819. },
  20820. ]
  20821. ))
  20822. characterMakers.push(() => makeCharacter(
  20823. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20824. {
  20825. side: {
  20826. height: math.unit(10, "feet"),
  20827. weight: math.unit(500, "lb"),
  20828. name: "Side",
  20829. image: {
  20830. source: "./media/characters/zost/side.svg",
  20831. extra: 966 / 880,
  20832. bottom: 0.075
  20833. }
  20834. },
  20835. mawFront: {
  20836. height: math.unit(1.08, "meters"),
  20837. name: "Maw (Front)",
  20838. image: {
  20839. source: "./media/characters/zost/maw-front.svg"
  20840. }
  20841. },
  20842. mawSide: {
  20843. height: math.unit(2.66, "feet"),
  20844. name: "Maw (Side)",
  20845. image: {
  20846. source: "./media/characters/zost/maw-side.svg"
  20847. }
  20848. },
  20849. },
  20850. [
  20851. {
  20852. name: "Normal",
  20853. height: math.unit(10, "feet"),
  20854. default: true
  20855. },
  20856. ]
  20857. ))
  20858. characterMakers.push(() => makeCharacter(
  20859. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20860. {
  20861. front: {
  20862. height: math.unit(5 + 4 / 12, "feet"),
  20863. weight: math.unit(120, "lb"),
  20864. name: "Front",
  20865. image: {
  20866. source: "./media/characters/luci/front.svg",
  20867. extra: 1985 / 1884,
  20868. bottom: 0.04
  20869. }
  20870. },
  20871. back: {
  20872. height: math.unit(5 + 4 / 12, "feet"),
  20873. weight: math.unit(120, "lb"),
  20874. name: "Back",
  20875. image: {
  20876. source: "./media/characters/luci/back.svg",
  20877. extra: 1892 / 1791,
  20878. bottom: 0.002
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(5 + 4 / 12, "feet"),
  20886. default: true
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20892. {
  20893. front: {
  20894. height: math.unit(1500, "feet"),
  20895. weight: math.unit(3.8e6, "tons"),
  20896. name: "Front",
  20897. image: {
  20898. source: "./media/characters/2th/front.svg",
  20899. extra: 3489 / 3350,
  20900. bottom: 0.1
  20901. }
  20902. },
  20903. foot: {
  20904. height: math.unit(461, "feet"),
  20905. name: "Foot",
  20906. image: {
  20907. source: "./media/characters/2th/foot.svg"
  20908. }
  20909. },
  20910. },
  20911. [
  20912. {
  20913. name: "\"Micro\"",
  20914. height: math.unit(15 + 7 / 12, "feet")
  20915. },
  20916. {
  20917. name: "Normal",
  20918. height: math.unit(1500, "feet"),
  20919. default: true
  20920. },
  20921. {
  20922. name: "Macro",
  20923. height: math.unit(5000, "feet")
  20924. },
  20925. {
  20926. name: "Megamacro",
  20927. height: math.unit(15, "miles")
  20928. },
  20929. {
  20930. name: "Gigamacro",
  20931. height: math.unit(4000, "miles")
  20932. },
  20933. {
  20934. name: "Galactic",
  20935. height: math.unit(50, "AU")
  20936. },
  20937. ]
  20938. ))
  20939. characterMakers.push(() => makeCharacter(
  20940. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20941. {
  20942. front: {
  20943. height: math.unit(5 + 6 / 12, "feet"),
  20944. weight: math.unit(220, "lb"),
  20945. name: "Front",
  20946. image: {
  20947. source: "./media/characters/amethyst/front.svg",
  20948. extra: 2078 / 2040,
  20949. bottom: 0.045
  20950. }
  20951. },
  20952. back: {
  20953. height: math.unit(5 + 6 / 12, "feet"),
  20954. weight: math.unit(220, "lb"),
  20955. name: "Back",
  20956. image: {
  20957. source: "./media/characters/amethyst/back.svg",
  20958. extra: 2021 / 1989,
  20959. bottom: 0.02
  20960. }
  20961. },
  20962. },
  20963. [
  20964. {
  20965. name: "Normal",
  20966. height: math.unit(5 + 6 / 12, "feet"),
  20967. default: true
  20968. },
  20969. ]
  20970. ))
  20971. characterMakers.push(() => makeCharacter(
  20972. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20973. {
  20974. front: {
  20975. height: math.unit(4 + 11 / 12, "feet"),
  20976. weight: math.unit(120, "lb"),
  20977. name: "Front",
  20978. image: {
  20979. source: "./media/characters/yumi-akiyama/front.svg",
  20980. extra: 1327 / 1235,
  20981. bottom: 0.02
  20982. }
  20983. },
  20984. back: {
  20985. height: math.unit(4 + 11 / 12, "feet"),
  20986. weight: math.unit(120, "lb"),
  20987. name: "Back",
  20988. image: {
  20989. source: "./media/characters/yumi-akiyama/back.svg",
  20990. extra: 1287 / 1245,
  20991. bottom: 0.002
  20992. }
  20993. },
  20994. },
  20995. [
  20996. {
  20997. name: "Galactic",
  20998. height: math.unit(50, "galaxies"),
  20999. default: true
  21000. },
  21001. {
  21002. name: "Universal",
  21003. height: math.unit(100, "universes")
  21004. },
  21005. ]
  21006. ))
  21007. characterMakers.push(() => makeCharacter(
  21008. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21009. {
  21010. front: {
  21011. height: math.unit(8, "feet"),
  21012. weight: math.unit(500, "lb"),
  21013. name: "Front",
  21014. image: {
  21015. source: "./media/characters/rifter-yrmori/front.svg",
  21016. extra: 1180 / 1125,
  21017. bottom: 0.02
  21018. }
  21019. },
  21020. back: {
  21021. height: math.unit(8, "feet"),
  21022. weight: math.unit(500, "lb"),
  21023. name: "Back",
  21024. image: {
  21025. source: "./media/characters/rifter-yrmori/back.svg",
  21026. extra: 1190 / 1145,
  21027. bottom: 0.001
  21028. }
  21029. },
  21030. wings: {
  21031. height: math.unit(7.75, "feet"),
  21032. weight: math.unit(500, "lb"),
  21033. name: "Wings",
  21034. image: {
  21035. source: "./media/characters/rifter-yrmori/wings.svg",
  21036. extra: 1357 / 1285
  21037. }
  21038. },
  21039. maw: {
  21040. height: math.unit(0.8, "feet"),
  21041. name: "Maw",
  21042. image: {
  21043. source: "./media/characters/rifter-yrmori/maw.svg"
  21044. }
  21045. },
  21046. mawfront: {
  21047. height: math.unit(1.45, "feet"),
  21048. name: "Maw (Front)",
  21049. image: {
  21050. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(8, "feet"),
  21058. default: true
  21059. },
  21060. {
  21061. name: "Macro",
  21062. height: math.unit(42, "meters")
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21068. {
  21069. were: {
  21070. height: math.unit(25 + 6 / 12, "feet"),
  21071. weight: math.unit(10000, "lb"),
  21072. name: "Were",
  21073. image: {
  21074. source: "./media/characters/tahajin/were.svg",
  21075. extra: 801 / 770,
  21076. bottom: 0.042
  21077. }
  21078. },
  21079. aquatic: {
  21080. height: math.unit(6 + 4 / 12, "feet"),
  21081. weight: math.unit(160, "lb"),
  21082. name: "Aquatic",
  21083. image: {
  21084. source: "./media/characters/tahajin/aquatic.svg",
  21085. extra: 572 / 542,
  21086. bottom: 0.04
  21087. }
  21088. },
  21089. chow: {
  21090. height: math.unit(8 + 11 / 12, "feet"),
  21091. weight: math.unit(450, "lb"),
  21092. name: "Chow",
  21093. image: {
  21094. source: "./media/characters/tahajin/chow.svg",
  21095. extra: 660 / 640,
  21096. bottom: 0.015
  21097. }
  21098. },
  21099. demiNaga: {
  21100. height: math.unit(6 + 8 / 12, "feet"),
  21101. weight: math.unit(300, "lb"),
  21102. name: "Demi Naga",
  21103. image: {
  21104. source: "./media/characters/tahajin/demi-naga.svg",
  21105. extra: 643 / 615,
  21106. bottom: 0.1
  21107. }
  21108. },
  21109. data: {
  21110. height: math.unit(5, "inches"),
  21111. weight: math.unit(0.1, "lb"),
  21112. name: "Data",
  21113. image: {
  21114. source: "./media/characters/tahajin/data.svg"
  21115. }
  21116. },
  21117. fluu: {
  21118. height: math.unit(5 + 7 / 12, "feet"),
  21119. weight: math.unit(140, "lb"),
  21120. name: "Fluu",
  21121. image: {
  21122. source: "./media/characters/tahajin/fluu.svg",
  21123. extra: 628 / 592,
  21124. bottom: 0.02
  21125. }
  21126. },
  21127. starWarrior: {
  21128. height: math.unit(4 + 5 / 12, "feet"),
  21129. weight: math.unit(50, "lb"),
  21130. name: "Star Warrior",
  21131. image: {
  21132. source: "./media/characters/tahajin/star-warrior.svg"
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(25 + 6 / 12, "feet"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(8, "feet"),
  21149. weight: math.unit(350, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/gabira/front.svg",
  21153. extra: 608 / 580,
  21154. bottom: 0.03
  21155. }
  21156. },
  21157. back: {
  21158. height: math.unit(8, "feet"),
  21159. weight: math.unit(350, "lb"),
  21160. name: "Back",
  21161. image: {
  21162. source: "./media/characters/gabira/back.svg",
  21163. extra: 608 / 580,
  21164. bottom: 0.03
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Normal",
  21171. height: math.unit(8, "feet"),
  21172. default: true
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(5 + 3 / 12, "feet"),
  21181. weight: math.unit(137, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/sasha-katraine/front.svg",
  21185. bottom: 0.045
  21186. }
  21187. },
  21188. },
  21189. [
  21190. {
  21191. name: "Micro",
  21192. height: math.unit(5, "inches")
  21193. },
  21194. {
  21195. name: "Normal",
  21196. height: math.unit(5 + 3 / 12, "feet"),
  21197. default: true
  21198. },
  21199. ]
  21200. ))
  21201. characterMakers.push(() => makeCharacter(
  21202. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21203. {
  21204. side: {
  21205. height: math.unit(4, "inches"),
  21206. weight: math.unit(200, "grams"),
  21207. name: "Side",
  21208. image: {
  21209. source: "./media/characters/der/side.svg",
  21210. extra: 719 / 400,
  21211. bottom: 30.6 / 749.9187
  21212. }
  21213. },
  21214. },
  21215. [
  21216. {
  21217. name: "Micro",
  21218. height: math.unit(4, "inches"),
  21219. default: true
  21220. },
  21221. ]
  21222. ))
  21223. characterMakers.push(() => makeCharacter(
  21224. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21225. {
  21226. side: {
  21227. height: math.unit(30, "meters"),
  21228. weight: math.unit(700, "tonnes"),
  21229. name: "Side",
  21230. image: {
  21231. source: "./media/characters/fixerdragon/side.svg",
  21232. extra: (1293.0514 - 116.03) / 1106.86,
  21233. bottom: 116.03 / 1293.0514
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Planck",
  21240. height: math.unit(1.6e-35, "meters")
  21241. },
  21242. {
  21243. name: "Micro",
  21244. height: math.unit(0.4, "meters")
  21245. },
  21246. {
  21247. name: "Normal",
  21248. height: math.unit(30, "meters"),
  21249. default: true
  21250. },
  21251. {
  21252. name: "Megamacro",
  21253. height: math.unit(1.2, "megameters")
  21254. },
  21255. {
  21256. name: "Teramacro",
  21257. height: math.unit(130, "terameters")
  21258. },
  21259. {
  21260. name: "Yottamacro",
  21261. height: math.unit(6200, "yottameters")
  21262. },
  21263. ]
  21264. ));
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21267. {
  21268. front: {
  21269. height: math.unit(8, "feet"),
  21270. weight: math.unit(250, "lb"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/kite/front.svg",
  21274. extra: 2796 / 2659,
  21275. bottom: 0.002
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(8, "feet"),
  21283. default: true
  21284. },
  21285. {
  21286. name: "Macro",
  21287. height: math.unit(360, "feet")
  21288. },
  21289. {
  21290. name: "Megamacro",
  21291. height: math.unit(1500, "feet")
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21297. {
  21298. front: {
  21299. height: math.unit(5 + 10 / 12, "feet"),
  21300. weight: math.unit(150, "lb"),
  21301. name: "Front",
  21302. image: {
  21303. source: "./media/characters/poojawa-vynar/front.svg",
  21304. extra: (1506.1547 - 55) / 1356.6,
  21305. bottom: 55 / 1506.1547
  21306. }
  21307. },
  21308. frontTailless: {
  21309. height: math.unit(5 + 10 / 12, "feet"),
  21310. weight: math.unit(150, "lb"),
  21311. name: "Front (Tailless)",
  21312. image: {
  21313. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21314. extra: (1506.1547 - 55) / 1356.6,
  21315. bottom: 55 / 1506.1547
  21316. }
  21317. },
  21318. },
  21319. [
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(5 + 10 / 12, "feet"),
  21323. default: true
  21324. },
  21325. ]
  21326. ))
  21327. characterMakers.push(() => makeCharacter(
  21328. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21329. {
  21330. front: {
  21331. height: math.unit(293, "meters"),
  21332. weight: math.unit(70400, "tons"),
  21333. name: "Front",
  21334. image: {
  21335. source: "./media/characters/violette/front.svg",
  21336. extra: 1227 / 1180,
  21337. bottom: 0.005
  21338. }
  21339. },
  21340. back: {
  21341. height: math.unit(293, "meters"),
  21342. weight: math.unit(70400, "tons"),
  21343. name: "Back",
  21344. image: {
  21345. source: "./media/characters/violette/back.svg",
  21346. extra: 1227 / 1180,
  21347. bottom: 0.005
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Macro",
  21354. height: math.unit(293, "meters"),
  21355. default: true
  21356. },
  21357. ]
  21358. ))
  21359. characterMakers.push(() => makeCharacter(
  21360. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21361. {
  21362. front: {
  21363. height: math.unit(1050, "feet"),
  21364. weight: math.unit(200000, "tons"),
  21365. name: "Front",
  21366. image: {
  21367. source: "./media/characters/alessandra/front.svg",
  21368. extra: 960 / 912,
  21369. bottom: 0.06
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Macro",
  21376. height: math.unit(1050, "feet")
  21377. },
  21378. {
  21379. name: "Macro+",
  21380. height: math.unit(900, "meters"),
  21381. default: true
  21382. },
  21383. ]
  21384. ))
  21385. characterMakers.push(() => makeCharacter(
  21386. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21387. {
  21388. front: {
  21389. height: math.unit(5, "feet"),
  21390. weight: math.unit(187, "lb"),
  21391. name: "Front",
  21392. image: {
  21393. source: "./media/characters/person/front.svg",
  21394. extra: 3087 / 2945,
  21395. bottom: 91 / 3181
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Micro",
  21402. height: math.unit(3, "inches")
  21403. },
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(5, "feet"),
  21407. default: true
  21408. },
  21409. {
  21410. name: "Macro",
  21411. height: math.unit(90, "feet")
  21412. },
  21413. {
  21414. name: "Max Size",
  21415. height: math.unit(280, "feet")
  21416. },
  21417. ]
  21418. ))
  21419. characterMakers.push(() => makeCharacter(
  21420. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21421. {
  21422. front: {
  21423. height: math.unit(4.5, "meters"),
  21424. weight: math.unit(3200, "lb"),
  21425. name: "Front",
  21426. image: {
  21427. source: "./media/characters/ty/front.svg",
  21428. extra: 1038 / 960,
  21429. bottom: 31.156 / 1068
  21430. }
  21431. },
  21432. back: {
  21433. height: math.unit(4.5, "meters"),
  21434. weight: math.unit(3200, "lb"),
  21435. name: "Back",
  21436. image: {
  21437. source: "./media/characters/ty/back.svg",
  21438. extra: 1044 / 966,
  21439. bottom: 7.48 / 1049
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(4.5, "meters"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(5 + 4 / 12, "feet"),
  21456. weight: math.unit(115, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/rocky/front.svg",
  21460. extra: 1012 / 975,
  21461. bottom: 54 / 1066
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(5 + 4 / 12, "feet"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21475. {
  21476. upright: {
  21477. height: math.unit(6, "meters"),
  21478. weight: math.unit(4000, "kg"),
  21479. name: "Upright",
  21480. image: {
  21481. source: "./media/characters/ruin/upright.svg",
  21482. extra: 668 / 661,
  21483. bottom: 42 / 799.8396
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(6, "meters"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(5, "feet"),
  21500. weight: math.unit(106, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/robin/front.svg",
  21504. extra: 862 / 799,
  21505. bottom: 42.4 / 914.8856
  21506. }
  21507. },
  21508. },
  21509. [
  21510. {
  21511. name: "Normal",
  21512. height: math.unit(5, "feet"),
  21513. default: true
  21514. },
  21515. ]
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21519. {
  21520. side: {
  21521. height: math.unit(3, "feet"),
  21522. weight: math.unit(225, "lb"),
  21523. name: "Side",
  21524. image: {
  21525. source: "./media/characters/saian/side.svg",
  21526. extra: 566 / 356,
  21527. bottom: 79.7 / 643
  21528. }
  21529. },
  21530. maw: {
  21531. height: math.unit(2.85, "feet"),
  21532. name: "Maw",
  21533. image: {
  21534. source: "./media/characters/saian/maw.svg"
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Normal",
  21541. height: math.unit(3, "feet"),
  21542. default: true
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21548. {
  21549. side: {
  21550. height: math.unit(8, "feet"),
  21551. weight: math.unit(300, "lb"),
  21552. name: "Side",
  21553. image: {
  21554. source: "./media/characters/equus-silvermane/side.svg",
  21555. extra: 2176 / 2050,
  21556. bottom: 65.7 / 2245
  21557. }
  21558. },
  21559. front: {
  21560. height: math.unit(8, "feet"),
  21561. weight: math.unit(300, "lb"),
  21562. name: "Front",
  21563. image: {
  21564. source: "./media/characters/equus-silvermane/front.svg",
  21565. extra: 4633 / 4400,
  21566. bottom: 71.3 / 4706.915
  21567. }
  21568. },
  21569. sideStepping: {
  21570. height: math.unit(8, "feet"),
  21571. weight: math.unit(300, "lb"),
  21572. name: "Side (Stepping)",
  21573. image: {
  21574. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21575. extra: 1968 / 1860,
  21576. bottom: 16.4 / 1989
  21577. }
  21578. },
  21579. },
  21580. [
  21581. {
  21582. name: "Normal",
  21583. height: math.unit(8, "feet")
  21584. },
  21585. {
  21586. name: "Minimacro",
  21587. height: math.unit(75, "feet"),
  21588. default: true
  21589. },
  21590. {
  21591. name: "Macro",
  21592. height: math.unit(150, "feet")
  21593. },
  21594. {
  21595. name: "Macro+",
  21596. height: math.unit(1000, "feet")
  21597. },
  21598. {
  21599. name: "Megamacro",
  21600. height: math.unit(1, "mile")
  21601. },
  21602. ]
  21603. ))
  21604. characterMakers.push(() => makeCharacter(
  21605. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21606. {
  21607. side: {
  21608. height: math.unit(20, "feet"),
  21609. weight: math.unit(30000, "kg"),
  21610. name: "Side",
  21611. image: {
  21612. source: "./media/characters/windar/side.svg",
  21613. extra: 1491 / 1248,
  21614. bottom: 82.56 / 1568
  21615. }
  21616. },
  21617. },
  21618. [
  21619. {
  21620. name: "Normal",
  21621. height: math.unit(20, "feet"),
  21622. default: true
  21623. },
  21624. ]
  21625. ))
  21626. characterMakers.push(() => makeCharacter(
  21627. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21628. {
  21629. side: {
  21630. height: math.unit(15.66, "feet"),
  21631. weight: math.unit(150, "lb"),
  21632. name: "Side",
  21633. image: {
  21634. source: "./media/characters/melody/side.svg",
  21635. extra: 1097 / 944,
  21636. bottom: 11.8 / 1109
  21637. }
  21638. },
  21639. sideOutfit: {
  21640. height: math.unit(15.66, "feet"),
  21641. weight: math.unit(150, "lb"),
  21642. name: "Side (Outfit)",
  21643. image: {
  21644. source: "./media/characters/melody/side-outfit.svg",
  21645. extra: 1097 / 944,
  21646. bottom: 11.8 / 1109
  21647. }
  21648. },
  21649. },
  21650. [
  21651. {
  21652. name: "Normal",
  21653. height: math.unit(15.66, "feet"),
  21654. default: true
  21655. },
  21656. ]
  21657. ))
  21658. characterMakers.push(() => makeCharacter(
  21659. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21660. {
  21661. front: {
  21662. height: math.unit(8, "feet"),
  21663. weight: math.unit(325, "lb"),
  21664. name: "Front",
  21665. image: {
  21666. source: "./media/characters/windera/front.svg",
  21667. extra: 3180 / 2845,
  21668. bottom: 178 / 3365
  21669. }
  21670. },
  21671. },
  21672. [
  21673. {
  21674. name: "Normal",
  21675. height: math.unit(8, "feet"),
  21676. default: true
  21677. },
  21678. ]
  21679. ))
  21680. characterMakers.push(() => makeCharacter(
  21681. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21682. {
  21683. front: {
  21684. height: math.unit(28.75, "feet"),
  21685. weight: math.unit(2000, "kg"),
  21686. name: "Front",
  21687. image: {
  21688. source: "./media/characters/sonear/front.svg",
  21689. extra: 1041.1 / 964.9,
  21690. bottom: 53.7 / 1096.6
  21691. }
  21692. },
  21693. },
  21694. [
  21695. {
  21696. name: "Normal",
  21697. height: math.unit(28.75, "feet"),
  21698. default: true
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21704. {
  21705. side: {
  21706. height: math.unit(25.5, "feet"),
  21707. weight: math.unit(23000, "kg"),
  21708. name: "Side",
  21709. image: {
  21710. source: "./media/characters/kanara/side.svg"
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Normal",
  21717. height: math.unit(25.5, "feet"),
  21718. default: true
  21719. },
  21720. ]
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21724. {
  21725. side: {
  21726. height: math.unit(10, "feet"),
  21727. weight: math.unit(1000, "kg"),
  21728. name: "Side",
  21729. image: {
  21730. source: "./media/characters/ereus/side.svg",
  21731. extra: 1157 / 959,
  21732. bottom: 153 / 1312.5
  21733. }
  21734. },
  21735. },
  21736. [
  21737. {
  21738. name: "Normal",
  21739. height: math.unit(10, "feet"),
  21740. default: true
  21741. },
  21742. ]
  21743. ))
  21744. characterMakers.push(() => makeCharacter(
  21745. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21746. {
  21747. side: {
  21748. height: math.unit(4.5, "feet"),
  21749. weight: math.unit(500, "lb"),
  21750. name: "Side",
  21751. image: {
  21752. source: "./media/characters/e-ter/side.svg",
  21753. extra: 1550 / 1248,
  21754. bottom: 146 / 1694
  21755. }
  21756. },
  21757. },
  21758. [
  21759. {
  21760. name: "Normal",
  21761. height: math.unit(4.5, "feet"),
  21762. default: true
  21763. },
  21764. ]
  21765. ))
  21766. characterMakers.push(() => makeCharacter(
  21767. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21768. {
  21769. side: {
  21770. height: math.unit(9.7, "feet"),
  21771. weight: math.unit(4000, "kg"),
  21772. name: "Side",
  21773. image: {
  21774. source: "./media/characters/yamie/side.svg"
  21775. }
  21776. },
  21777. },
  21778. [
  21779. {
  21780. name: "Normal",
  21781. height: math.unit(9.7, "feet"),
  21782. default: true
  21783. },
  21784. ]
  21785. ))
  21786. characterMakers.push(() => makeCharacter(
  21787. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21788. {
  21789. front: {
  21790. height: math.unit(50, "feet"),
  21791. weight: math.unit(50000, "kg"),
  21792. name: "Front",
  21793. image: {
  21794. source: "./media/characters/anders/front.svg",
  21795. extra: 570 / 539,
  21796. bottom: 14.7 / 586.7
  21797. }
  21798. },
  21799. },
  21800. [
  21801. {
  21802. name: "Large",
  21803. height: math.unit(50, "feet")
  21804. },
  21805. {
  21806. name: "Macro",
  21807. height: math.unit(2000, "feet"),
  21808. default: true
  21809. },
  21810. {
  21811. name: "Megamacro",
  21812. height: math.unit(12, "miles")
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(7 + 2 / 12, "feet"),
  21821. weight: math.unit(300, "lb"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/reban/front.svg",
  21825. extra: 516 / 487,
  21826. bottom: 42.82 / 558.356
  21827. }
  21828. },
  21829. dick: {
  21830. height: math.unit(7 / 5, "feet"),
  21831. name: "Dick",
  21832. image: {
  21833. source: "./media/characters/reban/dick.svg"
  21834. }
  21835. },
  21836. },
  21837. [
  21838. {
  21839. name: "Natural Height",
  21840. height: math.unit(7 + 2 / 12, "feet")
  21841. },
  21842. {
  21843. name: "Macro",
  21844. height: math.unit(500, "feet"),
  21845. default: true
  21846. },
  21847. {
  21848. name: "Canon Height",
  21849. height: math.unit(50, "AU")
  21850. },
  21851. ]
  21852. ))
  21853. characterMakers.push(() => makeCharacter(
  21854. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21855. {
  21856. front: {
  21857. height: math.unit(6, "feet"),
  21858. weight: math.unit(150, "lb"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/terrance-keayes/front.svg",
  21862. extra: 1.005,
  21863. bottom: 151 / 1615
  21864. }
  21865. },
  21866. side: {
  21867. height: math.unit(6, "feet"),
  21868. weight: math.unit(150, "lb"),
  21869. name: "Side",
  21870. image: {
  21871. source: "./media/characters/terrance-keayes/side.svg",
  21872. extra: 1.005,
  21873. bottom: 129.4 / 1544
  21874. }
  21875. },
  21876. back: {
  21877. height: math.unit(6, "feet"),
  21878. weight: math.unit(150, "lb"),
  21879. name: "Back",
  21880. image: {
  21881. source: "./media/characters/terrance-keayes/back.svg",
  21882. extra: 1.005,
  21883. bottom: 58.4 / 1557.3
  21884. }
  21885. },
  21886. dick: {
  21887. height: math.unit(6 * 0.208, "feet"),
  21888. name: "Dick",
  21889. image: {
  21890. source: "./media/characters/terrance-keayes/dick.svg"
  21891. }
  21892. },
  21893. },
  21894. [
  21895. {
  21896. name: "Canon Height",
  21897. height: math.unit(35, "miles"),
  21898. default: true
  21899. },
  21900. ]
  21901. ))
  21902. characterMakers.push(() => makeCharacter(
  21903. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21904. {
  21905. front: {
  21906. height: math.unit(6, "feet"),
  21907. weight: math.unit(150, "lb"),
  21908. name: "Front",
  21909. image: {
  21910. source: "./media/characters/ofelia/front.svg",
  21911. extra: 546 / 541,
  21912. bottom: 39 / 583
  21913. }
  21914. },
  21915. back: {
  21916. height: math.unit(6, "feet"),
  21917. weight: math.unit(150, "lb"),
  21918. name: "Back",
  21919. image: {
  21920. source: "./media/characters/ofelia/back.svg",
  21921. extra: 564 / 559.5,
  21922. bottom: 8.69 / 573.02
  21923. }
  21924. },
  21925. maw: {
  21926. height: math.unit(1, "feet"),
  21927. name: "Maw",
  21928. image: {
  21929. source: "./media/characters/ofelia/maw.svg"
  21930. }
  21931. },
  21932. foot: {
  21933. height: math.unit(1.949, "feet"),
  21934. name: "Foot",
  21935. image: {
  21936. source: "./media/characters/ofelia/foot.svg"
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Canon Height",
  21943. height: math.unit(2000, "miles"),
  21944. default: true
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21950. {
  21951. front: {
  21952. height: math.unit(6, "feet"),
  21953. weight: math.unit(150, "lb"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/samuel/front.svg",
  21957. extra: 265 / 258,
  21958. bottom: 2 / 266.1566
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Macro",
  21965. height: math.unit(100, "feet"),
  21966. default: true
  21967. },
  21968. {
  21969. name: "Full Size",
  21970. height: math.unit(1000, "miles")
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(6, "feet"),
  21979. weight: math.unit(300, "lb"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/beishir-kiel/front.svg",
  21983. extra: 569 / 547,
  21984. bottom: 41.9 / 609
  21985. }
  21986. },
  21987. maw: {
  21988. height: math.unit(6 * 0.202, "feet"),
  21989. name: "Maw",
  21990. image: {
  21991. source: "./media/characters/beishir-kiel/maw.svg"
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Macro",
  21998. height: math.unit(300, "feet"),
  21999. default: true
  22000. },
  22001. ]
  22002. ))
  22003. characterMakers.push(() => makeCharacter(
  22004. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22005. {
  22006. front: {
  22007. height: math.unit(5 + 7/12, "feet"),
  22008. weight: math.unit(120, "lb"),
  22009. name: "Front",
  22010. image: {
  22011. source: "./media/characters/logan-grey/front.svg",
  22012. extra: 1836/1738,
  22013. bottom: 108/1944
  22014. }
  22015. },
  22016. back: {
  22017. height: math.unit(5 + 7/12, "feet"),
  22018. weight: math.unit(120, "lb"),
  22019. name: "Back",
  22020. image: {
  22021. source: "./media/characters/logan-grey/back.svg",
  22022. extra: 1880/1794,
  22023. bottom: 24/1904
  22024. }
  22025. },
  22026. frontSfw: {
  22027. height: math.unit(5 + 7/12, "feet"),
  22028. weight: math.unit(120, "lb"),
  22029. name: "Front (SFW)",
  22030. image: {
  22031. source: "./media/characters/logan-grey/front-sfw.svg",
  22032. extra: 1836/1738,
  22033. bottom: 108/1944
  22034. }
  22035. },
  22036. backSfw: {
  22037. height: math.unit(5 + 7/12, "feet"),
  22038. weight: math.unit(120, "lb"),
  22039. name: "Back (SFW)",
  22040. image: {
  22041. source: "./media/characters/logan-grey/back-sfw.svg",
  22042. extra: 1880/1794,
  22043. bottom: 24/1904
  22044. }
  22045. },
  22046. hands: {
  22047. height: math.unit(0.84, "feet"),
  22048. name: "Hands",
  22049. image: {
  22050. source: "./media/characters/logan-grey/hands.svg"
  22051. }
  22052. },
  22053. paws: {
  22054. height: math.unit(0.72, "feet"),
  22055. name: "Paws",
  22056. image: {
  22057. source: "./media/characters/logan-grey/paws.svg"
  22058. }
  22059. },
  22060. cock: {
  22061. height: math.unit(1.45, "feet"),
  22062. name: "Cock",
  22063. image: {
  22064. source: "./media/characters/logan-grey/cock.svg"
  22065. }
  22066. },
  22067. cockAlt: {
  22068. height: math.unit(1.437, "feet"),
  22069. name: "Cock (alt)",
  22070. image: {
  22071. source: "./media/characters/logan-grey/cock-alt.svg"
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(5 + 8 / 12, "feet")
  22079. },
  22080. {
  22081. name: "The 500 Foot Femboy",
  22082. height: math.unit(500, "feet"),
  22083. default: true
  22084. },
  22085. {
  22086. name: "Megmacro",
  22087. height: math.unit(20, "miles")
  22088. },
  22089. ]
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22093. {
  22094. front: {
  22095. height: math.unit(8 + 2 / 12, "feet"),
  22096. weight: math.unit(275, "lb"),
  22097. name: "Front",
  22098. image: {
  22099. source: "./media/characters/draganta/front.svg",
  22100. extra: 1177 / 1135,
  22101. bottom: 33.46 / 1212.1
  22102. }
  22103. },
  22104. },
  22105. [
  22106. {
  22107. name: "Normal",
  22108. height: math.unit(8 + 6 / 12, "feet"),
  22109. default: true
  22110. },
  22111. {
  22112. name: "Macro",
  22113. height: math.unit(150, "feet")
  22114. },
  22115. {
  22116. name: "Megamacro",
  22117. height: math.unit(1000, "miles")
  22118. },
  22119. ]
  22120. ))
  22121. characterMakers.push(() => makeCharacter(
  22122. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22123. {
  22124. front: {
  22125. height: math.unit(1.72, "m"),
  22126. weight: math.unit(80, "lb"),
  22127. name: "Front",
  22128. image: {
  22129. source: "./media/characters/voski/front.svg",
  22130. extra: 2076.22 / 2022.4,
  22131. bottom: 102.7 / 2177.3866
  22132. }
  22133. },
  22134. frontNsfw: {
  22135. height: math.unit(1.72, "m"),
  22136. weight: math.unit(80, "lb"),
  22137. name: "Front (NSFW)",
  22138. image: {
  22139. source: "./media/characters/voski/front-nsfw.svg",
  22140. extra: 2076.22 / 2022.4,
  22141. bottom: 102.7 / 2177.3866
  22142. }
  22143. },
  22144. back: {
  22145. height: math.unit(1.72, "m"),
  22146. weight: math.unit(80, "lb"),
  22147. name: "Back",
  22148. image: {
  22149. source: "./media/characters/voski/back.svg",
  22150. extra: 2104 / 2051,
  22151. bottom: 10.45 / 2113.63
  22152. }
  22153. },
  22154. },
  22155. [
  22156. {
  22157. name: "Normal",
  22158. height: math.unit(1.72, "m")
  22159. },
  22160. {
  22161. name: "Macro",
  22162. height: math.unit(55, "m"),
  22163. default: true
  22164. },
  22165. {
  22166. name: "Macro+",
  22167. height: math.unit(300, "m")
  22168. },
  22169. {
  22170. name: "Macro++",
  22171. height: math.unit(700, "m")
  22172. },
  22173. {
  22174. name: "Macro+++",
  22175. height: math.unit(4500, "m")
  22176. },
  22177. {
  22178. name: "Macro++++",
  22179. height: math.unit(45, "km")
  22180. },
  22181. {
  22182. name: "Macro+++++",
  22183. height: math.unit(1220, "km")
  22184. },
  22185. ]
  22186. ))
  22187. characterMakers.push(() => makeCharacter(
  22188. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22189. {
  22190. front: {
  22191. height: math.unit(2.3, "m"),
  22192. weight: math.unit(304, "kg"),
  22193. name: "Front",
  22194. image: {
  22195. source: "./media/characters/icowom-lee/front.svg",
  22196. extra: 985 / 955,
  22197. bottom: 25.4 / 1012
  22198. }
  22199. },
  22200. fronttentacles: {
  22201. height: math.unit(2.3, "m"),
  22202. weight: math.unit(304, "kg"),
  22203. name: "Front-tentacles",
  22204. image: {
  22205. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22206. extra: 985 / 955,
  22207. bottom: 25.4 / 1012
  22208. }
  22209. },
  22210. back: {
  22211. height: math.unit(2.3, "m"),
  22212. weight: math.unit(304, "kg"),
  22213. name: "Back",
  22214. image: {
  22215. source: "./media/characters/icowom-lee/back.svg",
  22216. extra: 975 / 954,
  22217. bottom: 9.5 / 985
  22218. }
  22219. },
  22220. backtentacles: {
  22221. height: math.unit(2.3, "m"),
  22222. weight: math.unit(304, "kg"),
  22223. name: "Back-tentacles",
  22224. image: {
  22225. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22226. extra: 975 / 954,
  22227. bottom: 9.5 / 985
  22228. }
  22229. },
  22230. frontDressed: {
  22231. height: math.unit(2.3, "m"),
  22232. weight: math.unit(304, "kg"),
  22233. name: "Front (Dressed)",
  22234. image: {
  22235. source: "./media/characters/icowom-lee/front-dressed.svg",
  22236. extra: 3076 / 2933,
  22237. bottom: 51.4 / 3125.1889
  22238. }
  22239. },
  22240. rump: {
  22241. height: math.unit(0.776, "meters"),
  22242. name: "Rump",
  22243. image: {
  22244. source: "./media/characters/icowom-lee/rump.svg"
  22245. }
  22246. },
  22247. genitals: {
  22248. height: math.unit(0.78, "meters"),
  22249. name: "Genitals",
  22250. image: {
  22251. source: "./media/characters/icowom-lee/genitals.svg"
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(2.3, "meters"),
  22259. default: true
  22260. },
  22261. {
  22262. name: "Macro",
  22263. height: math.unit(94, "meters"),
  22264. default: true
  22265. },
  22266. ]
  22267. ))
  22268. characterMakers.push(() => makeCharacter(
  22269. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22270. {
  22271. front: {
  22272. height: math.unit(22, "meters"),
  22273. weight: math.unit(21000, "kg"),
  22274. name: "Front",
  22275. image: {
  22276. source: "./media/characters/shock-diamond/front.svg",
  22277. extra: 2204 / 2053,
  22278. bottom: 65 / 2239.47
  22279. }
  22280. },
  22281. frontNude: {
  22282. height: math.unit(22, "meters"),
  22283. weight: math.unit(21000, "kg"),
  22284. name: "Front (Nude)",
  22285. image: {
  22286. source: "./media/characters/shock-diamond/front-nude.svg",
  22287. extra: 2514 / 2285,
  22288. bottom: 13 / 2527.56
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(3, "meters")
  22296. },
  22297. {
  22298. name: "Macro",
  22299. height: math.unit(22, "meters"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22306. {
  22307. front: {
  22308. height: math.unit(5 + 4 / 12, "feet"),
  22309. weight: math.unit(120, "lb"),
  22310. name: "Front",
  22311. image: {
  22312. source: "./media/characters/rory/front.svg",
  22313. extra: 1318/1241,
  22314. bottom: 42/1360
  22315. }
  22316. },
  22317. back: {
  22318. height: math.unit(5 + 4 / 12, "feet"),
  22319. weight: math.unit(120, "lb"),
  22320. name: "Back",
  22321. image: {
  22322. source: "./media/characters/rory/back.svg",
  22323. extra: 1318/1241,
  22324. bottom: 42/1360
  22325. }
  22326. },
  22327. butt: {
  22328. height: math.unit(1.74, "feet"),
  22329. name: "Butt",
  22330. image: {
  22331. source: "./media/characters/rory/butt.svg"
  22332. }
  22333. },
  22334. dick: {
  22335. height: math.unit(1.02, "feet"),
  22336. name: "Dick",
  22337. image: {
  22338. source: "./media/characters/rory/dick.svg"
  22339. }
  22340. },
  22341. paws: {
  22342. height: math.unit(1, "feet"),
  22343. name: "Paws",
  22344. image: {
  22345. source: "./media/characters/rory/paws.svg"
  22346. }
  22347. },
  22348. frontAlt: {
  22349. height: math.unit(5 + 4 / 12, "feet"),
  22350. weight: math.unit(120, "lb"),
  22351. name: "Front (Alt)",
  22352. image: {
  22353. source: "./media/characters/rory/front-alt.svg",
  22354. extra: 589 / 556,
  22355. bottom: 45.7 / 635.76
  22356. }
  22357. },
  22358. frontAltNude: {
  22359. height: math.unit(5 + 4 / 12, "feet"),
  22360. weight: math.unit(120, "lb"),
  22361. name: "Front (Alt, Nude)",
  22362. image: {
  22363. source: "./media/characters/rory/front-alt-nude.svg",
  22364. extra: 589 / 556,
  22365. bottom: 45.7 / 635.76
  22366. }
  22367. },
  22368. side: {
  22369. height: math.unit(5 + 4 / 12, "feet"),
  22370. weight: math.unit(120, "lb"),
  22371. name: "Side",
  22372. image: {
  22373. source: "./media/characters/rory/side.svg",
  22374. extra: 597 / 564,
  22375. bottom: 55 / 653
  22376. }
  22377. },
  22378. backAlt: {
  22379. height: math.unit(5 + 4 / 12, "feet"),
  22380. weight: math.unit(120, "lb"),
  22381. name: "Back (Alt)",
  22382. image: {
  22383. source: "./media/characters/rory/back-alt.svg",
  22384. extra: 620 / 585,
  22385. bottom: 8.86 / 630.43
  22386. }
  22387. },
  22388. dickAlt: {
  22389. height: math.unit(0.86, "feet"),
  22390. name: "Dick (Alt)",
  22391. image: {
  22392. source: "./media/characters/rory/dick-alt.svg"
  22393. }
  22394. },
  22395. },
  22396. [
  22397. {
  22398. name: "Normal",
  22399. height: math.unit(5 + 4 / 12, "feet"),
  22400. default: true
  22401. },
  22402. {
  22403. name: "Macro",
  22404. height: math.unit(100, "feet")
  22405. },
  22406. {
  22407. name: "Macro+",
  22408. height: math.unit(140, "feet")
  22409. },
  22410. {
  22411. name: "Macro++",
  22412. height: math.unit(300, "feet")
  22413. },
  22414. ]
  22415. ))
  22416. characterMakers.push(() => makeCharacter(
  22417. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22418. {
  22419. front: {
  22420. height: math.unit(5 + 9 / 12, "feet"),
  22421. weight: math.unit(190, "lb"),
  22422. name: "Front",
  22423. image: {
  22424. source: "./media/characters/sprisk/front.svg",
  22425. extra: 1225 / 1180,
  22426. bottom: 42.7 / 1266.4
  22427. }
  22428. },
  22429. frontNsfw: {
  22430. height: math.unit(5 + 9 / 12, "feet"),
  22431. weight: math.unit(190, "lb"),
  22432. name: "Front (NSFW)",
  22433. image: {
  22434. source: "./media/characters/sprisk/front-nsfw.svg",
  22435. extra: 1225 / 1180,
  22436. bottom: 42.7 / 1266.4
  22437. }
  22438. },
  22439. back: {
  22440. height: math.unit(5 + 9 / 12, "feet"),
  22441. weight: math.unit(190, "lb"),
  22442. name: "Back",
  22443. image: {
  22444. source: "./media/characters/sprisk/back.svg",
  22445. extra: 1247 / 1200,
  22446. bottom: 5.6 / 1253.04
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Tiny",
  22453. height: math.unit(2, "inches")
  22454. },
  22455. {
  22456. name: "Normal",
  22457. height: math.unit(5 + 9 / 12, "feet"),
  22458. default: true
  22459. },
  22460. {
  22461. name: "Mini Macro",
  22462. height: math.unit(18, "feet")
  22463. },
  22464. {
  22465. name: "Macro",
  22466. height: math.unit(100, "feet")
  22467. },
  22468. {
  22469. name: "MACRO",
  22470. height: math.unit(50, "miles")
  22471. },
  22472. {
  22473. name: "M A C R O",
  22474. height: math.unit(300, "miles")
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22480. {
  22481. side: {
  22482. height: math.unit(15.6, "meters"),
  22483. weight: math.unit(700000, "kg"),
  22484. name: "Side",
  22485. image: {
  22486. source: "./media/characters/bunsen/side.svg",
  22487. extra: 1644 / 358
  22488. }
  22489. },
  22490. foot: {
  22491. height: math.unit(1.611 * 1644 / 358, "meter"),
  22492. name: "Foot",
  22493. image: {
  22494. source: "./media/characters/bunsen/foot.svg"
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Small",
  22501. height: math.unit(10, "feet")
  22502. },
  22503. {
  22504. name: "Normal",
  22505. height: math.unit(15.6, "meters"),
  22506. default: true
  22507. },
  22508. ]
  22509. ))
  22510. characterMakers.push(() => makeCharacter(
  22511. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22512. {
  22513. front: {
  22514. height: math.unit(4 + 11 / 12, "feet"),
  22515. weight: math.unit(140, "lb"),
  22516. name: "Front",
  22517. image: {
  22518. source: "./media/characters/sesh/front.svg",
  22519. extra: 3420 / 3231,
  22520. bottom: 72 / 3949.5
  22521. }
  22522. },
  22523. },
  22524. [
  22525. {
  22526. name: "Normal",
  22527. height: math.unit(4 + 11 / 12, "feet")
  22528. },
  22529. {
  22530. name: "Grown",
  22531. height: math.unit(15, "feet"),
  22532. default: true
  22533. },
  22534. {
  22535. name: "Macro",
  22536. height: math.unit(1500, "feet")
  22537. },
  22538. {
  22539. name: "Megamacro",
  22540. height: math.unit(30, "miles")
  22541. },
  22542. {
  22543. name: "Continental",
  22544. height: math.unit(3000, "miles")
  22545. },
  22546. {
  22547. name: "Gravity Mass",
  22548. height: math.unit(300000, "miles")
  22549. },
  22550. {
  22551. name: "Planet Buster",
  22552. height: math.unit(30000000, "miles")
  22553. },
  22554. {
  22555. name: "Big",
  22556. height: math.unit(3000000000, "miles")
  22557. },
  22558. ]
  22559. ))
  22560. characterMakers.push(() => makeCharacter(
  22561. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22562. {
  22563. front: {
  22564. height: math.unit(9, "feet"),
  22565. weight: math.unit(350, "lb"),
  22566. name: "Front",
  22567. image: {
  22568. source: "./media/characters/pepper/front.svg",
  22569. extra: 1448 / 1312,
  22570. bottom: 9.4 / 1457.88
  22571. }
  22572. },
  22573. back: {
  22574. height: math.unit(9, "feet"),
  22575. weight: math.unit(350, "lb"),
  22576. name: "Back",
  22577. image: {
  22578. source: "./media/characters/pepper/back.svg",
  22579. extra: 1423 / 1300,
  22580. bottom: 4.6 / 1429
  22581. }
  22582. },
  22583. maw: {
  22584. height: math.unit(0.932, "feet"),
  22585. name: "Maw",
  22586. image: {
  22587. source: "./media/characters/pepper/maw.svg"
  22588. }
  22589. },
  22590. },
  22591. [
  22592. {
  22593. name: "Normal",
  22594. height: math.unit(9, "feet"),
  22595. default: true
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22601. {
  22602. front: {
  22603. height: math.unit(6, "feet"),
  22604. weight: math.unit(150, "lb"),
  22605. name: "Front",
  22606. image: {
  22607. source: "./media/characters/maelstrom/front.svg",
  22608. extra: 2100 / 1883,
  22609. bottom: 94 / 2196.7
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Less Kaiju",
  22616. height: math.unit(200, "feet")
  22617. },
  22618. {
  22619. name: "Kaiju",
  22620. height: math.unit(400, "feet"),
  22621. default: true
  22622. },
  22623. {
  22624. name: "Kaiju-er",
  22625. height: math.unit(600, "feet")
  22626. },
  22627. ]
  22628. ))
  22629. characterMakers.push(() => makeCharacter(
  22630. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22631. {
  22632. front: {
  22633. height: math.unit(6 + 5 / 12, "feet"),
  22634. weight: math.unit(180, "lb"),
  22635. name: "Front",
  22636. image: {
  22637. source: "./media/characters/lexir/front.svg",
  22638. extra: 180 / 172,
  22639. bottom: 12 / 192
  22640. }
  22641. },
  22642. back: {
  22643. height: math.unit(6 + 5 / 12, "feet"),
  22644. weight: math.unit(180, "lb"),
  22645. name: "Back",
  22646. image: {
  22647. source: "./media/characters/lexir/back.svg",
  22648. extra: 183.84 / 175.5,
  22649. bottom: 3.1 / 187
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Very Smal",
  22656. height: math.unit(1, "nm")
  22657. },
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(6 + 5 / 12, "feet"),
  22661. default: true
  22662. },
  22663. {
  22664. name: "Macro",
  22665. height: math.unit(1, "mile")
  22666. },
  22667. {
  22668. name: "Megamacro",
  22669. height: math.unit(50, "miles")
  22670. },
  22671. ]
  22672. ))
  22673. characterMakers.push(() => makeCharacter(
  22674. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22675. {
  22676. front: {
  22677. height: math.unit(1.5, "meters"),
  22678. weight: math.unit(100, "lb"),
  22679. name: "Front",
  22680. image: {
  22681. source: "./media/characters/maksio/front.svg",
  22682. extra: 1549 / 1531,
  22683. bottom: 123.7 / 1674.5429
  22684. }
  22685. },
  22686. back: {
  22687. height: math.unit(1.5, "meters"),
  22688. weight: math.unit(100, "lb"),
  22689. name: "Back",
  22690. image: {
  22691. source: "./media/characters/maksio/back.svg",
  22692. extra: 1541 / 1509,
  22693. bottom: 97 / 1639
  22694. }
  22695. },
  22696. hand: {
  22697. height: math.unit(0.621, "feet"),
  22698. name: "Hand",
  22699. image: {
  22700. source: "./media/characters/maksio/hand.svg"
  22701. }
  22702. },
  22703. foot: {
  22704. height: math.unit(1.611, "feet"),
  22705. name: "Foot",
  22706. image: {
  22707. source: "./media/characters/maksio/foot.svg"
  22708. }
  22709. },
  22710. },
  22711. [
  22712. {
  22713. name: "Shrunken",
  22714. height: math.unit(10, "cm")
  22715. },
  22716. {
  22717. name: "Normal",
  22718. height: math.unit(150, "cm"),
  22719. default: true
  22720. },
  22721. ]
  22722. ))
  22723. characterMakers.push(() => makeCharacter(
  22724. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22725. {
  22726. front: {
  22727. height: math.unit(100, "feet"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/erza-bear/front.svg",
  22731. extra: 2449 / 2390,
  22732. bottom: 46 / 2494
  22733. }
  22734. },
  22735. back: {
  22736. height: math.unit(100, "feet"),
  22737. name: "Back",
  22738. image: {
  22739. source: "./media/characters/erza-bear/back.svg",
  22740. extra: 2489 / 2430,
  22741. bottom: 85.4 / 2480
  22742. }
  22743. },
  22744. tail: {
  22745. height: math.unit(42, "feet"),
  22746. name: "Tail",
  22747. image: {
  22748. source: "./media/characters/erza-bear/tail.svg"
  22749. }
  22750. },
  22751. tongue: {
  22752. height: math.unit(8, "feet"),
  22753. name: "Tongue",
  22754. image: {
  22755. source: "./media/characters/erza-bear/tongue.svg"
  22756. }
  22757. },
  22758. dick: {
  22759. height: math.unit(10.5, "feet"),
  22760. name: "Dick",
  22761. image: {
  22762. source: "./media/characters/erza-bear/dick.svg"
  22763. }
  22764. },
  22765. dickVertical: {
  22766. height: math.unit(16.9, "feet"),
  22767. name: "Dick (Vertical)",
  22768. image: {
  22769. source: "./media/characters/erza-bear/dick-vertical.svg"
  22770. }
  22771. },
  22772. },
  22773. [
  22774. {
  22775. name: "Macro",
  22776. height: math.unit(100, "feet"),
  22777. default: true
  22778. },
  22779. ]
  22780. ))
  22781. characterMakers.push(() => makeCharacter(
  22782. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22783. {
  22784. front: {
  22785. height: math.unit(172, "cm"),
  22786. weight: math.unit(73, "kg"),
  22787. name: "Front",
  22788. image: {
  22789. source: "./media/characters/violet-flor/front.svg",
  22790. extra: 1530 / 1442,
  22791. bottom: 61.9 / 1588.8
  22792. }
  22793. },
  22794. back: {
  22795. height: math.unit(180, "cm"),
  22796. weight: math.unit(73, "kg"),
  22797. name: "Back",
  22798. image: {
  22799. source: "./media/characters/violet-flor/back.svg",
  22800. extra: 1692 / 1630,
  22801. bottom: 20 / 1712
  22802. }
  22803. },
  22804. },
  22805. [
  22806. {
  22807. name: "Normal",
  22808. height: math.unit(172, "cm"),
  22809. default: true
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(6, "feet"),
  22818. weight: math.unit(220, "lb"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/lynn-rhea/front.svg",
  22822. extra: 310 / 273
  22823. }
  22824. },
  22825. back: {
  22826. height: math.unit(6, "feet"),
  22827. weight: math.unit(220, "lb"),
  22828. name: "Back",
  22829. image: {
  22830. source: "./media/characters/lynn-rhea/back.svg",
  22831. extra: 310 / 273
  22832. }
  22833. },
  22834. dicks: {
  22835. height: math.unit(0.9, "feet"),
  22836. name: "Dicks",
  22837. image: {
  22838. source: "./media/characters/lynn-rhea/dicks.svg"
  22839. }
  22840. },
  22841. slit: {
  22842. height: math.unit(0.4, "feet"),
  22843. name: "Slit",
  22844. image: {
  22845. source: "./media/characters/lynn-rhea/slit.svg"
  22846. }
  22847. },
  22848. },
  22849. [
  22850. {
  22851. name: "Micro",
  22852. height: math.unit(1, "inch")
  22853. },
  22854. {
  22855. name: "Macro",
  22856. height: math.unit(60, "feet"),
  22857. default: true
  22858. },
  22859. {
  22860. name: "Megamacro",
  22861. height: math.unit(2, "miles")
  22862. },
  22863. {
  22864. name: "Gigamacro",
  22865. height: math.unit(3, "earths")
  22866. },
  22867. {
  22868. name: "Galactic",
  22869. height: math.unit(0.8, "galaxies")
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22875. {
  22876. front: {
  22877. height: math.unit(1600, "feet"),
  22878. weight: math.unit(85758785169, "kg"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/valathos/front.svg",
  22882. extra: 1451 / 1339
  22883. }
  22884. },
  22885. },
  22886. [
  22887. {
  22888. name: "Macro",
  22889. height: math.unit(1600, "feet"),
  22890. default: true
  22891. },
  22892. ]
  22893. ))
  22894. characterMakers.push(() => makeCharacter(
  22895. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22896. {
  22897. front: {
  22898. height: math.unit(7 + 5 / 12, "feet"),
  22899. weight: math.unit(300, "lb"),
  22900. name: "Front",
  22901. image: {
  22902. source: "./media/characters/azula/front.svg",
  22903. extra: 3208 / 2880,
  22904. bottom: 80.2 / 3277
  22905. }
  22906. },
  22907. back: {
  22908. height: math.unit(7 + 5 / 12, "feet"),
  22909. weight: math.unit(300, "lb"),
  22910. name: "Back",
  22911. image: {
  22912. source: "./media/characters/azula/back.svg",
  22913. extra: 3169 / 2822,
  22914. bottom: 150.6 / 3321
  22915. }
  22916. },
  22917. },
  22918. [
  22919. {
  22920. name: "Normal",
  22921. height: math.unit(7 + 5 / 12, "feet"),
  22922. default: true
  22923. },
  22924. {
  22925. name: "Big",
  22926. height: math.unit(20, "feet")
  22927. },
  22928. ]
  22929. ))
  22930. characterMakers.push(() => makeCharacter(
  22931. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22932. {
  22933. front: {
  22934. height: math.unit(5 + 1 / 12, "feet"),
  22935. weight: math.unit(110, "lb"),
  22936. name: "Front",
  22937. image: {
  22938. source: "./media/characters/rupert/front.svg",
  22939. extra: 1549 / 1495,
  22940. bottom: 54.2 / 1604.4
  22941. }
  22942. },
  22943. },
  22944. [
  22945. {
  22946. name: "Normal",
  22947. height: math.unit(5 + 1 / 12, "feet"),
  22948. default: true
  22949. },
  22950. ]
  22951. ))
  22952. characterMakers.push(() => makeCharacter(
  22953. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22954. {
  22955. front: {
  22956. height: math.unit(8 + 4 / 12, "feet"),
  22957. weight: math.unit(350, "lb"),
  22958. name: "Front",
  22959. image: {
  22960. source: "./media/characters/sheera-castellar/front.svg",
  22961. extra: 1957 / 1894,
  22962. bottom: 26.97 / 1975.017
  22963. }
  22964. },
  22965. side: {
  22966. height: math.unit(8 + 4 / 12, "feet"),
  22967. weight: math.unit(350, "lb"),
  22968. name: "Side",
  22969. image: {
  22970. source: "./media/characters/sheera-castellar/side.svg",
  22971. extra: 1957 / 1894
  22972. }
  22973. },
  22974. back: {
  22975. height: math.unit(8 + 4 / 12, "feet"),
  22976. weight: math.unit(350, "lb"),
  22977. name: "Back",
  22978. image: {
  22979. source: "./media/characters/sheera-castellar/back.svg",
  22980. extra: 1957 / 1894
  22981. }
  22982. },
  22983. angled: {
  22984. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22985. weight: math.unit(350, "lb"),
  22986. name: "Angled",
  22987. image: {
  22988. source: "./media/characters/sheera-castellar/angled.svg",
  22989. extra: 1807 / 1707,
  22990. bottom: 68 / 1875
  22991. }
  22992. },
  22993. genitals: {
  22994. height: math.unit(2.2, "feet"),
  22995. name: "Genitals",
  22996. image: {
  22997. source: "./media/characters/sheera-castellar/genitals.svg"
  22998. }
  22999. },
  23000. taur: {
  23001. height: math.unit(10 + 6/12, "feet"),
  23002. name: "Taur",
  23003. image: {
  23004. source: "./media/characters/sheera-castellar/taur.svg",
  23005. extra: 2017/1909,
  23006. bottom: 185/2202
  23007. }
  23008. },
  23009. },
  23010. [
  23011. {
  23012. name: "Normal",
  23013. height: math.unit(8 + 4 / 12, "feet")
  23014. },
  23015. {
  23016. name: "Macro",
  23017. height: math.unit(150, "feet"),
  23018. default: true
  23019. },
  23020. {
  23021. name: "Macro+",
  23022. height: math.unit(800, "feet")
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23028. {
  23029. front: {
  23030. height: math.unit(6, "feet"),
  23031. weight: math.unit(150, "lb"),
  23032. name: "Front",
  23033. image: {
  23034. source: "./media/characters/jaipur/front.svg",
  23035. extra: 3860 / 3731,
  23036. bottom: 287 / 4140
  23037. }
  23038. },
  23039. back: {
  23040. height: math.unit(6, "feet"),
  23041. weight: math.unit(150, "lb"),
  23042. name: "Back",
  23043. image: {
  23044. source: "./media/characters/jaipur/back.svg",
  23045. extra: 4060 / 3930,
  23046. bottom: 151 / 4200
  23047. }
  23048. },
  23049. },
  23050. [
  23051. {
  23052. name: "Normal",
  23053. height: math.unit(1.85, "meters"),
  23054. default: true
  23055. },
  23056. {
  23057. name: "Macro",
  23058. height: math.unit(150, "meters")
  23059. },
  23060. {
  23061. name: "Macro+",
  23062. height: math.unit(0.5, "miles")
  23063. },
  23064. {
  23065. name: "Macro++",
  23066. height: math.unit(2.5, "miles")
  23067. },
  23068. {
  23069. name: "Macro+++",
  23070. height: math.unit(12, "miles")
  23071. },
  23072. {
  23073. name: "Macro++++",
  23074. height: math.unit(120, "miles")
  23075. },
  23076. {
  23077. name: "Macro+++++",
  23078. height: math.unit(1200, "miles")
  23079. },
  23080. ]
  23081. ))
  23082. characterMakers.push(() => makeCharacter(
  23083. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23084. {
  23085. front: {
  23086. height: math.unit(6, "feet"),
  23087. weight: math.unit(150, "lb"),
  23088. name: "Front",
  23089. image: {
  23090. source: "./media/characters/sheila-wolf/front.svg",
  23091. extra: 1931 / 1808,
  23092. bottom: 29.5 / 1960
  23093. }
  23094. },
  23095. dick: {
  23096. height: math.unit(1.464, "feet"),
  23097. name: "Dick",
  23098. image: {
  23099. source: "./media/characters/sheila-wolf/dick.svg"
  23100. }
  23101. },
  23102. muzzle: {
  23103. height: math.unit(0.513, "feet"),
  23104. name: "Muzzle",
  23105. image: {
  23106. source: "./media/characters/sheila-wolf/muzzle.svg"
  23107. }
  23108. },
  23109. },
  23110. [
  23111. {
  23112. name: "Macro",
  23113. height: math.unit(70, "feet"),
  23114. default: true
  23115. },
  23116. ]
  23117. ))
  23118. characterMakers.push(() => makeCharacter(
  23119. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23120. {
  23121. front: {
  23122. height: math.unit(32, "meters"),
  23123. weight: math.unit(300000, "kg"),
  23124. name: "Front",
  23125. image: {
  23126. source: "./media/characters/almor/front.svg",
  23127. extra: 1408 / 1322,
  23128. bottom: 94.6 / 1506.5
  23129. }
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Macro",
  23135. height: math.unit(32, "meters"),
  23136. default: true
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(7, "feet"),
  23145. weight: math.unit(200, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/silver/front.svg",
  23149. extra: 472.1 / 450.5,
  23150. bottom: 26.5 / 499.424
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Normal",
  23157. height: math.unit(7, "feet"),
  23158. default: true
  23159. },
  23160. {
  23161. name: "Macro",
  23162. height: math.unit(800, "feet")
  23163. },
  23164. {
  23165. name: "Megamacro",
  23166. height: math.unit(250, "miles")
  23167. },
  23168. ]
  23169. ))
  23170. characterMakers.push(() => makeCharacter(
  23171. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23172. {
  23173. front: {
  23174. height: math.unit(6, "feet"),
  23175. weight: math.unit(150, "lb"),
  23176. name: "Front",
  23177. image: {
  23178. source: "./media/characters/pliskin/front.svg",
  23179. extra: 1469 / 1359,
  23180. bottom: 70 / 1540
  23181. }
  23182. },
  23183. },
  23184. [
  23185. {
  23186. name: "Micro",
  23187. height: math.unit(3, "inches")
  23188. },
  23189. {
  23190. name: "Normal",
  23191. height: math.unit(5 + 11 / 12, "feet"),
  23192. default: true
  23193. },
  23194. {
  23195. name: "Macro",
  23196. height: math.unit(120, "feet")
  23197. },
  23198. ]
  23199. ))
  23200. characterMakers.push(() => makeCharacter(
  23201. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23202. {
  23203. front: {
  23204. height: math.unit(6, "feet"),
  23205. weight: math.unit(150, "lb"),
  23206. name: "Front",
  23207. image: {
  23208. source: "./media/characters/sammy/front.svg",
  23209. extra: 1193 / 1089,
  23210. bottom: 30.5 / 1226
  23211. }
  23212. },
  23213. },
  23214. [
  23215. {
  23216. name: "Macro",
  23217. height: math.unit(1700, "feet"),
  23218. default: true
  23219. },
  23220. {
  23221. name: "Examacro",
  23222. height: math.unit(2.5e9, "lightyears")
  23223. },
  23224. ]
  23225. ))
  23226. characterMakers.push(() => makeCharacter(
  23227. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23228. {
  23229. front: {
  23230. height: math.unit(21, "meters"),
  23231. weight: math.unit(12, "tonnes"),
  23232. name: "Front",
  23233. image: {
  23234. source: "./media/characters/kuru/front.svg",
  23235. extra: 4301 / 3785,
  23236. bottom: 371.3 / 4691
  23237. }
  23238. },
  23239. },
  23240. [
  23241. {
  23242. name: "Macro",
  23243. height: math.unit(21, "meters"),
  23244. default: true
  23245. },
  23246. ]
  23247. ))
  23248. characterMakers.push(() => makeCharacter(
  23249. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23250. {
  23251. front: {
  23252. height: math.unit(23, "meters"),
  23253. weight: math.unit(12.2, "tonnes"),
  23254. name: "Front",
  23255. image: {
  23256. source: "./media/characters/rakka/front.svg",
  23257. extra: 4670 / 4169,
  23258. bottom: 301 / 4968.7
  23259. }
  23260. },
  23261. },
  23262. [
  23263. {
  23264. name: "Macro",
  23265. height: math.unit(23, "meters"),
  23266. default: true
  23267. },
  23268. ]
  23269. ))
  23270. characterMakers.push(() => makeCharacter(
  23271. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23272. {
  23273. front: {
  23274. height: math.unit(6, "feet"),
  23275. weight: math.unit(150, "lb"),
  23276. name: "Front",
  23277. image: {
  23278. source: "./media/characters/rhys-feline/front.svg",
  23279. extra: 2488 / 2308,
  23280. bottom: 35.67 / 2519.19
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Really Small",
  23287. height: math.unit(1, "nm")
  23288. },
  23289. {
  23290. name: "Micro",
  23291. height: math.unit(4, "inches")
  23292. },
  23293. {
  23294. name: "Normal",
  23295. height: math.unit(4 + 10 / 12, "feet"),
  23296. default: true
  23297. },
  23298. {
  23299. name: "Macro",
  23300. height: math.unit(100, "feet")
  23301. },
  23302. {
  23303. name: "Megamacto",
  23304. height: math.unit(50, "miles")
  23305. },
  23306. ]
  23307. ))
  23308. characterMakers.push(() => makeCharacter(
  23309. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23310. {
  23311. side: {
  23312. height: math.unit(30, "feet"),
  23313. weight: math.unit(35000, "kg"),
  23314. name: "Side",
  23315. image: {
  23316. source: "./media/characters/alydar/side.svg",
  23317. extra: 234 / 222,
  23318. bottom: 6.5 / 241
  23319. }
  23320. },
  23321. front: {
  23322. height: math.unit(30, "feet"),
  23323. weight: math.unit(35000, "kg"),
  23324. name: "Front",
  23325. image: {
  23326. source: "./media/characters/alydar/front.svg",
  23327. extra: 223.37 / 210.2,
  23328. bottom: 22.3 / 246.76
  23329. }
  23330. },
  23331. top: {
  23332. height: math.unit(64.54, "feet"),
  23333. weight: math.unit(35000, "kg"),
  23334. name: "Top",
  23335. image: {
  23336. source: "./media/characters/alydar/top.svg"
  23337. }
  23338. },
  23339. anthro: {
  23340. height: math.unit(30, "feet"),
  23341. weight: math.unit(9000, "kg"),
  23342. name: "Anthro",
  23343. image: {
  23344. source: "./media/characters/alydar/anthro.svg",
  23345. extra: 432 / 421,
  23346. bottom: 7.18 / 440
  23347. }
  23348. },
  23349. maw: {
  23350. height: math.unit(11.693, "feet"),
  23351. name: "Maw",
  23352. image: {
  23353. source: "./media/characters/alydar/maw.svg"
  23354. }
  23355. },
  23356. head: {
  23357. height: math.unit(11.693, "feet"),
  23358. name: "Head",
  23359. image: {
  23360. source: "./media/characters/alydar/head.svg"
  23361. }
  23362. },
  23363. headAlt: {
  23364. height: math.unit(12.861, "feet"),
  23365. name: "Head (Alt)",
  23366. image: {
  23367. source: "./media/characters/alydar/head-alt.svg"
  23368. }
  23369. },
  23370. wing: {
  23371. height: math.unit(20.712, "feet"),
  23372. name: "Wing",
  23373. image: {
  23374. source: "./media/characters/alydar/wing.svg"
  23375. }
  23376. },
  23377. wingFeather: {
  23378. height: math.unit(9.662, "feet"),
  23379. name: "Wing Feather",
  23380. image: {
  23381. source: "./media/characters/alydar/wing-feather.svg"
  23382. }
  23383. },
  23384. countourFeather: {
  23385. height: math.unit(4.154, "feet"),
  23386. name: "Contour Feather",
  23387. image: {
  23388. source: "./media/characters/alydar/contour-feather.svg"
  23389. }
  23390. },
  23391. },
  23392. [
  23393. {
  23394. name: "Diplomatic",
  23395. height: math.unit(13, "feet"),
  23396. default: true
  23397. },
  23398. {
  23399. name: "Small",
  23400. height: math.unit(30, "feet")
  23401. },
  23402. {
  23403. name: "Normal",
  23404. height: math.unit(95, "feet"),
  23405. default: true
  23406. },
  23407. {
  23408. name: "Large",
  23409. height: math.unit(285, "feet")
  23410. },
  23411. {
  23412. name: "Incomprehensible",
  23413. height: math.unit(450, "megameters")
  23414. },
  23415. ]
  23416. ))
  23417. characterMakers.push(() => makeCharacter(
  23418. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23419. {
  23420. side: {
  23421. height: math.unit(11, "feet"),
  23422. weight: math.unit(1750, "kg"),
  23423. name: "Side",
  23424. image: {
  23425. source: "./media/characters/selicia/side.svg",
  23426. extra: 440 / 396,
  23427. bottom: 24.8 / 465.979
  23428. }
  23429. },
  23430. maw: {
  23431. height: math.unit(4.665, "feet"),
  23432. name: "Maw",
  23433. image: {
  23434. source: "./media/characters/selicia/maw.svg"
  23435. }
  23436. },
  23437. },
  23438. [
  23439. {
  23440. name: "Normal",
  23441. height: math.unit(11, "feet"),
  23442. default: true
  23443. },
  23444. ]
  23445. ))
  23446. characterMakers.push(() => makeCharacter(
  23447. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23448. {
  23449. side: {
  23450. height: math.unit(2 + 6 / 12, "feet"),
  23451. weight: math.unit(30, "lb"),
  23452. name: "Side",
  23453. image: {
  23454. source: "./media/characters/layla/side.svg",
  23455. extra: 244 / 188,
  23456. bottom: 18.2 / 262.1
  23457. }
  23458. },
  23459. back: {
  23460. height: math.unit(2 + 6 / 12, "feet"),
  23461. weight: math.unit(30, "lb"),
  23462. name: "Back",
  23463. image: {
  23464. source: "./media/characters/layla/back.svg",
  23465. extra: 308 / 241.5,
  23466. bottom: 8.9 / 316.8
  23467. }
  23468. },
  23469. cumming: {
  23470. height: math.unit(2 + 6 / 12, "feet"),
  23471. weight: math.unit(30, "lb"),
  23472. name: "Cumming",
  23473. image: {
  23474. source: "./media/characters/layla/cumming.svg",
  23475. extra: 342 / 279,
  23476. bottom: 595 / 938
  23477. }
  23478. },
  23479. dickFlaccid: {
  23480. height: math.unit(2.595, "feet"),
  23481. name: "Flaccid Genitals",
  23482. image: {
  23483. source: "./media/characters/layla/dick-flaccid.svg"
  23484. }
  23485. },
  23486. dickErect: {
  23487. height: math.unit(2.359, "feet"),
  23488. name: "Erect Genitals",
  23489. image: {
  23490. source: "./media/characters/layla/dick-erect.svg"
  23491. }
  23492. },
  23493. dragon: {
  23494. height: math.unit(40, "feet"),
  23495. name: "Dragon",
  23496. image: {
  23497. source: "./media/characters/layla/dragon.svg",
  23498. extra: 610/535,
  23499. bottom: 367/977
  23500. }
  23501. },
  23502. taur: {
  23503. height: math.unit(30, "feet"),
  23504. name: "Taur",
  23505. image: {
  23506. source: "./media/characters/layla/taur.svg",
  23507. extra: 1268/1199,
  23508. bottom: 112/1380
  23509. }
  23510. },
  23511. },
  23512. [
  23513. {
  23514. name: "Micro",
  23515. height: math.unit(1, "inch")
  23516. },
  23517. {
  23518. name: "Small",
  23519. height: math.unit(1, "foot")
  23520. },
  23521. {
  23522. name: "Normal",
  23523. height: math.unit(2 + 6 / 12, "feet"),
  23524. default: true
  23525. },
  23526. {
  23527. name: "Macro",
  23528. height: math.unit(200, "feet")
  23529. },
  23530. {
  23531. name: "Megamacro",
  23532. height: math.unit(1000, "miles")
  23533. },
  23534. {
  23535. name: "Planetary",
  23536. height: math.unit(8000, "miles")
  23537. },
  23538. {
  23539. name: "True Layla",
  23540. height: math.unit(200000 * 7, "multiverses")
  23541. },
  23542. ]
  23543. ))
  23544. characterMakers.push(() => makeCharacter(
  23545. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23546. {
  23547. back: {
  23548. height: math.unit(10.5, "feet"),
  23549. weight: math.unit(800, "lb"),
  23550. name: "Back",
  23551. image: {
  23552. source: "./media/characters/knox/back.svg",
  23553. extra: 1486 / 1089,
  23554. bottom: 107 / 1601.4
  23555. }
  23556. },
  23557. side: {
  23558. height: math.unit(10.5, "feet"),
  23559. weight: math.unit(800, "lb"),
  23560. name: "Side",
  23561. image: {
  23562. source: "./media/characters/knox/side.svg",
  23563. extra: 244 / 218,
  23564. bottom: 14 / 260
  23565. }
  23566. },
  23567. },
  23568. [
  23569. {
  23570. name: "Compact",
  23571. height: math.unit(10.5, "feet"),
  23572. default: true
  23573. },
  23574. {
  23575. name: "Dynamax",
  23576. height: math.unit(210, "feet")
  23577. },
  23578. {
  23579. name: "Full Macro",
  23580. height: math.unit(850, "feet")
  23581. },
  23582. ]
  23583. ))
  23584. characterMakers.push(() => makeCharacter(
  23585. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23586. {
  23587. front: {
  23588. height: math.unit(6, "feet"),
  23589. weight: math.unit(152, "lb"),
  23590. name: "Front",
  23591. image: {
  23592. source: "./media/characters/shin-pikachu/front.svg",
  23593. extra: 1854/1602,
  23594. bottom: 166/2020
  23595. }
  23596. },
  23597. hand: {
  23598. height: math.unit(1.055, "feet"),
  23599. name: "Hand",
  23600. image: {
  23601. source: "./media/characters/shin-pikachu/hand.svg"
  23602. }
  23603. },
  23604. foot: {
  23605. height: math.unit(1.1, "feet"),
  23606. name: "Foot",
  23607. image: {
  23608. source: "./media/characters/shin-pikachu/foot.svg"
  23609. }
  23610. },
  23611. collar: {
  23612. height: math.unit(0.386, "feet"),
  23613. name: "Collar",
  23614. image: {
  23615. source: "./media/characters/shin-pikachu/collar.svg"
  23616. }
  23617. },
  23618. },
  23619. [
  23620. {
  23621. name: "Smallest",
  23622. height: math.unit(0.5, "inches")
  23623. },
  23624. {
  23625. name: "Micro",
  23626. height: math.unit(6, "inches")
  23627. },
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(6, "feet"),
  23631. default: true
  23632. },
  23633. {
  23634. name: "Macro",
  23635. height: math.unit(150, "feet")
  23636. },
  23637. ]
  23638. ))
  23639. characterMakers.push(() => makeCharacter(
  23640. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23641. {
  23642. front: {
  23643. height: math.unit(28, "feet"),
  23644. weight: math.unit(10500, "lb"),
  23645. name: "Front",
  23646. image: {
  23647. source: "./media/characters/kayda/front.svg",
  23648. extra: 1536 / 1428,
  23649. bottom: 68.7 / 1603
  23650. }
  23651. },
  23652. back: {
  23653. height: math.unit(28, "feet"),
  23654. weight: math.unit(10500, "lb"),
  23655. name: "Back",
  23656. image: {
  23657. source: "./media/characters/kayda/back.svg",
  23658. extra: 1557 / 1464,
  23659. bottom: 39.5 / 1597.49
  23660. }
  23661. },
  23662. dick: {
  23663. height: math.unit(3.858, "feet"),
  23664. name: "Dick",
  23665. image: {
  23666. source: "./media/characters/kayda/dick.svg"
  23667. }
  23668. },
  23669. },
  23670. [
  23671. {
  23672. name: "Macro",
  23673. height: math.unit(28, "feet"),
  23674. default: true
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23680. {
  23681. front: {
  23682. height: math.unit(10 + 11 / 12, "feet"),
  23683. weight: math.unit(1400, "lb"),
  23684. name: "Front",
  23685. image: {
  23686. source: "./media/characters/brian/front.svg",
  23687. extra: 737 / 692,
  23688. bottom: 55.4 / 785
  23689. }
  23690. },
  23691. },
  23692. [
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(10 + 11 / 12, "feet"),
  23696. default: true
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23702. {
  23703. front: {
  23704. height: math.unit(5 + 8 / 12, "feet"),
  23705. weight: math.unit(140, "lb"),
  23706. name: "Front",
  23707. image: {
  23708. source: "./media/characters/khemri/front.svg",
  23709. extra: 4780 / 4059,
  23710. bottom: 80.1 / 4859.25
  23711. }
  23712. },
  23713. },
  23714. [
  23715. {
  23716. name: "Micro",
  23717. height: math.unit(6, "inches")
  23718. },
  23719. {
  23720. name: "Normal",
  23721. height: math.unit(5 + 8 / 12, "feet"),
  23722. default: true
  23723. },
  23724. ]
  23725. ))
  23726. characterMakers.push(() => makeCharacter(
  23727. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23728. {
  23729. front: {
  23730. height: math.unit(13, "feet"),
  23731. weight: math.unit(1700, "lb"),
  23732. name: "Front",
  23733. image: {
  23734. source: "./media/characters/felix-braveheart/front.svg",
  23735. extra: 1222 / 1157,
  23736. bottom: 53.2 / 1280
  23737. }
  23738. },
  23739. back: {
  23740. height: math.unit(13, "feet"),
  23741. weight: math.unit(1700, "lb"),
  23742. name: "Back",
  23743. image: {
  23744. source: "./media/characters/felix-braveheart/back.svg",
  23745. extra: 1277 / 1203,
  23746. bottom: 50.2 / 1327
  23747. }
  23748. },
  23749. feral: {
  23750. height: math.unit(6, "feet"),
  23751. weight: math.unit(400, "lb"),
  23752. name: "Feral",
  23753. image: {
  23754. source: "./media/characters/felix-braveheart/feral.svg",
  23755. extra: 682 / 625,
  23756. bottom: 6.9 / 688
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Normal",
  23763. height: math.unit(13, "feet"),
  23764. default: true
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23770. {
  23771. side: {
  23772. height: math.unit(5 + 11 / 12, "feet"),
  23773. weight: math.unit(1400, "lb"),
  23774. name: "Side",
  23775. image: {
  23776. source: "./media/characters/shadow-blade/side.svg",
  23777. extra: 1726 / 1267,
  23778. bottom: 58.4 / 1785
  23779. }
  23780. },
  23781. },
  23782. [
  23783. {
  23784. name: "Normal",
  23785. height: math.unit(5 + 11 / 12, "feet"),
  23786. default: true
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23792. {
  23793. front: {
  23794. height: math.unit(1 + 6 / 12, "feet"),
  23795. weight: math.unit(25, "lb"),
  23796. name: "Front",
  23797. image: {
  23798. source: "./media/characters/karla-halldor/front.svg",
  23799. extra: 1459 / 1383,
  23800. bottom: 12 / 1472
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Normal",
  23807. height: math.unit(1 + 6 / 12, "feet"),
  23808. default: true
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23814. {
  23815. front: {
  23816. height: math.unit(6 + 2 / 12, "feet"),
  23817. weight: math.unit(160, "lb"),
  23818. name: "Front",
  23819. image: {
  23820. source: "./media/characters/ariam/front.svg",
  23821. extra: 714 / 617,
  23822. bottom: 23.4 / 737,
  23823. }
  23824. },
  23825. squatting: {
  23826. height: math.unit(4.1, "feet"),
  23827. weight: math.unit(160, "lb"),
  23828. name: "Squatting",
  23829. image: {
  23830. source: "./media/characters/ariam/squatting.svg",
  23831. extra: 2617 / 2112,
  23832. bottom: 61.2 / 2681,
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Normal",
  23839. height: math.unit(6 + 2 / 12, "feet"),
  23840. default: true
  23841. },
  23842. {
  23843. name: "Normal+",
  23844. height: math.unit(4, "meters")
  23845. },
  23846. {
  23847. name: "Macro",
  23848. height: math.unit(50, "meters")
  23849. },
  23850. {
  23851. name: "Macro+",
  23852. height: math.unit(100, "meters")
  23853. },
  23854. {
  23855. name: "Megamacro",
  23856. height: math.unit(20, "km")
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23862. {
  23863. front: {
  23864. height: math.unit(1.67, "meters"),
  23865. weight: math.unit(140, "lb"),
  23866. name: "Front",
  23867. image: {
  23868. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23869. extra: 438 / 410,
  23870. bottom: 0.75 / 439
  23871. }
  23872. },
  23873. },
  23874. [
  23875. {
  23876. name: "Shrunken",
  23877. height: math.unit(7.6, "cm")
  23878. },
  23879. {
  23880. name: "Human Scale",
  23881. height: math.unit(1.67, "meters")
  23882. },
  23883. {
  23884. name: "Wolxi Scale",
  23885. height: math.unit(36.7, "meters"),
  23886. default: true
  23887. },
  23888. ]
  23889. ))
  23890. characterMakers.push(() => makeCharacter(
  23891. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23892. {
  23893. front: {
  23894. height: math.unit(1.73, "meters"),
  23895. weight: math.unit(240, "lb"),
  23896. name: "Front",
  23897. image: {
  23898. source: "./media/characters/izue-two-mothers/front.svg",
  23899. extra: 469 / 437,
  23900. bottom: 1.24 / 470.6
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Shrunken",
  23907. height: math.unit(7.86, "cm")
  23908. },
  23909. {
  23910. name: "Human Scale",
  23911. height: math.unit(1.73, "meters")
  23912. },
  23913. {
  23914. name: "Wolxi Scale",
  23915. height: math.unit(38, "meters"),
  23916. default: true
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(1.55, "meters"),
  23925. weight: math.unit(120, "lb"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/teeku-love-shack/front.svg",
  23929. extra: 387 / 362,
  23930. bottom: 1.51 / 388
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Shrunken",
  23937. height: math.unit(7, "cm")
  23938. },
  23939. {
  23940. name: "Human Scale",
  23941. height: math.unit(1.55, "meters")
  23942. },
  23943. {
  23944. name: "Wolxi Scale",
  23945. height: math.unit(34.1, "meters"),
  23946. default: true
  23947. },
  23948. ]
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23952. {
  23953. front: {
  23954. height: math.unit(1.83, "meters"),
  23955. weight: math.unit(135, "lb"),
  23956. name: "Front",
  23957. image: {
  23958. source: "./media/characters/dejma-the-red/front.svg",
  23959. extra: 480 / 458,
  23960. bottom: 1.8 / 482
  23961. }
  23962. },
  23963. },
  23964. [
  23965. {
  23966. name: "Shrunken",
  23967. height: math.unit(8.3, "cm")
  23968. },
  23969. {
  23970. name: "Human Scale",
  23971. height: math.unit(1.83, "meters")
  23972. },
  23973. {
  23974. name: "Wolxi Scale",
  23975. height: math.unit(40, "meters"),
  23976. default: true
  23977. },
  23978. ]
  23979. ))
  23980. characterMakers.push(() => makeCharacter(
  23981. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23982. {
  23983. front: {
  23984. height: math.unit(1.78, "meters"),
  23985. weight: math.unit(65, "kg"),
  23986. name: "Front",
  23987. image: {
  23988. source: "./media/characters/aki/front.svg",
  23989. extra: 452 / 415
  23990. }
  23991. },
  23992. frontNsfw: {
  23993. height: math.unit(1.78, "meters"),
  23994. weight: math.unit(65, "kg"),
  23995. name: "Front (NSFW)",
  23996. image: {
  23997. source: "./media/characters/aki/front-nsfw.svg",
  23998. extra: 452 / 415
  23999. }
  24000. },
  24001. back: {
  24002. height: math.unit(1.78, "meters"),
  24003. weight: math.unit(65, "kg"),
  24004. name: "Back",
  24005. image: {
  24006. source: "./media/characters/aki/back.svg",
  24007. extra: 452 / 415
  24008. }
  24009. },
  24010. rump: {
  24011. height: math.unit(2.05, "feet"),
  24012. name: "Rump",
  24013. image: {
  24014. source: "./media/characters/aki/rump.svg"
  24015. }
  24016. },
  24017. dick: {
  24018. height: math.unit(0.95, "feet"),
  24019. name: "Dick",
  24020. image: {
  24021. source: "./media/characters/aki/dick.svg"
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Micro",
  24028. height: math.unit(15, "cm")
  24029. },
  24030. {
  24031. name: "Normal",
  24032. height: math.unit(178, "cm"),
  24033. default: true
  24034. },
  24035. {
  24036. name: "Macro",
  24037. height: math.unit(214, "m")
  24038. },
  24039. {
  24040. name: "Macro+",
  24041. height: math.unit(534, "m")
  24042. },
  24043. ]
  24044. ))
  24045. characterMakers.push(() => makeCharacter(
  24046. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24047. {
  24048. front: {
  24049. height: math.unit(5 + 5 / 12, "feet"),
  24050. weight: math.unit(120, "lb"),
  24051. name: "Front",
  24052. image: {
  24053. source: "./media/characters/ari/front.svg",
  24054. extra: 714.5 / 682,
  24055. bottom: 8 / 722.5
  24056. }
  24057. },
  24058. },
  24059. [
  24060. {
  24061. name: "Normal",
  24062. height: math.unit(5 + 5 / 12, "feet")
  24063. },
  24064. {
  24065. name: "Macro",
  24066. height: math.unit(100, "feet"),
  24067. default: true
  24068. },
  24069. {
  24070. name: "Megamacro",
  24071. height: math.unit(100, "miles")
  24072. },
  24073. {
  24074. name: "Gigamacro",
  24075. height: math.unit(80000, "miles")
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24081. {
  24082. side: {
  24083. height: math.unit(9, "feet"),
  24084. weight: math.unit(400, "kg"),
  24085. name: "Side",
  24086. image: {
  24087. source: "./media/characters/bolt/side.svg",
  24088. extra: 1126 / 896,
  24089. bottom: 60 / 1187.3,
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Micro",
  24096. height: math.unit(5, "inches")
  24097. },
  24098. {
  24099. name: "Normal",
  24100. height: math.unit(9, "feet"),
  24101. default: true
  24102. },
  24103. {
  24104. name: "Macro",
  24105. height: math.unit(700, "feet")
  24106. },
  24107. {
  24108. name: "Max Size",
  24109. height: math.unit(1.52e22, "yottameters")
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24115. {
  24116. front: {
  24117. height: math.unit(4.53, "meters"),
  24118. weight: math.unit(3, "tons"),
  24119. name: "Front",
  24120. image: {
  24121. source: "./media/characters/draekon-sylviar/front.svg",
  24122. extra: 1228 / 1068,
  24123. bottom: 41 / 1270
  24124. }
  24125. },
  24126. tail: {
  24127. height: math.unit(1.772, "meter"),
  24128. name: "Tail",
  24129. image: {
  24130. source: "./media/characters/draekon-sylviar/tail.svg"
  24131. }
  24132. },
  24133. head: {
  24134. height: math.unit(1.331, "meter"),
  24135. name: "Head",
  24136. image: {
  24137. source: "./media/characters/draekon-sylviar/head.svg"
  24138. }
  24139. },
  24140. hand: {
  24141. height: math.unit(0.564, "meter"),
  24142. name: "Hand",
  24143. image: {
  24144. source: "./media/characters/draekon-sylviar/hand.svg"
  24145. }
  24146. },
  24147. foot: {
  24148. height: math.unit(0.621, "meter"),
  24149. name: "Foot",
  24150. image: {
  24151. source: "./media/characters/draekon-sylviar/foot.svg",
  24152. bottom: 32 / 324
  24153. }
  24154. },
  24155. dick: {
  24156. height: math.unit(61, "cm"),
  24157. name: "Dick",
  24158. image: {
  24159. source: "./media/characters/draekon-sylviar/dick.svg"
  24160. }
  24161. },
  24162. dickseparated: {
  24163. height: math.unit(61, "cm"),
  24164. name: "Dick-separated",
  24165. image: {
  24166. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24167. }
  24168. },
  24169. },
  24170. [
  24171. {
  24172. name: "Small",
  24173. height: math.unit(4.53 / 2, "meters"),
  24174. default: true
  24175. },
  24176. {
  24177. name: "Normal",
  24178. height: math.unit(4.53, "meters"),
  24179. default: true
  24180. },
  24181. {
  24182. name: "Large",
  24183. height: math.unit(4.53 * 2, "meters"),
  24184. },
  24185. ]
  24186. ))
  24187. characterMakers.push(() => makeCharacter(
  24188. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24189. {
  24190. front: {
  24191. height: math.unit(6 + 2 / 12, "feet"),
  24192. weight: math.unit(180, "lb"),
  24193. name: "Front",
  24194. image: {
  24195. source: "./media/characters/brawler/front.svg",
  24196. extra: 3301 / 3027,
  24197. bottom: 138 / 3439
  24198. }
  24199. },
  24200. },
  24201. [
  24202. {
  24203. name: "Normal",
  24204. height: math.unit(6 + 2 / 12, "feet"),
  24205. default: true
  24206. },
  24207. ]
  24208. ))
  24209. characterMakers.push(() => makeCharacter(
  24210. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24211. {
  24212. front: {
  24213. height: math.unit(11, "feet"),
  24214. weight: math.unit(1000, "lb"),
  24215. name: "Front",
  24216. image: {
  24217. source: "./media/characters/alex/front.svg",
  24218. bottom: 44.5 / 620
  24219. }
  24220. },
  24221. },
  24222. [
  24223. {
  24224. name: "Micro",
  24225. height: math.unit(5, "inches")
  24226. },
  24227. {
  24228. name: "Normal",
  24229. height: math.unit(11, "feet"),
  24230. default: true
  24231. },
  24232. {
  24233. name: "Macro",
  24234. height: math.unit(9.5e9, "feet")
  24235. },
  24236. {
  24237. name: "Max Size",
  24238. height: math.unit(1.4e283, "yottameters")
  24239. },
  24240. ]
  24241. ))
  24242. characterMakers.push(() => makeCharacter(
  24243. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24244. {
  24245. female: {
  24246. height: math.unit(29.9, "m"),
  24247. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24248. name: "Female",
  24249. image: {
  24250. source: "./media/characters/zenari/female.svg",
  24251. extra: 3281.6 / 3217,
  24252. bottom: 72.2 / 3353
  24253. }
  24254. },
  24255. male: {
  24256. height: math.unit(27.7, "m"),
  24257. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24258. name: "Male",
  24259. image: {
  24260. source: "./media/characters/zenari/male.svg",
  24261. extra: 3008 / 2991,
  24262. bottom: 54.6 / 3069
  24263. }
  24264. },
  24265. },
  24266. [
  24267. {
  24268. name: "Macro",
  24269. height: math.unit(29.7, "meters"),
  24270. default: true
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24276. {
  24277. female: {
  24278. height: math.unit(23.8, "m"),
  24279. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24280. name: "Female",
  24281. image: {
  24282. source: "./media/characters/mactarian/female.svg",
  24283. extra: 2662 / 2569,
  24284. bottom: 73 / 2736
  24285. }
  24286. },
  24287. male: {
  24288. height: math.unit(23.8, "m"),
  24289. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24290. name: "Male",
  24291. image: {
  24292. source: "./media/characters/mactarian/male.svg",
  24293. extra: 2673 / 2600,
  24294. bottom: 76 / 2750
  24295. }
  24296. },
  24297. },
  24298. [
  24299. {
  24300. name: "Macro",
  24301. height: math.unit(23.8, "meters"),
  24302. default: true
  24303. },
  24304. ]
  24305. ))
  24306. characterMakers.push(() => makeCharacter(
  24307. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24308. {
  24309. female: {
  24310. height: math.unit(19.3, "m"),
  24311. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24312. name: "Female",
  24313. image: {
  24314. source: "./media/characters/umok/female.svg",
  24315. extra: 2186 / 2078,
  24316. bottom: 87 / 2277
  24317. }
  24318. },
  24319. male: {
  24320. height: math.unit(19.5, "m"),
  24321. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24322. name: "Male",
  24323. image: {
  24324. source: "./media/characters/umok/male.svg",
  24325. extra: 2233 / 2140,
  24326. bottom: 24.4 / 2258
  24327. }
  24328. },
  24329. },
  24330. [
  24331. {
  24332. name: "Macro",
  24333. height: math.unit(19.3, "meters"),
  24334. default: true
  24335. },
  24336. ]
  24337. ))
  24338. characterMakers.push(() => makeCharacter(
  24339. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24340. {
  24341. female: {
  24342. height: math.unit(26.15, "m"),
  24343. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24344. name: "Female",
  24345. image: {
  24346. source: "./media/characters/joraxian/female.svg",
  24347. extra: 2912 / 2824,
  24348. bottom: 36 / 2956
  24349. }
  24350. },
  24351. male: {
  24352. height: math.unit(25.4, "m"),
  24353. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24354. name: "Male",
  24355. image: {
  24356. source: "./media/characters/joraxian/male.svg",
  24357. extra: 2877 / 2721,
  24358. bottom: 82 / 2967
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Macro",
  24365. height: math.unit(26.15, "meters"),
  24366. default: true
  24367. },
  24368. ]
  24369. ))
  24370. characterMakers.push(() => makeCharacter(
  24371. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24372. {
  24373. female: {
  24374. height: math.unit(21.6, "m"),
  24375. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24376. name: "Female",
  24377. image: {
  24378. source: "./media/characters/sthara/female.svg",
  24379. extra: 2516 / 2347,
  24380. bottom: 21.5 / 2537
  24381. }
  24382. },
  24383. male: {
  24384. height: math.unit(24, "m"),
  24385. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24386. name: "Male",
  24387. image: {
  24388. source: "./media/characters/sthara/male.svg",
  24389. extra: 2732 / 2607,
  24390. bottom: 23 / 2732
  24391. }
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Macro",
  24397. height: math.unit(21.6, "meters"),
  24398. default: true
  24399. },
  24400. ]
  24401. ))
  24402. characterMakers.push(() => makeCharacter(
  24403. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24404. {
  24405. front: {
  24406. height: math.unit(6 + 4 / 12, "feet"),
  24407. weight: math.unit(175, "lb"),
  24408. name: "Front",
  24409. image: {
  24410. source: "./media/characters/luka-bryzant/front.svg",
  24411. extra: 311 / 289,
  24412. bottom: 4 / 315
  24413. }
  24414. },
  24415. back: {
  24416. height: math.unit(6 + 4 / 12, "feet"),
  24417. weight: math.unit(175, "lb"),
  24418. name: "Back",
  24419. image: {
  24420. source: "./media/characters/luka-bryzant/back.svg",
  24421. extra: 311 / 289,
  24422. bottom: 3.8 / 313.7
  24423. }
  24424. },
  24425. },
  24426. [
  24427. {
  24428. name: "Micro",
  24429. height: math.unit(10, "inches")
  24430. },
  24431. {
  24432. name: "Normal",
  24433. height: math.unit(6 + 4 / 12, "feet"),
  24434. default: true
  24435. },
  24436. {
  24437. name: "Large",
  24438. height: math.unit(12, "feet")
  24439. },
  24440. ]
  24441. ))
  24442. characterMakers.push(() => makeCharacter(
  24443. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24444. {
  24445. front: {
  24446. height: math.unit(5 + 7 / 12, "feet"),
  24447. weight: math.unit(185, "lb"),
  24448. name: "Front",
  24449. image: {
  24450. source: "./media/characters/aman-aquila/front.svg",
  24451. extra: 1013 / 976,
  24452. bottom: 45.6 / 1057
  24453. }
  24454. },
  24455. side: {
  24456. height: math.unit(5 + 7 / 12, "feet"),
  24457. weight: math.unit(185, "lb"),
  24458. name: "Side",
  24459. image: {
  24460. source: "./media/characters/aman-aquila/side.svg",
  24461. extra: 1054 / 1011,
  24462. bottom: 15 / 1070
  24463. }
  24464. },
  24465. back: {
  24466. height: math.unit(5 + 7 / 12, "feet"),
  24467. weight: math.unit(185, "lb"),
  24468. name: "Back",
  24469. image: {
  24470. source: "./media/characters/aman-aquila/back.svg",
  24471. extra: 1026 / 970,
  24472. bottom: 12 / 1039
  24473. }
  24474. },
  24475. head: {
  24476. height: math.unit(1.211, "feet"),
  24477. name: "Head",
  24478. image: {
  24479. source: "./media/characters/aman-aquila/head.svg",
  24480. }
  24481. },
  24482. },
  24483. [
  24484. {
  24485. name: "Minimicro",
  24486. height: math.unit(0.057, "inches")
  24487. },
  24488. {
  24489. name: "Micro",
  24490. height: math.unit(7, "inches")
  24491. },
  24492. {
  24493. name: "Mini",
  24494. height: math.unit(3 + 7 / 12, "feet")
  24495. },
  24496. {
  24497. name: "Normal",
  24498. height: math.unit(5 + 7 / 12, "feet"),
  24499. default: true
  24500. },
  24501. {
  24502. name: "Macro",
  24503. height: math.unit(157 + 7 / 12, "feet")
  24504. },
  24505. {
  24506. name: "Megamacro",
  24507. height: math.unit(1557 + 7 / 12, "feet")
  24508. },
  24509. {
  24510. name: "Gigamacro",
  24511. height: math.unit(15557 + 7 / 12, "feet")
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(3 + 2 / 12, "inches"),
  24520. weight: math.unit(0.3, "ounces"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/hiphae/front.svg",
  24524. extra: 1931 / 1683,
  24525. bottom: 24 / 1955
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Normal",
  24532. height: math.unit(3 + 1 / 2, "inches"),
  24533. default: true
  24534. },
  24535. ]
  24536. ))
  24537. characterMakers.push(() => makeCharacter(
  24538. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24539. {
  24540. front: {
  24541. height: math.unit(5 + 10 / 12, "feet"),
  24542. weight: math.unit(165, "lb"),
  24543. name: "Front",
  24544. image: {
  24545. source: "./media/characters/nicky/front.svg",
  24546. extra: 3144 / 2886,
  24547. bottom: 45.6 / 3192
  24548. }
  24549. },
  24550. back: {
  24551. height: math.unit(5 + 10 / 12, "feet"),
  24552. weight: math.unit(165, "lb"),
  24553. name: "Back",
  24554. image: {
  24555. source: "./media/characters/nicky/back.svg",
  24556. extra: 3055 / 2804,
  24557. bottom: 28.4 / 3087
  24558. }
  24559. },
  24560. frontclothed: {
  24561. height: math.unit(5 + 10 / 12, "feet"),
  24562. weight: math.unit(165, "lb"),
  24563. name: "Front-clothed",
  24564. image: {
  24565. source: "./media/characters/nicky/front-clothed.svg",
  24566. extra: 3184.9 / 2926.9,
  24567. bottom: 86.5 / 3239.9
  24568. }
  24569. },
  24570. foot: {
  24571. height: math.unit(1.16, "feet"),
  24572. name: "Foot",
  24573. image: {
  24574. source: "./media/characters/nicky/foot.svg"
  24575. }
  24576. },
  24577. feet: {
  24578. height: math.unit(1.34, "feet"),
  24579. name: "Feet",
  24580. image: {
  24581. source: "./media/characters/nicky/feet.svg"
  24582. }
  24583. },
  24584. maw: {
  24585. height: math.unit(0.9, "feet"),
  24586. name: "Maw",
  24587. image: {
  24588. source: "./media/characters/nicky/maw.svg"
  24589. }
  24590. },
  24591. },
  24592. [
  24593. {
  24594. name: "Normal",
  24595. height: math.unit(5 + 10 / 12, "feet"),
  24596. default: true
  24597. },
  24598. {
  24599. name: "Macro",
  24600. height: math.unit(60, "feet")
  24601. },
  24602. {
  24603. name: "Megamacro",
  24604. height: math.unit(1, "mile")
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24610. {
  24611. side: {
  24612. height: math.unit(10, "feet"),
  24613. weight: math.unit(600, "lb"),
  24614. name: "Side",
  24615. image: {
  24616. source: "./media/characters/blair/side.svg",
  24617. bottom: 16.6 / 475,
  24618. extra: 458 / 431
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Micro",
  24625. height: math.unit(8, "inches")
  24626. },
  24627. {
  24628. name: "Normal",
  24629. height: math.unit(10, "feet"),
  24630. default: true
  24631. },
  24632. {
  24633. name: "Macro",
  24634. height: math.unit(180, "feet")
  24635. },
  24636. ]
  24637. ))
  24638. characterMakers.push(() => makeCharacter(
  24639. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24640. {
  24641. front: {
  24642. height: math.unit(5 + 4 / 12, "feet"),
  24643. weight: math.unit(125, "lb"),
  24644. name: "Front",
  24645. image: {
  24646. source: "./media/characters/fisher/front.svg",
  24647. extra: 444 / 390,
  24648. bottom: 2 / 444.8
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Micro",
  24655. height: math.unit(4, "inches")
  24656. },
  24657. {
  24658. name: "Normal",
  24659. height: math.unit(5 + 4 / 12, "feet"),
  24660. default: true
  24661. },
  24662. {
  24663. name: "Macro",
  24664. height: math.unit(100, "feet")
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24670. {
  24671. front: {
  24672. height: math.unit(6.71, "feet"),
  24673. weight: math.unit(200, "lb"),
  24674. capacity: math.unit(1000000, "people"),
  24675. name: "Front",
  24676. image: {
  24677. source: "./media/characters/gliss/front.svg",
  24678. extra: 2347 / 2231,
  24679. bottom: 113 / 2462
  24680. }
  24681. },
  24682. hammerspaceSize: {
  24683. height: math.unit(6.71 * 717, "feet"),
  24684. weight: math.unit(200, "lb"),
  24685. capacity: math.unit(1000000, "people"),
  24686. name: "Hammerspace Size",
  24687. image: {
  24688. source: "./media/characters/gliss/front.svg",
  24689. extra: 2347 / 2231,
  24690. bottom: 113 / 2462
  24691. }
  24692. },
  24693. },
  24694. [
  24695. {
  24696. name: "Normal",
  24697. height: math.unit(6.71, "feet"),
  24698. default: true
  24699. },
  24700. ]
  24701. ))
  24702. characterMakers.push(() => makeCharacter(
  24703. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24704. {
  24705. side: {
  24706. height: math.unit(1.44, "m"),
  24707. weight: math.unit(80, "kg"),
  24708. name: "Side",
  24709. image: {
  24710. source: "./media/characters/dune-anderson/side.svg",
  24711. bottom: 49 / 1426
  24712. }
  24713. },
  24714. },
  24715. [
  24716. {
  24717. name: "Wolf-sized",
  24718. height: math.unit(1.44, "meters")
  24719. },
  24720. {
  24721. name: "Normal",
  24722. height: math.unit(5.05, "meters"),
  24723. default: true
  24724. },
  24725. {
  24726. name: "Big",
  24727. height: math.unit(14.4, "meters")
  24728. },
  24729. {
  24730. name: "Huge",
  24731. height: math.unit(144, "meters")
  24732. },
  24733. ]
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24737. {
  24738. front: {
  24739. height: math.unit(7, "feet"),
  24740. weight: math.unit(425, "lb"),
  24741. name: "Front",
  24742. image: {
  24743. source: "./media/characters/hind/front.svg",
  24744. extra: 2091 / 1860,
  24745. bottom: 129 / 2220
  24746. }
  24747. },
  24748. back: {
  24749. height: math.unit(7, "feet"),
  24750. weight: math.unit(425, "lb"),
  24751. name: "Back",
  24752. image: {
  24753. source: "./media/characters/hind/back.svg",
  24754. extra: 2091 / 1860,
  24755. bottom: 24.6 / 2309
  24756. }
  24757. },
  24758. tail: {
  24759. height: math.unit(2.8, "feet"),
  24760. name: "Tail",
  24761. image: {
  24762. source: "./media/characters/hind/tail.svg"
  24763. }
  24764. },
  24765. head: {
  24766. height: math.unit(2.55, "feet"),
  24767. name: "Head",
  24768. image: {
  24769. source: "./media/characters/hind/head.svg"
  24770. }
  24771. },
  24772. },
  24773. [
  24774. {
  24775. name: "XS",
  24776. height: math.unit(0.7, "feet")
  24777. },
  24778. {
  24779. name: "Normal",
  24780. height: math.unit(7, "feet"),
  24781. default: true
  24782. },
  24783. {
  24784. name: "XL",
  24785. height: math.unit(70, "feet")
  24786. },
  24787. ]
  24788. ))
  24789. characterMakers.push(() => makeCharacter(
  24790. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24791. {
  24792. front: {
  24793. height: math.unit(6, "feet"),
  24794. weight: math.unit(150, "lb"),
  24795. name: "Front",
  24796. image: {
  24797. source: "./media/characters/dylan-skaven/front.svg",
  24798. extra: 2318 / 2063,
  24799. bottom: 93.4 / 2410
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Nano",
  24806. height: math.unit(1, "mm")
  24807. },
  24808. {
  24809. name: "Micro",
  24810. height: math.unit(1, "cm")
  24811. },
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(2.1, "meters"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(7 + 5 / 12, "feet"),
  24824. weight: math.unit(357, "lb"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/solex-draconov/front.svg",
  24828. extra: 1993 / 1865,
  24829. bottom: 117 / 2111
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Natural Height",
  24836. height: math.unit(7 + 5 / 12, "feet"),
  24837. default: true
  24838. },
  24839. {
  24840. name: "Macro",
  24841. height: math.unit(350, "feet")
  24842. },
  24843. {
  24844. name: "Macro+",
  24845. height: math.unit(1000, "feet")
  24846. },
  24847. {
  24848. name: "Megamacro",
  24849. height: math.unit(20, "km")
  24850. },
  24851. {
  24852. name: "Megamacro+",
  24853. height: math.unit(1000, "km")
  24854. },
  24855. {
  24856. name: "Gigamacro",
  24857. height: math.unit(2.5, "Gm")
  24858. },
  24859. {
  24860. name: "Teramacro",
  24861. height: math.unit(15, "Tm")
  24862. },
  24863. {
  24864. name: "Galactic",
  24865. height: math.unit(30, "Zm")
  24866. },
  24867. {
  24868. name: "Universal",
  24869. height: math.unit(21000, "Ym")
  24870. },
  24871. {
  24872. name: "Omniversal",
  24873. height: math.unit(9.861e50, "Ym")
  24874. },
  24875. {
  24876. name: "Existential",
  24877. height: math.unit(1e300, "meters")
  24878. },
  24879. ]
  24880. ))
  24881. characterMakers.push(() => makeCharacter(
  24882. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24883. {
  24884. side: {
  24885. height: math.unit(25, "feet"),
  24886. weight: math.unit(90000, "lb"),
  24887. name: "Side",
  24888. image: {
  24889. source: "./media/characters/mandarax/side.svg",
  24890. extra: 614 / 332,
  24891. bottom: 55 / 630
  24892. }
  24893. },
  24894. head: {
  24895. height: math.unit(11.4, "feet"),
  24896. name: "Head",
  24897. image: {
  24898. source: "./media/characters/mandarax/head.svg"
  24899. }
  24900. },
  24901. belly: {
  24902. height: math.unit(33, "feet"),
  24903. name: "Belly",
  24904. capacity: math.unit(500, "people"),
  24905. image: {
  24906. source: "./media/characters/mandarax/belly.svg"
  24907. }
  24908. },
  24909. dick: {
  24910. height: math.unit(8.46, "feet"),
  24911. name: "Dick",
  24912. image: {
  24913. source: "./media/characters/mandarax/dick.svg"
  24914. }
  24915. },
  24916. top: {
  24917. height: math.unit(28, "meters"),
  24918. name: "Top",
  24919. image: {
  24920. source: "./media/characters/mandarax/top.svg"
  24921. }
  24922. },
  24923. },
  24924. [
  24925. {
  24926. name: "Normal",
  24927. height: math.unit(25, "feet"),
  24928. default: true
  24929. },
  24930. ]
  24931. ))
  24932. characterMakers.push(() => makeCharacter(
  24933. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24934. {
  24935. front: {
  24936. height: math.unit(5, "feet"),
  24937. weight: math.unit(90, "lb"),
  24938. name: "Front",
  24939. image: {
  24940. source: "./media/characters/pixil/front.svg",
  24941. extra: 2000 / 1618,
  24942. bottom: 12.3 / 2011
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(5, "feet"),
  24950. default: true
  24951. },
  24952. {
  24953. name: "Megamacro",
  24954. height: math.unit(10, "miles"),
  24955. },
  24956. ]
  24957. ))
  24958. characterMakers.push(() => makeCharacter(
  24959. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24960. {
  24961. front: {
  24962. height: math.unit(7 + 2 / 12, "feet"),
  24963. weight: math.unit(200, "lb"),
  24964. name: "Front",
  24965. image: {
  24966. source: "./media/characters/angel/front.svg",
  24967. extra: 1830 / 1737,
  24968. bottom: 22.6 / 1854,
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "Normal",
  24975. height: math.unit(7 + 2 / 12, "feet"),
  24976. default: true
  24977. },
  24978. {
  24979. name: "Macro",
  24980. height: math.unit(1000, "feet")
  24981. },
  24982. {
  24983. name: "Megamacro",
  24984. height: math.unit(2, "miles")
  24985. },
  24986. {
  24987. name: "Gigamacro",
  24988. height: math.unit(20, "earths")
  24989. },
  24990. ]
  24991. ))
  24992. characterMakers.push(() => makeCharacter(
  24993. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24994. {
  24995. front: {
  24996. height: math.unit(5, "feet"),
  24997. weight: math.unit(180, "lb"),
  24998. name: "Front",
  24999. image: {
  25000. source: "./media/characters/mekana/front.svg",
  25001. extra: 1671 / 1605,
  25002. bottom: 3.5 / 1691
  25003. }
  25004. },
  25005. side: {
  25006. height: math.unit(5, "feet"),
  25007. weight: math.unit(180, "lb"),
  25008. name: "Side",
  25009. image: {
  25010. source: "./media/characters/mekana/side.svg",
  25011. extra: 1671 / 1605,
  25012. bottom: 3.5 / 1691
  25013. }
  25014. },
  25015. back: {
  25016. height: math.unit(5, "feet"),
  25017. weight: math.unit(180, "lb"),
  25018. name: "Back",
  25019. image: {
  25020. source: "./media/characters/mekana/back.svg",
  25021. extra: 1671 / 1605,
  25022. bottom: 3.5 / 1691
  25023. }
  25024. },
  25025. },
  25026. [
  25027. {
  25028. name: "Normal",
  25029. height: math.unit(5, "feet"),
  25030. default: true
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25036. {
  25037. front: {
  25038. height: math.unit(4 + 6 / 12, "feet"),
  25039. weight: math.unit(80, "lb"),
  25040. name: "Front",
  25041. image: {
  25042. source: "./media/characters/pixie/front.svg",
  25043. extra: 1924 / 1825,
  25044. bottom: 22.4 / 1946
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Normal",
  25051. height: math.unit(4 + 6 / 12, "feet"),
  25052. default: true
  25053. },
  25054. {
  25055. name: "Macro",
  25056. height: math.unit(40, "feet")
  25057. },
  25058. ]
  25059. ))
  25060. characterMakers.push(() => makeCharacter(
  25061. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25062. {
  25063. front: {
  25064. height: math.unit(2.1, "meters"),
  25065. weight: math.unit(200, "lb"),
  25066. name: "Front",
  25067. image: {
  25068. source: "./media/characters/the-lascivious/front.svg",
  25069. extra: 1 / 0.893,
  25070. bottom: 3.5 / 573.7
  25071. }
  25072. },
  25073. },
  25074. [
  25075. {
  25076. name: "Human Scale",
  25077. height: math.unit(2.1, "meters")
  25078. },
  25079. {
  25080. name: "Wolxi Scale",
  25081. height: math.unit(46.2, "m"),
  25082. default: true
  25083. },
  25084. {
  25085. name: "Boinker of Buildings",
  25086. height: math.unit(10, "km")
  25087. },
  25088. {
  25089. name: "Shagger of Skyscrapers",
  25090. height: math.unit(40, "km")
  25091. },
  25092. {
  25093. name: "Banger of Boroughs",
  25094. height: math.unit(4000, "km")
  25095. },
  25096. {
  25097. name: "Screwer of States",
  25098. height: math.unit(100000, "km")
  25099. },
  25100. {
  25101. name: "Pounder of Planets",
  25102. height: math.unit(2000000, "km")
  25103. },
  25104. ]
  25105. ))
  25106. characterMakers.push(() => makeCharacter(
  25107. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25108. {
  25109. front: {
  25110. height: math.unit(6, "feet"),
  25111. weight: math.unit(150, "lb"),
  25112. name: "Front",
  25113. image: {
  25114. source: "./media/characters/aj/front.svg",
  25115. extra: 2039 / 1562,
  25116. bottom: 40 / 2079
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Normal",
  25123. height: math.unit(11 + 6 / 12, "feet"),
  25124. default: true
  25125. },
  25126. {
  25127. name: "Megamacro",
  25128. height: math.unit(60, "megameters")
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25134. {
  25135. side: {
  25136. height: math.unit(31 + 8 / 12, "feet"),
  25137. weight: math.unit(75000, "kg"),
  25138. name: "Side",
  25139. image: {
  25140. source: "./media/characters/koros/side.svg",
  25141. extra: 1442 / 1297,
  25142. bottom: 122.7 / 1562
  25143. }
  25144. },
  25145. dicksKingsCrown: {
  25146. height: math.unit(6, "feet"),
  25147. name: "Dicks (King's Crown)",
  25148. image: {
  25149. source: "./media/characters/koros/dicks-kings-crown.svg"
  25150. }
  25151. },
  25152. dicksTailSet: {
  25153. height: math.unit(3, "feet"),
  25154. name: "Dicks (Tail Set)",
  25155. image: {
  25156. source: "./media/characters/koros/dicks-tail-set.svg"
  25157. }
  25158. },
  25159. dickCumming: {
  25160. height: math.unit(7.98, "feet"),
  25161. name: "Dick (Cumming)",
  25162. image: {
  25163. source: "./media/characters/koros/dick-cumming.svg"
  25164. }
  25165. },
  25166. dicksBack: {
  25167. height: math.unit(5.9, "feet"),
  25168. name: "Dicks (Back)",
  25169. image: {
  25170. source: "./media/characters/koros/dicks-back.svg"
  25171. }
  25172. },
  25173. dicksFront: {
  25174. height: math.unit(3.72, "feet"),
  25175. name: "Dicks (Front)",
  25176. image: {
  25177. source: "./media/characters/koros/dicks-front.svg"
  25178. }
  25179. },
  25180. dicksPeeking: {
  25181. height: math.unit(3.0, "feet"),
  25182. name: "Dicks (Peeking)",
  25183. image: {
  25184. source: "./media/characters/koros/dicks-peeking.svg"
  25185. }
  25186. },
  25187. eye: {
  25188. height: math.unit(1.7, "feet"),
  25189. name: "Eye",
  25190. image: {
  25191. source: "./media/characters/koros/eye.svg"
  25192. }
  25193. },
  25194. headFront: {
  25195. height: math.unit(11.69, "feet"),
  25196. name: "Head (Front)",
  25197. image: {
  25198. source: "./media/characters/koros/head-front.svg"
  25199. }
  25200. },
  25201. headSide: {
  25202. height: math.unit(14, "feet"),
  25203. name: "Head (Side)",
  25204. image: {
  25205. source: "./media/characters/koros/head-side.svg"
  25206. }
  25207. },
  25208. leg: {
  25209. height: math.unit(17, "feet"),
  25210. name: "Leg",
  25211. image: {
  25212. source: "./media/characters/koros/leg.svg"
  25213. }
  25214. },
  25215. mawSide: {
  25216. height: math.unit(12.8, "feet"),
  25217. name: "Maw (Side)",
  25218. image: {
  25219. source: "./media/characters/koros/maw-side.svg"
  25220. }
  25221. },
  25222. mawSpitting: {
  25223. height: math.unit(17, "feet"),
  25224. name: "Maw (Spitting)",
  25225. image: {
  25226. source: "./media/characters/koros/maw-spitting.svg"
  25227. }
  25228. },
  25229. slit: {
  25230. height: math.unit(2.8, "feet"),
  25231. name: "Slit",
  25232. image: {
  25233. source: "./media/characters/koros/slit.svg"
  25234. }
  25235. },
  25236. stomach: {
  25237. height: math.unit(6.8, "feet"),
  25238. capacity: math.unit(20, "people"),
  25239. name: "Stomach",
  25240. image: {
  25241. source: "./media/characters/koros/stomach.svg"
  25242. }
  25243. },
  25244. wingspanBottom: {
  25245. height: math.unit(114, "feet"),
  25246. name: "Wingspan (Bottom)",
  25247. image: {
  25248. source: "./media/characters/koros/wingspan-bottom.svg"
  25249. }
  25250. },
  25251. wingspanTop: {
  25252. height: math.unit(104, "feet"),
  25253. name: "Wingspan (Top)",
  25254. image: {
  25255. source: "./media/characters/koros/wingspan-top.svg"
  25256. }
  25257. },
  25258. },
  25259. [
  25260. {
  25261. name: "Normal",
  25262. height: math.unit(31 + 8 / 12, "feet"),
  25263. default: true
  25264. },
  25265. ]
  25266. ))
  25267. characterMakers.push(() => makeCharacter(
  25268. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25269. {
  25270. front: {
  25271. height: math.unit(18 + 5 / 12, "feet"),
  25272. weight: math.unit(3750, "kg"),
  25273. name: "Front",
  25274. image: {
  25275. source: "./media/characters/vexx/front.svg",
  25276. extra: 426 / 396,
  25277. bottom: 31.5 / 458
  25278. }
  25279. },
  25280. maw: {
  25281. height: math.unit(6, "feet"),
  25282. name: "Maw",
  25283. image: {
  25284. source: "./media/characters/vexx/maw.svg"
  25285. }
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Normal",
  25291. height: math.unit(18 + 5 / 12, "feet"),
  25292. default: true
  25293. },
  25294. ]
  25295. ))
  25296. characterMakers.push(() => makeCharacter(
  25297. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25298. {
  25299. front: {
  25300. height: math.unit(17 + 6 / 12, "feet"),
  25301. weight: math.unit(150, "lb"),
  25302. name: "Front",
  25303. image: {
  25304. source: "./media/characters/baadra/front.svg",
  25305. extra: 3137 / 2890,
  25306. bottom: 168.4 / 3305
  25307. }
  25308. },
  25309. back: {
  25310. height: math.unit(17 + 6 / 12, "feet"),
  25311. weight: math.unit(150, "lb"),
  25312. name: "Back",
  25313. image: {
  25314. source: "./media/characters/baadra/back.svg",
  25315. extra: 3142 / 2890,
  25316. bottom: 220 / 3371
  25317. }
  25318. },
  25319. head: {
  25320. height: math.unit(5.45, "feet"),
  25321. name: "Head",
  25322. image: {
  25323. source: "./media/characters/baadra/head.svg"
  25324. }
  25325. },
  25326. headAngry: {
  25327. height: math.unit(4.95, "feet"),
  25328. name: "Head (Angry)",
  25329. image: {
  25330. source: "./media/characters/baadra/head-angry.svg"
  25331. }
  25332. },
  25333. headOpen: {
  25334. height: math.unit(6, "feet"),
  25335. name: "Head (Open)",
  25336. image: {
  25337. source: "./media/characters/baadra/head-open.svg"
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(17 + 6 / 12, "feet"),
  25345. default: true
  25346. },
  25347. ]
  25348. ))
  25349. characterMakers.push(() => makeCharacter(
  25350. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25351. {
  25352. front: {
  25353. height: math.unit(7 + 3 / 12, "feet"),
  25354. weight: math.unit(180, "lb"),
  25355. name: "Front",
  25356. image: {
  25357. source: "./media/characters/juri/front.svg",
  25358. extra: 1401 / 1237,
  25359. bottom: 18.5 / 1418
  25360. }
  25361. },
  25362. side: {
  25363. height: math.unit(7 + 3 / 12, "feet"),
  25364. weight: math.unit(180, "lb"),
  25365. name: "Side",
  25366. image: {
  25367. source: "./media/characters/juri/side.svg",
  25368. extra: 1424 / 1242,
  25369. bottom: 18.5 / 1447
  25370. }
  25371. },
  25372. sitting: {
  25373. height: math.unit(6, "feet"),
  25374. weight: math.unit(180, "lb"),
  25375. name: "Sitting",
  25376. image: {
  25377. source: "./media/characters/juri/sitting.svg",
  25378. extra: 1270 / 1143,
  25379. bottom: 100 / 1343
  25380. }
  25381. },
  25382. back: {
  25383. height: math.unit(7 + 3 / 12, "feet"),
  25384. weight: math.unit(180, "lb"),
  25385. name: "Back",
  25386. image: {
  25387. source: "./media/characters/juri/back.svg",
  25388. extra: 1377 / 1240,
  25389. bottom: 23.7 / 1405
  25390. }
  25391. },
  25392. maw: {
  25393. height: math.unit(2.8, "feet"),
  25394. name: "Maw",
  25395. image: {
  25396. source: "./media/characters/juri/maw.svg"
  25397. }
  25398. },
  25399. stomach: {
  25400. height: math.unit(0.89, "feet"),
  25401. capacity: math.unit(4, "liters"),
  25402. name: "Stomach",
  25403. image: {
  25404. source: "./media/characters/juri/stomach.svg"
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(7 + 3 / 12, "feet"),
  25412. default: true
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25418. {
  25419. fox: {
  25420. height: math.unit(5 + 6 / 12, "feet"),
  25421. weight: math.unit(140, "lb"),
  25422. name: "Fox",
  25423. image: {
  25424. source: "./media/characters/maxene-sita/fox.svg",
  25425. extra: 146 / 138,
  25426. bottom: 2.1 / 148.19
  25427. }
  25428. },
  25429. foxLaying: {
  25430. height: math.unit(1.70, "feet"),
  25431. weight: math.unit(140, "lb"),
  25432. name: "Fox (Laying)",
  25433. image: {
  25434. source: "./media/characters/maxene-sita/fox-laying.svg",
  25435. extra: 910 / 572,
  25436. bottom: 71 / 981
  25437. }
  25438. },
  25439. kitsune: {
  25440. height: math.unit(10, "feet"),
  25441. weight: math.unit(800, "lb"),
  25442. name: "Kitsune",
  25443. image: {
  25444. source: "./media/characters/maxene-sita/kitsune.svg",
  25445. extra: 185 / 176,
  25446. bottom: 4.7 / 189.9
  25447. }
  25448. },
  25449. hellhound: {
  25450. height: math.unit(10, "feet"),
  25451. weight: math.unit(700, "lb"),
  25452. name: "Hellhound",
  25453. image: {
  25454. source: "./media/characters/maxene-sita/hellhound.svg",
  25455. extra: 1600 / 1545,
  25456. bottom: 81 / 1681
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Normal",
  25463. height: math.unit(5 + 6 / 12, "feet"),
  25464. default: true
  25465. },
  25466. ]
  25467. ))
  25468. characterMakers.push(() => makeCharacter(
  25469. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25470. {
  25471. front: {
  25472. height: math.unit(3 + 4 / 12, "feet"),
  25473. weight: math.unit(70, "lb"),
  25474. name: "Front",
  25475. image: {
  25476. source: "./media/characters/maia/front.svg",
  25477. extra: 227 / 219.5,
  25478. bottom: 40 / 267
  25479. }
  25480. },
  25481. back: {
  25482. height: math.unit(3 + 4 / 12, "feet"),
  25483. weight: math.unit(70, "lb"),
  25484. name: "Back",
  25485. image: {
  25486. source: "./media/characters/maia/back.svg",
  25487. extra: 237 / 225
  25488. }
  25489. },
  25490. },
  25491. [
  25492. {
  25493. name: "Normal",
  25494. height: math.unit(3 + 4 / 12, "feet"),
  25495. default: true
  25496. },
  25497. ]
  25498. ))
  25499. characterMakers.push(() => makeCharacter(
  25500. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25501. {
  25502. front: {
  25503. height: math.unit(5 + 10 / 12, "feet"),
  25504. weight: math.unit(197, "lb"),
  25505. name: "Front",
  25506. image: {
  25507. source: "./media/characters/jabaro/front.svg",
  25508. extra: 225 / 216,
  25509. bottom: 5.06 / 230
  25510. }
  25511. },
  25512. back: {
  25513. height: math.unit(5 + 10 / 12, "feet"),
  25514. weight: math.unit(197, "lb"),
  25515. name: "Back",
  25516. image: {
  25517. source: "./media/characters/jabaro/back.svg",
  25518. extra: 225 / 219,
  25519. bottom: 1.9 / 227
  25520. }
  25521. },
  25522. },
  25523. [
  25524. {
  25525. name: "Normal",
  25526. height: math.unit(5 + 10 / 12, "feet"),
  25527. default: true
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25533. {
  25534. front: {
  25535. height: math.unit(5 + 8 / 12, "feet"),
  25536. weight: math.unit(139, "lb"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/risa/front.svg",
  25540. extra: 270 / 260,
  25541. bottom: 11.2 / 282
  25542. }
  25543. },
  25544. back: {
  25545. height: math.unit(5 + 8 / 12, "feet"),
  25546. weight: math.unit(139, "lb"),
  25547. name: "Back",
  25548. image: {
  25549. source: "./media/characters/risa/back.svg",
  25550. extra: 264 / 255,
  25551. bottom: 4 / 268
  25552. }
  25553. },
  25554. },
  25555. [
  25556. {
  25557. name: "Normal",
  25558. height: math.unit(5 + 8 / 12, "feet"),
  25559. default: true
  25560. },
  25561. ]
  25562. ))
  25563. characterMakers.push(() => makeCharacter(
  25564. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25565. {
  25566. front: {
  25567. height: math.unit(2 + 11 / 12, "feet"),
  25568. weight: math.unit(30, "lb"),
  25569. name: "Front",
  25570. image: {
  25571. source: "./media/characters/weatley/front.svg",
  25572. bottom: 10.7 / 414,
  25573. extra: 403.5 / 362
  25574. }
  25575. },
  25576. back: {
  25577. height: math.unit(2 + 11 / 12, "feet"),
  25578. weight: math.unit(30, "lb"),
  25579. name: "Back",
  25580. image: {
  25581. source: "./media/characters/weatley/back.svg",
  25582. bottom: 10.7 / 414,
  25583. extra: 403.5 / 362
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(2 + 11 / 12, "feet"),
  25591. default: true
  25592. },
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25597. {
  25598. front: {
  25599. height: math.unit(5 + 2 / 12, "feet"),
  25600. weight: math.unit(50, "kg"),
  25601. name: "Front",
  25602. image: {
  25603. source: "./media/characters/mercury-crescent/front.svg",
  25604. extra: 1088 / 1033,
  25605. bottom: 18.9 / 1109
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Normal",
  25612. height: math.unit(5 + 2 / 12, "feet"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25619. {
  25620. front: {
  25621. height: math.unit(2, "feet"),
  25622. weight: math.unit(15, "kg"),
  25623. name: "Front",
  25624. image: {
  25625. source: "./media/characters/diamond-jones/front.svg",
  25626. extra: 727/723,
  25627. bottom: 46/773
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(2, "feet"),
  25635. default: true
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25641. {
  25642. front: {
  25643. height: math.unit(3, "feet"),
  25644. weight: math.unit(30, "kg"),
  25645. name: "Front",
  25646. image: {
  25647. source: "./media/characters/sweet-bit/front.svg",
  25648. extra: 675 / 567,
  25649. bottom: 27.7 / 703
  25650. }
  25651. },
  25652. },
  25653. [
  25654. {
  25655. name: "Normal",
  25656. height: math.unit(3, "feet"),
  25657. default: true
  25658. },
  25659. ]
  25660. ))
  25661. characterMakers.push(() => makeCharacter(
  25662. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25663. {
  25664. side: {
  25665. height: math.unit(9.178, "feet"),
  25666. weight: math.unit(500, "lb"),
  25667. name: "Side",
  25668. image: {
  25669. source: "./media/characters/umbrazen/side.svg",
  25670. extra: 1730 / 1473,
  25671. bottom: 34.6 / 1765
  25672. }
  25673. },
  25674. },
  25675. [
  25676. {
  25677. name: "Normal",
  25678. height: math.unit(9.178, "feet"),
  25679. default: true
  25680. },
  25681. ]
  25682. ))
  25683. characterMakers.push(() => makeCharacter(
  25684. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25685. {
  25686. front: {
  25687. height: math.unit(10, "feet"),
  25688. weight: math.unit(750, "lb"),
  25689. name: "Front",
  25690. image: {
  25691. source: "./media/characters/arlist/front.svg",
  25692. extra: 961 / 778,
  25693. bottom: 6.2 / 986
  25694. }
  25695. },
  25696. },
  25697. [
  25698. {
  25699. name: "Normal",
  25700. height: math.unit(10, "feet"),
  25701. default: true
  25702. },
  25703. ]
  25704. ))
  25705. characterMakers.push(() => makeCharacter(
  25706. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25707. {
  25708. front: {
  25709. height: math.unit(5 + 1 / 12, "feet"),
  25710. weight: math.unit(110, "lb"),
  25711. name: "Front",
  25712. image: {
  25713. source: "./media/characters/aradel/front.svg",
  25714. extra: 324 / 303,
  25715. bottom: 3.6 / 329.4
  25716. }
  25717. },
  25718. },
  25719. [
  25720. {
  25721. name: "Normal",
  25722. height: math.unit(5 + 1 / 12, "feet"),
  25723. default: true
  25724. },
  25725. ]
  25726. ))
  25727. characterMakers.push(() => makeCharacter(
  25728. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25729. {
  25730. front: {
  25731. height: math.unit(3 + 8 / 12, "feet"),
  25732. weight: math.unit(50, "lb"),
  25733. name: "Front",
  25734. image: {
  25735. source: "./media/characters/serryn/front.svg",
  25736. extra: 1792 / 1656,
  25737. bottom: 43.5 / 1840
  25738. }
  25739. },
  25740. },
  25741. [
  25742. {
  25743. name: "Normal",
  25744. height: math.unit(3 + 8 / 12, "feet"),
  25745. default: true
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25751. {
  25752. front: {
  25753. height: math.unit(7 + 10 / 12, "feet"),
  25754. weight: math.unit(255, "lb"),
  25755. name: "Front",
  25756. image: {
  25757. source: "./media/characters/xavier-thyme/front.svg",
  25758. extra: 3733 / 3642,
  25759. bottom: 131 / 3869
  25760. }
  25761. },
  25762. frontRaven: {
  25763. height: math.unit(7 + 10 / 12, "feet"),
  25764. weight: math.unit(255, "lb"),
  25765. name: "Front (Raven)",
  25766. image: {
  25767. source: "./media/characters/xavier-thyme/front-raven.svg",
  25768. extra: 4385 / 3642,
  25769. bottom: 131 / 4517
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Normal",
  25776. height: math.unit(7 + 10 / 12, "feet"),
  25777. default: true
  25778. },
  25779. ]
  25780. ))
  25781. characterMakers.push(() => makeCharacter(
  25782. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25783. {
  25784. front: {
  25785. height: math.unit(1.6, "m"),
  25786. weight: math.unit(50, "kg"),
  25787. name: "Front",
  25788. image: {
  25789. source: "./media/characters/kiki/front.svg",
  25790. extra: 4682 / 3610,
  25791. bottom: 115 / 4777
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Normal",
  25798. height: math.unit(1.6, "meters"),
  25799. default: true
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25805. {
  25806. front: {
  25807. height: math.unit(50, "m"),
  25808. weight: math.unit(500, "tonnes"),
  25809. name: "Front",
  25810. image: {
  25811. source: "./media/characters/ryoko/front.svg",
  25812. extra: 4632 / 3926,
  25813. bottom: 193 / 4823
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Normal",
  25820. height: math.unit(50, "meters"),
  25821. default: true
  25822. },
  25823. ]
  25824. ))
  25825. characterMakers.push(() => makeCharacter(
  25826. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25827. {
  25828. front: {
  25829. height: math.unit(30, "m"),
  25830. weight: math.unit(22, "tonnes"),
  25831. name: "Front",
  25832. image: {
  25833. source: "./media/characters/elio/front.svg",
  25834. extra: 4582 / 3720,
  25835. bottom: 236 / 4828
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(30, "meters"),
  25843. default: true
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(6 + 3 / 12, "feet"),
  25852. weight: math.unit(120, "lb"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/azura/front.svg",
  25856. extra: 1149 / 1135,
  25857. bottom: 45 / 1194
  25858. }
  25859. },
  25860. frontClothed: {
  25861. height: math.unit(6 + 3 / 12, "feet"),
  25862. weight: math.unit(120, "lb"),
  25863. name: "Front (Clothed)",
  25864. image: {
  25865. source: "./media/characters/azura/front-clothed.svg",
  25866. extra: 1149 / 1135,
  25867. bottom: 45 / 1194
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Normal",
  25874. height: math.unit(6 + 3 / 12, "feet"),
  25875. default: true
  25876. },
  25877. {
  25878. name: "Macro",
  25879. height: math.unit(20 + 6 / 12, "feet")
  25880. },
  25881. {
  25882. name: "Megamacro",
  25883. height: math.unit(12, "miles")
  25884. },
  25885. {
  25886. name: "Gigamacro",
  25887. height: math.unit(10000, "miles")
  25888. },
  25889. {
  25890. name: "Teramacro",
  25891. height: math.unit(900000, "miles")
  25892. },
  25893. ]
  25894. ))
  25895. characterMakers.push(() => makeCharacter(
  25896. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25897. {
  25898. front: {
  25899. height: math.unit(12, "feet"),
  25900. weight: math.unit(1, "ton"),
  25901. capacity: math.unit(660000, "gallons"),
  25902. name: "Front",
  25903. image: {
  25904. source: "./media/characters/zeus/front.svg",
  25905. extra: 5005 / 4717,
  25906. bottom: 363 / 5388
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(12, "feet")
  25914. },
  25915. {
  25916. name: "Preferred Size",
  25917. height: math.unit(0.5, "miles"),
  25918. default: true
  25919. },
  25920. {
  25921. name: "Giga Horse",
  25922. height: math.unit(300, "miles")
  25923. },
  25924. {
  25925. name: "Riding Planets",
  25926. height: math.unit(30, "megameters")
  25927. },
  25928. {
  25929. name: "Cosmic Giant",
  25930. height: math.unit(3, "zettameters")
  25931. },
  25932. {
  25933. name: "Breeding God",
  25934. height: math.unit(9.92e22, "yottameters")
  25935. },
  25936. ]
  25937. ))
  25938. characterMakers.push(() => makeCharacter(
  25939. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25940. {
  25941. side: {
  25942. height: math.unit(9, "feet"),
  25943. weight: math.unit(1500, "kg"),
  25944. name: "Side",
  25945. image: {
  25946. source: "./media/characters/fang/side.svg",
  25947. extra: 924 / 866,
  25948. bottom: 47.5 / 972.3
  25949. }
  25950. },
  25951. },
  25952. [
  25953. {
  25954. name: "Normal",
  25955. height: math.unit(9, "feet"),
  25956. default: true
  25957. },
  25958. {
  25959. name: "Macro",
  25960. height: math.unit(75 + 6 / 12, "feet")
  25961. },
  25962. {
  25963. name: "Teramacro",
  25964. height: math.unit(50000, "miles")
  25965. },
  25966. ]
  25967. ))
  25968. characterMakers.push(() => makeCharacter(
  25969. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25970. {
  25971. front: {
  25972. height: math.unit(10, "feet"),
  25973. weight: math.unit(2, "tons"),
  25974. name: "Front",
  25975. image: {
  25976. source: "./media/characters/rekhit/front.svg",
  25977. extra: 2796 / 2590,
  25978. bottom: 225 / 3022
  25979. }
  25980. },
  25981. },
  25982. [
  25983. {
  25984. name: "Normal",
  25985. height: math.unit(10, "feet"),
  25986. default: true
  25987. },
  25988. {
  25989. name: "Macro",
  25990. height: math.unit(500, "feet")
  25991. },
  25992. ]
  25993. ))
  25994. characterMakers.push(() => makeCharacter(
  25995. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25996. {
  25997. front: {
  25998. height: math.unit(7 + 6.451 / 12, "feet"),
  25999. weight: math.unit(310, "lb"),
  26000. name: "Front",
  26001. image: {
  26002. source: "./media/characters/dahlia-verrick/front.svg",
  26003. extra: 1488 / 1365,
  26004. bottom: 6.2 / 1495
  26005. }
  26006. },
  26007. back: {
  26008. height: math.unit(7 + 6.451 / 12, "feet"),
  26009. weight: math.unit(310, "lb"),
  26010. name: "Back",
  26011. image: {
  26012. source: "./media/characters/dahlia-verrick/back.svg",
  26013. extra: 1472 / 1351,
  26014. bottom: 5.28 / 1477
  26015. }
  26016. },
  26017. frontBusiness: {
  26018. height: math.unit(7 + 6.451 / 12, "feet"),
  26019. weight: math.unit(200, "lb"),
  26020. name: "Front (Business)",
  26021. image: {
  26022. source: "./media/characters/dahlia-verrick/front-business.svg",
  26023. extra: 1478 / 1381,
  26024. bottom: 5.5 / 1484
  26025. }
  26026. },
  26027. frontCasual: {
  26028. height: math.unit(7 + 6.451 / 12, "feet"),
  26029. weight: math.unit(200, "lb"),
  26030. name: "Front (Casual)",
  26031. image: {
  26032. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26033. extra: 1478 / 1381,
  26034. bottom: 5.5 / 1484
  26035. }
  26036. },
  26037. },
  26038. [
  26039. {
  26040. name: "Travel-Sized",
  26041. height: math.unit(7.45, "inches")
  26042. },
  26043. {
  26044. name: "Normal",
  26045. height: math.unit(7 + 6.451 / 12, "feet"),
  26046. default: true
  26047. },
  26048. {
  26049. name: "Hitting the Town",
  26050. height: math.unit(37 + 8 / 12, "feet")
  26051. },
  26052. {
  26053. name: "Stomp in the Suburbs",
  26054. height: math.unit(964 + 9.728 / 12, "feet")
  26055. },
  26056. {
  26057. name: "Sit on the City",
  26058. height: math.unit(61747 + 10.592 / 12, "feet")
  26059. },
  26060. {
  26061. name: "Glomp the Globe",
  26062. height: math.unit(252919327 + 4.832 / 12, "feet")
  26063. },
  26064. ]
  26065. ))
  26066. characterMakers.push(() => makeCharacter(
  26067. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26068. {
  26069. front: {
  26070. height: math.unit(6 + 4 / 12, "feet"),
  26071. weight: math.unit(320, "lb"),
  26072. name: "Front",
  26073. image: {
  26074. source: "./media/characters/balina-mahigan/front.svg",
  26075. extra: 447 / 428,
  26076. bottom: 18 / 466
  26077. }
  26078. },
  26079. back: {
  26080. height: math.unit(6 + 4 / 12, "feet"),
  26081. weight: math.unit(320, "lb"),
  26082. name: "Back",
  26083. image: {
  26084. source: "./media/characters/balina-mahigan/back.svg",
  26085. extra: 445 / 428,
  26086. bottom: 4.07 / 448
  26087. }
  26088. },
  26089. arm: {
  26090. height: math.unit(1.88, "feet"),
  26091. name: "Arm",
  26092. image: {
  26093. source: "./media/characters/balina-mahigan/arm.svg"
  26094. }
  26095. },
  26096. backPort: {
  26097. height: math.unit(0.685, "feet"),
  26098. name: "Back Port",
  26099. image: {
  26100. source: "./media/characters/balina-mahigan/back-port.svg"
  26101. }
  26102. },
  26103. hoofpaw: {
  26104. height: math.unit(1.41, "feet"),
  26105. name: "Hoofpaw",
  26106. image: {
  26107. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26108. }
  26109. },
  26110. leftHandBack: {
  26111. height: math.unit(0.938, "feet"),
  26112. name: "Left Hand (Back)",
  26113. image: {
  26114. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26115. }
  26116. },
  26117. leftHandFront: {
  26118. height: math.unit(0.938, "feet"),
  26119. name: "Left Hand (Front)",
  26120. image: {
  26121. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26122. }
  26123. },
  26124. rightHandBack: {
  26125. height: math.unit(0.95, "feet"),
  26126. name: "Right Hand (Back)",
  26127. image: {
  26128. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26129. }
  26130. },
  26131. rightHandFront: {
  26132. height: math.unit(0.95, "feet"),
  26133. name: "Right Hand (Front)",
  26134. image: {
  26135. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Normal",
  26142. height: math.unit(6 + 4 / 12, "feet"),
  26143. default: true
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26149. {
  26150. front: {
  26151. height: math.unit(6, "feet"),
  26152. weight: math.unit(320, "lb"),
  26153. name: "Front",
  26154. image: {
  26155. source: "./media/characters/balina-mejeri/front.svg",
  26156. extra: 517 / 488,
  26157. bottom: 44.2 / 561
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(6 + 4 / 12, "feet")
  26165. },
  26166. {
  26167. name: "Business",
  26168. height: math.unit(155, "feet"),
  26169. default: true
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26175. {
  26176. kneeling: {
  26177. height: math.unit(6 + 4 / 12, "feet"),
  26178. weight: math.unit(300 * 20, "lb"),
  26179. name: "Kneeling",
  26180. image: {
  26181. source: "./media/characters/balbarian/kneeling.svg",
  26182. extra: 922 / 862,
  26183. bottom: 42.4 / 965
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Normal",
  26190. height: math.unit(6 + 4 / 12, "feet")
  26191. },
  26192. {
  26193. name: "Treasured",
  26194. height: math.unit(18 + 9 / 12, "feet"),
  26195. default: true
  26196. },
  26197. {
  26198. name: "Macro",
  26199. height: math.unit(900, "feet")
  26200. },
  26201. ]
  26202. ))
  26203. characterMakers.push(() => makeCharacter(
  26204. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26205. {
  26206. front: {
  26207. height: math.unit(6 + 4 / 12, "feet"),
  26208. weight: math.unit(325, "lb"),
  26209. name: "Front",
  26210. image: {
  26211. source: "./media/characters/balina-amarini/front.svg",
  26212. extra: 415 / 403,
  26213. bottom: 19 / 433.4
  26214. }
  26215. },
  26216. back: {
  26217. height: math.unit(6 + 4 / 12, "feet"),
  26218. weight: math.unit(325, "lb"),
  26219. name: "Back",
  26220. image: {
  26221. source: "./media/characters/balina-amarini/back.svg",
  26222. extra: 415 / 403,
  26223. bottom: 13.5 / 432
  26224. }
  26225. },
  26226. overdrive: {
  26227. height: math.unit(6 + 4 / 12, "feet"),
  26228. weight: math.unit(400, "lb"),
  26229. name: "Overdrive",
  26230. image: {
  26231. source: "./media/characters/balina-amarini/overdrive.svg",
  26232. extra: 269 / 259,
  26233. bottom: 12 / 282
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Boom",
  26240. height: math.unit(9 + 10 / 12, "feet"),
  26241. default: true
  26242. },
  26243. {
  26244. name: "Macro",
  26245. height: math.unit(280, "feet")
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26251. {
  26252. goddess: {
  26253. height: math.unit(600, "feet"),
  26254. weight: math.unit(2000000, "tons"),
  26255. name: "Goddess",
  26256. image: {
  26257. source: "./media/characters/lady-kubwa/goddess.svg",
  26258. extra: 1240.5 / 1223,
  26259. bottom: 22 / 1263
  26260. }
  26261. },
  26262. goddesser: {
  26263. height: math.unit(900, "feet"),
  26264. weight: math.unit(20000000, "lb"),
  26265. name: "Goddess-er",
  26266. image: {
  26267. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26268. extra: 899 / 888,
  26269. bottom: 12.6 / 912
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Macro",
  26276. height: math.unit(600, "feet"),
  26277. default: true
  26278. },
  26279. {
  26280. name: "Megamacro",
  26281. height: math.unit(250, "miles")
  26282. },
  26283. ]
  26284. ))
  26285. characterMakers.push(() => makeCharacter(
  26286. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26287. {
  26288. front: {
  26289. height: math.unit(7 + 7 / 12, "feet"),
  26290. weight: math.unit(250, "lb"),
  26291. name: "Front",
  26292. image: {
  26293. source: "./media/characters/tala-grovehorn/front.svg",
  26294. extra: 2636 / 2525,
  26295. bottom: 147 / 2781
  26296. }
  26297. },
  26298. back: {
  26299. height: math.unit(7 + 7 / 12, "feet"),
  26300. weight: math.unit(250, "lb"),
  26301. name: "Back",
  26302. image: {
  26303. source: "./media/characters/tala-grovehorn/back.svg",
  26304. extra: 2635 / 2539,
  26305. bottom: 100 / 2732.8
  26306. }
  26307. },
  26308. mouth: {
  26309. height: math.unit(1.15, "feet"),
  26310. name: "Mouth",
  26311. image: {
  26312. source: "./media/characters/tala-grovehorn/mouth.svg"
  26313. }
  26314. },
  26315. dick: {
  26316. height: math.unit(2.36, "feet"),
  26317. name: "Dick",
  26318. image: {
  26319. source: "./media/characters/tala-grovehorn/dick.svg"
  26320. }
  26321. },
  26322. slit: {
  26323. height: math.unit(0.61, "feet"),
  26324. name: "Slit",
  26325. image: {
  26326. source: "./media/characters/tala-grovehorn/slit.svg"
  26327. }
  26328. },
  26329. },
  26330. [
  26331. ]
  26332. ))
  26333. characterMakers.push(() => makeCharacter(
  26334. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26335. {
  26336. front: {
  26337. height: math.unit(7 + 7 / 12, "feet"),
  26338. weight: math.unit(225, "lb"),
  26339. name: "Front",
  26340. image: {
  26341. source: "./media/characters/epona/front.svg",
  26342. extra: 2445 / 2290,
  26343. bottom: 251 / 2696
  26344. }
  26345. },
  26346. back: {
  26347. height: math.unit(7 + 7 / 12, "feet"),
  26348. weight: math.unit(225, "lb"),
  26349. name: "Back",
  26350. image: {
  26351. source: "./media/characters/epona/back.svg",
  26352. extra: 2546 / 2408,
  26353. bottom: 44 / 2589
  26354. }
  26355. },
  26356. genitals: {
  26357. height: math.unit(1.5, "feet"),
  26358. name: "Genitals",
  26359. image: {
  26360. source: "./media/characters/epona/genitals.svg"
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(7 + 7 / 12, "feet"),
  26368. default: true
  26369. },
  26370. ]
  26371. ))
  26372. characterMakers.push(() => makeCharacter(
  26373. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26374. {
  26375. front: {
  26376. height: math.unit(7, "feet"),
  26377. weight: math.unit(518, "lb"),
  26378. name: "Front",
  26379. image: {
  26380. source: "./media/characters/avia-bloodbourn/front.svg",
  26381. extra: 1466 / 1350,
  26382. bottom: 65 / 1527
  26383. }
  26384. },
  26385. },
  26386. [
  26387. ]
  26388. ))
  26389. characterMakers.push(() => makeCharacter(
  26390. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26391. {
  26392. front: {
  26393. height: math.unit(9.35, "feet"),
  26394. weight: math.unit(600, "lb"),
  26395. name: "Front",
  26396. image: {
  26397. source: "./media/characters/amera/front.svg",
  26398. extra: 891 / 818,
  26399. bottom: 30 / 922.7
  26400. }
  26401. },
  26402. back: {
  26403. height: math.unit(9.35, "feet"),
  26404. weight: math.unit(600, "lb"),
  26405. name: "Back",
  26406. image: {
  26407. source: "./media/characters/amera/back.svg",
  26408. extra: 876 / 824,
  26409. bottom: 6.8 / 884
  26410. }
  26411. },
  26412. dick: {
  26413. height: math.unit(2.14, "feet"),
  26414. name: "Dick",
  26415. image: {
  26416. source: "./media/characters/amera/dick.svg"
  26417. }
  26418. },
  26419. },
  26420. [
  26421. {
  26422. name: "Normal",
  26423. height: math.unit(9.35, "feet"),
  26424. default: true
  26425. },
  26426. ]
  26427. ))
  26428. characterMakers.push(() => makeCharacter(
  26429. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26430. {
  26431. kneeling: {
  26432. height: math.unit(3 + 4 / 12, "feet"),
  26433. weight: math.unit(90, "lb"),
  26434. name: "Kneeling",
  26435. image: {
  26436. source: "./media/characters/rosewen/kneeling.svg",
  26437. extra: 1835 / 1571,
  26438. bottom: 27.7 / 1862
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Normal",
  26445. height: math.unit(3 + 4 / 12, "feet"),
  26446. default: true
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26452. {
  26453. front: {
  26454. height: math.unit(5 + 10 / 12, "feet"),
  26455. weight: math.unit(200, "lb"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/sabah/front.svg",
  26459. extra: 849 / 763,
  26460. bottom: 33.9 / 881
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Normal",
  26467. height: math.unit(5 + 10 / 12, "feet"),
  26468. default: true
  26469. },
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26474. {
  26475. front: {
  26476. height: math.unit(3 + 5 / 12, "feet"),
  26477. weight: math.unit(40, "kg"),
  26478. name: "Front",
  26479. image: {
  26480. source: "./media/characters/purple-flame/front.svg",
  26481. extra: 1577 / 1412,
  26482. bottom: 97 / 1694
  26483. }
  26484. },
  26485. frontDressed: {
  26486. height: math.unit(3 + 5 / 12, "feet"),
  26487. weight: math.unit(40, "kg"),
  26488. name: "Front (Dressed)",
  26489. image: {
  26490. source: "./media/characters/purple-flame/front-dressed.svg",
  26491. extra: 1577 / 1412,
  26492. bottom: 97 / 1694
  26493. }
  26494. },
  26495. headphones: {
  26496. height: math.unit(0.85, "feet"),
  26497. name: "Headphones",
  26498. image: {
  26499. source: "./media/characters/purple-flame/headphones.svg"
  26500. }
  26501. },
  26502. },
  26503. [
  26504. {
  26505. name: "Really Small",
  26506. height: math.unit(5, "cm")
  26507. },
  26508. {
  26509. name: "Micro",
  26510. height: math.unit(1 + 5 / 12, "feet")
  26511. },
  26512. {
  26513. name: "Normal",
  26514. height: math.unit(3 + 5 / 12, "feet"),
  26515. default: true
  26516. },
  26517. {
  26518. name: "Minimacro",
  26519. height: math.unit(125, "feet")
  26520. },
  26521. {
  26522. name: "Macro",
  26523. height: math.unit(0.5, "miles")
  26524. },
  26525. {
  26526. name: "Megamacro",
  26527. height: math.unit(50, "miles")
  26528. },
  26529. {
  26530. name: "Gigantic",
  26531. height: math.unit(750, "miles")
  26532. },
  26533. {
  26534. name: "Planetary",
  26535. height: math.unit(15000, "miles")
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(14, "feet"),
  26544. weight: math.unit(959, "lb"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/arsenal/front.svg",
  26548. extra: 2357 / 2157,
  26549. bottom: 93 / 2458
  26550. }
  26551. },
  26552. },
  26553. [
  26554. {
  26555. name: "Normal",
  26556. height: math.unit(14, "feet"),
  26557. default: true
  26558. },
  26559. ]
  26560. ))
  26561. characterMakers.push(() => makeCharacter(
  26562. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26563. {
  26564. front: {
  26565. height: math.unit(6, "feet"),
  26566. weight: math.unit(150, "lb"),
  26567. name: "Front",
  26568. image: {
  26569. source: "./media/characters/adira/front.svg",
  26570. extra: 1078 / 1029,
  26571. bottom: 87 / 1166
  26572. }
  26573. },
  26574. },
  26575. [
  26576. {
  26577. name: "Micro",
  26578. height: math.unit(4, "inches"),
  26579. default: true
  26580. },
  26581. {
  26582. name: "Macro",
  26583. height: math.unit(50, "feet")
  26584. },
  26585. ]
  26586. ))
  26587. characterMakers.push(() => makeCharacter(
  26588. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26589. {
  26590. front: {
  26591. height: math.unit(16, "feet"),
  26592. weight: math.unit(1000, "lb"),
  26593. name: "Front",
  26594. image: {
  26595. source: "./media/characters/grim/front.svg",
  26596. extra: 622 / 614,
  26597. bottom: 18.1 / 642
  26598. }
  26599. },
  26600. back: {
  26601. height: math.unit(16, "feet"),
  26602. weight: math.unit(1000, "lb"),
  26603. name: "Back",
  26604. image: {
  26605. source: "./media/characters/grim/back.svg",
  26606. extra: 610.6 / 602,
  26607. bottom: 40.8 / 652
  26608. }
  26609. },
  26610. hunched: {
  26611. height: math.unit(9.75, "feet"),
  26612. weight: math.unit(1000, "lb"),
  26613. name: "Hunched",
  26614. image: {
  26615. source: "./media/characters/grim/hunched.svg",
  26616. extra: 304 / 297,
  26617. bottom: 35.4 / 394
  26618. }
  26619. },
  26620. },
  26621. [
  26622. {
  26623. name: "Normal",
  26624. height: math.unit(16, "feet"),
  26625. default: true
  26626. },
  26627. ]
  26628. ))
  26629. characterMakers.push(() => makeCharacter(
  26630. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26631. {
  26632. front: {
  26633. height: math.unit(2.3, "meters"),
  26634. weight: math.unit(300, "lb"),
  26635. name: "Front",
  26636. image: {
  26637. source: "./media/characters/sinja/front-sfw.svg",
  26638. extra: 1393 / 1294,
  26639. bottom: 70 / 1463
  26640. }
  26641. },
  26642. frontNsfw: {
  26643. height: math.unit(2.3, "meters"),
  26644. weight: math.unit(300, "lb"),
  26645. name: "Front (NSFW)",
  26646. image: {
  26647. source: "./media/characters/sinja/front-nsfw.svg",
  26648. extra: 1393 / 1294,
  26649. bottom: 70 / 1463
  26650. }
  26651. },
  26652. back: {
  26653. height: math.unit(2.3, "meters"),
  26654. weight: math.unit(300, "lb"),
  26655. name: "Back",
  26656. image: {
  26657. source: "./media/characters/sinja/back.svg",
  26658. extra: 1393 / 1294,
  26659. bottom: 70 / 1463
  26660. }
  26661. },
  26662. head: {
  26663. height: math.unit(1.771, "feet"),
  26664. name: "Head",
  26665. image: {
  26666. source: "./media/characters/sinja/head.svg"
  26667. }
  26668. },
  26669. slit: {
  26670. height: math.unit(0.8, "feet"),
  26671. name: "Slit",
  26672. image: {
  26673. source: "./media/characters/sinja/slit.svg"
  26674. }
  26675. },
  26676. },
  26677. [
  26678. {
  26679. name: "Normal",
  26680. height: math.unit(2.3, "meters")
  26681. },
  26682. {
  26683. name: "Macro",
  26684. height: math.unit(91, "meters"),
  26685. default: true
  26686. },
  26687. {
  26688. name: "Megamacro",
  26689. height: math.unit(91440, "meters")
  26690. },
  26691. {
  26692. name: "Gigamacro",
  26693. height: math.unit(60960000, "meters")
  26694. },
  26695. {
  26696. name: "Teramacro",
  26697. height: math.unit(9144000000, "meters")
  26698. },
  26699. ]
  26700. ))
  26701. characterMakers.push(() => makeCharacter(
  26702. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26703. {
  26704. front: {
  26705. height: math.unit(1.7, "meters"),
  26706. weight: math.unit(130, "lb"),
  26707. name: "Front",
  26708. image: {
  26709. source: "./media/characters/kyu/front.svg",
  26710. extra: 415 / 395,
  26711. bottom: 5 / 420
  26712. }
  26713. },
  26714. head: {
  26715. height: math.unit(1.75, "feet"),
  26716. name: "Head",
  26717. image: {
  26718. source: "./media/characters/kyu/head.svg"
  26719. }
  26720. },
  26721. foot: {
  26722. height: math.unit(0.81, "feet"),
  26723. name: "Foot",
  26724. image: {
  26725. source: "./media/characters/kyu/foot.svg"
  26726. }
  26727. },
  26728. },
  26729. [
  26730. {
  26731. name: "Normal",
  26732. height: math.unit(1.7, "meters")
  26733. },
  26734. {
  26735. name: "Macro",
  26736. height: math.unit(131, "feet"),
  26737. default: true
  26738. },
  26739. {
  26740. name: "Megamacro",
  26741. height: math.unit(91440, "meters")
  26742. },
  26743. {
  26744. name: "Gigamacro",
  26745. height: math.unit(60960000, "meters")
  26746. },
  26747. {
  26748. name: "Teramacro",
  26749. height: math.unit(9144000000, "meters")
  26750. },
  26751. ]
  26752. ))
  26753. characterMakers.push(() => makeCharacter(
  26754. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26755. {
  26756. front: {
  26757. height: math.unit(7 + 1 / 12, "feet"),
  26758. weight: math.unit(250, "lb"),
  26759. name: "Front",
  26760. image: {
  26761. source: "./media/characters/joey/front.svg",
  26762. extra: 1791 / 1537,
  26763. bottom: 28 / 1816
  26764. }
  26765. },
  26766. },
  26767. [
  26768. {
  26769. name: "Micro",
  26770. height: math.unit(3, "inches")
  26771. },
  26772. {
  26773. name: "Normal",
  26774. height: math.unit(7 + 1 / 12, "feet"),
  26775. default: true
  26776. },
  26777. ]
  26778. ))
  26779. characterMakers.push(() => makeCharacter(
  26780. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26781. {
  26782. front: {
  26783. height: math.unit(165, "cm"),
  26784. weight: math.unit(140, "lb"),
  26785. name: "Front",
  26786. image: {
  26787. source: "./media/characters/sam-evans/front.svg",
  26788. extra: 3417 / 3230,
  26789. bottom: 41.3 / 3417
  26790. }
  26791. },
  26792. frontSixTails: {
  26793. height: math.unit(165, "cm"),
  26794. weight: math.unit(140, "lb"),
  26795. name: "Front-six-tails",
  26796. image: {
  26797. source: "./media/characters/sam-evans/front-six-tails.svg",
  26798. extra: 3417 / 3230,
  26799. bottom: 41.3 / 3417
  26800. }
  26801. },
  26802. back: {
  26803. height: math.unit(165, "cm"),
  26804. weight: math.unit(140, "lb"),
  26805. name: "Back",
  26806. image: {
  26807. source: "./media/characters/sam-evans/back.svg",
  26808. extra: 3227 / 3032,
  26809. bottom: 6.8 / 3234
  26810. }
  26811. },
  26812. face: {
  26813. height: math.unit(0.68, "feet"),
  26814. name: "Face",
  26815. image: {
  26816. source: "./media/characters/sam-evans/face.svg"
  26817. }
  26818. },
  26819. },
  26820. [
  26821. {
  26822. name: "Normal",
  26823. height: math.unit(165, "cm"),
  26824. default: true
  26825. },
  26826. {
  26827. name: "Macro",
  26828. height: math.unit(100, "meters")
  26829. },
  26830. {
  26831. name: "Macro+",
  26832. height: math.unit(800, "meters")
  26833. },
  26834. {
  26835. name: "Macro++",
  26836. height: math.unit(3, "km")
  26837. },
  26838. {
  26839. name: "Macro+++",
  26840. height: math.unit(30, "km")
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26846. {
  26847. front: {
  26848. height: math.unit(10, "feet"),
  26849. weight: math.unit(750, "lb"),
  26850. name: "Front",
  26851. image: {
  26852. source: "./media/characters/juliet-a/front.svg",
  26853. extra: 1766 / 1720,
  26854. bottom: 43 / 1809
  26855. }
  26856. },
  26857. back: {
  26858. height: math.unit(10, "feet"),
  26859. weight: math.unit(750, "lb"),
  26860. name: "Back",
  26861. image: {
  26862. source: "./media/characters/juliet-a/back.svg",
  26863. extra: 1781 / 1734,
  26864. bottom: 35 / 1810,
  26865. }
  26866. },
  26867. },
  26868. [
  26869. {
  26870. name: "Normal",
  26871. height: math.unit(10, "feet"),
  26872. default: true
  26873. },
  26874. {
  26875. name: "Dragon Form",
  26876. height: math.unit(250, "feet")
  26877. },
  26878. {
  26879. name: "Macro",
  26880. height: math.unit(1000, "feet")
  26881. },
  26882. {
  26883. name: "Megamacro",
  26884. height: math.unit(10000, "feet")
  26885. }
  26886. ]
  26887. ))
  26888. characterMakers.push(() => makeCharacter(
  26889. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26890. {
  26891. regular: {
  26892. height: math.unit(7 + 3 / 12, "feet"),
  26893. weight: math.unit(260, "lb"),
  26894. name: "Regular",
  26895. image: {
  26896. source: "./media/characters/wild/regular.svg",
  26897. extra: 97.45 / 92,
  26898. bottom: 6.8 / 104.3
  26899. }
  26900. },
  26901. biggums: {
  26902. height: math.unit(8 + 6 / 12, "feet"),
  26903. weight: math.unit(425, "lb"),
  26904. name: "Biggums",
  26905. image: {
  26906. source: "./media/characters/wild/biggums.svg",
  26907. extra: 97.45 / 92,
  26908. bottom: 7.5 / 132.34
  26909. }
  26910. },
  26911. mawRegular: {
  26912. height: math.unit(1.24, "feet"),
  26913. name: "Maw (Regular)",
  26914. image: {
  26915. source: "./media/characters/wild/maw.svg"
  26916. }
  26917. },
  26918. mawBiggums: {
  26919. height: math.unit(1.47, "feet"),
  26920. name: "Maw (Biggums)",
  26921. image: {
  26922. source: "./media/characters/wild/maw.svg"
  26923. }
  26924. },
  26925. },
  26926. [
  26927. {
  26928. name: "Normal",
  26929. height: math.unit(7 + 3 / 12, "feet"),
  26930. default: true
  26931. },
  26932. ]
  26933. ))
  26934. characterMakers.push(() => makeCharacter(
  26935. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26936. {
  26937. front: {
  26938. height: math.unit(2.5, "meters"),
  26939. weight: math.unit(200, "kg"),
  26940. name: "Front",
  26941. image: {
  26942. source: "./media/characters/vidar/front.svg",
  26943. extra: 2994 / 2795,
  26944. bottom: 56 / 3061
  26945. }
  26946. },
  26947. back: {
  26948. height: math.unit(2.5, "meters"),
  26949. weight: math.unit(200, "kg"),
  26950. name: "Back",
  26951. image: {
  26952. source: "./media/characters/vidar/back.svg",
  26953. extra: 3131 / 2928,
  26954. bottom: 13.5 / 3141.5
  26955. }
  26956. },
  26957. feral: {
  26958. height: math.unit(2.5, "meters"),
  26959. weight: math.unit(2000, "kg"),
  26960. name: "Feral",
  26961. image: {
  26962. source: "./media/characters/vidar/feral.svg",
  26963. extra: 2790 / 1765,
  26964. bottom: 6 / 2796
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Normal",
  26971. height: math.unit(2.5, "meters"),
  26972. default: true
  26973. },
  26974. {
  26975. name: "Macro",
  26976. height: math.unit(100, "meters")
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26982. {
  26983. front: {
  26984. height: math.unit(5 + 9 / 12, "feet"),
  26985. weight: math.unit(120, "lb"),
  26986. name: "Front",
  26987. image: {
  26988. source: "./media/characters/ash/front.svg",
  26989. extra: 2189 / 1961,
  26990. bottom: 5.2 / 2194
  26991. }
  26992. },
  26993. },
  26994. [
  26995. {
  26996. name: "Normal",
  26997. height: math.unit(5 + 9 / 12, "feet"),
  26998. default: true
  26999. },
  27000. ]
  27001. ))
  27002. characterMakers.push(() => makeCharacter(
  27003. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27004. {
  27005. front: {
  27006. height: math.unit(9, "feet"),
  27007. weight: math.unit(10000, "lb"),
  27008. name: "Front",
  27009. image: {
  27010. source: "./media/characters/gygabite/front.svg",
  27011. bottom: 31.7 / 537.8,
  27012. extra: 505 / 370
  27013. }
  27014. },
  27015. },
  27016. [
  27017. {
  27018. name: "Normal",
  27019. height: math.unit(9, "feet"),
  27020. default: true
  27021. },
  27022. ]
  27023. ))
  27024. characterMakers.push(() => makeCharacter(
  27025. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27026. {
  27027. front: {
  27028. height: math.unit(12, "feet"),
  27029. weight: math.unit(35000, "lb"),
  27030. name: "Front",
  27031. image: {
  27032. source: "./media/characters/p0tat0/front.svg",
  27033. extra: 1065 / 921,
  27034. bottom: 55.7 / 1121.25
  27035. }
  27036. },
  27037. },
  27038. [
  27039. {
  27040. name: "Normal",
  27041. height: math.unit(12, "feet"),
  27042. default: true
  27043. },
  27044. ]
  27045. ))
  27046. characterMakers.push(() => makeCharacter(
  27047. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27048. {
  27049. side: {
  27050. height: math.unit(6.5, "feet"),
  27051. weight: math.unit(800, "lb"),
  27052. name: "Side",
  27053. image: {
  27054. source: "./media/characters/dusk/side.svg",
  27055. extra: 615 / 373,
  27056. bottom: 53 / 664
  27057. }
  27058. },
  27059. sitting: {
  27060. height: math.unit(7, "feet"),
  27061. weight: math.unit(800, "lb"),
  27062. name: "Sitting",
  27063. image: {
  27064. source: "./media/characters/dusk/sitting.svg",
  27065. extra: 753 / 425,
  27066. bottom: 33 / 774
  27067. }
  27068. },
  27069. head: {
  27070. height: math.unit(6.1, "feet"),
  27071. name: "Head",
  27072. image: {
  27073. source: "./media/characters/dusk/head.svg"
  27074. }
  27075. },
  27076. },
  27077. [
  27078. {
  27079. name: "Normal",
  27080. height: math.unit(7, "feet"),
  27081. default: true
  27082. },
  27083. ]
  27084. ))
  27085. characterMakers.push(() => makeCharacter(
  27086. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27087. {
  27088. front: {
  27089. height: math.unit(15, "feet"),
  27090. weight: math.unit(7000, "lb"),
  27091. name: "Front",
  27092. image: {
  27093. source: "./media/characters/jay-direwolf/front.svg",
  27094. extra: 1810 / 1732,
  27095. bottom: 66 / 1892
  27096. }
  27097. },
  27098. },
  27099. [
  27100. {
  27101. name: "Normal",
  27102. height: math.unit(15, "feet"),
  27103. default: true
  27104. },
  27105. ]
  27106. ))
  27107. characterMakers.push(() => makeCharacter(
  27108. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27109. {
  27110. front: {
  27111. height: math.unit(4 + 9 / 12, "feet"),
  27112. weight: math.unit(130, "lb"),
  27113. name: "Front",
  27114. image: {
  27115. source: "./media/characters/anchovie/front.svg",
  27116. extra: 382 / 350,
  27117. bottom: 25 / 409
  27118. }
  27119. },
  27120. back: {
  27121. height: math.unit(4 + 9 / 12, "feet"),
  27122. weight: math.unit(130, "lb"),
  27123. name: "Back",
  27124. image: {
  27125. source: "./media/characters/anchovie/back.svg",
  27126. extra: 385 / 352,
  27127. bottom: 16.6 / 402
  27128. }
  27129. },
  27130. frontDressed: {
  27131. height: math.unit(4 + 9 / 12, "feet"),
  27132. weight: math.unit(130, "lb"),
  27133. name: "Front (Dressed)",
  27134. image: {
  27135. source: "./media/characters/anchovie/front-dressed.svg",
  27136. extra: 382 / 350,
  27137. bottom: 25 / 409
  27138. }
  27139. },
  27140. backDressed: {
  27141. height: math.unit(4 + 9 / 12, "feet"),
  27142. weight: math.unit(130, "lb"),
  27143. name: "Back (Dressed)",
  27144. image: {
  27145. source: "./media/characters/anchovie/back-dressed.svg",
  27146. extra: 385 / 352,
  27147. bottom: 16.6 / 402
  27148. }
  27149. },
  27150. },
  27151. [
  27152. {
  27153. name: "Micro",
  27154. height: math.unit(6.4, "inches")
  27155. },
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(4 + 9 / 12, "feet"),
  27159. default: true
  27160. },
  27161. ]
  27162. ))
  27163. characterMakers.push(() => makeCharacter(
  27164. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27165. {
  27166. front: {
  27167. height: math.unit(2, "meters"),
  27168. weight: math.unit(180, "lb"),
  27169. name: "Front",
  27170. image: {
  27171. source: "./media/characters/acidrenamon/front.svg",
  27172. extra: 987 / 890,
  27173. bottom: 22.8 / 1009
  27174. }
  27175. },
  27176. back: {
  27177. height: math.unit(2, "meters"),
  27178. weight: math.unit(180, "lb"),
  27179. name: "Back",
  27180. image: {
  27181. source: "./media/characters/acidrenamon/back.svg",
  27182. extra: 983 / 891,
  27183. bottom: 8.4 / 992
  27184. }
  27185. },
  27186. head: {
  27187. height: math.unit(1.92, "feet"),
  27188. name: "Head",
  27189. image: {
  27190. source: "./media/characters/acidrenamon/head.svg"
  27191. }
  27192. },
  27193. rump: {
  27194. height: math.unit(1.72, "feet"),
  27195. name: "Rump",
  27196. image: {
  27197. source: "./media/characters/acidrenamon/rump.svg"
  27198. }
  27199. },
  27200. tail: {
  27201. height: math.unit(4.2, "feet"),
  27202. name: "Tail",
  27203. image: {
  27204. source: "./media/characters/acidrenamon/tail.svg"
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Normal",
  27211. height: math.unit(2, "meters"),
  27212. default: true
  27213. },
  27214. {
  27215. name: "Minimacro",
  27216. height: math.unit(7, "meters")
  27217. },
  27218. {
  27219. name: "Macro",
  27220. height: math.unit(200, "meters")
  27221. },
  27222. {
  27223. name: "Gigamacro",
  27224. height: math.unit(0.2, "earths")
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27230. {
  27231. front: {
  27232. height: math.unit(6, "feet"),
  27233. weight: math.unit(150, "lb"),
  27234. name: "Front",
  27235. image: {
  27236. source: "./media/characters/kenzie-lee/front.svg",
  27237. extra: 1525 / 1465,
  27238. bottom: 45 / 1570
  27239. }
  27240. },
  27241. side: {
  27242. height: math.unit(6, "feet"),
  27243. weight: math.unit(150, "lb"),
  27244. name: "Side",
  27245. image: {
  27246. source: "./media/characters/kenzie-lee/side.svg",
  27247. extra: 5505 / 5383,
  27248. bottom: 60 / 5573
  27249. }
  27250. },
  27251. paw: {
  27252. height: math.unit(0.57, "feet"),
  27253. name: "Paw",
  27254. image: {
  27255. source: "./media/characters/kenzie-lee/paw.svg"
  27256. }
  27257. },
  27258. },
  27259. [
  27260. {
  27261. name: "Normal",
  27262. height: math.unit(152, "feet"),
  27263. default: true
  27264. },
  27265. {
  27266. name: "Megamacro",
  27267. height: math.unit(7, "miles")
  27268. },
  27269. {
  27270. name: "Gigamacro",
  27271. height: math.unit(8000, "miles")
  27272. },
  27273. ]
  27274. ))
  27275. characterMakers.push(() => makeCharacter(
  27276. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27277. {
  27278. side: {
  27279. height: math.unit(6, "feet"),
  27280. weight: math.unit(150, "lb"),
  27281. name: "Side",
  27282. image: {
  27283. source: "./media/characters/withers/side.svg",
  27284. extra: 1830 / 1728,
  27285. bottom: 96 / 1927
  27286. }
  27287. },
  27288. front: {
  27289. height: math.unit(6, "feet"),
  27290. weight: math.unit(150, "lb"),
  27291. name: "Front",
  27292. image: {
  27293. source: "./media/characters/withers/front.svg",
  27294. extra: 1514 / 1438,
  27295. bottom: 118 / 1632
  27296. }
  27297. },
  27298. },
  27299. [
  27300. {
  27301. name: "Macro",
  27302. height: math.unit(168, "feet"),
  27303. default: true
  27304. },
  27305. {
  27306. name: "Megamacro",
  27307. height: math.unit(15, "miles")
  27308. }
  27309. ]
  27310. ))
  27311. characterMakers.push(() => makeCharacter(
  27312. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27313. {
  27314. front: {
  27315. height: math.unit(6 + 7 / 12, "feet"),
  27316. weight: math.unit(250, "lb"),
  27317. name: "Front",
  27318. image: {
  27319. source: "./media/characters/nemoskii/front.svg",
  27320. extra: 2270 / 1734,
  27321. bottom: 86 / 2354
  27322. }
  27323. },
  27324. back: {
  27325. height: math.unit(6 + 7 / 12, "feet"),
  27326. weight: math.unit(250, "lb"),
  27327. name: "Back",
  27328. image: {
  27329. source: "./media/characters/nemoskii/back.svg",
  27330. extra: 1845 / 1788,
  27331. bottom: 10.5 / 1852
  27332. }
  27333. },
  27334. head: {
  27335. height: math.unit(1.31, "feet"),
  27336. name: "Head",
  27337. image: {
  27338. source: "./media/characters/nemoskii/head.svg"
  27339. }
  27340. },
  27341. },
  27342. [
  27343. {
  27344. name: "Micro",
  27345. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27346. },
  27347. {
  27348. name: "Normal",
  27349. height: math.unit(6 + 7 / 12, "feet"),
  27350. default: true
  27351. },
  27352. {
  27353. name: "Macro",
  27354. height: math.unit((6 + 7 / 12) * 150, "feet")
  27355. },
  27356. {
  27357. name: "Macro+",
  27358. height: math.unit((6 + 7 / 12) * 500, "feet")
  27359. },
  27360. {
  27361. name: "Megamacro",
  27362. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27368. {
  27369. front: {
  27370. height: math.unit(1, "mile"),
  27371. weight: math.unit(265261.9, "lb"),
  27372. name: "Front",
  27373. image: {
  27374. source: "./media/characters/shui/front.svg",
  27375. extra: 1633 / 1564,
  27376. bottom: 91.5 / 1726
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Macro",
  27383. height: math.unit(1, "mile"),
  27384. default: true
  27385. },
  27386. ]
  27387. ))
  27388. characterMakers.push(() => makeCharacter(
  27389. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27390. {
  27391. front: {
  27392. height: math.unit(12 + 6 / 12, "feet"),
  27393. weight: math.unit(1342, "lb"),
  27394. name: "Front",
  27395. image: {
  27396. source: "./media/characters/arokh-takakura/front.svg",
  27397. extra: 1089 / 1043,
  27398. bottom: 77.4 / 1176.7
  27399. }
  27400. },
  27401. back: {
  27402. height: math.unit(12 + 6 / 12, "feet"),
  27403. weight: math.unit(1342, "lb"),
  27404. name: "Back",
  27405. image: {
  27406. source: "./media/characters/arokh-takakura/back.svg",
  27407. extra: 1046 / 1019,
  27408. bottom: 102 / 1150
  27409. }
  27410. },
  27411. },
  27412. [
  27413. {
  27414. name: "Big",
  27415. height: math.unit(12 + 6 / 12, "feet"),
  27416. default: true
  27417. },
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27422. {
  27423. front: {
  27424. height: math.unit(5 + 6 / 12, "feet"),
  27425. weight: math.unit(150, "lb"),
  27426. name: "Front",
  27427. image: {
  27428. source: "./media/characters/theo/front.svg",
  27429. extra: 1184 / 1131,
  27430. bottom: 7.4 / 1191
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Micro",
  27437. height: math.unit(5, "inches")
  27438. },
  27439. {
  27440. name: "Normal",
  27441. height: math.unit(5 + 6 / 12, "feet"),
  27442. default: true
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(5 + 9 / 12, "feet"),
  27451. weight: math.unit(130, "lb"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/cecelia-swift/front.svg",
  27455. extra: 502 / 484,
  27456. bottom: 23 / 523
  27457. }
  27458. },
  27459. back: {
  27460. height: math.unit(5 + 9 / 12, "feet"),
  27461. weight: math.unit(130, "lb"),
  27462. name: "Back",
  27463. image: {
  27464. source: "./media/characters/cecelia-swift/back.svg",
  27465. extra: 499 / 485,
  27466. bottom: 12 / 511
  27467. }
  27468. },
  27469. head: {
  27470. height: math.unit(0.90, "feet"),
  27471. name: "Head",
  27472. image: {
  27473. source: "./media/characters/cecelia-swift/head.svg"
  27474. }
  27475. },
  27476. rump: {
  27477. height: math.unit(1.75, "feet"),
  27478. name: "Rump",
  27479. image: {
  27480. source: "./media/characters/cecelia-swift/rump.svg"
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(5 + 9 / 12, "feet"),
  27488. default: true
  27489. },
  27490. {
  27491. name: "Big",
  27492. height: math.unit(50, "feet")
  27493. },
  27494. {
  27495. name: "Macro",
  27496. height: math.unit(100, "feet")
  27497. },
  27498. {
  27499. name: "Macro+",
  27500. height: math.unit(500, "feet")
  27501. },
  27502. {
  27503. name: "Macro++",
  27504. height: math.unit(1000, "feet")
  27505. },
  27506. ]
  27507. ))
  27508. characterMakers.push(() => makeCharacter(
  27509. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27510. {
  27511. front: {
  27512. height: math.unit(6, "feet"),
  27513. weight: math.unit(150, "lb"),
  27514. name: "Front",
  27515. image: {
  27516. source: "./media/characters/kaunan/front.svg",
  27517. extra: 2890 / 2523,
  27518. bottom: 49 / 2939
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Macro",
  27525. height: math.unit(150, "feet"),
  27526. default: true
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27532. {
  27533. front: {
  27534. height: math.unit(175, "cm"),
  27535. weight: math.unit(60, "kg"),
  27536. name: "Front",
  27537. image: {
  27538. source: "./media/characters/fei/front.svg",
  27539. extra: 1873/1723,
  27540. bottom: 53/1926
  27541. }
  27542. },
  27543. },
  27544. [
  27545. {
  27546. name: "Mortal",
  27547. height: math.unit(175, "cm")
  27548. },
  27549. {
  27550. name: "Normal",
  27551. height: math.unit(3500, "m"),
  27552. default: true
  27553. },
  27554. {
  27555. name: "Stroll",
  27556. height: math.unit(17.5, "km")
  27557. },
  27558. {
  27559. name: "Showoff",
  27560. height: math.unit(175, "km")
  27561. },
  27562. ]
  27563. ))
  27564. characterMakers.push(() => makeCharacter(
  27565. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27566. {
  27567. front: {
  27568. height: math.unit(7, "feet"),
  27569. weight: math.unit(1000, "kg"),
  27570. name: "Front",
  27571. image: {
  27572. source: "./media/characters/edrax/front.svg",
  27573. extra: 2838 / 2550,
  27574. bottom: 130 / 2968
  27575. }
  27576. },
  27577. },
  27578. [
  27579. {
  27580. name: "Small",
  27581. height: math.unit(7, "feet")
  27582. },
  27583. {
  27584. name: "Normal",
  27585. height: math.unit(1500, "meters")
  27586. },
  27587. {
  27588. name: "Mega",
  27589. height: math.unit(12000000, "km"),
  27590. default: true
  27591. },
  27592. {
  27593. name: "Megamacro",
  27594. height: math.unit(10600000, "lightyears")
  27595. },
  27596. {
  27597. name: "Hypermacro",
  27598. height: math.unit(256, "yottameters")
  27599. },
  27600. ]
  27601. ))
  27602. characterMakers.push(() => makeCharacter(
  27603. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27604. {
  27605. front: {
  27606. height: math.unit(10, "feet"),
  27607. weight: math.unit(750, "lb"),
  27608. name: "Front",
  27609. image: {
  27610. source: "./media/characters/clove/front.svg",
  27611. extra: 2031 / 1860,
  27612. bottom: 47.8 / 2080
  27613. }
  27614. },
  27615. back: {
  27616. height: math.unit(10, "feet"),
  27617. weight: math.unit(750, "lb"),
  27618. name: "Back",
  27619. image: {
  27620. source: "./media/characters/clove/back.svg",
  27621. extra: 2025 / 1859,
  27622. bottom: 46 / 2071
  27623. }
  27624. },
  27625. },
  27626. [
  27627. {
  27628. name: "Normal",
  27629. height: math.unit(10, "feet"),
  27630. default: true
  27631. },
  27632. ]
  27633. ))
  27634. characterMakers.push(() => makeCharacter(
  27635. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27636. {
  27637. front: {
  27638. height: math.unit(4, "feet"),
  27639. weight: math.unit(50, "lb"),
  27640. name: "Front",
  27641. image: {
  27642. source: "./media/characters/alex-rabbit/front.svg",
  27643. extra: 507 / 458,
  27644. bottom: 18.5 / 527
  27645. }
  27646. },
  27647. back: {
  27648. height: math.unit(4, "feet"),
  27649. weight: math.unit(50, "lb"),
  27650. name: "Back",
  27651. image: {
  27652. source: "./media/characters/alex-rabbit/back.svg",
  27653. extra: 502 / 460,
  27654. bottom: 18.9 / 521
  27655. }
  27656. },
  27657. },
  27658. [
  27659. {
  27660. name: "Normal",
  27661. height: math.unit(4, "feet"),
  27662. default: true
  27663. },
  27664. ]
  27665. ))
  27666. characterMakers.push(() => makeCharacter(
  27667. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27668. {
  27669. front: {
  27670. height: math.unit(1 + 3 / 12, "feet"),
  27671. weight: math.unit(80, "lb"),
  27672. name: "Front",
  27673. image: {
  27674. source: "./media/characters/zander-rose/front.svg",
  27675. extra: 916 / 797,
  27676. bottom: 17 / 933
  27677. }
  27678. },
  27679. back: {
  27680. height: math.unit(1 + 3 / 12, "feet"),
  27681. weight: math.unit(80, "lb"),
  27682. name: "Back",
  27683. image: {
  27684. source: "./media/characters/zander-rose/back.svg",
  27685. extra: 903 / 779,
  27686. bottom: 31 / 934
  27687. }
  27688. },
  27689. },
  27690. [
  27691. {
  27692. name: "Normal",
  27693. height: math.unit(1 + 3 / 12, "feet"),
  27694. default: true
  27695. },
  27696. ]
  27697. ))
  27698. characterMakers.push(() => makeCharacter(
  27699. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27700. {
  27701. anthro: {
  27702. height: math.unit(6, "feet"),
  27703. weight: math.unit(150, "lb"),
  27704. name: "Anthro",
  27705. image: {
  27706. source: "./media/characters/razz/anthro.svg",
  27707. extra: 1437 / 1343,
  27708. bottom: 48 / 1485
  27709. }
  27710. },
  27711. feral: {
  27712. height: math.unit(6, "feet"),
  27713. weight: math.unit(150, "lb"),
  27714. name: "Feral",
  27715. image: {
  27716. source: "./media/characters/razz/feral.svg",
  27717. extra: 2569 / 1385,
  27718. bottom: 95 / 2664
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Normal",
  27725. height: math.unit(6, "feet"),
  27726. default: true
  27727. },
  27728. ]
  27729. ))
  27730. characterMakers.push(() => makeCharacter(
  27731. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27732. {
  27733. front: {
  27734. height: math.unit(9 + 4 / 12, "feet"),
  27735. weight: math.unit(500, "lb"),
  27736. name: "Front",
  27737. image: {
  27738. source: "./media/characters/morrigan/front.svg",
  27739. extra: 2707 / 2579,
  27740. bottom: 156 / 2863
  27741. }
  27742. },
  27743. },
  27744. [
  27745. {
  27746. name: "Normal",
  27747. height: math.unit(9 + 4 / 12, "feet"),
  27748. default: true
  27749. },
  27750. ]
  27751. ))
  27752. characterMakers.push(() => makeCharacter(
  27753. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27754. {
  27755. front: {
  27756. height: math.unit(5, "stories"),
  27757. weight: math.unit(4000, "lb"),
  27758. name: "Front",
  27759. image: {
  27760. source: "./media/characters/jenene/front.svg",
  27761. extra: 1780 / 1710,
  27762. bottom: 57 / 1837
  27763. }
  27764. },
  27765. },
  27766. [
  27767. {
  27768. name: "Normal",
  27769. height: math.unit(5, "stories"),
  27770. default: true
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27776. {
  27777. taurSfw: {
  27778. height: math.unit(10, "meters"),
  27779. weight: math.unit(17500, "kg"),
  27780. name: "Taur",
  27781. image: {
  27782. source: "./media/characters/faey/taur-sfw.svg",
  27783. extra: 1200 / 968,
  27784. bottom: 41 / 1241
  27785. }
  27786. },
  27787. chestmaw: {
  27788. height: math.unit(2.01, "meters"),
  27789. name: "Chestmaw",
  27790. image: {
  27791. source: "./media/characters/faey/chestmaw.svg"
  27792. }
  27793. },
  27794. foot: {
  27795. height: math.unit(2.43, "meters"),
  27796. name: "Foot",
  27797. image: {
  27798. source: "./media/characters/faey/foot.svg"
  27799. }
  27800. },
  27801. jaws: {
  27802. height: math.unit(1.66, "meters"),
  27803. name: "Jaws",
  27804. image: {
  27805. source: "./media/characters/faey/jaws.svg"
  27806. }
  27807. },
  27808. tongues: {
  27809. height: math.unit(2.01, "meters"),
  27810. name: "Tongues",
  27811. image: {
  27812. source: "./media/characters/faey/tongues.svg"
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Small",
  27819. height: math.unit(10, "meters"),
  27820. default: true
  27821. },
  27822. {
  27823. name: "Big",
  27824. height: math.unit(500000, "km")
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27830. {
  27831. front: {
  27832. height: math.unit(7, "feet"),
  27833. weight: math.unit(275, "lb"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/roku/front.svg",
  27837. extra: 903 / 878,
  27838. bottom: 37 / 940
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Normal",
  27845. height: math.unit(7, "feet"),
  27846. default: true
  27847. },
  27848. {
  27849. name: "Macro",
  27850. height: math.unit(500, "feet")
  27851. },
  27852. {
  27853. name: "Megamacro",
  27854. height: math.unit(200, "miles")
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(6 + 2 / 12, "feet"),
  27863. weight: math.unit(150, "lb"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/lira/front.svg",
  27867. extra: 1727 / 1605,
  27868. bottom: 26 / 1753
  27869. }
  27870. },
  27871. back: {
  27872. height: math.unit(6 + 2 / 12, "feet"),
  27873. weight: math.unit(150, "lb"),
  27874. name: "Back",
  27875. image: {
  27876. source: "./media/characters/lira/back.svg",
  27877. extra: 1713/1621,
  27878. bottom: 20/1733
  27879. }
  27880. },
  27881. hand: {
  27882. height: math.unit(0.75, "feet"),
  27883. name: "Hand",
  27884. image: {
  27885. source: "./media/characters/lira/hand.svg"
  27886. }
  27887. },
  27888. maw: {
  27889. height: math.unit(0.65, "feet"),
  27890. name: "Maw",
  27891. image: {
  27892. source: "./media/characters/lira/maw.svg"
  27893. }
  27894. },
  27895. pawDigi: {
  27896. height: math.unit(1.6, "feet"),
  27897. name: "Paw Digi",
  27898. image: {
  27899. source: "./media/characters/lira/paw-digi.svg"
  27900. }
  27901. },
  27902. pawPlanti: {
  27903. height: math.unit(1.4, "feet"),
  27904. name: "Paw Planti",
  27905. image: {
  27906. source: "./media/characters/lira/paw-planti.svg"
  27907. }
  27908. },
  27909. },
  27910. [
  27911. {
  27912. name: "Normal",
  27913. height: math.unit(6 + 2 / 12, "feet"),
  27914. default: true
  27915. },
  27916. {
  27917. name: "Macro",
  27918. height: math.unit(100, "feet")
  27919. },
  27920. {
  27921. name: "Macro²",
  27922. height: math.unit(1600, "feet")
  27923. },
  27924. {
  27925. name: "Planetary",
  27926. height: math.unit(20, "earths")
  27927. },
  27928. ]
  27929. ))
  27930. characterMakers.push(() => makeCharacter(
  27931. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27932. {
  27933. front: {
  27934. height: math.unit(6, "feet"),
  27935. weight: math.unit(150, "lb"),
  27936. name: "Front",
  27937. image: {
  27938. source: "./media/characters/hadjet/front.svg",
  27939. extra: 1480 / 1346,
  27940. bottom: 26 / 1506
  27941. }
  27942. },
  27943. frontNsfw: {
  27944. height: math.unit(6, "feet"),
  27945. weight: math.unit(150, "lb"),
  27946. name: "Front (NSFW)",
  27947. image: {
  27948. source: "./media/characters/hadjet/front-nsfw.svg",
  27949. extra: 1440 / 1358,
  27950. bottom: 52 / 1492
  27951. }
  27952. },
  27953. },
  27954. [
  27955. {
  27956. name: "Macro",
  27957. height: math.unit(10, "stories"),
  27958. default: true
  27959. },
  27960. {
  27961. name: "Megamacro",
  27962. height: math.unit(1.5, "miles")
  27963. },
  27964. {
  27965. name: "Megamacro+",
  27966. height: math.unit(5, "miles")
  27967. },
  27968. ]
  27969. ))
  27970. characterMakers.push(() => makeCharacter(
  27971. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27972. {
  27973. side: {
  27974. height: math.unit(106, "feet"),
  27975. weight: math.unit(500, "tonnes"),
  27976. name: "Side",
  27977. image: {
  27978. source: "./media/characters/kodran/side.svg",
  27979. extra: 553 / 480,
  27980. bottom: 33 / 586
  27981. }
  27982. },
  27983. front: {
  27984. height: math.unit(132, "feet"),
  27985. weight: math.unit(500, "tonnes"),
  27986. name: "Front",
  27987. image: {
  27988. source: "./media/characters/kodran/front.svg",
  27989. extra: 667 / 643,
  27990. bottom: 42 / 709
  27991. }
  27992. },
  27993. flying: {
  27994. height: math.unit(350, "feet"),
  27995. weight: math.unit(500, "tonnes"),
  27996. name: "Flying",
  27997. image: {
  27998. source: "./media/characters/kodran/flying.svg"
  27999. }
  28000. },
  28001. foot: {
  28002. height: math.unit(33, "feet"),
  28003. name: "Foot",
  28004. image: {
  28005. source: "./media/characters/kodran/foot.svg"
  28006. }
  28007. },
  28008. footFront: {
  28009. height: math.unit(19, "feet"),
  28010. name: "Foot (Front)",
  28011. image: {
  28012. source: "./media/characters/kodran/foot-front.svg",
  28013. extra: 261 / 261,
  28014. bottom: 91 / 352
  28015. }
  28016. },
  28017. headFront: {
  28018. height: math.unit(53, "feet"),
  28019. name: "Head (Front)",
  28020. image: {
  28021. source: "./media/characters/kodran/head-front.svg"
  28022. }
  28023. },
  28024. headSide: {
  28025. height: math.unit(65, "feet"),
  28026. name: "Head (Side)",
  28027. image: {
  28028. source: "./media/characters/kodran/head-side.svg"
  28029. }
  28030. },
  28031. throat: {
  28032. height: math.unit(79, "feet"),
  28033. name: "Throat",
  28034. image: {
  28035. source: "./media/characters/kodran/throat.svg"
  28036. }
  28037. },
  28038. },
  28039. [
  28040. {
  28041. name: "Large",
  28042. height: math.unit(106, "feet"),
  28043. default: true
  28044. },
  28045. ]
  28046. ))
  28047. characterMakers.push(() => makeCharacter(
  28048. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28049. {
  28050. side: {
  28051. height: math.unit(11, "feet"),
  28052. weight: math.unit(150, "lb"),
  28053. name: "Side",
  28054. image: {
  28055. source: "./media/characters/pyxaron/side.svg",
  28056. extra: 305 / 195,
  28057. bottom: 17 / 322
  28058. }
  28059. },
  28060. },
  28061. [
  28062. {
  28063. name: "Normal",
  28064. height: math.unit(11, "feet"),
  28065. default: true
  28066. },
  28067. ]
  28068. ))
  28069. characterMakers.push(() => makeCharacter(
  28070. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28071. {
  28072. front: {
  28073. height: math.unit(6, "feet"),
  28074. weight: math.unit(150, "lb"),
  28075. name: "Front",
  28076. image: {
  28077. source: "./media/characters/meep/front.svg",
  28078. extra: 88 / 80,
  28079. bottom: 6 / 94
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Fun Sized",
  28086. height: math.unit(2, "inches"),
  28087. default: true
  28088. },
  28089. {
  28090. name: "Friend Sized",
  28091. height: math.unit(8, "inches")
  28092. },
  28093. ]
  28094. ))
  28095. characterMakers.push(() => makeCharacter(
  28096. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28097. {
  28098. front: {
  28099. height: math.unit(15, "feet"),
  28100. weight: math.unit(2500, "lb"),
  28101. name: "Front",
  28102. image: {
  28103. source: "./media/characters/holly-rabbit/front.svg",
  28104. extra: 1433 / 1233,
  28105. bottom: 125 / 1558
  28106. }
  28107. },
  28108. dick: {
  28109. height: math.unit(4.6, "feet"),
  28110. name: "Dick",
  28111. image: {
  28112. source: "./media/characters/holly-rabbit/dick.svg"
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(15, "feet"),
  28120. default: true
  28121. },
  28122. {
  28123. name: "Macro",
  28124. height: math.unit(250, "feet")
  28125. },
  28126. {
  28127. name: "Macro+",
  28128. height: math.unit(2500, "feet")
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28134. {
  28135. front: {
  28136. height: math.unit(3.02, "meters"),
  28137. weight: math.unit(500, "kg"),
  28138. name: "Front",
  28139. image: {
  28140. source: "./media/characters/drena/front.svg",
  28141. extra: 282 / 243,
  28142. bottom: 8 / 290
  28143. }
  28144. },
  28145. side: {
  28146. height: math.unit(3.02, "meters"),
  28147. weight: math.unit(500, "kg"),
  28148. name: "Side",
  28149. image: {
  28150. source: "./media/characters/drena/side.svg",
  28151. extra: 280 / 245,
  28152. bottom: 10 / 290
  28153. }
  28154. },
  28155. back: {
  28156. height: math.unit(3.02, "meters"),
  28157. weight: math.unit(500, "kg"),
  28158. name: "Back",
  28159. image: {
  28160. source: "./media/characters/drena/back.svg",
  28161. extra: 278 / 243,
  28162. bottom: 2 / 280
  28163. }
  28164. },
  28165. foot: {
  28166. height: math.unit(0.75, "meters"),
  28167. name: "Foot",
  28168. image: {
  28169. source: "./media/characters/drena/foot.svg"
  28170. }
  28171. },
  28172. maw: {
  28173. height: math.unit(0.82, "meters"),
  28174. name: "Maw",
  28175. image: {
  28176. source: "./media/characters/drena/maw.svg"
  28177. }
  28178. },
  28179. rump: {
  28180. height: math.unit(0.93, "meters"),
  28181. name: "Rump",
  28182. image: {
  28183. source: "./media/characters/drena/rump.svg"
  28184. }
  28185. },
  28186. },
  28187. [
  28188. {
  28189. name: "Normal",
  28190. height: math.unit(3.02, "meters"),
  28191. default: true
  28192. },
  28193. ]
  28194. ))
  28195. characterMakers.push(() => makeCharacter(
  28196. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28197. {
  28198. front: {
  28199. height: math.unit(6 + 4 / 12, "feet"),
  28200. weight: math.unit(250, "lb"),
  28201. name: "Front",
  28202. image: {
  28203. source: "./media/characters/remmyzilla/front.svg",
  28204. extra: 4033 / 3588,
  28205. bottom: 123 / 4156
  28206. }
  28207. },
  28208. back: {
  28209. height: math.unit(6 + 4 / 12, "feet"),
  28210. weight: math.unit(250, "lb"),
  28211. name: "Back",
  28212. image: {
  28213. source: "./media/characters/remmyzilla/back.svg",
  28214. extra: 2687 / 2555,
  28215. bottom: 48 / 2735
  28216. }
  28217. },
  28218. paw: {
  28219. height: math.unit(1.73, "feet"),
  28220. name: "Paw",
  28221. image: {
  28222. source: "./media/characters/remmyzilla/paw.svg"
  28223. }
  28224. },
  28225. maw: {
  28226. height: math.unit(1.73, "feet"),
  28227. name: "Maw",
  28228. image: {
  28229. source: "./media/characters/remmyzilla/maw.svg"
  28230. }
  28231. },
  28232. },
  28233. [
  28234. {
  28235. name: "Normal",
  28236. height: math.unit(6 + 4 / 12, "feet")
  28237. },
  28238. {
  28239. name: "Minimacro",
  28240. height: math.unit(12 + 8 / 12, "feet")
  28241. },
  28242. {
  28243. name: "Normal",
  28244. height: math.unit(640, "feet"),
  28245. default: true
  28246. },
  28247. {
  28248. name: "Megamacro",
  28249. height: math.unit(6400, "feet")
  28250. },
  28251. {
  28252. name: "Gigamacro",
  28253. height: math.unit(64000, "miles")
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(2.5, "meters"),
  28262. weight: math.unit(300, "lb"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/lawrence/front.svg",
  28266. extra: 357 / 335,
  28267. bottom: 30 / 387
  28268. }
  28269. },
  28270. back: {
  28271. height: math.unit(2.5, "meters"),
  28272. weight: math.unit(300, "lb"),
  28273. name: "Back",
  28274. image: {
  28275. source: "./media/characters/lawrence/back.svg",
  28276. extra: 357 / 338,
  28277. bottom: 16 / 373
  28278. }
  28279. },
  28280. head: {
  28281. height: math.unit(0.9, "meter"),
  28282. name: "Head",
  28283. image: {
  28284. source: "./media/characters/lawrence/head.svg"
  28285. }
  28286. },
  28287. maw: {
  28288. height: math.unit(0.7, "meter"),
  28289. name: "Maw",
  28290. image: {
  28291. source: "./media/characters/lawrence/maw.svg"
  28292. }
  28293. },
  28294. footBottom: {
  28295. height: math.unit(0.5, "meter"),
  28296. name: "Foot (Bottom)",
  28297. image: {
  28298. source: "./media/characters/lawrence/foot-bottom.svg"
  28299. }
  28300. },
  28301. footTop: {
  28302. height: math.unit(0.5, "meter"),
  28303. name: "Foot (Top)",
  28304. image: {
  28305. source: "./media/characters/lawrence/foot-top.svg"
  28306. }
  28307. },
  28308. },
  28309. [
  28310. {
  28311. name: "Normal",
  28312. height: math.unit(2.5, "meters"),
  28313. default: true
  28314. },
  28315. {
  28316. name: "Macro",
  28317. height: math.unit(95, "meters")
  28318. },
  28319. {
  28320. name: "Megamacro",
  28321. height: math.unit(150, "km")
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28327. {
  28328. front: {
  28329. height: math.unit(4.2, "meters"),
  28330. name: "Front",
  28331. image: {
  28332. source: "./media/characters/sydney/front.svg",
  28333. extra: 1323 / 1277,
  28334. bottom: 111 / 1434
  28335. }
  28336. },
  28337. },
  28338. [
  28339. {
  28340. name: "Normal",
  28341. height: math.unit(4.2, "meters"),
  28342. default: true
  28343. },
  28344. ]
  28345. ))
  28346. characterMakers.push(() => makeCharacter(
  28347. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28348. {
  28349. back: {
  28350. height: math.unit(201, "feet"),
  28351. name: "Back",
  28352. image: {
  28353. source: "./media/characters/jessica/back.svg",
  28354. extra: 273 / 259,
  28355. bottom: 7 / 280
  28356. }
  28357. },
  28358. },
  28359. [
  28360. {
  28361. name: "Normal",
  28362. height: math.unit(201, "feet"),
  28363. default: true
  28364. },
  28365. {
  28366. name: "Megamacro",
  28367. height: math.unit(8, "miles")
  28368. },
  28369. ]
  28370. ))
  28371. characterMakers.push(() => makeCharacter(
  28372. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28373. {
  28374. side: {
  28375. height: math.unit(320, "cm"),
  28376. name: "Side",
  28377. image: {
  28378. source: "./media/characters/victoria/side.svg",
  28379. extra: 778 / 346,
  28380. bottom: 56 / 834
  28381. }
  28382. },
  28383. maw: {
  28384. height: math.unit(5.9, "feet"),
  28385. name: "Maw",
  28386. image: {
  28387. source: "./media/characters/victoria/maw.svg"
  28388. }
  28389. },
  28390. },
  28391. [
  28392. {
  28393. name: "Normal",
  28394. height: math.unit(320, "cm"),
  28395. default: true
  28396. },
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28401. {
  28402. front: {
  28403. height: math.unit(5 + 6 / 12, "feet"),
  28404. name: "Front",
  28405. image: {
  28406. source: "./media/characters/cat/front.svg",
  28407. extra: 1374 / 1257,
  28408. bottom: 59 / 1433
  28409. }
  28410. },
  28411. back: {
  28412. height: math.unit(5 + 6 / 12, "feet"),
  28413. name: "Back",
  28414. image: {
  28415. source: "./media/characters/cat/back.svg",
  28416. extra: 1337 / 1226,
  28417. bottom: 34 / 1371
  28418. }
  28419. },
  28420. taur: {
  28421. height: math.unit(7, "feet"),
  28422. name: "Taur",
  28423. image: {
  28424. source: "./media/characters/cat/taur.svg",
  28425. extra: 1345 / 1231,
  28426. bottom: 66 / 1411
  28427. }
  28428. },
  28429. lucario: {
  28430. height: math.unit(4, "feet"),
  28431. name: "Lucario",
  28432. image: {
  28433. source: "./media/characters/cat/lucario.svg",
  28434. extra: 1470 / 1318,
  28435. bottom: 65 / 1535
  28436. }
  28437. },
  28438. megaLucario: {
  28439. height: math.unit(4, "feet"),
  28440. name: "Mega Lucario",
  28441. image: {
  28442. source: "./media/characters/cat/mega-lucario.svg",
  28443. extra: 1515 / 1319,
  28444. bottom: 63 / 1578
  28445. }
  28446. },
  28447. nickit: {
  28448. height: math.unit(2, "feet"),
  28449. name: "Nickit",
  28450. image: {
  28451. source: "./media/characters/cat/nickit.svg",
  28452. extra: 1980 / 1585,
  28453. bottom: 102 / 2082
  28454. }
  28455. },
  28456. lopunnyFront: {
  28457. height: math.unit(5, "feet"),
  28458. name: "Lopunny (Front)",
  28459. image: {
  28460. source: "./media/characters/cat/lopunny-front.svg",
  28461. extra: 1782 / 1469,
  28462. bottom: 38 / 1820
  28463. }
  28464. },
  28465. lopunnyBack: {
  28466. height: math.unit(5, "feet"),
  28467. name: "Lopunny (Back)",
  28468. image: {
  28469. source: "./media/characters/cat/lopunny-back.svg",
  28470. extra: 1660 / 1490,
  28471. bottom: 25 / 1685
  28472. }
  28473. },
  28474. },
  28475. [
  28476. {
  28477. name: "Really small",
  28478. height: math.unit(1, "nm")
  28479. },
  28480. {
  28481. name: "Micro",
  28482. height: math.unit(5, "inches")
  28483. },
  28484. {
  28485. name: "Normal",
  28486. height: math.unit(5 + 6 / 12, "feet"),
  28487. default: true
  28488. },
  28489. {
  28490. name: "Macro",
  28491. height: math.unit(50, "feet")
  28492. },
  28493. {
  28494. name: "Macro+",
  28495. height: math.unit(150, "feet")
  28496. },
  28497. {
  28498. name: "Megamacro",
  28499. height: math.unit(100, "miles")
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28505. {
  28506. front: {
  28507. height: math.unit(63.4, "meters"),
  28508. weight: math.unit(3.28349e+6, "kilograms"),
  28509. name: "Front",
  28510. image: {
  28511. source: "./media/characters/kirina-violet/front.svg",
  28512. extra: 2812 / 2725,
  28513. bottom: 0 / 2812
  28514. }
  28515. },
  28516. back: {
  28517. height: math.unit(63.4, "meters"),
  28518. weight: math.unit(3.28349e+6, "kilograms"),
  28519. name: "Back",
  28520. image: {
  28521. source: "./media/characters/kirina-violet/back.svg",
  28522. extra: 2812 / 2725,
  28523. bottom: 0 / 2812
  28524. }
  28525. },
  28526. mouth: {
  28527. height: math.unit(4.35, "meters"),
  28528. name: "Mouth",
  28529. image: {
  28530. source: "./media/characters/kirina-violet/mouth.svg"
  28531. }
  28532. },
  28533. paw: {
  28534. height: math.unit(5.6, "meters"),
  28535. name: "Paw",
  28536. image: {
  28537. source: "./media/characters/kirina-violet/paw.svg"
  28538. }
  28539. },
  28540. tail: {
  28541. height: math.unit(18, "meters"),
  28542. name: "Tail",
  28543. image: {
  28544. source: "./media/characters/kirina-violet/tail.svg"
  28545. }
  28546. },
  28547. },
  28548. [
  28549. {
  28550. name: "Macro",
  28551. height: math.unit(63.4, "meters"),
  28552. default: true
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(75, "feet"),
  28561. name: "Front",
  28562. image: {
  28563. source: "./media/characters/cat-gigachu/front.svg",
  28564. extra: 1239/1027,
  28565. bottom: 32/1271
  28566. }
  28567. },
  28568. back: {
  28569. height: math.unit(75, "feet"),
  28570. name: "Back",
  28571. image: {
  28572. source: "./media/characters/cat-gigachu/back.svg",
  28573. extra: 1229/1030,
  28574. bottom: 9/1238
  28575. }
  28576. },
  28577. },
  28578. [
  28579. {
  28580. name: "Dynamax",
  28581. height: math.unit(75, "feet"),
  28582. default: true
  28583. },
  28584. ]
  28585. ))
  28586. characterMakers.push(() => makeCharacter(
  28587. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28588. {
  28589. front: {
  28590. height: math.unit(6, "feet"),
  28591. weight: math.unit(150, "lb"),
  28592. name: "Front",
  28593. image: {
  28594. source: "./media/characters/sfaiyan/front.svg",
  28595. extra: 999 / 978,
  28596. bottom: 5 / 1004
  28597. }
  28598. },
  28599. },
  28600. [
  28601. {
  28602. name: "Normal",
  28603. height: math.unit(1.82, "meters")
  28604. },
  28605. {
  28606. name: "Giant",
  28607. height: math.unit(2.27, "km"),
  28608. default: true
  28609. },
  28610. ]
  28611. ))
  28612. characterMakers.push(() => makeCharacter(
  28613. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28614. {
  28615. front: {
  28616. height: math.unit(179, "cm"),
  28617. weight: math.unit(100, "kg"),
  28618. name: "Front",
  28619. image: {
  28620. source: "./media/characters/raunehkeli/front.svg",
  28621. extra: 1934 / 1926,
  28622. bottom: 0 / 1934
  28623. }
  28624. },
  28625. },
  28626. [
  28627. {
  28628. name: "Normal",
  28629. height: math.unit(179, "cm")
  28630. },
  28631. {
  28632. name: "Maximum",
  28633. height: math.unit(575, "meters"),
  28634. default: true
  28635. },
  28636. ]
  28637. ))
  28638. characterMakers.push(() => makeCharacter(
  28639. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28640. {
  28641. front: {
  28642. height: math.unit(6, "feet"),
  28643. weight: math.unit(150, "lb"),
  28644. name: "Front",
  28645. image: {
  28646. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28647. extra: 2625 / 2518,
  28648. bottom: 60 / 2685
  28649. }
  28650. },
  28651. },
  28652. [
  28653. {
  28654. name: "Normal",
  28655. height: math.unit(6 + 2 / 12, "feet")
  28656. },
  28657. {
  28658. name: "Macro",
  28659. height: math.unit(1180, "feet"),
  28660. default: true
  28661. },
  28662. ]
  28663. ))
  28664. characterMakers.push(() => makeCharacter(
  28665. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28666. {
  28667. front: {
  28668. height: math.unit(5 + 6 / 12, "feet"),
  28669. weight: math.unit(108, "lb"),
  28670. name: "Front",
  28671. image: {
  28672. source: "./media/characters/lilith-zott/front.svg",
  28673. extra: 2510 / 2238,
  28674. bottom: 100 / 2610
  28675. }
  28676. },
  28677. frontDressed: {
  28678. height: math.unit(5 + 6 / 12, "feet"),
  28679. weight: math.unit(108, "lb"),
  28680. name: "Front (Dressed)",
  28681. image: {
  28682. source: "./media/characters/lilith-zott/front-dressed.svg",
  28683. extra: 2510 / 2238,
  28684. bottom: 100 / 2610
  28685. }
  28686. },
  28687. },
  28688. [
  28689. {
  28690. name: "Normal",
  28691. height: math.unit(5 + 6 / 12, "feet")
  28692. },
  28693. {
  28694. name: "Macro",
  28695. height: math.unit(1030, "feet"),
  28696. default: true
  28697. },
  28698. ]
  28699. ))
  28700. characterMakers.push(() => makeCharacter(
  28701. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28702. {
  28703. front: {
  28704. height: math.unit(6, "feet"),
  28705. weight: math.unit(150, "lb"),
  28706. name: "Front",
  28707. image: {
  28708. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28709. extra: 2567 / 2435,
  28710. bottom: 39 / 2606
  28711. }
  28712. },
  28713. frontSuper: {
  28714. height: math.unit(6, "feet"),
  28715. name: "Front (Super)",
  28716. image: {
  28717. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28718. extra: 2567 / 2435,
  28719. bottom: 39 / 2606
  28720. }
  28721. },
  28722. },
  28723. [
  28724. {
  28725. name: "Normal",
  28726. height: math.unit(5 + 10 / 12, "feet")
  28727. },
  28728. {
  28729. name: "Macro",
  28730. height: math.unit(1100, "feet"),
  28731. default: true
  28732. },
  28733. ]
  28734. ))
  28735. characterMakers.push(() => makeCharacter(
  28736. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28737. {
  28738. front: {
  28739. height: math.unit(100, "miles"),
  28740. name: "Front",
  28741. image: {
  28742. source: "./media/characters/sona/front.svg",
  28743. extra: 2433 / 2201,
  28744. bottom: 53 / 2486
  28745. }
  28746. },
  28747. foot: {
  28748. height: math.unit(16.1, "miles"),
  28749. name: "Foot",
  28750. image: {
  28751. source: "./media/characters/sona/foot.svg"
  28752. }
  28753. },
  28754. },
  28755. [
  28756. {
  28757. name: "Macro",
  28758. height: math.unit(100, "miles"),
  28759. default: true
  28760. },
  28761. ]
  28762. ))
  28763. characterMakers.push(() => makeCharacter(
  28764. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28765. {
  28766. front: {
  28767. height: math.unit(6, "feet"),
  28768. weight: math.unit(150, "lb"),
  28769. name: "Front",
  28770. image: {
  28771. source: "./media/characters/bailey/front.svg",
  28772. extra: 1778 / 1724,
  28773. bottom: 30 / 1808
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Micro",
  28780. height: math.unit(4, "inches")
  28781. },
  28782. {
  28783. name: "Normal",
  28784. height: math.unit(5 + 5 / 12, "feet"),
  28785. default: true
  28786. },
  28787. {
  28788. name: "Macro",
  28789. height: math.unit(250, "feet")
  28790. },
  28791. {
  28792. name: "Megamacro",
  28793. height: math.unit(100, "miles")
  28794. },
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28799. {
  28800. front: {
  28801. height: math.unit(5 + 2 / 12, "feet"),
  28802. weight: math.unit(120, "lb"),
  28803. name: "Front",
  28804. image: {
  28805. source: "./media/characters/snaps/front.svg",
  28806. extra: 2370 / 2177,
  28807. bottom: 48 / 2418
  28808. }
  28809. },
  28810. back: {
  28811. height: math.unit(5 + 2 / 12, "feet"),
  28812. weight: math.unit(120, "lb"),
  28813. name: "Back",
  28814. image: {
  28815. source: "./media/characters/snaps/back.svg",
  28816. extra: 2408 / 2258,
  28817. bottom: 15 / 2423
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Micro",
  28824. height: math.unit(9, "inches")
  28825. },
  28826. {
  28827. name: "Normal",
  28828. height: math.unit(5 + 2 / 12, "feet"),
  28829. default: true
  28830. },
  28831. {
  28832. name: "Mini Macro",
  28833. height: math.unit(10, "feet")
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28839. {
  28840. front: {
  28841. height: math.unit(1.8, "meters"),
  28842. weight: math.unit(85, "kg"),
  28843. name: "Front",
  28844. image: {
  28845. source: "./media/characters/azteck/front.svg",
  28846. extra: 2815 / 2625,
  28847. bottom: 89 / 2904
  28848. }
  28849. },
  28850. back: {
  28851. height: math.unit(1.8, "meters"),
  28852. weight: math.unit(85, "kg"),
  28853. name: "Back",
  28854. image: {
  28855. source: "./media/characters/azteck/back.svg",
  28856. extra: 2856 / 2648,
  28857. bottom: 85 / 2941
  28858. }
  28859. },
  28860. frontDressed: {
  28861. height: math.unit(1.8, "meters"),
  28862. weight: math.unit(85, "kg"),
  28863. name: "Front (Dressed)",
  28864. image: {
  28865. source: "./media/characters/azteck/front-dressed.svg",
  28866. extra: 2147 / 2003,
  28867. bottom: 68 / 2215
  28868. }
  28869. },
  28870. head: {
  28871. height: math.unit(0.47, "meters"),
  28872. weight: math.unit(85, "kg"),
  28873. name: "Head",
  28874. image: {
  28875. source: "./media/characters/azteck/head.svg"
  28876. }
  28877. },
  28878. },
  28879. [
  28880. {
  28881. name: "Bite sized",
  28882. height: math.unit(16, "cm")
  28883. },
  28884. {
  28885. name: "Normal",
  28886. height: math.unit(1.8, "meters"),
  28887. default: true
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28893. {
  28894. front: {
  28895. height: math.unit(6, "feet"),
  28896. weight: math.unit(150, "lb"),
  28897. name: "Front",
  28898. image: {
  28899. source: "./media/characters/pidge/front.svg",
  28900. extra: 620 / 588,
  28901. bottom: 9 / 629
  28902. }
  28903. },
  28904. back: {
  28905. height: math.unit(6, "feet"),
  28906. weight: math.unit(150, "lb"),
  28907. name: "Back",
  28908. image: {
  28909. source: "./media/characters/pidge/back.svg",
  28910. extra: 620 / 588,
  28911. bottom: 9 / 629
  28912. }
  28913. },
  28914. },
  28915. [
  28916. {
  28917. name: "Macro",
  28918. height: math.unit(1, "mile"),
  28919. default: true
  28920. },
  28921. ]
  28922. ))
  28923. characterMakers.push(() => makeCharacter(
  28924. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28925. {
  28926. front: {
  28927. height: math.unit(6, "feet"),
  28928. weight: math.unit(150, "lb"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/en/front.svg",
  28932. extra: 1697 / 1563,
  28933. bottom: 103 / 1800
  28934. }
  28935. },
  28936. back: {
  28937. height: math.unit(6, "feet"),
  28938. weight: math.unit(150, "lb"),
  28939. name: "Back",
  28940. image: {
  28941. source: "./media/characters/en/back.svg",
  28942. extra: 1700 / 1570,
  28943. bottom: 51 / 1751
  28944. }
  28945. },
  28946. frontDressed: {
  28947. height: math.unit(6, "feet"),
  28948. weight: math.unit(150, "lb"),
  28949. name: "Front (Dressed)",
  28950. image: {
  28951. source: "./media/characters/en/front-dressed.svg",
  28952. extra: 1697 / 1563,
  28953. bottom: 103 / 1800
  28954. }
  28955. },
  28956. backDressed: {
  28957. height: math.unit(6, "feet"),
  28958. weight: math.unit(150, "lb"),
  28959. name: "Back (Dressed)",
  28960. image: {
  28961. source: "./media/characters/en/back-dressed.svg",
  28962. extra: 1700 / 1570,
  28963. bottom: 51 / 1751
  28964. }
  28965. },
  28966. },
  28967. [
  28968. {
  28969. name: "Macro",
  28970. height: math.unit(210, "feet"),
  28971. default: true
  28972. },
  28973. ]
  28974. ))
  28975. characterMakers.push(() => makeCharacter(
  28976. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28977. {
  28978. front: {
  28979. height: math.unit(6, "feet"),
  28980. weight: math.unit(150, "lb"),
  28981. name: "Front",
  28982. image: {
  28983. source: "./media/characters/haze-orris/front.svg",
  28984. extra: 3975 / 3525,
  28985. bottom: 137 / 4112
  28986. }
  28987. },
  28988. },
  28989. [
  28990. {
  28991. name: "Micro",
  28992. height: math.unit(150, "mm"),
  28993. default: true
  28994. },
  28995. ]
  28996. ))
  28997. characterMakers.push(() => makeCharacter(
  28998. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28999. {
  29000. front: {
  29001. height: math.unit(6, "feet"),
  29002. weight: math.unit(150, "lb"),
  29003. name: "Front",
  29004. image: {
  29005. source: "./media/characters/casselene-yaro/front.svg",
  29006. extra: 4721 / 4541,
  29007. bottom: 82 / 4803
  29008. }
  29009. },
  29010. back: {
  29011. height: math.unit(6, "feet"),
  29012. weight: math.unit(150, "lb"),
  29013. name: "Back",
  29014. image: {
  29015. source: "./media/characters/casselene-yaro/back.svg",
  29016. extra: 4569 / 4377,
  29017. bottom: 69 / 4638
  29018. }
  29019. },
  29020. frontDressed: {
  29021. height: math.unit(6, "feet"),
  29022. weight: math.unit(150, "lb"),
  29023. name: "Front-dressed",
  29024. image: {
  29025. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29026. extra: 4721 / 4541,
  29027. bottom: 82 / 4803
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Macro",
  29034. height: math.unit(190, "feet"),
  29035. default: true
  29036. },
  29037. ]
  29038. ))
  29039. characterMakers.push(() => makeCharacter(
  29040. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29041. {
  29042. front: {
  29043. height: math.unit(6, "feet"),
  29044. weight: math.unit(150, "lb"),
  29045. name: "Front",
  29046. image: {
  29047. source: "./media/characters/myra-rue-delore/front.svg",
  29048. extra: 1340 / 1308,
  29049. bottom: 67 / 1407
  29050. }
  29051. },
  29052. back: {
  29053. height: math.unit(6, "feet"),
  29054. weight: math.unit(150, "lb"),
  29055. name: "Back",
  29056. image: {
  29057. source: "./media/characters/myra-rue-delore/back.svg",
  29058. extra: 1341 / 1310,
  29059. bottom: 40 / 1381
  29060. }
  29061. },
  29062. frontDressed: {
  29063. height: math.unit(6, "feet"),
  29064. weight: math.unit(150, "lb"),
  29065. name: "Front (Dressed)",
  29066. image: {
  29067. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29068. extra: 1340 / 1308,
  29069. bottom: 67 / 1407
  29070. }
  29071. },
  29072. },
  29073. [
  29074. {
  29075. name: "Macro",
  29076. height: math.unit(150, "feet"),
  29077. default: true
  29078. },
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29083. {
  29084. front: {
  29085. height: math.unit(10, "feet"),
  29086. weight: math.unit(15015, "lb"),
  29087. name: "Front",
  29088. image: {
  29089. source: "./media/characters/fem!plat/front.svg",
  29090. extra: 2799 / 2604,
  29091. bottom: 149 / 2948
  29092. }
  29093. },
  29094. },
  29095. [
  29096. {
  29097. name: "Normal",
  29098. height: math.unit(10, "feet"),
  29099. default: true
  29100. },
  29101. {
  29102. name: "Macro",
  29103. height: math.unit(100, "feet")
  29104. },
  29105. {
  29106. name: "Megamacro",
  29107. height: math.unit(1000, "feet")
  29108. },
  29109. ]
  29110. ))
  29111. characterMakers.push(() => makeCharacter(
  29112. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29113. {
  29114. front: {
  29115. height: math.unit(15 + 5 / 12, "feet"),
  29116. weight: math.unit(4600, "lb"),
  29117. name: "Front",
  29118. image: {
  29119. source: "./media/characters/neapolitan-ananassa/front.svg",
  29120. extra: 2903 / 2736,
  29121. bottom: 0 / 2903
  29122. }
  29123. },
  29124. side: {
  29125. height: math.unit(15 + 5 / 12, "feet"),
  29126. weight: math.unit(4600, "lb"),
  29127. name: "Side",
  29128. image: {
  29129. source: "./media/characters/neapolitan-ananassa/side.svg",
  29130. extra: 2925 / 2719,
  29131. bottom: 0 / 2925
  29132. }
  29133. },
  29134. back: {
  29135. height: math.unit(15 + 5 / 12, "feet"),
  29136. weight: math.unit(4600, "lb"),
  29137. name: "Back",
  29138. image: {
  29139. source: "./media/characters/neapolitan-ananassa/back.svg",
  29140. extra: 2903 / 2736,
  29141. bottom: 0 / 2903
  29142. }
  29143. },
  29144. },
  29145. [
  29146. {
  29147. name: "Normal",
  29148. height: math.unit(15 + 5 / 12, "feet"),
  29149. default: true
  29150. },
  29151. {
  29152. name: "Post-Millenium",
  29153. height: math.unit(35 + 5 / 12, "feet")
  29154. },
  29155. {
  29156. name: "Post-Era",
  29157. height: math.unit(450 + 5 / 12, "feet")
  29158. },
  29159. ]
  29160. ))
  29161. characterMakers.push(() => makeCharacter(
  29162. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29163. {
  29164. front: {
  29165. height: math.unit(300, "meters"),
  29166. weight: math.unit(125000, "tonnes"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/pazuzu/front.svg",
  29170. extra: 877 / 794,
  29171. bottom: 47 / 924
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Macro",
  29178. height: math.unit(300, "meters"),
  29179. default: true
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29185. {
  29186. side: {
  29187. height: math.unit(10 + 7 / 12, "feet"),
  29188. weight: math.unit(2.5, "tons"),
  29189. name: "Side",
  29190. image: {
  29191. source: "./media/characters/aasha/side.svg",
  29192. extra: 1345 / 1245,
  29193. bottom: 111 / 1456
  29194. }
  29195. },
  29196. back: {
  29197. height: math.unit(10 + 7 / 12, "feet"),
  29198. weight: math.unit(2.5, "tons"),
  29199. name: "Back",
  29200. image: {
  29201. source: "./media/characters/aasha/back.svg",
  29202. extra: 1133 / 1057,
  29203. bottom: 257 / 1390
  29204. }
  29205. },
  29206. },
  29207. [
  29208. {
  29209. name: "Normal",
  29210. height: math.unit(10 + 7 / 12, "feet"),
  29211. default: true
  29212. },
  29213. ]
  29214. ))
  29215. characterMakers.push(() => makeCharacter(
  29216. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29217. {
  29218. front: {
  29219. height: math.unit(6 + 3 / 12, "feet"),
  29220. name: "Front",
  29221. image: {
  29222. source: "./media/characters/nevan/front.svg",
  29223. extra: 704 / 704,
  29224. bottom: 28 / 732
  29225. }
  29226. },
  29227. back: {
  29228. height: math.unit(6 + 3 / 12, "feet"),
  29229. name: "Back",
  29230. image: {
  29231. source: "./media/characters/nevan/back.svg",
  29232. extra: 714 / 714,
  29233. bottom: 21 / 735
  29234. }
  29235. },
  29236. frontFlaccid: {
  29237. height: math.unit(6 + 3 / 12, "feet"),
  29238. name: "Front (Flaccid)",
  29239. image: {
  29240. source: "./media/characters/nevan/front-flaccid.svg",
  29241. extra: 704 / 704,
  29242. bottom: 28 / 732
  29243. }
  29244. },
  29245. frontErect: {
  29246. height: math.unit(6 + 3 / 12, "feet"),
  29247. name: "Front (Erect)",
  29248. image: {
  29249. source: "./media/characters/nevan/front-erect.svg",
  29250. extra: 704 / 704,
  29251. bottom: 28 / 732
  29252. }
  29253. },
  29254. backFlaccid: {
  29255. height: math.unit(6 + 3 / 12, "feet"),
  29256. name: "Back (Flaccid)",
  29257. image: {
  29258. source: "./media/characters/nevan/back-flaccid.svg",
  29259. extra: 714 / 714,
  29260. bottom: 21 / 735
  29261. }
  29262. },
  29263. },
  29264. [
  29265. {
  29266. name: "Normal",
  29267. height: math.unit(6 + 3 / 12, "feet"),
  29268. default: true
  29269. },
  29270. ]
  29271. ))
  29272. characterMakers.push(() => makeCharacter(
  29273. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29274. {
  29275. front: {
  29276. height: math.unit(4, "feet"),
  29277. name: "Front",
  29278. image: {
  29279. source: "./media/characters/arhan/front.svg",
  29280. extra: 3368 / 3133,
  29281. bottom: 0 / 3368
  29282. }
  29283. },
  29284. side: {
  29285. height: math.unit(4, "feet"),
  29286. name: "Side",
  29287. image: {
  29288. source: "./media/characters/arhan/side.svg",
  29289. extra: 3347 / 3105,
  29290. bottom: 0 / 3347
  29291. }
  29292. },
  29293. tongue: {
  29294. height: math.unit(1.42, "feet"),
  29295. name: "Tongue",
  29296. image: {
  29297. source: "./media/characters/arhan/tongue.svg"
  29298. }
  29299. },
  29300. head: {
  29301. height: math.unit(0.85, "feet"),
  29302. name: "Head",
  29303. image: {
  29304. source: "./media/characters/arhan/head.svg"
  29305. }
  29306. },
  29307. },
  29308. [
  29309. {
  29310. name: "Normal",
  29311. height: math.unit(4, "feet"),
  29312. default: true
  29313. },
  29314. ]
  29315. ))
  29316. characterMakers.push(() => makeCharacter(
  29317. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29318. {
  29319. front: {
  29320. height: math.unit(5 + 7.5 / 12, "feet"),
  29321. weight: math.unit(120, "lb"),
  29322. name: "Front",
  29323. image: {
  29324. source: "./media/characters/digi-duncan/front.svg",
  29325. extra: 330 / 326,
  29326. bottom: 16 / 346
  29327. }
  29328. },
  29329. side: {
  29330. height: math.unit(5 + 7.5 / 12, "feet"),
  29331. weight: math.unit(120, "lb"),
  29332. name: "Side",
  29333. image: {
  29334. source: "./media/characters/digi-duncan/side.svg",
  29335. extra: 341 / 337,
  29336. bottom: 1 / 342
  29337. }
  29338. },
  29339. back: {
  29340. height: math.unit(5 + 7.5 / 12, "feet"),
  29341. weight: math.unit(120, "lb"),
  29342. name: "Back",
  29343. image: {
  29344. source: "./media/characters/digi-duncan/back.svg",
  29345. extra: 330 / 326,
  29346. bottom: 12 / 342
  29347. }
  29348. },
  29349. },
  29350. [
  29351. {
  29352. name: "Speck",
  29353. height: math.unit(0.25, "mm")
  29354. },
  29355. {
  29356. name: "Micro",
  29357. height: math.unit(5, "mm")
  29358. },
  29359. {
  29360. name: "Tiny",
  29361. height: math.unit(0.5, "inches"),
  29362. default: true
  29363. },
  29364. {
  29365. name: "Human",
  29366. height: math.unit(5 + 7.5 / 12, "feet")
  29367. },
  29368. {
  29369. name: "Minigiant",
  29370. height: math.unit(8 + 5.25, "feet")
  29371. },
  29372. {
  29373. name: "Giant",
  29374. height: math.unit(2000, "feet")
  29375. },
  29376. {
  29377. name: "Mega",
  29378. height: math.unit(371.1, "miles")
  29379. },
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29384. {
  29385. front: {
  29386. height: math.unit(2, "meters"),
  29387. weight: math.unit(350, "kg"),
  29388. name: "Front",
  29389. image: {
  29390. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29391. extra: 898 / 838,
  29392. bottom: 9 / 907
  29393. }
  29394. },
  29395. },
  29396. [
  29397. {
  29398. name: "Micro",
  29399. height: math.unit(8, "meters")
  29400. },
  29401. {
  29402. name: "Normal",
  29403. height: math.unit(50, "meters"),
  29404. default: true
  29405. },
  29406. {
  29407. name: "Macro",
  29408. height: math.unit(500, "meters")
  29409. },
  29410. ]
  29411. ))
  29412. characterMakers.push(() => makeCharacter(
  29413. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29414. {
  29415. front: {
  29416. height: math.unit(6 + 6 / 12, "feet"),
  29417. name: "Front",
  29418. image: {
  29419. source: "./media/characters/khardesh/front.svg",
  29420. extra: 888 / 797,
  29421. bottom: 25 / 913
  29422. }
  29423. },
  29424. },
  29425. [
  29426. {
  29427. name: "Normal",
  29428. height: math.unit(6 + 6 / 12, "feet"),
  29429. default: true
  29430. },
  29431. {
  29432. name: "Normal+",
  29433. height: math.unit(4, "meters")
  29434. },
  29435. {
  29436. name: "Macro",
  29437. height: math.unit(50, "meters")
  29438. },
  29439. {
  29440. name: "Macro+",
  29441. height: math.unit(100, "meters")
  29442. },
  29443. {
  29444. name: "Megamacro",
  29445. height: math.unit(20, "km")
  29446. },
  29447. ]
  29448. ))
  29449. characterMakers.push(() => makeCharacter(
  29450. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29451. {
  29452. front: {
  29453. height: math.unit(6, "feet"),
  29454. weight: math.unit(150, "lb"),
  29455. name: "Front",
  29456. image: {
  29457. source: "./media/characters/kosho/front.svg",
  29458. extra: 1847 / 1847,
  29459. bottom: 86 / 1933
  29460. }
  29461. },
  29462. },
  29463. [
  29464. {
  29465. name: "Second-stage micro",
  29466. height: math.unit(0.5, "inches")
  29467. },
  29468. {
  29469. name: "First-stage micro",
  29470. height: math.unit(6, "inches")
  29471. },
  29472. {
  29473. name: "Normal",
  29474. height: math.unit(6, "feet"),
  29475. default: true
  29476. },
  29477. {
  29478. name: "First-stage macro",
  29479. height: math.unit(72, "feet")
  29480. },
  29481. {
  29482. name: "Second-stage macro",
  29483. height: math.unit(864, "feet")
  29484. },
  29485. ]
  29486. ))
  29487. characterMakers.push(() => makeCharacter(
  29488. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29489. {
  29490. normal: {
  29491. height: math.unit(4 + 6 / 12, "feet"),
  29492. name: "Normal",
  29493. image: {
  29494. source: "./media/characters/hydra/normal.svg",
  29495. extra: 2833 / 2634,
  29496. bottom: 68 / 2901
  29497. }
  29498. },
  29499. smol: {
  29500. height: math.unit(0.705, "inches"),
  29501. name: "Smol",
  29502. image: {
  29503. source: "./media/characters/hydra/smol.svg",
  29504. extra: 2715 / 2540,
  29505. bottom: 0 / 2715
  29506. }
  29507. },
  29508. },
  29509. [
  29510. {
  29511. name: "Normal",
  29512. height: math.unit(4 + 6 / 12, "feet"),
  29513. default: true
  29514. }
  29515. ]
  29516. ))
  29517. characterMakers.push(() => makeCharacter(
  29518. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29519. {
  29520. front: {
  29521. height: math.unit(0.6, "cm"),
  29522. name: "Front",
  29523. image: {
  29524. source: "./media/characters/daz/front.svg",
  29525. extra: 1682 / 1164,
  29526. bottom: 42 / 1724
  29527. }
  29528. },
  29529. },
  29530. [
  29531. {
  29532. name: "Normal",
  29533. height: math.unit(0.6, "cm"),
  29534. default: true
  29535. },
  29536. ]
  29537. ))
  29538. characterMakers.push(() => makeCharacter(
  29539. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29540. {
  29541. front: {
  29542. height: math.unit(6, "feet"),
  29543. weight: math.unit(235, "lb"),
  29544. name: "Front",
  29545. image: {
  29546. source: "./media/characters/theo-pangolin/front.svg",
  29547. extra: 1996 / 1969,
  29548. bottom: 115 / 2111
  29549. }
  29550. },
  29551. back: {
  29552. height: math.unit(6, "feet"),
  29553. weight: math.unit(235, "lb"),
  29554. name: "Back",
  29555. image: {
  29556. source: "./media/characters/theo-pangolin/back.svg",
  29557. extra: 1979 / 1979,
  29558. bottom: 40 / 2019
  29559. }
  29560. },
  29561. feral: {
  29562. height: math.unit(2, "feet"),
  29563. weight: math.unit(30, "lb"),
  29564. name: "Feral",
  29565. image: {
  29566. source: "./media/characters/theo-pangolin/feral.svg",
  29567. extra: 803 / 791,
  29568. bottom: 181 / 984
  29569. }
  29570. },
  29571. footFive: {
  29572. height: math.unit(1.43, "feet"),
  29573. name: "Foot (Five Toes)",
  29574. image: {
  29575. source: "./media/characters/theo-pangolin/foot-five.svg"
  29576. }
  29577. },
  29578. footFour: {
  29579. height: math.unit(1.43, "feet"),
  29580. name: "Foot (Four Toes)",
  29581. image: {
  29582. source: "./media/characters/theo-pangolin/foot-four.svg"
  29583. }
  29584. },
  29585. handFour: {
  29586. height: math.unit(0.81, "feet"),
  29587. name: "Hand (Four Fingers)",
  29588. image: {
  29589. source: "./media/characters/theo-pangolin/hand-four.svg"
  29590. }
  29591. },
  29592. handThree: {
  29593. height: math.unit(0.81, "feet"),
  29594. name: "Hand (Three Fingers)",
  29595. image: {
  29596. source: "./media/characters/theo-pangolin/hand-three.svg"
  29597. }
  29598. },
  29599. headFront: {
  29600. height: math.unit(1.37, "feet"),
  29601. name: "Head (Front)",
  29602. image: {
  29603. source: "./media/characters/theo-pangolin/head-front.svg"
  29604. }
  29605. },
  29606. headSide: {
  29607. height: math.unit(1.43, "feet"),
  29608. name: "Head (Side)",
  29609. image: {
  29610. source: "./media/characters/theo-pangolin/head-side.svg"
  29611. }
  29612. },
  29613. tongue: {
  29614. height: math.unit(2.29, "feet"),
  29615. name: "Tongue",
  29616. image: {
  29617. source: "./media/characters/theo-pangolin/tongue.svg"
  29618. }
  29619. },
  29620. },
  29621. [
  29622. {
  29623. name: "Normal",
  29624. height: math.unit(6, "feet")
  29625. },
  29626. {
  29627. name: "Macro",
  29628. height: math.unit(400, "feet"),
  29629. default: true
  29630. },
  29631. ]
  29632. ))
  29633. characterMakers.push(() => makeCharacter(
  29634. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29635. {
  29636. front: {
  29637. height: math.unit(6, "inches"),
  29638. weight: math.unit(0.036, "kg"),
  29639. name: "Front",
  29640. image: {
  29641. source: "./media/characters/renée/front.svg",
  29642. extra: 900 / 886,
  29643. bottom: 8 / 908
  29644. }
  29645. },
  29646. },
  29647. [
  29648. {
  29649. name: "Nano",
  29650. height: math.unit(1, "nm")
  29651. },
  29652. {
  29653. name: "Micro",
  29654. height: math.unit(1, "mm")
  29655. },
  29656. {
  29657. name: "Normal",
  29658. height: math.unit(6, "inches")
  29659. },
  29660. {
  29661. name: "Macro",
  29662. height: math.unit(2000, "feet"),
  29663. default: true
  29664. },
  29665. {
  29666. name: "Megamacro",
  29667. height: math.unit(2, "km")
  29668. },
  29669. {
  29670. name: "Gigamacro",
  29671. height: math.unit(2000, "km")
  29672. },
  29673. {
  29674. name: "Teramacro",
  29675. height: math.unit(250000, "km")
  29676. },
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29681. {
  29682. front: {
  29683. height: math.unit(4, "meters"),
  29684. weight: math.unit(150, "kg"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/caledvwlch/front.svg",
  29688. extra: 1760 / 1551,
  29689. bottom: 28 / 1788
  29690. }
  29691. },
  29692. side: {
  29693. height: math.unit(4, "meters"),
  29694. weight: math.unit(150, "kg"),
  29695. name: "Side",
  29696. image: {
  29697. source: "./media/characters/caledvwlch/side.svg",
  29698. extra: 1605 / 1536,
  29699. bottom: 31 / 1636
  29700. }
  29701. },
  29702. back: {
  29703. height: math.unit(4, "meters"),
  29704. weight: math.unit(150, "kg"),
  29705. name: "Back",
  29706. image: {
  29707. source: "./media/characters/caledvwlch/back.svg",
  29708. extra: 1635 / 1565,
  29709. bottom: 27 / 1662
  29710. }
  29711. },
  29712. },
  29713. [
  29714. {
  29715. name: "\"Incognito\"",
  29716. height: math.unit(4, "meters")
  29717. },
  29718. {
  29719. name: "Small rampage",
  29720. height: math.unit(600, "meters")
  29721. },
  29722. {
  29723. name: "Mega",
  29724. height: math.unit(30, "km")
  29725. },
  29726. {
  29727. name: "Home-size",
  29728. height: math.unit(50, "km"),
  29729. default: true
  29730. },
  29731. {
  29732. name: "Giga",
  29733. height: math.unit(300, "km")
  29734. },
  29735. {
  29736. name: "Lounging",
  29737. height: math.unit(11000, "km")
  29738. },
  29739. {
  29740. name: "Planet snacking",
  29741. height: math.unit(2000000, "km")
  29742. },
  29743. ]
  29744. ))
  29745. characterMakers.push(() => makeCharacter(
  29746. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29747. {
  29748. front: {
  29749. height: math.unit(6, "feet"),
  29750. weight: math.unit(215, "lb"),
  29751. name: "Front",
  29752. image: {
  29753. source: "./media/characters/sapphire-svell/front.svg",
  29754. extra: 495 / 455,
  29755. bottom: 20 / 515
  29756. }
  29757. },
  29758. back: {
  29759. height: math.unit(6, "feet"),
  29760. weight: math.unit(216, "lb"),
  29761. name: "Back",
  29762. image: {
  29763. source: "./media/characters/sapphire-svell/back.svg",
  29764. extra: 497 / 477,
  29765. bottom: 7 / 504
  29766. }
  29767. },
  29768. maw: {
  29769. height: math.unit(1.57, "feet"),
  29770. name: "Maw",
  29771. image: {
  29772. source: "./media/characters/sapphire-svell/maw.svg"
  29773. }
  29774. },
  29775. foot: {
  29776. height: math.unit(1.07, "feet"),
  29777. name: "Foot",
  29778. image: {
  29779. source: "./media/characters/sapphire-svell/foot.svg"
  29780. }
  29781. },
  29782. toering: {
  29783. height: math.unit(1.7, "inch"),
  29784. name: "Toering",
  29785. image: {
  29786. source: "./media/characters/sapphire-svell/toering.svg"
  29787. }
  29788. },
  29789. },
  29790. [
  29791. {
  29792. name: "Normal",
  29793. height: math.unit(300, "feet"),
  29794. default: true
  29795. },
  29796. {
  29797. name: "Augmented",
  29798. height: math.unit(1250, "feet")
  29799. },
  29800. {
  29801. name: "Unleashed",
  29802. height: math.unit(3000, "feet")
  29803. },
  29804. ]
  29805. ))
  29806. characterMakers.push(() => makeCharacter(
  29807. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29808. {
  29809. side: {
  29810. height: math.unit(2 + 3 / 12, "feet"),
  29811. weight: math.unit(110, "lb"),
  29812. name: "Side",
  29813. image: {
  29814. source: "./media/characters/glitch-flux/side.svg",
  29815. extra: 997 / 805,
  29816. bottom: 20 / 1017
  29817. }
  29818. },
  29819. },
  29820. [
  29821. {
  29822. name: "Normal",
  29823. height: math.unit(2 + 3 / 12, "feet"),
  29824. default: true
  29825. },
  29826. ]
  29827. ))
  29828. characterMakers.push(() => makeCharacter(
  29829. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29830. {
  29831. front: {
  29832. height: math.unit(4, "meters"),
  29833. name: "Front",
  29834. image: {
  29835. source: "./media/characters/mid/front.svg",
  29836. extra: 507 / 476,
  29837. bottom: 17 / 524
  29838. }
  29839. },
  29840. back: {
  29841. height: math.unit(4, "meters"),
  29842. name: "Back",
  29843. image: {
  29844. source: "./media/characters/mid/back.svg",
  29845. extra: 519 / 487,
  29846. bottom: 7 / 526
  29847. }
  29848. },
  29849. stuck: {
  29850. height: math.unit(2.2, "meters"),
  29851. name: "Stuck",
  29852. image: {
  29853. source: "./media/characters/mid/stuck.svg",
  29854. extra: 1951 / 1869,
  29855. bottom: 88 / 2039
  29856. }
  29857. }
  29858. },
  29859. [
  29860. {
  29861. name: "Normal",
  29862. height: math.unit(4, "meters"),
  29863. default: true
  29864. },
  29865. {
  29866. name: "Big",
  29867. height: math.unit(10, "meters")
  29868. },
  29869. {
  29870. name: "Macro",
  29871. height: math.unit(800, "meters")
  29872. },
  29873. {
  29874. name: "Megamacro",
  29875. height: math.unit(100, "km")
  29876. },
  29877. {
  29878. name: "Overgrown",
  29879. height: math.unit(1, "parsec")
  29880. },
  29881. ]
  29882. ))
  29883. characterMakers.push(() => makeCharacter(
  29884. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29885. {
  29886. front: {
  29887. height: math.unit(2.5, "meters"),
  29888. weight: math.unit(225, "kg"),
  29889. name: "Front",
  29890. image: {
  29891. source: "./media/characters/iris/front.svg",
  29892. extra: 3348 / 3251,
  29893. bottom: 205 / 3553
  29894. }
  29895. },
  29896. maw: {
  29897. height: math.unit(0.56, "meter"),
  29898. name: "Maw",
  29899. image: {
  29900. source: "./media/characters/iris/maw.svg"
  29901. }
  29902. },
  29903. },
  29904. [
  29905. {
  29906. name: "Mewter cat",
  29907. height: math.unit(1.2, "meters")
  29908. },
  29909. {
  29910. name: "Minimacro",
  29911. height: math.unit(2.5, "meters"),
  29912. default: true
  29913. },
  29914. {
  29915. name: "Macro",
  29916. height: math.unit(180, "meters")
  29917. },
  29918. {
  29919. name: "Megamacro",
  29920. height: math.unit(2746, "meters")
  29921. },
  29922. ]
  29923. ))
  29924. characterMakers.push(() => makeCharacter(
  29925. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29926. {
  29927. front: {
  29928. height: math.unit(6, "feet"),
  29929. weight: math.unit(135, "lb"),
  29930. name: "Front",
  29931. image: {
  29932. source: "./media/characters/axel/front.svg",
  29933. extra: 908 / 908,
  29934. bottom: 58 / 966
  29935. }
  29936. },
  29937. side: {
  29938. height: math.unit(6, "feet"),
  29939. weight: math.unit(135, "lb"),
  29940. name: "Side",
  29941. image: {
  29942. source: "./media/characters/axel/side.svg",
  29943. extra: 958 / 958,
  29944. bottom: 11 / 969
  29945. }
  29946. },
  29947. back: {
  29948. height: math.unit(6, "feet"),
  29949. weight: math.unit(135, "lb"),
  29950. name: "Back",
  29951. image: {
  29952. source: "./media/characters/axel/back.svg",
  29953. extra: 887 / 887,
  29954. bottom: 34 / 921
  29955. }
  29956. },
  29957. head: {
  29958. height: math.unit(1.07, "feet"),
  29959. name: "Head",
  29960. image: {
  29961. source: "./media/characters/axel/head.svg"
  29962. }
  29963. },
  29964. beak: {
  29965. height: math.unit(1.4, "feet"),
  29966. name: "Beak",
  29967. image: {
  29968. source: "./media/characters/axel/beak.svg"
  29969. }
  29970. },
  29971. beakSide: {
  29972. height: math.unit(1.4, "feet"),
  29973. name: "Beak Side",
  29974. image: {
  29975. source: "./media/characters/axel/beak-side.svg"
  29976. }
  29977. },
  29978. sheath: {
  29979. height: math.unit(0.5, "feet"),
  29980. name: "Sheath",
  29981. image: {
  29982. source: "./media/characters/axel/sheath.svg"
  29983. }
  29984. },
  29985. dick: {
  29986. height: math.unit(0.98, "feet"),
  29987. name: "Dick",
  29988. image: {
  29989. source: "./media/characters/axel/dick.svg"
  29990. }
  29991. },
  29992. },
  29993. [
  29994. {
  29995. name: "Macro",
  29996. height: math.unit(68, "meters"),
  29997. default: true
  29998. },
  29999. ]
  30000. ))
  30001. characterMakers.push(() => makeCharacter(
  30002. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30003. {
  30004. front: {
  30005. height: math.unit(3.5, "meters"),
  30006. weight: math.unit(1200, "kg"),
  30007. name: "Front",
  30008. image: {
  30009. source: "./media/characters/joanna/front.svg",
  30010. extra: 1596 / 1488,
  30011. bottom: 29 / 1625
  30012. }
  30013. },
  30014. back: {
  30015. height: math.unit(3.5, "meters"),
  30016. weight: math.unit(1200, "kg"),
  30017. name: "Back",
  30018. image: {
  30019. source: "./media/characters/joanna/back.svg",
  30020. extra: 1594 / 1495,
  30021. bottom: 26 / 1620
  30022. }
  30023. },
  30024. frontShorts: {
  30025. height: math.unit(3.5, "meters"),
  30026. weight: math.unit(1200, "kg"),
  30027. name: "Front (Shorts)",
  30028. image: {
  30029. source: "./media/characters/joanna/front-shorts.svg",
  30030. extra: 1596 / 1488,
  30031. bottom: 29 / 1625
  30032. }
  30033. },
  30034. frontBiker: {
  30035. height: math.unit(3.5, "meters"),
  30036. weight: math.unit(1200, "kg"),
  30037. name: "Front (Biker)",
  30038. image: {
  30039. source: "./media/characters/joanna/front-biker.svg",
  30040. extra: 1596 / 1488,
  30041. bottom: 29 / 1625
  30042. }
  30043. },
  30044. backBiker: {
  30045. height: math.unit(3.5, "meters"),
  30046. weight: math.unit(1200, "kg"),
  30047. name: "Back (Biker)",
  30048. image: {
  30049. source: "./media/characters/joanna/back-biker.svg",
  30050. extra: 1594 / 1495,
  30051. bottom: 88 / 1682
  30052. }
  30053. },
  30054. bikeLeft: {
  30055. height: math.unit(2.4, "meters"),
  30056. weight: math.unit(1600, "kg"),
  30057. name: "Bike (Left)",
  30058. image: {
  30059. source: "./media/characters/joanna/bike-left.svg",
  30060. extra: 720 / 720,
  30061. bottom: 8 / 728
  30062. }
  30063. },
  30064. bikeRight: {
  30065. height: math.unit(2.4, "meters"),
  30066. weight: math.unit(1600, "kg"),
  30067. name: "Bike (Right)",
  30068. image: {
  30069. source: "./media/characters/joanna/bike-right.svg",
  30070. extra: 720 / 720,
  30071. bottom: 8 / 728
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Incognito",
  30078. height: math.unit(3.5, "meters")
  30079. },
  30080. {
  30081. name: "Casual Big",
  30082. height: math.unit(200, "meters")
  30083. },
  30084. {
  30085. name: "Macro",
  30086. height: math.unit(600, "meters")
  30087. },
  30088. {
  30089. name: "Original",
  30090. height: math.unit(20, "km"),
  30091. default: true
  30092. },
  30093. {
  30094. name: "Giga",
  30095. height: math.unit(400, "km")
  30096. },
  30097. {
  30098. name: "Lounging",
  30099. height: math.unit(1500, "km")
  30100. },
  30101. {
  30102. name: "Planetary",
  30103. height: math.unit(200000, "km")
  30104. },
  30105. ]
  30106. ))
  30107. characterMakers.push(() => makeCharacter(
  30108. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30109. {
  30110. front: {
  30111. height: math.unit(6, "feet"),
  30112. weight: math.unit(150, "lb"),
  30113. name: "Front",
  30114. image: {
  30115. source: "./media/characters/hugo-sigil/front.svg",
  30116. extra: 522 / 500,
  30117. bottom: 2 / 524
  30118. }
  30119. },
  30120. back: {
  30121. height: math.unit(6, "feet"),
  30122. weight: math.unit(150, "lb"),
  30123. name: "Back",
  30124. image: {
  30125. source: "./media/characters/hugo-sigil/back.svg",
  30126. extra: 519 / 495,
  30127. bottom: 5 / 524
  30128. }
  30129. },
  30130. maw: {
  30131. height: math.unit(1.4, "feet"),
  30132. weight: math.unit(150, "lb"),
  30133. name: "Maw",
  30134. image: {
  30135. source: "./media/characters/hugo-sigil/maw.svg"
  30136. }
  30137. },
  30138. feet: {
  30139. height: math.unit(1.56, "feet"),
  30140. weight: math.unit(150, "lb"),
  30141. name: "Feet",
  30142. image: {
  30143. source: "./media/characters/hugo-sigil/feet.svg",
  30144. extra: 177 / 177,
  30145. bottom: 12 / 189
  30146. }
  30147. },
  30148. },
  30149. [
  30150. {
  30151. name: "Normal",
  30152. height: math.unit(6, "feet")
  30153. },
  30154. {
  30155. name: "Macro",
  30156. height: math.unit(200, "feet"),
  30157. default: true
  30158. },
  30159. ]
  30160. ))
  30161. characterMakers.push(() => makeCharacter(
  30162. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30163. {
  30164. front: {
  30165. height: math.unit(6, "feet"),
  30166. weight: math.unit(150, "lb"),
  30167. name: "Front",
  30168. image: {
  30169. source: "./media/characters/peri/front.svg",
  30170. extra: 2354 / 2233,
  30171. bottom: 49 / 2403
  30172. }
  30173. },
  30174. },
  30175. [
  30176. {
  30177. name: "Really Small",
  30178. height: math.unit(1, "nm")
  30179. },
  30180. {
  30181. name: "Micro",
  30182. height: math.unit(4, "inches")
  30183. },
  30184. {
  30185. name: "Normal",
  30186. height: math.unit(7, "inches"),
  30187. default: true
  30188. },
  30189. {
  30190. name: "Macro",
  30191. height: math.unit(400, "feet")
  30192. },
  30193. {
  30194. name: "Megamacro",
  30195. height: math.unit(100, "miles")
  30196. },
  30197. ]
  30198. ))
  30199. characterMakers.push(() => makeCharacter(
  30200. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30201. {
  30202. frontSlim: {
  30203. height: math.unit(7, "feet"),
  30204. name: "Front (Slim)",
  30205. image: {
  30206. source: "./media/characters/issilora/front-slim.svg",
  30207. extra: 529 / 449,
  30208. bottom: 53 / 582
  30209. }
  30210. },
  30211. sideSlim: {
  30212. height: math.unit(7, "feet"),
  30213. name: "Side (Slim)",
  30214. image: {
  30215. source: "./media/characters/issilora/side-slim.svg",
  30216. extra: 570 / 480,
  30217. bottom: 30 / 600
  30218. }
  30219. },
  30220. backSlim: {
  30221. height: math.unit(7, "feet"),
  30222. name: "Back (Slim)",
  30223. image: {
  30224. source: "./media/characters/issilora/back-slim.svg",
  30225. extra: 537 / 455,
  30226. bottom: 46 / 583
  30227. }
  30228. },
  30229. frontBuff: {
  30230. height: math.unit(7, "feet"),
  30231. name: "Front (Buff)",
  30232. image: {
  30233. source: "./media/characters/issilora/front-buff.svg",
  30234. extra: 2310 / 2035,
  30235. bottom: 335 / 2645
  30236. }
  30237. },
  30238. head: {
  30239. height: math.unit(1.94, "feet"),
  30240. name: "Head",
  30241. image: {
  30242. source: "./media/characters/issilora/head.svg"
  30243. }
  30244. },
  30245. },
  30246. [
  30247. {
  30248. name: "Minimum",
  30249. height: math.unit(7, "feet")
  30250. },
  30251. {
  30252. name: "Comfortable",
  30253. height: math.unit(17, "feet")
  30254. },
  30255. {
  30256. name: "Fun Size",
  30257. height: math.unit(47, "feet")
  30258. },
  30259. {
  30260. name: "Natural Macro",
  30261. height: math.unit(137, "feet"),
  30262. default: true
  30263. },
  30264. {
  30265. name: "Maximum Kaiju",
  30266. height: math.unit(397, "feet")
  30267. },
  30268. ]
  30269. ))
  30270. characterMakers.push(() => makeCharacter(
  30271. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30272. {
  30273. front: {
  30274. height: math.unit(50 + 9/12, "feet"),
  30275. weight: math.unit(32.8, "tons"),
  30276. name: "Front",
  30277. image: {
  30278. source: "./media/characters/irb'iiritaahn/front.svg",
  30279. extra: 1878/1826,
  30280. bottom: 326/2204
  30281. }
  30282. },
  30283. back: {
  30284. height: math.unit(50 + 9/12, "feet"),
  30285. weight: math.unit(32.8, "tons"),
  30286. name: "Back",
  30287. image: {
  30288. source: "./media/characters/irb'iiritaahn/back.svg",
  30289. extra: 2052/2018,
  30290. bottom: 152/2204
  30291. }
  30292. },
  30293. head: {
  30294. height: math.unit(12.86, "feet"),
  30295. name: "Head",
  30296. image: {
  30297. source: "./media/characters/irb'iiritaahn/head.svg"
  30298. }
  30299. },
  30300. maw: {
  30301. height: math.unit(9.66, "feet"),
  30302. name: "Maw",
  30303. image: {
  30304. source: "./media/characters/irb'iiritaahn/maw.svg"
  30305. }
  30306. },
  30307. frontDick: {
  30308. height: math.unit(8.78461, "feet"),
  30309. name: "Front Dick",
  30310. image: {
  30311. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30312. }
  30313. },
  30314. rearDick: {
  30315. height: math.unit(8.78461, "feet"),
  30316. name: "Rear Dick",
  30317. image: {
  30318. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30319. }
  30320. },
  30321. rearDickUnfolded: {
  30322. height: math.unit(8.78, "feet"),
  30323. name: "Rear Dick (Unfolded)",
  30324. image: {
  30325. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30326. }
  30327. },
  30328. wings: {
  30329. height: math.unit(43, "feet"),
  30330. name: "Wings",
  30331. image: {
  30332. source: "./media/characters/irb'iiritaahn/wings.svg"
  30333. }
  30334. },
  30335. },
  30336. [
  30337. {
  30338. name: "Macro",
  30339. height: math.unit(50 + 9/12, "feet"),
  30340. default: true
  30341. },
  30342. ]
  30343. ))
  30344. characterMakers.push(() => makeCharacter(
  30345. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30346. {
  30347. front: {
  30348. height: math.unit(205, "cm"),
  30349. weight: math.unit(102, "kg"),
  30350. name: "Front",
  30351. image: {
  30352. source: "./media/characters/irbisgreif/front.svg",
  30353. extra: 785/706,
  30354. bottom: 13/798
  30355. }
  30356. },
  30357. back: {
  30358. height: math.unit(205, "cm"),
  30359. weight: math.unit(102, "kg"),
  30360. name: "Back",
  30361. image: {
  30362. source: "./media/characters/irbisgreif/back.svg",
  30363. extra: 713/701,
  30364. bottom: 26/739
  30365. }
  30366. },
  30367. frontDressed: {
  30368. height: math.unit(216, "cm"),
  30369. weight: math.unit(102, "kg"),
  30370. name: "Front-dressed",
  30371. image: {
  30372. source: "./media/characters/irbisgreif/front-dressed.svg",
  30373. extra: 902/776,
  30374. bottom: 14/916
  30375. }
  30376. },
  30377. sideDressed: {
  30378. height: math.unit(195, "cm"),
  30379. weight: math.unit(102, "kg"),
  30380. name: "Side-dressed",
  30381. image: {
  30382. source: "./media/characters/irbisgreif/side-dressed.svg",
  30383. extra: 788/688,
  30384. bottom: 21/809
  30385. }
  30386. },
  30387. backDressed: {
  30388. height: math.unit(216, "cm"),
  30389. weight: math.unit(102, "kg"),
  30390. name: "Back-dressed",
  30391. image: {
  30392. source: "./media/characters/irbisgreif/back-dressed.svg",
  30393. extra: 901/783,
  30394. bottom: 10/911
  30395. }
  30396. },
  30397. dick: {
  30398. height: math.unit(0.49, "feet"),
  30399. name: "Dick",
  30400. image: {
  30401. source: "./media/characters/irbisgreif/dick.svg"
  30402. }
  30403. },
  30404. wingTop: {
  30405. height: math.unit(1.93 , "feet"),
  30406. name: "Wing-top",
  30407. image: {
  30408. source: "./media/characters/irbisgreif/wing-top.svg"
  30409. }
  30410. },
  30411. wingBottom: {
  30412. height: math.unit(1.93 , "feet"),
  30413. name: "Wing-bottom",
  30414. image: {
  30415. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30416. }
  30417. },
  30418. },
  30419. [
  30420. {
  30421. name: "Normal",
  30422. height: math.unit(216, "cm"),
  30423. default: true
  30424. },
  30425. ]
  30426. ))
  30427. characterMakers.push(() => makeCharacter(
  30428. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30429. {
  30430. front: {
  30431. height: math.unit(6, "feet"),
  30432. weight: math.unit(150, "lb"),
  30433. name: "Front",
  30434. image: {
  30435. source: "./media/characters/pride/front.svg",
  30436. extra: 1299/1230,
  30437. bottom: 18/1317
  30438. }
  30439. },
  30440. },
  30441. [
  30442. {
  30443. name: "Normal",
  30444. height: math.unit(7, "feet")
  30445. },
  30446. {
  30447. name: "Mini-macro",
  30448. height: math.unit(11, "feet")
  30449. },
  30450. {
  30451. name: "Macro",
  30452. height: math.unit(15, "meters"),
  30453. default: true
  30454. },
  30455. {
  30456. name: "Macro+",
  30457. height: math.unit(40, "meters")
  30458. },
  30459. ]
  30460. ))
  30461. characterMakers.push(() => makeCharacter(
  30462. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30463. {
  30464. front: {
  30465. height: math.unit(4 + 2 / 12, "feet"),
  30466. weight: math.unit(95, "lb"),
  30467. name: "Front",
  30468. image: {
  30469. source: "./media/characters/vaelophis-nyx/front.svg",
  30470. extra: 2532/2330,
  30471. bottom: 0/2532
  30472. }
  30473. },
  30474. back: {
  30475. height: math.unit(4 + 2 / 12, "feet"),
  30476. weight: math.unit(95, "lb"),
  30477. name: "Back",
  30478. image: {
  30479. source: "./media/characters/vaelophis-nyx/back.svg",
  30480. extra: 2484/2361,
  30481. bottom: 0/2484
  30482. }
  30483. },
  30484. feralSide: {
  30485. height: math.unit(2 + 1/12, "feet"),
  30486. weight: math.unit(20, "lb"),
  30487. name: "Feral (Side)",
  30488. image: {
  30489. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30490. extra: 1721/1581,
  30491. bottom: 70/1791
  30492. }
  30493. },
  30494. feralLazing: {
  30495. height: math.unit(1.08, "feet"),
  30496. weight: math.unit(20, "lb"),
  30497. name: "Feral (Lazing)",
  30498. image: {
  30499. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30500. extra: 822/822,
  30501. bottom: 248/1070
  30502. }
  30503. },
  30504. ear: {
  30505. height: math.unit(0.416, "feet"),
  30506. name: "Ear",
  30507. image: {
  30508. source: "./media/characters/vaelophis-nyx/ear.svg"
  30509. }
  30510. },
  30511. eye: {
  30512. height: math.unit(0.0748, "feet"),
  30513. name: "Eye",
  30514. image: {
  30515. source: "./media/characters/vaelophis-nyx/eye.svg"
  30516. }
  30517. },
  30518. mouth: {
  30519. height: math.unit(0.378, "feet"),
  30520. name: "Mouth",
  30521. image: {
  30522. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30523. }
  30524. },
  30525. spade: {
  30526. height: math.unit(0.55, "feet"),
  30527. name: "Spade",
  30528. image: {
  30529. source: "./media/characters/vaelophis-nyx/spade.svg"
  30530. }
  30531. },
  30532. },
  30533. [
  30534. {
  30535. name: "Normal",
  30536. height: math.unit(4 + 2/12, "feet"),
  30537. default: true
  30538. },
  30539. ]
  30540. ))
  30541. characterMakers.push(() => makeCharacter(
  30542. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30543. {
  30544. front: {
  30545. height: math.unit(7, "feet"),
  30546. weight: math.unit(231, "lb"),
  30547. name: "Front",
  30548. image: {
  30549. source: "./media/characters/flux/front.svg",
  30550. extra: 919/871,
  30551. bottom: 0/919
  30552. }
  30553. },
  30554. back: {
  30555. height: math.unit(7, "feet"),
  30556. weight: math.unit(231, "lb"),
  30557. name: "Back",
  30558. image: {
  30559. source: "./media/characters/flux/back.svg",
  30560. extra: 1040/992,
  30561. bottom: 0/1040
  30562. }
  30563. },
  30564. frontDressed: {
  30565. height: math.unit(7, "feet"),
  30566. weight: math.unit(231, "lb"),
  30567. name: "Front (Dressed)",
  30568. image: {
  30569. source: "./media/characters/flux/front-dressed.svg",
  30570. extra: 919/871,
  30571. bottom: 0/919
  30572. }
  30573. },
  30574. feralSide: {
  30575. height: math.unit(5, "feet"),
  30576. weight: math.unit(150, "lb"),
  30577. name: "Feral (Side)",
  30578. image: {
  30579. source: "./media/characters/flux/feral-side.svg",
  30580. extra: 598/528,
  30581. bottom: 28/626
  30582. }
  30583. },
  30584. head: {
  30585. height: math.unit(1.585, "feet"),
  30586. name: "Head",
  30587. image: {
  30588. source: "./media/characters/flux/head.svg"
  30589. }
  30590. },
  30591. headSide: {
  30592. height: math.unit(1.74, "feet"),
  30593. name: "Head (Side)",
  30594. image: {
  30595. source: "./media/characters/flux/head-side.svg"
  30596. }
  30597. },
  30598. headSideFire: {
  30599. height: math.unit(1.76, "feet"),
  30600. name: "Head (Side, Fire)",
  30601. image: {
  30602. source: "./media/characters/flux/head-side-fire.svg"
  30603. }
  30604. },
  30605. },
  30606. [
  30607. {
  30608. name: "Normal",
  30609. height: math.unit(7, "feet"),
  30610. default: true
  30611. },
  30612. ]
  30613. ))
  30614. characterMakers.push(() => makeCharacter(
  30615. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30616. {
  30617. front: {
  30618. height: math.unit(9, "feet"),
  30619. weight: math.unit(1012, "lb"),
  30620. name: "Front",
  30621. image: {
  30622. source: "./media/characters/ulfra-lupae/front.svg",
  30623. extra: 1083/1011,
  30624. bottom: 67/1150
  30625. }
  30626. },
  30627. },
  30628. [
  30629. {
  30630. name: "Micro",
  30631. height: math.unit(6, "inches")
  30632. },
  30633. {
  30634. name: "Socializing",
  30635. height: math.unit(6 + 5/12, "feet")
  30636. },
  30637. {
  30638. name: "Normal",
  30639. height: math.unit(9, "feet"),
  30640. default: true
  30641. },
  30642. {
  30643. name: "Macro",
  30644. height: math.unit(150, "feet")
  30645. },
  30646. ]
  30647. ))
  30648. characterMakers.push(() => makeCharacter(
  30649. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30650. {
  30651. front: {
  30652. height: math.unit(5 + 2/12, "feet"),
  30653. weight: math.unit(120, "lb"),
  30654. name: "Front",
  30655. image: {
  30656. source: "./media/characters/timber/front.svg",
  30657. extra: 2814/2705,
  30658. bottom: 181/2995
  30659. }
  30660. },
  30661. },
  30662. [
  30663. {
  30664. name: "Normal",
  30665. height: math.unit(5 + 2/12, "feet"),
  30666. default: true
  30667. },
  30668. ]
  30669. ))
  30670. characterMakers.push(() => makeCharacter(
  30671. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30672. {
  30673. front: {
  30674. height: math.unit(5 + 7/12, "feet"),
  30675. weight: math.unit(220, "lb"),
  30676. name: "Front",
  30677. image: {
  30678. source: "./media/characters/nicki/front.svg",
  30679. extra: 453/419,
  30680. bottom: 7/460
  30681. }
  30682. },
  30683. frontAlt: {
  30684. height: math.unit(5 + 7/12, "feet"),
  30685. weight: math.unit(220, "lb"),
  30686. name: "Front-alt",
  30687. image: {
  30688. source: "./media/characters/nicki/front-alt.svg",
  30689. extra: 435/411,
  30690. bottom: 12/447
  30691. }
  30692. },
  30693. back: {
  30694. height: math.unit(5 + 7/12, "feet"),
  30695. weight: math.unit(220, "lb"),
  30696. name: "Back",
  30697. image: {
  30698. source: "./media/characters/nicki/back.svg",
  30699. extra: 440/413,
  30700. bottom: 19/459
  30701. }
  30702. },
  30703. taur: {
  30704. height: math.unit(7 + 6/12, "feet"),
  30705. weight: math.unit(700, "lb"),
  30706. name: "Taur",
  30707. image: {
  30708. source: "./media/characters/nicki/taur.svg",
  30709. extra: 975/773,
  30710. bottom: 0/975
  30711. }
  30712. },
  30713. frontNsfw: {
  30714. height: math.unit(5 + 7/12, "feet"),
  30715. weight: math.unit(220, "lb"),
  30716. name: "Front (NSFW)",
  30717. image: {
  30718. source: "./media/characters/nicki/front-nsfw.svg",
  30719. extra: 453/419,
  30720. bottom: 7/460
  30721. }
  30722. },
  30723. frontNsfwAlt: {
  30724. height: math.unit(5 + 7/12, "feet"),
  30725. weight: math.unit(220, "lb"),
  30726. name: "Front (Alt, NSFW)",
  30727. image: {
  30728. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30729. extra: 435/411,
  30730. bottom: 12/447
  30731. }
  30732. },
  30733. backNsfw: {
  30734. height: math.unit(5 + 7/12, "feet"),
  30735. weight: math.unit(220, "lb"),
  30736. name: "Back (NSFW)",
  30737. image: {
  30738. source: "./media/characters/nicki/back-nsfw.svg",
  30739. extra: 440/413,
  30740. bottom: 19/459
  30741. }
  30742. },
  30743. head: {
  30744. height: math.unit(2.1, "feet"),
  30745. name: "Head",
  30746. image: {
  30747. source: "./media/characters/nicki/head.svg"
  30748. }
  30749. },
  30750. paw: {
  30751. height: math.unit(1.88, "feet"),
  30752. name: "Paw",
  30753. image: {
  30754. source: "./media/characters/nicki/paw.svg"
  30755. }
  30756. },
  30757. },
  30758. [
  30759. {
  30760. name: "Normal",
  30761. height: math.unit(5 + 7/12, "feet"),
  30762. default: true
  30763. },
  30764. ]
  30765. ))
  30766. characterMakers.push(() => makeCharacter(
  30767. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30768. {
  30769. front: {
  30770. height: math.unit(7 + 10/12, "feet"),
  30771. weight: math.unit(3.5, "tons"),
  30772. name: "Front",
  30773. image: {
  30774. source: "./media/characters/lee/front.svg",
  30775. extra: 1773/1615,
  30776. bottom: 86/1859
  30777. }
  30778. },
  30779. hand: {
  30780. height: math.unit(1.78, "feet"),
  30781. name: "Hand",
  30782. image: {
  30783. source: "./media/characters/lee/hand.svg"
  30784. }
  30785. },
  30786. maw: {
  30787. height: math.unit(1.18, "feet"),
  30788. name: "Maw",
  30789. image: {
  30790. source: "./media/characters/lee/maw.svg"
  30791. }
  30792. },
  30793. },
  30794. [
  30795. {
  30796. name: "Normal",
  30797. height: math.unit(7 + 10/12, "feet"),
  30798. default: true
  30799. },
  30800. ]
  30801. ))
  30802. characterMakers.push(() => makeCharacter(
  30803. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30804. {
  30805. front: {
  30806. height: math.unit(9, "feet"),
  30807. name: "Front",
  30808. image: {
  30809. source: "./media/characters/guti/front.svg",
  30810. extra: 4551/4355,
  30811. bottom: 123/4674
  30812. }
  30813. },
  30814. tongue: {
  30815. height: math.unit(1, "feet"),
  30816. name: "Tongue",
  30817. image: {
  30818. source: "./media/characters/guti/tongue.svg"
  30819. }
  30820. },
  30821. paw: {
  30822. height: math.unit(1.18, "feet"),
  30823. name: "Paw",
  30824. image: {
  30825. source: "./media/characters/guti/paw.svg"
  30826. }
  30827. },
  30828. },
  30829. [
  30830. {
  30831. name: "Normal",
  30832. height: math.unit(9, "feet"),
  30833. default: true
  30834. },
  30835. ]
  30836. ))
  30837. characterMakers.push(() => makeCharacter(
  30838. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30839. {
  30840. side: {
  30841. height: math.unit(5, "meters"),
  30842. name: "Side",
  30843. image: {
  30844. source: "./media/characters/vesper/side.svg",
  30845. extra: 1605/1518,
  30846. bottom: 0/1605
  30847. }
  30848. },
  30849. },
  30850. [
  30851. {
  30852. name: "Small",
  30853. height: math.unit(5, "meters")
  30854. },
  30855. {
  30856. name: "Sage",
  30857. height: math.unit(100, "meters"),
  30858. default: true
  30859. },
  30860. {
  30861. name: "Fun Size",
  30862. height: math.unit(600, "meters")
  30863. },
  30864. {
  30865. name: "Goddess",
  30866. height: math.unit(20000, "km")
  30867. },
  30868. {
  30869. name: "Maximum",
  30870. height: math.unit(5, "galaxies")
  30871. },
  30872. ]
  30873. ))
  30874. characterMakers.push(() => makeCharacter(
  30875. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30876. {
  30877. front: {
  30878. height: math.unit(6 + 3/12, "feet"),
  30879. weight: math.unit(190, "lb"),
  30880. name: "Front",
  30881. image: {
  30882. source: "./media/characters/gawain/front.svg",
  30883. extra: 2222/2139,
  30884. bottom: 90/2312
  30885. }
  30886. },
  30887. back: {
  30888. height: math.unit(6 + 3/12, "feet"),
  30889. weight: math.unit(190, "lb"),
  30890. name: "Back",
  30891. image: {
  30892. source: "./media/characters/gawain/back.svg",
  30893. extra: 2199/2111,
  30894. bottom: 73/2272
  30895. }
  30896. },
  30897. },
  30898. [
  30899. {
  30900. name: "Normal",
  30901. height: math.unit(6 + 3/12, "feet"),
  30902. default: true
  30903. },
  30904. ]
  30905. ))
  30906. characterMakers.push(() => makeCharacter(
  30907. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30908. {
  30909. side: {
  30910. height: math.unit(3.5, "meters"),
  30911. weight: math.unit(16000, "lb"),
  30912. name: "Side",
  30913. image: {
  30914. source: "./media/characters/dascalti/side.svg",
  30915. extra: 392/273,
  30916. bottom: 47/439
  30917. }
  30918. },
  30919. breath: {
  30920. height: math.unit(7.4, "feet"),
  30921. name: "Breath",
  30922. image: {
  30923. source: "./media/characters/dascalti/breath.svg"
  30924. }
  30925. },
  30926. fed: {
  30927. height: math.unit(3.6, "meters"),
  30928. weight: math.unit(16000, "lb"),
  30929. name: "Fed",
  30930. image: {
  30931. source: "./media/characters/dascalti/fed.svg",
  30932. extra: 1419/820,
  30933. bottom: 95/1514
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Normal",
  30940. height: math.unit(3.5, "meters"),
  30941. default: true
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30947. {
  30948. front: {
  30949. height: math.unit(3 + 5/12, "feet"),
  30950. name: "Front",
  30951. image: {
  30952. source: "./media/characters/mauve/front.svg",
  30953. extra: 1126/1033,
  30954. bottom: 65/1191
  30955. }
  30956. },
  30957. side: {
  30958. height: math.unit(3 + 5/12, "feet"),
  30959. name: "Side",
  30960. image: {
  30961. source: "./media/characters/mauve/side.svg",
  30962. extra: 1089/1001,
  30963. bottom: 29/1118
  30964. }
  30965. },
  30966. back: {
  30967. height: math.unit(3 + 5/12, "feet"),
  30968. name: "Back",
  30969. image: {
  30970. source: "./media/characters/mauve/back.svg",
  30971. extra: 1173/1053,
  30972. bottom: 109/1282
  30973. }
  30974. },
  30975. },
  30976. [
  30977. {
  30978. name: "Normal",
  30979. height: math.unit(3 + 5/12, "feet"),
  30980. default: true
  30981. },
  30982. ]
  30983. ))
  30984. characterMakers.push(() => makeCharacter(
  30985. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30986. {
  30987. front: {
  30988. height: math.unit(6 + 3/12, "feet"),
  30989. weight: math.unit(430, "lb"),
  30990. name: "Front",
  30991. image: {
  30992. source: "./media/characters/carlos/front.svg",
  30993. extra: 1964/1913,
  30994. bottom: 70/2034
  30995. }
  30996. },
  30997. },
  30998. [
  30999. {
  31000. name: "Normal",
  31001. height: math.unit(6 + 3/12, "feet"),
  31002. default: true
  31003. },
  31004. ]
  31005. ))
  31006. characterMakers.push(() => makeCharacter(
  31007. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31008. {
  31009. back: {
  31010. height: math.unit(5 + 10/12, "feet"),
  31011. weight: math.unit(200, "lb"),
  31012. name: "Back",
  31013. image: {
  31014. source: "./media/characters/jax/back.svg",
  31015. extra: 764/739,
  31016. bottom: 25/789
  31017. }
  31018. },
  31019. },
  31020. [
  31021. {
  31022. name: "Normal",
  31023. height: math.unit(5 + 10/12, "feet"),
  31024. default: true
  31025. },
  31026. ]
  31027. ))
  31028. characterMakers.push(() => makeCharacter(
  31029. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31030. {
  31031. front: {
  31032. height: math.unit(8, "feet"),
  31033. weight: math.unit(250, "lb"),
  31034. name: "Front",
  31035. image: {
  31036. source: "./media/characters/eikthynir/front.svg",
  31037. extra: 1332/1166,
  31038. bottom: 82/1414
  31039. }
  31040. },
  31041. back: {
  31042. height: math.unit(8, "feet"),
  31043. weight: math.unit(250, "lb"),
  31044. name: "Back",
  31045. image: {
  31046. source: "./media/characters/eikthynir/back.svg",
  31047. extra: 1342/1190,
  31048. bottom: 19/1361
  31049. }
  31050. },
  31051. dick: {
  31052. height: math.unit(2.35, "feet"),
  31053. name: "Dick",
  31054. image: {
  31055. source: "./media/characters/eikthynir/dick.svg"
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Normal",
  31062. height: math.unit(8, "feet"),
  31063. default: true
  31064. },
  31065. ]
  31066. ))
  31067. characterMakers.push(() => makeCharacter(
  31068. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31069. {
  31070. front: {
  31071. height: math.unit(99, "meters"),
  31072. weight: math.unit(13000, "tons"),
  31073. name: "Front",
  31074. image: {
  31075. source: "./media/characters/zlmos/front.svg",
  31076. extra: 2202/1992,
  31077. bottom: 315/2517
  31078. }
  31079. },
  31080. },
  31081. [
  31082. {
  31083. name: "Macro",
  31084. height: math.unit(99, "meters"),
  31085. default: true
  31086. },
  31087. ]
  31088. ))
  31089. characterMakers.push(() => makeCharacter(
  31090. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31091. {
  31092. front: {
  31093. height: math.unit(6 + 5/12, "feet"),
  31094. name: "Front",
  31095. image: {
  31096. source: "./media/characters/purri/front.svg",
  31097. extra: 1698/1610,
  31098. bottom: 32/1730
  31099. }
  31100. },
  31101. frontAlt: {
  31102. height: math.unit(6 + 5/12, "feet"),
  31103. name: "Front (Alt)",
  31104. image: {
  31105. source: "./media/characters/purri/front-alt.svg",
  31106. extra: 450/420,
  31107. bottom: 26/476
  31108. }
  31109. },
  31110. boots: {
  31111. height: math.unit(5.5, "feet"),
  31112. name: "Boots",
  31113. image: {
  31114. source: "./media/characters/purri/boots.svg",
  31115. extra: 905/853,
  31116. bottom: 18/923
  31117. }
  31118. },
  31119. lying: {
  31120. height: math.unit(2, "feet"),
  31121. name: "Lying",
  31122. image: {
  31123. source: "./media/characters/purri/lying.svg",
  31124. extra: 940/843,
  31125. bottom: 146/1086
  31126. }
  31127. },
  31128. devious: {
  31129. height: math.unit(1.77, "feet"),
  31130. name: "Devious",
  31131. image: {
  31132. source: "./media/characters/purri/devious.svg",
  31133. extra: 1440/1155,
  31134. bottom: 147/1587
  31135. }
  31136. },
  31137. bean: {
  31138. height: math.unit(1.94, "feet"),
  31139. name: "Bean",
  31140. image: {
  31141. source: "./media/characters/purri/bean.svg"
  31142. }
  31143. },
  31144. },
  31145. [
  31146. {
  31147. name: "Micro",
  31148. height: math.unit(1, "mm")
  31149. },
  31150. {
  31151. name: "Normal",
  31152. height: math.unit(6 + 5/12, "feet"),
  31153. default: true
  31154. },
  31155. {
  31156. name: "Macro :3c",
  31157. height: math.unit(2, "miles")
  31158. },
  31159. ]
  31160. ))
  31161. characterMakers.push(() => makeCharacter(
  31162. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31163. {
  31164. front: {
  31165. height: math.unit(6 + 2/12, "feet"),
  31166. weight: math.unit(250, "lb"),
  31167. name: "Front",
  31168. image: {
  31169. source: "./media/characters/moonlight/front.svg",
  31170. extra: 1044/908,
  31171. bottom: 56/1100
  31172. }
  31173. },
  31174. feral: {
  31175. height: math.unit(3 + 1/12, "feet"),
  31176. weight: math.unit(50, "kg"),
  31177. name: "Feral",
  31178. image: {
  31179. source: "./media/characters/moonlight/feral.svg",
  31180. extra: 3705/2791,
  31181. bottom: 145/3850
  31182. }
  31183. },
  31184. paw: {
  31185. height: math.unit(1, "feet"),
  31186. name: "Paw",
  31187. image: {
  31188. source: "./media/characters/moonlight/paw.svg"
  31189. }
  31190. },
  31191. paws: {
  31192. height: math.unit(0.98, "feet"),
  31193. name: "Paws",
  31194. image: {
  31195. source: "./media/characters/moonlight/paws.svg",
  31196. extra: 939/939,
  31197. bottom: 50/989
  31198. }
  31199. },
  31200. mouth: {
  31201. height: math.unit(0.48, "feet"),
  31202. name: "Mouth",
  31203. image: {
  31204. source: "./media/characters/moonlight/mouth.svg"
  31205. }
  31206. },
  31207. dick: {
  31208. height: math.unit(1.46, "feet"),
  31209. name: "Dick",
  31210. image: {
  31211. source: "./media/characters/moonlight/dick.svg"
  31212. }
  31213. },
  31214. },
  31215. [
  31216. {
  31217. name: "Normal",
  31218. height: math.unit(6 + 2/12, "feet"),
  31219. default: true
  31220. },
  31221. {
  31222. name: "Macro",
  31223. height: math.unit(300, "feet")
  31224. },
  31225. {
  31226. name: "Macro+",
  31227. height: math.unit(1, "mile")
  31228. },
  31229. {
  31230. name: "Mt. Moon",
  31231. height: math.unit(5, "miles")
  31232. },
  31233. {
  31234. name: "Megamacro",
  31235. height: math.unit(15, "miles")
  31236. },
  31237. ]
  31238. ))
  31239. characterMakers.push(() => makeCharacter(
  31240. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31241. {
  31242. back: {
  31243. height: math.unit(6, "feet"),
  31244. weight: math.unit(150, "lb"),
  31245. name: "Back",
  31246. image: {
  31247. source: "./media/characters/sylen/back.svg",
  31248. extra: 1335/1273,
  31249. bottom: 107/1442
  31250. }
  31251. },
  31252. },
  31253. [
  31254. {
  31255. name: "Normal",
  31256. height: math.unit(5 + 5/12, "feet")
  31257. },
  31258. {
  31259. name: "Megamacro",
  31260. height: math.unit(3, "miles"),
  31261. default: true
  31262. },
  31263. ]
  31264. ))
  31265. characterMakers.push(() => makeCharacter(
  31266. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31267. {
  31268. front: {
  31269. height: math.unit(6, "feet"),
  31270. weight: math.unit(190, "lb"),
  31271. name: "Front",
  31272. image: {
  31273. source: "./media/characters/huttser/front.svg",
  31274. extra: 1152/1058,
  31275. bottom: 23/1175
  31276. }
  31277. },
  31278. side: {
  31279. height: math.unit(6, "feet"),
  31280. weight: math.unit(190, "lb"),
  31281. name: "Side",
  31282. image: {
  31283. source: "./media/characters/huttser/side.svg",
  31284. extra: 1174/1065,
  31285. bottom: 18/1192
  31286. }
  31287. },
  31288. back: {
  31289. height: math.unit(6, "feet"),
  31290. weight: math.unit(190, "lb"),
  31291. name: "Back",
  31292. image: {
  31293. source: "./media/characters/huttser/back.svg",
  31294. extra: 1158/1056,
  31295. bottom: 12/1170
  31296. }
  31297. },
  31298. },
  31299. [
  31300. ]
  31301. ))
  31302. characterMakers.push(() => makeCharacter(
  31303. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31304. {
  31305. side: {
  31306. height: math.unit(12 + 9/12, "feet"),
  31307. weight: math.unit(15000, "lb"),
  31308. name: "Side",
  31309. image: {
  31310. source: "./media/characters/faan/side.svg",
  31311. extra: 2747/2697,
  31312. bottom: 0/2747
  31313. }
  31314. },
  31315. front: {
  31316. height: math.unit(12 + 9/12, "feet"),
  31317. weight: math.unit(15000, "lb"),
  31318. name: "Front",
  31319. image: {
  31320. source: "./media/characters/faan/front.svg",
  31321. extra: 607/571,
  31322. bottom: 24/631
  31323. }
  31324. },
  31325. head: {
  31326. height: math.unit(2.85, "feet"),
  31327. name: "Head",
  31328. image: {
  31329. source: "./media/characters/faan/head.svg"
  31330. }
  31331. },
  31332. headAlt: {
  31333. height: math.unit(3.13, "feet"),
  31334. name: "Head-alt",
  31335. image: {
  31336. source: "./media/characters/faan/head-alt.svg"
  31337. }
  31338. },
  31339. },
  31340. [
  31341. {
  31342. name: "Normal",
  31343. height: math.unit(12 + 9/12, "feet"),
  31344. default: true
  31345. },
  31346. ]
  31347. ))
  31348. characterMakers.push(() => makeCharacter(
  31349. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31350. {
  31351. front: {
  31352. height: math.unit(6, "feet"),
  31353. weight: math.unit(300, "lb"),
  31354. name: "Front",
  31355. image: {
  31356. source: "./media/characters/tanio/front.svg",
  31357. extra: 711/673,
  31358. bottom: 25/736
  31359. }
  31360. },
  31361. },
  31362. [
  31363. {
  31364. name: "Normal",
  31365. height: math.unit(6, "feet"),
  31366. default: true
  31367. },
  31368. ]
  31369. ))
  31370. characterMakers.push(() => makeCharacter(
  31371. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31372. {
  31373. front: {
  31374. height: math.unit(3, "inches"),
  31375. name: "Front",
  31376. image: {
  31377. source: "./media/characters/noboru/front.svg",
  31378. extra: 1039/932,
  31379. bottom: 18/1057
  31380. }
  31381. },
  31382. },
  31383. [
  31384. {
  31385. name: "Micro",
  31386. height: math.unit(3, "inches"),
  31387. default: true
  31388. },
  31389. ]
  31390. ))
  31391. characterMakers.push(() => makeCharacter(
  31392. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31393. {
  31394. front: {
  31395. height: math.unit(1.85, "meters"),
  31396. weight: math.unit(80, "kg"),
  31397. name: "Front",
  31398. image: {
  31399. source: "./media/characters/daniel-barrett/front.svg",
  31400. extra: 355/337,
  31401. bottom: 9/364
  31402. }
  31403. },
  31404. },
  31405. [
  31406. {
  31407. name: "Pico",
  31408. height: math.unit(0.0433, "mm")
  31409. },
  31410. {
  31411. name: "Nano",
  31412. height: math.unit(1.5, "mm")
  31413. },
  31414. {
  31415. name: "Micro",
  31416. height: math.unit(5.3, "cm"),
  31417. default: true
  31418. },
  31419. {
  31420. name: "Normal",
  31421. height: math.unit(1.85, "meters")
  31422. },
  31423. {
  31424. name: "Macro",
  31425. height: math.unit(64.7, "meters")
  31426. },
  31427. {
  31428. name: "Megamacro",
  31429. height: math.unit(2.26, "km")
  31430. },
  31431. {
  31432. name: "Gigamacro",
  31433. height: math.unit(79, "km")
  31434. },
  31435. {
  31436. name: "Teramacro",
  31437. height: math.unit(2765, "km")
  31438. },
  31439. {
  31440. name: "Petamacro",
  31441. height: math.unit(96678, "km")
  31442. },
  31443. ]
  31444. ))
  31445. characterMakers.push(() => makeCharacter(
  31446. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31447. {
  31448. front: {
  31449. height: math.unit(30, "meters"),
  31450. weight: math.unit(400, "tons"),
  31451. name: "Front",
  31452. image: {
  31453. source: "./media/characters/zeel/front.svg",
  31454. extra: 2599/2599,
  31455. bottom: 226/2825
  31456. }
  31457. },
  31458. },
  31459. [
  31460. {
  31461. name: "Macro",
  31462. height: math.unit(30, "meters"),
  31463. default: true
  31464. },
  31465. ]
  31466. ))
  31467. characterMakers.push(() => makeCharacter(
  31468. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31469. {
  31470. front: {
  31471. height: math.unit(6 + 7/12, "feet"),
  31472. weight: math.unit(210, "lb"),
  31473. name: "Front",
  31474. image: {
  31475. source: "./media/characters/tarn/front.svg",
  31476. extra: 3517/3220,
  31477. bottom: 91/3608
  31478. }
  31479. },
  31480. back: {
  31481. height: math.unit(6 + 7/12, "feet"),
  31482. weight: math.unit(210, "lb"),
  31483. name: "Back",
  31484. image: {
  31485. source: "./media/characters/tarn/back.svg",
  31486. extra: 3566/3241,
  31487. bottom: 34/3600
  31488. }
  31489. },
  31490. dick: {
  31491. height: math.unit(1.65, "feet"),
  31492. name: "Dick",
  31493. image: {
  31494. source: "./media/characters/tarn/dick.svg"
  31495. }
  31496. },
  31497. paw: {
  31498. height: math.unit(1.80, "feet"),
  31499. name: "Paw",
  31500. image: {
  31501. source: "./media/characters/tarn/paw.svg"
  31502. }
  31503. },
  31504. tongue: {
  31505. height: math.unit(0.97, "feet"),
  31506. name: "Tongue",
  31507. image: {
  31508. source: "./media/characters/tarn/tongue.svg"
  31509. }
  31510. },
  31511. },
  31512. [
  31513. {
  31514. name: "Micro",
  31515. height: math.unit(4, "inches")
  31516. },
  31517. {
  31518. name: "Normal",
  31519. height: math.unit(6 + 7/12, "feet"),
  31520. default: true
  31521. },
  31522. {
  31523. name: "Macro",
  31524. height: math.unit(300, "feet")
  31525. },
  31526. ]
  31527. ))
  31528. characterMakers.push(() => makeCharacter(
  31529. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31530. {
  31531. front: {
  31532. height: math.unit(5 + 7/12, "feet"),
  31533. weight: math.unit(80, "kg"),
  31534. name: "Front",
  31535. image: {
  31536. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31537. extra: 3023/2865,
  31538. bottom: 33/3056
  31539. }
  31540. },
  31541. back: {
  31542. height: math.unit(5 + 7/12, "feet"),
  31543. weight: math.unit(80, "kg"),
  31544. name: "Back",
  31545. image: {
  31546. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31547. extra: 3020/2886,
  31548. bottom: 30/3050
  31549. }
  31550. },
  31551. dick: {
  31552. height: math.unit(0.98, "feet"),
  31553. name: "Dick",
  31554. image: {
  31555. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31556. }
  31557. },
  31558. anatomy: {
  31559. height: math.unit(2.86, "feet"),
  31560. name: "Anatomy",
  31561. image: {
  31562. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31563. }
  31564. },
  31565. },
  31566. [
  31567. {
  31568. name: "Really Small",
  31569. height: math.unit(2, "inches")
  31570. },
  31571. {
  31572. name: "Micro",
  31573. height: math.unit(5.583, "inches")
  31574. },
  31575. {
  31576. name: "Normal",
  31577. height: math.unit(5 + 7/12, "feet"),
  31578. default: true
  31579. },
  31580. {
  31581. name: "Macro",
  31582. height: math.unit(67, "feet")
  31583. },
  31584. {
  31585. name: "Megamacro",
  31586. height: math.unit(134, "feet")
  31587. },
  31588. ]
  31589. ))
  31590. characterMakers.push(() => makeCharacter(
  31591. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31592. {
  31593. front: {
  31594. height: math.unit(9, "feet"),
  31595. weight: math.unit(120, "lb"),
  31596. name: "Front",
  31597. image: {
  31598. source: "./media/characters/sally/front.svg",
  31599. extra: 1506/1349,
  31600. bottom: 66/1572
  31601. }
  31602. },
  31603. },
  31604. [
  31605. {
  31606. name: "Normal",
  31607. height: math.unit(9, "feet"),
  31608. default: true
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31614. {
  31615. front: {
  31616. height: math.unit(8, "feet"),
  31617. weight: math.unit(900, "lb"),
  31618. name: "Front",
  31619. image: {
  31620. source: "./media/characters/owen/front.svg",
  31621. extra: 1761/1657,
  31622. bottom: 74/1835
  31623. }
  31624. },
  31625. side: {
  31626. height: math.unit(8, "feet"),
  31627. weight: math.unit(900, "lb"),
  31628. name: "Side",
  31629. image: {
  31630. source: "./media/characters/owen/side.svg",
  31631. extra: 1797/1734,
  31632. bottom: 30/1827
  31633. }
  31634. },
  31635. back: {
  31636. height: math.unit(8, "feet"),
  31637. weight: math.unit(900, "lb"),
  31638. name: "Back",
  31639. image: {
  31640. source: "./media/characters/owen/back.svg",
  31641. extra: 1796/1706,
  31642. bottom: 59/1855
  31643. }
  31644. },
  31645. maw: {
  31646. height: math.unit(1.76, "feet"),
  31647. name: "Maw",
  31648. image: {
  31649. source: "./media/characters/owen/maw.svg"
  31650. }
  31651. },
  31652. },
  31653. [
  31654. {
  31655. name: "Normal",
  31656. height: math.unit(8, "feet"),
  31657. default: true
  31658. },
  31659. ]
  31660. ))
  31661. characterMakers.push(() => makeCharacter(
  31662. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31663. {
  31664. front: {
  31665. height: math.unit(4, "feet"),
  31666. weight: math.unit(400, "lb"),
  31667. name: "Front",
  31668. image: {
  31669. source: "./media/characters/ryth/front.svg",
  31670. extra: 876/691,
  31671. bottom: 25/901
  31672. }
  31673. },
  31674. goia: {
  31675. height: math.unit(12, "feet"),
  31676. weight: math.unit(10800, "lb"),
  31677. name: "Goia",
  31678. image: {
  31679. source: "./media/characters/ryth/goia.svg",
  31680. extra: 3450/3198,
  31681. bottom: 61/3511
  31682. }
  31683. },
  31684. },
  31685. [
  31686. {
  31687. name: "Normal",
  31688. height: math.unit(4, "feet"),
  31689. default: true
  31690. },
  31691. ]
  31692. ))
  31693. characterMakers.push(() => makeCharacter(
  31694. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31695. {
  31696. front: {
  31697. height: math.unit(7, "feet"),
  31698. weight: math.unit(180, "lb"),
  31699. name: "Front",
  31700. image: {
  31701. source: "./media/characters/necrolance/front.svg",
  31702. extra: 1062/947,
  31703. bottom: 41/1103
  31704. }
  31705. },
  31706. back: {
  31707. height: math.unit(7, "feet"),
  31708. weight: math.unit(180, "lb"),
  31709. name: "Back",
  31710. image: {
  31711. source: "./media/characters/necrolance/back.svg",
  31712. extra: 1045/984,
  31713. bottom: 14/1059
  31714. }
  31715. },
  31716. wing: {
  31717. height: math.unit(2.67, "feet"),
  31718. name: "Wing",
  31719. image: {
  31720. source: "./media/characters/necrolance/wing.svg"
  31721. }
  31722. },
  31723. },
  31724. [
  31725. {
  31726. name: "Normal",
  31727. height: math.unit(7, "feet"),
  31728. default: true
  31729. },
  31730. ]
  31731. ))
  31732. characterMakers.push(() => makeCharacter(
  31733. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31734. {
  31735. front: {
  31736. height: math.unit(76, "meters"),
  31737. weight: math.unit(30000, "tons"),
  31738. name: "Front",
  31739. image: {
  31740. source: "./media/characters/tyler/front.svg",
  31741. extra: 1640/1640,
  31742. bottom: 114/1754
  31743. }
  31744. },
  31745. },
  31746. [
  31747. {
  31748. name: "Macro",
  31749. height: math.unit(76, "meters"),
  31750. default: true
  31751. },
  31752. ]
  31753. ))
  31754. characterMakers.push(() => makeCharacter(
  31755. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31756. {
  31757. front: {
  31758. height: math.unit(4 + 11/12, "feet"),
  31759. weight: math.unit(132, "lb"),
  31760. name: "Front",
  31761. image: {
  31762. source: "./media/characters/icey/front.svg",
  31763. extra: 2750/2550,
  31764. bottom: 33/2783
  31765. }
  31766. },
  31767. back: {
  31768. height: math.unit(4 + 11/12, "feet"),
  31769. weight: math.unit(132, "lb"),
  31770. name: "Back",
  31771. image: {
  31772. source: "./media/characters/icey/back.svg",
  31773. extra: 2624/2481,
  31774. bottom: 35/2659
  31775. }
  31776. },
  31777. },
  31778. [
  31779. {
  31780. name: "Normal",
  31781. height: math.unit(4 + 11/12, "feet"),
  31782. default: true
  31783. },
  31784. ]
  31785. ))
  31786. characterMakers.push(() => makeCharacter(
  31787. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31788. {
  31789. front: {
  31790. height: math.unit(100, "feet"),
  31791. weight: math.unit(0, "lb"),
  31792. name: "Front",
  31793. image: {
  31794. source: "./media/characters/smile/front.svg",
  31795. extra: 2983/2912,
  31796. bottom: 162/3145
  31797. }
  31798. },
  31799. back: {
  31800. height: math.unit(100, "feet"),
  31801. weight: math.unit(0, "lb"),
  31802. name: "Back",
  31803. image: {
  31804. source: "./media/characters/smile/back.svg",
  31805. extra: 3143/3031,
  31806. bottom: 91/3234
  31807. }
  31808. },
  31809. head: {
  31810. height: math.unit(26.3, "feet"),
  31811. weight: math.unit(0, "lb"),
  31812. name: "Head",
  31813. image: {
  31814. source: "./media/characters/smile/head.svg"
  31815. }
  31816. },
  31817. collar: {
  31818. height: math.unit(5.3, "feet"),
  31819. weight: math.unit(0, "lb"),
  31820. name: "Collar",
  31821. image: {
  31822. source: "./media/characters/smile/collar.svg"
  31823. }
  31824. },
  31825. },
  31826. [
  31827. {
  31828. name: "Macro",
  31829. height: math.unit(100, "feet"),
  31830. default: true
  31831. },
  31832. ]
  31833. ))
  31834. characterMakers.push(() => makeCharacter(
  31835. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31836. {
  31837. dragon: {
  31838. height: math.unit(26, "feet"),
  31839. weight: math.unit(36, "tons"),
  31840. name: "Dragon",
  31841. image: {
  31842. source: "./media/characters/arimphae/dragon.svg",
  31843. extra: 1574/983,
  31844. bottom: 357/1931
  31845. }
  31846. },
  31847. drake: {
  31848. height: math.unit(9, "feet"),
  31849. weight: math.unit(1.5, "tons"),
  31850. name: "Drake",
  31851. image: {
  31852. source: "./media/characters/arimphae/drake.svg",
  31853. extra: 1120/925,
  31854. bottom: 435/1555
  31855. }
  31856. },
  31857. },
  31858. [
  31859. {
  31860. name: "Small",
  31861. height: math.unit(26*5/9, "feet")
  31862. },
  31863. {
  31864. name: "Normal",
  31865. height: math.unit(26, "feet"),
  31866. default: true
  31867. },
  31868. ]
  31869. ))
  31870. characterMakers.push(() => makeCharacter(
  31871. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31872. {
  31873. front: {
  31874. height: math.unit(8 + 9/12, "feet"),
  31875. name: "Front",
  31876. image: {
  31877. source: "./media/characters/xander/front.svg",
  31878. extra: 848/673,
  31879. bottom: 62/910
  31880. }
  31881. },
  31882. },
  31883. [
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(8 + 9/12, "feet"),
  31887. default: true
  31888. },
  31889. {
  31890. name: "Gaze Grabber",
  31891. height: math.unit(13 + 8/12, "feet")
  31892. },
  31893. {
  31894. name: "Jaw Dropper",
  31895. height: math.unit(27, "feet")
  31896. },
  31897. {
  31898. name: "Show Stopper",
  31899. height: math.unit(136, "feet")
  31900. },
  31901. {
  31902. name: "Superstar",
  31903. height: math.unit(1.9e6, "miles")
  31904. },
  31905. ]
  31906. ))
  31907. characterMakers.push(() => makeCharacter(
  31908. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31909. {
  31910. side: {
  31911. height: math.unit(2100, "feet"),
  31912. name: "Side",
  31913. image: {
  31914. source: "./media/characters/osiris/side.svg",
  31915. extra: 1105/939,
  31916. bottom: 167/1272
  31917. }
  31918. },
  31919. },
  31920. [
  31921. {
  31922. name: "Macro",
  31923. height: math.unit(2100, "feet"),
  31924. default: true
  31925. },
  31926. ]
  31927. ))
  31928. characterMakers.push(() => makeCharacter(
  31929. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31930. {
  31931. front: {
  31932. height: math.unit(6 + 8/12, "feet"),
  31933. weight: math.unit(225, "lb"),
  31934. name: "Front",
  31935. image: {
  31936. source: "./media/characters/rhys-londe/front.svg",
  31937. extra: 2258/2141,
  31938. bottom: 188/2446
  31939. }
  31940. },
  31941. back: {
  31942. height: math.unit(6 + 8/12, "feet"),
  31943. weight: math.unit(225, "lb"),
  31944. name: "Back",
  31945. image: {
  31946. source: "./media/characters/rhys-londe/back.svg",
  31947. extra: 2237/2137,
  31948. bottom: 63/2300
  31949. }
  31950. },
  31951. frontNsfw: {
  31952. height: math.unit(6 + 8/12, "feet"),
  31953. weight: math.unit(225, "lb"),
  31954. name: "Front (NSFW)",
  31955. image: {
  31956. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31957. extra: 2258/2141,
  31958. bottom: 188/2446
  31959. }
  31960. },
  31961. backNsfw: {
  31962. height: math.unit(6 + 8/12, "feet"),
  31963. weight: math.unit(225, "lb"),
  31964. name: "Back (NSFW)",
  31965. image: {
  31966. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31967. extra: 2237/2137,
  31968. bottom: 63/2300
  31969. }
  31970. },
  31971. dick: {
  31972. height: math.unit(30, "inches"),
  31973. name: "Dick",
  31974. image: {
  31975. source: "./media/characters/rhys-londe/dick.svg"
  31976. }
  31977. },
  31978. maw: {
  31979. height: math.unit(1.6, "feet"),
  31980. name: "Maw",
  31981. image: {
  31982. source: "./media/characters/rhys-londe/maw.svg"
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Normal",
  31989. height: math.unit(6 + 8/12, "feet"),
  31990. default: true
  31991. },
  31992. ]
  31993. ))
  31994. characterMakers.push(() => makeCharacter(
  31995. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31996. {
  31997. front: {
  31998. height: math.unit(3 + 10/12, "feet"),
  31999. weight: math.unit(90, "lb"),
  32000. name: "Front",
  32001. image: {
  32002. source: "./media/characters/taivas-ensim/front.svg",
  32003. extra: 1327/1216,
  32004. bottom: 96/1423
  32005. }
  32006. },
  32007. back: {
  32008. height: math.unit(3 + 10/12, "feet"),
  32009. weight: math.unit(90, "lb"),
  32010. name: "Back",
  32011. image: {
  32012. source: "./media/characters/taivas-ensim/back.svg",
  32013. extra: 1355/1247,
  32014. bottom: 11/1366
  32015. }
  32016. },
  32017. frontNsfw: {
  32018. height: math.unit(3 + 10/12, "feet"),
  32019. weight: math.unit(90, "lb"),
  32020. name: "Front (NSFW)",
  32021. image: {
  32022. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32023. extra: 1327/1216,
  32024. bottom: 96/1423
  32025. }
  32026. },
  32027. backNsfw: {
  32028. height: math.unit(3 + 10/12, "feet"),
  32029. weight: math.unit(90, "lb"),
  32030. name: "Back (NSFW)",
  32031. image: {
  32032. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32033. extra: 1355/1247,
  32034. bottom: 11/1366
  32035. }
  32036. },
  32037. },
  32038. [
  32039. {
  32040. name: "Normal",
  32041. height: math.unit(3 + 10/12, "feet"),
  32042. default: true
  32043. },
  32044. ]
  32045. ))
  32046. characterMakers.push(() => makeCharacter(
  32047. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32048. {
  32049. front: {
  32050. height: math.unit(9 + 6/12, "feet"),
  32051. weight: math.unit(940, "lb"),
  32052. name: "Front",
  32053. image: {
  32054. source: "./media/characters/byliss/front.svg",
  32055. extra: 1327/1290,
  32056. bottom: 82/1409
  32057. }
  32058. },
  32059. back: {
  32060. height: math.unit(9 + 6/12, "feet"),
  32061. weight: math.unit(940, "lb"),
  32062. name: "Back",
  32063. image: {
  32064. source: "./media/characters/byliss/back.svg",
  32065. extra: 1376/1349,
  32066. bottom: 9/1385
  32067. }
  32068. },
  32069. frontNsfw: {
  32070. height: math.unit(9 + 6/12, "feet"),
  32071. weight: math.unit(940, "lb"),
  32072. name: "Front (NSFW)",
  32073. image: {
  32074. source: "./media/characters/byliss/front-nsfw.svg",
  32075. extra: 1327/1290,
  32076. bottom: 82/1409
  32077. }
  32078. },
  32079. backNsfw: {
  32080. height: math.unit(9 + 6/12, "feet"),
  32081. weight: math.unit(940, "lb"),
  32082. name: "Back (NSFW)",
  32083. image: {
  32084. source: "./media/characters/byliss/back-nsfw.svg",
  32085. extra: 1376/1349,
  32086. bottom: 9/1385
  32087. }
  32088. },
  32089. },
  32090. [
  32091. {
  32092. name: "Normal",
  32093. height: math.unit(9 + 6/12, "feet"),
  32094. default: true
  32095. },
  32096. ]
  32097. ))
  32098. characterMakers.push(() => makeCharacter(
  32099. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32100. {
  32101. front: {
  32102. height: math.unit(5 + 2/12, "feet"),
  32103. weight: math.unit(200, "lb"),
  32104. name: "Front",
  32105. image: {
  32106. source: "./media/characters/noraly/front.svg",
  32107. extra: 4985/4773,
  32108. bottom: 150/5135
  32109. }
  32110. },
  32111. full: {
  32112. height: math.unit(5 + 2/12, "feet"),
  32113. weight: math.unit(164, "lb"),
  32114. name: "Full",
  32115. image: {
  32116. source: "./media/characters/noraly/full.svg",
  32117. extra: 1114/1059,
  32118. bottom: 35/1149
  32119. }
  32120. },
  32121. fuller: {
  32122. height: math.unit(5 + 2/12, "feet"),
  32123. weight: math.unit(230, "lb"),
  32124. name: "Fuller",
  32125. image: {
  32126. source: "./media/characters/noraly/fuller.svg",
  32127. extra: 1114/1059,
  32128. bottom: 35/1149
  32129. }
  32130. },
  32131. fullest: {
  32132. height: math.unit(5 + 2/12, "feet"),
  32133. weight: math.unit(300, "lb"),
  32134. name: "Fullest",
  32135. image: {
  32136. source: "./media/characters/noraly/fullest.svg",
  32137. extra: 1114/1059,
  32138. bottom: 35/1149
  32139. }
  32140. },
  32141. },
  32142. [
  32143. {
  32144. name: "Normal",
  32145. height: math.unit(5 + 2/12, "feet"),
  32146. default: true
  32147. },
  32148. ]
  32149. ))
  32150. characterMakers.push(() => makeCharacter(
  32151. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32152. {
  32153. front: {
  32154. height: math.unit(5 + 2/12, "feet"),
  32155. weight: math.unit(210, "lb"),
  32156. name: "Front",
  32157. image: {
  32158. source: "./media/characters/pera/front.svg",
  32159. extra: 1560/1531,
  32160. bottom: 165/1725
  32161. }
  32162. },
  32163. back: {
  32164. height: math.unit(5 + 2/12, "feet"),
  32165. weight: math.unit(210, "lb"),
  32166. name: "Back",
  32167. image: {
  32168. source: "./media/characters/pera/back.svg",
  32169. extra: 1523/1493,
  32170. bottom: 152/1675
  32171. }
  32172. },
  32173. dick: {
  32174. height: math.unit(2.4, "feet"),
  32175. name: "Dick",
  32176. image: {
  32177. source: "./media/characters/pera/dick.svg"
  32178. }
  32179. },
  32180. },
  32181. [
  32182. {
  32183. name: "Normal",
  32184. height: math.unit(5 + 2/12, "feet"),
  32185. default: true
  32186. },
  32187. ]
  32188. ))
  32189. characterMakers.push(() => makeCharacter(
  32190. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32191. {
  32192. front: {
  32193. height: math.unit(12, "feet"),
  32194. weight: math.unit(3200, "lb"),
  32195. name: "Front",
  32196. image: {
  32197. source: "./media/characters/julian/front.svg",
  32198. extra: 2962/2701,
  32199. bottom: 184/3146
  32200. }
  32201. },
  32202. maw: {
  32203. height: math.unit(5.35, "feet"),
  32204. name: "Maw",
  32205. image: {
  32206. source: "./media/characters/julian/maw.svg"
  32207. }
  32208. },
  32209. paw: {
  32210. height: math.unit(3.07, "feet"),
  32211. name: "Paw",
  32212. image: {
  32213. source: "./media/characters/julian/paw.svg"
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Default",
  32220. height: math.unit(12, "feet"),
  32221. default: true
  32222. },
  32223. {
  32224. name: "Big",
  32225. height: math.unit(50, "feet")
  32226. },
  32227. {
  32228. name: "Really Big",
  32229. height: math.unit(1, "mile")
  32230. },
  32231. {
  32232. name: "Extremely Big",
  32233. height: math.unit(100, "miles")
  32234. },
  32235. {
  32236. name: "Planet Hugger",
  32237. height: math.unit(200, "megameters")
  32238. },
  32239. {
  32240. name: "Unreasonably Big",
  32241. height: math.unit(1e300, "meters")
  32242. },
  32243. ]
  32244. ))
  32245. characterMakers.push(() => makeCharacter(
  32246. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32247. {
  32248. solgooleo: {
  32249. height: math.unit(4, "meters"),
  32250. weight: math.unit(6000*1.5, "kg"),
  32251. volume: math.unit(6000, "liters"),
  32252. name: "Solgooleo",
  32253. image: {
  32254. source: "./media/characters/pi/solgooleo.svg",
  32255. extra: 388/331,
  32256. bottom: 29/417
  32257. }
  32258. },
  32259. },
  32260. [
  32261. {
  32262. name: "Normal",
  32263. height: math.unit(4, "meters"),
  32264. default: true
  32265. },
  32266. ]
  32267. ))
  32268. characterMakers.push(() => makeCharacter(
  32269. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32270. {
  32271. front: {
  32272. height: math.unit(8 + 2/12, "feet"),
  32273. weight: math.unit(4, "tons"),
  32274. name: "Front",
  32275. image: {
  32276. source: "./media/characters/shaun/front.svg",
  32277. extra: 1550/1505,
  32278. bottom: 353/1903
  32279. }
  32280. },
  32281. },
  32282. [
  32283. {
  32284. name: "Lorg",
  32285. height: math.unit(8 + 2/12, "feet"),
  32286. default: true
  32287. },
  32288. ]
  32289. ))
  32290. characterMakers.push(() => makeCharacter(
  32291. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32292. {
  32293. front: {
  32294. height: math.unit(7, "feet"),
  32295. name: "Front",
  32296. image: {
  32297. source: "./media/characters/sini/front.svg",
  32298. extra: 726/678,
  32299. bottom: 35/761
  32300. }
  32301. },
  32302. back: {
  32303. height: math.unit(7, "feet"),
  32304. name: "Back",
  32305. image: {
  32306. source: "./media/characters/sini/back.svg",
  32307. extra: 743/701,
  32308. bottom: 12/755
  32309. }
  32310. },
  32311. mawAnthro: {
  32312. height: math.unit(2.14, "feet"),
  32313. name: "Maw (Anthro)",
  32314. image: {
  32315. source: "./media/characters/sini/maw-anthro.svg"
  32316. }
  32317. },
  32318. dick: {
  32319. height: math.unit(1.45, "feet"),
  32320. name: "Dick (Anthro)",
  32321. image: {
  32322. source: "./media/characters/sini/dick-anthro.svg"
  32323. }
  32324. },
  32325. feral: {
  32326. height: math.unit(16, "feet"),
  32327. name: "Feral",
  32328. image: {
  32329. source: "./media/characters/sini/feral.svg",
  32330. extra: 814/605,
  32331. bottom: 11/825
  32332. }
  32333. },
  32334. mawFeral: {
  32335. height: math.unit(5.66, "feet"),
  32336. name: "Maw-feral",
  32337. image: {
  32338. source: "./media/characters/sini/maw-feral.svg"
  32339. }
  32340. },
  32341. footFeral: {
  32342. height: math.unit(5.17, "feet"),
  32343. name: "Foot-feral",
  32344. image: {
  32345. source: "./media/characters/sini/foot-feral.svg"
  32346. }
  32347. },
  32348. },
  32349. [
  32350. {
  32351. name: "Normal",
  32352. height: math.unit(7, "feet"),
  32353. default: true
  32354. },
  32355. ]
  32356. ))
  32357. characterMakers.push(() => makeCharacter(
  32358. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32359. {
  32360. side: {
  32361. height: math.unit(13, "meters"),
  32362. weight: math.unit(9072, "kg"),
  32363. name: "Side",
  32364. image: {
  32365. source: "./media/characters/raylldo/side.svg",
  32366. extra: 403/344,
  32367. bottom: 42/445
  32368. }
  32369. },
  32370. leaping: {
  32371. height: math.unit(12.3, "meters"),
  32372. weight: math.unit(9072, "kg"),
  32373. name: "Leaping",
  32374. image: {
  32375. source: "./media/characters/raylldo/leaping.svg",
  32376. extra: 470/249,
  32377. bottom: 13/483
  32378. }
  32379. },
  32380. flying: {
  32381. height: math.unit(18, "meters"),
  32382. weight: math.unit(9072, "kg"),
  32383. name: "Flying",
  32384. image: {
  32385. source: "./media/characters/raylldo/flying.svg"
  32386. }
  32387. },
  32388. head: {
  32389. height: math.unit(5.85, "meters"),
  32390. name: "Head",
  32391. image: {
  32392. source: "./media/characters/raylldo/head.svg"
  32393. }
  32394. },
  32395. maw: {
  32396. height: math.unit(5.32, "meters"),
  32397. name: "Maw",
  32398. image: {
  32399. source: "./media/characters/raylldo/maw.svg"
  32400. }
  32401. },
  32402. eye: {
  32403. height: math.unit(0.54, "meters"),
  32404. name: "Eye",
  32405. image: {
  32406. source: "./media/characters/raylldo/eye.svg"
  32407. }
  32408. },
  32409. },
  32410. [
  32411. {
  32412. name: "Normal",
  32413. height: math.unit(13, "meters"),
  32414. default: true
  32415. },
  32416. ]
  32417. ))
  32418. characterMakers.push(() => makeCharacter(
  32419. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32420. {
  32421. anthroFront: {
  32422. height: math.unit(9, "feet"),
  32423. weight: math.unit(600, "lb"),
  32424. name: "Anthro (Front)",
  32425. image: {
  32426. source: "./media/characters/glint/anthro-front.svg",
  32427. extra: 1097/1018,
  32428. bottom: 28/1125
  32429. }
  32430. },
  32431. anthroBack: {
  32432. height: math.unit(9, "feet"),
  32433. weight: math.unit(600, "lb"),
  32434. name: "Anthro (Back)",
  32435. image: {
  32436. source: "./media/characters/glint/anthro-back.svg",
  32437. extra: 1154/997,
  32438. bottom: 36/1190
  32439. }
  32440. },
  32441. feral: {
  32442. height: math.unit(11, "feet"),
  32443. weight: math.unit(50000, "lb"),
  32444. name: "Feral",
  32445. image: {
  32446. source: "./media/characters/glint/feral.svg",
  32447. extra: 3035/1585,
  32448. bottom: 1169/4204
  32449. }
  32450. },
  32451. dickAnthro: {
  32452. height: math.unit(0.7, "meters"),
  32453. name: "Dick (Anthro)",
  32454. image: {
  32455. source: "./media/characters/glint/dick-anthro.svg"
  32456. }
  32457. },
  32458. dickFeral: {
  32459. height: math.unit(2.65, "meters"),
  32460. name: "Dick (Feral)",
  32461. image: {
  32462. source: "./media/characters/glint/dick-feral.svg"
  32463. }
  32464. },
  32465. slitHidden: {
  32466. height: math.unit(5.85, "meters"),
  32467. name: "Slit (Hidden)",
  32468. image: {
  32469. source: "./media/characters/glint/slit-hidden.svg"
  32470. }
  32471. },
  32472. slitErect: {
  32473. height: math.unit(5.85, "meters"),
  32474. name: "Slit (Erect)",
  32475. image: {
  32476. source: "./media/characters/glint/slit-erect.svg"
  32477. }
  32478. },
  32479. mawAnthro: {
  32480. height: math.unit(0.63, "meters"),
  32481. name: "Maw (Anthro)",
  32482. image: {
  32483. source: "./media/characters/glint/maw.svg"
  32484. }
  32485. },
  32486. mawFeral: {
  32487. height: math.unit(2.89, "meters"),
  32488. name: "Maw (Feral)",
  32489. image: {
  32490. source: "./media/characters/glint/maw.svg"
  32491. }
  32492. },
  32493. },
  32494. [
  32495. {
  32496. name: "Normal",
  32497. height: math.unit(9, "feet"),
  32498. default: true
  32499. },
  32500. ]
  32501. ))
  32502. characterMakers.push(() => makeCharacter(
  32503. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32504. {
  32505. side: {
  32506. height: math.unit(15, "feet"),
  32507. weight: math.unit(5000, "kg"),
  32508. name: "Side",
  32509. image: {
  32510. source: "./media/characters/kairne/side.svg",
  32511. extra: 979/811,
  32512. bottom: 13/992
  32513. }
  32514. },
  32515. front: {
  32516. height: math.unit(15, "feet"),
  32517. weight: math.unit(5000, "kg"),
  32518. name: "Front",
  32519. image: {
  32520. source: "./media/characters/kairne/front.svg",
  32521. extra: 908/814,
  32522. bottom: 26/934
  32523. }
  32524. },
  32525. sideNsfw: {
  32526. height: math.unit(15, "feet"),
  32527. weight: math.unit(5000, "kg"),
  32528. name: "Side (NSFW)",
  32529. image: {
  32530. source: "./media/characters/kairne/side-nsfw.svg",
  32531. extra: 979/811,
  32532. bottom: 13/992
  32533. }
  32534. },
  32535. frontNsfw: {
  32536. height: math.unit(15, "feet"),
  32537. weight: math.unit(5000, "kg"),
  32538. name: "Front (NSFW)",
  32539. image: {
  32540. source: "./media/characters/kairne/front-nsfw.svg",
  32541. extra: 908/814,
  32542. bottom: 26/934
  32543. }
  32544. },
  32545. dickCaged: {
  32546. height: math.unit(0.65, "meters"),
  32547. name: "Dick-caged",
  32548. image: {
  32549. source: "./media/characters/kairne/dick-caged.svg"
  32550. }
  32551. },
  32552. dick: {
  32553. height: math.unit(0.79, "meters"),
  32554. name: "Dick",
  32555. image: {
  32556. source: "./media/characters/kairne/dick.svg"
  32557. }
  32558. },
  32559. genitals: {
  32560. height: math.unit(1.29, "meters"),
  32561. name: "Genitals",
  32562. image: {
  32563. source: "./media/characters/kairne/genitals.svg"
  32564. }
  32565. },
  32566. maw: {
  32567. height: math.unit(1.73, "meters"),
  32568. name: "Maw",
  32569. image: {
  32570. source: "./media/characters/kairne/maw.svg"
  32571. }
  32572. },
  32573. },
  32574. [
  32575. {
  32576. name: "Normal",
  32577. height: math.unit(15, "feet"),
  32578. default: true
  32579. },
  32580. ]
  32581. ))
  32582. characterMakers.push(() => makeCharacter(
  32583. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32584. {
  32585. front: {
  32586. height: math.unit(5 + 8/12, "feet"),
  32587. weight: math.unit(139, "lb"),
  32588. name: "Front",
  32589. image: {
  32590. source: "./media/characters/biscuit-jackal/front.svg",
  32591. extra: 2106/1961,
  32592. bottom: 58/2164
  32593. }
  32594. },
  32595. back: {
  32596. height: math.unit(5 + 8/12, "feet"),
  32597. weight: math.unit(139, "lb"),
  32598. name: "Back",
  32599. image: {
  32600. source: "./media/characters/biscuit-jackal/back.svg",
  32601. extra: 2132/1976,
  32602. bottom: 57/2189
  32603. }
  32604. },
  32605. werejackal: {
  32606. height: math.unit(6 + 3/12, "feet"),
  32607. weight: math.unit(188, "lb"),
  32608. name: "Werejackal",
  32609. image: {
  32610. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32611. extra: 2373/2178,
  32612. bottom: 53/2426
  32613. }
  32614. },
  32615. },
  32616. [
  32617. {
  32618. name: "Normal",
  32619. height: math.unit(5 + 8/12, "feet"),
  32620. default: true
  32621. },
  32622. ]
  32623. ))
  32624. characterMakers.push(() => makeCharacter(
  32625. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32626. {
  32627. front: {
  32628. height: math.unit(140, "cm"),
  32629. weight: math.unit(45, "kg"),
  32630. name: "Front",
  32631. image: {
  32632. source: "./media/characters/tayra-white/front.svg",
  32633. extra: 2229/2192,
  32634. bottom: 75/2304
  32635. }
  32636. },
  32637. },
  32638. [
  32639. {
  32640. name: "Normal",
  32641. height: math.unit(140, "cm"),
  32642. default: true
  32643. },
  32644. ]
  32645. ))
  32646. characterMakers.push(() => makeCharacter(
  32647. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32648. {
  32649. front: {
  32650. height: math.unit(4 + 5/12, "feet"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/scoop/front.svg",
  32654. extra: 1257/1136,
  32655. bottom: 69/1326
  32656. }
  32657. },
  32658. back: {
  32659. height: math.unit(4 + 5/12, "feet"),
  32660. name: "Back",
  32661. image: {
  32662. source: "./media/characters/scoop/back.svg",
  32663. extra: 1321/1152,
  32664. bottom: 32/1353
  32665. }
  32666. },
  32667. maw: {
  32668. height: math.unit(0.68, "feet"),
  32669. name: "Maw",
  32670. image: {
  32671. source: "./media/characters/scoop/maw.svg"
  32672. }
  32673. },
  32674. },
  32675. [
  32676. {
  32677. name: "Really Small",
  32678. height: math.unit(1, "mm")
  32679. },
  32680. {
  32681. name: "Micro",
  32682. height: math.unit(1, "inch")
  32683. },
  32684. {
  32685. name: "Normal",
  32686. height: math.unit(4 + 5/12, "feet"),
  32687. default: true
  32688. },
  32689. {
  32690. name: "Macro",
  32691. height: math.unit(200, "feet")
  32692. },
  32693. {
  32694. name: "Megamacro",
  32695. height: math.unit(3240, "feet")
  32696. },
  32697. {
  32698. name: "Teramacro",
  32699. height: math.unit(2500, "miles")
  32700. },
  32701. ]
  32702. ))
  32703. characterMakers.push(() => makeCharacter(
  32704. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32705. {
  32706. front: {
  32707. height: math.unit(15 + 7/12, "feet"),
  32708. name: "Front",
  32709. image: {
  32710. source: "./media/characters/saphinara/front.svg",
  32711. extra: 604/546,
  32712. bottom: 19/623
  32713. }
  32714. },
  32715. side: {
  32716. height: math.unit(15 + 7/12, "feet"),
  32717. name: "Side",
  32718. image: {
  32719. source: "./media/characters/saphinara/side.svg",
  32720. extra: 605/547,
  32721. bottom: 6/611
  32722. }
  32723. },
  32724. back: {
  32725. height: math.unit(15 + 7/12, "feet"),
  32726. name: "Back",
  32727. image: {
  32728. source: "./media/characters/saphinara/back.svg",
  32729. extra: 591/531,
  32730. bottom: 13/604
  32731. }
  32732. },
  32733. frontTail: {
  32734. height: math.unit(15 + 7/12, "feet"),
  32735. name: "Front (Full Tail)",
  32736. image: {
  32737. source: "./media/characters/saphinara/front-tail.svg",
  32738. extra: 748/547,
  32739. bottom: 66/814
  32740. }
  32741. },
  32742. },
  32743. [
  32744. {
  32745. name: "Normal",
  32746. height: math.unit(15 + 7/12, "feet"),
  32747. default: true
  32748. },
  32749. {
  32750. name: "Angry",
  32751. height: math.unit(30 + 6/12, "feet")
  32752. },
  32753. {
  32754. name: "Enraged",
  32755. height: math.unit(102 + 1/12, "feet")
  32756. },
  32757. ]
  32758. ))
  32759. characterMakers.push(() => makeCharacter(
  32760. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32761. {
  32762. front: {
  32763. height: math.unit(6 + 8/12, "feet"),
  32764. weight: math.unit(300, "lb"),
  32765. name: "Front",
  32766. image: {
  32767. source: "./media/characters/jrain/front.svg",
  32768. extra: 3039/2865,
  32769. bottom: 399/3438
  32770. }
  32771. },
  32772. back: {
  32773. height: math.unit(6 + 8/12, "feet"),
  32774. weight: math.unit(300, "lb"),
  32775. name: "Back",
  32776. image: {
  32777. source: "./media/characters/jrain/back.svg",
  32778. extra: 3089/2938,
  32779. bottom: 172/3261
  32780. }
  32781. },
  32782. head: {
  32783. height: math.unit(2.14, "feet"),
  32784. name: "Head",
  32785. image: {
  32786. source: "./media/characters/jrain/head.svg"
  32787. }
  32788. },
  32789. maw: {
  32790. height: math.unit(1.77, "feet"),
  32791. name: "Maw",
  32792. image: {
  32793. source: "./media/characters/jrain/maw.svg"
  32794. }
  32795. },
  32796. leftHand: {
  32797. height: math.unit(1.1, "feet"),
  32798. name: "Left Hand",
  32799. image: {
  32800. source: "./media/characters/jrain/left-hand.svg"
  32801. }
  32802. },
  32803. rightHand: {
  32804. height: math.unit(1.1, "feet"),
  32805. name: "Right Hand",
  32806. image: {
  32807. source: "./media/characters/jrain/right-hand.svg"
  32808. }
  32809. },
  32810. eye: {
  32811. height: math.unit(0.35, "feet"),
  32812. name: "Eye",
  32813. image: {
  32814. source: "./media/characters/jrain/eye.svg"
  32815. }
  32816. },
  32817. },
  32818. [
  32819. {
  32820. name: "Normal",
  32821. height: math.unit(6 + 8/12, "feet"),
  32822. default: true
  32823. },
  32824. {
  32825. name: "Casually Large",
  32826. height: math.unit(25, "feet")
  32827. },
  32828. {
  32829. name: "Giant",
  32830. height: math.unit(100, "feet")
  32831. },
  32832. {
  32833. name: "Kaiju",
  32834. height: math.unit(300, "feet")
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32840. {
  32841. dragon: {
  32842. height: math.unit(5, "meters"),
  32843. name: "Dragon",
  32844. image: {
  32845. source: "./media/characters/sabrina/dragon.svg",
  32846. extra: 3670 / 2365,
  32847. bottom: 333 / 4003
  32848. }
  32849. },
  32850. gryphon: {
  32851. height: math.unit(3, "meters"),
  32852. name: "Gryphon",
  32853. image: {
  32854. source: "./media/characters/sabrina/gryphon.svg",
  32855. extra: 1576 / 945,
  32856. bottom: 71 / 1647
  32857. }
  32858. },
  32859. snake: {
  32860. height: math.unit(12, "meters"),
  32861. name: "Snake",
  32862. image: {
  32863. source: "./media/characters/sabrina/snake.svg",
  32864. extra: 1758 / 1320,
  32865. bottom: 186 / 1944
  32866. }
  32867. },
  32868. collar: {
  32869. height: math.unit(1.86, "meters"),
  32870. name: "Collar",
  32871. image: {
  32872. source: "./media/characters/sabrina/collar.svg"
  32873. }
  32874. },
  32875. eye: {
  32876. height: math.unit(0.53, "meters"),
  32877. name: "Eye",
  32878. image: {
  32879. source: "./media/characters/sabrina/eye.svg"
  32880. }
  32881. },
  32882. foot: {
  32883. height: math.unit(1.86, "meters"),
  32884. name: "Foot",
  32885. image: {
  32886. source: "./media/characters/sabrina/foot.svg"
  32887. }
  32888. },
  32889. hand: {
  32890. height: math.unit(1.32, "meters"),
  32891. name: "Hand",
  32892. image: {
  32893. source: "./media/characters/sabrina/hand.svg"
  32894. }
  32895. },
  32896. head: {
  32897. height: math.unit(2.44, "meters"),
  32898. name: "Head",
  32899. image: {
  32900. source: "./media/characters/sabrina/head.svg"
  32901. }
  32902. },
  32903. headAngry: {
  32904. height: math.unit(2.44, "meters"),
  32905. name: "Head (Angry))",
  32906. image: {
  32907. source: "./media/characters/sabrina/head-angry.svg"
  32908. }
  32909. },
  32910. maw: {
  32911. height: math.unit(1.65, "meters"),
  32912. name: "Maw",
  32913. image: {
  32914. source: "./media/characters/sabrina/maw.svg"
  32915. }
  32916. },
  32917. spikes: {
  32918. height: math.unit(1.69, "meters"),
  32919. name: "Spikes",
  32920. image: {
  32921. source: "./media/characters/sabrina/spikes.svg"
  32922. }
  32923. },
  32924. stomach: {
  32925. height: math.unit(1.15, "meters"),
  32926. name: "Stomach",
  32927. image: {
  32928. source: "./media/characters/sabrina/stomach.svg"
  32929. }
  32930. },
  32931. tongue: {
  32932. height: math.unit(1.27, "meters"),
  32933. name: "Tongue",
  32934. image: {
  32935. source: "./media/characters/sabrina/tongue.svg"
  32936. }
  32937. },
  32938. wingDorsal: {
  32939. height: math.unit(4.85, "meters"),
  32940. name: "Wing (Dorsal)",
  32941. image: {
  32942. source: "./media/characters/sabrina/wing-dorsal.svg"
  32943. }
  32944. },
  32945. wingVentral: {
  32946. height: math.unit(4.85, "meters"),
  32947. name: "Wing (Ventral)",
  32948. image: {
  32949. source: "./media/characters/sabrina/wing-ventral.svg"
  32950. }
  32951. },
  32952. },
  32953. [
  32954. {
  32955. name: "Normal",
  32956. height: math.unit(5, "meters"),
  32957. default: true
  32958. },
  32959. ]
  32960. ))
  32961. characterMakers.push(() => makeCharacter(
  32962. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32963. {
  32964. frontMaid: {
  32965. height: math.unit(5 + 5/12, "feet"),
  32966. weight: math.unit(130, "lb"),
  32967. name: "Front (Maid)",
  32968. image: {
  32969. source: "./media/characters/midnight-tales/front-maid.svg",
  32970. extra: 489/454,
  32971. bottom: 61/550
  32972. }
  32973. },
  32974. frontFormal: {
  32975. height: math.unit(5 + 5/12, "feet"),
  32976. weight: math.unit(130, "lb"),
  32977. name: "Front (Formal)",
  32978. image: {
  32979. source: "./media/characters/midnight-tales/front-formal.svg",
  32980. extra: 489/454,
  32981. bottom: 61/550
  32982. }
  32983. },
  32984. back: {
  32985. height: math.unit(5 + 5/12, "feet"),
  32986. weight: math.unit(130, "lb"),
  32987. name: "Back",
  32988. image: {
  32989. source: "./media/characters/midnight-tales/back.svg",
  32990. extra: 498/456,
  32991. bottom: 33/531
  32992. }
  32993. },
  32994. frontBeast: {
  32995. height: math.unit(40, "feet"),
  32996. weight: math.unit(64000, "lb"),
  32997. name: "Front (Beast)",
  32998. image: {
  32999. source: "./media/characters/midnight-tales/front-beast.svg",
  33000. extra: 927/860,
  33001. bottom: 53/980
  33002. }
  33003. },
  33004. backBeast: {
  33005. height: math.unit(40, "feet"),
  33006. weight: math.unit(64000, "lb"),
  33007. name: "Back (Beast)",
  33008. image: {
  33009. source: "./media/characters/midnight-tales/back-beast.svg",
  33010. extra: 929/855,
  33011. bottom: 16/945
  33012. }
  33013. },
  33014. footBeast: {
  33015. height: math.unit(6.7, "feet"),
  33016. name: "Foot (Beast)",
  33017. image: {
  33018. source: "./media/characters/midnight-tales/foot-beast.svg"
  33019. }
  33020. },
  33021. headBeast: {
  33022. height: math.unit(8, "feet"),
  33023. name: "Head (Beast)",
  33024. image: {
  33025. source: "./media/characters/midnight-tales/head-beast.svg"
  33026. }
  33027. },
  33028. },
  33029. [
  33030. {
  33031. name: "Normal",
  33032. height: math.unit(5 + 5 / 12, "feet"),
  33033. default: true
  33034. },
  33035. {
  33036. name: "Macro",
  33037. height: math.unit(25, "feet")
  33038. },
  33039. ]
  33040. ))
  33041. characterMakers.push(() => makeCharacter(
  33042. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33043. {
  33044. front: {
  33045. height: math.unit(5 + 10/12, "feet"),
  33046. name: "Front",
  33047. image: {
  33048. source: "./media/characters/argon/front.svg",
  33049. extra: 2009/1935,
  33050. bottom: 118/2127
  33051. }
  33052. },
  33053. back: {
  33054. height: math.unit(5 + 10/12, "feet"),
  33055. name: "Back",
  33056. image: {
  33057. source: "./media/characters/argon/back.svg",
  33058. extra: 2047/1992,
  33059. bottom: 20/2067
  33060. }
  33061. },
  33062. frontDressed: {
  33063. height: math.unit(5 + 10/12, "feet"),
  33064. name: "Front (Dressed)",
  33065. image: {
  33066. source: "./media/characters/argon/front-dressed.svg",
  33067. extra: 2009/1935,
  33068. bottom: 118/2127
  33069. }
  33070. },
  33071. },
  33072. [
  33073. {
  33074. name: "Normal",
  33075. height: math.unit(5 + 10/12, "feet"),
  33076. default: true
  33077. },
  33078. ]
  33079. ))
  33080. characterMakers.push(() => makeCharacter(
  33081. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33082. {
  33083. front: {
  33084. height: math.unit(8 + 6/12, "feet"),
  33085. weight: math.unit(1150, "lb"),
  33086. name: "Front",
  33087. image: {
  33088. source: "./media/characters/kichi/front.svg",
  33089. extra: 1267/1164,
  33090. bottom: 61/1328
  33091. }
  33092. },
  33093. back: {
  33094. height: math.unit(8 + 6/12, "feet"),
  33095. weight: math.unit(1150, "lb"),
  33096. name: "Back",
  33097. image: {
  33098. source: "./media/characters/kichi/back.svg",
  33099. extra: 1273/1166,
  33100. bottom: 33/1306
  33101. }
  33102. },
  33103. },
  33104. [
  33105. {
  33106. name: "Normal",
  33107. height: math.unit(8 + 6/12, "feet"),
  33108. default: true
  33109. },
  33110. ]
  33111. ))
  33112. characterMakers.push(() => makeCharacter(
  33113. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33114. {
  33115. front: {
  33116. height: math.unit(6, "feet"),
  33117. weight: math.unit(210, "lb"),
  33118. name: "Front",
  33119. image: {
  33120. source: "./media/characters/manetel-greyscale/front.svg",
  33121. extra: 350/312,
  33122. bottom: 8/358
  33123. }
  33124. },
  33125. },
  33126. [
  33127. {
  33128. name: "Micro",
  33129. height: math.unit(2, "inches")
  33130. },
  33131. {
  33132. name: "Normal",
  33133. height: math.unit(6, "feet"),
  33134. default: true
  33135. },
  33136. {
  33137. name: "Minimacro",
  33138. height: math.unit(17, "feet")
  33139. },
  33140. {
  33141. name: "Macro",
  33142. height: math.unit(117, "feet")
  33143. },
  33144. ]
  33145. ))
  33146. characterMakers.push(() => makeCharacter(
  33147. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33148. {
  33149. side: {
  33150. height: math.unit(5 + 1/12, "feet"),
  33151. weight: math.unit(418, "lb"),
  33152. name: "Side",
  33153. image: {
  33154. source: "./media/characters/softpurr/side.svg",
  33155. extra: 1993/1945,
  33156. bottom: 134/2127
  33157. }
  33158. },
  33159. front: {
  33160. height: math.unit(5 + 1/12, "feet"),
  33161. weight: math.unit(418, "lb"),
  33162. name: "Front",
  33163. image: {
  33164. source: "./media/characters/softpurr/front.svg",
  33165. extra: 1950/1856,
  33166. bottom: 174/2124
  33167. }
  33168. },
  33169. paw: {
  33170. height: math.unit(1, "feet"),
  33171. name: "Paw",
  33172. image: {
  33173. source: "./media/characters/softpurr/paw.svg"
  33174. }
  33175. },
  33176. },
  33177. [
  33178. {
  33179. name: "Normal",
  33180. height: math.unit(5 + 1/12, "feet"),
  33181. default: true
  33182. },
  33183. ]
  33184. ))
  33185. characterMakers.push(() => makeCharacter(
  33186. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33187. {
  33188. front: {
  33189. height: math.unit(260, "meters"),
  33190. name: "Front",
  33191. image: {
  33192. source: "./media/characters/anahita/front.svg",
  33193. extra: 665/635,
  33194. bottom: 89/754
  33195. }
  33196. },
  33197. },
  33198. [
  33199. {
  33200. name: "Macro",
  33201. height: math.unit(260, "meters"),
  33202. default: true
  33203. },
  33204. ]
  33205. ))
  33206. characterMakers.push(() => makeCharacter(
  33207. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33208. {
  33209. front: {
  33210. height: math.unit(4 + 10/12, "feet"),
  33211. weight: math.unit(160, "lb"),
  33212. name: "Front",
  33213. image: {
  33214. source: "./media/characters/chip-mouse/front.svg",
  33215. extra: 3528/3408,
  33216. bottom: 0/3528
  33217. }
  33218. },
  33219. frontNsfw: {
  33220. height: math.unit(4 + 10/12, "feet"),
  33221. weight: math.unit(160, "lb"),
  33222. name: "Front (NSFW)",
  33223. image: {
  33224. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33225. extra: 3528/3408,
  33226. bottom: 0/3528
  33227. }
  33228. },
  33229. },
  33230. [
  33231. {
  33232. name: "Normal",
  33233. height: math.unit(4 + 10/12, "feet"),
  33234. default: true
  33235. },
  33236. ]
  33237. ))
  33238. characterMakers.push(() => makeCharacter(
  33239. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33240. {
  33241. side: {
  33242. height: math.unit(10, "feet"),
  33243. weight: math.unit(14000, "lb"),
  33244. name: "Side",
  33245. image: {
  33246. source: "./media/characters/kremm/side.svg",
  33247. extra: 1390/1053,
  33248. bottom: 90/1480
  33249. }
  33250. },
  33251. gut: {
  33252. height: math.unit(5.8, "feet"),
  33253. name: "Gut",
  33254. image: {
  33255. source: "./media/characters/kremm/gut.svg"
  33256. }
  33257. },
  33258. ass: {
  33259. height: math.unit(6.1, "feet"),
  33260. name: "Ass",
  33261. image: {
  33262. source: "./media/characters/kremm/ass.svg"
  33263. }
  33264. },
  33265. jaws: {
  33266. height: math.unit(2.2, "feet"),
  33267. name: "Jaws",
  33268. image: {
  33269. source: "./media/characters/kremm/jaws.svg"
  33270. }
  33271. },
  33272. dick: {
  33273. height: math.unit(4.26, "feet"),
  33274. name: "Dick",
  33275. image: {
  33276. source: "./media/characters/kremm/dick.svg"
  33277. }
  33278. },
  33279. },
  33280. [
  33281. {
  33282. name: "Normal",
  33283. height: math.unit(10, "feet"),
  33284. default: true
  33285. },
  33286. ]
  33287. ))
  33288. characterMakers.push(() => makeCharacter(
  33289. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33290. {
  33291. front: {
  33292. height: math.unit(30, "stories"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/kai/front.svg",
  33296. extra: 1892/1718,
  33297. bottom: 162/2054
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Macro",
  33304. height: math.unit(30, "stories"),
  33305. default: true
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33311. {
  33312. front: {
  33313. height: math.unit(6 + 4/12, "feet"),
  33314. weight: math.unit(145, "lb"),
  33315. name: "Front",
  33316. image: {
  33317. source: "./media/characters/sykes/front.svg",
  33318. extra: 1321 / 1187,
  33319. bottom: 66 / 1387
  33320. }
  33321. },
  33322. back: {
  33323. height: math.unit(6 + 4/12, "feet"),
  33324. weight: math.unit(145, "lb"),
  33325. name: "Back",
  33326. image: {
  33327. source: "./media/characters/sykes/back.svg",
  33328. extra: 1326/1181,
  33329. bottom: 31/1357
  33330. }
  33331. },
  33332. handBack: {
  33333. height: math.unit(0.9, "feet"),
  33334. name: "Hand (Back)",
  33335. image: {
  33336. source: "./media/characters/sykes/hand-back.svg"
  33337. }
  33338. },
  33339. handFront: {
  33340. height: math.unit(0.839, "feet"),
  33341. name: "Hand (Front)",
  33342. image: {
  33343. source: "./media/characters/sykes/hand-front.svg"
  33344. }
  33345. },
  33346. leftFoot: {
  33347. height: math.unit(1.2, "feet"),
  33348. name: "Foot (Left)",
  33349. image: {
  33350. source: "./media/characters/sykes/foot-left.svg"
  33351. }
  33352. },
  33353. rightFoot: {
  33354. height: math.unit(1.2, "feet"),
  33355. name: "Foot (Right)",
  33356. image: {
  33357. source: "./media/characters/sykes/foot-right.svg"
  33358. }
  33359. },
  33360. maw: {
  33361. height: math.unit(1.93, "feet"),
  33362. name: "Maw",
  33363. image: {
  33364. source: "./media/characters/sykes/maw.svg"
  33365. }
  33366. },
  33367. teeth: {
  33368. height: math.unit(0.51, "feet"),
  33369. name: "Teeth",
  33370. image: {
  33371. source: "./media/characters/sykes/teeth.svg"
  33372. }
  33373. },
  33374. tongue: {
  33375. height: math.unit(2.13, "feet"),
  33376. name: "Tongue",
  33377. image: {
  33378. source: "./media/characters/sykes/tongue.svg"
  33379. }
  33380. },
  33381. uvula: {
  33382. height: math.unit(0.16, "feet"),
  33383. name: "Uvula",
  33384. image: {
  33385. source: "./media/characters/sykes/uvula.svg"
  33386. }
  33387. },
  33388. collar: {
  33389. height: math.unit(0.287, "feet"),
  33390. name: "Collar",
  33391. image: {
  33392. source: "./media/characters/sykes/collar.svg"
  33393. }
  33394. },
  33395. },
  33396. [
  33397. {
  33398. name: "Shrunken",
  33399. height: math.unit(5, "inches")
  33400. },
  33401. {
  33402. name: "Normal",
  33403. height: math.unit(6 + 4 / 12, "feet"),
  33404. default: true
  33405. },
  33406. {
  33407. name: "Big",
  33408. height: math.unit(15, "feet")
  33409. },
  33410. ]
  33411. ))
  33412. characterMakers.push(() => makeCharacter(
  33413. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33414. {
  33415. front: {
  33416. height: math.unit(5 + 8/12, "feet"),
  33417. weight: math.unit(190, "lb"),
  33418. name: "Front",
  33419. image: {
  33420. source: "./media/characters/oven-otter/front.svg",
  33421. extra: 1809/1740,
  33422. bottom: 181/1990
  33423. }
  33424. },
  33425. back: {
  33426. height: math.unit(5 + 8/12, "feet"),
  33427. weight: math.unit(190, "lb"),
  33428. name: "Back",
  33429. image: {
  33430. source: "./media/characters/oven-otter/back.svg",
  33431. extra: 1709/1635,
  33432. bottom: 118/1827
  33433. }
  33434. },
  33435. hand: {
  33436. height: math.unit(1.07, "feet"),
  33437. name: "Hand",
  33438. image: {
  33439. source: "./media/characters/oven-otter/hand.svg"
  33440. }
  33441. },
  33442. beans: {
  33443. height: math.unit(1.74, "feet"),
  33444. name: "Beans",
  33445. image: {
  33446. source: "./media/characters/oven-otter/beans.svg"
  33447. }
  33448. },
  33449. },
  33450. [
  33451. {
  33452. name: "Micro",
  33453. height: math.unit(0.5, "inches")
  33454. },
  33455. {
  33456. name: "Normal",
  33457. height: math.unit(5 + 8/12, "feet"),
  33458. default: true
  33459. },
  33460. {
  33461. name: "Macro",
  33462. height: math.unit(250, "feet")
  33463. },
  33464. {
  33465. name: "Really High",
  33466. height: math.unit(420, "feet")
  33467. },
  33468. ]
  33469. ))
  33470. characterMakers.push(() => makeCharacter(
  33471. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33472. {
  33473. front: {
  33474. height: math.unit(5, "meters"),
  33475. weight: math.unit(292000000000000, "kg"),
  33476. name: "Front",
  33477. image: {
  33478. source: "./media/characters/devourer/front.svg",
  33479. extra: 1800/1733,
  33480. bottom: 211/2011
  33481. }
  33482. },
  33483. maw: {
  33484. height: math.unit(1.1, "meter"),
  33485. name: "Maw",
  33486. image: {
  33487. source: "./media/characters/devourer/maw.svg"
  33488. }
  33489. },
  33490. },
  33491. [
  33492. {
  33493. name: "Small",
  33494. height: math.unit(3, "meters")
  33495. },
  33496. {
  33497. name: "Large",
  33498. height: math.unit(5, "meters"),
  33499. default: true
  33500. },
  33501. ]
  33502. ))
  33503. characterMakers.push(() => makeCharacter(
  33504. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33505. {
  33506. front: {
  33507. height: math.unit(6, "feet"),
  33508. weight: math.unit(400, "lb"),
  33509. name: "Front",
  33510. image: {
  33511. source: "./media/characters/ellarby/front.svg",
  33512. extra: 1909/1763,
  33513. bottom: 80/1989
  33514. }
  33515. },
  33516. back: {
  33517. height: math.unit(6, "feet"),
  33518. weight: math.unit(400, "lb"),
  33519. name: "Back",
  33520. image: {
  33521. source: "./media/characters/ellarby/back.svg",
  33522. extra: 1914/1784,
  33523. bottom: 172/2086
  33524. }
  33525. },
  33526. },
  33527. [
  33528. {
  33529. name: "Mischief",
  33530. height: math.unit(18, "inches")
  33531. },
  33532. {
  33533. name: "Trouble",
  33534. height: math.unit(12, "feet")
  33535. },
  33536. {
  33537. name: "Havoc",
  33538. height: math.unit(200, "feet"),
  33539. default: true
  33540. },
  33541. {
  33542. name: "Pandemonium",
  33543. height: math.unit(1, "mile")
  33544. },
  33545. {
  33546. name: "Catastrophe",
  33547. height: math.unit(100, "miles")
  33548. },
  33549. ]
  33550. ))
  33551. characterMakers.push(() => makeCharacter(
  33552. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33553. {
  33554. front: {
  33555. height: math.unit(4.7, "meters"),
  33556. weight: math.unit(6500, "kg"),
  33557. name: "Front",
  33558. image: {
  33559. source: "./media/characters/vex/front.svg",
  33560. extra: 1288/1140,
  33561. bottom: 100/1388
  33562. }
  33563. },
  33564. },
  33565. [
  33566. {
  33567. name: "Normal",
  33568. height: math.unit(4.7, "meters"),
  33569. default: true
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33575. {
  33576. normal: {
  33577. height: math.unit(6, "feet"),
  33578. weight: math.unit(350, "lb"),
  33579. name: "Normal",
  33580. image: {
  33581. source: "./media/characters/teshy/normal.svg",
  33582. extra: 1795/1735,
  33583. bottom: 16/1811
  33584. }
  33585. },
  33586. monsterFront: {
  33587. height: math.unit(12, "feet"),
  33588. weight: math.unit(4700, "lb"),
  33589. name: "Monster (Front)",
  33590. image: {
  33591. source: "./media/characters/teshy/monster-front.svg",
  33592. extra: 2042/2034,
  33593. bottom: 128/2170
  33594. }
  33595. },
  33596. monsterSide: {
  33597. height: math.unit(12, "feet"),
  33598. weight: math.unit(4700, "lb"),
  33599. name: "Monster (Side)",
  33600. image: {
  33601. source: "./media/characters/teshy/monster-side.svg",
  33602. extra: 2067/2056,
  33603. bottom: 70/2137
  33604. }
  33605. },
  33606. monsterBack: {
  33607. height: math.unit(12, "feet"),
  33608. weight: math.unit(4700, "lb"),
  33609. name: "Monster (Back)",
  33610. image: {
  33611. source: "./media/characters/teshy/monster-back.svg",
  33612. extra: 1921/1914,
  33613. bottom: 171/2092
  33614. }
  33615. },
  33616. },
  33617. [
  33618. {
  33619. name: "Normal",
  33620. height: math.unit(6, "feet"),
  33621. default: true
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33627. {
  33628. front: {
  33629. height: math.unit(6, "feet"),
  33630. name: "Front",
  33631. image: {
  33632. source: "./media/characters/ramey/front.svg",
  33633. extra: 790/787,
  33634. bottom: 27/817
  33635. }
  33636. },
  33637. },
  33638. [
  33639. {
  33640. name: "Normal",
  33641. height: math.unit(6, "feet"),
  33642. default: true
  33643. },
  33644. ]
  33645. ))
  33646. characterMakers.push(() => makeCharacter(
  33647. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33648. {
  33649. front: {
  33650. height: math.unit(5 + 5/12, "feet"),
  33651. weight: math.unit(120, "lb"),
  33652. name: "Front",
  33653. image: {
  33654. source: "./media/characters/phirae/front.svg",
  33655. extra: 2491/2436,
  33656. bottom: 38/2529
  33657. }
  33658. },
  33659. },
  33660. [
  33661. {
  33662. name: "Normal",
  33663. height: math.unit(5 + 5/12, "feet"),
  33664. default: true
  33665. },
  33666. ]
  33667. ))
  33668. characterMakers.push(() => makeCharacter(
  33669. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33670. {
  33671. front: {
  33672. height: math.unit(6, "feet"),
  33673. weight: math.unit(150, "lb"),
  33674. name: "Front",
  33675. image: {
  33676. source: "./media/characters/stagglas/front.svg",
  33677. extra: 962/882,
  33678. bottom: 53/1015
  33679. }
  33680. },
  33681. },
  33682. [
  33683. {
  33684. name: "Normal",
  33685. height: math.unit(5 + 3/12, "feet"),
  33686. default: true
  33687. },
  33688. ]
  33689. ))
  33690. characterMakers.push(() => makeCharacter(
  33691. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33692. {
  33693. front: {
  33694. height: math.unit(5 + 4/12, "feet"),
  33695. weight: math.unit(145, "lb"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/starra/front.svg",
  33699. extra: 1790/1691,
  33700. bottom: 91/1881
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(5 + 4/12, "feet"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(2.2, "meters"),
  33717. name: "Front",
  33718. image: {
  33719. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33720. extra: 1194/1005,
  33721. bottom: 25/1219
  33722. }
  33723. },
  33724. },
  33725. [
  33726. {
  33727. name: "Normal",
  33728. height: math.unit(2.2, "meters"),
  33729. default: true
  33730. },
  33731. ]
  33732. ))
  33733. characterMakers.push(() => makeCharacter(
  33734. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33735. {
  33736. side: {
  33737. height: math.unit(8 + 2/12, "feet"),
  33738. weight: math.unit(1240, "lb"),
  33739. name: "Side",
  33740. image: {
  33741. source: "./media/characters/mika-valentine/side.svg",
  33742. extra: 2670/2501,
  33743. bottom: 250/2920
  33744. }
  33745. },
  33746. },
  33747. [
  33748. {
  33749. name: "Normal",
  33750. height: math.unit(8 + 2/12, "feet"),
  33751. default: true
  33752. },
  33753. ]
  33754. ))
  33755. characterMakers.push(() => makeCharacter(
  33756. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33757. {
  33758. front: {
  33759. height: math.unit(7 + 2/12, "feet"),
  33760. name: "Front",
  33761. image: {
  33762. source: "./media/characters/xoltol/front.svg",
  33763. extra: 2212/2124,
  33764. bottom: 84/2296
  33765. }
  33766. },
  33767. side: {
  33768. height: math.unit(7 + 2/12, "feet"),
  33769. name: "Side",
  33770. image: {
  33771. source: "./media/characters/xoltol/side.svg",
  33772. extra: 2273/2197,
  33773. bottom: 26/2299
  33774. }
  33775. },
  33776. hand: {
  33777. height: math.unit(2.5, "feet"),
  33778. name: "Hand",
  33779. image: {
  33780. source: "./media/characters/xoltol/hand.svg"
  33781. }
  33782. },
  33783. },
  33784. [
  33785. {
  33786. name: "Small-ish",
  33787. height: math.unit(5 + 11/12, "feet")
  33788. },
  33789. {
  33790. name: "Normal",
  33791. height: math.unit(7 + 2/12, "feet")
  33792. },
  33793. {
  33794. name: "\"Macro\"",
  33795. height: math.unit(14 + 9/12, "feet"),
  33796. default: true
  33797. },
  33798. {
  33799. name: "Alternate Height",
  33800. height: math.unit(20, "feet")
  33801. },
  33802. {
  33803. name: "Actually Macro",
  33804. height: math.unit(100, "feet")
  33805. },
  33806. ]
  33807. ))
  33808. characterMakers.push(() => makeCharacter(
  33809. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33810. {
  33811. front: {
  33812. height: math.unit(5 + 2/12, "feet"),
  33813. name: "Front",
  33814. image: {
  33815. source: "./media/characters/kotetsu-redwood/front.svg",
  33816. extra: 1053/942,
  33817. bottom: 60/1113
  33818. }
  33819. },
  33820. },
  33821. [
  33822. {
  33823. name: "Normal",
  33824. height: math.unit(5 + 2/12, "feet"),
  33825. default: true
  33826. },
  33827. ]
  33828. ))
  33829. characterMakers.push(() => makeCharacter(
  33830. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33831. {
  33832. front: {
  33833. height: math.unit(2.4, "meters"),
  33834. weight: math.unit(125, "kg"),
  33835. name: "Front",
  33836. image: {
  33837. source: "./media/characters/lilith/front.svg",
  33838. extra: 1590/1513,
  33839. bottom: 203/1793
  33840. }
  33841. },
  33842. },
  33843. [
  33844. {
  33845. name: "Humanoid",
  33846. height: math.unit(2.4, "meters")
  33847. },
  33848. {
  33849. name: "Normal",
  33850. height: math.unit(6, "meters"),
  33851. default: true
  33852. },
  33853. {
  33854. name: "Largest",
  33855. height: math.unit(55, "meters")
  33856. },
  33857. ]
  33858. ))
  33859. characterMakers.push(() => makeCharacter(
  33860. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33861. {
  33862. front: {
  33863. height: math.unit(8 + 4/12, "feet"),
  33864. weight: math.unit(535, "lb"),
  33865. name: "Front",
  33866. image: {
  33867. source: "./media/characters/beh'kah-bolger/front.svg",
  33868. extra: 1660/1603,
  33869. bottom: 37/1697
  33870. }
  33871. },
  33872. },
  33873. [
  33874. {
  33875. name: "Normal",
  33876. height: math.unit(8 + 4/12, "feet"),
  33877. default: true
  33878. },
  33879. {
  33880. name: "Kaiju",
  33881. height: math.unit(250, "feet")
  33882. },
  33883. {
  33884. name: "Still Growing",
  33885. height: math.unit(10, "miles")
  33886. },
  33887. {
  33888. name: "Continental",
  33889. height: math.unit(5000, "miles")
  33890. },
  33891. {
  33892. name: "Final Form",
  33893. height: math.unit(2500000, "miles")
  33894. },
  33895. ]
  33896. ))
  33897. characterMakers.push(() => makeCharacter(
  33898. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33899. {
  33900. front: {
  33901. height: math.unit(7 + 2/12, "feet"),
  33902. weight: math.unit(230, "kg"),
  33903. name: "Front",
  33904. image: {
  33905. source: "./media/characters/tatyana-milewska/front.svg",
  33906. extra: 1199/1150,
  33907. bottom: 86/1285
  33908. }
  33909. },
  33910. },
  33911. [
  33912. {
  33913. name: "Normal",
  33914. height: math.unit(7 + 2/12, "feet"),
  33915. default: true
  33916. },
  33917. {
  33918. name: "Big",
  33919. height: math.unit(12, "feet")
  33920. },
  33921. {
  33922. name: "Minimacro",
  33923. height: math.unit(20, "feet")
  33924. },
  33925. {
  33926. name: "Macro",
  33927. height: math.unit(120, "feet")
  33928. },
  33929. ]
  33930. ))
  33931. characterMakers.push(() => makeCharacter(
  33932. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33933. {
  33934. front: {
  33935. height: math.unit(7 + 8/12, "feet"),
  33936. weight: math.unit(152, "kg"),
  33937. name: "Front",
  33938. image: {
  33939. source: "./media/characters/helen-arri/front.svg",
  33940. extra: 440/423,
  33941. bottom: 14/454
  33942. }
  33943. },
  33944. back: {
  33945. height: math.unit(7 + 8/12, "feet"),
  33946. weight: math.unit(152, "kg"),
  33947. name: "Back",
  33948. image: {
  33949. source: "./media/characters/helen-arri/back.svg",
  33950. extra: 443/426,
  33951. bottom: 8/451
  33952. }
  33953. },
  33954. },
  33955. [
  33956. {
  33957. name: "Normal",
  33958. height: math.unit(7 + 8/12, "feet"),
  33959. default: true
  33960. },
  33961. {
  33962. name: "Big",
  33963. height: math.unit(14, "feet")
  33964. },
  33965. {
  33966. name: "Minimacro",
  33967. height: math.unit(24, "feet")
  33968. },
  33969. {
  33970. name: "Macro",
  33971. height: math.unit(140, "feet")
  33972. },
  33973. ]
  33974. ))
  33975. characterMakers.push(() => makeCharacter(
  33976. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33977. {
  33978. front: {
  33979. height: math.unit(6, "meters"),
  33980. name: "Front",
  33981. image: {
  33982. source: "./media/characters/ehanu-rehu/front.svg",
  33983. extra: 1800/1800,
  33984. bottom: 59/1859
  33985. }
  33986. },
  33987. },
  33988. [
  33989. {
  33990. name: "Normal",
  33991. height: math.unit(6, "meters"),
  33992. default: true
  33993. },
  33994. ]
  33995. ))
  33996. characterMakers.push(() => makeCharacter(
  33997. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33998. {
  33999. front: {
  34000. height: math.unit(7 + 3/12, "feet"),
  34001. name: "Front",
  34002. image: {
  34003. source: "./media/characters/renholder/front.svg",
  34004. extra: 3096/2960,
  34005. bottom: 250/3346
  34006. }
  34007. },
  34008. },
  34009. [
  34010. {
  34011. name: "Normal Bat",
  34012. height: math.unit(7 + 3/12, "feet"),
  34013. default: true
  34014. },
  34015. {
  34016. name: "Slightly Tall Bat",
  34017. height: math.unit(100, "feet")
  34018. },
  34019. {
  34020. name: "Big Bat",
  34021. height: math.unit(1000, "feet")
  34022. },
  34023. {
  34024. name: "City-Sized Bat",
  34025. height: math.unit(200000, "feet")
  34026. },
  34027. {
  34028. name: "Bigger Bat",
  34029. height: math.unit(10000, "miles")
  34030. },
  34031. {
  34032. name: "Solar Sized Bat",
  34033. height: math.unit(100, "AU")
  34034. },
  34035. {
  34036. name: "Galactic Bat",
  34037. height: math.unit(200000, "lightyears")
  34038. },
  34039. {
  34040. name: "Universally Known Bat",
  34041. height: math.unit(1, "universe")
  34042. },
  34043. ]
  34044. ))
  34045. characterMakers.push(() => makeCharacter(
  34046. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34047. {
  34048. front: {
  34049. height: math.unit(6 + 11/12, "feet"),
  34050. weight: math.unit(250, "lb"),
  34051. name: "Front",
  34052. image: {
  34053. source: "./media/characters/cookiecat/front.svg",
  34054. extra: 893/827,
  34055. bottom: 14/907
  34056. }
  34057. },
  34058. },
  34059. [
  34060. {
  34061. name: "Micro",
  34062. height: math.unit(3, "inches")
  34063. },
  34064. {
  34065. name: "Normal",
  34066. height: math.unit(6 + 11/12, "feet"),
  34067. default: true
  34068. },
  34069. {
  34070. name: "Macro",
  34071. height: math.unit(100, "feet")
  34072. },
  34073. {
  34074. name: "Macro+",
  34075. height: math.unit(404, "feet")
  34076. },
  34077. {
  34078. name: "Megamacro",
  34079. height: math.unit(165, "miles")
  34080. },
  34081. {
  34082. name: "Planetary",
  34083. height: math.unit(4600, "miles")
  34084. },
  34085. ]
  34086. ))
  34087. characterMakers.push(() => makeCharacter(
  34088. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34089. {
  34090. front: {
  34091. height: math.unit(10 + 3/12, "feet"),
  34092. weight: math.unit(1500, "lb"),
  34093. name: "Front",
  34094. image: {
  34095. source: "./media/characters/tux-kusanagi/front.svg",
  34096. extra: 944/840,
  34097. bottom: 39/983
  34098. }
  34099. },
  34100. back: {
  34101. height: math.unit(10 + 3/12, "feet"),
  34102. weight: math.unit(1500, "lb"),
  34103. name: "Back",
  34104. image: {
  34105. source: "./media/characters/tux-kusanagi/back.svg",
  34106. extra: 941/842,
  34107. bottom: 28/969
  34108. }
  34109. },
  34110. rump: {
  34111. height: math.unit(5.25, "feet"),
  34112. name: "Rump",
  34113. image: {
  34114. source: "./media/characters/tux-kusanagi/rump.svg"
  34115. }
  34116. },
  34117. beak: {
  34118. height: math.unit(1.54, "feet"),
  34119. name: "Beak",
  34120. image: {
  34121. source: "./media/characters/tux-kusanagi/beak.svg"
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Normal",
  34128. height: math.unit(10 + 3/12, "feet"),
  34129. default: true
  34130. },
  34131. ]
  34132. ))
  34133. characterMakers.push(() => makeCharacter(
  34134. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34135. {
  34136. front: {
  34137. height: math.unit(58, "feet"),
  34138. weight: math.unit(200, "tons"),
  34139. name: "Front",
  34140. image: {
  34141. source: "./media/characters/uzarmazari/front.svg",
  34142. extra: 1575/1455,
  34143. bottom: 152/1727
  34144. }
  34145. },
  34146. back: {
  34147. height: math.unit(58, "feet"),
  34148. weight: math.unit(200, "tons"),
  34149. name: "Back",
  34150. image: {
  34151. source: "./media/characters/uzarmazari/back.svg",
  34152. extra: 1585/1510,
  34153. bottom: 157/1742
  34154. }
  34155. },
  34156. head: {
  34157. height: math.unit(26, "feet"),
  34158. name: "Head",
  34159. image: {
  34160. source: "./media/characters/uzarmazari/head.svg"
  34161. }
  34162. },
  34163. },
  34164. [
  34165. {
  34166. name: "Normal",
  34167. height: math.unit(58, "feet"),
  34168. default: true
  34169. },
  34170. ]
  34171. ))
  34172. characterMakers.push(() => makeCharacter(
  34173. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34174. {
  34175. side: {
  34176. height: math.unit(15, "feet"),
  34177. name: "Side",
  34178. image: {
  34179. source: "./media/characters/akitu/side.svg",
  34180. extra: 1421/1321,
  34181. bottom: 157/1578
  34182. }
  34183. },
  34184. front: {
  34185. height: math.unit(15, "feet"),
  34186. name: "Front",
  34187. image: {
  34188. source: "./media/characters/akitu/front.svg",
  34189. extra: 1435/1326,
  34190. bottom: 232/1667
  34191. }
  34192. },
  34193. },
  34194. [
  34195. {
  34196. name: "Normal",
  34197. height: math.unit(15, "feet"),
  34198. default: true
  34199. },
  34200. ]
  34201. ))
  34202. characterMakers.push(() => makeCharacter(
  34203. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34204. {
  34205. front: {
  34206. height: math.unit(10 + 8/12, "feet"),
  34207. name: "Front",
  34208. image: {
  34209. source: "./media/characters/azalie-croixland/front.svg",
  34210. extra: 1972/1856,
  34211. bottom: 31/2003
  34212. }
  34213. },
  34214. },
  34215. [
  34216. {
  34217. name: "Original Height",
  34218. height: math.unit(5 + 4/12, "feet")
  34219. },
  34220. {
  34221. name: "Normal Height",
  34222. height: math.unit(10 + 8/12, "feet"),
  34223. default: true
  34224. },
  34225. ]
  34226. ))
  34227. characterMakers.push(() => makeCharacter(
  34228. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34229. {
  34230. side: {
  34231. height: math.unit(7 + 1/12, "feet"),
  34232. weight: math.unit(245, "lb"),
  34233. name: "Side",
  34234. image: {
  34235. source: "./media/characters/kavus-kazian/side.svg",
  34236. extra: 349/342,
  34237. bottom: 15/364
  34238. }
  34239. },
  34240. },
  34241. [
  34242. {
  34243. name: "Normal",
  34244. height: math.unit(7 + 1/12, "feet"),
  34245. default: true
  34246. },
  34247. ]
  34248. ))
  34249. characterMakers.push(() => makeCharacter(
  34250. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34251. {
  34252. normal: {
  34253. height: math.unit(5 + 11/12, "feet"),
  34254. name: "Normal",
  34255. image: {
  34256. source: "./media/characters/moonlight-rose/normal.svg",
  34257. extra: 1979/1835,
  34258. bottom: 14/1993
  34259. }
  34260. },
  34261. demon: {
  34262. height: math.unit(5, "km"),
  34263. name: "Demon",
  34264. image: {
  34265. source: "./media/characters/moonlight-rose/demon.svg",
  34266. extra: 986/916,
  34267. bottom: 28/1014
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "\"Natural\" height",
  34274. height: math.unit(5 + 11/12, "feet")
  34275. },
  34276. {
  34277. name: "Comfortable Size",
  34278. height: math.unit(40, "meters")
  34279. },
  34280. {
  34281. name: "Common Size",
  34282. height: math.unit(50, "km"),
  34283. default: true
  34284. },
  34285. {
  34286. name: "Demonic",
  34287. height: math.unit(1.24415e+21, "meters")
  34288. },
  34289. ]
  34290. ))
  34291. characterMakers.push(() => makeCharacter(
  34292. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34293. {
  34294. front: {
  34295. height: math.unit(16, "feet"),
  34296. weight: math.unit(610, "kg"),
  34297. name: "Front",
  34298. image: {
  34299. source: "./media/characters/huckle/front.svg",
  34300. extra: 1731/1625,
  34301. bottom: 33/1764
  34302. }
  34303. },
  34304. back: {
  34305. height: math.unit(16, "feet"),
  34306. weight: math.unit(610, "kg"),
  34307. name: "Back",
  34308. image: {
  34309. source: "./media/characters/huckle/back.svg",
  34310. extra: 1738/1651,
  34311. bottom: 37/1775
  34312. }
  34313. },
  34314. laughing: {
  34315. height: math.unit(3.75, "feet"),
  34316. name: "Laughing",
  34317. image: {
  34318. source: "./media/characters/huckle/laughing.svg"
  34319. }
  34320. },
  34321. angry: {
  34322. height: math.unit(4.15, "feet"),
  34323. name: "Angry",
  34324. image: {
  34325. source: "./media/characters/huckle/angry.svg"
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Normal",
  34332. height: math.unit(16, "feet"),
  34333. default: true
  34334. },
  34335. {
  34336. name: "Mini Macro",
  34337. height: math.unit(463, "feet")
  34338. },
  34339. {
  34340. name: "Macro",
  34341. height: math.unit(1680, "meters")
  34342. },
  34343. {
  34344. name: "Mega Macro",
  34345. height: math.unit(175, "km")
  34346. },
  34347. {
  34348. name: "Terra Macro",
  34349. height: math.unit(32, "gigameters")
  34350. },
  34351. {
  34352. name: "Multiverse+",
  34353. height: math.unit(2.56e23, "yottameters")
  34354. },
  34355. ]
  34356. ))
  34357. characterMakers.push(() => makeCharacter(
  34358. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34359. {
  34360. front: {
  34361. height: math.unit(6 + 9/12, "feet"),
  34362. weight: math.unit(280, "lb"),
  34363. name: "Front",
  34364. image: {
  34365. source: "./media/characters/candy/front.svg",
  34366. extra: 234/217,
  34367. bottom: 11/245
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Really Small",
  34374. height: math.unit(0.1, "nm")
  34375. },
  34376. {
  34377. name: "Micro",
  34378. height: math.unit(2, "inches")
  34379. },
  34380. {
  34381. name: "Normal",
  34382. height: math.unit(6 + 9/12, "feet"),
  34383. default: true
  34384. },
  34385. {
  34386. name: "Small Macro",
  34387. height: math.unit(69, "feet")
  34388. },
  34389. {
  34390. name: "Macro",
  34391. height: math.unit(160, "feet")
  34392. },
  34393. {
  34394. name: "Megamacro",
  34395. height: math.unit(22000, "miles")
  34396. },
  34397. {
  34398. name: "Gigamacro",
  34399. height: math.unit(50000, "miles")
  34400. },
  34401. ]
  34402. ))
  34403. characterMakers.push(() => makeCharacter(
  34404. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34405. {
  34406. front: {
  34407. height: math.unit(4, "feet"),
  34408. weight: math.unit(90, "lb"),
  34409. name: "Front",
  34410. image: {
  34411. source: "./media/characters/joey-mcdonald/front.svg",
  34412. extra: 1059/852,
  34413. bottom: 33/1092
  34414. }
  34415. },
  34416. back: {
  34417. height: math.unit(4, "feet"),
  34418. weight: math.unit(90, "lb"),
  34419. name: "Back",
  34420. image: {
  34421. source: "./media/characters/joey-mcdonald/back.svg",
  34422. extra: 1077/879,
  34423. bottom: 5/1082
  34424. }
  34425. },
  34426. },
  34427. [
  34428. {
  34429. name: "Normal",
  34430. height: math.unit(4, "feet"),
  34431. default: true
  34432. },
  34433. ]
  34434. ))
  34435. characterMakers.push(() => makeCharacter(
  34436. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34437. {
  34438. front: {
  34439. height: math.unit(12 + 6/12, "feet"),
  34440. name: "Front",
  34441. image: {
  34442. source: "./media/characters/kass-lockheed/front.svg",
  34443. extra: 354/343,
  34444. bottom: 9/363
  34445. }
  34446. },
  34447. back: {
  34448. height: math.unit(12 + 6/12, "feet"),
  34449. name: "Back",
  34450. image: {
  34451. source: "./media/characters/kass-lockheed/back.svg",
  34452. extra: 364/352,
  34453. bottom: 3/367
  34454. }
  34455. },
  34456. dick: {
  34457. height: math.unit(3.12, "feet"),
  34458. name: "Dick",
  34459. image: {
  34460. source: "./media/characters/kass-lockheed/dick.svg"
  34461. }
  34462. },
  34463. head: {
  34464. height: math.unit(2.6, "feet"),
  34465. name: "Head",
  34466. image: {
  34467. source: "./media/characters/kass-lockheed/head.svg"
  34468. }
  34469. },
  34470. bleh: {
  34471. height: math.unit(2.85, "feet"),
  34472. name: "Bleh",
  34473. image: {
  34474. source: "./media/characters/kass-lockheed/bleh.svg"
  34475. }
  34476. },
  34477. smug: {
  34478. height: math.unit(2.85, "feet"),
  34479. name: "Smug",
  34480. image: {
  34481. source: "./media/characters/kass-lockheed/smug.svg"
  34482. }
  34483. },
  34484. },
  34485. [
  34486. {
  34487. name: "Normal",
  34488. height: math.unit(12 + 6/12, "feet"),
  34489. default: true
  34490. },
  34491. ]
  34492. ))
  34493. characterMakers.push(() => makeCharacter(
  34494. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34495. {
  34496. front: {
  34497. height: math.unit(6 + 2/12, "feet"),
  34498. name: "Front",
  34499. image: {
  34500. source: "./media/characters/taylor/front.svg",
  34501. extra: 639/495,
  34502. bottom: 12/651
  34503. }
  34504. },
  34505. },
  34506. [
  34507. {
  34508. name: "Normal",
  34509. height: math.unit(6 + 2/12, "feet"),
  34510. default: true
  34511. },
  34512. {
  34513. name: "Big",
  34514. height: math.unit(15, "feet")
  34515. },
  34516. {
  34517. name: "Lorg",
  34518. height: math.unit(80, "feet")
  34519. },
  34520. {
  34521. name: "Too Lorg",
  34522. height: math.unit(120, "feet")
  34523. },
  34524. ]
  34525. ))
  34526. characterMakers.push(() => makeCharacter(
  34527. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34528. {
  34529. front: {
  34530. height: math.unit(15, "feet"),
  34531. name: "Front",
  34532. image: {
  34533. source: "./media/characters/kaizer/front.svg",
  34534. extra: 1612/1436,
  34535. bottom: 43/1655
  34536. }
  34537. },
  34538. },
  34539. [
  34540. {
  34541. name: "Normal",
  34542. height: math.unit(15, "feet"),
  34543. default: true
  34544. },
  34545. ]
  34546. ))
  34547. characterMakers.push(() => makeCharacter(
  34548. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34549. {
  34550. front: {
  34551. height: math.unit(2, "feet"),
  34552. weight: math.unit(30, "lb"),
  34553. name: "Front",
  34554. image: {
  34555. source: "./media/characters/sandy/front.svg",
  34556. extra: 1439/1307,
  34557. bottom: 194/1633
  34558. }
  34559. },
  34560. },
  34561. [
  34562. {
  34563. name: "Normal",
  34564. height: math.unit(2, "feet"),
  34565. default: true
  34566. },
  34567. ]
  34568. ))
  34569. characterMakers.push(() => makeCharacter(
  34570. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34571. {
  34572. front: {
  34573. height: math.unit(3, "feet"),
  34574. name: "Front",
  34575. image: {
  34576. source: "./media/characters/mellvi/front.svg",
  34577. extra: 1831/1630,
  34578. bottom: 58/1889
  34579. }
  34580. },
  34581. },
  34582. [
  34583. {
  34584. name: "Normal",
  34585. height: math.unit(3, "feet"),
  34586. default: true
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(5 + 11/12, "feet"),
  34595. weight: math.unit(200, "lb"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/shirou/front.svg",
  34599. extra: 2491/2383,
  34600. bottom: 189/2680
  34601. }
  34602. },
  34603. back: {
  34604. height: math.unit(5 + 11/12, "feet"),
  34605. weight: math.unit(200, "lb"),
  34606. name: "Back",
  34607. image: {
  34608. source: "./media/characters/shirou/back.svg",
  34609. extra: 2554/2450,
  34610. bottom: 76/2630
  34611. }
  34612. },
  34613. },
  34614. [
  34615. {
  34616. name: "Normal",
  34617. height: math.unit(5 + 11/12, "feet"),
  34618. default: true
  34619. },
  34620. ]
  34621. ))
  34622. characterMakers.push(() => makeCharacter(
  34623. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34624. {
  34625. front: {
  34626. height: math.unit(6 + 3/12, "feet"),
  34627. weight: math.unit(177, "lb"),
  34628. name: "Front",
  34629. image: {
  34630. source: "./media/characters/noryu/front.svg",
  34631. extra: 973/885,
  34632. bottom: 10/983
  34633. }
  34634. },
  34635. },
  34636. [
  34637. {
  34638. name: "Normal",
  34639. height: math.unit(6 + 3/12, "feet"),
  34640. default: true
  34641. },
  34642. ]
  34643. ))
  34644. characterMakers.push(() => makeCharacter(
  34645. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34646. {
  34647. front: {
  34648. height: math.unit(5 + 6/12, "feet"),
  34649. weight: math.unit(170, "lb"),
  34650. name: "Front",
  34651. image: {
  34652. source: "./media/characters/mevolas-rubenido/front.svg",
  34653. extra: 2109/1901,
  34654. bottom: 96/2205
  34655. }
  34656. },
  34657. },
  34658. [
  34659. {
  34660. name: "Normal",
  34661. height: math.unit(5 + 6/12, "feet"),
  34662. default: true
  34663. },
  34664. ]
  34665. ))
  34666. characterMakers.push(() => makeCharacter(
  34667. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34668. {
  34669. front: {
  34670. height: math.unit(100, "feet"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/dee/front.svg",
  34674. extra: 2153/2036,
  34675. bottom: 59/2212
  34676. }
  34677. },
  34678. back: {
  34679. height: math.unit(100, "feet"),
  34680. name: "Back",
  34681. image: {
  34682. source: "./media/characters/dee/back.svg",
  34683. extra: 2183/2058,
  34684. bottom: 75/2258
  34685. }
  34686. },
  34687. foot: {
  34688. height: math.unit(19.43, "feet"),
  34689. name: "Foot",
  34690. image: {
  34691. source: "./media/characters/dee/foot.svg"
  34692. }
  34693. },
  34694. hoof: {
  34695. height: math.unit(20.6, "feet"),
  34696. name: "Hoof",
  34697. image: {
  34698. source: "./media/characters/dee/hoof.svg"
  34699. }
  34700. },
  34701. },
  34702. [
  34703. {
  34704. name: "Macro",
  34705. height: math.unit(100, "feet"),
  34706. default: true
  34707. },
  34708. ]
  34709. ))
  34710. characterMakers.push(() => makeCharacter(
  34711. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34712. {
  34713. front: {
  34714. height: math.unit(5 + 6/12, "feet"),
  34715. name: "Front",
  34716. image: {
  34717. source: "./media/characters/teh/front.svg",
  34718. extra: 1002/847,
  34719. bottom: 62/1064
  34720. }
  34721. },
  34722. },
  34723. [
  34724. {
  34725. name: "Normal",
  34726. height: math.unit(5 + 6/12, "feet"),
  34727. default: true
  34728. },
  34729. ]
  34730. ))
  34731. characterMakers.push(() => makeCharacter(
  34732. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34733. {
  34734. side: {
  34735. height: math.unit(6 + 1/12, "feet"),
  34736. weight: math.unit(204, "lb"),
  34737. name: "Side",
  34738. image: {
  34739. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34740. extra: 974/775,
  34741. bottom: 169/1143
  34742. }
  34743. },
  34744. sitting: {
  34745. height: math.unit(6 + 2/12, "feet"),
  34746. weight: math.unit(204, "lb"),
  34747. name: "Sitting",
  34748. image: {
  34749. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34750. extra: 1175/964,
  34751. bottom: 378/1553
  34752. }
  34753. },
  34754. },
  34755. [
  34756. {
  34757. name: "Normal",
  34758. height: math.unit(6 + 1/12, "feet"),
  34759. default: true
  34760. },
  34761. ]
  34762. ))
  34763. characterMakers.push(() => makeCharacter(
  34764. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34765. {
  34766. front: {
  34767. height: math.unit(6, "inches"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/tululi/front.svg",
  34771. extra: 1997/1876,
  34772. bottom: 20/2017
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Normal",
  34779. height: math.unit(6, "inches"),
  34780. default: true
  34781. },
  34782. ]
  34783. ))
  34784. characterMakers.push(() => makeCharacter(
  34785. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34786. {
  34787. front: {
  34788. height: math.unit(4 + 1/12, "feet"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/star/front.svg",
  34792. extra: 1493/1189,
  34793. bottom: 48/1541
  34794. }
  34795. },
  34796. },
  34797. [
  34798. {
  34799. name: "Normal",
  34800. height: math.unit(4 + 1/12, "feet"),
  34801. default: true
  34802. },
  34803. ]
  34804. ))
  34805. characterMakers.push(() => makeCharacter(
  34806. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34807. {
  34808. front: {
  34809. height: math.unit(6 + 3/12, "feet"),
  34810. name: "Front",
  34811. image: {
  34812. source: "./media/characters/comet/front.svg",
  34813. extra: 1681/1462,
  34814. bottom: 26/1707
  34815. }
  34816. },
  34817. },
  34818. [
  34819. {
  34820. name: "Normal",
  34821. height: math.unit(6 + 3/12, "feet"),
  34822. default: true
  34823. },
  34824. ]
  34825. ))
  34826. characterMakers.push(() => makeCharacter(
  34827. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34828. {
  34829. front: {
  34830. height: math.unit(950, "feet"),
  34831. name: "Front",
  34832. image: {
  34833. source: "./media/characters/vortex/front.svg",
  34834. extra: 1497/1434,
  34835. bottom: 56/1553
  34836. }
  34837. },
  34838. maw: {
  34839. height: math.unit(285, "feet"),
  34840. name: "Maw",
  34841. image: {
  34842. source: "./media/characters/vortex/maw.svg"
  34843. }
  34844. },
  34845. },
  34846. [
  34847. {
  34848. name: "Macro",
  34849. height: math.unit(950, "feet"),
  34850. default: true
  34851. },
  34852. ]
  34853. ))
  34854. characterMakers.push(() => makeCharacter(
  34855. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34856. {
  34857. front: {
  34858. height: math.unit(600, "feet"),
  34859. weight: math.unit(0.02, "grams"),
  34860. name: "Front",
  34861. image: {
  34862. source: "./media/characters/doodle/front.svg",
  34863. extra: 1578/1413,
  34864. bottom: 37/1615
  34865. }
  34866. },
  34867. },
  34868. [
  34869. {
  34870. name: "Macro",
  34871. height: math.unit(600, "feet"),
  34872. default: true
  34873. },
  34874. ]
  34875. ))
  34876. characterMakers.push(() => makeCharacter(
  34877. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34878. {
  34879. front: {
  34880. height: math.unit(6 + 6/12, "feet"),
  34881. name: "Front",
  34882. image: {
  34883. source: "./media/characters/jai/front.svg",
  34884. extra: 1645/1534,
  34885. bottom: 115/1760
  34886. }
  34887. },
  34888. },
  34889. [
  34890. {
  34891. name: "Normal",
  34892. height: math.unit(6 + 6/12, "feet"),
  34893. default: true
  34894. },
  34895. ]
  34896. ))
  34897. characterMakers.push(() => makeCharacter(
  34898. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34899. {
  34900. front: {
  34901. height: math.unit(6 + 8/12, "feet"),
  34902. name: "Front",
  34903. image: {
  34904. source: "./media/characters/pixel/front.svg",
  34905. extra: 1900/1735,
  34906. bottom: 63/1963
  34907. }
  34908. },
  34909. },
  34910. [
  34911. {
  34912. name: "Normal",
  34913. height: math.unit(6 + 8/12, "feet"),
  34914. default: true
  34915. },
  34916. ]
  34917. ))
  34918. characterMakers.push(() => makeCharacter(
  34919. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34920. {
  34921. front: {
  34922. height: math.unit(4 + 11/12, "feet"),
  34923. weight: math.unit(111, "lb"),
  34924. name: "Front",
  34925. image: {
  34926. source: "./media/characters/rhett/front.svg",
  34927. extra: 1682/1586,
  34928. bottom: 92/1774
  34929. }
  34930. },
  34931. },
  34932. [
  34933. {
  34934. name: "Mini",
  34935. height: math.unit(1 + 1/12, "feet")
  34936. },
  34937. {
  34938. name: "Normal",
  34939. height: math.unit(4 + 11/12, "feet"),
  34940. default: true
  34941. },
  34942. ]
  34943. ))
  34944. characterMakers.push(() => makeCharacter(
  34945. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34946. {
  34947. front: {
  34948. height: math.unit(3 + 3/12, "feet"),
  34949. name: "Front",
  34950. image: {
  34951. source: "./media/characters/penny/front.svg",
  34952. extra: 1406/1311,
  34953. bottom: 26/1432
  34954. }
  34955. },
  34956. },
  34957. [
  34958. {
  34959. name: "Normal",
  34960. height: math.unit(3 + 3/12, "feet"),
  34961. default: true
  34962. },
  34963. ]
  34964. ))
  34965. characterMakers.push(() => makeCharacter(
  34966. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34967. {
  34968. front: {
  34969. height: math.unit(4 + 11/12, "feet"),
  34970. name: "Front",
  34971. image: {
  34972. source: "./media/characters/monty/front.svg",
  34973. extra: 1479/1209,
  34974. bottom: 0/1479
  34975. }
  34976. },
  34977. },
  34978. [
  34979. {
  34980. name: "Normal",
  34981. height: math.unit(4 + 11/12, "feet"),
  34982. default: true
  34983. },
  34984. ]
  34985. ))
  34986. characterMakers.push(() => makeCharacter(
  34987. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34988. {
  34989. front: {
  34990. height: math.unit(8 + 4/12, "feet"),
  34991. name: "Front",
  34992. image: {
  34993. source: "./media/characters/sterling/front.svg",
  34994. extra: 1420/1236,
  34995. bottom: 27/1447
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Normal",
  35002. height: math.unit(8 + 4/12, "feet"),
  35003. default: true
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35009. {
  35010. front: {
  35011. height: math.unit(15, "feet"),
  35012. name: "Front",
  35013. image: {
  35014. source: "./media/characters/marble/front.svg",
  35015. extra: 973/937,
  35016. bottom: 32/1005
  35017. }
  35018. },
  35019. },
  35020. [
  35021. {
  35022. name: "Normal",
  35023. height: math.unit(15, "feet"),
  35024. default: true
  35025. },
  35026. ]
  35027. ))
  35028. characterMakers.push(() => makeCharacter(
  35029. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35030. {
  35031. front: {
  35032. height: math.unit(3, "inches"),
  35033. name: "Front",
  35034. image: {
  35035. source: "./media/characters/powder/front.svg",
  35036. extra: 1504/1334,
  35037. bottom: 518/2022
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(3, "inches"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(4 + 5/12, "feet"),
  35054. name: "Front",
  35055. image: {
  35056. source: "./media/characters/joey-raccoon/front.svg",
  35057. extra: 1273/1197,
  35058. bottom: 0/1273
  35059. }
  35060. },
  35061. },
  35062. [
  35063. {
  35064. name: "Normal",
  35065. height: math.unit(4 + 5/12, "feet"),
  35066. default: true
  35067. },
  35068. ]
  35069. ))
  35070. characterMakers.push(() => makeCharacter(
  35071. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35072. {
  35073. front: {
  35074. height: math.unit(8 + 4/12, "feet"),
  35075. name: "Front",
  35076. image: {
  35077. source: "./media/characters/vick/front.svg",
  35078. extra: 2187/2118,
  35079. bottom: 47/2234
  35080. }
  35081. },
  35082. },
  35083. [
  35084. {
  35085. name: "Normal",
  35086. height: math.unit(8 + 4/12, "feet"),
  35087. default: true
  35088. },
  35089. ]
  35090. ))
  35091. characterMakers.push(() => makeCharacter(
  35092. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35093. {
  35094. front: {
  35095. height: math.unit(5 + 5/12, "feet"),
  35096. name: "Front",
  35097. image: {
  35098. source: "./media/characters/mitsy/front.svg",
  35099. extra: 1842/1695,
  35100. bottom: 0/1842
  35101. }
  35102. },
  35103. },
  35104. [
  35105. {
  35106. name: "Normal",
  35107. height: math.unit(5 + 5/12, "feet"),
  35108. default: true
  35109. },
  35110. ]
  35111. ))
  35112. characterMakers.push(() => makeCharacter(
  35113. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35114. {
  35115. front: {
  35116. height: math.unit(6 + 3/12, "feet"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/silvy/front.svg",
  35120. extra: 1995/1836,
  35121. bottom: 225/2220
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(6 + 3/12, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35135. {
  35136. front: {
  35137. height: math.unit(3 + 8/12, "feet"),
  35138. name: "Front",
  35139. image: {
  35140. source: "./media/characters/rodney/front.svg",
  35141. extra: 1956/1747,
  35142. bottom: 31/1987
  35143. }
  35144. },
  35145. frontDressed: {
  35146. height: math.unit(2.9, "feet"),
  35147. name: "Front (Dressed)",
  35148. image: {
  35149. source: "./media/characters/rodney/front-dressed.svg",
  35150. extra: 1382/1241,
  35151. bottom: 385/1767
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(3 + 8/12, "feet"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(5 + 9/12, "feet"),
  35168. weight: math.unit(194, "lbs"),
  35169. name: "Front",
  35170. image: {
  35171. source: "./media/characters/zakail-sudekai/front.svg",
  35172. extra: 2696/2533,
  35173. bottom: 248/2944
  35174. }
  35175. },
  35176. maw: {
  35177. height: math.unit(1.35, "feet"),
  35178. name: "Maw",
  35179. image: {
  35180. source: "./media/characters/zakail-sudekai/maw.svg"
  35181. }
  35182. },
  35183. },
  35184. [
  35185. {
  35186. name: "Normal",
  35187. height: math.unit(5 + 9/12, "feet"),
  35188. default: true
  35189. },
  35190. ]
  35191. ))
  35192. characterMakers.push(() => makeCharacter(
  35193. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35194. {
  35195. front: {
  35196. height: math.unit(8 + 4/12, "feet"),
  35197. weight: math.unit(1200, "lb"),
  35198. name: "Front",
  35199. image: {
  35200. source: "./media/characters/eleanor/front.svg",
  35201. extra: 1226/1192,
  35202. bottom: 52/1278
  35203. }
  35204. },
  35205. back: {
  35206. height: math.unit(8 + 4/12, "feet"),
  35207. weight: math.unit(1200, "lb"),
  35208. name: "Back",
  35209. image: {
  35210. source: "./media/characters/eleanor/back.svg",
  35211. extra: 1242/1184,
  35212. bottom: 60/1302
  35213. }
  35214. },
  35215. head: {
  35216. height: math.unit(2.62, "feet"),
  35217. name: "Head",
  35218. image: {
  35219. source: "./media/characters/eleanor/head.svg"
  35220. }
  35221. },
  35222. },
  35223. [
  35224. {
  35225. name: "Normal",
  35226. height: math.unit(8 + 4/12, "feet"),
  35227. default: true
  35228. },
  35229. ]
  35230. ))
  35231. characterMakers.push(() => makeCharacter(
  35232. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35233. {
  35234. front: {
  35235. height: math.unit(8 + 4/12, "feet"),
  35236. weight: math.unit(750, "lb"),
  35237. name: "Front",
  35238. image: {
  35239. source: "./media/characters/tanya/front.svg",
  35240. extra: 1749/1615,
  35241. bottom: 33/1782
  35242. }
  35243. },
  35244. },
  35245. [
  35246. {
  35247. name: "Normal",
  35248. height: math.unit(8 + 4/12, "feet"),
  35249. default: true
  35250. },
  35251. ]
  35252. ))
  35253. characterMakers.push(() => makeCharacter(
  35254. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35255. {
  35256. front: {
  35257. height: math.unit(5, "feet"),
  35258. weight: math.unit(225, "lb"),
  35259. name: "Front",
  35260. image: {
  35261. source: "./media/characters/cindy/front.svg",
  35262. extra: 1320/1250,
  35263. bottom: 42/1362
  35264. }
  35265. },
  35266. frontDressed: {
  35267. height: math.unit(5, "feet"),
  35268. weight: math.unit(225, "lb"),
  35269. name: "Front (Dressed)",
  35270. image: {
  35271. source: "./media/characters/cindy/front-dressed.svg",
  35272. extra: 1320/1250,
  35273. bottom: 42/1362
  35274. }
  35275. },
  35276. back: {
  35277. height: math.unit(5, "feet"),
  35278. weight: math.unit(225, "lb"),
  35279. name: "Back",
  35280. image: {
  35281. source: "./media/characters/cindy/back.svg",
  35282. extra: 1384/1346,
  35283. bottom: 14/1398
  35284. }
  35285. },
  35286. },
  35287. [
  35288. {
  35289. name: "Normal",
  35290. height: math.unit(5, "feet"),
  35291. default: true
  35292. },
  35293. ]
  35294. ))
  35295. characterMakers.push(() => makeCharacter(
  35296. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35297. {
  35298. front: {
  35299. height: math.unit(6 + 9/12, "feet"),
  35300. weight: math.unit(440, "lb"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/wilbur-owen/front.svg",
  35304. extra: 1575/1448,
  35305. bottom: 72/1647
  35306. }
  35307. },
  35308. back: {
  35309. height: math.unit(6 + 9/12, "feet"),
  35310. weight: math.unit(440, "lb"),
  35311. name: "Back",
  35312. image: {
  35313. source: "./media/characters/wilbur-owen/back.svg",
  35314. extra: 1578/1445,
  35315. bottom: 36/1614
  35316. }
  35317. },
  35318. },
  35319. [
  35320. {
  35321. name: "Normal",
  35322. height: math.unit(6 + 9/12, "feet"),
  35323. default: true
  35324. },
  35325. ]
  35326. ))
  35327. characterMakers.push(() => makeCharacter(
  35328. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35329. {
  35330. front: {
  35331. height: math.unit(6 + 5/12, "feet"),
  35332. weight: math.unit(650, "lb"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/keegan/front.svg",
  35336. extra: 2387/2198,
  35337. bottom: 33/2420
  35338. }
  35339. },
  35340. side: {
  35341. height: math.unit(6 + 5/12, "feet"),
  35342. weight: math.unit(650, "lb"),
  35343. name: "Side",
  35344. image: {
  35345. source: "./media/characters/keegan/side.svg",
  35346. extra: 2390/2202,
  35347. bottom: 47/2437
  35348. }
  35349. },
  35350. back: {
  35351. height: math.unit(6 + 5/12, "feet"),
  35352. weight: math.unit(650, "lb"),
  35353. name: "Back",
  35354. image: {
  35355. source: "./media/characters/keegan/back.svg",
  35356. extra: 2418/2268,
  35357. bottom: 15/2433
  35358. }
  35359. },
  35360. frontSfw: {
  35361. height: math.unit(6 + 5/12, "feet"),
  35362. weight: math.unit(650, "lb"),
  35363. name: "Front (SFW)",
  35364. image: {
  35365. source: "./media/characters/keegan/front-sfw.svg",
  35366. extra: 2387/2198,
  35367. bottom: 33/2420
  35368. }
  35369. },
  35370. beans: {
  35371. height: math.unit(1.85, "feet"),
  35372. name: "Beans",
  35373. image: {
  35374. source: "./media/characters/keegan/beans.svg"
  35375. }
  35376. },
  35377. },
  35378. [
  35379. {
  35380. name: "Normal",
  35381. height: math.unit(6 + 5/12, "feet"),
  35382. default: true
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35388. {
  35389. front: {
  35390. height: math.unit(9, "feet"),
  35391. name: "Front",
  35392. image: {
  35393. source: "./media/characters/colton/front.svg",
  35394. extra: 1589/1326,
  35395. bottom: 139/1728
  35396. }
  35397. },
  35398. },
  35399. [
  35400. {
  35401. name: "Normal",
  35402. height: math.unit(9, "feet"),
  35403. default: true
  35404. },
  35405. ]
  35406. ))
  35407. characterMakers.push(() => makeCharacter(
  35408. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35409. {
  35410. front: {
  35411. height: math.unit(2 + 9/12, "feet"),
  35412. name: "Front",
  35413. image: {
  35414. source: "./media/characters/bora/front.svg",
  35415. extra: 1265/1250,
  35416. bottom: 24/1289
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(2 + 9/12, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(8, "feet"),
  35433. name: "Front",
  35434. image: {
  35435. source: "./media/characters/myu-myu/front.svg",
  35436. extra: 1949/1857,
  35437. bottom: 90/2039
  35438. }
  35439. },
  35440. },
  35441. [
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(8, "feet"),
  35445. default: true
  35446. },
  35447. {
  35448. name: "Big",
  35449. height: math.unit(15, "feet")
  35450. },
  35451. {
  35452. name: "BIG",
  35453. height: math.unit(25, "feet")
  35454. },
  35455. ]
  35456. ))
  35457. characterMakers.push(() => makeCharacter(
  35458. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35459. {
  35460. side: {
  35461. height: math.unit(7 + 5/12, "feet"),
  35462. weight: math.unit(2800, "lb"),
  35463. name: "Side",
  35464. image: {
  35465. source: "./media/characters/haloren/side.svg",
  35466. extra: 1793/409,
  35467. bottom: 59/1852
  35468. }
  35469. },
  35470. frontPaw: {
  35471. height: math.unit(2.36, "feet"),
  35472. name: "Front paw",
  35473. image: {
  35474. source: "./media/characters/haloren/front-paw.svg"
  35475. }
  35476. },
  35477. hindPaw: {
  35478. height: math.unit(3.18, "feet"),
  35479. name: "Hind paw",
  35480. image: {
  35481. source: "./media/characters/haloren/hind-paw.svg"
  35482. }
  35483. },
  35484. maw: {
  35485. height: math.unit(5.05, "feet"),
  35486. name: "Maw",
  35487. image: {
  35488. source: "./media/characters/haloren/maw.svg"
  35489. }
  35490. },
  35491. dick: {
  35492. height: math.unit(2.90, "feet"),
  35493. name: "Dick",
  35494. image: {
  35495. source: "./media/characters/haloren/dick.svg"
  35496. }
  35497. },
  35498. },
  35499. [
  35500. {
  35501. name: "Normal",
  35502. height: math.unit(7 + 5/12, "feet"),
  35503. default: true
  35504. },
  35505. {
  35506. name: "Enhanced",
  35507. height: math.unit(14 + 3/12, "feet")
  35508. },
  35509. ]
  35510. ))
  35511. characterMakers.push(() => makeCharacter(
  35512. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35513. {
  35514. front: {
  35515. height: math.unit(171, "cm"),
  35516. name: "Front",
  35517. image: {
  35518. source: "./media/characters/kimmy/front.svg",
  35519. extra: 1491/1435,
  35520. bottom: 53/1544
  35521. }
  35522. },
  35523. },
  35524. [
  35525. {
  35526. name: "Small",
  35527. height: math.unit(9, "cm")
  35528. },
  35529. {
  35530. name: "Normal",
  35531. height: math.unit(171, "cm"),
  35532. default: true
  35533. },
  35534. ]
  35535. ))
  35536. characterMakers.push(() => makeCharacter(
  35537. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35538. {
  35539. front: {
  35540. height: math.unit(8, "feet"),
  35541. weight: math.unit(300, "lb"),
  35542. name: "Front",
  35543. image: {
  35544. source: "./media/characters/galeboomer/front.svg",
  35545. extra: 4651/4415,
  35546. bottom: 162/4813
  35547. }
  35548. },
  35549. back: {
  35550. height: math.unit(8, "feet"),
  35551. weight: math.unit(300, "lb"),
  35552. name: "Back",
  35553. image: {
  35554. source: "./media/characters/galeboomer/back.svg",
  35555. extra: 4544/4314,
  35556. bottom: 16/4560
  35557. }
  35558. },
  35559. frontAlt: {
  35560. height: math.unit(8, "feet"),
  35561. weight: math.unit(300, "lb"),
  35562. name: "Front (Alt)",
  35563. image: {
  35564. source: "./media/characters/galeboomer/front-alt.svg",
  35565. extra: 4458/4228,
  35566. bottom: 68/4526
  35567. }
  35568. },
  35569. maw: {
  35570. height: math.unit(1.2, "feet"),
  35571. name: "Maw",
  35572. image: {
  35573. source: "./media/characters/galeboomer/maw.svg"
  35574. }
  35575. },
  35576. },
  35577. [
  35578. {
  35579. name: "Normal",
  35580. height: math.unit(8, "feet"),
  35581. default: true
  35582. },
  35583. ]
  35584. ))
  35585. characterMakers.push(() => makeCharacter(
  35586. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35587. {
  35588. front: {
  35589. height: math.unit(5 + 9/12, "feet"),
  35590. weight: math.unit(120, "lb"),
  35591. name: "Front",
  35592. image: {
  35593. source: "./media/characters/chyr/front.svg",
  35594. extra: 1323/1254,
  35595. bottom: 63/1386
  35596. }
  35597. },
  35598. back: {
  35599. height: math.unit(5 + 9/12, "feet"),
  35600. weight: math.unit(120, "lb"),
  35601. name: "Back",
  35602. image: {
  35603. source: "./media/characters/chyr/back.svg",
  35604. extra: 1323/1252,
  35605. bottom: 48/1371
  35606. }
  35607. },
  35608. },
  35609. [
  35610. {
  35611. name: "Normal",
  35612. height: math.unit(5 + 9/12, "feet"),
  35613. default: true
  35614. },
  35615. ]
  35616. ))
  35617. characterMakers.push(() => makeCharacter(
  35618. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35619. {
  35620. front: {
  35621. height: math.unit(7, "feet"),
  35622. weight: math.unit(310, "lb"),
  35623. name: "Front",
  35624. image: {
  35625. source: "./media/characters/solarus/front.svg",
  35626. extra: 2415/2021,
  35627. bottom: 103/2518
  35628. }
  35629. },
  35630. back: {
  35631. height: math.unit(7, "feet"),
  35632. weight: math.unit(310, "lb"),
  35633. name: "Back",
  35634. image: {
  35635. source: "./media/characters/solarus/back.svg",
  35636. extra: 2463/2089,
  35637. bottom: 79/2542
  35638. }
  35639. },
  35640. },
  35641. [
  35642. {
  35643. name: "Normal",
  35644. height: math.unit(7, "feet"),
  35645. default: true
  35646. },
  35647. ]
  35648. ))
  35649. characterMakers.push(() => makeCharacter(
  35650. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35651. {
  35652. front: {
  35653. height: math.unit(16, "feet"),
  35654. name: "Front",
  35655. image: {
  35656. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35657. extra: 1844/1780,
  35658. bottom: 58/1902
  35659. }
  35660. },
  35661. },
  35662. [
  35663. {
  35664. name: "Normal",
  35665. height: math.unit(16, "feet"),
  35666. default: true
  35667. },
  35668. ]
  35669. ))
  35670. characterMakers.push(() => makeCharacter(
  35671. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35672. {
  35673. front: {
  35674. height: math.unit(11 + 6/12, "feet"),
  35675. weight: math.unit(1366, "lb"),
  35676. name: "Front",
  35677. image: {
  35678. source: "./media/characters/lexor/front.svg",
  35679. extra: 1560/1481,
  35680. bottom: 211/1771
  35681. }
  35682. },
  35683. back: {
  35684. height: math.unit(11 + 6/12, "feet"),
  35685. weight: math.unit(1366, "lb"),
  35686. name: "Back",
  35687. image: {
  35688. source: "./media/characters/lexor/back.svg",
  35689. extra: 1614/1533,
  35690. bottom: 76/1690
  35691. }
  35692. },
  35693. maw: {
  35694. height: math.unit(3, "feet"),
  35695. name: "Maw",
  35696. image: {
  35697. source: "./media/characters/lexor/maw.svg"
  35698. }
  35699. },
  35700. dick: {
  35701. height: math.unit(2.59, "feet"),
  35702. name: "Dick",
  35703. image: {
  35704. source: "./media/characters/lexor/dick.svg"
  35705. }
  35706. },
  35707. },
  35708. [
  35709. {
  35710. name: "Normal",
  35711. height: math.unit(11 + 6/12, "feet"),
  35712. default: true
  35713. },
  35714. ]
  35715. ))
  35716. characterMakers.push(() => makeCharacter(
  35717. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35718. {
  35719. front: {
  35720. height: math.unit(5 + 8/12, "feet"),
  35721. name: "Front",
  35722. image: {
  35723. source: "./media/characters/magnum/front.svg",
  35724. extra: 942/855,
  35725. bottom: 26/968
  35726. }
  35727. },
  35728. },
  35729. [
  35730. {
  35731. name: "Normal",
  35732. height: math.unit(5 + 8/12, "feet"),
  35733. default: true
  35734. },
  35735. ]
  35736. ))
  35737. characterMakers.push(() => makeCharacter(
  35738. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35739. {
  35740. front: {
  35741. height: math.unit(18 + 4/12, "feet"),
  35742. weight: math.unit(1500, "kg"),
  35743. name: "Front",
  35744. image: {
  35745. source: "./media/characters/solas-sharpsman/front.svg",
  35746. extra: 1698/1589,
  35747. bottom: 0/1698
  35748. }
  35749. },
  35750. },
  35751. [
  35752. {
  35753. name: "Normal",
  35754. height: math.unit(18 + 4/12, "feet"),
  35755. default: true
  35756. },
  35757. ]
  35758. ))
  35759. characterMakers.push(() => makeCharacter(
  35760. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35761. {
  35762. front: {
  35763. height: math.unit(5 + 5/12, "feet"),
  35764. weight: math.unit(180, "lb"),
  35765. name: "Front",
  35766. image: {
  35767. source: "./media/characters/october/front.svg",
  35768. extra: 1800/1650,
  35769. bottom: 0/1800
  35770. }
  35771. },
  35772. frontNsfw: {
  35773. height: math.unit(5 + 5/12, "feet"),
  35774. weight: math.unit(180, "lb"),
  35775. name: "Front (NSFW)",
  35776. image: {
  35777. source: "./media/characters/october/front-nsfw.svg",
  35778. extra: 1392/1307,
  35779. bottom: 42/1434
  35780. }
  35781. },
  35782. },
  35783. [
  35784. {
  35785. name: "Normal",
  35786. height: math.unit(5 + 5/12, "feet"),
  35787. default: true
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35793. {
  35794. front: {
  35795. height: math.unit(8 + 6/12, "feet"),
  35796. name: "Front",
  35797. image: {
  35798. source: "./media/characters/essynkardi/front.svg",
  35799. extra: 1914/1846,
  35800. bottom: 22/1936
  35801. }
  35802. },
  35803. },
  35804. [
  35805. {
  35806. name: "Normal",
  35807. height: math.unit(8 + 6/12, "feet"),
  35808. default: true
  35809. },
  35810. ]
  35811. ))
  35812. characterMakers.push(() => makeCharacter(
  35813. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35814. {
  35815. front: {
  35816. height: math.unit(6 + 6/12, "feet"),
  35817. weight: math.unit(7, "lb"),
  35818. name: "Front",
  35819. image: {
  35820. source: "./media/characters/icky/front.svg",
  35821. extra: 813/782,
  35822. bottom: 66/879
  35823. }
  35824. },
  35825. back: {
  35826. height: math.unit(6 + 6/12, "feet"),
  35827. weight: math.unit(7, "lb"),
  35828. name: "Back",
  35829. image: {
  35830. source: "./media/characters/icky/back.svg",
  35831. extra: 754/735,
  35832. bottom: 56/810
  35833. }
  35834. },
  35835. },
  35836. [
  35837. {
  35838. name: "Normal",
  35839. height: math.unit(6 + 6/12, "feet"),
  35840. default: true
  35841. },
  35842. ]
  35843. ))
  35844. characterMakers.push(() => makeCharacter(
  35845. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35846. {
  35847. front: {
  35848. height: math.unit(15, "feet"),
  35849. name: "Front",
  35850. image: {
  35851. source: "./media/characters/rojas/front.svg",
  35852. extra: 1462/1408,
  35853. bottom: 95/1557
  35854. }
  35855. },
  35856. back: {
  35857. height: math.unit(15, "feet"),
  35858. name: "Back",
  35859. image: {
  35860. source: "./media/characters/rojas/back.svg",
  35861. extra: 1023/954,
  35862. bottom: 28/1051
  35863. }
  35864. },
  35865. },
  35866. [
  35867. {
  35868. name: "Normal",
  35869. height: math.unit(15, "feet"),
  35870. default: true
  35871. },
  35872. ]
  35873. ))
  35874. characterMakers.push(() => makeCharacter(
  35875. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35876. {
  35877. frontHuman: {
  35878. height: math.unit(5 + 7/12, "feet"),
  35879. name: "Front (Human)",
  35880. image: {
  35881. source: "./media/characters/alek-dryagan/front-human.svg",
  35882. extra: 1687/1667,
  35883. bottom: 69/1756
  35884. }
  35885. },
  35886. backHuman: {
  35887. height: math.unit(5 + 7/12, "feet"),
  35888. name: "Back (Human)",
  35889. image: {
  35890. source: "./media/characters/alek-dryagan/back-human.svg",
  35891. extra: 1670/1649,
  35892. bottom: 65/1735
  35893. }
  35894. },
  35895. frontDemi: {
  35896. height: math.unit(65, "feet"),
  35897. name: "Front (Demi)",
  35898. image: {
  35899. source: "./media/characters/alek-dryagan/front-demi.svg",
  35900. extra: 1669/1642,
  35901. bottom: 49/1718
  35902. }
  35903. },
  35904. backDemi: {
  35905. height: math.unit(65, "feet"),
  35906. name: "Back (Demi)",
  35907. image: {
  35908. source: "./media/characters/alek-dryagan/back-demi.svg",
  35909. extra: 1658/1637,
  35910. bottom: 40/1698
  35911. }
  35912. },
  35913. mawHuman: {
  35914. height: math.unit(0.3, "feet"),
  35915. name: "Maw (Human)",
  35916. image: {
  35917. source: "./media/characters/alek-dryagan/maw-human.svg"
  35918. }
  35919. },
  35920. mawDemi: {
  35921. height: math.unit(3.8, "feet"),
  35922. name: "Maw (Demi)",
  35923. image: {
  35924. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35925. }
  35926. },
  35927. },
  35928. [
  35929. {
  35930. name: "Normal",
  35931. height: math.unit(5 + 7/12, "feet"),
  35932. default: true
  35933. },
  35934. ]
  35935. ))
  35936. characterMakers.push(() => makeCharacter(
  35937. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35938. {
  35939. frontHuman: {
  35940. height: math.unit(5 + 2/12, "feet"),
  35941. name: "Front (Human)",
  35942. image: {
  35943. source: "./media/characters/gen/front-human.svg",
  35944. extra: 1627/1538,
  35945. bottom: 71/1698
  35946. }
  35947. },
  35948. backHuman: {
  35949. height: math.unit(5 + 2/12, "feet"),
  35950. name: "Back (Human)",
  35951. image: {
  35952. source: "./media/characters/gen/back-human.svg",
  35953. extra: 1638/1548,
  35954. bottom: 69/1707
  35955. }
  35956. },
  35957. frontDemi: {
  35958. height: math.unit(5 + 2/12, "feet"),
  35959. name: "Front (Demi)",
  35960. image: {
  35961. source: "./media/characters/gen/front-demi.svg",
  35962. extra: 1627/1538,
  35963. bottom: 71/1698
  35964. }
  35965. },
  35966. backDemi: {
  35967. height: math.unit(5 + 2/12, "feet"),
  35968. name: "Back (Demi)",
  35969. image: {
  35970. source: "./media/characters/gen/back-demi.svg",
  35971. extra: 1638/1548,
  35972. bottom: 69/1707
  35973. }
  35974. },
  35975. },
  35976. [
  35977. {
  35978. name: "Normal",
  35979. height: math.unit(5 + 2/12, "feet"),
  35980. default: true
  35981. },
  35982. ]
  35983. ))
  35984. characterMakers.push(() => makeCharacter(
  35985. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35986. {
  35987. frontImp: {
  35988. height: math.unit(1 + 11/12, "feet"),
  35989. name: "Front (Imp)",
  35990. image: {
  35991. source: "./media/characters/max-kobold/front-imp.svg",
  35992. extra: 1238/1134,
  35993. bottom: 81/1319
  35994. }
  35995. },
  35996. backImp: {
  35997. height: math.unit(1 + 11/12, "feet"),
  35998. name: "Back (Imp)",
  35999. image: {
  36000. source: "./media/characters/max-kobold/back-imp.svg",
  36001. extra: 1334/1175,
  36002. bottom: 34/1368
  36003. }
  36004. },
  36005. frontDemi: {
  36006. height: math.unit(5 + 9/12, "feet"),
  36007. name: "Front (Demi)",
  36008. image: {
  36009. source: "./media/characters/max-kobold/front-demi.svg",
  36010. extra: 1715/1685,
  36011. bottom: 54/1769
  36012. }
  36013. },
  36014. backDemi: {
  36015. height: math.unit(5 + 9/12, "feet"),
  36016. name: "Back (Demi)",
  36017. image: {
  36018. source: "./media/characters/max-kobold/back-demi.svg",
  36019. extra: 1752/1729,
  36020. bottom: 41/1793
  36021. }
  36022. },
  36023. handImp: {
  36024. height: math.unit(0.45, "feet"),
  36025. name: "Hand (Imp)",
  36026. image: {
  36027. source: "./media/characters/max-kobold/hand.svg"
  36028. }
  36029. },
  36030. pawImp: {
  36031. height: math.unit(0.46, "feet"),
  36032. name: "Paw (Imp)",
  36033. image: {
  36034. source: "./media/characters/max-kobold/paw.svg"
  36035. }
  36036. },
  36037. handDemi: {
  36038. height: math.unit(0.80, "feet"),
  36039. name: "Hand (Demi)",
  36040. image: {
  36041. source: "./media/characters/max-kobold/hand.svg"
  36042. }
  36043. },
  36044. pawDemi: {
  36045. height: math.unit(1.1, "feet"),
  36046. name: "Paw (Demi)",
  36047. image: {
  36048. source: "./media/characters/max-kobold/paw.svg"
  36049. }
  36050. },
  36051. headImp: {
  36052. height: math.unit(1.33, "feet"),
  36053. name: "Head (Imp)",
  36054. image: {
  36055. source: "./media/characters/max-kobold/head-imp.svg"
  36056. }
  36057. },
  36058. mawImp: {
  36059. height: math.unit(0.75, "feet"),
  36060. name: "Maw (Imp)",
  36061. image: {
  36062. source: "./media/characters/max-kobold/maw-imp.svg"
  36063. }
  36064. },
  36065. mawDemi: {
  36066. height: math.unit(0.42, "feet"),
  36067. name: "Maw (Demi)",
  36068. image: {
  36069. source: "./media/characters/max-kobold/maw-demi.svg"
  36070. }
  36071. },
  36072. },
  36073. [
  36074. {
  36075. name: "Normal",
  36076. height: math.unit(1 + 11/12, "feet"),
  36077. default: true
  36078. },
  36079. ]
  36080. ))
  36081. characterMakers.push(() => makeCharacter(
  36082. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36083. {
  36084. front: {
  36085. height: math.unit(7 + 5/12, "feet"),
  36086. name: "Front",
  36087. image: {
  36088. source: "./media/characters/carbon/front.svg",
  36089. extra: 1754/1689,
  36090. bottom: 65/1819
  36091. }
  36092. },
  36093. back: {
  36094. height: math.unit(7 + 5/12, "feet"),
  36095. name: "Back",
  36096. image: {
  36097. source: "./media/characters/carbon/back.svg",
  36098. extra: 1762/1695,
  36099. bottom: 24/1786
  36100. }
  36101. },
  36102. frontGigantamax: {
  36103. height: math.unit(150, "feet"),
  36104. name: "Front (Gigantamax)",
  36105. image: {
  36106. source: "./media/characters/carbon/front-gigantamax.svg",
  36107. extra: 1826/1669,
  36108. bottom: 59/1885
  36109. }
  36110. },
  36111. backGigantamax: {
  36112. height: math.unit(150, "feet"),
  36113. name: "Back (Gigantamax)",
  36114. image: {
  36115. source: "./media/characters/carbon/back-gigantamax.svg",
  36116. extra: 1796/1653,
  36117. bottom: 53/1849
  36118. }
  36119. },
  36120. maw: {
  36121. height: math.unit(0.48, "feet"),
  36122. name: "Maw",
  36123. image: {
  36124. source: "./media/characters/carbon/maw.svg"
  36125. }
  36126. },
  36127. mawGigantamax: {
  36128. height: math.unit(7.5, "feet"),
  36129. name: "Maw (Gigantamax)",
  36130. image: {
  36131. source: "./media/characters/carbon/maw-gigantamax.svg"
  36132. }
  36133. },
  36134. },
  36135. [
  36136. {
  36137. name: "Normal",
  36138. height: math.unit(7 + 5/12, "feet"),
  36139. default: true
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36145. {
  36146. front: {
  36147. height: math.unit(6, "feet"),
  36148. name: "Front",
  36149. image: {
  36150. source: "./media/characters/maverick/front.svg",
  36151. extra: 1672/1661,
  36152. bottom: 85/1757
  36153. }
  36154. },
  36155. back: {
  36156. height: math.unit(6, "feet"),
  36157. name: "Back",
  36158. image: {
  36159. source: "./media/characters/maverick/back.svg",
  36160. extra: 1642/1631,
  36161. bottom: 38/1680
  36162. }
  36163. },
  36164. },
  36165. [
  36166. {
  36167. name: "Normal",
  36168. height: math.unit(6, "feet"),
  36169. default: true
  36170. },
  36171. ]
  36172. ))
  36173. characterMakers.push(() => makeCharacter(
  36174. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36175. {
  36176. front: {
  36177. height: math.unit(15, "feet"),
  36178. weight: math.unit(615, "lb"),
  36179. name: "Front",
  36180. image: {
  36181. source: "./media/characters/grockle/front.svg",
  36182. extra: 1535/1427,
  36183. bottom: 56/1591
  36184. }
  36185. },
  36186. },
  36187. [
  36188. {
  36189. name: "Normal",
  36190. height: math.unit(15, "feet"),
  36191. default: true
  36192. },
  36193. {
  36194. name: "Large",
  36195. height: math.unit(150, "feet")
  36196. },
  36197. {
  36198. name: "Macro",
  36199. height: math.unit(1876, "feet")
  36200. },
  36201. {
  36202. name: "Mega Macro",
  36203. height: math.unit(121940, "feet")
  36204. },
  36205. {
  36206. name: "Giga Macro",
  36207. height: math.unit(750, "km")
  36208. },
  36209. {
  36210. name: "Tera Macro",
  36211. height: math.unit(750000, "km")
  36212. },
  36213. {
  36214. name: "Galactic",
  36215. height: math.unit(1.4e5, "km")
  36216. },
  36217. {
  36218. name: "Godlike",
  36219. height: math.unit(9.8e280, "galaxies")
  36220. },
  36221. ]
  36222. ))
  36223. characterMakers.push(() => makeCharacter(
  36224. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36225. {
  36226. front: {
  36227. height: math.unit(11, "meters"),
  36228. weight: math.unit(20, "tonnes"),
  36229. name: "Front",
  36230. image: {
  36231. source: "./media/characters/alistair/front.svg",
  36232. extra: 1265/1009,
  36233. bottom: 93/1358
  36234. }
  36235. },
  36236. },
  36237. [
  36238. {
  36239. name: "Normal",
  36240. height: math.unit(11, "meters"),
  36241. default: true
  36242. },
  36243. ]
  36244. ))
  36245. characterMakers.push(() => makeCharacter(
  36246. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36247. {
  36248. front: {
  36249. height: math.unit(5 + 8/12, "feet"),
  36250. name: "Front",
  36251. image: {
  36252. source: "./media/characters/haruka/front.svg",
  36253. extra: 2012/1952,
  36254. bottom: 0/2012
  36255. }
  36256. },
  36257. },
  36258. [
  36259. {
  36260. name: "Normal",
  36261. height: math.unit(5 + 8/12, "feet"),
  36262. default: true
  36263. },
  36264. ]
  36265. ))
  36266. characterMakers.push(() => makeCharacter(
  36267. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36268. {
  36269. back: {
  36270. height: math.unit(9, "feet"),
  36271. name: "Back",
  36272. image: {
  36273. source: "./media/characters/vivian-sylveon/back.svg",
  36274. extra: 1853/1714,
  36275. bottom: 0/1853
  36276. }
  36277. },
  36278. },
  36279. [
  36280. {
  36281. name: "Normal",
  36282. height: math.unit(9, "feet"),
  36283. default: true
  36284. },
  36285. {
  36286. name: "Macro",
  36287. height: math.unit(500, "feet")
  36288. },
  36289. {
  36290. name: "Megamacro",
  36291. height: math.unit(600, "miles")
  36292. },
  36293. {
  36294. name: "Gigamacro",
  36295. height: math.unit(30000, "miles")
  36296. },
  36297. ]
  36298. ))
  36299. characterMakers.push(() => makeCharacter(
  36300. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36301. {
  36302. anthro: {
  36303. height: math.unit(5 + 10/12, "feet"),
  36304. weight: math.unit(100, "lb"),
  36305. name: "Anthro",
  36306. image: {
  36307. source: "./media/characters/daiki/anthro.svg",
  36308. extra: 1115/1027,
  36309. bottom: 69/1184
  36310. }
  36311. },
  36312. feral: {
  36313. height: math.unit(200, "feet"),
  36314. name: "Feral",
  36315. image: {
  36316. source: "./media/characters/daiki/feral.svg",
  36317. extra: 1256/313,
  36318. bottom: 39/1295
  36319. }
  36320. },
  36321. feralHead: {
  36322. height: math.unit(171, "feet"),
  36323. name: "Feral Head",
  36324. image: {
  36325. source: "./media/characters/daiki/feral-head.svg"
  36326. }
  36327. },
  36328. },
  36329. [
  36330. {
  36331. name: "Normal",
  36332. height: math.unit(5 + 10/12, "feet"),
  36333. default: true
  36334. },
  36335. ]
  36336. ))
  36337. characterMakers.push(() => makeCharacter(
  36338. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36339. {
  36340. fullyEquippedFront: {
  36341. height: math.unit(3 + 1/12, "feet"),
  36342. weight: math.unit(24, "lb"),
  36343. name: "Fully Equipped (Front)",
  36344. image: {
  36345. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36346. extra: 687/605,
  36347. bottom: 18/705
  36348. }
  36349. },
  36350. fullyEquippedBack: {
  36351. height: math.unit(3 + 1/12, "feet"),
  36352. weight: math.unit(24, "lb"),
  36353. name: "Fully Equipped (Back)",
  36354. image: {
  36355. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36356. extra: 689/590,
  36357. bottom: 18/707
  36358. }
  36359. },
  36360. dailyWear: {
  36361. height: math.unit(3 + 1/12, "feet"),
  36362. weight: math.unit(24, "lb"),
  36363. name: "Daily Wear",
  36364. image: {
  36365. source: "./media/characters/tea-spot/daily-wear.svg",
  36366. extra: 701/620,
  36367. bottom: 21/722
  36368. }
  36369. },
  36370. maidWork: {
  36371. height: math.unit(3 + 1/12, "feet"),
  36372. weight: math.unit(24, "lb"),
  36373. name: "Maid Work",
  36374. image: {
  36375. source: "./media/characters/tea-spot/maid-work.svg",
  36376. extra: 693/609,
  36377. bottom: 15/708
  36378. }
  36379. },
  36380. },
  36381. [
  36382. {
  36383. name: "Normal",
  36384. height: math.unit(3 + 1/12, "feet"),
  36385. default: true
  36386. },
  36387. ]
  36388. ))
  36389. characterMakers.push(() => makeCharacter(
  36390. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36391. {
  36392. front: {
  36393. height: math.unit(175, "cm"),
  36394. weight: math.unit(75, "kg"),
  36395. name: "Front",
  36396. image: {
  36397. source: "./media/characters/chee/front.svg",
  36398. extra: 1796/1740,
  36399. bottom: 40/1836
  36400. }
  36401. },
  36402. },
  36403. [
  36404. {
  36405. name: "Micro-Micro",
  36406. height: math.unit(1, "nm")
  36407. },
  36408. {
  36409. name: "Micro-erst",
  36410. height: math.unit(1, "micrometer")
  36411. },
  36412. {
  36413. name: "Micro-er",
  36414. height: math.unit(1, "cm")
  36415. },
  36416. {
  36417. name: "Normal",
  36418. height: math.unit(175, "cm"),
  36419. default: true
  36420. },
  36421. {
  36422. name: "Macro",
  36423. height: math.unit(100, "m")
  36424. },
  36425. {
  36426. name: "Macro-er",
  36427. height: math.unit(1, "km")
  36428. },
  36429. {
  36430. name: "Macro-erst",
  36431. height: math.unit(10, "km")
  36432. },
  36433. {
  36434. name: "Macro-Macro",
  36435. height: math.unit(100, "km")
  36436. },
  36437. ]
  36438. ))
  36439. characterMakers.push(() => makeCharacter(
  36440. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36441. {
  36442. front: {
  36443. height: math.unit(11 + 9/12, "feet"),
  36444. weight: math.unit(935, "lb"),
  36445. name: "Front",
  36446. image: {
  36447. source: "./media/characters/kingsley/front.svg",
  36448. extra: 1803/1674,
  36449. bottom: 127/1930
  36450. }
  36451. },
  36452. frontNude: {
  36453. height: math.unit(11 + 9/12, "feet"),
  36454. weight: math.unit(935, "lb"),
  36455. name: "Front (Nude)",
  36456. image: {
  36457. source: "./media/characters/kingsley/front-nude.svg",
  36458. extra: 1803/1674,
  36459. bottom: 127/1930
  36460. }
  36461. },
  36462. },
  36463. [
  36464. {
  36465. name: "Normal",
  36466. height: math.unit(11 + 9/12, "feet"),
  36467. default: true
  36468. },
  36469. ]
  36470. ))
  36471. characterMakers.push(() => makeCharacter(
  36472. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36473. {
  36474. side: {
  36475. height: math.unit(9, "feet"),
  36476. name: "Side",
  36477. image: {
  36478. source: "./media/characters/rymel/side.svg",
  36479. extra: 792/469,
  36480. bottom: 121/913
  36481. }
  36482. },
  36483. maw: {
  36484. height: math.unit(2.4, "meters"),
  36485. name: "Maw",
  36486. image: {
  36487. source: "./media/characters/rymel/maw.svg"
  36488. }
  36489. },
  36490. },
  36491. [
  36492. {
  36493. name: "House Drake",
  36494. height: math.unit(2, "feet")
  36495. },
  36496. {
  36497. name: "Reduced",
  36498. height: math.unit(4.5, "feet")
  36499. },
  36500. {
  36501. name: "Normal",
  36502. height: math.unit(9, "feet"),
  36503. default: true
  36504. },
  36505. ]
  36506. ))
  36507. characterMakers.push(() => makeCharacter(
  36508. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36509. {
  36510. front: {
  36511. height: math.unit(1.74, "meters"),
  36512. weight: math.unit(55, "kg"),
  36513. name: "Front",
  36514. image: {
  36515. source: "./media/characters/rubus/front.svg",
  36516. extra: 1894/1742,
  36517. bottom: 44/1938
  36518. }
  36519. },
  36520. },
  36521. [
  36522. {
  36523. name: "Normal",
  36524. height: math.unit(1.74, "meters"),
  36525. default: true
  36526. },
  36527. ]
  36528. ))
  36529. characterMakers.push(() => makeCharacter(
  36530. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36531. {
  36532. front: {
  36533. height: math.unit(5 + 2/12, "feet"),
  36534. weight: math.unit(112, "lb"),
  36535. name: "Front",
  36536. image: {
  36537. source: "./media/characters/cassie-kingston/front.svg",
  36538. extra: 1438/1390,
  36539. bottom: 47/1485
  36540. }
  36541. },
  36542. },
  36543. [
  36544. {
  36545. name: "Normal",
  36546. height: math.unit(5 + 2/12, "feet"),
  36547. default: true
  36548. },
  36549. {
  36550. name: "Macro",
  36551. height: math.unit(128, "feet")
  36552. },
  36553. {
  36554. name: "Megamacro",
  36555. height: math.unit(2.56, "miles")
  36556. },
  36557. ]
  36558. ))
  36559. characterMakers.push(() => makeCharacter(
  36560. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36561. {
  36562. front: {
  36563. height: math.unit(7, "feet"),
  36564. name: "Front",
  36565. image: {
  36566. source: "./media/characters/fox/front.svg",
  36567. extra: 1798/1703,
  36568. bottom: 55/1853
  36569. }
  36570. },
  36571. back: {
  36572. height: math.unit(7, "feet"),
  36573. name: "Back",
  36574. image: {
  36575. source: "./media/characters/fox/back.svg",
  36576. extra: 1748/1649,
  36577. bottom: 32/1780
  36578. }
  36579. },
  36580. head: {
  36581. height: math.unit(1.95, "feet"),
  36582. name: "Head",
  36583. image: {
  36584. source: "./media/characters/fox/head.svg"
  36585. }
  36586. },
  36587. dick: {
  36588. height: math.unit(1.33, "feet"),
  36589. name: "Dick",
  36590. image: {
  36591. source: "./media/characters/fox/dick.svg"
  36592. }
  36593. },
  36594. foot: {
  36595. height: math.unit(1, "feet"),
  36596. name: "Foot",
  36597. image: {
  36598. source: "./media/characters/fox/foot.svg"
  36599. }
  36600. },
  36601. paw: {
  36602. height: math.unit(0.92, "feet"),
  36603. name: "Paw",
  36604. image: {
  36605. source: "./media/characters/fox/paw.svg"
  36606. }
  36607. },
  36608. },
  36609. [
  36610. {
  36611. name: "Small",
  36612. height: math.unit(3, "inches")
  36613. },
  36614. {
  36615. name: "\"Realistic\"",
  36616. height: math.unit(7, "feet")
  36617. },
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(150, "feet"),
  36621. default: true
  36622. },
  36623. {
  36624. name: "BIG",
  36625. height: math.unit(1200, "feet")
  36626. },
  36627. {
  36628. name: "👀",
  36629. height: math.unit(5, "miles")
  36630. },
  36631. {
  36632. name: "👀👀👀",
  36633. height: math.unit(64, "miles")
  36634. },
  36635. ]
  36636. ))
  36637. characterMakers.push(() => makeCharacter(
  36638. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36639. {
  36640. front: {
  36641. height: math.unit(625, "feet"),
  36642. name: "Front",
  36643. image: {
  36644. source: "./media/characters/asonja-rossa/front.svg",
  36645. extra: 1833/1686,
  36646. bottom: 24/1857
  36647. }
  36648. },
  36649. back: {
  36650. height: math.unit(625, "feet"),
  36651. name: "Back",
  36652. image: {
  36653. source: "./media/characters/asonja-rossa/back.svg",
  36654. extra: 1852/1753,
  36655. bottom: 26/1878
  36656. }
  36657. },
  36658. },
  36659. [
  36660. {
  36661. name: "Macro",
  36662. height: math.unit(625, "feet"),
  36663. default: true
  36664. },
  36665. ]
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36669. {
  36670. side: {
  36671. height: math.unit(6, "feet"),
  36672. weight: math.unit(150, "lb"),
  36673. name: "Side",
  36674. image: {
  36675. source: "./media/characters/rezukii/side.svg",
  36676. extra: 979/542,
  36677. bottom: 87/1066
  36678. }
  36679. },
  36680. },
  36681. [
  36682. {
  36683. name: "Tiny",
  36684. height: math.unit(2, "feet")
  36685. },
  36686. {
  36687. name: "Smol",
  36688. height: math.unit(4, "feet")
  36689. },
  36690. {
  36691. name: "Normal",
  36692. height: math.unit(8, "feet"),
  36693. default: true
  36694. },
  36695. {
  36696. name: "Big",
  36697. height: math.unit(12, "feet")
  36698. },
  36699. {
  36700. name: "Macro",
  36701. height: math.unit(30, "feet")
  36702. },
  36703. ]
  36704. ))
  36705. characterMakers.push(() => makeCharacter(
  36706. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36707. {
  36708. front: {
  36709. height: math.unit(14, "feet"),
  36710. weight: math.unit(9.5, "tonnes"),
  36711. name: "Front",
  36712. image: {
  36713. source: "./media/characters/dawnheart/front.svg",
  36714. extra: 2792/2675,
  36715. bottom: 64/2856
  36716. }
  36717. },
  36718. },
  36719. [
  36720. {
  36721. name: "Normal",
  36722. height: math.unit(14, "feet"),
  36723. default: true
  36724. },
  36725. ]
  36726. ))
  36727. characterMakers.push(() => makeCharacter(
  36728. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36729. {
  36730. front: {
  36731. height: math.unit(1.7, "m"),
  36732. name: "Front",
  36733. image: {
  36734. source: "./media/characters/gladi/front.svg",
  36735. extra: 1460/1362,
  36736. bottom: 19/1479
  36737. }
  36738. },
  36739. back: {
  36740. height: math.unit(1.7, "m"),
  36741. name: "Back",
  36742. image: {
  36743. source: "./media/characters/gladi/back.svg",
  36744. extra: 1459/1357,
  36745. bottom: 12/1471
  36746. }
  36747. },
  36748. feral: {
  36749. height: math.unit(2.05, "m"),
  36750. name: "Feral",
  36751. image: {
  36752. source: "./media/characters/gladi/feral.svg",
  36753. extra: 821/557,
  36754. bottom: 91/912
  36755. }
  36756. },
  36757. },
  36758. [
  36759. {
  36760. name: "Shortest",
  36761. height: math.unit(70, "cm")
  36762. },
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(1.7, "m")
  36766. },
  36767. {
  36768. name: "Macro",
  36769. height: math.unit(10, "m"),
  36770. default: true
  36771. },
  36772. {
  36773. name: "Tallest",
  36774. height: math.unit(200, "m")
  36775. },
  36776. ]
  36777. ))
  36778. characterMakers.push(() => makeCharacter(
  36779. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36780. {
  36781. front: {
  36782. height: math.unit(5 + 7/12, "feet"),
  36783. weight: math.unit(92, "kg"),
  36784. name: "Front",
  36785. image: {
  36786. source: "./media/characters/erdno/front.svg",
  36787. extra: 1954/1889,
  36788. bottom: 22/1976
  36789. }
  36790. },
  36791. },
  36792. [
  36793. {
  36794. name: "Normal",
  36795. height: math.unit(5 + 7/12, "feet"),
  36796. default: true
  36797. },
  36798. ]
  36799. ))
  36800. characterMakers.push(() => makeCharacter(
  36801. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36802. {
  36803. front: {
  36804. height: math.unit(5 + 10/12, "feet"),
  36805. weight: math.unit(150, "lb"),
  36806. name: "Front",
  36807. image: {
  36808. source: "./media/characters/jamie/front.svg",
  36809. extra: 1908/1768,
  36810. bottom: 19/1927
  36811. }
  36812. },
  36813. },
  36814. [
  36815. {
  36816. name: "Minimum",
  36817. height: math.unit(2, "cm")
  36818. },
  36819. {
  36820. name: "Micro",
  36821. height: math.unit(3, "inches")
  36822. },
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(5 + 10/12, "feet"),
  36826. default: true
  36827. },
  36828. {
  36829. name: "Macro",
  36830. height: math.unit(150, "feet")
  36831. },
  36832. {
  36833. name: "Megamacro",
  36834. height: math.unit(10000, "m")
  36835. },
  36836. ]
  36837. ))
  36838. characterMakers.push(() => makeCharacter(
  36839. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36840. {
  36841. front: {
  36842. height: math.unit(2, "meters"),
  36843. weight: math.unit(100, "kg"),
  36844. name: "Front",
  36845. image: {
  36846. source: "./media/characters/shiron/front.svg",
  36847. extra: 2103/1985,
  36848. bottom: 98/2201
  36849. }
  36850. },
  36851. back: {
  36852. height: math.unit(2, "meters"),
  36853. weight: math.unit(100, "kg"),
  36854. name: "Back",
  36855. image: {
  36856. source: "./media/characters/shiron/back.svg",
  36857. extra: 2110/2015,
  36858. bottom: 89/2199
  36859. }
  36860. },
  36861. hand: {
  36862. height: math.unit(0.96, "feet"),
  36863. name: "Hand",
  36864. image: {
  36865. source: "./media/characters/shiron/hand.svg"
  36866. }
  36867. },
  36868. foot: {
  36869. height: math.unit(1.464, "feet"),
  36870. name: "Foot",
  36871. image: {
  36872. source: "./media/characters/shiron/foot.svg"
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Normal",
  36879. height: math.unit(2, "meters")
  36880. },
  36881. {
  36882. name: "Macro",
  36883. height: math.unit(500, "meters"),
  36884. default: true
  36885. },
  36886. {
  36887. name: "Megamacro",
  36888. height: math.unit(20, "km")
  36889. },
  36890. ]
  36891. ))
  36892. characterMakers.push(() => makeCharacter(
  36893. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36894. {
  36895. front: {
  36896. height: math.unit(6, "feet"),
  36897. name: "Front",
  36898. image: {
  36899. source: "./media/characters/sam/front.svg",
  36900. extra: 849/826,
  36901. bottom: 19/868
  36902. }
  36903. },
  36904. },
  36905. [
  36906. {
  36907. name: "Normal",
  36908. height: math.unit(6, "feet"),
  36909. default: true
  36910. },
  36911. ]
  36912. ))
  36913. characterMakers.push(() => makeCharacter(
  36914. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36915. {
  36916. front: {
  36917. height: math.unit(8 + 4/12, "feet"),
  36918. weight: math.unit(122, "kg"),
  36919. name: "Front",
  36920. image: {
  36921. source: "./media/characters/namori-kurogawa/front.svg",
  36922. extra: 1894/1576,
  36923. bottom: 34/1928
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Normal",
  36930. height: math.unit(8 + 4/12, "feet"),
  36931. default: true
  36932. },
  36933. ]
  36934. ))
  36935. characterMakers.push(() => makeCharacter(
  36936. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36937. {
  36938. front: {
  36939. height: math.unit(9, "feet"),
  36940. weight: math.unit(621, "lb"),
  36941. name: "Front",
  36942. image: {
  36943. source: "./media/characters/unmru/front.svg",
  36944. extra: 1853/1747,
  36945. bottom: 73/1926
  36946. }
  36947. },
  36948. side: {
  36949. height: math.unit(9, "feet"),
  36950. weight: math.unit(621, "lb"),
  36951. name: "Side",
  36952. image: {
  36953. source: "./media/characters/unmru/side.svg",
  36954. extra: 1781/1671,
  36955. bottom: 127/1908
  36956. }
  36957. },
  36958. back: {
  36959. height: math.unit(9, "feet"),
  36960. weight: math.unit(621, "lb"),
  36961. name: "Back",
  36962. image: {
  36963. source: "./media/characters/unmru/back.svg",
  36964. extra: 1894/1765,
  36965. bottom: 75/1969
  36966. }
  36967. },
  36968. dick: {
  36969. height: math.unit(3, "feet"),
  36970. weight: math.unit(35, "lb"),
  36971. name: "Dick",
  36972. image: {
  36973. source: "./media/characters/unmru/dick.svg"
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Normal",
  36980. height: math.unit(9, "feet")
  36981. },
  36982. {
  36983. name: "Natural",
  36984. height: math.unit(27, "feet"),
  36985. default: true
  36986. },
  36987. {
  36988. name: "Giant",
  36989. height: math.unit(90, "feet")
  36990. },
  36991. {
  36992. name: "Kaiju",
  36993. height: math.unit(270, "feet")
  36994. },
  36995. {
  36996. name: "Macro",
  36997. height: math.unit(900, "feet")
  36998. },
  36999. {
  37000. name: "Macro+",
  37001. height: math.unit(2700, "feet")
  37002. },
  37003. {
  37004. name: "Megamacro",
  37005. height: math.unit(9000, "feet")
  37006. },
  37007. {
  37008. name: "City-Crushing",
  37009. height: math.unit(27000, "feet")
  37010. },
  37011. {
  37012. name: "Mountain-Mashing",
  37013. height: math.unit(90000, "feet")
  37014. },
  37015. {
  37016. name: "Earth-Eclipsing",
  37017. height: math.unit(2.7e8, "feet")
  37018. },
  37019. {
  37020. name: "Sol-Swallowing",
  37021. height: math.unit(9e10, "feet")
  37022. },
  37023. {
  37024. name: "Majoris-Munching",
  37025. height: math.unit(2.7e13, "feet")
  37026. },
  37027. ]
  37028. ))
  37029. characterMakers.push(() => makeCharacter(
  37030. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37031. {
  37032. front: {
  37033. height: math.unit(1, "inch"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/squeaks-mouse/front.svg",
  37037. extra: 352/308,
  37038. bottom: 25/377
  37039. }
  37040. },
  37041. },
  37042. [
  37043. {
  37044. name: "Micro",
  37045. height: math.unit(1, "inch"),
  37046. default: true
  37047. },
  37048. ]
  37049. ))
  37050. characterMakers.push(() => makeCharacter(
  37051. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37052. {
  37053. side: {
  37054. height: math.unit(35, "feet"),
  37055. name: "Side",
  37056. image: {
  37057. source: "./media/characters/sayko/side.svg",
  37058. extra: 1697/1021,
  37059. bottom: 82/1779
  37060. }
  37061. },
  37062. head: {
  37063. height: math.unit(16, "feet"),
  37064. name: "Head",
  37065. image: {
  37066. source: "./media/characters/sayko/head.svg"
  37067. }
  37068. },
  37069. forepaw: {
  37070. height: math.unit(7.85, "feet"),
  37071. name: "Forepaw",
  37072. image: {
  37073. source: "./media/characters/sayko/forepaw.svg"
  37074. }
  37075. },
  37076. hindpaw: {
  37077. height: math.unit(8.8, "feet"),
  37078. name: "Hindpaw",
  37079. image: {
  37080. source: "./media/characters/sayko/hindpaw.svg"
  37081. }
  37082. },
  37083. },
  37084. [
  37085. {
  37086. name: "Normal",
  37087. height: math.unit(35, "feet"),
  37088. default: true
  37089. },
  37090. {
  37091. name: "Colossus",
  37092. height: math.unit(100, "meters")
  37093. },
  37094. {
  37095. name: "\"Small\" Deity",
  37096. height: math.unit(1, "km")
  37097. },
  37098. {
  37099. name: "\"Large\" Deity",
  37100. height: math.unit(15, "km")
  37101. },
  37102. ]
  37103. ))
  37104. characterMakers.push(() => makeCharacter(
  37105. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37106. {
  37107. front: {
  37108. height: math.unit(6, "feet"),
  37109. weight: math.unit(250, "lb"),
  37110. name: "Front",
  37111. image: {
  37112. source: "./media/characters/mukiro/front.svg",
  37113. extra: 1368/1310,
  37114. bottom: 34/1402
  37115. }
  37116. },
  37117. },
  37118. [
  37119. {
  37120. name: "Normal",
  37121. height: math.unit(6, "feet"),
  37122. default: true
  37123. },
  37124. ]
  37125. ))
  37126. characterMakers.push(() => makeCharacter(
  37127. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37128. {
  37129. front: {
  37130. height: math.unit(12 + 4/12, "feet"),
  37131. name: "Front",
  37132. image: {
  37133. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37134. extra: 1346/1311,
  37135. bottom: 65/1411
  37136. }
  37137. },
  37138. },
  37139. [
  37140. {
  37141. name: "Base",
  37142. height: math.unit(12 + 4/12, "feet"),
  37143. default: true
  37144. },
  37145. {
  37146. name: "Macro",
  37147. height: math.unit(150, "feet")
  37148. },
  37149. {
  37150. name: "Mega",
  37151. height: math.unit(2, "miles")
  37152. },
  37153. {
  37154. name: "Demi God",
  37155. height: math.unit(4, "AU")
  37156. },
  37157. {
  37158. name: "God Size",
  37159. height: math.unit(1, "universe")
  37160. },
  37161. ]
  37162. ))
  37163. characterMakers.push(() => makeCharacter(
  37164. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37165. {
  37166. front: {
  37167. height: math.unit(3 + 3/12, "feet"),
  37168. weight: math.unit(88, "lb"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/trey/front.svg",
  37172. extra: 1815/1509,
  37173. bottom: 60/1875
  37174. }
  37175. },
  37176. },
  37177. [
  37178. {
  37179. name: "Normal",
  37180. height: math.unit(3 + 3/12, "feet"),
  37181. default: true
  37182. },
  37183. ]
  37184. ))
  37185. characterMakers.push(() => makeCharacter(
  37186. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37187. {
  37188. front: {
  37189. height: math.unit(4, "meters"),
  37190. name: "Front",
  37191. image: {
  37192. source: "./media/characters/adelonda/front.svg",
  37193. extra: 1942/1775,
  37194. bottom: 33/1975
  37195. }
  37196. },
  37197. back: {
  37198. height: math.unit(4, "meters"),
  37199. name: "Back",
  37200. image: {
  37201. source: "./media/characters/adelonda/back.svg",
  37202. extra: 1932/1780,
  37203. bottom: 42/1974
  37204. }
  37205. },
  37206. bust: {
  37207. height: math.unit(1.8, "meter"),
  37208. name: "Bust",
  37209. image: {
  37210. source: "./media/characters/adelonda/bust.svg"
  37211. }
  37212. },
  37213. },
  37214. [
  37215. {
  37216. name: "Normal",
  37217. height: math.unit(4, "meters"),
  37218. default: true
  37219. },
  37220. ]
  37221. ))
  37222. characterMakers.push(() => makeCharacter(
  37223. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37224. {
  37225. front: {
  37226. height: math.unit(8 + 4/12, "feet"),
  37227. weight: math.unit(670, "lb"),
  37228. name: "Front",
  37229. image: {
  37230. source: "./media/characters/acadiel/front.svg",
  37231. extra: 1901/1595,
  37232. bottom: 142/2043
  37233. }
  37234. },
  37235. },
  37236. [
  37237. {
  37238. name: "Normal",
  37239. height: math.unit(8 + 4/12, "feet"),
  37240. default: true
  37241. },
  37242. {
  37243. name: "Macro",
  37244. height: math.unit(200, "feet")
  37245. },
  37246. ]
  37247. ))
  37248. characterMakers.push(() => makeCharacter(
  37249. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37250. {
  37251. front: {
  37252. height: math.unit(6 + 2/12, "feet"),
  37253. weight: math.unit(185, "lb"),
  37254. name: "Front",
  37255. image: {
  37256. source: "./media/characters/kayne-ein/front.svg",
  37257. extra: 1780/1560,
  37258. bottom: 81/1861
  37259. }
  37260. },
  37261. },
  37262. [
  37263. {
  37264. name: "Normal",
  37265. height: math.unit(6 + 2/12, "feet"),
  37266. default: true
  37267. },
  37268. {
  37269. name: "Transformation Stage",
  37270. height: math.unit(15, "feet")
  37271. },
  37272. {
  37273. name: "Macro",
  37274. height: math.unit(150, "feet")
  37275. },
  37276. {
  37277. name: "Earth's Shadow",
  37278. height: math.unit(6200, "miles")
  37279. },
  37280. {
  37281. name: "Universal Demon",
  37282. height: math.unit(28e9, "parsecs")
  37283. },
  37284. {
  37285. name: "Multiverse God",
  37286. height: math.unit(3, "multiverses")
  37287. },
  37288. ]
  37289. ))
  37290. characterMakers.push(() => makeCharacter(
  37291. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37292. {
  37293. front: {
  37294. height: math.unit(5 + 5/12, "feet"),
  37295. name: "Front",
  37296. image: {
  37297. source: "./media/characters/fawn/front.svg",
  37298. extra: 1873/1731,
  37299. bottom: 95/1968
  37300. }
  37301. },
  37302. back: {
  37303. height: math.unit(5 + 5/12, "feet"),
  37304. name: "Back",
  37305. image: {
  37306. source: "./media/characters/fawn/back.svg",
  37307. extra: 1813/1700,
  37308. bottom: 14/1827
  37309. }
  37310. },
  37311. hoof: {
  37312. height: math.unit(1.45, "feet"),
  37313. name: "Hoof",
  37314. image: {
  37315. source: "./media/characters/fawn/hoof.svg"
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Normal",
  37322. height: math.unit(5 + 5/12, "feet"),
  37323. default: true
  37324. },
  37325. ]
  37326. ))
  37327. characterMakers.push(() => makeCharacter(
  37328. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37329. {
  37330. front: {
  37331. height: math.unit(2 + 5/12, "feet"),
  37332. name: "Front",
  37333. image: {
  37334. source: "./media/characters/orion/front.svg",
  37335. extra: 1366/1304,
  37336. bottom: 43/1409
  37337. }
  37338. },
  37339. paw: {
  37340. height: math.unit(0.52, "feet"),
  37341. name: "Paw",
  37342. image: {
  37343. source: "./media/characters/orion/paw.svg"
  37344. }
  37345. },
  37346. },
  37347. [
  37348. {
  37349. name: "Normal",
  37350. height: math.unit(2 + 5/12, "feet"),
  37351. default: true
  37352. },
  37353. ]
  37354. ))
  37355. characterMakers.push(() => makeCharacter(
  37356. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37357. {
  37358. front: {
  37359. height: math.unit(5 + 10/12, "feet"),
  37360. name: "Front",
  37361. image: {
  37362. source: "./media/characters/vera/front.svg",
  37363. extra: 1680/1575,
  37364. bottom: 49/1729
  37365. }
  37366. },
  37367. back: {
  37368. height: math.unit(5 + 10/12, "feet"),
  37369. name: "Back",
  37370. image: {
  37371. source: "./media/characters/vera/back.svg",
  37372. extra: 1700/1588,
  37373. bottom: 18/1718
  37374. }
  37375. },
  37376. arcanine: {
  37377. height: math.unit(6 + 8/12, "feet"),
  37378. name: "Arcanine",
  37379. image: {
  37380. source: "./media/characters/vera/arcanine.svg",
  37381. extra: 1590/1511,
  37382. bottom: 71/1661
  37383. }
  37384. },
  37385. maw: {
  37386. height: math.unit(0.82, "feet"),
  37387. name: "Maw",
  37388. image: {
  37389. source: "./media/characters/vera/maw.svg"
  37390. }
  37391. },
  37392. mawArcanine: {
  37393. height: math.unit(0.97, "feet"),
  37394. name: "Maw (Arcanine)",
  37395. image: {
  37396. source: "./media/characters/vera/maw-arcanine.svg"
  37397. }
  37398. },
  37399. paw: {
  37400. height: math.unit(0.75, "feet"),
  37401. name: "Paw",
  37402. image: {
  37403. source: "./media/characters/vera/paw.svg"
  37404. }
  37405. },
  37406. pawprint: {
  37407. height: math.unit(0.52, "feet"),
  37408. name: "Pawprint",
  37409. image: {
  37410. source: "./media/characters/vera/pawprint.svg"
  37411. }
  37412. },
  37413. },
  37414. [
  37415. {
  37416. name: "Normal",
  37417. height: math.unit(5 + 10/12, "feet"),
  37418. default: true
  37419. },
  37420. {
  37421. name: "Macro",
  37422. height: math.unit(75, "feet")
  37423. },
  37424. ]
  37425. ))
  37426. characterMakers.push(() => makeCharacter(
  37427. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37428. {
  37429. front: {
  37430. height: math.unit(4, "feet"),
  37431. weight: math.unit(40, "lb"),
  37432. name: "Front",
  37433. image: {
  37434. source: "./media/characters/orvan-rabbit/front.svg",
  37435. extra: 1896/1642,
  37436. bottom: 29/1925
  37437. }
  37438. },
  37439. },
  37440. [
  37441. {
  37442. name: "Normal",
  37443. height: math.unit(4, "feet"),
  37444. default: true
  37445. },
  37446. ]
  37447. ))
  37448. characterMakers.push(() => makeCharacter(
  37449. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37450. {
  37451. front: {
  37452. height: math.unit(6, "feet"),
  37453. weight: math.unit(168, "lb"),
  37454. name: "Front",
  37455. image: {
  37456. source: "./media/characters/lisa/front.svg",
  37457. extra: 2065/1867,
  37458. bottom: 46/2111
  37459. }
  37460. },
  37461. back: {
  37462. height: math.unit(6, "feet"),
  37463. weight: math.unit(168, "lb"),
  37464. name: "Back",
  37465. image: {
  37466. source: "./media/characters/lisa/back.svg",
  37467. extra: 1982/1838,
  37468. bottom: 29/2011
  37469. }
  37470. },
  37471. maw: {
  37472. height: math.unit(0.81, "feet"),
  37473. name: "Maw",
  37474. image: {
  37475. source: "./media/characters/lisa/maw.svg"
  37476. }
  37477. },
  37478. paw: {
  37479. height: math.unit(0.9, "feet"),
  37480. name: "Paw",
  37481. image: {
  37482. source: "./media/characters/lisa/paw.svg"
  37483. }
  37484. },
  37485. caribousune: {
  37486. height: math.unit(7 + 2/12, "feet"),
  37487. weight: math.unit(268, "lb"),
  37488. name: "Caribousune",
  37489. image: {
  37490. source: "./media/characters/lisa/caribousune.svg",
  37491. extra: 1843/1633,
  37492. bottom: 29/1872
  37493. }
  37494. },
  37495. frontCaribousune: {
  37496. height: math.unit(7 + 2/12, "feet"),
  37497. weight: math.unit(268, "lb"),
  37498. name: "Front (Caribousune)",
  37499. image: {
  37500. source: "./media/characters/lisa/front-caribousune.svg",
  37501. extra: 1818/1638,
  37502. bottom: 52/1870
  37503. }
  37504. },
  37505. sideCaribousune: {
  37506. height: math.unit(7 + 2/12, "feet"),
  37507. weight: math.unit(268, "lb"),
  37508. name: "Side (Caribousune)",
  37509. image: {
  37510. source: "./media/characters/lisa/side-caribousune.svg",
  37511. extra: 1851/1635,
  37512. bottom: 16/1867
  37513. }
  37514. },
  37515. backCaribousune: {
  37516. height: math.unit(7 + 2/12, "feet"),
  37517. weight: math.unit(268, "lb"),
  37518. name: "Back (Caribousune)",
  37519. image: {
  37520. source: "./media/characters/lisa/back-caribousune.svg",
  37521. extra: 1801/1604,
  37522. bottom: 44/1845
  37523. }
  37524. },
  37525. caribou: {
  37526. height: math.unit(7 + 2/12, "feet"),
  37527. weight: math.unit(268, "lb"),
  37528. name: "Caribou",
  37529. image: {
  37530. source: "./media/characters/lisa/caribou.svg",
  37531. extra: 1843/1633,
  37532. bottom: 29/1872
  37533. }
  37534. },
  37535. frontCaribou: {
  37536. height: math.unit(7 + 2/12, "feet"),
  37537. weight: math.unit(268, "lb"),
  37538. name: "Front (Caribou)",
  37539. image: {
  37540. source: "./media/characters/lisa/front-caribou.svg",
  37541. extra: 1818/1638,
  37542. bottom: 52/1870
  37543. }
  37544. },
  37545. sideCaribou: {
  37546. height: math.unit(7 + 2/12, "feet"),
  37547. weight: math.unit(268, "lb"),
  37548. name: "Side (Caribou)",
  37549. image: {
  37550. source: "./media/characters/lisa/side-caribou.svg",
  37551. extra: 1851/1635,
  37552. bottom: 16/1867
  37553. }
  37554. },
  37555. backCaribou: {
  37556. height: math.unit(7 + 2/12, "feet"),
  37557. weight: math.unit(268, "lb"),
  37558. name: "Back (Caribou)",
  37559. image: {
  37560. source: "./media/characters/lisa/back-caribou.svg",
  37561. extra: 1801/1604,
  37562. bottom: 44/1845
  37563. }
  37564. },
  37565. mawCaribou: {
  37566. height: math.unit(1.45, "feet"),
  37567. name: "Maw (Caribou)",
  37568. image: {
  37569. source: "./media/characters/lisa/maw-caribou.svg"
  37570. }
  37571. },
  37572. mawCaribousune: {
  37573. height: math.unit(1.45, "feet"),
  37574. name: "Maw (Caribousune)",
  37575. image: {
  37576. source: "./media/characters/lisa/maw-caribousune.svg"
  37577. }
  37578. },
  37579. pawCaribousune: {
  37580. height: math.unit(1.61, "feet"),
  37581. name: "Paw (Caribou)",
  37582. image: {
  37583. source: "./media/characters/lisa/paw-caribousune.svg"
  37584. }
  37585. },
  37586. },
  37587. [
  37588. {
  37589. name: "Normal",
  37590. height: math.unit(6, "feet")
  37591. },
  37592. {
  37593. name: "God Size",
  37594. height: math.unit(72, "feet"),
  37595. default: true
  37596. },
  37597. {
  37598. name: "Towering",
  37599. height: math.unit(288, "feet")
  37600. },
  37601. {
  37602. name: "City Size",
  37603. height: math.unit(48384, "feet")
  37604. },
  37605. {
  37606. name: "Continental",
  37607. height: math.unit(4200, "miles")
  37608. },
  37609. {
  37610. name: "Planet Eater",
  37611. height: math.unit(42, "earths")
  37612. },
  37613. {
  37614. name: "Star Swallower",
  37615. height: math.unit(42, "solarradii")
  37616. },
  37617. {
  37618. name: "System Swallower",
  37619. height: math.unit(84000, "AU")
  37620. },
  37621. {
  37622. name: "Galaxy Gobbler",
  37623. height: math.unit(42, "galaxies")
  37624. },
  37625. {
  37626. name: "Universe Devourer",
  37627. height: math.unit(42, "universes")
  37628. },
  37629. {
  37630. name: "Multiverse Muncher",
  37631. height: math.unit(42, "multiverses")
  37632. },
  37633. ]
  37634. ))
  37635. characterMakers.push(() => makeCharacter(
  37636. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37637. {
  37638. front: {
  37639. height: math.unit(36, "feet"),
  37640. name: "Front",
  37641. image: {
  37642. source: "./media/characters/shadow-rat/front.svg",
  37643. extra: 1845/1758,
  37644. bottom: 83/1928
  37645. }
  37646. },
  37647. },
  37648. [
  37649. {
  37650. name: "Macro",
  37651. height: math.unit(36, "feet"),
  37652. default: true
  37653. },
  37654. ]
  37655. ))
  37656. characterMakers.push(() => makeCharacter(
  37657. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37658. {
  37659. side: {
  37660. height: math.unit(8, "feet"),
  37661. weight: math.unit(2630, "lb"),
  37662. name: "Side",
  37663. image: {
  37664. source: "./media/characters/torallia/side.svg",
  37665. extra: 2164/2021,
  37666. bottom: 371/2535
  37667. }
  37668. },
  37669. },
  37670. [
  37671. {
  37672. name: "Mortal Interaction",
  37673. height: math.unit(8, "feet")
  37674. },
  37675. {
  37676. name: "Natural",
  37677. height: math.unit(24, "feet"),
  37678. default: true
  37679. },
  37680. {
  37681. name: "Giant",
  37682. height: math.unit(80, "feet")
  37683. },
  37684. {
  37685. name: "Kaiju",
  37686. height: math.unit(240, "feet")
  37687. },
  37688. {
  37689. name: "Macro",
  37690. height: math.unit(800, "feet")
  37691. },
  37692. {
  37693. name: "Macro+",
  37694. height: math.unit(2400, "feet")
  37695. },
  37696. {
  37697. name: "Macro++",
  37698. height: math.unit(8000, "feet")
  37699. },
  37700. {
  37701. name: "City-Crushing",
  37702. height: math.unit(24000, "feet")
  37703. },
  37704. {
  37705. name: "Mountain-Mashing",
  37706. height: math.unit(80000, "feet")
  37707. },
  37708. {
  37709. name: "District Demolisher",
  37710. height: math.unit(240000, "feet")
  37711. },
  37712. {
  37713. name: "Tri-County Terror",
  37714. height: math.unit(800000, "feet")
  37715. },
  37716. {
  37717. name: "State Smasher",
  37718. height: math.unit(2.4e6, "feet")
  37719. },
  37720. {
  37721. name: "Nation Nemesis",
  37722. height: math.unit(8e6, "feet")
  37723. },
  37724. {
  37725. name: "Continent Cracker",
  37726. height: math.unit(2.4e7, "feet")
  37727. },
  37728. {
  37729. name: "Planet-Pillaging",
  37730. height: math.unit(8e7, "feet")
  37731. },
  37732. {
  37733. name: "Earth-Eclipsing",
  37734. height: math.unit(2.4e8, "feet")
  37735. },
  37736. {
  37737. name: "Jovian-Jostling",
  37738. height: math.unit(8e8, "feet")
  37739. },
  37740. {
  37741. name: "Gas Giant Gulper",
  37742. height: math.unit(2.4e9, "feet")
  37743. },
  37744. {
  37745. name: "Astral Annihilator",
  37746. height: math.unit(8e9, "feet")
  37747. },
  37748. {
  37749. name: "Celestial Conqueror",
  37750. height: math.unit(2.4e10, "feet")
  37751. },
  37752. {
  37753. name: "Sol-Swallowing",
  37754. height: math.unit(8e10, "feet")
  37755. },
  37756. {
  37757. name: "Hunter of the Heavens",
  37758. height: math.unit(2.4e13, "feet")
  37759. },
  37760. ]
  37761. ))
  37762. characterMakers.push(() => makeCharacter(
  37763. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37764. {
  37765. front: {
  37766. height: math.unit(6 + 8/12, "feet"),
  37767. name: "Front",
  37768. image: {
  37769. source: "./media/characters/rebecca-pawlson/front.svg",
  37770. extra: 1737/1596,
  37771. bottom: 107/1844
  37772. }
  37773. },
  37774. back: {
  37775. height: math.unit(6 + 8/12, "feet"),
  37776. name: "Back",
  37777. image: {
  37778. source: "./media/characters/rebecca-pawlson/back.svg",
  37779. extra: 1702/1523,
  37780. bottom: 86/1788
  37781. }
  37782. },
  37783. },
  37784. [
  37785. {
  37786. name: "Normal",
  37787. height: math.unit(6 + 8/12, "feet")
  37788. },
  37789. {
  37790. name: "Mini Macro",
  37791. height: math.unit(10, "feet"),
  37792. default: true
  37793. },
  37794. {
  37795. name: "Macro",
  37796. height: math.unit(100, "feet")
  37797. },
  37798. {
  37799. name: "Mega Macro",
  37800. height: math.unit(2500, "feet")
  37801. },
  37802. {
  37803. name: "Giga Macro",
  37804. height: math.unit(50, "miles")
  37805. },
  37806. ]
  37807. ))
  37808. characterMakers.push(() => makeCharacter(
  37809. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37810. {
  37811. front: {
  37812. height: math.unit(7 + 6/12, "feet"),
  37813. weight: math.unit(600, "lb"),
  37814. name: "Front",
  37815. image: {
  37816. source: "./media/characters/moxie-nova/front.svg",
  37817. extra: 1734/1652,
  37818. bottom: 41/1775
  37819. }
  37820. },
  37821. },
  37822. [
  37823. {
  37824. name: "Normal",
  37825. height: math.unit(7 + 6/12, "feet"),
  37826. default: true
  37827. },
  37828. ]
  37829. ))
  37830. characterMakers.push(() => makeCharacter(
  37831. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37832. {
  37833. front: {
  37834. height: math.unit(5, "feet"),
  37835. weight: math.unit(150, "lb"),
  37836. name: "Front",
  37837. image: {
  37838. source: "./media/characters/tiffany/front.svg",
  37839. extra: 1941/1845,
  37840. bottom: 58/1999
  37841. }
  37842. },
  37843. },
  37844. [
  37845. {
  37846. name: "Normal",
  37847. height: math.unit(5, "feet"),
  37848. default: true
  37849. },
  37850. ]
  37851. ))
  37852. characterMakers.push(() => makeCharacter(
  37853. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37854. {
  37855. front: {
  37856. height: math.unit(8, "feet"),
  37857. weight: math.unit(300, "lb"),
  37858. name: "Front",
  37859. image: {
  37860. source: "./media/characters/raxinath/front.svg",
  37861. extra: 1407/1309,
  37862. bottom: 39/1446
  37863. }
  37864. },
  37865. back: {
  37866. height: math.unit(8, "feet"),
  37867. weight: math.unit(300, "lb"),
  37868. name: "Back",
  37869. image: {
  37870. source: "./media/characters/raxinath/back.svg",
  37871. extra: 1405/1315,
  37872. bottom: 9/1414
  37873. }
  37874. },
  37875. },
  37876. [
  37877. {
  37878. name: "Speck",
  37879. height: math.unit(0.5, "nm")
  37880. },
  37881. {
  37882. name: "Micro",
  37883. height: math.unit(3, "inches")
  37884. },
  37885. {
  37886. name: "Kobold",
  37887. height: math.unit(3, "feet")
  37888. },
  37889. {
  37890. name: "Normal",
  37891. height: math.unit(8, "feet"),
  37892. default: true
  37893. },
  37894. {
  37895. name: "Giant",
  37896. height: math.unit(50, "feet")
  37897. },
  37898. {
  37899. name: "Macro",
  37900. height: math.unit(1000, "feet")
  37901. },
  37902. {
  37903. name: "Megamacro",
  37904. height: math.unit(1, "mile")
  37905. },
  37906. ]
  37907. ))
  37908. characterMakers.push(() => makeCharacter(
  37909. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37910. {
  37911. front: {
  37912. height: math.unit(10, "feet"),
  37913. weight: math.unit(1442, "lb"),
  37914. name: "Front",
  37915. image: {
  37916. source: "./media/characters/mal-dragon/front.svg",
  37917. extra: 1515/1444,
  37918. bottom: 113/1628
  37919. }
  37920. },
  37921. back: {
  37922. height: math.unit(10, "feet"),
  37923. weight: math.unit(1442, "lb"),
  37924. name: "Back",
  37925. image: {
  37926. source: "./media/characters/mal-dragon/back.svg",
  37927. extra: 1527/1434,
  37928. bottom: 25/1552
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Mortal Interaction",
  37935. height: math.unit(10, "feet"),
  37936. default: true
  37937. },
  37938. {
  37939. name: "Large",
  37940. height: math.unit(30, "feet")
  37941. },
  37942. {
  37943. name: "Kaiju",
  37944. height: math.unit(300, "feet")
  37945. },
  37946. {
  37947. name: "Megamacro",
  37948. height: math.unit(10000, "feet")
  37949. },
  37950. {
  37951. name: "Continent Cracker",
  37952. height: math.unit(30000000, "feet")
  37953. },
  37954. {
  37955. name: "Sol-Swallowing",
  37956. height: math.unit(1e11, "feet")
  37957. },
  37958. {
  37959. name: "Light Universal",
  37960. height: math.unit(5, "universes")
  37961. },
  37962. {
  37963. name: "Universe Atoms",
  37964. height: math.unit(1.829e9, "universes")
  37965. },
  37966. {
  37967. name: "Light Multiversal",
  37968. height: math.unit(5, "multiverses")
  37969. },
  37970. {
  37971. name: "Multiverse Atoms",
  37972. height: math.unit(1.829e9, "multiverses")
  37973. },
  37974. {
  37975. name: "Fabric of Time",
  37976. height: math.unit(1e262, "multiverses")
  37977. },
  37978. ]
  37979. ))
  37980. characterMakers.push(() => makeCharacter(
  37981. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37982. {
  37983. front: {
  37984. height: math.unit(9, "feet"),
  37985. weight: math.unit(1050, "lb"),
  37986. name: "Front",
  37987. image: {
  37988. source: "./media/characters/tabitha/front.svg",
  37989. extra: 2083/1994,
  37990. bottom: 68/2151
  37991. }
  37992. },
  37993. },
  37994. [
  37995. {
  37996. name: "Baseline",
  37997. height: math.unit(9, "feet"),
  37998. default: true
  37999. },
  38000. {
  38001. name: "Giant",
  38002. height: math.unit(90, "feet")
  38003. },
  38004. {
  38005. name: "Macro",
  38006. height: math.unit(900, "feet")
  38007. },
  38008. {
  38009. name: "Megamacro",
  38010. height: math.unit(9000, "feet")
  38011. },
  38012. {
  38013. name: "City-Crushing",
  38014. height: math.unit(27000, "feet")
  38015. },
  38016. {
  38017. name: "Mountain-Mashing",
  38018. height: math.unit(90000, "feet")
  38019. },
  38020. {
  38021. name: "Nation Nemesis",
  38022. height: math.unit(9e6, "feet")
  38023. },
  38024. {
  38025. name: "Continent Cracker",
  38026. height: math.unit(27e6, "feet")
  38027. },
  38028. {
  38029. name: "Earth-Eclipsing",
  38030. height: math.unit(2.7e8, "feet")
  38031. },
  38032. {
  38033. name: "Gas Giant Gulper",
  38034. height: math.unit(2.7e9, "feet")
  38035. },
  38036. {
  38037. name: "Sol-Swallowing",
  38038. height: math.unit(9e10, "feet")
  38039. },
  38040. {
  38041. name: "Galaxy Gulper",
  38042. height: math.unit(9, "galaxies")
  38043. },
  38044. {
  38045. name: "Cosmos Churner",
  38046. height: math.unit(9, "universes")
  38047. },
  38048. ]
  38049. ))
  38050. characterMakers.push(() => makeCharacter(
  38051. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38052. {
  38053. front: {
  38054. height: math.unit(160, "cm"),
  38055. weight: math.unit(55, "kg"),
  38056. name: "Front",
  38057. image: {
  38058. source: "./media/characters/tow/front.svg",
  38059. extra: 1751/1722,
  38060. bottom: 74/1825
  38061. }
  38062. },
  38063. },
  38064. [
  38065. {
  38066. name: "Norm",
  38067. height: math.unit(160, "cm")
  38068. },
  38069. {
  38070. name: "Casual",
  38071. height: math.unit(3200, "m"),
  38072. default: true
  38073. },
  38074. {
  38075. name: "Show-Off",
  38076. height: math.unit(160, "km")
  38077. },
  38078. ]
  38079. ))
  38080. characterMakers.push(() => makeCharacter(
  38081. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38082. {
  38083. front: {
  38084. height: math.unit(7 + 11/12, "feet"),
  38085. weight: math.unit(342.8, "lb"),
  38086. name: "Front",
  38087. image: {
  38088. source: "./media/characters/vivian-orca-dragon/front.svg",
  38089. extra: 1890/1865,
  38090. bottom: 28/1918
  38091. }
  38092. },
  38093. },
  38094. [
  38095. {
  38096. name: "Micro",
  38097. height: math.unit(5, "inches")
  38098. },
  38099. {
  38100. name: "Normal",
  38101. height: math.unit(7 + 11/12, "feet"),
  38102. default: true
  38103. },
  38104. {
  38105. name: "Macro",
  38106. height: math.unit(395 + 7/12, "feet")
  38107. },
  38108. ]
  38109. ))
  38110. characterMakers.push(() => makeCharacter(
  38111. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38112. {
  38113. side: {
  38114. height: math.unit(10, "feet"),
  38115. weight: math.unit(1442, "lb"),
  38116. name: "Side",
  38117. image: {
  38118. source: "./media/characters/lotherakon/side.svg",
  38119. extra: 1604/1497,
  38120. bottom: 89/1693
  38121. }
  38122. },
  38123. },
  38124. [
  38125. {
  38126. name: "Mortal Interaction",
  38127. height: math.unit(10, "feet")
  38128. },
  38129. {
  38130. name: "Large",
  38131. height: math.unit(30, "feet"),
  38132. default: true
  38133. },
  38134. {
  38135. name: "Giant",
  38136. height: math.unit(100, "feet")
  38137. },
  38138. {
  38139. name: "Kaiju",
  38140. height: math.unit(300, "feet")
  38141. },
  38142. {
  38143. name: "Macro",
  38144. height: math.unit(1000, "feet")
  38145. },
  38146. {
  38147. name: "Macro+",
  38148. height: math.unit(3000, "feet")
  38149. },
  38150. {
  38151. name: "Megamacro",
  38152. height: math.unit(10000, "feet")
  38153. },
  38154. {
  38155. name: "City-Crushing",
  38156. height: math.unit(30000, "feet")
  38157. },
  38158. {
  38159. name: "Continent Cracker",
  38160. height: math.unit(30e6, "feet")
  38161. },
  38162. {
  38163. name: "Earth Eclipsing",
  38164. height: math.unit(3e8, "feet")
  38165. },
  38166. {
  38167. name: "Gas Giant Gulper",
  38168. height: math.unit(3e9, "feet")
  38169. },
  38170. {
  38171. name: "Sol-Swallowing",
  38172. height: math.unit(1e11, "feet")
  38173. },
  38174. {
  38175. name: "System Swallower",
  38176. height: math.unit(3e14, "feet")
  38177. },
  38178. {
  38179. name: "Galaxy Gulper",
  38180. height: math.unit(10, "galaxies")
  38181. },
  38182. {
  38183. name: "Light Universal",
  38184. height: math.unit(5, "universes")
  38185. },
  38186. {
  38187. name: "Universe Palm",
  38188. height: math.unit(20, "universes")
  38189. },
  38190. {
  38191. name: "Light Multiversal",
  38192. height: math.unit(5, "multiverses")
  38193. },
  38194. {
  38195. name: "Multiverse Palm",
  38196. height: math.unit(20, "multiverses")
  38197. },
  38198. {
  38199. name: "Inferno Incarnate",
  38200. height: math.unit(1e7, "multiverses")
  38201. },
  38202. ]
  38203. ))
  38204. characterMakers.push(() => makeCharacter(
  38205. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38206. {
  38207. front: {
  38208. height: math.unit(8, "feet"),
  38209. weight: math.unit(1200, "lb"),
  38210. name: "Front",
  38211. image: {
  38212. source: "./media/characters/malithee/front.svg",
  38213. extra: 1675/1640,
  38214. bottom: 162/1837
  38215. }
  38216. },
  38217. },
  38218. [
  38219. {
  38220. name: "Mortal Interaction",
  38221. height: math.unit(8, "feet"),
  38222. default: true
  38223. },
  38224. {
  38225. name: "Large",
  38226. height: math.unit(24, "feet")
  38227. },
  38228. {
  38229. name: "Kaiju",
  38230. height: math.unit(240, "feet")
  38231. },
  38232. {
  38233. name: "Megamacro",
  38234. height: math.unit(8000, "feet")
  38235. },
  38236. {
  38237. name: "Continent Cracker",
  38238. height: math.unit(24e6, "feet")
  38239. },
  38240. {
  38241. name: "Earth-Eclipsing",
  38242. height: math.unit(2.4e8, "feet")
  38243. },
  38244. {
  38245. name: "Sol-Swallowing",
  38246. height: math.unit(8e10, "feet")
  38247. },
  38248. {
  38249. name: "Galaxy Gulper",
  38250. height: math.unit(8, "galaxies")
  38251. },
  38252. {
  38253. name: "Light Universal",
  38254. height: math.unit(4, "universes")
  38255. },
  38256. {
  38257. name: "Universe Atoms",
  38258. height: math.unit(1.829e9, "universes")
  38259. },
  38260. {
  38261. name: "Light Multiversal",
  38262. height: math.unit(4, "multiverses")
  38263. },
  38264. {
  38265. name: "Multiverse Atoms",
  38266. height: math.unit(1.829e9, "multiverses")
  38267. },
  38268. {
  38269. name: "Nigh-Omnipresence",
  38270. height: math.unit(8e261, "multiverses")
  38271. },
  38272. ]
  38273. ))
  38274. characterMakers.push(() => makeCharacter(
  38275. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38276. {
  38277. front: {
  38278. height: math.unit(10, "feet"),
  38279. weight: math.unit(1500, "lb"),
  38280. name: "Front",
  38281. image: {
  38282. source: "./media/characters/miles-thestia/front.svg",
  38283. extra: 1812/1727,
  38284. bottom: 86/1898
  38285. }
  38286. },
  38287. back: {
  38288. height: math.unit(10, "feet"),
  38289. weight: math.unit(1500, "lb"),
  38290. name: "Back",
  38291. image: {
  38292. source: "./media/characters/miles-thestia/back.svg",
  38293. extra: 1799/1690,
  38294. bottom: 47/1846
  38295. }
  38296. },
  38297. frontNsfw: {
  38298. height: math.unit(10, "feet"),
  38299. weight: math.unit(1500, "lb"),
  38300. name: "Front (NSFW)",
  38301. image: {
  38302. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38303. extra: 1812/1727,
  38304. bottom: 86/1898
  38305. }
  38306. },
  38307. },
  38308. [
  38309. {
  38310. name: "Mini-Macro",
  38311. height: math.unit(10, "feet"),
  38312. default: true
  38313. },
  38314. ]
  38315. ))
  38316. characterMakers.push(() => makeCharacter(
  38317. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38318. {
  38319. front: {
  38320. height: math.unit(25, "feet"),
  38321. name: "Front",
  38322. image: {
  38323. source: "./media/characters/titan-s-wulf/front.svg",
  38324. extra: 1560/1484,
  38325. bottom: 76/1636
  38326. }
  38327. },
  38328. },
  38329. [
  38330. {
  38331. name: "Smallest",
  38332. height: math.unit(25, "feet"),
  38333. default: true
  38334. },
  38335. {
  38336. name: "Normal",
  38337. height: math.unit(200, "feet")
  38338. },
  38339. {
  38340. name: "Macro",
  38341. height: math.unit(200000, "feet")
  38342. },
  38343. {
  38344. name: "Multiversal Original",
  38345. height: math.unit(10000, "multiverses")
  38346. },
  38347. ]
  38348. ))
  38349. characterMakers.push(() => makeCharacter(
  38350. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38351. {
  38352. front: {
  38353. height: math.unit(8, "feet"),
  38354. weight: math.unit(553, "lb"),
  38355. name: "Front",
  38356. image: {
  38357. source: "./media/characters/tawendeh/front.svg",
  38358. extra: 2365/2268,
  38359. bottom: 83/2448
  38360. }
  38361. },
  38362. frontClothed: {
  38363. height: math.unit(8, "feet"),
  38364. weight: math.unit(553, "lb"),
  38365. name: "Front (Clothed)",
  38366. image: {
  38367. source: "./media/characters/tawendeh/front-clothed.svg",
  38368. extra: 2365/2268,
  38369. bottom: 83/2448
  38370. }
  38371. },
  38372. back: {
  38373. height: math.unit(8, "feet"),
  38374. weight: math.unit(553, "lb"),
  38375. name: "Back",
  38376. image: {
  38377. source: "./media/characters/tawendeh/back.svg",
  38378. extra: 2397/2294,
  38379. bottom: 42/2439
  38380. }
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "Mortal Interaction",
  38386. height: math.unit(8, "feet"),
  38387. default: true
  38388. },
  38389. {
  38390. name: "Giant",
  38391. height: math.unit(80, "feet")
  38392. },
  38393. {
  38394. name: "Macro",
  38395. height: math.unit(800, "feet")
  38396. },
  38397. {
  38398. name: "Megamacro",
  38399. height: math.unit(8000, "feet")
  38400. },
  38401. {
  38402. name: "City-Crushing",
  38403. height: math.unit(24000, "feet")
  38404. },
  38405. {
  38406. name: "Mountain-Mashing",
  38407. height: math.unit(80000, "feet")
  38408. },
  38409. {
  38410. name: "Nation Nemesis",
  38411. height: math.unit(8e6, "feet")
  38412. },
  38413. {
  38414. name: "Continent Cracker",
  38415. height: math.unit(24e6, "feet")
  38416. },
  38417. {
  38418. name: "Earth-Eclipsing",
  38419. height: math.unit(2.4e8, "feet")
  38420. },
  38421. {
  38422. name: "Gas Giant Gulper",
  38423. height: math.unit(2.4e9, "feet")
  38424. },
  38425. {
  38426. name: "Sol-Swallowing",
  38427. height: math.unit(8e10, "feet")
  38428. },
  38429. {
  38430. name: "Galaxy Gulper",
  38431. height: math.unit(8, "galaxies")
  38432. },
  38433. {
  38434. name: "Cosmos Churner",
  38435. height: math.unit(8, "universes")
  38436. },
  38437. {
  38438. name: "Omnipotent Otter",
  38439. height: math.unit(80, "universes")
  38440. },
  38441. ]
  38442. ))
  38443. characterMakers.push(() => makeCharacter(
  38444. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38445. {
  38446. front: {
  38447. height: math.unit(2.6, "meters"),
  38448. weight: math.unit(900, "kg"),
  38449. name: "Front",
  38450. image: {
  38451. source: "./media/characters/neesha/front.svg",
  38452. extra: 1803/1653,
  38453. bottom: 128/1931
  38454. }
  38455. },
  38456. },
  38457. [
  38458. {
  38459. name: "Normal",
  38460. height: math.unit(2.6, "meters"),
  38461. default: true
  38462. },
  38463. {
  38464. name: "Macro",
  38465. height: math.unit(50, "meters")
  38466. },
  38467. ]
  38468. ))
  38469. characterMakers.push(() => makeCharacter(
  38470. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38471. {
  38472. front: {
  38473. height: math.unit(5, "feet"),
  38474. weight: math.unit(185, "lb"),
  38475. name: "Front",
  38476. image: {
  38477. source: "./media/characters/kyera/front.svg",
  38478. extra: 1875/1790,
  38479. bottom: 96/1971
  38480. }
  38481. },
  38482. },
  38483. [
  38484. {
  38485. name: "Normal",
  38486. height: math.unit(5, "feet"),
  38487. default: true
  38488. },
  38489. ]
  38490. ))
  38491. characterMakers.push(() => makeCharacter(
  38492. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38493. {
  38494. front: {
  38495. height: math.unit(7 + 6/12, "feet"),
  38496. weight: math.unit(540, "lb"),
  38497. name: "Front",
  38498. image: {
  38499. source: "./media/characters/yuko/front.svg",
  38500. extra: 1282/1222,
  38501. bottom: 101/1383
  38502. }
  38503. },
  38504. frontClothed: {
  38505. height: math.unit(7 + 6/12, "feet"),
  38506. weight: math.unit(540, "lb"),
  38507. name: "Front (Clothed)",
  38508. image: {
  38509. source: "./media/characters/yuko/front-clothed.svg",
  38510. extra: 1282/1222,
  38511. bottom: 101/1383
  38512. }
  38513. },
  38514. },
  38515. [
  38516. {
  38517. name: "Normal",
  38518. height: math.unit(7 + 6/12, "feet"),
  38519. default: true
  38520. },
  38521. {
  38522. name: "Macro",
  38523. height: math.unit(26 + 9/12, "feet")
  38524. },
  38525. {
  38526. name: "Megamacro",
  38527. height: math.unit(300, "feet")
  38528. },
  38529. {
  38530. name: "Gigamacro",
  38531. height: math.unit(5000, "feet")
  38532. },
  38533. {
  38534. name: "Planetary",
  38535. height: math.unit(10000, "miles")
  38536. },
  38537. ]
  38538. ))
  38539. characterMakers.push(() => makeCharacter(
  38540. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38541. {
  38542. front: {
  38543. height: math.unit(8 + 2/12, "feet"),
  38544. weight: math.unit(600, "lb"),
  38545. name: "Front",
  38546. image: {
  38547. source: "./media/characters/deam-nitrel/front.svg",
  38548. extra: 1308/1234,
  38549. bottom: 125/1433
  38550. }
  38551. },
  38552. },
  38553. [
  38554. {
  38555. name: "Normal",
  38556. height: math.unit(8 + 2/12, "feet"),
  38557. default: true
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(6.1, "feet"),
  38566. weight: math.unit(180, "lb"),
  38567. name: "Front",
  38568. image: {
  38569. source: "./media/characters/skyress/front.svg",
  38570. extra: 1045/915,
  38571. bottom: 28/1073
  38572. }
  38573. },
  38574. maw: {
  38575. height: math.unit(1, "feet"),
  38576. name: "Maw",
  38577. image: {
  38578. source: "./media/characters/skyress/maw.svg"
  38579. }
  38580. },
  38581. },
  38582. [
  38583. {
  38584. name: "Normal",
  38585. height: math.unit(6.1, "feet"),
  38586. default: true
  38587. },
  38588. {
  38589. name: "Macro",
  38590. height: math.unit(200, "feet")
  38591. },
  38592. ]
  38593. ))
  38594. characterMakers.push(() => makeCharacter(
  38595. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38596. {
  38597. front: {
  38598. height: math.unit(4 + 2/12, "feet"),
  38599. weight: math.unit(40, "kg"),
  38600. name: "Front",
  38601. image: {
  38602. source: "./media/characters/amethyst-jones/front.svg",
  38603. extra: 1220/1150,
  38604. bottom: 101/1321
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(4 + 2/12, "feet"),
  38612. default: true
  38613. },
  38614. ]
  38615. ))
  38616. characterMakers.push(() => makeCharacter(
  38617. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38618. {
  38619. front: {
  38620. height: math.unit(1.7, "m"),
  38621. weight: math.unit(135, "lb"),
  38622. name: "Front",
  38623. image: {
  38624. source: "./media/characters/jade/front.svg",
  38625. extra: 1818/1767,
  38626. bottom: 32/1850
  38627. }
  38628. },
  38629. back: {
  38630. height: math.unit(1.7, "m"),
  38631. weight: math.unit(135, "lb"),
  38632. name: "Back",
  38633. image: {
  38634. source: "./media/characters/jade/back.svg",
  38635. extra: 1869/1809,
  38636. bottom: 35/1904
  38637. }
  38638. },
  38639. hand: {
  38640. height: math.unit(0.24, "m"),
  38641. name: "Hand",
  38642. image: {
  38643. source: "./media/characters/jade/hand.svg"
  38644. }
  38645. },
  38646. foot: {
  38647. height: math.unit(0.263, "m"),
  38648. name: "Foot",
  38649. image: {
  38650. source: "./media/characters/jade/foot.svg"
  38651. }
  38652. },
  38653. dick: {
  38654. height: math.unit(0.47, "m"),
  38655. name: "Dick",
  38656. image: {
  38657. source: "./media/characters/jade/dick.svg"
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Micro",
  38664. height: math.unit(22, "cm")
  38665. },
  38666. {
  38667. name: "Normal",
  38668. height: math.unit(1.7, "m"),
  38669. default: true
  38670. },
  38671. {
  38672. name: "Macro",
  38673. height: math.unit(152, "m")
  38674. },
  38675. ]
  38676. ))
  38677. characterMakers.push(() => makeCharacter(
  38678. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38679. {
  38680. front: {
  38681. height: math.unit(100, "miles"),
  38682. weight: math.unit(20000, "tons"),
  38683. name: "Front",
  38684. image: {
  38685. source: "./media/characters/cookie/front.svg",
  38686. extra: 1125/1070,
  38687. bottom: 30/1155
  38688. }
  38689. },
  38690. },
  38691. [
  38692. {
  38693. name: "Big",
  38694. height: math.unit(50, "feet")
  38695. },
  38696. {
  38697. name: "Macro",
  38698. height: math.unit(100, "miles"),
  38699. default: true
  38700. },
  38701. {
  38702. name: "Megamacro",
  38703. height: math.unit(90000, "miles")
  38704. },
  38705. ]
  38706. ))
  38707. characterMakers.push(() => makeCharacter(
  38708. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38709. {
  38710. front: {
  38711. height: math.unit(6, "feet"),
  38712. weight: math.unit(145, "lb"),
  38713. name: "Front",
  38714. image: {
  38715. source: "./media/characters/farzian/front.svg",
  38716. extra: 1902/1693,
  38717. bottom: 108/2010
  38718. }
  38719. },
  38720. },
  38721. [
  38722. {
  38723. name: "Macro",
  38724. height: math.unit(500, "feet"),
  38725. default: true
  38726. },
  38727. ]
  38728. ))
  38729. characterMakers.push(() => makeCharacter(
  38730. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38731. {
  38732. front: {
  38733. height: math.unit(3 + 6/12, "feet"),
  38734. weight: math.unit(50, "lb"),
  38735. name: "Front",
  38736. image: {
  38737. source: "./media/characters/kimberly-tilson/front.svg",
  38738. extra: 1400/1322,
  38739. bottom: 36/1436
  38740. }
  38741. },
  38742. back: {
  38743. height: math.unit(3 + 6/12, "feet"),
  38744. weight: math.unit(50, "lb"),
  38745. name: "Back",
  38746. image: {
  38747. source: "./media/characters/kimberly-tilson/back.svg",
  38748. extra: 1370/1307,
  38749. bottom: 20/1390
  38750. }
  38751. },
  38752. },
  38753. [
  38754. {
  38755. name: "Normal",
  38756. height: math.unit(3 + 6/12, "feet"),
  38757. default: true
  38758. },
  38759. ]
  38760. ))
  38761. characterMakers.push(() => makeCharacter(
  38762. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38763. {
  38764. front: {
  38765. height: math.unit(1148, "feet"),
  38766. weight: math.unit(34057, "lb"),
  38767. name: "Front",
  38768. image: {
  38769. source: "./media/characters/harthos/front.svg",
  38770. extra: 1391/1339,
  38771. bottom: 13/1404
  38772. }
  38773. },
  38774. },
  38775. [
  38776. {
  38777. name: "Macro",
  38778. height: math.unit(1148, "feet"),
  38779. default: true
  38780. },
  38781. ]
  38782. ))
  38783. characterMakers.push(() => makeCharacter(
  38784. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38785. {
  38786. front: {
  38787. height: math.unit(15, "feet"),
  38788. name: "Front",
  38789. image: {
  38790. source: "./media/characters/hypatia/front.svg",
  38791. extra: 1653/1591,
  38792. bottom: 79/1732
  38793. }
  38794. },
  38795. },
  38796. [
  38797. {
  38798. name: "Normal",
  38799. height: math.unit(15, "feet")
  38800. },
  38801. {
  38802. name: "Small",
  38803. height: math.unit(300, "feet")
  38804. },
  38805. {
  38806. name: "Macro",
  38807. height: math.unit(2500, "feet"),
  38808. default: true
  38809. },
  38810. {
  38811. name: "Mega Macro",
  38812. height: math.unit(1500, "miles")
  38813. },
  38814. {
  38815. name: "Giga Macro",
  38816. height: math.unit(1.5e6, "miles")
  38817. },
  38818. ]
  38819. ))
  38820. characterMakers.push(() => makeCharacter(
  38821. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38822. {
  38823. front: {
  38824. height: math.unit(6, "feet"),
  38825. weight: math.unit(200, "lb"),
  38826. name: "Front",
  38827. image: {
  38828. source: "./media/characters/wulver/front.svg",
  38829. extra: 1724/1632,
  38830. bottom: 130/1854
  38831. }
  38832. },
  38833. frontNsfw: {
  38834. height: math.unit(6, "feet"),
  38835. weight: math.unit(200, "lb"),
  38836. name: "Front (NSFW)",
  38837. image: {
  38838. source: "./media/characters/wulver/front-nsfw.svg",
  38839. extra: 1724/1632,
  38840. bottom: 130/1854
  38841. }
  38842. },
  38843. },
  38844. [
  38845. {
  38846. name: "Human-Sized",
  38847. height: math.unit(6, "feet")
  38848. },
  38849. {
  38850. name: "Normal",
  38851. height: math.unit(4, "meters"),
  38852. default: true
  38853. },
  38854. {
  38855. name: "Large",
  38856. height: math.unit(6, "m")
  38857. },
  38858. ]
  38859. ))
  38860. characterMakers.push(() => makeCharacter(
  38861. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38862. {
  38863. front: {
  38864. height: math.unit(7, "feet"),
  38865. name: "Front",
  38866. image: {
  38867. source: "./media/characters/maru/front.svg",
  38868. extra: 1595/1570,
  38869. bottom: 0/1595
  38870. }
  38871. },
  38872. },
  38873. [
  38874. {
  38875. name: "Normal",
  38876. height: math.unit(7, "feet"),
  38877. default: true
  38878. },
  38879. {
  38880. name: "Macro",
  38881. height: math.unit(700, "feet")
  38882. },
  38883. {
  38884. name: "Mega Macro",
  38885. height: math.unit(25, "miles")
  38886. },
  38887. ]
  38888. ))
  38889. characterMakers.push(() => makeCharacter(
  38890. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38891. {
  38892. front: {
  38893. height: math.unit(6, "feet"),
  38894. weight: math.unit(170, "lb"),
  38895. name: "Front",
  38896. image: {
  38897. source: "./media/characters/xenon/front.svg",
  38898. extra: 1376/1305,
  38899. bottom: 56/1432
  38900. }
  38901. },
  38902. back: {
  38903. height: math.unit(6, "feet"),
  38904. weight: math.unit(170, "lb"),
  38905. name: "Back",
  38906. image: {
  38907. source: "./media/characters/xenon/back.svg",
  38908. extra: 1328/1259,
  38909. bottom: 95/1423
  38910. }
  38911. },
  38912. maw: {
  38913. height: math.unit(0.52, "feet"),
  38914. name: "Maw",
  38915. image: {
  38916. source: "./media/characters/xenon/maw.svg"
  38917. }
  38918. },
  38919. hand: {
  38920. height: math.unit(0.82, "feet"),
  38921. name: "Hand",
  38922. image: {
  38923. source: "./media/characters/xenon/hand.svg"
  38924. }
  38925. },
  38926. foot: {
  38927. height: math.unit(1.13, "feet"),
  38928. name: "Foot",
  38929. image: {
  38930. source: "./media/characters/xenon/foot.svg"
  38931. }
  38932. },
  38933. },
  38934. [
  38935. {
  38936. name: "Micro",
  38937. height: math.unit(0.8, "inches")
  38938. },
  38939. {
  38940. name: "Normal",
  38941. height: math.unit(6, "feet")
  38942. },
  38943. {
  38944. name: "Macro",
  38945. height: math.unit(50, "feet"),
  38946. default: true
  38947. },
  38948. {
  38949. name: "Macro+",
  38950. height: math.unit(250, "feet")
  38951. },
  38952. {
  38953. name: "Megamacro",
  38954. height: math.unit(1500, "feet")
  38955. },
  38956. ]
  38957. ))
  38958. characterMakers.push(() => makeCharacter(
  38959. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38960. {
  38961. front: {
  38962. height: math.unit(7 + 5/12, "feet"),
  38963. name: "Front",
  38964. image: {
  38965. source: "./media/characters/zane/front.svg",
  38966. extra: 1260/1203,
  38967. bottom: 94/1354
  38968. }
  38969. },
  38970. back: {
  38971. height: math.unit(5.05, "feet"),
  38972. name: "Back",
  38973. image: {
  38974. source: "./media/characters/zane/back.svg",
  38975. extra: 893/829,
  38976. bottom: 30/923
  38977. }
  38978. },
  38979. werewolf: {
  38980. height: math.unit(11, "feet"),
  38981. name: "Werewolf",
  38982. image: {
  38983. source: "./media/characters/zane/werewolf.svg",
  38984. extra: 1383/1323,
  38985. bottom: 89/1472
  38986. }
  38987. },
  38988. foot: {
  38989. height: math.unit(1.46, "feet"),
  38990. name: "Foot",
  38991. image: {
  38992. source: "./media/characters/zane/foot.svg"
  38993. }
  38994. },
  38995. footFront: {
  38996. height: math.unit(0.784, "feet"),
  38997. name: "Foot (Front)",
  38998. image: {
  38999. source: "./media/characters/zane/foot-front.svg"
  39000. }
  39001. },
  39002. dick: {
  39003. height: math.unit(1.95, "feet"),
  39004. name: "Dick",
  39005. image: {
  39006. source: "./media/characters/zane/dick.svg"
  39007. }
  39008. },
  39009. dickWerewolf: {
  39010. height: math.unit(3.77, "feet"),
  39011. name: "Dick (Werewolf)",
  39012. image: {
  39013. source: "./media/characters/zane/dick.svg"
  39014. }
  39015. },
  39016. },
  39017. [
  39018. {
  39019. name: "Normal",
  39020. height: math.unit(7 + 5/12, "feet"),
  39021. default: true
  39022. },
  39023. ]
  39024. ))
  39025. characterMakers.push(() => makeCharacter(
  39026. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39027. {
  39028. front: {
  39029. height: math.unit(6 + 2/12, "feet"),
  39030. weight: math.unit(284, "lb"),
  39031. name: "Front",
  39032. image: {
  39033. source: "./media/characters/benni-desparque/front.svg",
  39034. extra: 1353/1126,
  39035. bottom: 69/1422
  39036. }
  39037. },
  39038. },
  39039. [
  39040. {
  39041. name: "Civilian",
  39042. height: math.unit(6 + 2/12, "feet")
  39043. },
  39044. {
  39045. name: "Normal",
  39046. height: math.unit(98, "feet"),
  39047. default: true
  39048. },
  39049. {
  39050. name: "Kaiju Fighter",
  39051. height: math.unit(268, "feet")
  39052. },
  39053. ]
  39054. ))
  39055. characterMakers.push(() => makeCharacter(
  39056. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39057. {
  39058. front: {
  39059. height: math.unit(5, "feet"),
  39060. weight: math.unit(105, "lb"),
  39061. name: "Front",
  39062. image: {
  39063. source: "./media/characters/maxine/front.svg",
  39064. extra: 1386/1250,
  39065. bottom: 71/1457
  39066. }
  39067. },
  39068. },
  39069. [
  39070. {
  39071. name: "Normal",
  39072. height: math.unit(5, "feet"),
  39073. default: true
  39074. },
  39075. ]
  39076. ))
  39077. characterMakers.push(() => makeCharacter(
  39078. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39079. {
  39080. front: {
  39081. height: math.unit(11 + 7/12, "feet"),
  39082. weight: math.unit(9576, "lb"),
  39083. name: "Front",
  39084. image: {
  39085. source: "./media/characters/scaly/front.svg",
  39086. extra: 888/867,
  39087. bottom: 36/924
  39088. }
  39089. },
  39090. },
  39091. [
  39092. {
  39093. name: "Normal",
  39094. height: math.unit(11 + 7/12, "feet"),
  39095. default: true
  39096. },
  39097. ]
  39098. ))
  39099. characterMakers.push(() => makeCharacter(
  39100. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39101. {
  39102. front: {
  39103. height: math.unit(9, "inches"),
  39104. name: "Front",
  39105. image: {
  39106. source: "./media/characters/saelria/front.svg",
  39107. extra: 662/621,
  39108. bottom: 12/674
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Tiny",
  39115. height: math.unit(9, "inches"),
  39116. default: true
  39117. },
  39118. ]
  39119. ))
  39120. characterMakers.push(() => makeCharacter(
  39121. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39122. {
  39123. front: {
  39124. height: math.unit(80, "meters"),
  39125. weight: math.unit(7000, "tonnes"),
  39126. name: "Front",
  39127. image: {
  39128. source: "./media/characters/tef/front.svg",
  39129. extra: 2036/1991,
  39130. bottom: 54/2090
  39131. }
  39132. },
  39133. back: {
  39134. height: math.unit(80, "meters"),
  39135. weight: math.unit(7000, "tonnes"),
  39136. name: "Back",
  39137. image: {
  39138. source: "./media/characters/tef/back.svg",
  39139. extra: 2036/1991,
  39140. bottom: 54/2090
  39141. }
  39142. },
  39143. },
  39144. [
  39145. {
  39146. name: "Macro",
  39147. height: math.unit(80, "meters"),
  39148. default: true
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39154. {
  39155. front: {
  39156. height: math.unit(13, "feet"),
  39157. weight: math.unit(6, "tons"),
  39158. name: "Front",
  39159. image: {
  39160. source: "./media/characters/rover/front.svg",
  39161. extra: 1233/1156,
  39162. bottom: 50/1283
  39163. }
  39164. },
  39165. back: {
  39166. height: math.unit(13, "feet"),
  39167. weight: math.unit(6, "tons"),
  39168. name: "Back",
  39169. image: {
  39170. source: "./media/characters/rover/back.svg",
  39171. extra: 1327/1258,
  39172. bottom: 39/1366
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Normal",
  39179. height: math.unit(13, "feet"),
  39180. default: true
  39181. },
  39182. {
  39183. name: "Macro",
  39184. height: math.unit(1300, "feet")
  39185. },
  39186. {
  39187. name: "Megamacro",
  39188. height: math.unit(1300, "miles")
  39189. },
  39190. {
  39191. name: "Gigamacro",
  39192. height: math.unit(1300000, "miles")
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39198. {
  39199. front: {
  39200. height: math.unit(6, "feet"),
  39201. weight: math.unit(150, "lb"),
  39202. name: "Front",
  39203. image: {
  39204. source: "./media/characters/ariz/front.svg",
  39205. extra: 1401/1346,
  39206. bottom: 5/1406
  39207. }
  39208. },
  39209. },
  39210. [
  39211. {
  39212. name: "Normal",
  39213. height: math.unit(10, "feet"),
  39214. default: true
  39215. },
  39216. ]
  39217. ))
  39218. characterMakers.push(() => makeCharacter(
  39219. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39220. {
  39221. front: {
  39222. height: math.unit(6, "feet"),
  39223. weight: math.unit(140, "lb"),
  39224. name: "Front",
  39225. image: {
  39226. source: "./media/characters/sigrun/front.svg",
  39227. extra: 1418/1359,
  39228. bottom: 27/1445
  39229. }
  39230. },
  39231. },
  39232. [
  39233. {
  39234. name: "Macro",
  39235. height: math.unit(35, "feet"),
  39236. default: true
  39237. },
  39238. ]
  39239. ))
  39240. characterMakers.push(() => makeCharacter(
  39241. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39242. {
  39243. front: {
  39244. height: math.unit(6, "feet"),
  39245. weight: math.unit(150, "lb"),
  39246. name: "Front",
  39247. image: {
  39248. source: "./media/characters/numin/front.svg",
  39249. extra: 1433/1388,
  39250. bottom: 12/1445
  39251. }
  39252. },
  39253. },
  39254. [
  39255. {
  39256. name: "Macro",
  39257. height: math.unit(21.5, "km"),
  39258. default: true
  39259. },
  39260. ]
  39261. ))
  39262. characterMakers.push(() => makeCharacter(
  39263. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39264. {
  39265. front: {
  39266. height: math.unit(6, "feet"),
  39267. weight: math.unit(463, "lb"),
  39268. name: "Front",
  39269. image: {
  39270. source: "./media/characters/melwa/front.svg",
  39271. extra: 1307/1248,
  39272. bottom: 93/1400
  39273. }
  39274. },
  39275. },
  39276. [
  39277. {
  39278. name: "Macro",
  39279. height: math.unit(50, "meters"),
  39280. default: true
  39281. },
  39282. ]
  39283. ))
  39284. characterMakers.push(() => makeCharacter(
  39285. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39286. {
  39287. front: {
  39288. height: math.unit(325, "feet"),
  39289. name: "Front",
  39290. image: {
  39291. source: "./media/characters/zorkaiju/front.svg",
  39292. extra: 1955/1814,
  39293. bottom: 40/1995
  39294. }
  39295. },
  39296. frontExtended: {
  39297. height: math.unit(325, "feet"),
  39298. name: "Front (Extended)",
  39299. image: {
  39300. source: "./media/characters/zorkaiju/front-extended.svg",
  39301. extra: 1955/1814,
  39302. bottom: 40/1995
  39303. }
  39304. },
  39305. side: {
  39306. height: math.unit(325, "feet"),
  39307. name: "Side",
  39308. image: {
  39309. source: "./media/characters/zorkaiju/side.svg",
  39310. extra: 1495/1396,
  39311. bottom: 17/1512
  39312. }
  39313. },
  39314. sideExtended: {
  39315. height: math.unit(325, "feet"),
  39316. name: "Side (Extended)",
  39317. image: {
  39318. source: "./media/characters/zorkaiju/side-extended.svg",
  39319. extra: 1495/1396,
  39320. bottom: 17/1512
  39321. }
  39322. },
  39323. back: {
  39324. height: math.unit(325, "feet"),
  39325. name: "Back",
  39326. image: {
  39327. source: "./media/characters/zorkaiju/back.svg",
  39328. extra: 1959/1821,
  39329. bottom: 31/1990
  39330. }
  39331. },
  39332. backExtended: {
  39333. height: math.unit(325, "feet"),
  39334. name: "Back (Extended)",
  39335. image: {
  39336. source: "./media/characters/zorkaiju/back-extended.svg",
  39337. extra: 1959/1821,
  39338. bottom: 31/1990
  39339. }
  39340. },
  39341. hand: {
  39342. height: math.unit(58.4, "feet"),
  39343. name: "Hand",
  39344. image: {
  39345. source: "./media/characters/zorkaiju/hand.svg"
  39346. }
  39347. },
  39348. handExtended: {
  39349. height: math.unit(61.4, "feet"),
  39350. name: "Hand (Extended)",
  39351. image: {
  39352. source: "./media/characters/zorkaiju/hand-extended.svg"
  39353. }
  39354. },
  39355. foot: {
  39356. height: math.unit(95, "feet"),
  39357. name: "Foot",
  39358. image: {
  39359. source: "./media/characters/zorkaiju/foot.svg"
  39360. }
  39361. },
  39362. leftArm: {
  39363. height: math.unit(59, "feet"),
  39364. name: "Left Arm",
  39365. image: {
  39366. source: "./media/characters/zorkaiju/left-arm.svg"
  39367. }
  39368. },
  39369. rightArm: {
  39370. height: math.unit(59, "feet"),
  39371. name: "Right Arm",
  39372. image: {
  39373. source: "./media/characters/zorkaiju/right-arm.svg"
  39374. }
  39375. },
  39376. tail: {
  39377. height: math.unit(104, "feet"),
  39378. name: "Tail",
  39379. image: {
  39380. source: "./media/characters/zorkaiju/tail.svg"
  39381. }
  39382. },
  39383. tailExtended: {
  39384. height: math.unit(104, "feet"),
  39385. name: "Tail (Extended)",
  39386. image: {
  39387. source: "./media/characters/zorkaiju/tail-extended.svg"
  39388. }
  39389. },
  39390. tailBottom: {
  39391. height: math.unit(104, "feet"),
  39392. name: "Tail Bottom",
  39393. image: {
  39394. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39395. }
  39396. },
  39397. crystal: {
  39398. height: math.unit(27.54, "feet"),
  39399. name: "Crystal",
  39400. image: {
  39401. source: "./media/characters/zorkaiju/crystal.svg"
  39402. }
  39403. },
  39404. },
  39405. [
  39406. {
  39407. name: "Kaiju",
  39408. height: math.unit(325, "feet"),
  39409. default: true
  39410. },
  39411. ]
  39412. ))
  39413. characterMakers.push(() => makeCharacter(
  39414. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39415. {
  39416. front: {
  39417. height: math.unit(6 + 1/12, "feet"),
  39418. weight: math.unit(115, "lb"),
  39419. name: "Front",
  39420. image: {
  39421. source: "./media/characters/bailey-belfry/front.svg",
  39422. extra: 1240/1121,
  39423. bottom: 101/1341
  39424. }
  39425. },
  39426. },
  39427. [
  39428. {
  39429. name: "Normal",
  39430. height: math.unit(6 + 1/12, "feet"),
  39431. default: true
  39432. },
  39433. ]
  39434. ))
  39435. characterMakers.push(() => makeCharacter(
  39436. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39437. {
  39438. side: {
  39439. height: math.unit(4, "meters"),
  39440. weight: math.unit(250, "kg"),
  39441. name: "Side",
  39442. image: {
  39443. source: "./media/characters/blacky/side.svg",
  39444. extra: 1027/919,
  39445. bottom: 43/1070
  39446. }
  39447. },
  39448. maw: {
  39449. height: math.unit(1, "meters"),
  39450. name: "Maw",
  39451. image: {
  39452. source: "./media/characters/blacky/maw.svg"
  39453. }
  39454. },
  39455. paw: {
  39456. height: math.unit(1, "meters"),
  39457. name: "Paw",
  39458. image: {
  39459. source: "./media/characters/blacky/paw.svg"
  39460. }
  39461. },
  39462. },
  39463. [
  39464. {
  39465. name: "Normal",
  39466. height: math.unit(4, "meters"),
  39467. default: true
  39468. },
  39469. ]
  39470. ))
  39471. characterMakers.push(() => makeCharacter(
  39472. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39473. {
  39474. front: {
  39475. height: math.unit(170, "cm"),
  39476. weight: math.unit(66, "kg"),
  39477. name: "Front",
  39478. image: {
  39479. source: "./media/characters/thux-ei/front.svg",
  39480. extra: 1109/1011,
  39481. bottom: 8/1117
  39482. }
  39483. },
  39484. },
  39485. [
  39486. {
  39487. name: "Normal",
  39488. height: math.unit(170, "cm"),
  39489. default: true
  39490. },
  39491. ]
  39492. ))
  39493. characterMakers.push(() => makeCharacter(
  39494. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39495. {
  39496. front: {
  39497. height: math.unit(5, "feet"),
  39498. weight: math.unit(120, "lb"),
  39499. name: "Front",
  39500. image: {
  39501. source: "./media/characters/roxanne-voltaire/front.svg",
  39502. extra: 1901/1779,
  39503. bottom: 53/1954
  39504. }
  39505. },
  39506. },
  39507. [
  39508. {
  39509. name: "Normal",
  39510. height: math.unit(5, "feet"),
  39511. default: true
  39512. },
  39513. {
  39514. name: "Giant",
  39515. height: math.unit(50, "feet")
  39516. },
  39517. {
  39518. name: "Titan",
  39519. height: math.unit(500, "feet")
  39520. },
  39521. {
  39522. name: "Macro",
  39523. height: math.unit(5000, "feet")
  39524. },
  39525. {
  39526. name: "Megamacro",
  39527. height: math.unit(50000, "feet")
  39528. },
  39529. {
  39530. name: "Gigamacro",
  39531. height: math.unit(500000, "feet")
  39532. },
  39533. {
  39534. name: "Teramacro",
  39535. height: math.unit(5e6, "feet")
  39536. },
  39537. ]
  39538. ))
  39539. characterMakers.push(() => makeCharacter(
  39540. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39541. {
  39542. front: {
  39543. height: math.unit(6 + 2/12, "feet"),
  39544. name: "Front",
  39545. image: {
  39546. source: "./media/characters/squeaks/front.svg",
  39547. extra: 1823/1768,
  39548. bottom: 138/1961
  39549. }
  39550. },
  39551. },
  39552. [
  39553. {
  39554. name: "Micro",
  39555. height: math.unit(0.5, "inches")
  39556. },
  39557. {
  39558. name: "Normal",
  39559. height: math.unit(6 + 2/12, "feet"),
  39560. default: true
  39561. },
  39562. {
  39563. name: "Macro",
  39564. height: math.unit(600, "feet")
  39565. },
  39566. ]
  39567. ))
  39568. characterMakers.push(() => makeCharacter(
  39569. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39570. {
  39571. front: {
  39572. height: math.unit(1.72, "meters"),
  39573. name: "Front",
  39574. image: {
  39575. source: "./media/characters/archinger/front.svg",
  39576. extra: 1861/1675,
  39577. bottom: 125/1986
  39578. }
  39579. },
  39580. back: {
  39581. height: math.unit(1.72, "meters"),
  39582. name: "Back",
  39583. image: {
  39584. source: "./media/characters/archinger/back.svg",
  39585. extra: 1844/1701,
  39586. bottom: 104/1948
  39587. }
  39588. },
  39589. cock: {
  39590. height: math.unit(0.59, "feet"),
  39591. name: "Cock",
  39592. image: {
  39593. source: "./media/characters/archinger/cock.svg"
  39594. }
  39595. },
  39596. },
  39597. [
  39598. {
  39599. name: "Normal",
  39600. height: math.unit(1.72, "meters"),
  39601. default: true
  39602. },
  39603. {
  39604. name: "Macro",
  39605. height: math.unit(84, "meters")
  39606. },
  39607. {
  39608. name: "Macro+",
  39609. height: math.unit(112, "meters")
  39610. },
  39611. {
  39612. name: "Macro++",
  39613. height: math.unit(960, "meters")
  39614. },
  39615. {
  39616. name: "Macro+++",
  39617. height: math.unit(4, "km")
  39618. },
  39619. {
  39620. name: "Macro++++",
  39621. height: math.unit(48, "km")
  39622. },
  39623. {
  39624. name: "Macro+++++",
  39625. height: math.unit(4500, "km")
  39626. },
  39627. ]
  39628. ))
  39629. characterMakers.push(() => makeCharacter(
  39630. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39631. {
  39632. front: {
  39633. height: math.unit(5 + 5/12, "feet"),
  39634. name: "Front",
  39635. image: {
  39636. source: "./media/characters/alsnapz/front.svg",
  39637. extra: 1157/1065,
  39638. bottom: 42/1199
  39639. }
  39640. },
  39641. },
  39642. [
  39643. {
  39644. name: "Normal",
  39645. height: math.unit(5 + 5/12, "feet"),
  39646. default: true
  39647. },
  39648. ]
  39649. ))
  39650. characterMakers.push(() => makeCharacter(
  39651. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39652. {
  39653. side: {
  39654. height: math.unit(3.2, "earths"),
  39655. name: "Side",
  39656. image: {
  39657. source: "./media/characters/mag/side.svg",
  39658. extra: 1331/1008,
  39659. bottom: 52/1383
  39660. }
  39661. },
  39662. wing: {
  39663. height: math.unit(1.94, "earths"),
  39664. name: "Wing",
  39665. image: {
  39666. source: "./media/characters/mag/wing.svg"
  39667. }
  39668. },
  39669. dick: {
  39670. height: math.unit(1.8, "earths"),
  39671. name: "Dick",
  39672. image: {
  39673. source: "./media/characters/mag/dick.svg"
  39674. }
  39675. },
  39676. ass: {
  39677. height: math.unit(1.33, "earths"),
  39678. name: "Ass",
  39679. image: {
  39680. source: "./media/characters/mag/ass.svg"
  39681. }
  39682. },
  39683. head: {
  39684. height: math.unit(1.1, "earths"),
  39685. name: "Head",
  39686. image: {
  39687. source: "./media/characters/mag/head.svg"
  39688. }
  39689. },
  39690. maw: {
  39691. height: math.unit(1.62, "earths"),
  39692. name: "Maw",
  39693. image: {
  39694. source: "./media/characters/mag/maw.svg"
  39695. }
  39696. },
  39697. },
  39698. [
  39699. {
  39700. name: "Small",
  39701. height: math.unit(162, "feet")
  39702. },
  39703. {
  39704. name: "Normal",
  39705. height: math.unit(3.2, "earths"),
  39706. default: true
  39707. },
  39708. ]
  39709. ))
  39710. characterMakers.push(() => makeCharacter(
  39711. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39712. {
  39713. front: {
  39714. height: math.unit(512, "feet"),
  39715. weight: math.unit(63509, "tonnes"),
  39716. name: "Front",
  39717. image: {
  39718. source: "./media/characters/vorrel-harroc/front.svg",
  39719. extra: 1075/1063,
  39720. bottom: 62/1137
  39721. }
  39722. },
  39723. },
  39724. [
  39725. {
  39726. name: "Normal",
  39727. height: math.unit(10, "feet")
  39728. },
  39729. {
  39730. name: "Macro",
  39731. height: math.unit(512, "feet"),
  39732. default: true
  39733. },
  39734. {
  39735. name: "Megamacro",
  39736. height: math.unit(256, "miles")
  39737. },
  39738. {
  39739. name: "Gigamacro",
  39740. height: math.unit(4096, "miles")
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39746. {
  39747. side: {
  39748. height: math.unit(50, "feet"),
  39749. name: "Side",
  39750. image: {
  39751. source: "./media/characters/froimar/side.svg",
  39752. extra: 855/638,
  39753. bottom: 99/954
  39754. }
  39755. },
  39756. },
  39757. [
  39758. {
  39759. name: "Macro",
  39760. height: math.unit(50, "feet"),
  39761. default: true
  39762. },
  39763. ]
  39764. ))
  39765. characterMakers.push(() => makeCharacter(
  39766. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39767. {
  39768. front: {
  39769. height: math.unit(210, "miles"),
  39770. name: "Front",
  39771. image: {
  39772. source: "./media/characters/timothy/front.svg",
  39773. extra: 1007/943,
  39774. bottom: 62/1069
  39775. }
  39776. },
  39777. frontSkirt: {
  39778. height: math.unit(210, "miles"),
  39779. name: "Front (Skirt)",
  39780. image: {
  39781. source: "./media/characters/timothy/front-skirt.svg",
  39782. extra: 1007/943,
  39783. bottom: 62/1069
  39784. }
  39785. },
  39786. frontCoat: {
  39787. height: math.unit(210, "miles"),
  39788. name: "Front (Coat)",
  39789. image: {
  39790. source: "./media/characters/timothy/front-coat.svg",
  39791. extra: 1007/943,
  39792. bottom: 62/1069
  39793. }
  39794. },
  39795. },
  39796. [
  39797. {
  39798. name: "Macro",
  39799. height: math.unit(210, "miles"),
  39800. default: true
  39801. },
  39802. {
  39803. name: "Megamacro",
  39804. height: math.unit(210000, "miles")
  39805. },
  39806. ]
  39807. ))
  39808. characterMakers.push(() => makeCharacter(
  39809. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39810. {
  39811. front: {
  39812. height: math.unit(188, "feet"),
  39813. name: "Front",
  39814. image: {
  39815. source: "./media/characters/pyotr/front.svg",
  39816. extra: 1912/1826,
  39817. bottom: 18/1930
  39818. }
  39819. },
  39820. },
  39821. [
  39822. {
  39823. name: "Macro",
  39824. height: math.unit(188, "feet"),
  39825. default: true
  39826. },
  39827. {
  39828. name: "Megamacro",
  39829. height: math.unit(8, "miles")
  39830. },
  39831. ]
  39832. ))
  39833. characterMakers.push(() => makeCharacter(
  39834. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39835. {
  39836. side: {
  39837. height: math.unit(10, "feet"),
  39838. weight: math.unit(4500, "lb"),
  39839. name: "Side",
  39840. image: {
  39841. source: "./media/characters/ackart/side.svg",
  39842. extra: 1776/1668,
  39843. bottom: 116/1892
  39844. }
  39845. },
  39846. },
  39847. [
  39848. {
  39849. name: "Normal",
  39850. height: math.unit(10, "feet"),
  39851. default: true
  39852. },
  39853. ]
  39854. ))
  39855. characterMakers.push(() => makeCharacter(
  39856. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39857. {
  39858. side: {
  39859. height: math.unit(21, "feet"),
  39860. name: "Side",
  39861. image: {
  39862. source: "./media/characters/nolow/side.svg",
  39863. extra: 1484/1434,
  39864. bottom: 85/1569
  39865. }
  39866. },
  39867. sideErect: {
  39868. height: math.unit(21, "feet"),
  39869. name: "Side-erect",
  39870. image: {
  39871. source: "./media/characters/nolow/side-erect.svg",
  39872. extra: 1484/1434,
  39873. bottom: 85/1569
  39874. }
  39875. },
  39876. },
  39877. [
  39878. {
  39879. name: "Regular",
  39880. height: math.unit(12, "feet")
  39881. },
  39882. {
  39883. name: "Big Chee",
  39884. height: math.unit(21, "feet"),
  39885. default: true
  39886. },
  39887. ]
  39888. ))
  39889. characterMakers.push(() => makeCharacter(
  39890. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39891. {
  39892. front: {
  39893. height: math.unit(7, "feet"),
  39894. weight: math.unit(250, "lb"),
  39895. name: "Front",
  39896. image: {
  39897. source: "./media/characters/nines/front.svg",
  39898. extra: 1741/1607,
  39899. bottom: 41/1782
  39900. }
  39901. },
  39902. side: {
  39903. height: math.unit(7, "feet"),
  39904. weight: math.unit(250, "lb"),
  39905. name: "Side",
  39906. image: {
  39907. source: "./media/characters/nines/side.svg",
  39908. extra: 1854/1735,
  39909. bottom: 93/1947
  39910. }
  39911. },
  39912. back: {
  39913. height: math.unit(7, "feet"),
  39914. weight: math.unit(250, "lb"),
  39915. name: "Back",
  39916. image: {
  39917. source: "./media/characters/nines/back.svg",
  39918. extra: 1748/1615,
  39919. bottom: 20/1768
  39920. }
  39921. },
  39922. },
  39923. [
  39924. {
  39925. name: "Megamacro",
  39926. height: math.unit(99, "km"),
  39927. default: true
  39928. },
  39929. ]
  39930. ))
  39931. characterMakers.push(() => makeCharacter(
  39932. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  39933. {
  39934. front: {
  39935. height: math.unit(5 + 10/12, "feet"),
  39936. weight: math.unit(210, "lb"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/zenith/front.svg",
  39940. extra: 1531/1452,
  39941. bottom: 198/1729
  39942. }
  39943. },
  39944. back: {
  39945. height: math.unit(5 + 10/12, "feet"),
  39946. weight: math.unit(210, "lb"),
  39947. name: "Back",
  39948. image: {
  39949. source: "./media/characters/zenith/back.svg",
  39950. extra: 1571/1487,
  39951. bottom: 75/1646
  39952. }
  39953. },
  39954. },
  39955. [
  39956. {
  39957. name: "Normal",
  39958. height: math.unit(5 + 10/12, "feet"),
  39959. default: true
  39960. }
  39961. ]
  39962. ))
  39963. characterMakers.push(() => makeCharacter(
  39964. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  39965. {
  39966. front: {
  39967. height: math.unit(4, "feet"),
  39968. weight: math.unit(60, "lb"),
  39969. name: "Front",
  39970. image: {
  39971. source: "./media/characters/jasper/front.svg",
  39972. extra: 1450/1379,
  39973. bottom: 19/1469
  39974. }
  39975. },
  39976. },
  39977. [
  39978. {
  39979. name: "Normal",
  39980. height: math.unit(4, "feet"),
  39981. default: true
  39982. },
  39983. ]
  39984. ))
  39985. characterMakers.push(() => makeCharacter(
  39986. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  39987. {
  39988. front: {
  39989. height: math.unit(6 + 5/12, "feet"),
  39990. weight: math.unit(290, "lb"),
  39991. name: "Front",
  39992. image: {
  39993. source: "./media/characters/tiberius-thyben/front.svg",
  39994. extra: 757/739,
  39995. bottom: 39/796
  39996. }
  39997. },
  39998. },
  39999. [
  40000. {
  40001. name: "Micro",
  40002. height: math.unit(1.5, "inches")
  40003. },
  40004. {
  40005. name: "Normal",
  40006. height: math.unit(6 + 5/12, "feet"),
  40007. default: true
  40008. },
  40009. {
  40010. name: "Macro",
  40011. height: math.unit(300, "feet")
  40012. },
  40013. ]
  40014. ))
  40015. characterMakers.push(() => makeCharacter(
  40016. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40017. {
  40018. front: {
  40019. height: math.unit(5 + 6/12, "feet"),
  40020. weight: math.unit(60, "kg"),
  40021. name: "Front",
  40022. image: {
  40023. source: "./media/characters/sabre/front.svg",
  40024. extra: 738/671,
  40025. bottom: 27/765
  40026. }
  40027. },
  40028. },
  40029. [
  40030. {
  40031. name: "Teeny",
  40032. height: math.unit(2, "inches")
  40033. },
  40034. {
  40035. name: "Smol",
  40036. height: math.unit(8, "inches")
  40037. },
  40038. {
  40039. name: "Normal",
  40040. height: math.unit(5 + 6/12, "feet"),
  40041. default: true
  40042. },
  40043. {
  40044. name: "Mini-Macro",
  40045. height: math.unit(15, "feet")
  40046. },
  40047. {
  40048. name: "Macro",
  40049. height: math.unit(50, "feet")
  40050. },
  40051. ]
  40052. ))
  40053. characterMakers.push(() => makeCharacter(
  40054. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40055. {
  40056. front: {
  40057. height: math.unit(6 + 4/12, "feet"),
  40058. weight: math.unit(170, "lb"),
  40059. name: "Front",
  40060. image: {
  40061. source: "./media/characters/charlie/front.svg",
  40062. extra: 1348/1228,
  40063. bottom: 15/1363
  40064. }
  40065. },
  40066. },
  40067. [
  40068. {
  40069. name: "Macro",
  40070. height: math.unit(1700, "meters"),
  40071. default: true
  40072. },
  40073. {
  40074. name: "MegaMacro",
  40075. height: math.unit(20400, "meters")
  40076. },
  40077. ]
  40078. ))
  40079. characterMakers.push(() => makeCharacter(
  40080. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40081. {
  40082. front: {
  40083. height: math.unit(6 + 3/12, "feet"),
  40084. weight: math.unit(185, "lb"),
  40085. name: "Front",
  40086. image: {
  40087. source: "./media/characters/susan-grant/front.svg",
  40088. extra: 1351/1327,
  40089. bottom: 26/1377
  40090. }
  40091. },
  40092. },
  40093. [
  40094. {
  40095. name: "Normal",
  40096. height: math.unit(6 + 3/12, "feet"),
  40097. default: true
  40098. },
  40099. {
  40100. name: "Macro",
  40101. height: math.unit(225, "feet")
  40102. },
  40103. {
  40104. name: "Macro+",
  40105. height: math.unit(900, "feet")
  40106. },
  40107. {
  40108. name: "MegaMacro",
  40109. height: math.unit(14400, "feet")
  40110. },
  40111. ]
  40112. ))
  40113. characterMakers.push(() => makeCharacter(
  40114. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40115. {
  40116. front: {
  40117. height: math.unit(5 + 4/12, "feet"),
  40118. weight: math.unit(110, "lb"),
  40119. name: "Front",
  40120. image: {
  40121. source: "./media/characters/axel-isanov/front.svg",
  40122. extra: 1096/1065,
  40123. bottom: 13/1109
  40124. }
  40125. },
  40126. },
  40127. [
  40128. {
  40129. name: "Normal",
  40130. height: math.unit(5 + 4/12, "feet"),
  40131. default: true
  40132. },
  40133. ]
  40134. ))
  40135. characterMakers.push(() => makeCharacter(
  40136. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40137. {
  40138. front: {
  40139. height: math.unit(9, "feet"),
  40140. weight: math.unit(467, "lb"),
  40141. name: "Front",
  40142. image: {
  40143. source: "./media/characters/necahual/front.svg",
  40144. extra: 920/873,
  40145. bottom: 26/946
  40146. }
  40147. },
  40148. back: {
  40149. height: math.unit(9, "feet"),
  40150. weight: math.unit(467, "lb"),
  40151. name: "Back",
  40152. image: {
  40153. source: "./media/characters/necahual/back.svg",
  40154. extra: 930/884,
  40155. bottom: 16/946
  40156. }
  40157. },
  40158. frontUnderwear: {
  40159. height: math.unit(9, "feet"),
  40160. weight: math.unit(467, "lb"),
  40161. name: "Front (Underwear)",
  40162. image: {
  40163. source: "./media/characters/necahual/front-underwear.svg",
  40164. extra: 920/873,
  40165. bottom: 26/946
  40166. }
  40167. },
  40168. frontDressed: {
  40169. height: math.unit(9, "feet"),
  40170. weight: math.unit(467, "lb"),
  40171. name: "Front (Dressed)",
  40172. image: {
  40173. source: "./media/characters/necahual/front-dressed.svg",
  40174. extra: 920/873,
  40175. bottom: 26/946
  40176. }
  40177. },
  40178. },
  40179. [
  40180. {
  40181. name: "Comprsesed",
  40182. height: math.unit(9, "feet")
  40183. },
  40184. {
  40185. name: "Natural",
  40186. height: math.unit(15, "feet"),
  40187. default: true
  40188. },
  40189. {
  40190. name: "Boosted",
  40191. height: math.unit(50, "feet")
  40192. },
  40193. {
  40194. name: "Boosted+",
  40195. height: math.unit(150, "feet")
  40196. },
  40197. {
  40198. name: "Max",
  40199. height: math.unit(500, "feet")
  40200. },
  40201. ]
  40202. ))
  40203. characterMakers.push(() => makeCharacter(
  40204. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40205. {
  40206. front: {
  40207. height: math.unit(22 + 1/12, "feet"),
  40208. weight: math.unit(3200, "lb"),
  40209. name: "Front",
  40210. image: {
  40211. source: "./media/characters/theo-acacia/front.svg",
  40212. extra: 1796/1741,
  40213. bottom: 83/1879
  40214. }
  40215. },
  40216. frontUnderwear: {
  40217. height: math.unit(22 + 1/12, "feet"),
  40218. weight: math.unit(3200, "lb"),
  40219. name: "Front (Underwear)",
  40220. image: {
  40221. source: "./media/characters/theo-acacia/front-underwear.svg",
  40222. extra: 1796/1741,
  40223. bottom: 83/1879
  40224. }
  40225. },
  40226. frontNude: {
  40227. height: math.unit(22 + 1/12, "feet"),
  40228. weight: math.unit(3200, "lb"),
  40229. name: "Front (Nude)",
  40230. image: {
  40231. source: "./media/characters/theo-acacia/front-nude.svg",
  40232. extra: 1796/1741,
  40233. bottom: 83/1879
  40234. }
  40235. },
  40236. },
  40237. [
  40238. {
  40239. name: "Normal",
  40240. height: math.unit(22 + 1/12, "feet"),
  40241. default: true
  40242. },
  40243. ]
  40244. ))
  40245. characterMakers.push(() => makeCharacter(
  40246. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40247. {
  40248. front: {
  40249. height: math.unit(20, "feet"),
  40250. name: "Front",
  40251. image: {
  40252. source: "./media/characters/astra/front.svg",
  40253. extra: 1850/1714,
  40254. bottom: 106/1956
  40255. }
  40256. },
  40257. frontUndressed: {
  40258. height: math.unit(20, "feet"),
  40259. name: "Front (Undressed)",
  40260. image: {
  40261. source: "./media/characters/astra/front-undressed.svg",
  40262. extra: 1926/1749,
  40263. bottom: 0/1926
  40264. }
  40265. },
  40266. hand: {
  40267. height: math.unit(1.53, "feet"),
  40268. name: "Hand",
  40269. image: {
  40270. source: "./media/characters/astra/hand.svg"
  40271. }
  40272. },
  40273. paw: {
  40274. height: math.unit(1.53, "feet"),
  40275. name: "Paw",
  40276. image: {
  40277. source: "./media/characters/astra/paw.svg"
  40278. }
  40279. },
  40280. },
  40281. [
  40282. {
  40283. name: "Smallest",
  40284. height: math.unit(20, "feet")
  40285. },
  40286. {
  40287. name: "Normal",
  40288. height: math.unit(1e9, "miles"),
  40289. default: true
  40290. },
  40291. {
  40292. name: "Larger",
  40293. height: math.unit(5, "multiverses")
  40294. },
  40295. {
  40296. name: "Largest",
  40297. height: math.unit(1e9, "multiverses")
  40298. },
  40299. ]
  40300. ))
  40301. characterMakers.push(() => makeCharacter(
  40302. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40303. {
  40304. front: {
  40305. height: math.unit(8, "feet"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/breanna/front.svg",
  40309. extra: 1912/1632,
  40310. bottom: 33/1945
  40311. }
  40312. },
  40313. },
  40314. [
  40315. {
  40316. name: "Smallest",
  40317. height: math.unit(8, "feet")
  40318. },
  40319. {
  40320. name: "Normal",
  40321. height: math.unit(1, "mile"),
  40322. default: true
  40323. },
  40324. {
  40325. name: "Maximum",
  40326. height: math.unit(1500000000000, "lightyears")
  40327. },
  40328. ]
  40329. ))
  40330. characterMakers.push(() => makeCharacter(
  40331. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40332. {
  40333. front: {
  40334. height: math.unit(5 + 11/12, "feet"),
  40335. weight: math.unit(155, "lb"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/cai/front.svg",
  40339. extra: 1823/1702,
  40340. bottom: 32/1855
  40341. }
  40342. },
  40343. back: {
  40344. height: math.unit(5 + 11/12, "feet"),
  40345. weight: math.unit(155, "lb"),
  40346. name: "Back",
  40347. image: {
  40348. source: "./media/characters/cai/back.svg",
  40349. extra: 1809/1708,
  40350. bottom: 31/1840
  40351. }
  40352. },
  40353. },
  40354. [
  40355. {
  40356. name: "Normal",
  40357. height: math.unit(5 + 11/12, "feet"),
  40358. default: true
  40359. },
  40360. {
  40361. name: "Big",
  40362. height: math.unit(15, "feet")
  40363. },
  40364. {
  40365. name: "Macro",
  40366. height: math.unit(200, "feet")
  40367. },
  40368. ]
  40369. ))
  40370. characterMakers.push(() => makeCharacter(
  40371. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40372. {
  40373. front: {
  40374. height: math.unit(5 + 6/12, "feet"),
  40375. weight: math.unit(160, "lb"),
  40376. name: "Front",
  40377. image: {
  40378. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40379. extra: 1227/1174,
  40380. bottom: 37/1264
  40381. }
  40382. },
  40383. },
  40384. [
  40385. {
  40386. name: "Macro",
  40387. height: math.unit(444, "meters"),
  40388. default: true
  40389. },
  40390. ]
  40391. ))
  40392. characterMakers.push(() => makeCharacter(
  40393. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40394. {
  40395. front: {
  40396. height: math.unit(18 + 7/12, "feet"),
  40397. name: "Front",
  40398. image: {
  40399. source: "./media/characters/rex/front.svg",
  40400. extra: 1941/1807,
  40401. bottom: 66/2007
  40402. }
  40403. },
  40404. back: {
  40405. height: math.unit(18 + 7/12, "feet"),
  40406. name: "Back",
  40407. image: {
  40408. source: "./media/characters/rex/back.svg",
  40409. extra: 1937/1822,
  40410. bottom: 42/1979
  40411. }
  40412. },
  40413. boot: {
  40414. height: math.unit(3.45, "feet"),
  40415. name: "Boot",
  40416. image: {
  40417. source: "./media/characters/rex/boot.svg"
  40418. }
  40419. },
  40420. paw: {
  40421. height: math.unit(4.17, "feet"),
  40422. name: "Paw",
  40423. image: {
  40424. source: "./media/characters/rex/paw.svg"
  40425. }
  40426. },
  40427. head: {
  40428. height: math.unit(6.728, "feet"),
  40429. name: "Head",
  40430. image: {
  40431. source: "./media/characters/rex/head.svg"
  40432. }
  40433. },
  40434. },
  40435. [
  40436. {
  40437. name: "Nano",
  40438. height: math.unit(18 + 7/12, "feet")
  40439. },
  40440. {
  40441. name: "Micro",
  40442. height: math.unit(1.5, "megameters")
  40443. },
  40444. {
  40445. name: "Normal",
  40446. height: math.unit(440, "megameters"),
  40447. default: true
  40448. },
  40449. {
  40450. name: "Macro",
  40451. height: math.unit(2.5, "gigameters")
  40452. },
  40453. {
  40454. name: "Gigamacro",
  40455. height: math.unit(2, "galaxies")
  40456. },
  40457. ]
  40458. ))
  40459. characterMakers.push(() => makeCharacter(
  40460. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40461. {
  40462. side: {
  40463. height: math.unit(32, "feet"),
  40464. weight: math.unit(250000, "lb"),
  40465. name: "Side",
  40466. image: {
  40467. source: "./media/characters/silverwing/side.svg",
  40468. extra: 1100/1019,
  40469. bottom: 204/1304
  40470. }
  40471. },
  40472. },
  40473. [
  40474. {
  40475. name: "Normal",
  40476. height: math.unit(32, "feet"),
  40477. default: true
  40478. },
  40479. ]
  40480. ))
  40481. characterMakers.push(() => makeCharacter(
  40482. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40483. {
  40484. front: {
  40485. height: math.unit(6 + 6/12, "feet"),
  40486. weight: math.unit(350, "lb"),
  40487. name: "Front",
  40488. image: {
  40489. source: "./media/characters/tristan-hawthorne/front.svg",
  40490. extra: 1159/1124,
  40491. bottom: 37/1196
  40492. }
  40493. },
  40494. },
  40495. [
  40496. {
  40497. name: "Normal",
  40498. height: math.unit(6 + 6/12, "feet"),
  40499. default: true
  40500. },
  40501. ]
  40502. ))
  40503. characterMakers.push(() => makeCharacter(
  40504. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40505. {
  40506. front: {
  40507. height: math.unit(5 + 11/12, "feet"),
  40508. weight: math.unit(190, "lb"),
  40509. name: "Front",
  40510. image: {
  40511. source: "./media/characters/mizu/front.svg",
  40512. extra: 1988/1788,
  40513. bottom: 14/2002
  40514. }
  40515. },
  40516. },
  40517. [
  40518. {
  40519. name: "Normal",
  40520. height: math.unit(5 + 11/12, "feet"),
  40521. default: true
  40522. },
  40523. ]
  40524. ))
  40525. characterMakers.push(() => makeCharacter(
  40526. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40527. {
  40528. front: {
  40529. height: math.unit(6, "feet"),
  40530. name: "Front",
  40531. image: {
  40532. source: "./media/characters/moonlight-rose-terra/front.svg",
  40533. extra: 1434/1252,
  40534. bottom: 48/1482
  40535. }
  40536. },
  40537. },
  40538. [
  40539. {
  40540. name: "TRAPPIST-1D",
  40541. height: math.unit(4992*2, "km")
  40542. },
  40543. {
  40544. name: "Earth",
  40545. height: math.unit(6367*2, "km"),
  40546. default: true
  40547. },
  40548. {
  40549. name: "Kepler-22b",
  40550. height: math.unit(15282*2, "km")
  40551. },
  40552. ]
  40553. ))
  40554. characterMakers.push(() => makeCharacter(
  40555. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40556. {
  40557. front: {
  40558. height: math.unit(6, "feet"),
  40559. name: "Front",
  40560. image: {
  40561. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40562. extra: 1851/1712,
  40563. bottom: 0/1851
  40564. }
  40565. },
  40566. },
  40567. [
  40568. {
  40569. name: "Enceladus",
  40570. height: math.unit(513*2, "km")
  40571. },
  40572. {
  40573. name: "Europe",
  40574. height: math.unit(1560*2, "km")
  40575. },
  40576. {
  40577. name: "Neptune",
  40578. height: math.unit(24622*2, "km"),
  40579. default: true
  40580. },
  40581. {
  40582. name: "CoRoT-9b",
  40583. height: math.unit(75067*2, "km")
  40584. },
  40585. ]
  40586. ))
  40587. characterMakers.push(() => makeCharacter(
  40588. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40589. {
  40590. front: {
  40591. height: math.unit(6, "feet"),
  40592. name: "Front",
  40593. image: {
  40594. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40595. extra: 1367/1286,
  40596. bottom: 55/1422
  40597. }
  40598. },
  40599. },
  40600. [
  40601. {
  40602. name: "Saturn",
  40603. height: math.unit(58232*2, "km")
  40604. },
  40605. {
  40606. name: "Jupiter",
  40607. height: math.unit(69911*2, "km"),
  40608. default: true
  40609. },
  40610. {
  40611. name: "HD 100546 b",
  40612. height: math.unit(482938, "km")
  40613. },
  40614. ]
  40615. ))
  40616. //characters
  40617. function makeCharacters() {
  40618. const results = [];
  40619. characterMakers.forEach(character => {
  40620. results.push(character());
  40621. });
  40622. return results;
  40623. }