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

41352 строки
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. }
  1699. //species
  1700. function getSpeciesInfo(speciesList) {
  1701. let result = new Set();
  1702. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1703. result.add(entry)
  1704. });
  1705. return Array.from(result);
  1706. };
  1707. function getSpeciesInfoHelper(species) {
  1708. if (!speciesData[species]) {
  1709. console.warn(species + " doesn't exist");
  1710. return [];
  1711. }
  1712. if (speciesData[species].parents) {
  1713. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1714. } else {
  1715. return [species];
  1716. }
  1717. }
  1718. characterMakers.push(() => makeCharacter(
  1719. {
  1720. name: "Fen",
  1721. species: ["crux"],
  1722. description: {
  1723. title: "Bio",
  1724. text: "Very furry. Sheds on everything."
  1725. },
  1726. tags: [
  1727. "anthro",
  1728. "goo"
  1729. ]
  1730. },
  1731. {
  1732. back: {
  1733. height: math.unit(2.2428, "meter"),
  1734. weight: math.unit(124.738, "kg"),
  1735. name: "Back",
  1736. image: {
  1737. source: "./media/characters/fen/back.svg",
  1738. },
  1739. info: {
  1740. description: {
  1741. mode: "append",
  1742. text: "\n\nHe is not currently looking at you."
  1743. }
  1744. }
  1745. },
  1746. full: {
  1747. height: math.unit(1.34, "meter"),
  1748. weight: math.unit(225, "kg"),
  1749. name: "Full",
  1750. image: {
  1751. source: "./media/characters/fen/full.svg"
  1752. },
  1753. info: {
  1754. description: {
  1755. mode: "append",
  1756. text: "\n\nMunch."
  1757. }
  1758. }
  1759. },
  1760. kneeling: {
  1761. height: math.unit(5.4, "feet"),
  1762. weight: math.unit(124.738, "kg"),
  1763. name: "Kneeling",
  1764. image: {
  1765. source: "./media/characters/fen/kneeling.svg",
  1766. extra: 563 / 507
  1767. }
  1768. },
  1769. goo: {
  1770. height: math.unit(2.8, "feet"),
  1771. weight: math.unit(125, "kg"),
  1772. capacity: math.unit(1, "people"),
  1773. name: "Goo",
  1774. image: {
  1775. source: "./media/characters/fen/goo.svg",
  1776. bottom: 116 / 613
  1777. }
  1778. },
  1779. lounging: {
  1780. height: math.unit(6.5, "feet"),
  1781. weight: math.unit(125, "kg"),
  1782. name: "Lounging",
  1783. image: {
  1784. source: "./media/characters/fen/lounging.svg"
  1785. }
  1786. },
  1787. },
  1788. [
  1789. {
  1790. name: "Normal",
  1791. height: math.unit(2.2428, "meter")
  1792. },
  1793. {
  1794. name: "Big",
  1795. height: math.unit(12, "feet")
  1796. },
  1797. {
  1798. name: "Minimacro",
  1799. height: math.unit(40, "feet"),
  1800. default: true,
  1801. info: {
  1802. description: {
  1803. mode: "append",
  1804. text: "\n\nTOO DAMN BIG"
  1805. }
  1806. }
  1807. },
  1808. {
  1809. name: "Macro",
  1810. height: math.unit(100, "feet"),
  1811. info: {
  1812. description: {
  1813. mode: "append",
  1814. text: "\n\nTOO DAMN BIG"
  1815. }
  1816. }
  1817. },
  1818. {
  1819. name: "Macro+",
  1820. height: math.unit(300, "feet")
  1821. },
  1822. {
  1823. name: "Megamacro",
  1824. height: math.unit(2, "miles")
  1825. }
  1826. ]
  1827. ))
  1828. characterMakers.push(() => makeCharacter(
  1829. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1830. {
  1831. front: {
  1832. height: math.unit(183, "cm"),
  1833. weight: math.unit(80, "kg"),
  1834. name: "Front",
  1835. image: {
  1836. source: "./media/characters/sofia-fluttertail/front.svg",
  1837. bottom: 0.01,
  1838. extra: 2154 / 2081
  1839. }
  1840. },
  1841. frontAlt: {
  1842. height: math.unit(183, "cm"),
  1843. weight: math.unit(80, "kg"),
  1844. name: "Front (alt)",
  1845. image: {
  1846. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1847. }
  1848. },
  1849. back: {
  1850. height: math.unit(183, "cm"),
  1851. weight: math.unit(80, "kg"),
  1852. name: "Back",
  1853. image: {
  1854. source: "./media/characters/sofia-fluttertail/back.svg"
  1855. }
  1856. },
  1857. kneeling: {
  1858. height: math.unit(125, "cm"),
  1859. weight: math.unit(80, "kg"),
  1860. name: "Kneeling",
  1861. image: {
  1862. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1863. extra: 1033 / 977,
  1864. bottom: 23.7 / 1057
  1865. }
  1866. },
  1867. maw: {
  1868. height: math.unit(183 / 5, "cm"),
  1869. name: "Maw",
  1870. image: {
  1871. source: "./media/characters/sofia-fluttertail/maw.svg"
  1872. }
  1873. },
  1874. mawcloseup: {
  1875. height: math.unit(183 / 5 * 0.41, "cm"),
  1876. name: "Maw (Closeup)",
  1877. image: {
  1878. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1879. }
  1880. },
  1881. paws: {
  1882. height: math.unit(1.17, "feet"),
  1883. name: "Paws",
  1884. image: {
  1885. source: "./media/characters/sofia-fluttertail/paws.svg",
  1886. extra: 851 / 851,
  1887. bottom: 17 / 868
  1888. }
  1889. },
  1890. },
  1891. [
  1892. {
  1893. name: "Normal",
  1894. height: math.unit(1.83, "meter")
  1895. },
  1896. {
  1897. name: "Size Thief",
  1898. height: math.unit(18, "feet")
  1899. },
  1900. {
  1901. name: "50 Foot Collie",
  1902. height: math.unit(50, "feet")
  1903. },
  1904. {
  1905. name: "Macro",
  1906. height: math.unit(96, "feet"),
  1907. default: true
  1908. },
  1909. {
  1910. name: "Megamerger",
  1911. height: math.unit(650, "feet")
  1912. },
  1913. ]
  1914. ))
  1915. characterMakers.push(() => makeCharacter(
  1916. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1917. {
  1918. front: {
  1919. height: math.unit(7, "feet"),
  1920. weight: math.unit(100, "kg"),
  1921. name: "Front",
  1922. image: {
  1923. source: "./media/characters/march/front.svg",
  1924. extra: 1992/1851,
  1925. bottom: 39/2031
  1926. }
  1927. },
  1928. foot: {
  1929. height: math.unit(0.9, "feet"),
  1930. name: "Foot",
  1931. image: {
  1932. source: "./media/characters/march/foot.svg"
  1933. }
  1934. },
  1935. },
  1936. [
  1937. {
  1938. name: "Normal",
  1939. height: math.unit(7.9, "feet")
  1940. },
  1941. {
  1942. name: "Macro",
  1943. height: math.unit(220, "meters")
  1944. },
  1945. {
  1946. name: "Megamacro",
  1947. height: math.unit(2.98, "km"),
  1948. default: true
  1949. },
  1950. {
  1951. name: "Gigamacro",
  1952. height: math.unit(15963, "km")
  1953. },
  1954. {
  1955. name: "Teramacro",
  1956. height: math.unit(2980000000, "km")
  1957. },
  1958. {
  1959. name: "Examacro",
  1960. height: math.unit(250, "parsecs")
  1961. },
  1962. ]
  1963. ))
  1964. characterMakers.push(() => makeCharacter(
  1965. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1966. {
  1967. front: {
  1968. height: math.unit(6, "feet"),
  1969. weight: math.unit(60, "kg"),
  1970. name: "Front",
  1971. image: {
  1972. source: "./media/characters/noir/front.svg",
  1973. extra: 1,
  1974. bottom: 0.032
  1975. }
  1976. },
  1977. },
  1978. [
  1979. {
  1980. name: "Normal",
  1981. height: math.unit(6.6, "feet")
  1982. },
  1983. {
  1984. name: "Macro",
  1985. height: math.unit(500, "feet")
  1986. },
  1987. {
  1988. name: "Megamacro",
  1989. height: math.unit(2.5, "km"),
  1990. default: true
  1991. },
  1992. {
  1993. name: "Gigamacro",
  1994. height: math.unit(22500, "km")
  1995. },
  1996. {
  1997. name: "Teramacro",
  1998. height: math.unit(2500000000, "km")
  1999. },
  2000. {
  2001. name: "Examacro",
  2002. height: math.unit(200, "parsecs")
  2003. },
  2004. ]
  2005. ))
  2006. characterMakers.push(() => makeCharacter(
  2007. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2008. {
  2009. front: {
  2010. height: math.unit(7, "feet"),
  2011. weight: math.unit(100, "kg"),
  2012. name: "Front",
  2013. image: {
  2014. source: "./media/characters/okuri/front.svg",
  2015. extra: 1,
  2016. bottom: 0.037
  2017. }
  2018. },
  2019. back: {
  2020. height: math.unit(7, "feet"),
  2021. weight: math.unit(100, "kg"),
  2022. name: "Back",
  2023. image: {
  2024. source: "./media/characters/okuri/back.svg",
  2025. extra: 1,
  2026. bottom: 0.007
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Megamacro",
  2033. height: math.unit(100, "miles"),
  2034. default: true
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(100, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/manny/front.svg",
  2047. extra: 1,
  2048. bottom: 0.06
  2049. }
  2050. },
  2051. back: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(100, "kg"),
  2054. name: "Back",
  2055. image: {
  2056. source: "./media/characters/manny/back.svg",
  2057. extra: 1,
  2058. bottom: 0.014
  2059. }
  2060. },
  2061. },
  2062. [
  2063. {
  2064. name: "Normal",
  2065. height: math.unit(7, "feet"),
  2066. },
  2067. {
  2068. name: "Macro",
  2069. height: math.unit(78, "feet"),
  2070. default: true
  2071. },
  2072. {
  2073. name: "Macro+",
  2074. height: math.unit(300, "meters")
  2075. },
  2076. {
  2077. name: "Macro++",
  2078. height: math.unit(2400, "meters")
  2079. },
  2080. {
  2081. name: "Megamacro",
  2082. height: math.unit(5167, "meters")
  2083. },
  2084. {
  2085. name: "Gigamacro",
  2086. height: math.unit(41769, "miles")
  2087. },
  2088. ]
  2089. ))
  2090. characterMakers.push(() => makeCharacter(
  2091. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2092. {
  2093. front: {
  2094. height: math.unit(7, "feet"),
  2095. weight: math.unit(100, "kg"),
  2096. name: "Front",
  2097. image: {
  2098. source: "./media/characters/adake/front-1.svg"
  2099. }
  2100. },
  2101. frontAlt: {
  2102. height: math.unit(7, "feet"),
  2103. weight: math.unit(100, "kg"),
  2104. name: "Front (Alt)",
  2105. image: {
  2106. source: "./media/characters/adake/front-2.svg",
  2107. extra: 1,
  2108. bottom: 0.01
  2109. }
  2110. },
  2111. back: {
  2112. height: math.unit(7, "feet"),
  2113. weight: math.unit(100, "kg"),
  2114. name: "Back",
  2115. image: {
  2116. source: "./media/characters/adake/back.svg",
  2117. }
  2118. },
  2119. kneel: {
  2120. height: math.unit(5.385, "feet"),
  2121. weight: math.unit(100, "kg"),
  2122. name: "Kneeling",
  2123. image: {
  2124. source: "./media/characters/adake/kneel.svg",
  2125. bottom: 0.052
  2126. }
  2127. },
  2128. },
  2129. [
  2130. {
  2131. name: "Normal",
  2132. height: math.unit(7, "feet"),
  2133. },
  2134. {
  2135. name: "Macro",
  2136. height: math.unit(78, "feet"),
  2137. default: true
  2138. },
  2139. {
  2140. name: "Macro+",
  2141. height: math.unit(300, "meters")
  2142. },
  2143. {
  2144. name: "Macro++",
  2145. height: math.unit(2400, "meters")
  2146. },
  2147. {
  2148. name: "Megamacro",
  2149. height: math.unit(5167, "meters")
  2150. },
  2151. {
  2152. name: "Gigamacro",
  2153. height: math.unit(41769, "miles")
  2154. },
  2155. ]
  2156. ))
  2157. characterMakers.push(() => makeCharacter(
  2158. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2159. {
  2160. front: {
  2161. height: math.unit(1.65, "meters"),
  2162. weight: math.unit(50, "kg"),
  2163. name: "Front",
  2164. image: {
  2165. source: "./media/characters/elijah/front.svg",
  2166. extra: 858 / 830,
  2167. bottom: 95.5 / 953.8559
  2168. }
  2169. },
  2170. back: {
  2171. height: math.unit(1.65, "meters"),
  2172. weight: math.unit(50, "kg"),
  2173. name: "Back",
  2174. image: {
  2175. source: "./media/characters/elijah/back.svg",
  2176. extra: 895 / 850,
  2177. bottom: 5.3 / 897.956
  2178. }
  2179. },
  2180. frontNsfw: {
  2181. height: math.unit(1.65, "meters"),
  2182. weight: math.unit(50, "kg"),
  2183. name: "Front (NSFW)",
  2184. image: {
  2185. source: "./media/characters/elijah/front-nsfw.svg",
  2186. extra: 858 / 830,
  2187. bottom: 95.5 / 953.8559
  2188. }
  2189. },
  2190. backNsfw: {
  2191. height: math.unit(1.65, "meters"),
  2192. weight: math.unit(50, "kg"),
  2193. name: "Back (NSFW)",
  2194. image: {
  2195. source: "./media/characters/elijah/back-nsfw.svg",
  2196. extra: 895 / 850,
  2197. bottom: 5.3 / 897.956
  2198. }
  2199. },
  2200. dick: {
  2201. height: math.unit(1, "feet"),
  2202. name: "Dick",
  2203. image: {
  2204. source: "./media/characters/elijah/dick.svg"
  2205. }
  2206. },
  2207. beakOpen: {
  2208. height: math.unit(1.25, "feet"),
  2209. name: "Beak (Open)",
  2210. image: {
  2211. source: "./media/characters/elijah/beak-open.svg"
  2212. }
  2213. },
  2214. beakShut: {
  2215. height: math.unit(1.25, "feet"),
  2216. name: "Beak (Shut)",
  2217. image: {
  2218. source: "./media/characters/elijah/beak-shut.svg"
  2219. }
  2220. },
  2221. footFlexing: {
  2222. height: math.unit(1.61, "feet"),
  2223. name: "Foot (Flexing)",
  2224. image: {
  2225. source: "./media/characters/elijah/foot-flexing.svg"
  2226. }
  2227. },
  2228. footStepping: {
  2229. height: math.unit(1.44, "feet"),
  2230. name: "Foot (Stepping)",
  2231. image: {
  2232. source: "./media/characters/elijah/foot-stepping.svg"
  2233. }
  2234. },
  2235. plantigradeLeg: {
  2236. height: math.unit(2.34, "feet"),
  2237. name: "Plantigrade Leg",
  2238. image: {
  2239. source: "./media/characters/elijah/plantigrade-leg.svg"
  2240. }
  2241. },
  2242. plantigradeFootLeft: {
  2243. height: math.unit(0.9, "feet"),
  2244. name: "Plantigrade Foot (Left)",
  2245. image: {
  2246. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2247. }
  2248. },
  2249. plantigradeFootRight: {
  2250. height: math.unit(0.9, "feet"),
  2251. name: "Plantigrade Foot (Right)",
  2252. image: {
  2253. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Normal",
  2260. height: math.unit(1.65, "meters")
  2261. },
  2262. {
  2263. name: "Macro",
  2264. height: math.unit(55, "meters"),
  2265. default: true
  2266. },
  2267. {
  2268. name: "Macro+",
  2269. height: math.unit(105, "meters")
  2270. },
  2271. ]
  2272. ))
  2273. characterMakers.push(() => makeCharacter(
  2274. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2275. {
  2276. front: {
  2277. height: math.unit(11, "feet"),
  2278. weight: math.unit(320, "kg"),
  2279. name: "Front",
  2280. image: {
  2281. source: "./media/characters/rai/front.svg",
  2282. extra: 1802/1696,
  2283. bottom: 68/1870
  2284. }
  2285. },
  2286. frontDressed: {
  2287. height: math.unit(11, "feet"),
  2288. weight: math.unit(320, "kg"),
  2289. name: "Front (Dressed)",
  2290. image: {
  2291. source: "./media/characters/rai/front-dressed.svg",
  2292. extra: 1802/1696,
  2293. bottom: 68/1870
  2294. }
  2295. },
  2296. side: {
  2297. height: math.unit(11, "feet"),
  2298. weight: math.unit(320, "kg"),
  2299. name: "Side",
  2300. image: {
  2301. source: "./media/characters/rai/side.svg",
  2302. extra: 1789/1710,
  2303. bottom: 115/1904
  2304. }
  2305. },
  2306. back: {
  2307. height: math.unit(11, "feet"),
  2308. weight: math.unit(320, "kg"),
  2309. name: "Back",
  2310. image: {
  2311. source: "./media/characters/rai/back.svg",
  2312. extra: 1770/1707,
  2313. bottom: 28/1798
  2314. }
  2315. },
  2316. feral: {
  2317. height: math.unit(11, "feet"),
  2318. weight: math.unit(640, "kg"),
  2319. name: "Feral",
  2320. image: {
  2321. source: "./media/characters/rai/feral.svg",
  2322. extra: 1035/642,
  2323. bottom: 86/1121
  2324. }
  2325. },
  2326. dragon: {
  2327. height: math.unit(23, "feet"),
  2328. weight: math.unit(50000, "lb"),
  2329. name: "Dragon",
  2330. image: {
  2331. source: "./media/characters/rai/dragon.svg",
  2332. extra: 2498 / 2030,
  2333. bottom: 85.2 / 2584
  2334. }
  2335. },
  2336. maw: {
  2337. height: math.unit(6 / 3.81416, "feet"),
  2338. name: "Maw",
  2339. image: {
  2340. source: "./media/characters/rai/maw.svg"
  2341. }
  2342. },
  2343. },
  2344. [
  2345. {
  2346. name: "Normal",
  2347. height: math.unit(11, "feet")
  2348. },
  2349. {
  2350. name: "Macro",
  2351. height: math.unit(302, "feet"),
  2352. default: true
  2353. },
  2354. ]
  2355. ))
  2356. characterMakers.push(() => makeCharacter(
  2357. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2358. {
  2359. frontDressed: {
  2360. height: math.unit(216, "feet"),
  2361. weight: math.unit(7000000, "lb"),
  2362. name: "Front (Dressed)",
  2363. image: {
  2364. source: "./media/characters/jazzy/front-dressed.svg",
  2365. extra: 2738 / 2651,
  2366. bottom: 41.8 / 2786
  2367. }
  2368. },
  2369. backDressed: {
  2370. height: math.unit(216, "feet"),
  2371. weight: math.unit(7000000, "lb"),
  2372. name: "Back (Dressed)",
  2373. image: {
  2374. source: "./media/characters/jazzy/back-dressed.svg",
  2375. extra: 2775 / 2673,
  2376. bottom: 36.8 / 2817
  2377. }
  2378. },
  2379. front: {
  2380. height: math.unit(216, "feet"),
  2381. weight: math.unit(7000000, "lb"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/jazzy/front.svg",
  2385. extra: 2738 / 2651,
  2386. bottom: 41.8 / 2786
  2387. }
  2388. },
  2389. back: {
  2390. height: math.unit(216, "feet"),
  2391. weight: math.unit(7000000, "lb"),
  2392. name: "Back",
  2393. image: {
  2394. source: "./media/characters/jazzy/back.svg",
  2395. extra: 2775 / 2673,
  2396. bottom: 36.8 / 2817
  2397. }
  2398. },
  2399. maw: {
  2400. height: math.unit(20, "feet"),
  2401. name: "Maw",
  2402. image: {
  2403. source: "./media/characters/jazzy/maw.svg"
  2404. }
  2405. },
  2406. paws: {
  2407. height: math.unit(27.5, "feet"),
  2408. name: "Paws",
  2409. image: {
  2410. source: "./media/characters/jazzy/paws.svg"
  2411. }
  2412. },
  2413. eye: {
  2414. height: math.unit(4.4, "feet"),
  2415. name: "Eye",
  2416. image: {
  2417. source: "./media/characters/jazzy/eye.svg"
  2418. }
  2419. },
  2420. droneOffense: {
  2421. height: math.unit(9.5, "inches"),
  2422. name: "Drone (Offense)",
  2423. image: {
  2424. source: "./media/characters/jazzy/drone-offense.svg"
  2425. }
  2426. },
  2427. droneRecon: {
  2428. height: math.unit(9.5, "inches"),
  2429. name: "Drone (Recon)",
  2430. image: {
  2431. source: "./media/characters/jazzy/drone-recon.svg"
  2432. }
  2433. },
  2434. droneDefense: {
  2435. height: math.unit(9.5, "inches"),
  2436. name: "Drone (Defense)",
  2437. image: {
  2438. source: "./media/characters/jazzy/drone-defense.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Macro",
  2445. height: math.unit(216, "feet"),
  2446. default: true
  2447. },
  2448. ]
  2449. ))
  2450. characterMakers.push(() => makeCharacter(
  2451. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2452. {
  2453. front: {
  2454. height: math.unit(9 + 6/12, "feet"),
  2455. weight: math.unit(700, "lb"),
  2456. name: "Front",
  2457. image: {
  2458. source: "./media/characters/flamm/front.svg",
  2459. extra: 1751/1632,
  2460. bottom: 46/1797
  2461. }
  2462. },
  2463. buff: {
  2464. height: math.unit(9 + 6/12, "feet"),
  2465. weight: math.unit(950, "lb"),
  2466. name: "Buff",
  2467. image: {
  2468. source: "./media/characters/flamm/buff.svg",
  2469. extra: 3018/2874,
  2470. bottom: 221/3239
  2471. }
  2472. },
  2473. },
  2474. [
  2475. {
  2476. name: "Normal",
  2477. height: math.unit(9.5, "feet")
  2478. },
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(200, "feet"),
  2482. default: true
  2483. },
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2488. {
  2489. front: {
  2490. height: math.unit(5 + 3/12, "feet"),
  2491. weight: math.unit(60, "kg"),
  2492. name: "Front",
  2493. image: {
  2494. source: "./media/characters/zephiro/front.svg",
  2495. extra: 2309 / 2162,
  2496. bottom: 0.069
  2497. }
  2498. },
  2499. side: {
  2500. height: math.unit(5 + 3/12, "feet"),
  2501. weight: math.unit(60, "kg"),
  2502. name: "Side",
  2503. image: {
  2504. source: "./media/characters/zephiro/side.svg",
  2505. extra: 2403 / 2279,
  2506. bottom: 0.015
  2507. }
  2508. },
  2509. back: {
  2510. height: math.unit(5 + 3/12, "feet"),
  2511. weight: math.unit(60, "kg"),
  2512. name: "Back",
  2513. image: {
  2514. source: "./media/characters/zephiro/back.svg",
  2515. extra: 2373 / 2244,
  2516. bottom: 0.013
  2517. }
  2518. },
  2519. hand: {
  2520. height: math.unit(0.68, "feet"),
  2521. name: "Hand",
  2522. image: {
  2523. source: "./media/characters/zephiro/hand.svg"
  2524. }
  2525. },
  2526. paw: {
  2527. height: math.unit(1, "feet"),
  2528. name: "Paw",
  2529. image: {
  2530. source: "./media/characters/zephiro/paw.svg"
  2531. }
  2532. },
  2533. beans: {
  2534. height: math.unit(0.93, "feet"),
  2535. name: "Beans",
  2536. image: {
  2537. source: "./media/characters/zephiro/beans.svg"
  2538. }
  2539. },
  2540. },
  2541. [
  2542. {
  2543. name: "Micro",
  2544. height: math.unit(3, "inches")
  2545. },
  2546. {
  2547. name: "Normal",
  2548. height: math.unit(5 + 3 / 12, "feet"),
  2549. default: true
  2550. },
  2551. {
  2552. name: "Macro",
  2553. height: math.unit(118, "feet")
  2554. },
  2555. ]
  2556. ))
  2557. characterMakers.push(() => makeCharacter(
  2558. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2559. {
  2560. front: {
  2561. height: math.unit(5, "feet"),
  2562. weight: math.unit(90, "kg"),
  2563. name: "Front",
  2564. image: {
  2565. source: "./media/characters/fory/front.svg",
  2566. extra: 2862 / 2674,
  2567. bottom: 180 / 3043.8
  2568. }
  2569. },
  2570. back: {
  2571. height: math.unit(5, "feet"),
  2572. weight: math.unit(90, "kg"),
  2573. name: "Back",
  2574. image: {
  2575. source: "./media/characters/fory/back.svg",
  2576. extra: 2962 / 2791,
  2577. bottom: 106 / 3071.8
  2578. }
  2579. },
  2580. foot: {
  2581. height: math.unit(2.14, "feet"),
  2582. name: "Foot",
  2583. image: {
  2584. source: "./media/characters/fory/foot.svg"
  2585. }
  2586. },
  2587. },
  2588. [
  2589. {
  2590. name: "Normal",
  2591. height: math.unit(5, "feet")
  2592. },
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(50, "feet"),
  2596. default: true
  2597. },
  2598. {
  2599. name: "Megamacro",
  2600. height: math.unit(10, "miles")
  2601. },
  2602. {
  2603. name: "Gigamacro",
  2604. height: math.unit(5, "earths")
  2605. },
  2606. ]
  2607. ))
  2608. characterMakers.push(() => makeCharacter(
  2609. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2610. {
  2611. front: {
  2612. height: math.unit(7, "feet"),
  2613. weight: math.unit(90, "kg"),
  2614. name: "Front",
  2615. image: {
  2616. source: "./media/characters/kurrikage/front.svg",
  2617. extra: 1,
  2618. bottom: 0.035
  2619. }
  2620. },
  2621. back: {
  2622. height: math.unit(7, "feet"),
  2623. weight: math.unit(90, "lb"),
  2624. name: "Back",
  2625. image: {
  2626. source: "./media/characters/kurrikage/back.svg"
  2627. }
  2628. },
  2629. paw: {
  2630. height: math.unit(1.5, "feet"),
  2631. name: "Paw",
  2632. image: {
  2633. source: "./media/characters/kurrikage/paw.svg"
  2634. }
  2635. },
  2636. staff: {
  2637. height: math.unit(6.7, "feet"),
  2638. name: "Staff",
  2639. image: {
  2640. source: "./media/characters/kurrikage/staff.svg"
  2641. }
  2642. },
  2643. peek: {
  2644. height: math.unit(1.05, "feet"),
  2645. name: "Peeking",
  2646. image: {
  2647. source: "./media/characters/kurrikage/peek.svg",
  2648. bottom: 0.08
  2649. }
  2650. },
  2651. },
  2652. [
  2653. {
  2654. name: "Normal",
  2655. height: math.unit(12, "feet"),
  2656. default: true
  2657. },
  2658. {
  2659. name: "Big",
  2660. height: math.unit(20, "feet")
  2661. },
  2662. {
  2663. name: "Macro",
  2664. height: math.unit(500, "feet")
  2665. },
  2666. {
  2667. name: "Megamacro",
  2668. height: math.unit(20, "miles")
  2669. },
  2670. ]
  2671. ))
  2672. characterMakers.push(() => makeCharacter(
  2673. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2674. {
  2675. front: {
  2676. height: math.unit(6, "feet"),
  2677. weight: math.unit(75, "kg"),
  2678. name: "Front",
  2679. image: {
  2680. source: "./media/characters/shingo/front.svg",
  2681. extra: 706/681,
  2682. bottom: 11/717
  2683. }
  2684. },
  2685. frontAlt: {
  2686. height: math.unit(6, "feet"),
  2687. weight: math.unit(75, "kg"),
  2688. name: "Front (Alt)",
  2689. image: {
  2690. source: "./media/characters/shingo/front-alt.svg",
  2691. extra: 3511 / 3338,
  2692. bottom: 0.005
  2693. }
  2694. },
  2695. paw: {
  2696. height: math.unit(1, "feet"),
  2697. name: "Paw",
  2698. image: {
  2699. source: "./media/characters/shingo/paw.svg"
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Micro",
  2706. height: math.unit(4, "inches")
  2707. },
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(6, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro",
  2715. height: math.unit(108, "feet")
  2716. },
  2717. {
  2718. name: "Macro+",
  2719. height: math.unit(1500, "feet")
  2720. },
  2721. ]
  2722. ))
  2723. characterMakers.push(() => makeCharacter(
  2724. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2725. {
  2726. side: {
  2727. height: math.unit(6, "feet"),
  2728. weight: math.unit(75, "kg"),
  2729. name: "Side",
  2730. image: {
  2731. source: "./media/characters/aigey/side.svg"
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(200, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(100, "miles")
  2744. },
  2745. ]
  2746. )
  2747. )
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2750. {
  2751. front: {
  2752. height: math.unit(5 + 5 / 12, "feet"),
  2753. weight: math.unit(75, "kg"),
  2754. name: "Front",
  2755. image: {
  2756. source: "./media/characters/natasha/front.svg",
  2757. extra: 859 / 824,
  2758. bottom: 23 / 879.6
  2759. }
  2760. },
  2761. frontNsfw: {
  2762. height: math.unit(5 + 5 / 12, "feet"),
  2763. weight: math.unit(75, "kg"),
  2764. name: "Front (NSFW)",
  2765. image: {
  2766. source: "./media/characters/natasha/front-nsfw.svg",
  2767. extra: 859 / 824,
  2768. bottom: 23 / 879.6
  2769. }
  2770. },
  2771. frontErect: {
  2772. height: math.unit(5 + 5 / 12, "feet"),
  2773. weight: math.unit(75, "kg"),
  2774. name: "Front (Erect)",
  2775. image: {
  2776. source: "./media/characters/natasha/front-erect.svg",
  2777. extra: 859 / 824,
  2778. bottom: 23 / 879.6
  2779. }
  2780. },
  2781. back: {
  2782. height: math.unit(5 + 5 / 12, "feet"),
  2783. weight: math.unit(75, "kg"),
  2784. name: "Back",
  2785. image: {
  2786. source: "./media/characters/natasha/back.svg",
  2787. extra: 887.9 / 852.6,
  2788. bottom: 9.7 / 896.4
  2789. }
  2790. },
  2791. backAlt: {
  2792. height: math.unit(5 + 5 / 12, "feet"),
  2793. weight: math.unit(75, "kg"),
  2794. name: "Back (Alt)",
  2795. image: {
  2796. source: "./media/characters/natasha/back-alt.svg",
  2797. extra: 1236.7 / 1192,
  2798. bottom: 22.3 / 1258.2
  2799. }
  2800. },
  2801. dick: {
  2802. height: math.unit(1.772, "feet"),
  2803. name: "Dick",
  2804. image: {
  2805. source: "./media/characters/natasha/dick.svg"
  2806. }
  2807. },
  2808. paw: {
  2809. height: math.unit(0.250, "meters"),
  2810. name: "Paw",
  2811. image: {
  2812. source: "./media/characters/natasha/paw.svg"
  2813. }
  2814. },
  2815. },
  2816. [
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(5 + 5 / 12, "feet")
  2820. },
  2821. {
  2822. name: "Large",
  2823. height: math.unit(12, "feet")
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(100, "feet"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Macro+",
  2832. height: math.unit(260, "feet")
  2833. },
  2834. {
  2835. name: "Macro++",
  2836. height: math.unit(1, "mile")
  2837. },
  2838. ]
  2839. ))
  2840. characterMakers.push(() => makeCharacter(
  2841. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2842. {
  2843. front: {
  2844. height: math.unit(6, "feet"),
  2845. weight: math.unit(75, "kg"),
  2846. name: "Front",
  2847. image: {
  2848. source: "./media/characters/malik/front.svg"
  2849. }
  2850. },
  2851. side: {
  2852. height: math.unit(6, "feet"),
  2853. weight: math.unit(75, "kg"),
  2854. name: "Side",
  2855. image: {
  2856. source: "./media/characters/malik/side.svg",
  2857. extra: 1.1539
  2858. }
  2859. },
  2860. back: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(75, "kg"),
  2863. name: "Back",
  2864. image: {
  2865. source: "./media/characters/malik/back.svg"
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Macro",
  2872. height: math.unit(156, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Macro+",
  2877. height: math.unit(1188, "feet")
  2878. },
  2879. ]
  2880. ))
  2881. characterMakers.push(() => makeCharacter(
  2882. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2883. {
  2884. front: {
  2885. height: math.unit(6, "feet"),
  2886. weight: math.unit(75, "kg"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/sefer/front.svg",
  2890. extra: 848 / 659,
  2891. bottom: 28.3 / 876.442
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/sefer/back.svg",
  2900. extra: 864 / 695,
  2901. bottom: 10 / 871
  2902. }
  2903. },
  2904. frontDressed: {
  2905. height: math.unit(6, "feet"),
  2906. weight: math.unit(75, "kg"),
  2907. name: "Front (Dressed)",
  2908. image: {
  2909. source: "./media/characters/sefer/front-dressed.svg",
  2910. extra: 839 / 653,
  2911. bottom: 37.6 / 878
  2912. }
  2913. },
  2914. },
  2915. [
  2916. {
  2917. name: "Normal",
  2918. height: math.unit(6, "feet"),
  2919. default: true
  2920. },
  2921. ]
  2922. ))
  2923. characterMakers.push(() => makeCharacter(
  2924. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2925. {
  2926. body: {
  2927. height: math.unit(2.2428, "meter"),
  2928. weight: math.unit(124.738, "kg"),
  2929. name: "Body",
  2930. image: {
  2931. extra: 1225 / 1050,
  2932. source: "./media/characters/north/front.svg"
  2933. }
  2934. }
  2935. },
  2936. [
  2937. {
  2938. name: "Micro",
  2939. height: math.unit(4, "inches")
  2940. },
  2941. {
  2942. name: "Macro",
  2943. height: math.unit(63, "meters")
  2944. },
  2945. {
  2946. name: "Megamacro",
  2947. height: math.unit(101, "miles"),
  2948. default: true
  2949. }
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2954. {
  2955. angled: {
  2956. height: math.unit(4, "meter"),
  2957. weight: math.unit(150, "kg"),
  2958. name: "Angled",
  2959. image: {
  2960. source: "./media/characters/talan/angled-sfw.svg",
  2961. bottom: 29 / 3734
  2962. }
  2963. },
  2964. angledNsfw: {
  2965. height: math.unit(4, "meter"),
  2966. weight: math.unit(150, "kg"),
  2967. name: "Angled (NSFW)",
  2968. image: {
  2969. source: "./media/characters/talan/angled-nsfw.svg",
  2970. bottom: 29 / 3734
  2971. }
  2972. },
  2973. frontNsfw: {
  2974. height: math.unit(4, "meter"),
  2975. weight: math.unit(150, "kg"),
  2976. name: "Front (NSFW)",
  2977. image: {
  2978. source: "./media/characters/talan/front-nsfw.svg",
  2979. bottom: 29 / 3734
  2980. }
  2981. },
  2982. sideNsfw: {
  2983. height: math.unit(4, "meter"),
  2984. weight: math.unit(150, "kg"),
  2985. name: "Side (NSFW)",
  2986. image: {
  2987. source: "./media/characters/talan/side-nsfw.svg",
  2988. bottom: 29 / 3734
  2989. }
  2990. },
  2991. back: {
  2992. height: math.unit(4, "meter"),
  2993. weight: math.unit(150, "kg"),
  2994. name: "Back",
  2995. image: {
  2996. source: "./media/characters/talan/back.svg"
  2997. }
  2998. },
  2999. dickBottom: {
  3000. height: math.unit(0.621, "meter"),
  3001. name: "Dick (Bottom)",
  3002. image: {
  3003. source: "./media/characters/talan/dick-bottom.svg"
  3004. }
  3005. },
  3006. dickTop: {
  3007. height: math.unit(0.621, "meter"),
  3008. name: "Dick (Top)",
  3009. image: {
  3010. source: "./media/characters/talan/dick-top.svg"
  3011. }
  3012. },
  3013. dickSide: {
  3014. height: math.unit(0.305, "meter"),
  3015. name: "Dick (Side)",
  3016. image: {
  3017. source: "./media/characters/talan/dick-side.svg"
  3018. }
  3019. },
  3020. dickFront: {
  3021. height: math.unit(0.305, "meter"),
  3022. name: "Dick (Front)",
  3023. image: {
  3024. source: "./media/characters/talan/dick-front.svg"
  3025. }
  3026. },
  3027. },
  3028. [
  3029. {
  3030. name: "Normal",
  3031. height: math.unit(4, "meters")
  3032. },
  3033. {
  3034. name: "Macro",
  3035. height: math.unit(100, "meters")
  3036. },
  3037. {
  3038. name: "Megamacro",
  3039. height: math.unit(2, "miles"),
  3040. default: true
  3041. },
  3042. {
  3043. name: "Gigamacro",
  3044. height: math.unit(5000, "miles")
  3045. },
  3046. {
  3047. name: "Teramacro",
  3048. height: math.unit(100, "parsecs")
  3049. }
  3050. ]
  3051. ))
  3052. characterMakers.push(() => makeCharacter(
  3053. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3054. {
  3055. front: {
  3056. height: math.unit(2, "meter"),
  3057. weight: math.unit(90, "kg"),
  3058. name: "Front",
  3059. image: {
  3060. source: "./media/characters/gael'rathus/front.svg"
  3061. }
  3062. },
  3063. frontAlt: {
  3064. height: math.unit(2, "meter"),
  3065. weight: math.unit(90, "kg"),
  3066. name: "Front (alt)",
  3067. image: {
  3068. source: "./media/characters/gael'rathus/front-alt.svg"
  3069. }
  3070. },
  3071. frontAlt2: {
  3072. height: math.unit(2, "meter"),
  3073. weight: math.unit(90, "kg"),
  3074. name: "Front (alt 2)",
  3075. image: {
  3076. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3077. }
  3078. }
  3079. },
  3080. [
  3081. {
  3082. name: "Normal",
  3083. height: math.unit(9, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Large",
  3088. height: math.unit(25, "feet")
  3089. },
  3090. {
  3091. name: "Macro",
  3092. height: math.unit(0.25, "miles")
  3093. },
  3094. {
  3095. name: "Megamacro",
  3096. height: math.unit(10, "miles")
  3097. }
  3098. ]
  3099. ))
  3100. characterMakers.push(() => makeCharacter(
  3101. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3102. {
  3103. side: {
  3104. height: math.unit(2, "meter"),
  3105. weight: math.unit(140, "kg"),
  3106. name: "Side",
  3107. image: {
  3108. source: "./media/characters/sosha/side.svg",
  3109. bottom: 0.042
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(12, "feet"),
  3117. default: true
  3118. }
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3123. {
  3124. side: {
  3125. height: math.unit(5 + 5 / 12, "feet"),
  3126. weight: math.unit(170, "kg"),
  3127. name: "Side",
  3128. image: {
  3129. source: "./media/characters/runnola/side.svg",
  3130. extra: 741 / 448,
  3131. bottom: 0.05
  3132. }
  3133. },
  3134. },
  3135. [
  3136. {
  3137. name: "Small",
  3138. height: math.unit(3, "feet")
  3139. },
  3140. {
  3141. name: "Normal",
  3142. height: math.unit(5 + 5 / 12, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Big",
  3147. height: math.unit(10, "feet")
  3148. },
  3149. ]
  3150. ))
  3151. characterMakers.push(() => makeCharacter(
  3152. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3153. {
  3154. front: {
  3155. height: math.unit(2, "meter"),
  3156. weight: math.unit(50, "kg"),
  3157. name: "Front",
  3158. image: {
  3159. source: "./media/characters/kurribird/front.svg",
  3160. bottom: 0.015
  3161. }
  3162. },
  3163. frontAlt: {
  3164. height: math.unit(1.5, "meter"),
  3165. weight: math.unit(50, "kg"),
  3166. name: "Front (Alt)",
  3167. image: {
  3168. source: "./media/characters/kurribird/front-alt.svg",
  3169. extra: 1.45
  3170. }
  3171. },
  3172. },
  3173. [
  3174. {
  3175. name: "Normal",
  3176. height: math.unit(7, "feet")
  3177. },
  3178. {
  3179. name: "Big",
  3180. height: math.unit(12, "feet"),
  3181. default: true
  3182. },
  3183. {
  3184. name: "Macro",
  3185. height: math.unit(1500, "feet")
  3186. },
  3187. {
  3188. name: "Megamacro",
  3189. height: math.unit(2, "miles")
  3190. }
  3191. ]
  3192. ))
  3193. characterMakers.push(() => makeCharacter(
  3194. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3195. {
  3196. front: {
  3197. height: math.unit(2, "meter"),
  3198. weight: math.unit(80, "kg"),
  3199. name: "Front",
  3200. image: {
  3201. source: "./media/characters/elbial/front.svg",
  3202. extra: 1643 / 1556,
  3203. bottom: 60.2 / 1696
  3204. }
  3205. },
  3206. side: {
  3207. height: math.unit(2, "meter"),
  3208. weight: math.unit(80, "kg"),
  3209. name: "Side",
  3210. image: {
  3211. source: "./media/characters/elbial/side.svg",
  3212. extra: 1630 / 1565,
  3213. bottom: 71.5 / 1697
  3214. }
  3215. },
  3216. back: {
  3217. height: math.unit(2, "meter"),
  3218. weight: math.unit(80, "kg"),
  3219. name: "Back",
  3220. image: {
  3221. source: "./media/characters/elbial/back.svg",
  3222. extra: 1668 / 1595,
  3223. bottom: 5.6 / 1672
  3224. }
  3225. },
  3226. frontDressed: {
  3227. height: math.unit(2, "meter"),
  3228. weight: math.unit(80, "kg"),
  3229. name: "Front (Dressed)",
  3230. image: {
  3231. source: "./media/characters/elbial/front-dressed.svg",
  3232. extra: 1653 / 1584,
  3233. bottom: 57 / 1708
  3234. }
  3235. },
  3236. genitals: {
  3237. height: math.unit(2 / 3.367, "meter"),
  3238. name: "Genitals",
  3239. image: {
  3240. source: "./media/characters/elbial/genitals.svg"
  3241. }
  3242. },
  3243. },
  3244. [
  3245. {
  3246. name: "Large",
  3247. height: math.unit(100, "feet")
  3248. },
  3249. {
  3250. name: "Macro",
  3251. height: math.unit(500, "feet"),
  3252. default: true
  3253. },
  3254. {
  3255. name: "Megamacro",
  3256. height: math.unit(10, "miles")
  3257. },
  3258. {
  3259. name: "Gigamacro",
  3260. height: math.unit(25000, "miles")
  3261. },
  3262. {
  3263. name: "Full-Size",
  3264. height: math.unit(8000000, "gigaparsecs")
  3265. }
  3266. ]
  3267. ))
  3268. characterMakers.push(() => makeCharacter(
  3269. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3270. {
  3271. front: {
  3272. height: math.unit(2, "meter"),
  3273. weight: math.unit(60, "kg"),
  3274. name: "Front",
  3275. image: {
  3276. source: "./media/characters/noah/front.svg"
  3277. }
  3278. },
  3279. talons: {
  3280. height: math.unit(0.315, "meter"),
  3281. name: "Talons",
  3282. image: {
  3283. source: "./media/characters/noah/talons.svg"
  3284. }
  3285. }
  3286. },
  3287. [
  3288. {
  3289. name: "Large",
  3290. height: math.unit(50, "feet")
  3291. },
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(750, "feet"),
  3295. default: true
  3296. },
  3297. {
  3298. name: "Megamacro",
  3299. height: math.unit(50, "miles")
  3300. },
  3301. {
  3302. name: "Gigamacro",
  3303. height: math.unit(100000, "miles")
  3304. },
  3305. {
  3306. name: "Full-Size",
  3307. height: math.unit(3000000000, "miles")
  3308. }
  3309. ]
  3310. ))
  3311. characterMakers.push(() => makeCharacter(
  3312. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3313. {
  3314. front: {
  3315. height: math.unit(2, "meter"),
  3316. weight: math.unit(80, "kg"),
  3317. name: "Front",
  3318. image: {
  3319. source: "./media/characters/natalya/front.svg"
  3320. }
  3321. },
  3322. back: {
  3323. height: math.unit(2, "meter"),
  3324. weight: math.unit(80, "kg"),
  3325. name: "Back",
  3326. image: {
  3327. source: "./media/characters/natalya/back.svg"
  3328. }
  3329. }
  3330. },
  3331. [
  3332. {
  3333. name: "Normal",
  3334. height: math.unit(150, "feet"),
  3335. default: true
  3336. },
  3337. {
  3338. name: "Megamacro",
  3339. height: math.unit(5, "miles")
  3340. },
  3341. {
  3342. name: "Full-Size",
  3343. height: math.unit(600, "kiloparsecs")
  3344. }
  3345. ]
  3346. ))
  3347. characterMakers.push(() => makeCharacter(
  3348. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3349. {
  3350. front: {
  3351. height: math.unit(2, "meter"),
  3352. weight: math.unit(50, "kg"),
  3353. name: "Front",
  3354. image: {
  3355. source: "./media/characters/erestrebah/front.svg",
  3356. extra: 208 / 193,
  3357. bottom: 0.055
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(50, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/erestrebah/back.svg",
  3366. extra: 1.3
  3367. }
  3368. }
  3369. },
  3370. [
  3371. {
  3372. name: "Normal",
  3373. height: math.unit(10, "feet")
  3374. },
  3375. {
  3376. name: "Large",
  3377. height: math.unit(50, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(300, "feet")
  3383. },
  3384. {
  3385. name: "Macro+",
  3386. height: math.unit(750, "feet")
  3387. },
  3388. {
  3389. name: "Megamacro",
  3390. height: math.unit(3, "miles")
  3391. }
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3396. {
  3397. front: {
  3398. height: math.unit(2, "meter"),
  3399. weight: math.unit(80, "kg"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/jennifer/front.svg",
  3403. bottom: 0.11,
  3404. extra: 1.16
  3405. }
  3406. },
  3407. frontAlt: {
  3408. height: math.unit(2, "meter"),
  3409. weight: math.unit(80, "kg"),
  3410. name: "Front (Alt)",
  3411. image: {
  3412. source: "./media/characters/jennifer/front-alt.svg"
  3413. }
  3414. }
  3415. },
  3416. [
  3417. {
  3418. name: "Canon Height",
  3419. height: math.unit(120, "feet"),
  3420. default: true
  3421. },
  3422. {
  3423. name: "Macro+",
  3424. height: math.unit(300, "feet")
  3425. },
  3426. {
  3427. name: "Megamacro",
  3428. height: math.unit(20000, "feet")
  3429. }
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(50, "kg"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/kalista/front.svg",
  3441. extra: 1947 / 1700,
  3442. bottom: 76.6 / 1412.98
  3443. }
  3444. },
  3445. back: {
  3446. height: math.unit(2, "meter"),
  3447. weight: math.unit(50, "kg"),
  3448. name: "Back",
  3449. image: {
  3450. source: "./media/characters/kalista/back.svg",
  3451. extra: 1366 / 1156,
  3452. bottom: 33.9 / 1362.78
  3453. }
  3454. }
  3455. },
  3456. [
  3457. {
  3458. name: "Uncomfortably Small",
  3459. height: math.unit(10, "feet")
  3460. },
  3461. {
  3462. name: "Small",
  3463. height: math.unit(30, "feet")
  3464. },
  3465. {
  3466. name: "Macro",
  3467. height: math.unit(100, "feet"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Macro+",
  3472. height: math.unit(2000, "feet")
  3473. },
  3474. {
  3475. name: "True Form",
  3476. height: math.unit(8924, "miles")
  3477. }
  3478. ]
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3482. {
  3483. front: {
  3484. height: math.unit(2, "meter"),
  3485. weight: math.unit(120, "kg"),
  3486. name: "Front",
  3487. image: {
  3488. source: "./media/characters/ggv/front.svg"
  3489. }
  3490. },
  3491. side: {
  3492. height: math.unit(2, "meter"),
  3493. weight: math.unit(120, "kg"),
  3494. name: "Side",
  3495. image: {
  3496. source: "./media/characters/ggv/side.svg"
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Extremely Puny",
  3503. height: math.unit(9 + 5 / 12, "feet")
  3504. },
  3505. {
  3506. name: "Horribly Small",
  3507. height: math.unit(47.7, "miles"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Reasonably Sized",
  3512. height: math.unit(25000, "parsecs")
  3513. },
  3514. {
  3515. name: "Slightly Uncompressed",
  3516. height: math.unit(7.77e31, "parsecs")
  3517. },
  3518. {
  3519. name: "Omniversal",
  3520. height: math.unit(1e300, "meters")
  3521. },
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(75, "lb"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/napalm/front.svg"
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(75, "lb"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/napalm/back.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Standard",
  3547. height: math.unit(55, "feet"),
  3548. default: true
  3549. }
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3554. {
  3555. front: {
  3556. height: math.unit(7 + 5 / 6, "feet"),
  3557. weight: math.unit(325, "lb"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/asana/front.svg",
  3561. extra: 1133 / 1060,
  3562. bottom: 15.2 / 1148.6
  3563. }
  3564. },
  3565. back: {
  3566. height: math.unit(7 + 5 / 6, "feet"),
  3567. weight: math.unit(325, "lb"),
  3568. name: "Back",
  3569. image: {
  3570. source: "./media/characters/asana/back.svg",
  3571. extra: 1114 / 1043,
  3572. bottom: 5 / 1120
  3573. }
  3574. },
  3575. dressedDark: {
  3576. height: math.unit(7 + 5 / 6, "feet"),
  3577. weight: math.unit(325, "lb"),
  3578. name: "Dressed (Dark)",
  3579. image: {
  3580. source: "./media/characters/asana/dressed-dark.svg",
  3581. extra: 1133 / 1060,
  3582. bottom: 15.2 / 1148.6
  3583. }
  3584. },
  3585. dressedLight: {
  3586. height: math.unit(7 + 5 / 6, "feet"),
  3587. weight: math.unit(325, "lb"),
  3588. name: "Dressed (Light)",
  3589. image: {
  3590. source: "./media/characters/asana/dressed-light.svg",
  3591. extra: 1133 / 1060,
  3592. bottom: 15.2 / 1148.6
  3593. }
  3594. },
  3595. },
  3596. [
  3597. {
  3598. name: "Standard",
  3599. height: math.unit(7 + 5 / 6, "feet"),
  3600. default: true
  3601. },
  3602. {
  3603. name: "Large",
  3604. height: math.unit(10, "meters")
  3605. },
  3606. {
  3607. name: "Macro",
  3608. height: math.unit(2500, "meters")
  3609. },
  3610. {
  3611. name: "Megamacro",
  3612. height: math.unit(5e6, "meters")
  3613. },
  3614. {
  3615. name: "Examacro",
  3616. height: math.unit(5e12, "lightyears")
  3617. },
  3618. {
  3619. name: "Max Size",
  3620. height: math.unit(1e31, "lightyears")
  3621. }
  3622. ]
  3623. ))
  3624. characterMakers.push(() => makeCharacter(
  3625. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3626. {
  3627. front: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(60, "kg"),
  3630. name: "Front",
  3631. image: {
  3632. source: "./media/characters/ebony/front.svg",
  3633. bottom: 0.03,
  3634. extra: 1045 / 810 + 0.03
  3635. }
  3636. },
  3637. side: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(60, "kg"),
  3640. name: "Side",
  3641. image: {
  3642. source: "./media/characters/ebony/side.svg",
  3643. bottom: 0.03,
  3644. extra: 1045 / 810 + 0.03
  3645. }
  3646. },
  3647. back: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(60, "kg"),
  3650. name: "Back",
  3651. image: {
  3652. source: "./media/characters/ebony/back.svg",
  3653. bottom: 0.01,
  3654. extra: 1045 / 810 + 0.01
  3655. }
  3656. },
  3657. },
  3658. [
  3659. // TODO check why I did this lol
  3660. {
  3661. name: "Standard",
  3662. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3663. default: true
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(200, "feet")
  3668. },
  3669. {
  3670. name: "Gigamacro",
  3671. height: math.unit(13000, "km")
  3672. }
  3673. ]
  3674. ))
  3675. characterMakers.push(() => makeCharacter(
  3676. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3677. {
  3678. front: {
  3679. height: math.unit(6, "feet"),
  3680. weight: math.unit(175, "lb"),
  3681. name: "Front",
  3682. image: {
  3683. source: "./media/characters/mountain/front.svg",
  3684. extra: 972 / 955,
  3685. bottom: 64 / 1036.6
  3686. }
  3687. },
  3688. back: {
  3689. height: math.unit(6, "feet"),
  3690. weight: math.unit(175, "lb"),
  3691. name: "Back",
  3692. image: {
  3693. source: "./media/characters/mountain/back.svg",
  3694. extra: 970 / 950,
  3695. bottom: 28.25 / 999
  3696. }
  3697. },
  3698. },
  3699. [
  3700. {
  3701. name: "Large",
  3702. height: math.unit(20, "meters")
  3703. },
  3704. {
  3705. name: "Macro",
  3706. height: math.unit(300, "meters")
  3707. },
  3708. {
  3709. name: "Gigamacro",
  3710. height: math.unit(10000, "km"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Examacro",
  3715. height: math.unit(10e9, "lightyears")
  3716. }
  3717. ]
  3718. ))
  3719. characterMakers.push(() => makeCharacter(
  3720. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3721. {
  3722. front: {
  3723. height: math.unit(8, "feet"),
  3724. weight: math.unit(500, "lb"),
  3725. name: "Front",
  3726. image: {
  3727. source: "./media/characters/rick/front.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Normal",
  3734. height: math.unit(8, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro",
  3739. height: math.unit(5, "km")
  3740. }
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3745. {
  3746. front: {
  3747. height: math.unit(8, "feet"),
  3748. weight: math.unit(120, "lb"),
  3749. name: "Front",
  3750. image: {
  3751. source: "./media/characters/ona/front.svg"
  3752. }
  3753. },
  3754. frontAlt: {
  3755. height: math.unit(8, "feet"),
  3756. weight: math.unit(120, "lb"),
  3757. name: "Front (Alt)",
  3758. image: {
  3759. source: "./media/characters/ona/front-alt.svg"
  3760. }
  3761. },
  3762. back: {
  3763. height: math.unit(8, "feet"),
  3764. weight: math.unit(120, "lb"),
  3765. name: "Back",
  3766. image: {
  3767. source: "./media/characters/ona/back.svg"
  3768. }
  3769. },
  3770. foot: {
  3771. height: math.unit(1.1, "feet"),
  3772. name: "Foot",
  3773. image: {
  3774. source: "./media/characters/ona/foot.svg"
  3775. }
  3776. }
  3777. },
  3778. [
  3779. {
  3780. name: "Megamacro",
  3781. height: math.unit(70, "km"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Gigamacro",
  3786. height: math.unit(681818, "miles")
  3787. },
  3788. {
  3789. name: "Examacro",
  3790. height: math.unit(3800000, "lightyears")
  3791. },
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3796. {
  3797. front: {
  3798. height: math.unit(12, "feet"),
  3799. weight: math.unit(3000, "lb"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/mech/front.svg",
  3803. extra: 2900 / 2770,
  3804. bottom: 110 / 3010
  3805. }
  3806. },
  3807. back: {
  3808. height: math.unit(12, "feet"),
  3809. weight: math.unit(3000, "lb"),
  3810. name: "Back",
  3811. image: {
  3812. source: "./media/characters/mech/back.svg",
  3813. extra: 3011 / 2890,
  3814. bottom: 94 / 3105
  3815. }
  3816. },
  3817. maw: {
  3818. height: math.unit(3.07, "feet"),
  3819. name: "Maw",
  3820. image: {
  3821. source: "./media/characters/mech/maw.svg"
  3822. }
  3823. },
  3824. head: {
  3825. height: math.unit(2.82, "feet"),
  3826. name: "Head",
  3827. image: {
  3828. source: "./media/characters/mech/head.svg"
  3829. }
  3830. },
  3831. dick: {
  3832. height: math.unit(1.43, "feet"),
  3833. name: "Dick",
  3834. image: {
  3835. source: "./media/characters/mech/dick.svg"
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Normal",
  3842. height: math.unit(12, "feet")
  3843. },
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(300, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Macro+",
  3851. height: math.unit(1500, "feet")
  3852. },
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(1.3, "meter"),
  3860. weight: math.unit(30, "kg"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/gregory/front.svg",
  3864. }
  3865. }
  3866. },
  3867. [
  3868. {
  3869. name: "Normal",
  3870. height: math.unit(1.3, "meter"),
  3871. default: true
  3872. },
  3873. {
  3874. name: "Macro",
  3875. height: math.unit(20, "meter")
  3876. }
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(2.8, "meter"),
  3884. weight: math.unit(200, "kg"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/elory/front.svg",
  3888. }
  3889. }
  3890. },
  3891. [
  3892. {
  3893. name: "Normal",
  3894. height: math.unit(2.8, "meter"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Macro",
  3899. height: math.unit(38, "meter")
  3900. }
  3901. ]
  3902. ))
  3903. characterMakers.push(() => makeCharacter(
  3904. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3905. {
  3906. front: {
  3907. height: math.unit(470, "feet"),
  3908. weight: math.unit(924, "tons"),
  3909. name: "Front",
  3910. image: {
  3911. source: "./media/characters/angelpatamon/front.svg",
  3912. }
  3913. }
  3914. },
  3915. [
  3916. {
  3917. name: "Normal",
  3918. height: math.unit(470, "feet"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Deity Size I",
  3923. height: math.unit(28651.2, "km")
  3924. },
  3925. {
  3926. name: "Deity Size II",
  3927. height: math.unit(171907.2, "km")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3933. {
  3934. side: {
  3935. height: math.unit(7.2, "meter"),
  3936. weight: math.unit(8.2, "tons"),
  3937. name: "Side",
  3938. image: {
  3939. source: "./media/characters/cryae/side.svg",
  3940. extra: 3500 / 1500
  3941. }
  3942. }
  3943. },
  3944. [
  3945. {
  3946. name: "Normal",
  3947. height: math.unit(7.2, "meter"),
  3948. default: true
  3949. }
  3950. ]
  3951. ))
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(175, "lb"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/xera/front.svg",
  3961. extra: 2377 / 1972,
  3962. bottom: 75.5 / 2452
  3963. }
  3964. },
  3965. side: {
  3966. height: math.unit(6, "feet"),
  3967. weight: math.unit(175, "lb"),
  3968. name: "Side",
  3969. image: {
  3970. source: "./media/characters/xera/side.svg",
  3971. extra: 2345 / 2019,
  3972. bottom: 39.7 / 2384
  3973. }
  3974. },
  3975. back: {
  3976. height: math.unit(6, "feet"),
  3977. weight: math.unit(175, "lb"),
  3978. name: "Back",
  3979. image: {
  3980. source: "./media/characters/xera/back.svg",
  3981. extra: 2095 / 1984,
  3982. bottom: 67 / 2166
  3983. }
  3984. },
  3985. },
  3986. [
  3987. {
  3988. name: "Small",
  3989. height: math.unit(10, "feet")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(500, "meters"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Macro+",
  3998. height: math.unit(10, "km")
  3999. },
  4000. {
  4001. name: "Gigamacro",
  4002. height: math.unit(25000, "km")
  4003. },
  4004. {
  4005. name: "Teramacro",
  4006. height: math.unit(3e6, "km")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(6, "feet"),
  4015. weight: math.unit(175, "lb"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/nebula/front.svg",
  4019. extra: 2566 / 2362,
  4020. bottom: 81 / 2644
  4021. }
  4022. }
  4023. },
  4024. [
  4025. {
  4026. name: "Small",
  4027. height: math.unit(4.5, "meters")
  4028. },
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(1500, "meters"),
  4032. default: true
  4033. },
  4034. {
  4035. name: "Megamacro",
  4036. height: math.unit(150, "km")
  4037. },
  4038. {
  4039. name: "Gigamacro",
  4040. height: math.unit(27000, "km")
  4041. }
  4042. ]
  4043. ))
  4044. characterMakers.push(() => makeCharacter(
  4045. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4046. {
  4047. front: {
  4048. height: math.unit(6, "feet"),
  4049. weight: math.unit(225, "lb"),
  4050. name: "Front",
  4051. image: {
  4052. source: "./media/characters/abysgar/front.svg"
  4053. }
  4054. }
  4055. },
  4056. [
  4057. {
  4058. name: "Small",
  4059. height: math.unit(4.5, "meters")
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(1250, "meters"),
  4064. default: true
  4065. },
  4066. {
  4067. name: "Megamacro",
  4068. height: math.unit(125, "km")
  4069. },
  4070. {
  4071. name: "Gigamacro",
  4072. height: math.unit(26000, "km")
  4073. }
  4074. ]
  4075. ))
  4076. characterMakers.push(() => makeCharacter(
  4077. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4078. {
  4079. front: {
  4080. height: math.unit(6, "feet"),
  4081. weight: math.unit(180, "lb"),
  4082. name: "Front",
  4083. image: {
  4084. source: "./media/characters/yakuz/front.svg"
  4085. }
  4086. }
  4087. },
  4088. [
  4089. {
  4090. name: "Small",
  4091. height: math.unit(5, "meters")
  4092. },
  4093. {
  4094. name: "Macro",
  4095. height: math.unit(1500, "meters"),
  4096. default: true
  4097. },
  4098. {
  4099. name: "Megamacro",
  4100. height: math.unit(200, "km")
  4101. },
  4102. {
  4103. name: "Gigamacro",
  4104. height: math.unit(100000, "km")
  4105. }
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(175, "lb"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/mirova/front.svg",
  4117. extra: 3334 / 3071,
  4118. bottom: 42 / 3375.6
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Small",
  4125. height: math.unit(5, "meters")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(900, "meters"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Megamacro",
  4134. height: math.unit(135, "km")
  4135. },
  4136. {
  4137. name: "Gigamacro",
  4138. height: math.unit(20000, "km")
  4139. }
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4144. {
  4145. side: {
  4146. height: math.unit(28.35, "feet"),
  4147. weight: math.unit(99.75, "tons"),
  4148. name: "Side",
  4149. image: {
  4150. source: "./media/characters/asana-mech/side.svg",
  4151. extra: 923 / 699,
  4152. bottom: 50 / 975
  4153. }
  4154. },
  4155. chaingun: {
  4156. height: math.unit(7, "feet"),
  4157. weight: math.unit(2400, "lb"),
  4158. name: "Chaingun",
  4159. image: {
  4160. source: "./media/characters/asana-mech/chaingun.svg"
  4161. }
  4162. },
  4163. laser: {
  4164. height: math.unit(7.12, "feet"),
  4165. weight: math.unit(2000, "lb"),
  4166. name: "Laser",
  4167. image: {
  4168. source: "./media/characters/asana-mech/laser.svg"
  4169. }
  4170. },
  4171. },
  4172. [
  4173. {
  4174. name: "Normal",
  4175. height: math.unit(28.35, "feet"),
  4176. default: true
  4177. },
  4178. {
  4179. name: "Macro",
  4180. height: math.unit(2500, "feet")
  4181. },
  4182. {
  4183. name: "Megamacro",
  4184. height: math.unit(25, "miles")
  4185. },
  4186. {
  4187. name: "Examacro",
  4188. height: math.unit(6e8, "lightyears")
  4189. },
  4190. ]
  4191. ))
  4192. characterMakers.push(() => makeCharacter(
  4193. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4194. {
  4195. front: {
  4196. height: math.unit(5, "meters"),
  4197. weight: math.unit(1000, "kg"),
  4198. name: "Front",
  4199. image: {
  4200. source: "./media/characters/asche/front.svg",
  4201. extra: 1258 / 1190,
  4202. bottom: 47 / 1305
  4203. }
  4204. },
  4205. frontUnderwear: {
  4206. height: math.unit(5, "meters"),
  4207. weight: math.unit(1000, "kg"),
  4208. name: "Front (Underwear)",
  4209. image: {
  4210. source: "./media/characters/asche/front-underwear.svg",
  4211. extra: 1258 / 1190,
  4212. bottom: 47 / 1305
  4213. }
  4214. },
  4215. frontDressed: {
  4216. height: math.unit(5, "meters"),
  4217. weight: math.unit(1000, "kg"),
  4218. name: "Front (Dressed)",
  4219. image: {
  4220. source: "./media/characters/asche/front-dressed.svg",
  4221. extra: 1258 / 1190,
  4222. bottom: 47 / 1305
  4223. }
  4224. },
  4225. frontArmor: {
  4226. height: math.unit(5, "meters"),
  4227. weight: math.unit(1000, "kg"),
  4228. name: "Front (Armored)",
  4229. image: {
  4230. source: "./media/characters/asche/front-armored.svg",
  4231. extra: 1374 / 1308,
  4232. bottom: 23 / 1397
  4233. }
  4234. },
  4235. mp724: {
  4236. height: math.unit(0.96, "meters"),
  4237. weight: math.unit(38, "kg"),
  4238. name: "H&K MP724",
  4239. image: {
  4240. source: "./media/characters/asche/h&k-mp724.svg"
  4241. }
  4242. },
  4243. side: {
  4244. height: math.unit(5, "meters"),
  4245. weight: math.unit(1000, "kg"),
  4246. name: "Side",
  4247. image: {
  4248. source: "./media/characters/asche/side.svg",
  4249. extra: 1717 / 1609,
  4250. bottom: 0.005
  4251. }
  4252. },
  4253. back: {
  4254. height: math.unit(5, "meters"),
  4255. weight: math.unit(1000, "kg"),
  4256. name: "Back",
  4257. image: {
  4258. source: "./media/characters/asche/back.svg",
  4259. extra: 1570 / 1501
  4260. }
  4261. },
  4262. },
  4263. [
  4264. {
  4265. name: "DEFCON 5",
  4266. height: math.unit(5, "meters")
  4267. },
  4268. {
  4269. name: "DEFCON 4",
  4270. height: math.unit(500, "meters"),
  4271. default: true
  4272. },
  4273. {
  4274. name: "DEFCON 3",
  4275. height: math.unit(5, "km")
  4276. },
  4277. {
  4278. name: "DEFCON 2",
  4279. height: math.unit(500, "km")
  4280. },
  4281. {
  4282. name: "DEFCON 1",
  4283. height: math.unit(500000, "km")
  4284. },
  4285. {
  4286. name: "DEFCON 0",
  4287. height: math.unit(3, "gigaparsecs")
  4288. },
  4289. ]
  4290. ))
  4291. characterMakers.push(() => makeCharacter(
  4292. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4293. {
  4294. front: {
  4295. height: math.unit(2, "meters"),
  4296. weight: math.unit(76, "kg"),
  4297. name: "Front",
  4298. image: {
  4299. source: "./media/characters/gale/front.svg"
  4300. }
  4301. },
  4302. frontAlt1: {
  4303. height: math.unit(2, "meters"),
  4304. weight: math.unit(76, "kg"),
  4305. name: "Front (Alt 1)",
  4306. image: {
  4307. source: "./media/characters/gale/front-alt-1.svg"
  4308. }
  4309. },
  4310. frontAlt2: {
  4311. height: math.unit(2, "meters"),
  4312. weight: math.unit(76, "kg"),
  4313. name: "Front (Alt 2)",
  4314. image: {
  4315. source: "./media/characters/gale/front-alt-2.svg"
  4316. }
  4317. },
  4318. },
  4319. [
  4320. {
  4321. name: "Normal",
  4322. height: math.unit(7, "feet")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(150, "feet"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Macro+",
  4331. height: math.unit(300, "feet")
  4332. },
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(2, "meters"),
  4340. weight: math.unit(76, "kg"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/draylen/front.svg"
  4344. }
  4345. }
  4346. },
  4347. [
  4348. {
  4349. name: "Macro",
  4350. height: math.unit(150, "feet"),
  4351. default: true
  4352. }
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4357. {
  4358. front: {
  4359. height: math.unit(7 + 9 / 12, "feet"),
  4360. weight: math.unit(379, "lbs"),
  4361. name: "Front",
  4362. image: {
  4363. source: "./media/characters/chez/front.svg"
  4364. }
  4365. },
  4366. side: {
  4367. height: math.unit(7 + 9 / 12, "feet"),
  4368. weight: math.unit(379, "lbs"),
  4369. name: "Side",
  4370. image: {
  4371. source: "./media/characters/chez/side.svg"
  4372. }
  4373. }
  4374. },
  4375. [
  4376. {
  4377. name: "Normal",
  4378. height: math.unit(7 + 9 / 12, "feet"),
  4379. default: true
  4380. },
  4381. {
  4382. name: "God King",
  4383. height: math.unit(9750000, "meters")
  4384. }
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4389. {
  4390. front: {
  4391. height: math.unit(6, "feet"),
  4392. weight: math.unit(275, "lbs"),
  4393. name: "Front",
  4394. image: {
  4395. source: "./media/characters/kaylum/front.svg",
  4396. bottom: 0.01,
  4397. extra: 1166 / 1031
  4398. }
  4399. },
  4400. frontWingless: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(275, "lbs"),
  4403. name: "Front (Wingless)",
  4404. image: {
  4405. source: "./media/characters/kaylum/front-wingless.svg",
  4406. bottom: 0.01,
  4407. extra: 1117 / 1031
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Normal",
  4414. height: math.unit(3.05, "meters")
  4415. },
  4416. {
  4417. name: "Master",
  4418. height: math.unit(5.5, "meters")
  4419. },
  4420. {
  4421. name: "Rampage",
  4422. height: math.unit(19, "meters")
  4423. },
  4424. {
  4425. name: "Macro Lite",
  4426. height: math.unit(37, "meters")
  4427. },
  4428. {
  4429. name: "Hyper Predator",
  4430. height: math.unit(61, "meters")
  4431. },
  4432. {
  4433. name: "Macro",
  4434. height: math.unit(138, "meters"),
  4435. default: true
  4436. }
  4437. ]
  4438. ))
  4439. characterMakers.push(() => makeCharacter(
  4440. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4441. {
  4442. front: {
  4443. height: math.unit(6, "feet"),
  4444. weight: math.unit(150, "lbs"),
  4445. name: "Front",
  4446. image: {
  4447. source: "./media/characters/geta/front.svg"
  4448. }
  4449. }
  4450. },
  4451. [
  4452. {
  4453. name: "Micro",
  4454. height: math.unit(3, "inches"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Normal",
  4459. height: math.unit(5 + 5 / 12, "feet")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(300, "lbs"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/tyrnn/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Main Height",
  4478. height: math.unit(355, "feet"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Fave. Height",
  4483. height: math.unit(2400, "feet")
  4484. }
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(6, "feet"),
  4492. weight: math.unit(300, "lbs"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/appledectomy/front.svg"
  4496. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Macro",
  4502. height: math.unit(2500, "feet")
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(50, "miles"),
  4507. default: true
  4508. },
  4509. {
  4510. name: "Gigamacro",
  4511. height: math.unit(5000, "miles")
  4512. },
  4513. {
  4514. name: "Teramacro",
  4515. height: math.unit(250000, "miles")
  4516. },
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4521. {
  4522. front: {
  4523. height: math.unit(6, "feet"),
  4524. weight: math.unit(200, "lbs"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/vulpes/front.svg",
  4528. extra: 573 / 543,
  4529. bottom: 0.033
  4530. }
  4531. },
  4532. side: {
  4533. height: math.unit(6, "feet"),
  4534. weight: math.unit(200, "lbs"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/vulpes/side.svg",
  4538. extra: 577 / 549,
  4539. bottom: 11 / 588
  4540. }
  4541. },
  4542. back: {
  4543. height: math.unit(6, "feet"),
  4544. weight: math.unit(200, "lbs"),
  4545. name: "Back",
  4546. image: {
  4547. source: "./media/characters/vulpes/back.svg",
  4548. extra: 573 / 549,
  4549. bottom: 20 / 593
  4550. }
  4551. },
  4552. feet: {
  4553. height: math.unit(1.276, "feet"),
  4554. name: "Feet",
  4555. image: {
  4556. source: "./media/characters/vulpes/feet.svg"
  4557. }
  4558. },
  4559. maw: {
  4560. height: math.unit(1.18, "feet"),
  4561. name: "Maw",
  4562. image: {
  4563. source: "./media/characters/vulpes/maw.svg"
  4564. }
  4565. },
  4566. },
  4567. [
  4568. {
  4569. name: "Micro",
  4570. height: math.unit(2, "inches")
  4571. },
  4572. {
  4573. name: "Normal",
  4574. height: math.unit(6.3, "feet")
  4575. },
  4576. {
  4577. name: "Macro",
  4578. height: math.unit(850, "feet")
  4579. },
  4580. {
  4581. name: "Megamacro",
  4582. height: math.unit(7500, "feet"),
  4583. default: true
  4584. },
  4585. {
  4586. name: "Gigamacro",
  4587. height: math.unit(570000, "miles")
  4588. }
  4589. ]
  4590. ))
  4591. characterMakers.push(() => makeCharacter(
  4592. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4593. {
  4594. front: {
  4595. height: math.unit(6, "feet"),
  4596. weight: math.unit(210, "lbs"),
  4597. name: "Front",
  4598. image: {
  4599. source: "./media/characters/rain-fallen/front.svg"
  4600. }
  4601. },
  4602. side: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(210, "lbs"),
  4605. name: "Side",
  4606. image: {
  4607. source: "./media/characters/rain-fallen/side.svg"
  4608. }
  4609. },
  4610. back: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(210, "lbs"),
  4613. name: "Back",
  4614. image: {
  4615. source: "./media/characters/rain-fallen/back.svg"
  4616. }
  4617. },
  4618. feral: {
  4619. height: math.unit(9, "feet"),
  4620. weight: math.unit(700, "lbs"),
  4621. name: "Feral",
  4622. image: {
  4623. source: "./media/characters/rain-fallen/feral.svg"
  4624. }
  4625. },
  4626. },
  4627. [
  4628. {
  4629. name: "Meddling with Mortals",
  4630. height: math.unit(8 + 8/12, "feet")
  4631. },
  4632. {
  4633. name: "Normal",
  4634. height: math.unit(5, "meter")
  4635. },
  4636. {
  4637. name: "Macro",
  4638. height: math.unit(150, "meter"),
  4639. default: true
  4640. },
  4641. {
  4642. name: "Megamacro",
  4643. height: math.unit(278e6, "meter")
  4644. },
  4645. {
  4646. name: "Gigamacro",
  4647. height: math.unit(2e9, "meter")
  4648. },
  4649. {
  4650. name: "Teramacro",
  4651. height: math.unit(8e12, "meter")
  4652. },
  4653. {
  4654. name: "Devourer",
  4655. height: math.unit(14, "zettameters")
  4656. },
  4657. {
  4658. name: "Scarlet King",
  4659. height: math.unit(18, "yottameters")
  4660. },
  4661. {
  4662. name: "Void",
  4663. height: math.unit(1e88, "yottameters")
  4664. }
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4669. {
  4670. standing: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(180, "lbs"),
  4673. name: "Standing",
  4674. image: {
  4675. source: "./media/characters/zaakira/standing.svg",
  4676. extra: 1599/1504,
  4677. bottom: 39/1638
  4678. }
  4679. },
  4680. laying: {
  4681. height: math.unit(3, "feet"),
  4682. weight: math.unit(180, "lbs"),
  4683. name: "Laying",
  4684. image: {
  4685. source: "./media/characters/zaakira/laying.svg"
  4686. }
  4687. },
  4688. },
  4689. [
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(12, "feet")
  4693. },
  4694. {
  4695. name: "Macro",
  4696. height: math.unit(279, "feet"),
  4697. default: true
  4698. }
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4703. {
  4704. femSfw: {
  4705. height: math.unit(8, "feet"),
  4706. weight: math.unit(350, "lb"),
  4707. name: "Fem",
  4708. image: {
  4709. source: "./media/characters/sigvald/fem-sfw.svg",
  4710. extra: 182 / 164,
  4711. bottom: 8.7 / 190.5
  4712. }
  4713. },
  4714. femNsfw: {
  4715. height: math.unit(8, "feet"),
  4716. weight: math.unit(350, "lb"),
  4717. name: "Fem (NSFW)",
  4718. image: {
  4719. source: "./media/characters/sigvald/fem-nsfw.svg",
  4720. extra: 182 / 164,
  4721. bottom: 8.7 / 190.5
  4722. }
  4723. },
  4724. maleNsfw: {
  4725. height: math.unit(8, "feet"),
  4726. weight: math.unit(350, "lb"),
  4727. name: "Male (NSFW)",
  4728. image: {
  4729. source: "./media/characters/sigvald/male-nsfw.svg",
  4730. extra: 182 / 164,
  4731. bottom: 8.7 / 190.5
  4732. }
  4733. },
  4734. hermNsfw: {
  4735. height: math.unit(8, "feet"),
  4736. weight: math.unit(350, "lb"),
  4737. name: "Herm (NSFW)",
  4738. image: {
  4739. source: "./media/characters/sigvald/herm-nsfw.svg",
  4740. extra: 182 / 164,
  4741. bottom: 8.7 / 190.5
  4742. }
  4743. },
  4744. dick: {
  4745. height: math.unit(2.36, "feet"),
  4746. name: "Dick",
  4747. image: {
  4748. source: "./media/characters/sigvald/dick.svg"
  4749. }
  4750. },
  4751. eye: {
  4752. height: math.unit(0.31, "feet"),
  4753. name: "Eye",
  4754. image: {
  4755. source: "./media/characters/sigvald/eye.svg"
  4756. }
  4757. },
  4758. mouth: {
  4759. height: math.unit(0.92, "feet"),
  4760. name: "Mouth",
  4761. image: {
  4762. source: "./media/characters/sigvald/mouth.svg"
  4763. }
  4764. },
  4765. paws: {
  4766. height: math.unit(2.2, "feet"),
  4767. name: "Paws",
  4768. image: {
  4769. source: "./media/characters/sigvald/paws.svg"
  4770. }
  4771. }
  4772. },
  4773. [
  4774. {
  4775. name: "Normal",
  4776. height: math.unit(8, "feet")
  4777. },
  4778. {
  4779. name: "Large",
  4780. height: math.unit(12, "feet")
  4781. },
  4782. {
  4783. name: "Larger",
  4784. height: math.unit(20, "feet")
  4785. },
  4786. {
  4787. name: "Macro",
  4788. height: math.unit(150, "feet")
  4789. },
  4790. {
  4791. name: "Macro+",
  4792. height: math.unit(200, "feet"),
  4793. default: true
  4794. },
  4795. ]
  4796. ))
  4797. characterMakers.push(() => makeCharacter(
  4798. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4799. {
  4800. side: {
  4801. height: math.unit(12, "feet"),
  4802. weight: math.unit(2000, "kg"),
  4803. name: "Side",
  4804. image: {
  4805. source: "./media/characters/scott/side.svg",
  4806. extra: 754 / 724,
  4807. bottom: 0.069
  4808. }
  4809. },
  4810. upright: {
  4811. height: math.unit(12, "feet"),
  4812. weight: math.unit(2000, "kg"),
  4813. name: "Upright",
  4814. image: {
  4815. source: "./media/characters/scott/upright.svg",
  4816. extra: 3881 / 3722,
  4817. bottom: 0.05
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Normal",
  4824. height: math.unit(12, "feet"),
  4825. default: true
  4826. },
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4831. {
  4832. side: {
  4833. height: math.unit(8, "meters"),
  4834. weight: math.unit(84755, "lbs"),
  4835. name: "Side",
  4836. image: {
  4837. source: "./media/characters/tobias/side.svg",
  4838. extra: 1474 / 1096,
  4839. bottom: 38.9 / 1513.1235
  4840. }
  4841. },
  4842. },
  4843. [
  4844. {
  4845. name: "Normal",
  4846. height: math.unit(8, "meters"),
  4847. default: true
  4848. },
  4849. ]
  4850. ))
  4851. characterMakers.push(() => makeCharacter(
  4852. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4853. {
  4854. front: {
  4855. height: math.unit(5.5, "feet"),
  4856. weight: math.unit(400, "lbs"),
  4857. name: "Front",
  4858. image: {
  4859. source: "./media/characters/kieran/front.svg",
  4860. extra: 2694 / 2364,
  4861. bottom: 217 / 2908
  4862. }
  4863. },
  4864. side: {
  4865. height: math.unit(5.5, "feet"),
  4866. weight: math.unit(400, "lbs"),
  4867. name: "Side",
  4868. image: {
  4869. source: "./media/characters/kieran/side.svg",
  4870. extra: 875 / 777,
  4871. bottom: 84.6 / 959
  4872. }
  4873. },
  4874. },
  4875. [
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(5.5, "feet"),
  4879. default: true
  4880. },
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4885. {
  4886. side: {
  4887. height: math.unit(2, "meters"),
  4888. weight: math.unit(70, "kg"),
  4889. name: "Side",
  4890. image: {
  4891. source: "./media/characters/sanya/side.svg",
  4892. bottom: 0.02,
  4893. extra: 1.02
  4894. }
  4895. },
  4896. },
  4897. [
  4898. {
  4899. name: "Small",
  4900. height: math.unit(2, "meters")
  4901. },
  4902. {
  4903. name: "Normal",
  4904. height: math.unit(3, "meters")
  4905. },
  4906. {
  4907. name: "Macro",
  4908. height: math.unit(16, "meters"),
  4909. default: true
  4910. },
  4911. ]
  4912. ))
  4913. characterMakers.push(() => makeCharacter(
  4914. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4915. {
  4916. front: {
  4917. height: math.unit(2, "meters"),
  4918. weight: math.unit(120, "kg"),
  4919. name: "Front",
  4920. image: {
  4921. source: "./media/characters/miranda/front.svg",
  4922. extra: 195 / 185,
  4923. bottom: 10.9 / 206.5
  4924. }
  4925. },
  4926. back: {
  4927. height: math.unit(2, "meters"),
  4928. weight: math.unit(120, "kg"),
  4929. name: "Back",
  4930. image: {
  4931. source: "./media/characters/miranda/back.svg",
  4932. extra: 201 / 193,
  4933. bottom: 2.3 / 203.7
  4934. }
  4935. },
  4936. },
  4937. [
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(10, "feet"),
  4941. default: true
  4942. }
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "James", species: ["deer"], tags: ["anthro"] },
  4947. {
  4948. side: {
  4949. height: math.unit(2, "meters"),
  4950. weight: math.unit(100, "kg"),
  4951. name: "Front",
  4952. image: {
  4953. source: "./media/characters/james/front.svg",
  4954. extra: 10 / 8.5
  4955. }
  4956. },
  4957. },
  4958. [
  4959. {
  4960. name: "Normal",
  4961. height: math.unit(8.5, "feet"),
  4962. default: true
  4963. }
  4964. ]
  4965. ))
  4966. characterMakers.push(() => makeCharacter(
  4967. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4968. {
  4969. side: {
  4970. height: math.unit(9.5, "feet"),
  4971. weight: math.unit(2500, "lbs"),
  4972. name: "Side",
  4973. image: {
  4974. source: "./media/characters/heather/side.svg"
  4975. }
  4976. },
  4977. },
  4978. [
  4979. {
  4980. name: "Normal",
  4981. height: math.unit(9.5, "feet"),
  4982. default: true
  4983. }
  4984. ]
  4985. ))
  4986. characterMakers.push(() => makeCharacter(
  4987. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4988. {
  4989. side: {
  4990. height: math.unit(6.5, "feet"),
  4991. weight: math.unit(400, "lbs"),
  4992. name: "Side",
  4993. image: {
  4994. source: "./media/characters/lukas/side.svg",
  4995. extra: 7.25 / 6.5
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(6.5, "feet"),
  5003. default: true
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5009. {
  5010. side: {
  5011. height: math.unit(5, "feet"),
  5012. weight: math.unit(3000, "lbs"),
  5013. name: "Side",
  5014. image: {
  5015. source: "./media/characters/louise/side.svg"
  5016. }
  5017. },
  5018. },
  5019. [
  5020. {
  5021. name: "Normal",
  5022. height: math.unit(5, "feet"),
  5023. default: true
  5024. }
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5029. {
  5030. side: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(150, "lbs"),
  5033. name: "Side",
  5034. image: {
  5035. source: "./media/characters/ramona/side.svg"
  5036. }
  5037. },
  5038. },
  5039. [
  5040. {
  5041. name: "Normal",
  5042. height: math.unit(5.3, "meters"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(20, "stories")
  5048. },
  5049. {
  5050. name: "Macro+",
  5051. height: math.unit(50, "stories")
  5052. },
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5057. {
  5058. standing: {
  5059. height: math.unit(5.75, "feet"),
  5060. weight: math.unit(160, "lbs"),
  5061. name: "Standing",
  5062. image: {
  5063. source: "./media/characters/deerpuff/standing.svg",
  5064. extra: 682 / 624
  5065. }
  5066. },
  5067. sitting: {
  5068. height: math.unit(5.75 / 1.79, "feet"),
  5069. weight: math.unit(160, "lbs"),
  5070. name: "Sitting",
  5071. image: {
  5072. source: "./media/characters/deerpuff/sitting.svg",
  5073. bottom: 44 / 400,
  5074. extra: 1
  5075. }
  5076. },
  5077. taurLaying: {
  5078. height: math.unit(6, "feet"),
  5079. weight: math.unit(400, "lbs"),
  5080. name: "Taur (Laying)",
  5081. image: {
  5082. source: "./media/characters/deerpuff/taur-laying.svg"
  5083. }
  5084. },
  5085. },
  5086. [
  5087. {
  5088. name: "Puffball",
  5089. height: math.unit(6, "inches")
  5090. },
  5091. {
  5092. name: "Normalpuff",
  5093. height: math.unit(5.75, "feet")
  5094. },
  5095. {
  5096. name: "Macropuff",
  5097. height: math.unit(1500, "feet"),
  5098. default: true
  5099. },
  5100. {
  5101. name: "Megapuff",
  5102. height: math.unit(500, "miles")
  5103. },
  5104. {
  5105. name: "Gigapuff",
  5106. height: math.unit(250000, "miles")
  5107. },
  5108. {
  5109. name: "Omegapuff",
  5110. height: math.unit(1000, "lightyears")
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5116. {
  5117. stomping: {
  5118. height: math.unit(6, "feet"),
  5119. weight: math.unit(170, "lbs"),
  5120. name: "Stomping",
  5121. image: {
  5122. source: "./media/characters/vivian/stomping.svg"
  5123. }
  5124. },
  5125. sitting: {
  5126. height: math.unit(6 / 1.75, "feet"),
  5127. weight: math.unit(170, "lbs"),
  5128. name: "Sitting",
  5129. image: {
  5130. source: "./media/characters/vivian/sitting.svg",
  5131. bottom: 1 / 6.4,
  5132. extra: 1,
  5133. }
  5134. },
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(7, "feet"),
  5140. default: true
  5141. },
  5142. {
  5143. name: "Macro",
  5144. height: math.unit(10, "stories")
  5145. },
  5146. {
  5147. name: "Macro+",
  5148. height: math.unit(30, "stories")
  5149. },
  5150. {
  5151. name: "Megamacro",
  5152. height: math.unit(10, "miles")
  5153. },
  5154. {
  5155. name: "Megamacro+",
  5156. height: math.unit(2750000, "meters")
  5157. },
  5158. ]
  5159. ))
  5160. characterMakers.push(() => makeCharacter(
  5161. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5162. {
  5163. front: {
  5164. height: math.unit(6, "feet"),
  5165. weight: math.unit(160, "lbs"),
  5166. name: "Front",
  5167. image: {
  5168. source: "./media/characters/prince/front.svg",
  5169. extra: 3400 / 3000
  5170. }
  5171. },
  5172. jumping: {
  5173. height: math.unit(6, "feet"),
  5174. weight: math.unit(160, "lbs"),
  5175. name: "Jumping",
  5176. image: {
  5177. source: "./media/characters/prince/jump.svg",
  5178. extra: 2555 / 2134
  5179. }
  5180. },
  5181. },
  5182. [
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(7.75, "feet"),
  5186. default: true
  5187. },
  5188. {
  5189. name: "Not cute",
  5190. height: math.unit(17, "feet")
  5191. },
  5192. {
  5193. name: "I said NOT",
  5194. height: math.unit(91, "feet")
  5195. },
  5196. {
  5197. name: "Please stop",
  5198. height: math.unit(560, "feet")
  5199. },
  5200. {
  5201. name: "What have you done",
  5202. height: math.unit(2200, "feet")
  5203. },
  5204. {
  5205. name: "Deer God",
  5206. height: math.unit(3.6, "miles")
  5207. },
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5212. {
  5213. standing: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(300, "lbs"),
  5216. name: "Standing",
  5217. image: {
  5218. source: "./media/characters/psymon/standing.svg",
  5219. extra: 1888 / 1810,
  5220. bottom: 0.05
  5221. }
  5222. },
  5223. slithering: {
  5224. height: math.unit(6, "feet"),
  5225. weight: math.unit(300, "lbs"),
  5226. name: "Slithering",
  5227. image: {
  5228. source: "./media/characters/psymon/slithering.svg",
  5229. extra: 1330 / 1224
  5230. }
  5231. },
  5232. slitheringAlt: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(300, "lbs"),
  5235. name: "Slithering (Alt)",
  5236. image: {
  5237. source: "./media/characters/psymon/slithering-alt.svg",
  5238. extra: 1330 / 1224
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Normal",
  5245. height: math.unit(11.25, "feet"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Large",
  5250. height: math.unit(27, "feet")
  5251. },
  5252. {
  5253. name: "Giant",
  5254. height: math.unit(87, "feet")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(365, "feet")
  5259. },
  5260. {
  5261. name: "Megamacro",
  5262. height: math.unit(3, "miles")
  5263. },
  5264. {
  5265. name: "World Serpent",
  5266. height: math.unit(8000, "miles")
  5267. },
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(180, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/daimos/front.svg",
  5279. extra: 4160 / 3897,
  5280. bottom: 0.021
  5281. }
  5282. }
  5283. },
  5284. [
  5285. {
  5286. name: "Normal",
  5287. height: math.unit(8, "feet"),
  5288. default: true
  5289. },
  5290. {
  5291. name: "Big Dog",
  5292. height: math.unit(22, "feet")
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(127, "feet")
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(3600, "feet")
  5301. },
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5306. {
  5307. side: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(180, "lbs"),
  5310. name: "Side",
  5311. image: {
  5312. source: "./media/characters/blake/side.svg",
  5313. extra: 1212 / 1120,
  5314. bottom: 0.05
  5315. }
  5316. },
  5317. crouched: {
  5318. height: math.unit(6 * 0.57, "feet"),
  5319. weight: math.unit(180, "lbs"),
  5320. name: "Crouched",
  5321. image: {
  5322. source: "./media/characters/blake/crouched.svg",
  5323. extra: 840 / 587,
  5324. bottom: 0.04
  5325. }
  5326. },
  5327. bent: {
  5328. height: math.unit(6 * 0.75, "feet"),
  5329. weight: math.unit(180, "lbs"),
  5330. name: "Bent",
  5331. image: {
  5332. source: "./media/characters/blake/bent.svg",
  5333. extra: 592 / 544,
  5334. bottom: 0.035
  5335. }
  5336. },
  5337. },
  5338. [
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(8 + 1 / 6, "feet"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "Big Backside",
  5346. height: math.unit(37, "feet")
  5347. },
  5348. {
  5349. name: "Subway Shredder",
  5350. height: math.unit(72, "feet")
  5351. },
  5352. {
  5353. name: "City Carver",
  5354. height: math.unit(1675, "feet")
  5355. },
  5356. {
  5357. name: "Tectonic Tweaker",
  5358. height: math.unit(2300, "miles")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5364. {
  5365. front: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(180, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/guisetto/front.svg",
  5371. extra: 856 / 817,
  5372. bottom: 0.06
  5373. }
  5374. },
  5375. airborne: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(180, "lbs"),
  5378. name: "Airborne",
  5379. image: {
  5380. source: "./media/characters/guisetto/airborne.svg",
  5381. extra: 584 / 525
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Normal",
  5388. height: math.unit(10 + 11 / 12, "feet"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Large",
  5393. height: math.unit(35, "feet")
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(475, "feet")
  5398. },
  5399. ]
  5400. ))
  5401. characterMakers.push(() => makeCharacter(
  5402. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5403. {
  5404. front: {
  5405. height: math.unit(6, "feet"),
  5406. weight: math.unit(180, "lbs"),
  5407. name: "Front",
  5408. image: {
  5409. source: "./media/characters/luxor/front.svg",
  5410. extra: 2940 / 2152
  5411. }
  5412. },
  5413. back: {
  5414. height: math.unit(6, "feet"),
  5415. weight: math.unit(180, "lbs"),
  5416. name: "Back",
  5417. image: {
  5418. source: "./media/characters/luxor/back.svg",
  5419. extra: 1083 / 960
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Normal",
  5426. height: math.unit(5 + 5 / 6, "feet"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Lamp",
  5431. height: math.unit(50, "feet")
  5432. },
  5433. {
  5434. name: "Lämp",
  5435. height: math.unit(300, "feet")
  5436. },
  5437. {
  5438. name: "The sun is a lamp",
  5439. height: math.unit(250000, "miles")
  5440. },
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5445. {
  5446. front: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(50, "lbs"),
  5449. name: "Front",
  5450. image: {
  5451. source: "./media/characters/huoyan/front.svg"
  5452. }
  5453. },
  5454. side: {
  5455. height: math.unit(6, "feet"),
  5456. weight: math.unit(180, "lbs"),
  5457. name: "Side",
  5458. image: {
  5459. source: "./media/characters/huoyan/side.svg"
  5460. }
  5461. },
  5462. },
  5463. [
  5464. {
  5465. name: "Chef",
  5466. height: math.unit(9, "feet")
  5467. },
  5468. {
  5469. name: "Normal",
  5470. height: math.unit(65, "feet"),
  5471. default: true
  5472. },
  5473. {
  5474. name: "Macro",
  5475. height: math.unit(780, "feet")
  5476. },
  5477. {
  5478. name: "Flaming Mountain",
  5479. height: math.unit(4.8, "miles")
  5480. },
  5481. {
  5482. name: "Celestial",
  5483. height: math.unit(765000, "miles")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(5 + 3 / 4, "feet"),
  5492. weight: math.unit(120, "lbs"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/tails/front.svg"
  5496. }
  5497. }
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(5 + 3 / 4, "feet"),
  5503. default: true
  5504. }
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(4, "feet"),
  5512. weight: math.unit(50, "lbs"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/rainy/front.svg"
  5516. }
  5517. }
  5518. },
  5519. [
  5520. {
  5521. name: "Macro",
  5522. height: math.unit(800, "feet"),
  5523. default: true
  5524. }
  5525. ]
  5526. ))
  5527. characterMakers.push(() => makeCharacter(
  5528. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5529. {
  5530. front: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(150, "lbs"),
  5533. name: "Front",
  5534. image: {
  5535. source: "./media/characters/rainier/front.svg"
  5536. }
  5537. }
  5538. },
  5539. [
  5540. {
  5541. name: "Micro",
  5542. height: math.unit(2, "mm"),
  5543. default: true
  5544. }
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(8 + 4/12, "feet"),
  5552. name: "Front",
  5553. image: {
  5554. source: "./media/characters/andy-renard/front.svg",
  5555. extra: 1839/1726,
  5556. bottom: 134/1973
  5557. }
  5558. },
  5559. back: {
  5560. height: math.unit(8 + 4/12, "feet"),
  5561. name: "Back",
  5562. image: {
  5563. source: "./media/characters/andy-renard/back.svg",
  5564. extra: 1838/1710,
  5565. bottom: 105/1943
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Tall",
  5572. height: math.unit(8 + 4/12, "feet")
  5573. },
  5574. {
  5575. name: "Mini Macro",
  5576. height: math.unit(15, "feet"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(100, "feet")
  5582. },
  5583. {
  5584. name: "Mega Macro",
  5585. height: math.unit(1000, "feet")
  5586. },
  5587. {
  5588. name: "Giga Macro",
  5589. height: math.unit(10, "miles")
  5590. },
  5591. {
  5592. name: "God Macro",
  5593. height: math.unit(1, "multiverse")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(210, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/cimmaron/front-sfw.svg",
  5606. extra: 701 / 676,
  5607. bottom: 0.046
  5608. }
  5609. },
  5610. back: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(210, "lbs"),
  5613. name: "Back",
  5614. image: {
  5615. source: "./media/characters/cimmaron/back-sfw.svg",
  5616. extra: 701 / 676,
  5617. bottom: 0.046
  5618. }
  5619. },
  5620. frontNsfw: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(210, "lbs"),
  5623. name: "Front (NSFW)",
  5624. image: {
  5625. source: "./media/characters/cimmaron/front-nsfw.svg",
  5626. extra: 701 / 676,
  5627. bottom: 0.046
  5628. }
  5629. },
  5630. backNsfw: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(210, "lbs"),
  5633. name: "Back (NSFW)",
  5634. image: {
  5635. source: "./media/characters/cimmaron/back-nsfw.svg",
  5636. extra: 701 / 676,
  5637. bottom: 0.046
  5638. }
  5639. },
  5640. dick: {
  5641. height: math.unit(1.714, "feet"),
  5642. name: "Dick",
  5643. image: {
  5644. source: "./media/characters/cimmaron/dick.svg"
  5645. }
  5646. },
  5647. },
  5648. [
  5649. {
  5650. name: "Normal",
  5651. height: math.unit(6, "feet"),
  5652. default: true
  5653. },
  5654. {
  5655. name: "Macro Mayor",
  5656. height: math.unit(350, "meters")
  5657. },
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5662. {
  5663. front: {
  5664. height: math.unit(6, "feet"),
  5665. weight: math.unit(200, "lbs"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/akari/front.svg",
  5669. extra: 962 / 901,
  5670. bottom: 0.04
  5671. }
  5672. }
  5673. },
  5674. [
  5675. {
  5676. name: "Micro",
  5677. height: math.unit(5, "inches"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(7, "feet")
  5683. },
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5688. {
  5689. front: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(140, "lbs"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/cynosura/front.svg",
  5695. extra: 896 / 847
  5696. }
  5697. },
  5698. back: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(140, "lbs"),
  5701. name: "Back",
  5702. image: {
  5703. source: "./media/characters/cynosura/back.svg",
  5704. extra: 1365 / 1250
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Micro",
  5711. height: math.unit(4, "inches")
  5712. },
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(5.75, "feet"),
  5716. default: true
  5717. },
  5718. {
  5719. name: "Tall",
  5720. height: math.unit(10, "feet")
  5721. },
  5722. {
  5723. name: "Big",
  5724. height: math.unit(20, "feet")
  5725. },
  5726. {
  5727. name: "Macro",
  5728. height: math.unit(50, "feet")
  5729. },
  5730. ]
  5731. ))
  5732. characterMakers.push(() => makeCharacter(
  5733. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5734. {
  5735. front: {
  5736. height: math.unit(13 + 2/12, "feet"),
  5737. weight: math.unit(800, "kg"),
  5738. name: "Front",
  5739. image: {
  5740. source: "./media/characters/gin/front.svg",
  5741. extra: 1312/1191,
  5742. bottom: 45/1357
  5743. }
  5744. },
  5745. mouth: {
  5746. height: math.unit(2.39 * 1.8, "feet"),
  5747. name: "Mouth",
  5748. image: {
  5749. source: "./media/characters/gin/mouth.svg"
  5750. }
  5751. },
  5752. hand: {
  5753. height: math.unit(1.57 * 2.19, "feet"),
  5754. name: "Hand",
  5755. image: {
  5756. source: "./media/characters/gin/hand.svg"
  5757. }
  5758. },
  5759. foot: {
  5760. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5761. name: "Foot",
  5762. image: {
  5763. source: "./media/characters/gin/foot.svg"
  5764. }
  5765. },
  5766. sole: {
  5767. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5768. name: "Sole",
  5769. image: {
  5770. source: "./media/characters/gin/sole.svg"
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Very Small",
  5777. height: math.unit(13 + 2 / 12, "feet")
  5778. },
  5779. {
  5780. name: "Micro",
  5781. height: math.unit(600, "miles")
  5782. },
  5783. {
  5784. name: "Regular",
  5785. height: math.unit(20, "earths"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(2.2, "solarradii")
  5791. },
  5792. {
  5793. name: "Teramacro",
  5794. height: math.unit(1.2, "galaxies")
  5795. },
  5796. {
  5797. name: "Omegamacro",
  5798. height: math.unit(200, "universes")
  5799. },
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(6 + 1 / 6, "feet"),
  5807. weight: math.unit(178, "lbs"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/guy/front.svg"
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(6 + 1 / 6, "feet"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Large",
  5822. height: math.unit(25 + 7 / 12, "feet")
  5823. },
  5824. {
  5825. name: "Macro",
  5826. height: math.unit(60 + 9 / 12, "feet")
  5827. },
  5828. {
  5829. name: "Macro+",
  5830. height: math.unit(246, "feet")
  5831. },
  5832. {
  5833. name: "Macro++",
  5834. height: math.unit(878, "feet")
  5835. }
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(9, "feet"),
  5843. weight: math.unit(800, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/tiberius/front.svg",
  5847. extra: 2295 / 2071
  5848. }
  5849. },
  5850. back: {
  5851. height: math.unit(9, "feet"),
  5852. weight: math.unit(800, "lbs"),
  5853. name: "Back",
  5854. image: {
  5855. source: "./media/characters/tiberius/back.svg",
  5856. extra: 2373 / 2160
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(9, "feet"),
  5864. default: true
  5865. }
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(600, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/surgo/front.svg",
  5877. extra: 3591 / 2227
  5878. }
  5879. },
  5880. back: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(600, "lbs"),
  5883. name: "Back",
  5884. image: {
  5885. source: "./media/characters/surgo/back.svg",
  5886. extra: 3557 / 2228
  5887. }
  5888. },
  5889. laying: {
  5890. height: math.unit(6 * 0.85, "feet"),
  5891. weight: math.unit(600, "lbs"),
  5892. name: "Laying",
  5893. image: {
  5894. source: "./media/characters/surgo/laying.svg"
  5895. }
  5896. },
  5897. },
  5898. [
  5899. {
  5900. name: "Normal",
  5901. height: math.unit(6, "feet"),
  5902. default: true
  5903. }
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5908. {
  5909. side: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(150, "lbs"),
  5912. name: "Side",
  5913. image: {
  5914. source: "./media/characters/cibus/side.svg",
  5915. extra: 800 / 400
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(6, "feet"),
  5923. default: true
  5924. }
  5925. ]
  5926. ))
  5927. characterMakers.push(() => makeCharacter(
  5928. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5929. {
  5930. front: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(240, "lbs"),
  5933. name: "Front",
  5934. image: {
  5935. source: "./media/characters/nibbles/front.svg"
  5936. }
  5937. },
  5938. side: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(240, "lbs"),
  5941. name: "Side",
  5942. image: {
  5943. source: "./media/characters/nibbles/side.svg"
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(9, "feet"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5957. {
  5958. side: {
  5959. height: math.unit(5 + 1 / 6, "feet"),
  5960. weight: math.unit(130, "lbs"),
  5961. name: "Side",
  5962. image: {
  5963. source: "./media/characters/rikky/side.svg",
  5964. extra: 851 / 801
  5965. }
  5966. },
  5967. },
  5968. [
  5969. {
  5970. name: "Normal",
  5971. height: math.unit(5 + 1 / 6, "feet")
  5972. },
  5973. {
  5974. name: "Macro",
  5975. height: math.unit(152, "feet"),
  5976. default: true
  5977. },
  5978. {
  5979. name: "Megamacro",
  5980. height: math.unit(7, "miles")
  5981. }
  5982. ]
  5983. ))
  5984. characterMakers.push(() => makeCharacter(
  5985. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5986. {
  5987. side: {
  5988. height: math.unit(370, "cm"),
  5989. weight: math.unit(350, "lbs"),
  5990. name: "Side",
  5991. image: {
  5992. source: "./media/characters/malfressa/side.svg"
  5993. }
  5994. },
  5995. walking: {
  5996. height: math.unit(370, "cm"),
  5997. weight: math.unit(350, "lbs"),
  5998. name: "Walking",
  5999. image: {
  6000. source: "./media/characters/malfressa/walking.svg"
  6001. }
  6002. },
  6003. feral: {
  6004. height: math.unit(2500, "cm"),
  6005. weight: math.unit(100000, "lbs"),
  6006. name: "Feral",
  6007. image: {
  6008. source: "./media/characters/malfressa/feral.svg",
  6009. extra: 2108 / 837,
  6010. bottom: 0.02
  6011. }
  6012. },
  6013. },
  6014. [
  6015. {
  6016. name: "Normal",
  6017. height: math.unit(370, "cm")
  6018. },
  6019. {
  6020. name: "Macro",
  6021. height: math.unit(300, "meters"),
  6022. default: true
  6023. }
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6028. {
  6029. front: {
  6030. height: math.unit(6, "feet"),
  6031. weight: math.unit(60, "kg"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/jaro/front.svg"
  6035. }
  6036. },
  6037. back: {
  6038. height: math.unit(6, "feet"),
  6039. weight: math.unit(60, "kg"),
  6040. name: "Back",
  6041. image: {
  6042. source: "./media/characters/jaro/back.svg"
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Micro",
  6049. height: math.unit(7, "inches")
  6050. },
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(5.5, "feet"),
  6054. default: true
  6055. },
  6056. {
  6057. name: "Minimacro",
  6058. height: math.unit(20, "feet")
  6059. },
  6060. {
  6061. name: "Macro",
  6062. height: math.unit(200, "meters")
  6063. }
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(6, "feet"),
  6071. weight: math.unit(195, "lb"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/rogue/front.svg"
  6075. }
  6076. },
  6077. },
  6078. [
  6079. {
  6080. name: "Macro",
  6081. height: math.unit(90, "feet"),
  6082. default: true
  6083. },
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(5 + 8 / 12, "feet"),
  6091. weight: math.unit(140, "lb"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/piper/front.svg",
  6095. extra: 3948/3655,
  6096. bottom: 0/3948
  6097. }
  6098. },
  6099. },
  6100. [
  6101. {
  6102. name: "Micro",
  6103. height: math.unit(2, "inches")
  6104. },
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(5 + 8 / 12, "feet")
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(250, "feet"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Megamacro",
  6116. height: math.unit(7, "miles")
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6122. {
  6123. front: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(220, "lb"),
  6126. name: "Front",
  6127. image: {
  6128. source: "./media/characters/gemini/front.svg"
  6129. }
  6130. },
  6131. back: {
  6132. height: math.unit(6, "feet"),
  6133. weight: math.unit(220, "lb"),
  6134. name: "Back",
  6135. image: {
  6136. source: "./media/characters/gemini/back.svg"
  6137. }
  6138. },
  6139. kneeling: {
  6140. height: math.unit(6 / 1.5, "feet"),
  6141. weight: math.unit(220, "lb"),
  6142. name: "Kneeling",
  6143. image: {
  6144. source: "./media/characters/gemini/kneeling.svg",
  6145. bottom: 0.02
  6146. }
  6147. },
  6148. },
  6149. [
  6150. {
  6151. name: "Macro",
  6152. height: math.unit(300, "meters"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Megamacro",
  6157. height: math.unit(6900, "meters")
  6158. },
  6159. ]
  6160. ))
  6161. characterMakers.push(() => makeCharacter(
  6162. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6163. {
  6164. anthro: {
  6165. height: math.unit(2.35, "meters"),
  6166. weight: math.unit(73, "kg"),
  6167. name: "Anthro",
  6168. image: {
  6169. source: "./media/characters/alicia/anthro.svg",
  6170. extra: 2571 / 2385,
  6171. bottom: 75 / 2648
  6172. }
  6173. },
  6174. paw: {
  6175. height: math.unit(1.32, "feet"),
  6176. name: "Paw",
  6177. image: {
  6178. source: "./media/characters/alicia/paw.svg"
  6179. }
  6180. },
  6181. feral: {
  6182. height: math.unit(1.69, "meters"),
  6183. weight: math.unit(73, "kg"),
  6184. name: "Feral",
  6185. image: {
  6186. source: "./media/characters/alicia/feral.svg",
  6187. extra: 2123 / 1715,
  6188. bottom: 222 / 2349
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(2.35, "meters")
  6196. },
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(60, "meters"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Megamacro",
  6204. height: math.unit(10000, "kilometers")
  6205. },
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(7, "feet"),
  6213. weight: math.unit(250, "lbs"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/archy/front.svg"
  6217. }
  6218. }
  6219. },
  6220. [
  6221. {
  6222. name: "Micro",
  6223. height: math.unit(1, "inch")
  6224. },
  6225. {
  6226. name: "Shorty",
  6227. height: math.unit(5, "feet")
  6228. },
  6229. {
  6230. name: "Normal",
  6231. height: math.unit(7, "feet")
  6232. },
  6233. {
  6234. name: "Macro",
  6235. height: math.unit(600, "meters"),
  6236. default: true
  6237. },
  6238. {
  6239. name: "Megamacro",
  6240. height: math.unit(1, "mile")
  6241. },
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6246. {
  6247. front: {
  6248. height: math.unit(1.65, "meters"),
  6249. weight: math.unit(74, "kg"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/berri/front.svg",
  6253. extra: 857 / 837,
  6254. bottom: 18 / 877
  6255. }
  6256. },
  6257. bum: {
  6258. height: math.unit(1.46, "feet"),
  6259. name: "Bum",
  6260. image: {
  6261. source: "./media/characters/berri/bum.svg"
  6262. }
  6263. },
  6264. mouth: {
  6265. height: math.unit(0.44, "feet"),
  6266. name: "Mouth",
  6267. image: {
  6268. source: "./media/characters/berri/mouth.svg"
  6269. }
  6270. },
  6271. paw: {
  6272. height: math.unit(0.826, "feet"),
  6273. name: "Paw",
  6274. image: {
  6275. source: "./media/characters/berri/paw.svg"
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(1.65, "meters")
  6283. },
  6284. {
  6285. name: "Macro",
  6286. height: math.unit(60, "m"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Megamacro",
  6291. height: math.unit(9.213, "km")
  6292. },
  6293. {
  6294. name: "Planet Eater",
  6295. height: math.unit(489, "megameters")
  6296. },
  6297. {
  6298. name: "Teramacro",
  6299. height: math.unit(2471635000000, "meters")
  6300. },
  6301. {
  6302. name: "Examacro",
  6303. height: math.unit(8.0624e+26, "meters")
  6304. }
  6305. ]
  6306. ))
  6307. characterMakers.push(() => makeCharacter(
  6308. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6309. {
  6310. front: {
  6311. height: math.unit(1.72, "meters"),
  6312. weight: math.unit(68, "kg"),
  6313. name: "Front",
  6314. image: {
  6315. source: "./media/characters/lexi/front.svg"
  6316. }
  6317. }
  6318. },
  6319. [
  6320. {
  6321. name: "Very Smol",
  6322. height: math.unit(10, "mm")
  6323. },
  6324. {
  6325. name: "Micro",
  6326. height: math.unit(6.8, "cm"),
  6327. default: true
  6328. },
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(1.72, "m")
  6332. }
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6337. {
  6338. front: {
  6339. height: math.unit(1.69, "meters"),
  6340. weight: math.unit(68, "kg"),
  6341. name: "Front",
  6342. image: {
  6343. source: "./media/characters/martin/front.svg",
  6344. extra: 596 / 581
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Micro",
  6351. height: math.unit(6.85, "cm"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(1.69, "m")
  6357. }
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(1.69, "meters"),
  6365. weight: math.unit(68, "kg"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/juno/front.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(7, "cm")
  6376. },
  6377. {
  6378. name: "Normal",
  6379. height: math.unit(1.89, "m")
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(353, "meters"),
  6384. default: true
  6385. }
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(1.93, "meters"),
  6393. weight: math.unit(83, "kg"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/samantha/front.svg"
  6397. }
  6398. },
  6399. frontClothed: {
  6400. height: math.unit(1.93, "meters"),
  6401. weight: math.unit(83, "kg"),
  6402. name: "Front (Clothed)",
  6403. image: {
  6404. source: "./media/characters/samantha/front-clothed.svg"
  6405. }
  6406. },
  6407. back: {
  6408. height: math.unit(1.93, "meters"),
  6409. weight: math.unit(83, "kg"),
  6410. name: "Back",
  6411. image: {
  6412. source: "./media/characters/samantha/back.svg"
  6413. }
  6414. },
  6415. },
  6416. [
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(1.93, "m")
  6420. },
  6421. {
  6422. name: "Macro",
  6423. height: math.unit(74, "meters"),
  6424. default: true
  6425. },
  6426. {
  6427. name: "Macro+",
  6428. height: math.unit(223, "meters"),
  6429. },
  6430. {
  6431. name: "Megamacro",
  6432. height: math.unit(8381, "meters"),
  6433. },
  6434. {
  6435. name: "Megamacro+",
  6436. height: math.unit(12000, "kilometers")
  6437. },
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6442. {
  6443. front: {
  6444. height: math.unit(1.92, "meters"),
  6445. weight: math.unit(80, "kg"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/dr-clay/front.svg"
  6449. }
  6450. },
  6451. frontClothed: {
  6452. height: math.unit(1.92, "meters"),
  6453. weight: math.unit(80, "kg"),
  6454. name: "Front (Clothed)",
  6455. image: {
  6456. source: "./media/characters/dr-clay/front-clothed.svg"
  6457. }
  6458. }
  6459. },
  6460. [
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(1.92, "m")
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(214, "meters"),
  6468. default: true
  6469. },
  6470. {
  6471. name: "Macro+",
  6472. height: math.unit(12.237, "meters"),
  6473. },
  6474. {
  6475. name: "Megamacro",
  6476. height: math.unit(557, "megameters"),
  6477. },
  6478. {
  6479. name: "Unimaginable",
  6480. height: math.unit(120e9, "lightyears")
  6481. },
  6482. ]
  6483. ))
  6484. characterMakers.push(() => makeCharacter(
  6485. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6486. {
  6487. front: {
  6488. height: math.unit(2, "meters"),
  6489. weight: math.unit(80, "kg"),
  6490. name: "Front",
  6491. image: {
  6492. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6493. }
  6494. }
  6495. },
  6496. [
  6497. {
  6498. name: "Teramacro",
  6499. height: math.unit(500000, "lightyears"),
  6500. default: true
  6501. },
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6506. {
  6507. front: {
  6508. height: math.unit(2, "meters"),
  6509. weight: math.unit(150, "kg"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/vemus/front.svg",
  6513. extra: 1074/936,
  6514. bottom: 23/1097
  6515. }
  6516. }
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(3.75, "meters"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Big",
  6526. height: math.unit(8, "meters")
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(100, "meters")
  6531. },
  6532. {
  6533. name: "Macro+",
  6534. height: math.unit(1500, "meters")
  6535. },
  6536. {
  6537. name: "Stellar",
  6538. height: math.unit(14e8, "meters")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(2, "meters"),
  6547. weight: math.unit(70, "kg"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/beherit/front.svg",
  6551. extra: 1408 / 1242
  6552. }
  6553. }
  6554. },
  6555. [
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(6, "feet")
  6559. },
  6560. {
  6561. name: "Lorg",
  6562. height: math.unit(25, "feet"),
  6563. default: true
  6564. },
  6565. {
  6566. name: "Lorger",
  6567. height: math.unit(75, "feet")
  6568. },
  6569. {
  6570. name: "Macro",
  6571. height: math.unit(200, "meters")
  6572. },
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(2, "meters"),
  6580. weight: math.unit(150, "kg"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/everett/front.svg",
  6584. extra: 2038 / 1737,
  6585. bottom: 0.03
  6586. }
  6587. },
  6588. paw: {
  6589. height: math.unit(2 / 3.6, "meters"),
  6590. name: "Paw",
  6591. image: {
  6592. source: "./media/characters/everett/paw.svg"
  6593. }
  6594. },
  6595. },
  6596. [
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(15, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Lorg",
  6604. height: math.unit(70, "feet"),
  6605. default: true
  6606. },
  6607. {
  6608. name: "Lorger",
  6609. height: math.unit(250, "feet")
  6610. },
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(500, "meters")
  6614. },
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6619. {
  6620. front: {
  6621. height: math.unit(2, "meters"),
  6622. weight: math.unit(86, "kg"),
  6623. name: "Front",
  6624. image: {
  6625. source: "./media/characters/rose/front.svg",
  6626. extra: 1785/1636,
  6627. bottom: 30/1815
  6628. }
  6629. },
  6630. frontSporty: {
  6631. height: math.unit(2, "meters"),
  6632. weight: math.unit(86, "kg"),
  6633. name: "Front (Sporty)",
  6634. image: {
  6635. source: "./media/characters/rose/front-sporty.svg",
  6636. extra: 350/335,
  6637. bottom: 10/360
  6638. }
  6639. },
  6640. frontAlt: {
  6641. height: math.unit(1.6, "meters"),
  6642. weight: math.unit(86, "kg"),
  6643. name: "Front (Alt)",
  6644. image: {
  6645. source: "./media/characters/rose/front-alt.svg",
  6646. extra: 299/283,
  6647. bottom: 3/302
  6648. }
  6649. },
  6650. plush: {
  6651. height: math.unit(2, "meters"),
  6652. weight: math.unit(86/3, "kg"),
  6653. name: "Plush",
  6654. image: {
  6655. source: "./media/characters/rose/plush.svg",
  6656. extra: 361/337,
  6657. bottom: 11/372
  6658. }
  6659. },
  6660. },
  6661. [
  6662. {
  6663. name: "True Micro",
  6664. height: math.unit(9, "cm")
  6665. },
  6666. {
  6667. name: "Micro",
  6668. height: math.unit(16, "cm")
  6669. },
  6670. {
  6671. name: "Normal",
  6672. height: math.unit(1.85, "meters"),
  6673. default: true
  6674. },
  6675. {
  6676. name: "Mini-Macro",
  6677. height: math.unit(5, "meters")
  6678. },
  6679. {
  6680. name: "Macro",
  6681. height: math.unit(15, "meters")
  6682. },
  6683. {
  6684. name: "True Macro",
  6685. height: math.unit(40, "meters")
  6686. },
  6687. {
  6688. name: "City Scale",
  6689. height: math.unit(1, "km")
  6690. },
  6691. ]
  6692. ))
  6693. characterMakers.push(() => makeCharacter(
  6694. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6695. {
  6696. front: {
  6697. height: math.unit(2, "meters"),
  6698. weight: math.unit(350, "lbs"),
  6699. name: "Front",
  6700. image: {
  6701. source: "./media/characters/regal/front.svg"
  6702. }
  6703. },
  6704. back: {
  6705. height: math.unit(2, "meters"),
  6706. weight: math.unit(350, "lbs"),
  6707. name: "Back",
  6708. image: {
  6709. source: "./media/characters/regal/back.svg"
  6710. }
  6711. },
  6712. },
  6713. [
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(350, "feet"),
  6717. default: true
  6718. }
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6723. {
  6724. front: {
  6725. height: math.unit(4 + 11 / 12, "feet"),
  6726. weight: math.unit(100, "lbs"),
  6727. name: "Front",
  6728. image: {
  6729. source: "./media/characters/opal/front.svg"
  6730. }
  6731. },
  6732. frontAlt: {
  6733. height: math.unit(4 + 11 / 12, "feet"),
  6734. weight: math.unit(100, "lbs"),
  6735. name: "Front (Alt)",
  6736. image: {
  6737. source: "./media/characters/opal/front-alt.svg"
  6738. }
  6739. },
  6740. },
  6741. [
  6742. {
  6743. name: "Small",
  6744. height: math.unit(4 + 11 / 12, "feet")
  6745. },
  6746. {
  6747. name: "Normal",
  6748. height: math.unit(20, "feet"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Macro",
  6753. height: math.unit(120, "feet")
  6754. },
  6755. {
  6756. name: "Megamacro",
  6757. height: math.unit(80, "miles")
  6758. },
  6759. {
  6760. name: "True Size",
  6761. height: math.unit(100000, "lightyears")
  6762. },
  6763. ]
  6764. ))
  6765. characterMakers.push(() => makeCharacter(
  6766. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6767. {
  6768. front: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(200, "lbs"),
  6771. name: "Front",
  6772. image: {
  6773. source: "./media/characters/vector-wuff/front.svg"
  6774. }
  6775. }
  6776. },
  6777. [
  6778. {
  6779. name: "Normal",
  6780. height: math.unit(2.8, "meters")
  6781. },
  6782. {
  6783. name: "Macro",
  6784. height: math.unit(450, "meters"),
  6785. default: true
  6786. },
  6787. {
  6788. name: "Megamacro",
  6789. height: math.unit(15, "kilometers")
  6790. }
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(6, "feet"),
  6798. weight: math.unit(256, "lbs"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/dannik/front.svg"
  6802. }
  6803. }
  6804. },
  6805. [
  6806. {
  6807. name: "Macro",
  6808. height: math.unit(69.57, "meters"),
  6809. default: true
  6810. },
  6811. ]
  6812. ))
  6813. characterMakers.push(() => makeCharacter(
  6814. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6815. {
  6816. front: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(120, "lbs"),
  6819. name: "Front",
  6820. image: {
  6821. source: "./media/characters/azura-saharah/front.svg"
  6822. }
  6823. },
  6824. back: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(120, "lbs"),
  6827. name: "Back",
  6828. image: {
  6829. source: "./media/characters/azura-saharah/back.svg"
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(100, "feet"),
  6837. default: true
  6838. },
  6839. ]
  6840. ))
  6841. characterMakers.push(() => makeCharacter(
  6842. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6843. {
  6844. side: {
  6845. height: math.unit(5 + 4 / 12, "feet"),
  6846. weight: math.unit(163, "lbs"),
  6847. name: "Side",
  6848. image: {
  6849. source: "./media/characters/kennedy/side.svg"
  6850. }
  6851. }
  6852. },
  6853. [
  6854. {
  6855. name: "Standard Doggo",
  6856. height: math.unit(5 + 4 / 12, "feet")
  6857. },
  6858. {
  6859. name: "Big Doggo",
  6860. height: math.unit(25 + 3 / 12, "feet"),
  6861. default: true
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(6, "feet"),
  6870. weight: math.unit(90, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/odi-lunar/front.svg"
  6874. }
  6875. }
  6876. },
  6877. [
  6878. {
  6879. name: "Micro",
  6880. height: math.unit(3, "inches"),
  6881. default: true
  6882. },
  6883. {
  6884. name: "Normal",
  6885. height: math.unit(5.5, "feet")
  6886. }
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6891. {
  6892. back: {
  6893. height: math.unit(6, "feet"),
  6894. weight: math.unit(220, "lbs"),
  6895. name: "Back",
  6896. image: {
  6897. source: "./media/characters/mandake/back.svg"
  6898. }
  6899. }
  6900. },
  6901. [
  6902. {
  6903. name: "Normal",
  6904. height: math.unit(7, "feet"),
  6905. default: true
  6906. },
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(78, "feet")
  6910. },
  6911. {
  6912. name: "Macro+",
  6913. height: math.unit(300, "meters")
  6914. },
  6915. {
  6916. name: "Macro++",
  6917. height: math.unit(2400, "feet")
  6918. },
  6919. {
  6920. name: "Megamacro",
  6921. height: math.unit(5167, "meters")
  6922. },
  6923. {
  6924. name: "Gigamacro",
  6925. height: math.unit(41769, "miles")
  6926. },
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6931. {
  6932. front: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(120, "lbs"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/yozey/front.svg"
  6938. }
  6939. },
  6940. frontAlt: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(120, "lbs"),
  6943. name: "Front (Alt)",
  6944. image: {
  6945. source: "./media/characters/yozey/front-alt.svg"
  6946. }
  6947. },
  6948. side: {
  6949. height: math.unit(6, "feet"),
  6950. weight: math.unit(120, "lbs"),
  6951. name: "Side",
  6952. image: {
  6953. source: "./media/characters/yozey/side.svg"
  6954. }
  6955. },
  6956. },
  6957. [
  6958. {
  6959. name: "Micro",
  6960. height: math.unit(3, "inches"),
  6961. default: true
  6962. },
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(6, "feet")
  6966. }
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6971. {
  6972. front: {
  6973. height: math.unit(6, "feet"),
  6974. weight: math.unit(103, "lbs"),
  6975. name: "Front",
  6976. image: {
  6977. source: "./media/characters/valeska-voss/front.svg"
  6978. }
  6979. }
  6980. },
  6981. [
  6982. {
  6983. name: "Mini-Sized Sub",
  6984. height: math.unit(3.1, "inches")
  6985. },
  6986. {
  6987. name: "Mid-Sized Sub",
  6988. height: math.unit(6.2, "inches")
  6989. },
  6990. {
  6991. name: "Full-Sized Sub",
  6992. height: math.unit(9.3, "inches")
  6993. },
  6994. {
  6995. name: "Normal",
  6996. height: math.unit(5 + 2 / 12, "foot"),
  6997. default: true
  6998. },
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7003. {
  7004. front: {
  7005. height: math.unit(6, "feet"),
  7006. weight: math.unit(160, "lbs"),
  7007. name: "Front",
  7008. image: {
  7009. source: "./media/characters/gene-zeta/front.svg",
  7010. extra: 3006 / 2826,
  7011. bottom: 182 / 3188
  7012. }
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Micro",
  7018. height: math.unit(6, "inches")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(5 + 11 / 12, "foot"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(140, "feet")
  7028. },
  7029. {
  7030. name: "Supercharged",
  7031. height: math.unit(2500, "feet")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(350, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/razinox/front.svg",
  7044. extra: 1686 / 1548,
  7045. bottom: 28.2 / 1868
  7046. }
  7047. },
  7048. back: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(350, "lbs"),
  7051. name: "Back",
  7052. image: {
  7053. source: "./media/characters/razinox/back.svg",
  7054. extra: 1660 / 1590,
  7055. bottom: 15 / 1665
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(10 + 8 / 12, "foot")
  7063. },
  7064. {
  7065. name: "Minimacro",
  7066. height: math.unit(15, "foot")
  7067. },
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(60, "foot"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Megamacro",
  7075. height: math.unit(5, "miles")
  7076. },
  7077. {
  7078. name: "Gigamacro",
  7079. height: math.unit(6000, "miles")
  7080. },
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(150, "lbs"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/cobalt/front.svg"
  7092. }
  7093. }
  7094. },
  7095. [
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(8 + 1 / 12, "foot")
  7099. },
  7100. {
  7101. name: "Macro",
  7102. height: math.unit(111, "foot"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Supracosmic",
  7107. height: math.unit(1e42, "feet")
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(6, "feet"),
  7116. weight: math.unit(140, "lbs"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/amanda/front.svg"
  7120. }
  7121. }
  7122. },
  7123. [
  7124. {
  7125. name: "Micro",
  7126. height: math.unit(5, "inches"),
  7127. default: true
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(2.75, "meters"),
  7136. weight: math.unit(1200, "lb"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/teal/front.svg",
  7140. extra: 2463 / 2320,
  7141. bottom: 166 / 2629
  7142. }
  7143. },
  7144. back: {
  7145. height: math.unit(2.75, "meters"),
  7146. weight: math.unit(1200, "lb"),
  7147. name: "Back",
  7148. image: {
  7149. source: "./media/characters/teal/back.svg",
  7150. extra: 2580 / 2489,
  7151. bottom: 151 / 2731
  7152. }
  7153. },
  7154. sitting: {
  7155. height: math.unit(1.9, "meters"),
  7156. weight: math.unit(1200, "lb"),
  7157. name: "Sitting",
  7158. image: {
  7159. source: "./media/characters/teal/sitting.svg",
  7160. extra: 623 / 590,
  7161. bottom: 121 / 744
  7162. }
  7163. },
  7164. standing: {
  7165. height: math.unit(2.75, "meters"),
  7166. weight: math.unit(1200, "lb"),
  7167. name: "Standing",
  7168. image: {
  7169. source: "./media/characters/teal/standing.svg",
  7170. extra: 923 / 893,
  7171. bottom: 60 / 983
  7172. }
  7173. },
  7174. stretching: {
  7175. height: math.unit(3.65, "meters"),
  7176. weight: math.unit(1200, "lb"),
  7177. name: "Stretching",
  7178. image: {
  7179. source: "./media/characters/teal/stretching.svg",
  7180. extra: 1276 / 1244,
  7181. bottom: 0 / 1276
  7182. }
  7183. },
  7184. legged: {
  7185. height: math.unit(1.3, "meters"),
  7186. weight: math.unit(100, "lb"),
  7187. name: "Legged",
  7188. image: {
  7189. source: "./media/characters/teal/legged.svg",
  7190. extra: 462 / 437,
  7191. bottom: 24 / 486
  7192. }
  7193. },
  7194. naga: {
  7195. height: math.unit(5.4, "meters"),
  7196. weight: math.unit(4000, "lb"),
  7197. name: "Naga",
  7198. image: {
  7199. source: "./media/characters/teal/naga.svg",
  7200. extra: 1902 / 1858,
  7201. bottom: 0 / 1902
  7202. }
  7203. },
  7204. hand: {
  7205. height: math.unit(0.52, "meters"),
  7206. name: "Hand",
  7207. image: {
  7208. source: "./media/characters/teal/hand.svg"
  7209. }
  7210. },
  7211. maw: {
  7212. height: math.unit(0.43, "meters"),
  7213. name: "Maw",
  7214. image: {
  7215. source: "./media/characters/teal/maw.svg"
  7216. }
  7217. },
  7218. slit: {
  7219. height: math.unit(0.25, "meters"),
  7220. name: "Slit",
  7221. image: {
  7222. source: "./media/characters/teal/slit.svg"
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(2.75, "meters"),
  7230. default: true
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(300, "feet")
  7235. },
  7236. {
  7237. name: "Macro+",
  7238. height: math.unit(2000, "feet")
  7239. },
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7244. {
  7245. frontCat: {
  7246. height: math.unit(6, "feet"),
  7247. weight: math.unit(180, "lbs"),
  7248. name: "Front (Cat)",
  7249. image: {
  7250. source: "./media/characters/ravin-amulet/front-cat.svg"
  7251. }
  7252. },
  7253. frontCatAlt: {
  7254. height: math.unit(6, "feet"),
  7255. weight: math.unit(180, "lbs"),
  7256. name: "Front (Alt, Cat)",
  7257. image: {
  7258. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7259. }
  7260. },
  7261. frontWerewolf: {
  7262. height: math.unit(6 * 1.2, "feet"),
  7263. weight: math.unit(225, "lbs"),
  7264. name: "Front (Werewolf)",
  7265. image: {
  7266. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7267. }
  7268. },
  7269. backWerewolf: {
  7270. height: math.unit(6 * 1.2, "feet"),
  7271. weight: math.unit(225, "lbs"),
  7272. name: "Back (Werewolf)",
  7273. image: {
  7274. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Nano",
  7281. height: math.unit(1, "micrometer")
  7282. },
  7283. {
  7284. name: "Micro",
  7285. height: math.unit(1, "inch")
  7286. },
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(6, "feet"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(60, "feet")
  7295. }
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(165, "lbs"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/fluoresce/front.svg"
  7307. }
  7308. }
  7309. },
  7310. [
  7311. {
  7312. name: "Micro",
  7313. height: math.unit(6, "cm")
  7314. },
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(5 + 7 / 12, "feet"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Macro",
  7322. height: math.unit(56, "feet")
  7323. },
  7324. {
  7325. name: "Megamacro",
  7326. height: math.unit(1.9, "miles")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(9 + 6 / 12, "feet"),
  7335. weight: math.unit(523, "lbs"),
  7336. name: "Side",
  7337. image: {
  7338. source: "./media/characters/aurora/side.svg"
  7339. }
  7340. }
  7341. },
  7342. [
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(9 + 6 / 12, "feet")
  7346. },
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(96, "feet"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Macro+",
  7354. height: math.unit(243, "feet")
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(194, "cm"),
  7363. weight: math.unit(90, "kg"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/ranek/front.svg"
  7367. }
  7368. },
  7369. side: {
  7370. height: math.unit(194, "cm"),
  7371. weight: math.unit(90, "kg"),
  7372. name: "Side",
  7373. image: {
  7374. source: "./media/characters/ranek/side.svg"
  7375. }
  7376. },
  7377. back: {
  7378. height: math.unit(194, "cm"),
  7379. weight: math.unit(90, "kg"),
  7380. name: "Back",
  7381. image: {
  7382. source: "./media/characters/ranek/back.svg"
  7383. }
  7384. },
  7385. feral: {
  7386. height: math.unit(30, "cm"),
  7387. weight: math.unit(1.6, "lbs"),
  7388. name: "Feral",
  7389. image: {
  7390. source: "./media/characters/ranek/feral.svg"
  7391. }
  7392. },
  7393. },
  7394. [
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(194, "cm"),
  7398. default: true
  7399. },
  7400. {
  7401. name: "Macro",
  7402. height: math.unit(100, "meters")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(5 + 6 / 12, "feet"),
  7411. weight: math.unit(153, "lbs"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/andrew-cooper/front.svg"
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Nano",
  7421. height: math.unit(1, "mm")
  7422. },
  7423. {
  7424. name: "Micro",
  7425. height: math.unit(2, "inches")
  7426. },
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(5 + 6 / 12, "feet"),
  7430. default: true
  7431. }
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(180, "lbs"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/akane-sato/front.svg",
  7443. extra: 1219 / 1140
  7444. }
  7445. },
  7446. back: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(180, "lbs"),
  7449. name: "Back",
  7450. image: {
  7451. source: "./media/characters/akane-sato/back.svg",
  7452. extra: 1219 / 1170
  7453. }
  7454. },
  7455. },
  7456. [
  7457. {
  7458. name: "Normal",
  7459. height: math.unit(2.5, "meters")
  7460. },
  7461. {
  7462. name: "Macro",
  7463. height: math.unit(250, "meters"),
  7464. default: true
  7465. },
  7466. {
  7467. name: "Megamacro",
  7468. height: math.unit(25, "km")
  7469. },
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7474. {
  7475. front: {
  7476. height: math.unit(6, "feet"),
  7477. weight: math.unit(65, "kg"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/rook/front.svg",
  7481. extra: 960 / 950
  7482. }
  7483. }
  7484. },
  7485. [
  7486. {
  7487. name: "Normal",
  7488. height: math.unit(8.8, "feet")
  7489. },
  7490. {
  7491. name: "Macro",
  7492. height: math.unit(88, "feet"),
  7493. default: true
  7494. },
  7495. {
  7496. name: "Megamacro",
  7497. height: math.unit(8, "miles")
  7498. },
  7499. ]
  7500. ))
  7501. characterMakers.push(() => makeCharacter(
  7502. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7503. {
  7504. front: {
  7505. height: math.unit(12 + 2 / 12, "feet"),
  7506. weight: math.unit(808, "lbs"),
  7507. name: "Front",
  7508. image: {
  7509. source: "./media/characters/prodigy/front.svg"
  7510. }
  7511. }
  7512. },
  7513. [
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(12 + 2 / 12, "feet"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(143, "feet")
  7522. },
  7523. {
  7524. name: "Macro+",
  7525. height: math.unit(400, "feet")
  7526. },
  7527. ]
  7528. ))
  7529. characterMakers.push(() => makeCharacter(
  7530. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7531. {
  7532. front: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(225, "lbs"),
  7535. name: "Front",
  7536. image: {
  7537. source: "./media/characters/daniel/front.svg"
  7538. }
  7539. },
  7540. leaning: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(225, "lbs"),
  7543. name: "Leaning",
  7544. image: {
  7545. source: "./media/characters/daniel/leaning.svg"
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Macro",
  7552. height: math.unit(1000, "feet"),
  7553. default: true
  7554. },
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(6, "feet"),
  7562. weight: math.unit(88, "lbs"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/chiros/front.svg",
  7566. extra: 306 / 226
  7567. }
  7568. },
  7569. side: {
  7570. height: math.unit(6, "feet"),
  7571. weight: math.unit(88, "lbs"),
  7572. name: "Side",
  7573. image: {
  7574. source: "./media/characters/chiros/side.svg",
  7575. extra: 306 / 226
  7576. }
  7577. },
  7578. },
  7579. [
  7580. {
  7581. name: "Normal",
  7582. height: math.unit(6, "cm"),
  7583. default: true
  7584. },
  7585. ]
  7586. ))
  7587. characterMakers.push(() => makeCharacter(
  7588. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7589. {
  7590. front: {
  7591. height: math.unit(6, "feet"),
  7592. weight: math.unit(100, "lbs"),
  7593. name: "Front",
  7594. image: {
  7595. source: "./media/characters/selka/front.svg",
  7596. extra: 947 / 887
  7597. }
  7598. }
  7599. },
  7600. [
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(5, "cm"),
  7604. default: true
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(8 + 3 / 12, "feet"),
  7613. weight: math.unit(424, "lbs"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/verin/front.svg",
  7617. extra: 1845 / 1550
  7618. }
  7619. },
  7620. frontArmored: {
  7621. height: math.unit(8 + 3 / 12, "feet"),
  7622. weight: math.unit(424, "lbs"),
  7623. name: "Front (Armored)",
  7624. image: {
  7625. source: "./media/characters/verin/front-armor.svg",
  7626. extra: 1845 / 1550,
  7627. bottom: 0.01
  7628. }
  7629. },
  7630. back: {
  7631. height: math.unit(8 + 3 / 12, "feet"),
  7632. weight: math.unit(424, "lbs"),
  7633. name: "Back",
  7634. image: {
  7635. source: "./media/characters/verin/back.svg",
  7636. bottom: 0.1,
  7637. extra: 1
  7638. }
  7639. },
  7640. foot: {
  7641. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7642. name: "Foot",
  7643. image: {
  7644. source: "./media/characters/verin/foot.svg"
  7645. }
  7646. },
  7647. },
  7648. [
  7649. {
  7650. name: "Normal",
  7651. height: math.unit(8 + 3 / 12, "feet")
  7652. },
  7653. {
  7654. name: "Minimacro",
  7655. height: math.unit(21, "feet"),
  7656. default: true
  7657. },
  7658. {
  7659. name: "Macro",
  7660. height: math.unit(626, "feet")
  7661. },
  7662. ]
  7663. ))
  7664. characterMakers.push(() => makeCharacter(
  7665. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7666. {
  7667. front: {
  7668. height: math.unit(2.718, "meters"),
  7669. weight: math.unit(150, "lbs"),
  7670. name: "Front",
  7671. image: {
  7672. source: "./media/characters/sovrim-terraquian/front.svg"
  7673. }
  7674. },
  7675. back: {
  7676. height: math.unit(2.718, "meters"),
  7677. weight: math.unit(150, "lbs"),
  7678. name: "Back",
  7679. image: {
  7680. source: "./media/characters/sovrim-terraquian/back.svg"
  7681. }
  7682. }
  7683. },
  7684. [
  7685. {
  7686. name: "Micro",
  7687. height: math.unit(2, "inches")
  7688. },
  7689. {
  7690. name: "Small",
  7691. height: math.unit(1, "meter")
  7692. },
  7693. {
  7694. name: "Normal",
  7695. height: math.unit(Math.E, "meters"),
  7696. default: true
  7697. },
  7698. {
  7699. name: "Macro",
  7700. height: math.unit(20, "meters")
  7701. },
  7702. {
  7703. name: "Macro+",
  7704. height: math.unit(400, "meters")
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(7, "feet"),
  7713. weight: math.unit(489, "lbs"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/reece-silvermane/front.svg",
  7717. bottom: 0.02,
  7718. extra: 1
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(1.5, "miles"),
  7726. default: true
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7732. {
  7733. front: {
  7734. height: math.unit(6, "feet"),
  7735. weight: math.unit(78, "kg"),
  7736. name: "Front",
  7737. image: {
  7738. source: "./media/characters/kane/front.svg",
  7739. extra: 978 / 899
  7740. }
  7741. },
  7742. },
  7743. [
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(2.1, "m"),
  7747. },
  7748. {
  7749. name: "Macro",
  7750. height: math.unit(1, "km"),
  7751. default: true
  7752. },
  7753. ]
  7754. ))
  7755. characterMakers.push(() => makeCharacter(
  7756. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7757. {
  7758. front: {
  7759. height: math.unit(6, "feet"),
  7760. weight: math.unit(200, "kg"),
  7761. name: "Front",
  7762. image: {
  7763. source: "./media/characters/tegon/front.svg",
  7764. bottom: 0.01,
  7765. extra: 1
  7766. }
  7767. },
  7768. },
  7769. [
  7770. {
  7771. name: "Micro",
  7772. height: math.unit(1, "inch")
  7773. },
  7774. {
  7775. name: "Normal",
  7776. height: math.unit(6 + 3 / 12, "feet"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Macro",
  7781. height: math.unit(300, "feet")
  7782. },
  7783. {
  7784. name: "Megamacro",
  7785. height: math.unit(69, "miles")
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7791. {
  7792. side: {
  7793. height: math.unit(6, "feet"),
  7794. weight: math.unit(2304, "lbs"),
  7795. name: "Side",
  7796. image: {
  7797. source: "./media/characters/arcturax/side.svg",
  7798. extra: 790 / 376,
  7799. bottom: 0.01
  7800. }
  7801. },
  7802. },
  7803. [
  7804. {
  7805. name: "Micro",
  7806. height: math.unit(2, "inch")
  7807. },
  7808. {
  7809. name: "Normal",
  7810. height: math.unit(6, "feet")
  7811. },
  7812. {
  7813. name: "Macro",
  7814. height: math.unit(39, "feet"),
  7815. default: true
  7816. },
  7817. {
  7818. name: "Megamacro",
  7819. height: math.unit(7, "miles")
  7820. },
  7821. ]
  7822. ))
  7823. characterMakers.push(() => makeCharacter(
  7824. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7825. {
  7826. front: {
  7827. height: math.unit(6, "feet"),
  7828. weight: math.unit(50, "lbs"),
  7829. name: "Front",
  7830. image: {
  7831. source: "./media/characters/sentri/front.svg",
  7832. extra: 1750 / 1570,
  7833. bottom: 0.025
  7834. }
  7835. },
  7836. frontAlt: {
  7837. height: math.unit(6, "feet"),
  7838. weight: math.unit(50, "lbs"),
  7839. name: "Front (Alt)",
  7840. image: {
  7841. source: "./media/characters/sentri/front-alt.svg",
  7842. extra: 1750 / 1570,
  7843. bottom: 0.025
  7844. }
  7845. },
  7846. },
  7847. [
  7848. {
  7849. name: "Normal",
  7850. height: math.unit(15, "feet"),
  7851. default: true
  7852. },
  7853. {
  7854. name: "Macro",
  7855. height: math.unit(2500, "feet")
  7856. }
  7857. ]
  7858. ))
  7859. characterMakers.push(() => makeCharacter(
  7860. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7861. {
  7862. front: {
  7863. height: math.unit(5 + 8 / 12, "feet"),
  7864. weight: math.unit(130, "lbs"),
  7865. name: "Front",
  7866. image: {
  7867. source: "./media/characters/corvin/front.svg",
  7868. extra: 1803 / 1629
  7869. }
  7870. },
  7871. frontShirt: {
  7872. height: math.unit(5 + 8 / 12, "feet"),
  7873. weight: math.unit(130, "lbs"),
  7874. name: "Front (Shirt)",
  7875. image: {
  7876. source: "./media/characters/corvin/front-shirt.svg",
  7877. extra: 1803 / 1629
  7878. }
  7879. },
  7880. frontPoncho: {
  7881. height: math.unit(5 + 8 / 12, "feet"),
  7882. weight: math.unit(130, "lbs"),
  7883. name: "Front (Poncho)",
  7884. image: {
  7885. source: "./media/characters/corvin/front-poncho.svg",
  7886. extra: 1803 / 1629
  7887. }
  7888. },
  7889. side: {
  7890. height: math.unit(5 + 8 / 12, "feet"),
  7891. weight: math.unit(130, "lbs"),
  7892. name: "Side",
  7893. image: {
  7894. source: "./media/characters/corvin/side.svg",
  7895. extra: 1012 / 945
  7896. }
  7897. },
  7898. back: {
  7899. height: math.unit(5 + 8 / 12, "feet"),
  7900. weight: math.unit(130, "lbs"),
  7901. name: "Back",
  7902. image: {
  7903. source: "./media/characters/corvin/back.svg",
  7904. extra: 1803 / 1629
  7905. }
  7906. },
  7907. },
  7908. [
  7909. {
  7910. name: "Micro",
  7911. height: math.unit(3, "inches")
  7912. },
  7913. {
  7914. name: "Normal",
  7915. height: math.unit(5 + 8 / 12, "feet")
  7916. },
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(300, "feet"),
  7920. default: true
  7921. },
  7922. {
  7923. name: "Megamacro",
  7924. height: math.unit(500, "miles")
  7925. }
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7930. {
  7931. front: {
  7932. height: math.unit(6, "feet"),
  7933. weight: math.unit(135, "lbs"),
  7934. name: "Front",
  7935. image: {
  7936. source: "./media/characters/q/front.svg",
  7937. extra: 854 / 752,
  7938. bottom: 0.005
  7939. }
  7940. },
  7941. back: {
  7942. height: math.unit(6, "feet"),
  7943. weight: math.unit(130, "lbs"),
  7944. name: "Back",
  7945. image: {
  7946. source: "./media/characters/q/back.svg",
  7947. extra: 854 / 752
  7948. }
  7949. },
  7950. },
  7951. [
  7952. {
  7953. name: "Macro",
  7954. height: math.unit(90, "feet"),
  7955. default: true
  7956. },
  7957. {
  7958. name: "Extra Macro",
  7959. height: math.unit(300, "feet"),
  7960. },
  7961. {
  7962. name: "BIG WALF",
  7963. height: math.unit(750, "feet"),
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7969. {
  7970. front: {
  7971. height: math.unit(6, "feet"),
  7972. weight: math.unit(150, "lbs"),
  7973. name: "Front",
  7974. image: {
  7975. source: "./media/characters/carley/front.svg",
  7976. extra: 3927 / 3540,
  7977. bottom: 29.2 / 735
  7978. }
  7979. }
  7980. },
  7981. [
  7982. {
  7983. name: "Normal",
  7984. height: math.unit(6 + 3 / 12, "feet")
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(185, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Megamacro",
  7993. height: math.unit(8, "miles"),
  7994. },
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7999. {
  8000. front: {
  8001. height: math.unit(3, "feet"),
  8002. weight: math.unit(28, "lbs"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/citrine/front.svg"
  8006. }
  8007. }
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(3, "feet"),
  8013. default: true
  8014. }
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8019. {
  8020. front: {
  8021. height: math.unit(14, "feet"),
  8022. weight: math.unit(1450, "kg"),
  8023. capacity: math.unit(15, "people"),
  8024. name: "Front",
  8025. image: {
  8026. source: "./media/characters/aura-starwind/front.svg",
  8027. extra: 1455 / 1335
  8028. }
  8029. },
  8030. side: {
  8031. height: math.unit(14, "feet"),
  8032. weight: math.unit(1450, "kg"),
  8033. capacity: math.unit(15, "people"),
  8034. name: "Side",
  8035. image: {
  8036. source: "./media/characters/aura-starwind/side.svg",
  8037. extra: 1654 / 1497
  8038. }
  8039. },
  8040. taur: {
  8041. height: math.unit(18, "feet"),
  8042. weight: math.unit(5500, "kg"),
  8043. capacity: math.unit(50, "people"),
  8044. name: "Taur",
  8045. image: {
  8046. source: "./media/characters/aura-starwind/taur.svg",
  8047. extra: 1760 / 1650
  8048. }
  8049. },
  8050. feral: {
  8051. height: math.unit(46, "feet"),
  8052. weight: math.unit(25000, "kg"),
  8053. capacity: math.unit(120, "people"),
  8054. name: "Feral",
  8055. image: {
  8056. source: "./media/characters/aura-starwind/feral.svg"
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(14, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(50, "meters")
  8069. },
  8070. {
  8071. name: "Megamacro",
  8072. height: math.unit(5000, "meters")
  8073. },
  8074. {
  8075. name: "Gigamacro",
  8076. height: math.unit(100000, "kilometers")
  8077. },
  8078. ]
  8079. ))
  8080. characterMakers.push(() => makeCharacter(
  8081. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8082. {
  8083. front: {
  8084. height: math.unit(2 + 7 / 12, "feet"),
  8085. weight: math.unit(32, "lbs"),
  8086. name: "Front",
  8087. image: {
  8088. source: "./media/characters/rivet/front.svg",
  8089. extra: 1716 / 1658,
  8090. bottom: 0.03
  8091. }
  8092. },
  8093. foot: {
  8094. height: math.unit(0.551, "feet"),
  8095. name: "Rivet's Foot",
  8096. image: {
  8097. source: "./media/characters/rivet/foot.svg"
  8098. },
  8099. rename: true
  8100. }
  8101. },
  8102. [
  8103. {
  8104. name: "Micro",
  8105. height: math.unit(1.5, "inches"),
  8106. },
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(2 + 7 / 12, "feet"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Macro",
  8114. height: math.unit(85, "feet")
  8115. },
  8116. {
  8117. name: "Megamacro",
  8118. height: math.unit(2.2, "km")
  8119. }
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8124. {
  8125. front: {
  8126. height: math.unit(5 + 9 / 12, "feet"),
  8127. weight: math.unit(150, "lbs"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/coffee/front.svg",
  8131. extra: 3666 / 3032,
  8132. bottom: 0.04
  8133. }
  8134. },
  8135. foot: {
  8136. height: math.unit(1.29, "feet"),
  8137. name: "Foot",
  8138. image: {
  8139. source: "./media/characters/coffee/foot.svg"
  8140. }
  8141. },
  8142. },
  8143. [
  8144. {
  8145. name: "Micro",
  8146. height: math.unit(2, "inches"),
  8147. },
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(5 + 9 / 12, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Macro",
  8155. height: math.unit(800, "feet")
  8156. },
  8157. {
  8158. name: "Megamacro",
  8159. height: math.unit(25, "miles")
  8160. }
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8165. {
  8166. front: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(200, "lbs"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/chari-gal/front.svg",
  8172. extra: 1568 / 1385,
  8173. bottom: 0.047
  8174. }
  8175. },
  8176. gigantamax: {
  8177. height: math.unit(6 * 16, "feet"),
  8178. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8179. name: "Gigantamax",
  8180. image: {
  8181. source: "./media/characters/chari-gal/gigantamax.svg",
  8182. extra: 1124 / 888,
  8183. bottom: 0.03
  8184. }
  8185. },
  8186. },
  8187. [
  8188. {
  8189. name: "Normal",
  8190. height: math.unit(5 + 7 / 12, "feet")
  8191. },
  8192. {
  8193. name: "Macro",
  8194. height: math.unit(200, "feet"),
  8195. default: true
  8196. }
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(150, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/nova/front.svg",
  8208. extra: 5000 / 4722,
  8209. bottom: 0.02
  8210. }
  8211. }
  8212. },
  8213. [
  8214. {
  8215. name: "Micro-",
  8216. height: math.unit(0.8, "inches")
  8217. },
  8218. {
  8219. name: "Micro",
  8220. height: math.unit(2, "inches"),
  8221. default: true
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(3 + 1 / 12, "feet"),
  8230. weight: math.unit(21.7, "lbs"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/argent/front.svg",
  8234. extra: 1471 / 1331,
  8235. bottom: 100.8 / 1575.5
  8236. }
  8237. }
  8238. },
  8239. [
  8240. {
  8241. name: "Micro",
  8242. height: math.unit(2, "inches")
  8243. },
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(3 + 1 / 12, "feet"),
  8247. default: true
  8248. },
  8249. {
  8250. name: "Macro",
  8251. height: math.unit(120, "feet")
  8252. },
  8253. ]
  8254. ))
  8255. characterMakers.push(() => makeCharacter(
  8256. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8257. {
  8258. lamp: {
  8259. height: math.unit(7 * 1559 / 989, "feet"),
  8260. name: "Magic Lamp",
  8261. image: {
  8262. source: "./media/characters/mira-al-cul/lamp.svg",
  8263. extra: 1617 / 1559
  8264. }
  8265. },
  8266. front: {
  8267. height: math.unit(7, "feet"),
  8268. name: "Front",
  8269. image: {
  8270. source: "./media/characters/mira-al-cul/front.svg",
  8271. extra: 1044 / 990
  8272. }
  8273. },
  8274. },
  8275. [
  8276. {
  8277. name: "Heavily Restricted",
  8278. height: math.unit(7 * 1559 / 989, "feet")
  8279. },
  8280. {
  8281. name: "Freshly Freed",
  8282. height: math.unit(50 * 1559 / 989, "feet")
  8283. },
  8284. {
  8285. name: "World Encompassing",
  8286. height: math.unit(10000 * 1559 / 989, "miles")
  8287. },
  8288. {
  8289. name: "Galactic",
  8290. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8291. },
  8292. {
  8293. name: "Palmed Universe",
  8294. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8295. default: true
  8296. },
  8297. {
  8298. name: "Multiversal Matriarch",
  8299. height: math.unit(8.87e10, "yottameters")
  8300. },
  8301. {
  8302. name: "Void Mother",
  8303. height: math.unit(3.14e110, "yottaparsecs")
  8304. },
  8305. {
  8306. name: "Toying with Transcendence",
  8307. height: math.unit(1e307, "meters")
  8308. },
  8309. ]
  8310. ))
  8311. characterMakers.push(() => makeCharacter(
  8312. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8313. {
  8314. front: {
  8315. height: math.unit(17 + 1 / 12, "feet"),
  8316. weight: math.unit(476.2 * 5, "lbs"),
  8317. name: "Front",
  8318. image: {
  8319. source: "./media/characters/kuro-shi-uchū/front.svg",
  8320. extra: 2329 / 1835,
  8321. bottom: 0.02
  8322. }
  8323. },
  8324. },
  8325. [
  8326. {
  8327. name: "Micro",
  8328. height: math.unit(2, "inches")
  8329. },
  8330. {
  8331. name: "Normal",
  8332. height: math.unit(12, "meters")
  8333. },
  8334. {
  8335. name: "Planetary",
  8336. height: math.unit(0.00929, "AU"),
  8337. default: true
  8338. },
  8339. {
  8340. name: "Universal",
  8341. height: math.unit(20, "gigaparsecs")
  8342. },
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8347. {
  8348. front: {
  8349. height: math.unit(5 + 2 / 12, "feet"),
  8350. weight: math.unit(120, "lbs"),
  8351. name: "Front",
  8352. image: {
  8353. source: "./media/characters/katherine/front.svg",
  8354. extra: 2075 / 1969
  8355. }
  8356. },
  8357. dress: {
  8358. height: math.unit(5 + 2 / 12, "feet"),
  8359. weight: math.unit(120, "lbs"),
  8360. name: "Dress",
  8361. image: {
  8362. source: "./media/characters/katherine/dress.svg",
  8363. extra: 2258 / 2064
  8364. }
  8365. },
  8366. },
  8367. [
  8368. {
  8369. name: "Micro",
  8370. height: math.unit(1, "inches"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(5 + 2 / 12, "feet")
  8376. },
  8377. {
  8378. name: "Macro",
  8379. height: math.unit(100, "meters")
  8380. },
  8381. {
  8382. name: "Megamacro",
  8383. height: math.unit(80, "miles")
  8384. },
  8385. ]
  8386. ))
  8387. characterMakers.push(() => makeCharacter(
  8388. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8389. {
  8390. front: {
  8391. height: math.unit(7 + 8 / 12, "feet"),
  8392. weight: math.unit(250, "lbs"),
  8393. name: "Front",
  8394. image: {
  8395. source: "./media/characters/yevis/front.svg",
  8396. extra: 1938 / 1755
  8397. }
  8398. }
  8399. },
  8400. [
  8401. {
  8402. name: "Mortal",
  8403. height: math.unit(7 + 8 / 12, "feet")
  8404. },
  8405. {
  8406. name: "Battle",
  8407. height: math.unit(25 + 11 / 12, "feet")
  8408. },
  8409. {
  8410. name: "Wrath",
  8411. height: math.unit(1654 + 11 / 12, "feet")
  8412. },
  8413. {
  8414. name: "Planet Destroyer",
  8415. height: math.unit(12000, "miles")
  8416. },
  8417. {
  8418. name: "Galaxy Conqueror",
  8419. height: math.unit(1.45, "zettameters"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Universal War",
  8424. height: math.unit(184, "gigaparsecs")
  8425. },
  8426. {
  8427. name: "Eternity War",
  8428. height: math.unit(1.98e55, "yottaparsecs")
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(5 + 8 / 12, "feet"),
  8437. weight: math.unit(63, "kg"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/xavier/front.svg",
  8441. extra: 944 / 883
  8442. }
  8443. },
  8444. frontStretch: {
  8445. height: math.unit(5 + 8 / 12, "feet"),
  8446. weight: math.unit(63, "kg"),
  8447. name: "Stretching",
  8448. image: {
  8449. source: "./media/characters/xavier/front-stretch.svg",
  8450. extra: 962 / 820
  8451. }
  8452. },
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(5 + 8 / 12, "feet")
  8458. },
  8459. {
  8460. name: "Macro",
  8461. height: math.unit(100, "meters"),
  8462. default: true
  8463. },
  8464. {
  8465. name: "McLargeHuge",
  8466. height: math.unit(10, "miles")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8472. {
  8473. front: {
  8474. height: math.unit(5 + 5 / 12, "feet"),
  8475. weight: math.unit(150, "lb"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/joshii/front.svg",
  8479. extra: 765 / 653,
  8480. bottom: 51 / 816
  8481. }
  8482. },
  8483. foot: {
  8484. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8485. name: "Foot",
  8486. image: {
  8487. source: "./media/characters/joshii/foot.svg"
  8488. }
  8489. },
  8490. },
  8491. [
  8492. {
  8493. name: "Micro",
  8494. height: math.unit(2, "inches"),
  8495. default: true
  8496. },
  8497. {
  8498. name: "Normal",
  8499. height: math.unit(5 + 5 / 12, "feet")
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(785, "feet")
  8504. },
  8505. {
  8506. name: "Megamacro",
  8507. height: math.unit(24.5, "miles")
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(6, "feet"),
  8516. weight: math.unit(150, "lb"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/goddess-elizabeth/front.svg",
  8520. extra: 1800 / 1525,
  8521. bottom: 0.005
  8522. }
  8523. },
  8524. foot: {
  8525. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8526. name: "Foot",
  8527. image: {
  8528. source: "./media/characters/goddess-elizabeth/foot.svg"
  8529. }
  8530. },
  8531. mouth: {
  8532. height: math.unit(6, "feet"),
  8533. name: "Mouth",
  8534. image: {
  8535. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8536. }
  8537. },
  8538. },
  8539. [
  8540. {
  8541. name: "Micro",
  8542. height: math.unit(12, "feet")
  8543. },
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(80, "miles"),
  8547. default: true
  8548. },
  8549. {
  8550. name: "Macro",
  8551. height: math.unit(15000, "parsecs")
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8557. {
  8558. front: {
  8559. height: math.unit(5 + 9 / 12, "feet"),
  8560. weight: math.unit(144, "lb"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/kara/front.svg"
  8564. }
  8565. },
  8566. feet: {
  8567. height: math.unit(6 / 6.765, "feet"),
  8568. name: "Kara's Feet",
  8569. rename: true,
  8570. image: {
  8571. source: "./media/characters/kara/feet.svg"
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(5 + 9 / 12, "feet")
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(174, "feet"),
  8583. default: true
  8584. },
  8585. ]
  8586. ))
  8587. characterMakers.push(() => makeCharacter(
  8588. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8589. {
  8590. front: {
  8591. height: math.unit(18, "feet"),
  8592. weight: math.unit(4050, "lb"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/tyrone/front.svg",
  8596. extra: 2405 / 2270,
  8597. bottom: 182 / 2587
  8598. }
  8599. },
  8600. },
  8601. [
  8602. {
  8603. name: "Normal",
  8604. height: math.unit(18, "feet"),
  8605. default: true
  8606. },
  8607. {
  8608. name: "Macro",
  8609. height: math.unit(300, "feet")
  8610. },
  8611. {
  8612. name: "Megamacro",
  8613. height: math.unit(15, "km")
  8614. },
  8615. {
  8616. name: "Gigamacro",
  8617. height: math.unit(500, "km")
  8618. },
  8619. {
  8620. name: "Teramacro",
  8621. height: math.unit(0.5, "gigameters")
  8622. },
  8623. {
  8624. name: "Omnimacro",
  8625. height: math.unit(1e252, "yottauniverse")
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(7 + 8 / 12, "feet"),
  8634. weight: math.unit(120, "lb"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/danny/front.svg",
  8638. extra: 1490 / 1350
  8639. }
  8640. },
  8641. back: {
  8642. height: math.unit(7 + 8 / 12, "feet"),
  8643. weight: math.unit(120, "lb"),
  8644. name: "Back",
  8645. image: {
  8646. source: "./media/characters/danny/back.svg",
  8647. extra: 1490 / 1350
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(7 + 8 / 12, "feet"),
  8655. default: true
  8656. },
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8661. {
  8662. front: {
  8663. height: math.unit(3.5, "inches"),
  8664. weight: math.unit(19, "grams"),
  8665. name: "Front",
  8666. image: {
  8667. source: "./media/characters/mallow/front.svg",
  8668. extra: 471 / 431
  8669. }
  8670. },
  8671. back: {
  8672. height: math.unit(3.5, "inches"),
  8673. weight: math.unit(19, "grams"),
  8674. name: "Back",
  8675. image: {
  8676. source: "./media/characters/mallow/back.svg",
  8677. extra: 471 / 431
  8678. }
  8679. },
  8680. },
  8681. [
  8682. {
  8683. name: "Normal",
  8684. height: math.unit(3.5, "inches"),
  8685. default: true
  8686. },
  8687. ]
  8688. ))
  8689. characterMakers.push(() => makeCharacter(
  8690. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8691. {
  8692. front: {
  8693. height: math.unit(9, "feet"),
  8694. weight: math.unit(230, "kg"),
  8695. name: "Front",
  8696. image: {
  8697. source: "./media/characters/starry-aqua/front.svg"
  8698. }
  8699. },
  8700. back: {
  8701. height: math.unit(9, "feet"),
  8702. weight: math.unit(230, "kg"),
  8703. name: "Back",
  8704. image: {
  8705. source: "./media/characters/starry-aqua/back.svg"
  8706. }
  8707. },
  8708. hand: {
  8709. height: math.unit(9 * 0.1168, "feet"),
  8710. name: "Hand",
  8711. image: {
  8712. source: "./media/characters/starry-aqua/hand.svg"
  8713. }
  8714. },
  8715. foot: {
  8716. height: math.unit(9 * 0.18, "feet"),
  8717. name: "Foot",
  8718. image: {
  8719. source: "./media/characters/starry-aqua/foot.svg"
  8720. }
  8721. }
  8722. },
  8723. [
  8724. {
  8725. name: "Micro",
  8726. height: math.unit(3, "inches")
  8727. },
  8728. {
  8729. name: "Normal",
  8730. height: math.unit(9, "feet")
  8731. },
  8732. {
  8733. name: "Macro",
  8734. height: math.unit(300, "feet"),
  8735. default: true
  8736. },
  8737. {
  8738. name: "Megamacro",
  8739. height: math.unit(3200, "feet")
  8740. }
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(230, "lb"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/luka/front.svg",
  8752. extra: 1,
  8753. bottom: 0.025
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Normal",
  8760. height: math.unit(12 + 8 / 12, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Minimacro",
  8765. height: math.unit(20, "feet")
  8766. },
  8767. {
  8768. name: "Macro",
  8769. height: math.unit(250, "feet")
  8770. },
  8771. {
  8772. name: "Megamacro",
  8773. height: math.unit(5, "miles")
  8774. },
  8775. {
  8776. name: "Gigamacro",
  8777. height: math.unit(8000, "miles")
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(150, "lb"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/natalie-nightring/front.svg",
  8790. extra: 1,
  8791. bottom: 0.06
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Uh Oh",
  8798. height: math.unit(0.1, "mm")
  8799. },
  8800. {
  8801. name: "Small",
  8802. height: math.unit(3, "inches")
  8803. },
  8804. {
  8805. name: "Human Scale",
  8806. height: math.unit(6, "feet")
  8807. },
  8808. {
  8809. name: "Librarian",
  8810. height: math.unit(50, "feet"),
  8811. default: true
  8812. },
  8813. {
  8814. name: "Immense",
  8815. height: math.unit(200, "miles")
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(6, "feet"),
  8824. weight: math.unit(180, "lbs"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/danni-rosie/front.svg",
  8828. extra: 1260 / 1128,
  8829. bottom: 0.022
  8830. }
  8831. },
  8832. },
  8833. [
  8834. {
  8835. name: "Micro",
  8836. height: math.unit(2, "inches"),
  8837. default: true
  8838. },
  8839. ]
  8840. ))
  8841. characterMakers.push(() => makeCharacter(
  8842. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8843. {
  8844. front: {
  8845. height: math.unit(5 + 9 / 12, "feet"),
  8846. weight: math.unit(220, "lb"),
  8847. name: "Front",
  8848. image: {
  8849. source: "./media/characters/samantha-kruse/front.svg",
  8850. extra: (985 / 935),
  8851. bottom: 0.03
  8852. }
  8853. },
  8854. frontUndressed: {
  8855. height: math.unit(5 + 9 / 12, "feet"),
  8856. weight: math.unit(220, "lb"),
  8857. name: "Front (Undressed)",
  8858. image: {
  8859. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8860. extra: (973 / 923),
  8861. bottom: 0.025
  8862. }
  8863. },
  8864. fat: {
  8865. height: math.unit(5 + 9 / 12, "feet"),
  8866. weight: math.unit(900, "lb"),
  8867. name: "Front (Fat)",
  8868. image: {
  8869. source: "./media/characters/samantha-kruse/fat.svg",
  8870. extra: 2688 / 2561
  8871. }
  8872. },
  8873. },
  8874. [
  8875. {
  8876. name: "Normal",
  8877. height: math.unit(5 + 9 / 12, "feet"),
  8878. default: true
  8879. }
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8884. {
  8885. back: {
  8886. height: math.unit(5 + 4 / 12, "feet"),
  8887. weight: math.unit(4963, "lb"),
  8888. name: "Back",
  8889. image: {
  8890. source: "./media/characters/amelia-rosie/back.svg",
  8891. extra: 1113 / 963,
  8892. bottom: 0.01
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Level 0",
  8899. height: math.unit(5 + 4 / 12, "feet")
  8900. },
  8901. {
  8902. name: "Level 1",
  8903. height: math.unit(164597, "feet"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Level 2",
  8908. height: math.unit(956243, "miles")
  8909. },
  8910. {
  8911. name: "Level 3",
  8912. height: math.unit(29421709423, "miles")
  8913. },
  8914. {
  8915. name: "Level 4",
  8916. height: math.unit(154, "lightyears")
  8917. },
  8918. {
  8919. name: "Level 5",
  8920. height: math.unit(4738272, "lightyears")
  8921. },
  8922. {
  8923. name: "Level 6",
  8924. height: math.unit(145787152896, "lightyears")
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(5 + 11 / 12, "feet"),
  8933. weight: math.unit(65, "kg"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/rook-kitara/front.svg",
  8937. extra: 1347 / 1274,
  8938. bottom: 0.005
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Totally Unfair",
  8945. height: math.unit(1.8, "mm")
  8946. },
  8947. {
  8948. name: "Lap Rookie",
  8949. height: math.unit(1.4, "feet")
  8950. },
  8951. {
  8952. name: "Normal",
  8953. height: math.unit(5 + 11 / 12, "feet"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "How Did This Happen",
  8958. height: math.unit(80, "miles")
  8959. }
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8964. {
  8965. front: {
  8966. height: math.unit(7, "feet"),
  8967. weight: math.unit(300, "lb"),
  8968. name: "Front",
  8969. image: {
  8970. source: "./media/characters/pisces/front.svg",
  8971. extra: 2255 / 2115,
  8972. bottom: 0.03
  8973. }
  8974. },
  8975. back: {
  8976. height: math.unit(7, "feet"),
  8977. weight: math.unit(300, "lb"),
  8978. name: "Back",
  8979. image: {
  8980. source: "./media/characters/pisces/back.svg",
  8981. extra: 2146 / 2055,
  8982. bottom: 0.04
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(7, "feet"),
  8990. default: true
  8991. },
  8992. {
  8993. name: "Swimming Pool",
  8994. height: math.unit(12.2, "meters")
  8995. },
  8996. {
  8997. name: "Olympic Swimming Pool",
  8998. height: math.unit(56.3, "meters")
  8999. },
  9000. {
  9001. name: "Lake Superior",
  9002. height: math.unit(93900, "meters")
  9003. },
  9004. {
  9005. name: "Mediterranean Sea",
  9006. height: math.unit(644457, "meters")
  9007. },
  9008. {
  9009. name: "World's Oceans",
  9010. height: math.unit(4567491, "meters")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(2.3, "meters"),
  9019. weight: math.unit(120, "kg"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/zelas/front.svg"
  9023. }
  9024. },
  9025. side: {
  9026. height: math.unit(2.3, "meters"),
  9027. weight: math.unit(120, "kg"),
  9028. name: "Side",
  9029. image: {
  9030. source: "./media/characters/zelas/side.svg"
  9031. }
  9032. },
  9033. back: {
  9034. height: math.unit(2.3, "meters"),
  9035. weight: math.unit(120, "kg"),
  9036. name: "Back",
  9037. image: {
  9038. source: "./media/characters/zelas/back.svg"
  9039. }
  9040. },
  9041. foot: {
  9042. height: math.unit(1.116, "feet"),
  9043. name: "Foot",
  9044. image: {
  9045. source: "./media/characters/zelas/foot.svg"
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Normal",
  9052. height: math.unit(2.3, "meters")
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(30, "meters"),
  9057. default: true
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9063. {
  9064. front: {
  9065. height: math.unit(1, "inch"),
  9066. weight: math.unit(0.21, "grams"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/talbot/front.svg",
  9070. extra: 594 / 544
  9071. }
  9072. },
  9073. },
  9074. [
  9075. {
  9076. name: "Micro",
  9077. height: math.unit(1, "inch"),
  9078. default: true
  9079. },
  9080. ]
  9081. ))
  9082. characterMakers.push(() => makeCharacter(
  9083. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9084. {
  9085. front: {
  9086. height: math.unit(3 + 3 / 12, "feet"),
  9087. weight: math.unit(51.8, "lb"),
  9088. name: "Front",
  9089. image: {
  9090. source: "./media/characters/fliss/front.svg",
  9091. extra: 840 / 640
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Teeny Tiny",
  9098. height: math.unit(1, "mm")
  9099. },
  9100. {
  9101. name: "Small",
  9102. height: math.unit(1, "inch"),
  9103. default: true
  9104. },
  9105. {
  9106. name: "Standard Sylveon",
  9107. height: math.unit(3 + 3 / 12, "feet")
  9108. },
  9109. {
  9110. name: "Large Nuisance",
  9111. height: math.unit(33, "feet")
  9112. },
  9113. {
  9114. name: "City Filler",
  9115. height: math.unit(3000, "feet")
  9116. },
  9117. {
  9118. name: "New Horizon",
  9119. height: math.unit(6000, "miles")
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(5, "cm"),
  9128. weight: math.unit(1.94, "g"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/fleta/front.svg",
  9132. extra: 835 / 803
  9133. }
  9134. },
  9135. back: {
  9136. height: math.unit(5, "cm"),
  9137. weight: math.unit(1.94, "g"),
  9138. name: "Back",
  9139. image: {
  9140. source: "./media/characters/fleta/back.svg",
  9141. extra: 835 / 803
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Micro",
  9148. height: math.unit(5, "cm"),
  9149. default: true
  9150. },
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(225, "lb"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/dominic/front.svg",
  9162. extra: 1770 / 1620,
  9163. bottom: 0.025
  9164. }
  9165. },
  9166. back: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(225, "lb"),
  9169. name: "Back",
  9170. image: {
  9171. source: "./media/characters/dominic/back.svg",
  9172. extra: 1745 / 1620,
  9173. bottom: 0.065
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Nano",
  9180. height: math.unit(0.1, "mm")
  9181. },
  9182. {
  9183. name: "Micro-",
  9184. height: math.unit(1, "mm")
  9185. },
  9186. {
  9187. name: "Micro",
  9188. height: math.unit(4, "inches")
  9189. },
  9190. {
  9191. name: "Normal",
  9192. height: math.unit(6 + 4 / 12, "feet"),
  9193. default: true
  9194. },
  9195. {
  9196. name: "Macro",
  9197. height: math.unit(115, "feet")
  9198. },
  9199. {
  9200. name: "Macro+",
  9201. height: math.unit(955, "feet")
  9202. },
  9203. {
  9204. name: "Megamacro",
  9205. height: math.unit(8990, "feet")
  9206. },
  9207. {
  9208. name: "Gigmacro",
  9209. height: math.unit(9310, "miles")
  9210. },
  9211. {
  9212. name: "Teramacro",
  9213. height: math.unit(1567005010, "miles")
  9214. },
  9215. {
  9216. name: "Examacro",
  9217. height: math.unit(1425, "parsecs")
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9223. {
  9224. front: {
  9225. height: math.unit(400, "feet"),
  9226. weight: math.unit(44444444, "lb"),
  9227. name: "Front",
  9228. image: {
  9229. source: "./media/characters/major-colonel/front.svg"
  9230. }
  9231. },
  9232. back: {
  9233. height: math.unit(400, "feet"),
  9234. weight: math.unit(44444444, "lb"),
  9235. name: "Back",
  9236. image: {
  9237. source: "./media/characters/major-colonel/back.svg"
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Macro",
  9244. height: math.unit(400, "feet"),
  9245. default: true
  9246. },
  9247. ]
  9248. ))
  9249. characterMakers.push(() => makeCharacter(
  9250. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9251. {
  9252. catFront: {
  9253. height: math.unit(6, "feet"),
  9254. weight: math.unit(120, "lb"),
  9255. name: "Front (Cat Side)",
  9256. image: {
  9257. source: "./media/characters/axel-lycan/cat-front.svg",
  9258. extra: 430 / 402,
  9259. bottom: 43 / 472.35
  9260. }
  9261. },
  9262. catBack: {
  9263. height: math.unit(6, "feet"),
  9264. weight: math.unit(120, "lb"),
  9265. name: "Back (Cat Side)",
  9266. image: {
  9267. source: "./media/characters/axel-lycan/cat-back.svg",
  9268. extra: 447 / 419,
  9269. bottom: 23.3 / 469
  9270. }
  9271. },
  9272. wolfFront: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(120, "lb"),
  9275. name: "Front (Wolf Side)",
  9276. image: {
  9277. source: "./media/characters/axel-lycan/wolf-front.svg",
  9278. extra: 485 / 456,
  9279. bottom: 19 / 504
  9280. }
  9281. },
  9282. wolfBack: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(120, "lb"),
  9285. name: "Back (Wolf Side)",
  9286. image: {
  9287. source: "./media/characters/axel-lycan/wolf-back.svg",
  9288. extra: 475 / 438,
  9289. bottom: 39.2 / 514
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Macro",
  9296. height: math.unit(1, "km"),
  9297. default: true
  9298. },
  9299. ]
  9300. ))
  9301. characterMakers.push(() => makeCharacter(
  9302. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9303. {
  9304. front: {
  9305. height: math.unit(5 + 9 / 12, "feet"),
  9306. weight: math.unit(175, "lb"),
  9307. name: "Front",
  9308. image: {
  9309. source: "./media/characters/vanrel-hyena/front.svg",
  9310. extra: 1086 / 1010,
  9311. bottom: 0.04
  9312. }
  9313. },
  9314. },
  9315. [
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(5 + 9 / 12, "feet"),
  9319. default: true
  9320. },
  9321. ]
  9322. ))
  9323. characterMakers.push(() => makeCharacter(
  9324. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9325. {
  9326. front: {
  9327. height: math.unit(6, "feet"),
  9328. weight: math.unit(103, "lb"),
  9329. name: "Front",
  9330. image: {
  9331. source: "./media/characters/abbott-absol/front.svg",
  9332. extra: 2010 / 1842
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Megamicro",
  9339. height: math.unit(0.1, "mm")
  9340. },
  9341. {
  9342. name: "Micro",
  9343. height: math.unit(1, "inch")
  9344. },
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(6, "feet"),
  9348. default: true
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(264, "lb"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/hector/front.svg",
  9361. extra: 2280 / 2130,
  9362. bottom: 0.07
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(12.25, "foot"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Macro",
  9374. height: math.unit(160, "feet")
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(6, "feet"),
  9383. weight: math.unit(150, "lb"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/sal/front.svg",
  9387. extra: 1846 / 1699,
  9388. bottom: 0.04
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Megamacro",
  9395. height: math.unit(10, "miles"),
  9396. default: true
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9402. {
  9403. front: {
  9404. height: math.unit(3, "meters"),
  9405. weight: math.unit(450, "kg"),
  9406. name: "front",
  9407. image: {
  9408. source: "./media/characters/ranger/front.svg",
  9409. extra: 2401 / 2243,
  9410. bottom: 0.05
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(3, "meters"),
  9418. default: true
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9424. {
  9425. front: {
  9426. height: math.unit(14, "feet"),
  9427. weight: math.unit(800, "kg"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/theresa/front.svg",
  9431. extra: 3575 / 3346,
  9432. bottom: 0.03
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Normal",
  9439. height: math.unit(14, "feet"),
  9440. default: true
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9446. {
  9447. front: {
  9448. height: math.unit(6, "feet"),
  9449. weight: math.unit(3, "kg"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/ine/front.svg",
  9453. extra: 678 / 539,
  9454. bottom: 0.023
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(2.265, "feet"),
  9462. default: true
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(5, "feet"),
  9471. weight: math.unit(30, "kg"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/vial/front.svg",
  9475. extra: 1365 / 1277,
  9476. bottom: 0.04
  9477. }
  9478. },
  9479. },
  9480. [
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(5, "feet"),
  9484. default: true
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9490. {
  9491. side: {
  9492. height: math.unit(3.4, "meters"),
  9493. weight: math.unit(1000, "lb"),
  9494. name: "Side",
  9495. image: {
  9496. source: "./media/characters/rovoska/side.svg",
  9497. extra: 4403 / 1515
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Normal",
  9504. height: math.unit(3.4, "meters"),
  9505. default: true
  9506. },
  9507. ]
  9508. ))
  9509. characterMakers.push(() => makeCharacter(
  9510. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9511. {
  9512. front: {
  9513. height: math.unit(8, "feet"),
  9514. weight: math.unit(315, "lb"),
  9515. name: "Front",
  9516. image: {
  9517. source: "./media/characters/gunner-rotthbauer/front.svg"
  9518. }
  9519. },
  9520. back: {
  9521. height: math.unit(8, "feet"),
  9522. weight: math.unit(315, "lb"),
  9523. name: "Back",
  9524. image: {
  9525. source: "./media/characters/gunner-rotthbauer/back.svg"
  9526. }
  9527. },
  9528. },
  9529. [
  9530. {
  9531. name: "Micro",
  9532. height: math.unit(3.5, "inches")
  9533. },
  9534. {
  9535. name: "Normal",
  9536. height: math.unit(8, "feet"),
  9537. default: true
  9538. },
  9539. {
  9540. name: "Macro",
  9541. height: math.unit(250, "feet")
  9542. },
  9543. {
  9544. name: "Megamacro",
  9545. height: math.unit(1, "AU")
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9551. {
  9552. front: {
  9553. height: math.unit(5 + 5 / 12, "feet"),
  9554. weight: math.unit(140, "lb"),
  9555. name: "Front",
  9556. image: {
  9557. source: "./media/characters/allatia/front.svg",
  9558. extra: 1227 / 1180,
  9559. bottom: 0.027
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 5 / 12, "feet")
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(250, "feet"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Megamacro",
  9575. height: math.unit(8, "miles")
  9576. }
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(6, "feet"),
  9584. weight: math.unit(120, "lb"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/tene/front.svg",
  9588. extra: 1728 / 1578,
  9589. bottom: 0.022
  9590. }
  9591. },
  9592. stomping: {
  9593. height: math.unit(2.025, "meters"),
  9594. weight: math.unit(120, "lb"),
  9595. name: "Stomping",
  9596. image: {
  9597. source: "./media/characters/tene/stomping.svg",
  9598. extra: 938 / 873,
  9599. bottom: 0.01
  9600. }
  9601. },
  9602. sitting: {
  9603. height: math.unit(1, "meter"),
  9604. weight: math.unit(120, "lb"),
  9605. name: "Sitting",
  9606. image: {
  9607. source: "./media/characters/tene/sitting.svg",
  9608. extra: 437 / 415,
  9609. bottom: 0.1
  9610. }
  9611. },
  9612. feral: {
  9613. height: math.unit(3.9, "feet"),
  9614. weight: math.unit(250, "lb"),
  9615. name: "Feral",
  9616. image: {
  9617. source: "./media/characters/tene/feral.svg",
  9618. extra: 717 / 458,
  9619. bottom: 0.179
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(6, "feet")
  9627. },
  9628. {
  9629. name: "Macro",
  9630. height: math.unit(300, "feet"),
  9631. default: true
  9632. },
  9633. {
  9634. name: "Megamacro",
  9635. height: math.unit(5, "miles")
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9641. {
  9642. side: {
  9643. height: math.unit(6, "feet"),
  9644. name: "Side",
  9645. image: {
  9646. source: "./media/characters/evander/side.svg",
  9647. extra: 877 / 477
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Normal",
  9654. height: math.unit(0.83, "meters"),
  9655. default: true
  9656. },
  9657. ]
  9658. ))
  9659. characterMakers.push(() => makeCharacter(
  9660. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9661. {
  9662. front: {
  9663. height: math.unit(12, "feet"),
  9664. weight: math.unit(1000, "lb"),
  9665. name: "Front",
  9666. image: {
  9667. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9668. extra: 1762 / 1611
  9669. }
  9670. },
  9671. back: {
  9672. height: math.unit(12, "feet"),
  9673. weight: math.unit(1000, "lb"),
  9674. name: "Back",
  9675. image: {
  9676. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9677. extra: 1762 / 1611
  9678. }
  9679. },
  9680. },
  9681. [
  9682. {
  9683. name: "Normal",
  9684. height: math.unit(12, "feet"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Kaiju",
  9689. height: math.unit(150, "feet")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(150, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/zero-alurus/front.svg"
  9702. }
  9703. },
  9704. back: {
  9705. height: math.unit(6, "feet"),
  9706. weight: math.unit(150, "lb"),
  9707. name: "Back",
  9708. image: {
  9709. source: "./media/characters/zero-alurus/back.svg"
  9710. }
  9711. },
  9712. },
  9713. [
  9714. {
  9715. name: "Normal",
  9716. height: math.unit(5 + 10 / 12, "feet")
  9717. },
  9718. {
  9719. name: "Macro",
  9720. height: math.unit(60, "feet"),
  9721. default: true
  9722. },
  9723. {
  9724. name: "Macro+",
  9725. height: math.unit(450, "feet")
  9726. },
  9727. ]
  9728. ))
  9729. characterMakers.push(() => makeCharacter(
  9730. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9731. {
  9732. front: {
  9733. height: math.unit(6, "feet"),
  9734. weight: math.unit(200, "lb"),
  9735. name: "Front",
  9736. image: {
  9737. source: "./media/characters/mega-shi/front.svg",
  9738. extra: 1279 / 1250,
  9739. bottom: 0.02
  9740. }
  9741. },
  9742. back: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(200, "lb"),
  9745. name: "Back",
  9746. image: {
  9747. source: "./media/characters/mega-shi/back.svg",
  9748. extra: 1279 / 1250,
  9749. bottom: 0.02
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(16 + 6 / 12, "feet")
  9757. },
  9758. {
  9759. name: "Third Dimension",
  9760. height: math.unit(40, "meters")
  9761. },
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(660, "feet"),
  9765. default: true
  9766. },
  9767. {
  9768. name: "Megamacro",
  9769. height: math.unit(10, "miles")
  9770. },
  9771. {
  9772. name: "Planetary Launch",
  9773. height: math.unit(500, "miles")
  9774. },
  9775. {
  9776. name: "Interstellar",
  9777. height: math.unit(1e9, "miles")
  9778. },
  9779. {
  9780. name: "Leaving the Universe",
  9781. height: math.unit(1, "gigaparsec")
  9782. },
  9783. {
  9784. name: "Travelling Universes",
  9785. height: math.unit(30e15, "parsecs")
  9786. },
  9787. ]
  9788. ))
  9789. characterMakers.push(() => makeCharacter(
  9790. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9791. {
  9792. front: {
  9793. height: math.unit(6, "feet"),
  9794. weight: math.unit(150, "lb"),
  9795. name: "Front",
  9796. image: {
  9797. source: "./media/characters/odyssey/front.svg",
  9798. extra: 1782 / 1582,
  9799. bottom: 0.01
  9800. }
  9801. },
  9802. side: {
  9803. height: math.unit(5.7, "feet"),
  9804. weight: math.unit(140, "lb"),
  9805. name: "Side",
  9806. image: {
  9807. source: "./media/characters/odyssey/side.svg",
  9808. extra: 6462 / 5700
  9809. }
  9810. },
  9811. },
  9812. [
  9813. {
  9814. name: "Normal",
  9815. height: math.unit(5 + 4 / 12, "feet")
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(1, "km")
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(3000, "km")
  9824. },
  9825. {
  9826. name: "Gigamacro",
  9827. height: math.unit(1, "AU"),
  9828. default: true
  9829. },
  9830. {
  9831. name: "Omniversal",
  9832. height: math.unit(100e14, "lightyears")
  9833. },
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9838. {
  9839. front: {
  9840. height: math.unit(6, "feet"),
  9841. weight: math.unit(300, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/mekuto/front.svg",
  9845. extra: 921 / 832,
  9846. bottom: 0.03
  9847. }
  9848. },
  9849. hand: {
  9850. height: math.unit(6 / 10.24, "feet"),
  9851. name: "Hand",
  9852. image: {
  9853. source: "./media/characters/mekuto/hand.svg"
  9854. }
  9855. },
  9856. foot: {
  9857. height: math.unit(6 / 5.05, "feet"),
  9858. name: "Foot",
  9859. image: {
  9860. source: "./media/characters/mekuto/foot.svg"
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Minimicro",
  9867. height: math.unit(0.2, "inches")
  9868. },
  9869. {
  9870. name: "Micro",
  9871. height: math.unit(1.5, "inches")
  9872. },
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(5 + 11 / 12, "feet"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Minimacro",
  9880. height: math.unit(17 + 9 / 12, "feet")
  9881. },
  9882. {
  9883. name: "Macro",
  9884. height: math.unit(177.5, "feet")
  9885. },
  9886. {
  9887. name: "Megamacro",
  9888. height: math.unit(152, "miles")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(6.5, "inches"),
  9897. weight: math.unit(13, "oz"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/dafydd-tomos/front.svg",
  9901. extra: 2990 / 2603,
  9902. bottom: 0.03
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Micro",
  9909. height: math.unit(6.5, "inches"),
  9910. default: true
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9916. {
  9917. front: {
  9918. height: math.unit(6, "feet"),
  9919. weight: math.unit(150, "lb"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/splinter/front.svg",
  9923. extra: 2990 / 2882,
  9924. bottom: 0.04
  9925. }
  9926. },
  9927. back: {
  9928. height: math.unit(6, "feet"),
  9929. weight: math.unit(150, "lb"),
  9930. name: "Back",
  9931. image: {
  9932. source: "./media/characters/splinter/back.svg",
  9933. extra: 2990 / 2882,
  9934. bottom: 0.04
  9935. }
  9936. },
  9937. },
  9938. [
  9939. {
  9940. name: "Normal",
  9941. height: math.unit(6, "feet")
  9942. },
  9943. {
  9944. name: "Macro",
  9945. height: math.unit(230, "meters"),
  9946. default: true
  9947. },
  9948. ]
  9949. ))
  9950. characterMakers.push(() => makeCharacter(
  9951. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9952. {
  9953. front: {
  9954. height: math.unit(4 + 10 / 12, "feet"),
  9955. weight: math.unit(480, "lb"),
  9956. name: "Front",
  9957. image: {
  9958. source: "./media/characters/snow-gabumon/front.svg",
  9959. extra: 1140 / 963,
  9960. bottom: 0.058
  9961. }
  9962. },
  9963. back: {
  9964. height: math.unit(4 + 10 / 12, "feet"),
  9965. weight: math.unit(480, "lb"),
  9966. name: "Back",
  9967. image: {
  9968. source: "./media/characters/snow-gabumon/back.svg",
  9969. extra: 1115 / 962,
  9970. bottom: 0.041
  9971. }
  9972. },
  9973. frontUndresed: {
  9974. height: math.unit(4 + 10 / 12, "feet"),
  9975. weight: math.unit(480, "lb"),
  9976. name: "Front (Undressed)",
  9977. image: {
  9978. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9979. extra: 1061 / 960,
  9980. bottom: 0.045
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Micro",
  9987. height: math.unit(1, "inch")
  9988. },
  9989. {
  9990. name: "Normal",
  9991. height: math.unit(4 + 10 / 12, "feet"),
  9992. default: true
  9993. },
  9994. {
  9995. name: "Macro",
  9996. height: math.unit(200, "feet")
  9997. },
  9998. {
  9999. name: "Megamacro",
  10000. height: math.unit(120, "miles")
  10001. },
  10002. {
  10003. name: "Gigamacro",
  10004. height: math.unit(9800, "miles")
  10005. },
  10006. ]
  10007. ))
  10008. characterMakers.push(() => makeCharacter(
  10009. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10010. {
  10011. front: {
  10012. height: math.unit(1.7, "meters"),
  10013. weight: math.unit(140, "lb"),
  10014. name: "Front",
  10015. image: {
  10016. source: "./media/characters/moody/front.svg",
  10017. extra: 3226 / 3007,
  10018. bottom: 0.087
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Micro",
  10025. height: math.unit(1, "mm")
  10026. },
  10027. {
  10028. name: "Normal",
  10029. height: math.unit(1.7, "meters"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Macro",
  10034. height: math.unit(80, "meters")
  10035. },
  10036. {
  10037. name: "Macro+",
  10038. height: math.unit(500, "meters")
  10039. },
  10040. ]
  10041. ))
  10042. characterMakers.push(() => makeCharacter(
  10043. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10044. {
  10045. front: {
  10046. height: math.unit(6, "feet"),
  10047. weight: math.unit(150, "lb"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/zyas/front.svg",
  10051. extra: 1180 / 1120,
  10052. bottom: 0.045
  10053. }
  10054. },
  10055. },
  10056. [
  10057. {
  10058. name: "Normal",
  10059. height: math.unit(10, "feet"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Macro",
  10064. height: math.unit(500, "feet")
  10065. },
  10066. {
  10067. name: "Megamacro",
  10068. height: math.unit(5, "miles")
  10069. },
  10070. {
  10071. name: "Teramacro",
  10072. height: math.unit(150000, "miles")
  10073. },
  10074. ]
  10075. ))
  10076. characterMakers.push(() => makeCharacter(
  10077. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10078. {
  10079. front: {
  10080. height: math.unit(6, "feet"),
  10081. weight: math.unit(150, "lb"),
  10082. name: "Front",
  10083. image: {
  10084. source: "./media/characters/cuon/front.svg",
  10085. extra: 1390 / 1320,
  10086. bottom: 0.008
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Micro",
  10093. height: math.unit(3, "inches")
  10094. },
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(18 + 9 / 12, "feet"),
  10098. default: true
  10099. },
  10100. {
  10101. name: "Macro",
  10102. height: math.unit(360, "feet")
  10103. },
  10104. {
  10105. name: "Megamacro",
  10106. height: math.unit(360, "miles")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(2.4, "meters"),
  10115. weight: math.unit(70, "kg"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/nyanuxk/front.svg",
  10119. extra: 1172 / 1084,
  10120. bottom: 0.065
  10121. }
  10122. },
  10123. side: {
  10124. height: math.unit(2.4, "meters"),
  10125. weight: math.unit(70, "kg"),
  10126. name: "Side",
  10127. image: {
  10128. source: "./media/characters/nyanuxk/side.svg",
  10129. extra: 1190 / 1132,
  10130. bottom: 0.007
  10131. }
  10132. },
  10133. back: {
  10134. height: math.unit(2.4, "meters"),
  10135. weight: math.unit(70, "kg"),
  10136. name: "Back",
  10137. image: {
  10138. source: "./media/characters/nyanuxk/back.svg",
  10139. extra: 1200 / 1141,
  10140. bottom: 0.015
  10141. }
  10142. },
  10143. foot: {
  10144. height: math.unit(0.52, "meters"),
  10145. name: "Foot",
  10146. image: {
  10147. source: "./media/characters/nyanuxk/foot.svg"
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Micro",
  10154. height: math.unit(2, "cm")
  10155. },
  10156. {
  10157. name: "Normal",
  10158. height: math.unit(2.4, "meters"),
  10159. default: true
  10160. },
  10161. {
  10162. name: "Smaller Macro",
  10163. height: math.unit(120, "meters")
  10164. },
  10165. {
  10166. name: "Bigger Macro",
  10167. height: math.unit(1.2, "km")
  10168. },
  10169. {
  10170. name: "Megamacro",
  10171. height: math.unit(15, "kilometers")
  10172. },
  10173. {
  10174. name: "Gigamacro",
  10175. height: math.unit(2000, "km")
  10176. },
  10177. {
  10178. name: "Teramacro",
  10179. height: math.unit(500000, "km")
  10180. },
  10181. ]
  10182. ))
  10183. characterMakers.push(() => makeCharacter(
  10184. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10185. {
  10186. side: {
  10187. height: math.unit(6, "feet"),
  10188. name: "Side",
  10189. image: {
  10190. source: "./media/characters/ailbhe/side.svg",
  10191. extra: 757 / 464,
  10192. bottom: 0.041
  10193. }
  10194. },
  10195. },
  10196. [
  10197. {
  10198. name: "Normal",
  10199. height: math.unit(1.07, "meters"),
  10200. default: true
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(6, "feet"),
  10209. weight: math.unit(120, "kg"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/zevulfius/front.svg",
  10213. extra: 965 / 903
  10214. }
  10215. },
  10216. side: {
  10217. height: math.unit(6, "feet"),
  10218. weight: math.unit(120, "kg"),
  10219. name: "Side",
  10220. image: {
  10221. source: "./media/characters/zevulfius/side.svg",
  10222. extra: 939 / 900
  10223. }
  10224. },
  10225. back: {
  10226. height: math.unit(6, "feet"),
  10227. weight: math.unit(120, "kg"),
  10228. name: "Back",
  10229. image: {
  10230. source: "./media/characters/zevulfius/back.svg",
  10231. extra: 918 / 854,
  10232. bottom: 0.005
  10233. }
  10234. },
  10235. foot: {
  10236. height: math.unit(6 / 3.72, "feet"),
  10237. name: "Foot",
  10238. image: {
  10239. source: "./media/characters/zevulfius/foot.svg"
  10240. }
  10241. },
  10242. },
  10243. [
  10244. {
  10245. name: "Macro",
  10246. height: math.unit(750, "meters")
  10247. },
  10248. {
  10249. name: "Megamacro",
  10250. height: math.unit(20, "km"),
  10251. default: true
  10252. },
  10253. {
  10254. name: "Gigamacro",
  10255. height: math.unit(2000, "km")
  10256. },
  10257. {
  10258. name: "Teramacro",
  10259. height: math.unit(250000, "km")
  10260. },
  10261. ]
  10262. ))
  10263. characterMakers.push(() => makeCharacter(
  10264. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10265. {
  10266. front: {
  10267. height: math.unit(100, "feet"),
  10268. weight: math.unit(350, "kg"),
  10269. name: "Front",
  10270. image: {
  10271. source: "./media/characters/rikes/front.svg",
  10272. extra: 1565 / 1483,
  10273. bottom: 0.017
  10274. }
  10275. },
  10276. },
  10277. [
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(100, "feet"),
  10281. default: true
  10282. },
  10283. ]
  10284. ))
  10285. characterMakers.push(() => makeCharacter(
  10286. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10287. {
  10288. anthro: {
  10289. height: math.unit(8, "feet"),
  10290. weight: math.unit(120, "kg"),
  10291. name: "Anthro",
  10292. image: {
  10293. source: "./media/characters/adam-silver-mane/anthro.svg",
  10294. extra: 5743 / 5339,
  10295. bottom: 0.07
  10296. }
  10297. },
  10298. taur: {
  10299. height: math.unit(16, "feet"),
  10300. weight: math.unit(1500, "kg"),
  10301. name: "Taur",
  10302. image: {
  10303. source: "./media/characters/adam-silver-mane/taur.svg",
  10304. extra: 1713 / 1571,
  10305. bottom: 0.01
  10306. }
  10307. },
  10308. },
  10309. [
  10310. {
  10311. name: "Normal",
  10312. height: math.unit(8, "feet")
  10313. },
  10314. {
  10315. name: "Minimacro",
  10316. height: math.unit(80, "feet")
  10317. },
  10318. {
  10319. name: "Macro",
  10320. height: math.unit(800, "feet"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Megamacro",
  10325. height: math.unit(8000, "feet")
  10326. },
  10327. {
  10328. name: "Gigamacro",
  10329. height: math.unit(800, "miles")
  10330. },
  10331. {
  10332. name: "Teramacro",
  10333. height: math.unit(80000, "miles")
  10334. },
  10335. {
  10336. name: "Celestial",
  10337. height: math.unit(8e6, "miles")
  10338. },
  10339. {
  10340. name: "Star Dragon",
  10341. height: math.unit(800000, "parsecs")
  10342. },
  10343. {
  10344. name: "Godly",
  10345. height: math.unit(800, "teraparsecs")
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10351. {
  10352. front: {
  10353. height: math.unit(6, "feet"),
  10354. weight: math.unit(150, "lb"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/ky'owin/front.svg",
  10358. extra: 3888 / 3068,
  10359. bottom: 0.015
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Normal",
  10366. height: math.unit(6 + 8 / 12, "feet")
  10367. },
  10368. {
  10369. name: "Large",
  10370. height: math.unit(68, "feet")
  10371. },
  10372. {
  10373. name: "Macro",
  10374. height: math.unit(132, "feet")
  10375. },
  10376. {
  10377. name: "Macro+",
  10378. height: math.unit(340, "feet")
  10379. },
  10380. {
  10381. name: "Macro++",
  10382. height: math.unit(680, "feet"),
  10383. default: true
  10384. },
  10385. {
  10386. name: "Megamacro",
  10387. height: math.unit(1, "mile")
  10388. },
  10389. {
  10390. name: "Megamacro+",
  10391. height: math.unit(10, "miles")
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10397. {
  10398. front: {
  10399. height: math.unit(4, "feet"),
  10400. weight: math.unit(50, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/mal/front.svg",
  10404. extra: 785 / 724,
  10405. bottom: 0.07
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Micro",
  10412. height: math.unit(4, "inches")
  10413. },
  10414. {
  10415. name: "Normal",
  10416. height: math.unit(4, "feet"),
  10417. default: true
  10418. },
  10419. {
  10420. name: "Macro",
  10421. height: math.unit(200, "feet")
  10422. },
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10427. {
  10428. front: {
  10429. height: math.unit(6, "feet"),
  10430. weight: math.unit(150, "lb"),
  10431. name: "Front",
  10432. image: {
  10433. source: "./media/characters/jordan-deware/front.svg",
  10434. extra: 1191 / 1012
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Nano",
  10441. height: math.unit(0.01, "mm")
  10442. },
  10443. {
  10444. name: "Minimicro",
  10445. height: math.unit(1, "mm")
  10446. },
  10447. {
  10448. name: "Micro",
  10449. height: math.unit(0.5, "inches")
  10450. },
  10451. {
  10452. name: "Normal",
  10453. height: math.unit(4, "feet"),
  10454. default: true
  10455. },
  10456. {
  10457. name: "Minimacro",
  10458. height: math.unit(40, "meters")
  10459. },
  10460. {
  10461. name: "Small Macro",
  10462. height: math.unit(400, "meters")
  10463. },
  10464. {
  10465. name: "Macro",
  10466. height: math.unit(4, "miles")
  10467. },
  10468. {
  10469. name: "Megamacro",
  10470. height: math.unit(40, "miles")
  10471. },
  10472. {
  10473. name: "Megamacro+",
  10474. height: math.unit(400, "miles")
  10475. },
  10476. {
  10477. name: "Gigamacro",
  10478. height: math.unit(400000, "miles")
  10479. },
  10480. ]
  10481. ))
  10482. characterMakers.push(() => makeCharacter(
  10483. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10484. {
  10485. side: {
  10486. height: math.unit(6, "feet"),
  10487. weight: math.unit(150, "lb"),
  10488. name: "Side",
  10489. image: {
  10490. source: "./media/characters/kimiko/side.svg",
  10491. extra: 600 / 358
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(15, "feet"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Macro",
  10503. height: math.unit(220, "feet")
  10504. },
  10505. {
  10506. name: "Macro+",
  10507. height: math.unit(1450, "feet")
  10508. },
  10509. {
  10510. name: "Megamacro",
  10511. height: math.unit(11500, "feet")
  10512. },
  10513. {
  10514. name: "Gigamacro",
  10515. height: math.unit(9500, "miles")
  10516. },
  10517. {
  10518. name: "Teramacro",
  10519. height: math.unit(2208005005, "miles")
  10520. },
  10521. {
  10522. name: "Examacro",
  10523. height: math.unit(2750, "parsecs")
  10524. },
  10525. {
  10526. name: "Zettamacro",
  10527. height: math.unit(101500, "parsecs")
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10533. {
  10534. front: {
  10535. height: math.unit(6, "feet"),
  10536. weight: math.unit(70, "kg"),
  10537. name: "Front",
  10538. image: {
  10539. source: "./media/characters/andrew-sleepy/front.svg"
  10540. }
  10541. },
  10542. side: {
  10543. height: math.unit(6, "feet"),
  10544. weight: math.unit(70, "kg"),
  10545. name: "Side",
  10546. image: {
  10547. source: "./media/characters/andrew-sleepy/side.svg"
  10548. }
  10549. },
  10550. },
  10551. [
  10552. {
  10553. name: "Micro",
  10554. height: math.unit(1, "mm"),
  10555. default: true
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(6, "feet"),
  10564. weight: math.unit(150, "lb"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/judio/front.svg",
  10568. extra: 1258 / 1110
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Normal",
  10575. height: math.unit(5 + 6 / 12, "feet")
  10576. },
  10577. {
  10578. name: "Macro",
  10579. height: math.unit(1000, "feet"),
  10580. default: true
  10581. },
  10582. {
  10583. name: "Megamacro",
  10584. height: math.unit(10, "miles")
  10585. },
  10586. ]
  10587. ))
  10588. characterMakers.push(() => makeCharacter(
  10589. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10590. {
  10591. front: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(68, "kg"),
  10594. name: "Front",
  10595. image: {
  10596. source: "./media/characters/nomaxice/front.svg",
  10597. extra: 1498 / 1073,
  10598. bottom: 0.075
  10599. }
  10600. },
  10601. foot: {
  10602. height: math.unit(1.1, "feet"),
  10603. name: "Foot",
  10604. image: {
  10605. source: "./media/characters/nomaxice/foot.svg"
  10606. }
  10607. },
  10608. },
  10609. [
  10610. {
  10611. name: "Micro",
  10612. height: math.unit(8, "cm")
  10613. },
  10614. {
  10615. name: "Norm",
  10616. height: math.unit(1.82, "m")
  10617. },
  10618. {
  10619. name: "Norm+",
  10620. height: math.unit(8.8, "feet")
  10621. },
  10622. {
  10623. name: "Big",
  10624. height: math.unit(8, "meters"),
  10625. default: true
  10626. },
  10627. {
  10628. name: "Macro",
  10629. height: math.unit(18, "meters")
  10630. },
  10631. {
  10632. name: "Macro+",
  10633. height: math.unit(88, "meters")
  10634. },
  10635. ]
  10636. ))
  10637. characterMakers.push(() => makeCharacter(
  10638. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10639. {
  10640. front: {
  10641. height: math.unit(12, "feet"),
  10642. weight: math.unit(1.5, "tons"),
  10643. name: "Front",
  10644. image: {
  10645. source: "./media/characters/dydros/front.svg",
  10646. extra: 863 / 800,
  10647. bottom: 0.015
  10648. }
  10649. },
  10650. back: {
  10651. height: math.unit(12, "feet"),
  10652. weight: math.unit(1.5, "tons"),
  10653. name: "Back",
  10654. image: {
  10655. source: "./media/characters/dydros/back.svg",
  10656. extra: 900 / 843,
  10657. bottom: 0.005
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Normal",
  10664. height: math.unit(12, "feet"),
  10665. default: true
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10671. {
  10672. front: {
  10673. height: math.unit(6, "feet"),
  10674. weight: math.unit(100, "kg"),
  10675. name: "Front",
  10676. image: {
  10677. source: "./media/characters/riggi/front.svg",
  10678. extra: 5787 / 5303
  10679. }
  10680. },
  10681. hyper: {
  10682. height: math.unit(6 * 5 / 3, "feet"),
  10683. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10684. name: "Hyper",
  10685. image: {
  10686. source: "./media/characters/riggi/hyper.svg",
  10687. extra: 3595 / 3485
  10688. }
  10689. },
  10690. },
  10691. [
  10692. {
  10693. name: "Small Macro",
  10694. height: math.unit(50, "feet")
  10695. },
  10696. {
  10697. name: "Default",
  10698. height: math.unit(200, "feet"),
  10699. default: true
  10700. },
  10701. {
  10702. name: "Loom",
  10703. height: math.unit(10000, "feet")
  10704. },
  10705. {
  10706. name: "Cruising Altitude",
  10707. height: math.unit(30000, "feet")
  10708. },
  10709. {
  10710. name: "Megamacro",
  10711. height: math.unit(100, "miles")
  10712. },
  10713. {
  10714. name: "Continent Sized",
  10715. height: math.unit(2800, "miles")
  10716. },
  10717. {
  10718. name: "Earth Sized",
  10719. height: math.unit(8000, "miles")
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(6, "feet"),
  10728. weight: math.unit(250, "lb"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/alexi/front.svg",
  10732. extra: 3483 / 3291,
  10733. bottom: 0.04
  10734. }
  10735. },
  10736. back: {
  10737. height: math.unit(6, "feet"),
  10738. weight: math.unit(250, "lb"),
  10739. name: "Back",
  10740. image: {
  10741. source: "./media/characters/alexi/back.svg",
  10742. extra: 3533 / 3356,
  10743. bottom: 0.021
  10744. }
  10745. },
  10746. frontTransforming: {
  10747. height: math.unit(8.58, "feet"),
  10748. weight: math.unit(1300, "lb"),
  10749. name: "Transforming",
  10750. image: {
  10751. source: "./media/characters/alexi/front-transforming.svg",
  10752. extra: 437 / 409,
  10753. bottom: 19 / 458.66
  10754. }
  10755. },
  10756. frontTransformed: {
  10757. height: math.unit(12.5, "feet"),
  10758. weight: math.unit(4000, "lb"),
  10759. name: "Transformed",
  10760. image: {
  10761. source: "./media/characters/alexi/front-transformed.svg",
  10762. extra: 639 / 614,
  10763. bottom: 30.55 / 671
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(14, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Minimacro",
  10775. height: math.unit(30, "meters")
  10776. },
  10777. {
  10778. name: "Macro",
  10779. height: math.unit(500, "meters")
  10780. },
  10781. {
  10782. name: "Megamacro",
  10783. height: math.unit(9000, "km")
  10784. },
  10785. {
  10786. name: "Teramacro",
  10787. height: math.unit(384000, "km")
  10788. },
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10793. {
  10794. front: {
  10795. height: math.unit(6, "feet"),
  10796. weight: math.unit(150, "lb"),
  10797. name: "Front",
  10798. image: {
  10799. source: "./media/characters/kayroo/front.svg",
  10800. extra: 1153 / 1038,
  10801. bottom: 0.06
  10802. }
  10803. },
  10804. foot: {
  10805. height: math.unit(6, "feet"),
  10806. weight: math.unit(150, "lb"),
  10807. name: "Foot",
  10808. image: {
  10809. source: "./media/characters/kayroo/foot.svg"
  10810. }
  10811. },
  10812. },
  10813. [
  10814. {
  10815. name: "Normal",
  10816. height: math.unit(8, "feet"),
  10817. default: true
  10818. },
  10819. {
  10820. name: "Minimacro",
  10821. height: math.unit(250, "feet")
  10822. },
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(2800, "feet")
  10826. },
  10827. {
  10828. name: "Megamacro",
  10829. height: math.unit(5200, "feet")
  10830. },
  10831. {
  10832. name: "Gigamacro",
  10833. height: math.unit(27000, "feet")
  10834. },
  10835. {
  10836. name: "Omega",
  10837. height: math.unit(45000, "feet")
  10838. },
  10839. ]
  10840. ))
  10841. characterMakers.push(() => makeCharacter(
  10842. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10843. {
  10844. front: {
  10845. height: math.unit(18, "feet"),
  10846. weight: math.unit(5800, "lb"),
  10847. name: "Front",
  10848. image: {
  10849. source: "./media/characters/rhys/front.svg",
  10850. extra: 3386 / 3090,
  10851. bottom: 0.07
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Normal",
  10858. height: math.unit(18, "feet"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Working Size",
  10863. height: math.unit(200, "feet")
  10864. },
  10865. {
  10866. name: "Demolition Size",
  10867. height: math.unit(2000, "feet")
  10868. },
  10869. {
  10870. name: "Maximum Licensed Size",
  10871. height: math.unit(5, "miles")
  10872. },
  10873. {
  10874. name: "Maximum Observed Size",
  10875. height: math.unit(10, "yottameters")
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10881. {
  10882. front: {
  10883. height: math.unit(6, "feet"),
  10884. weight: math.unit(250, "lb"),
  10885. name: "Front",
  10886. image: {
  10887. source: "./media/characters/toto/front.svg",
  10888. extra: 527 / 479,
  10889. bottom: 0.05
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Micro",
  10896. height: math.unit(3, "feet")
  10897. },
  10898. {
  10899. name: "Normal",
  10900. height: math.unit(10, "feet")
  10901. },
  10902. {
  10903. name: "Macro",
  10904. height: math.unit(150, "feet"),
  10905. default: true
  10906. },
  10907. {
  10908. name: "Megamacro",
  10909. height: math.unit(1200, "feet")
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "King", species: ["lion"], tags: ["anthro"] },
  10915. {
  10916. back: {
  10917. height: math.unit(6, "feet"),
  10918. weight: math.unit(150, "lb"),
  10919. name: "Back",
  10920. image: {
  10921. source: "./media/characters/king/back.svg"
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Micro",
  10928. height: math.unit(2, "inches")
  10929. },
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(8, "feet")
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(200, "feet"),
  10937. default: true
  10938. },
  10939. {
  10940. name: "Megamacro",
  10941. height: math.unit(50, "miles")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10947. {
  10948. anthro: {
  10949. height: math.unit(6 + 5 / 12, "feet"),
  10950. weight: math.unit(280, "lb"),
  10951. name: "Anthro",
  10952. image: {
  10953. source: "./media/characters/cordite/anthro.svg",
  10954. extra: 1986 / 1905,
  10955. bottom: 0.025
  10956. }
  10957. },
  10958. feral: {
  10959. height: math.unit(2, "feet"),
  10960. weight: math.unit(90, "lb"),
  10961. name: "Feral",
  10962. image: {
  10963. source: "./media/characters/cordite/feral.svg",
  10964. extra: 1260 / 755,
  10965. bottom: 0.05
  10966. }
  10967. },
  10968. },
  10969. [
  10970. {
  10971. name: "Normal",
  10972. height: math.unit(6 + 5 / 12, "feet"),
  10973. default: true
  10974. },
  10975. ]
  10976. ))
  10977. characterMakers.push(() => makeCharacter(
  10978. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10979. {
  10980. front: {
  10981. height: math.unit(6, "feet"),
  10982. weight: math.unit(150, "lb"),
  10983. name: "Front",
  10984. image: {
  10985. source: "./media/characters/pianostrong/front.svg",
  10986. extra: 6577 / 6254,
  10987. bottom: 0.02
  10988. }
  10989. },
  10990. side: {
  10991. height: math.unit(6, "feet"),
  10992. weight: math.unit(150, "lb"),
  10993. name: "Side",
  10994. image: {
  10995. source: "./media/characters/pianostrong/side.svg",
  10996. extra: 6106 / 5730
  10997. }
  10998. },
  10999. back: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(150, "lb"),
  11002. name: "Back",
  11003. image: {
  11004. source: "./media/characters/pianostrong/back.svg",
  11005. extra: 6085 / 5733,
  11006. bottom: 0.01
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Macro",
  11013. height: math.unit(100, "feet")
  11014. },
  11015. {
  11016. name: "Macro+",
  11017. height: math.unit(300, "feet"),
  11018. default: true
  11019. },
  11020. {
  11021. name: "Macro++",
  11022. height: math.unit(1000, "feet")
  11023. },
  11024. ]
  11025. ))
  11026. characterMakers.push(() => makeCharacter(
  11027. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11028. {
  11029. front: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(150, "lb"),
  11032. name: "Front",
  11033. image: {
  11034. source: "./media/characters/kona/front.svg",
  11035. extra: 2960 / 2629,
  11036. bottom: 0.005
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Normal",
  11043. height: math.unit(11 + 8 / 12, "feet")
  11044. },
  11045. {
  11046. name: "Macro",
  11047. height: math.unit(850, "feet"),
  11048. default: true
  11049. },
  11050. {
  11051. name: "Macro+",
  11052. height: math.unit(1.5, "km"),
  11053. default: true
  11054. },
  11055. {
  11056. name: "Megamacro",
  11057. height: math.unit(80, "miles")
  11058. },
  11059. {
  11060. name: "Gigamacro",
  11061. height: math.unit(3500, "miles")
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11067. {
  11068. side: {
  11069. height: math.unit(1.9, "meters"),
  11070. weight: math.unit(326, "kg"),
  11071. name: "Side",
  11072. image: {
  11073. source: "./media/characters/levi/side.svg",
  11074. extra: 1704 / 1334,
  11075. bottom: 0.02
  11076. }
  11077. },
  11078. },
  11079. [
  11080. {
  11081. name: "Normal",
  11082. height: math.unit(1.9, "meters"),
  11083. default: true
  11084. },
  11085. {
  11086. name: "Macro",
  11087. height: math.unit(20, "meters")
  11088. },
  11089. {
  11090. name: "Macro+",
  11091. height: math.unit(200, "meters")
  11092. },
  11093. {
  11094. name: "Megamacro",
  11095. height: math.unit(2, "km")
  11096. },
  11097. {
  11098. name: "Megamacro+",
  11099. height: math.unit(20, "km")
  11100. },
  11101. {
  11102. name: "Gigamacro",
  11103. height: math.unit(2500, "km")
  11104. },
  11105. {
  11106. name: "Gigamacro+",
  11107. height: math.unit(120000, "km")
  11108. },
  11109. {
  11110. name: "Teramacro",
  11111. height: math.unit(7.77e6, "km")
  11112. },
  11113. ]
  11114. ))
  11115. characterMakers.push(() => makeCharacter(
  11116. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11117. {
  11118. front: {
  11119. height: math.unit(6 + 4 / 12, "feet"),
  11120. weight: math.unit(188, "lb"),
  11121. name: "Front",
  11122. image: {
  11123. source: "./media/characters/bmc/front.svg",
  11124. extra: 1067 / 1022,
  11125. bottom: 0.047
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Human-sized",
  11132. height: math.unit(6 + 4 / 12, "feet")
  11133. },
  11134. {
  11135. name: "Small",
  11136. height: math.unit(250, "feet")
  11137. },
  11138. {
  11139. name: "Normal",
  11140. height: math.unit(1250, "feet"),
  11141. default: true
  11142. },
  11143. {
  11144. name: "Good Day",
  11145. height: math.unit(88, "miles")
  11146. },
  11147. {
  11148. name: "Largest Measured Size",
  11149. height: math.unit(11.2e6, "lightyears")
  11150. },
  11151. ]
  11152. ))
  11153. characterMakers.push(() => makeCharacter(
  11154. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11155. {
  11156. front: {
  11157. height: math.unit(20, "feet"),
  11158. weight: math.unit(2016, "kg"),
  11159. name: "Front",
  11160. image: {
  11161. source: "./media/characters/sven-the-kaiju/front.svg",
  11162. extra: 1277/1250,
  11163. bottom: 35/1312
  11164. }
  11165. },
  11166. mouth: {
  11167. height: math.unit(1.85, "feet"),
  11168. name: "Mouth",
  11169. image: {
  11170. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11171. }
  11172. },
  11173. },
  11174. [
  11175. {
  11176. name: "Fairy",
  11177. height: math.unit(6, "inches")
  11178. },
  11179. {
  11180. name: "Normal",
  11181. height: math.unit(20, "feet"),
  11182. default: true
  11183. },
  11184. {
  11185. name: "Rampage",
  11186. height: math.unit(200, "feet")
  11187. },
  11188. {
  11189. name: "Archfey Forest Guardian",
  11190. height: math.unit(1, "mile")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(4, "meters"),
  11199. weight: math.unit(2, "tons"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/marik/front.svg",
  11203. extra: 1057 / 1003,
  11204. bottom: 0.08
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Normal",
  11211. height: math.unit(4, "meters"),
  11212. default: true
  11213. },
  11214. {
  11215. name: "Macro",
  11216. height: math.unit(20, "meters")
  11217. },
  11218. {
  11219. name: "Megamacro",
  11220. height: math.unit(50, "km")
  11221. },
  11222. {
  11223. name: "Gigamacro",
  11224. height: math.unit(100, "km")
  11225. },
  11226. {
  11227. name: "Alpha Macro",
  11228. height: math.unit(7.88e7, "yottameters")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(6, "feet"),
  11237. weight: math.unit(110, "lb"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/mel/front.svg",
  11241. extra: 736 / 617,
  11242. bottom: 0.017
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Pico",
  11249. height: math.unit(3, "pm")
  11250. },
  11251. {
  11252. name: "Nano",
  11253. height: math.unit(3, "nm")
  11254. },
  11255. {
  11256. name: "Micro",
  11257. height: math.unit(0.3, "mm"),
  11258. default: true
  11259. },
  11260. {
  11261. name: "Micro+",
  11262. height: math.unit(3, "mm")
  11263. },
  11264. {
  11265. name: "Normal",
  11266. height: math.unit(5 + 10.5 / 12, "feet")
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11272. {
  11273. kaiju: {
  11274. height: math.unit(1.75, "meters"),
  11275. weight: math.unit(55, "kg"),
  11276. name: "Kaiju",
  11277. image: {
  11278. source: "./media/characters/lykonous/kaiju.svg",
  11279. extra: 1055 / 946,
  11280. bottom: 0.135
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Normal",
  11287. height: math.unit(2.5, "meters"),
  11288. default: true
  11289. },
  11290. {
  11291. name: "Kaiju Dragon",
  11292. height: math.unit(60, "meters")
  11293. },
  11294. {
  11295. name: "Mega Kaiju",
  11296. height: math.unit(120, "km")
  11297. },
  11298. {
  11299. name: "Giga Kaiju",
  11300. height: math.unit(200, "megameters")
  11301. },
  11302. {
  11303. name: "Terra Kaiju",
  11304. height: math.unit(400, "gigameters")
  11305. },
  11306. {
  11307. name: "Kaiju Dragon God",
  11308. height: math.unit(13000, "exaparsecs")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(6, "feet"),
  11317. weight: math.unit(150, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/blü/front.svg",
  11321. extra: 1883 / 1564,
  11322. bottom: 0.031
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(13, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Big Boi",
  11334. height: math.unit(150, "meters")
  11335. },
  11336. {
  11337. name: "Mini Stomper",
  11338. height: math.unit(300, "meters")
  11339. },
  11340. {
  11341. name: "Macro",
  11342. height: math.unit(1000, "meters")
  11343. },
  11344. {
  11345. name: "Megamacro",
  11346. height: math.unit(11000, "meters")
  11347. },
  11348. {
  11349. name: "Gigamacro",
  11350. height: math.unit(11000, "km")
  11351. },
  11352. {
  11353. name: "Teramacro",
  11354. height: math.unit(420000, "km")
  11355. },
  11356. {
  11357. name: "Examacro",
  11358. height: math.unit(120, "parsecs")
  11359. },
  11360. {
  11361. name: "God Tho",
  11362. height: math.unit(98000000000, "parsecs")
  11363. },
  11364. ]
  11365. ))
  11366. characterMakers.push(() => makeCharacter(
  11367. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11368. {
  11369. taurFront: {
  11370. height: math.unit(6, "feet"),
  11371. weight: math.unit(200, "lb"),
  11372. name: "Taur (Front)",
  11373. image: {
  11374. source: "./media/characters/scales/taur-front.svg",
  11375. extra: 1,
  11376. bottom: 0.05
  11377. }
  11378. },
  11379. taurBack: {
  11380. height: math.unit(6, "feet"),
  11381. weight: math.unit(200, "lb"),
  11382. name: "Taur (Back)",
  11383. image: {
  11384. source: "./media/characters/scales/taur-back.svg",
  11385. extra: 1,
  11386. bottom: 0.08
  11387. }
  11388. },
  11389. anthro: {
  11390. height: math.unit(6 * 7 / 12, "feet"),
  11391. weight: math.unit(100, "lb"),
  11392. name: "Anthro",
  11393. image: {
  11394. source: "./media/characters/scales/anthro.svg",
  11395. extra: 1,
  11396. bottom: 0.06
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(12, "feet"),
  11404. default: true
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(6, "feet"),
  11413. weight: math.unit(150, "lb"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/koragos/front.svg",
  11417. extra: 841 / 794,
  11418. bottom: 0.035
  11419. }
  11420. },
  11421. back: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(150, "lb"),
  11424. name: "Back",
  11425. image: {
  11426. source: "./media/characters/koragos/back.svg",
  11427. extra: 841 / 810,
  11428. bottom: 0.022
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(6 + 11 / 12, "feet"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Macro",
  11440. height: math.unit(490, "feet")
  11441. },
  11442. {
  11443. name: "Megamacro",
  11444. height: math.unit(10, "miles")
  11445. },
  11446. {
  11447. name: "Gigamacro",
  11448. height: math.unit(50, "miles")
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(6, "feet"),
  11457. weight: math.unit(250, "lb"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/xylrem/front.svg",
  11461. extra: 3323 / 3050,
  11462. bottom: 0.065
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Micro",
  11469. height: math.unit(4, "feet")
  11470. },
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(16, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(2720, "feet")
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(25000, "miles")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(8, "feet"),
  11491. weight: math.unit(250, "kg"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/ikideru/front.svg",
  11495. extra: 930 / 870,
  11496. bottom: 0.087
  11497. }
  11498. },
  11499. back: {
  11500. height: math.unit(8, "feet"),
  11501. weight: math.unit(250, "kg"),
  11502. name: "Back",
  11503. image: {
  11504. source: "./media/characters/ikideru/back.svg",
  11505. extra: 919 / 852,
  11506. bottom: 0.055
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Rare",
  11513. height: math.unit(8, "feet"),
  11514. default: true
  11515. },
  11516. {
  11517. name: "Playful Loom",
  11518. height: math.unit(80, "feet")
  11519. },
  11520. {
  11521. name: "City Leaner",
  11522. height: math.unit(230, "feet")
  11523. },
  11524. {
  11525. name: "Megamacro",
  11526. height: math.unit(2500, "feet")
  11527. },
  11528. {
  11529. name: "Gigamacro",
  11530. height: math.unit(26400, "feet")
  11531. },
  11532. {
  11533. name: "Tectonic Shifter",
  11534. height: math.unit(1.7, "megameters")
  11535. },
  11536. {
  11537. name: "Planet Carer",
  11538. height: math.unit(21, "megameters")
  11539. },
  11540. {
  11541. name: "God",
  11542. height: math.unit(11157.22, "parsecs")
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(6, "feet"),
  11551. weight: math.unit(120, "lb"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/neo/front.svg"
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Micro",
  11561. height: math.unit(2, "inches"),
  11562. default: true
  11563. },
  11564. {
  11565. name: "Human Size",
  11566. height: math.unit(5 + 8 / 12, "feet")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(13 + 10 / 12, "feet"),
  11575. weight: math.unit(5320, "lb"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/chauncey-chantz/front.svg",
  11579. extra: 1587 / 1435,
  11580. bottom: 0.02
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(13 + 10 / 12, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Macro",
  11592. height: math.unit(45, "feet")
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(250, "miles")
  11597. },
  11598. {
  11599. name: "Planetary",
  11600. height: math.unit(10000, "miles")
  11601. },
  11602. {
  11603. name: "Galactic",
  11604. height: math.unit(40000, "parsecs")
  11605. },
  11606. {
  11607. name: "Universal",
  11608. height: math.unit(1, "yottameter")
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11614. {
  11615. front: {
  11616. height: math.unit(6, "feet"),
  11617. weight: math.unit(150, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/epifox/front.svg",
  11621. extra: 1,
  11622. bottom: 0.075
  11623. }
  11624. },
  11625. },
  11626. [
  11627. {
  11628. name: "Micro",
  11629. height: math.unit(6, "inches")
  11630. },
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(12, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(3810, "feet")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(500, "miles")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(1.8796, "m"),
  11651. weight: math.unit(230, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/colin-t/front.svg",
  11655. extra: 1272 / 1193,
  11656. bottom: 0.07
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Micro",
  11663. height: math.unit(0.571, "meters")
  11664. },
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(1.8796, "meters"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Tall",
  11672. height: math.unit(4, "meters")
  11673. },
  11674. {
  11675. name: "Macro",
  11676. height: math.unit(67.241, "meters")
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(371.856, "meters")
  11681. },
  11682. {
  11683. name: "Planetary",
  11684. height: math.unit(12631.5689, "km")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(1.85, "meters"),
  11693. weight: math.unit(80, "kg"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/matvei/front.svg",
  11697. extra: 614 / 594,
  11698. bottom: 0.01
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(1.85, "meters"),
  11706. default: true
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(5 + 9 / 12, "feet"),
  11715. weight: math.unit(70, "lb"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/quincy/front.svg",
  11719. extra: 3041 / 2751
  11720. }
  11721. },
  11722. back: {
  11723. height: math.unit(5 + 9 / 12, "feet"),
  11724. weight: math.unit(70, "lb"),
  11725. name: "Back",
  11726. image: {
  11727. source: "./media/characters/quincy/back.svg",
  11728. extra: 3041 / 2751
  11729. }
  11730. },
  11731. flying: {
  11732. height: math.unit(5 + 4 / 12, "feet"),
  11733. weight: math.unit(70, "lb"),
  11734. name: "Flying",
  11735. image: {
  11736. source: "./media/characters/quincy/flying.svg",
  11737. extra: 1044 / 930
  11738. }
  11739. },
  11740. },
  11741. [
  11742. {
  11743. name: "Micro",
  11744. height: math.unit(3, "cm")
  11745. },
  11746. {
  11747. name: "Normal",
  11748. height: math.unit(5 + 9 / 12, "feet")
  11749. },
  11750. {
  11751. name: "Macro",
  11752. height: math.unit(200, "meters"),
  11753. default: true
  11754. },
  11755. {
  11756. name: "Megamacro",
  11757. height: math.unit(1000, "meters")
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(4 + 7 / 12, "feet"),
  11766. weight: math.unit(50, "lb"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/vanrel/front.svg",
  11770. extra: 1,
  11771. bottom: 0.02
  11772. }
  11773. },
  11774. frontAlt: {
  11775. height: math.unit(4 + 7 / 12, "feet"),
  11776. weight: math.unit(50, "lb"),
  11777. name: "Front-alt",
  11778. image: {
  11779. source: "./media/characters/vanrel/front-alt.svg",
  11780. extra: 1,
  11781. bottom: 15 / 1511
  11782. }
  11783. },
  11784. elemental: {
  11785. height: math.unit(3, "feet"),
  11786. weight: math.unit(50, "lb"),
  11787. name: "Elemental",
  11788. image: {
  11789. source: "./media/characters/vanrel/elemental.svg",
  11790. extra: 192.3 / 162.8,
  11791. bottom: 1.79 / 194.17
  11792. }
  11793. },
  11794. side: {
  11795. height: math.unit(4 + 7 / 12, "feet"),
  11796. weight: math.unit(50, "lb"),
  11797. name: "Side",
  11798. image: {
  11799. source: "./media/characters/vanrel/side.svg",
  11800. extra: 1,
  11801. bottom: 0.025
  11802. }
  11803. },
  11804. tome: {
  11805. height: math.unit(1.35, "feet"),
  11806. weight: math.unit(10, "lb"),
  11807. name: "Vanrel's Tome",
  11808. rename: true,
  11809. image: {
  11810. source: "./media/characters/vanrel/tome.svg"
  11811. }
  11812. },
  11813. beans: {
  11814. height: math.unit(0.89, "feet"),
  11815. name: "Beans",
  11816. image: {
  11817. source: "./media/characters/vanrel/beans.svg"
  11818. }
  11819. },
  11820. },
  11821. [
  11822. {
  11823. name: "Normal",
  11824. height: math.unit(4 + 7 / 12, "feet"),
  11825. default: true
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(7 + 5 / 12, "feet"),
  11834. weight: math.unit(150, "lb"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/kuiper-vanrel/front.svg",
  11838. extra: 1118 / 1068,
  11839. bottom: 0.09
  11840. }
  11841. },
  11842. foot: {
  11843. height: math.unit(0.55, "meters"),
  11844. name: "Foot",
  11845. image: {
  11846. source: "./media/characters/kuiper-vanrel/foot.svg",
  11847. }
  11848. },
  11849. battle: {
  11850. height: math.unit(6.824, "feet"),
  11851. weight: math.unit(150, "lb"),
  11852. name: "Battle",
  11853. image: {
  11854. source: "./media/characters/kuiper-vanrel/battle.svg",
  11855. extra: 1466 / 1327,
  11856. bottom: 29 / 1492.5
  11857. }
  11858. },
  11859. battleAlt: {
  11860. height: math.unit(6.824, "feet"),
  11861. weight: math.unit(150, "lb"),
  11862. name: "Battle (Alt)",
  11863. image: {
  11864. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11865. extra: 2081 / 1965,
  11866. bottom: 40 / 2121
  11867. }
  11868. },
  11869. },
  11870. [
  11871. {
  11872. name: "Normal",
  11873. height: math.unit(7 + 5 / 12, "feet"),
  11874. default: true
  11875. },
  11876. ]
  11877. ))
  11878. characterMakers.push(() => makeCharacter(
  11879. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11880. {
  11881. front: {
  11882. height: math.unit(8 + 5 / 12, "feet"),
  11883. weight: math.unit(150, "lb"),
  11884. name: "Front",
  11885. image: {
  11886. source: "./media/characters/keset-vanrel/front.svg",
  11887. extra: 1150 / 1084,
  11888. bottom: 0.05
  11889. }
  11890. },
  11891. hand: {
  11892. height: math.unit(0.6, "meters"),
  11893. name: "Hand",
  11894. image: {
  11895. source: "./media/characters/keset-vanrel/hand.svg"
  11896. }
  11897. },
  11898. foot: {
  11899. height: math.unit(0.94978, "meters"),
  11900. name: "Foot",
  11901. image: {
  11902. source: "./media/characters/keset-vanrel/foot.svg"
  11903. }
  11904. },
  11905. battle: {
  11906. height: math.unit(7.408, "feet"),
  11907. weight: math.unit(150, "lb"),
  11908. name: "Battle",
  11909. image: {
  11910. source: "./media/characters/keset-vanrel/battle.svg",
  11911. extra: 1890 / 1386,
  11912. bottom: 73.28 / 1970
  11913. }
  11914. },
  11915. },
  11916. [
  11917. {
  11918. name: "Normal",
  11919. height: math.unit(8 + 5 / 12, "feet"),
  11920. default: true
  11921. },
  11922. ]
  11923. ))
  11924. characterMakers.push(() => makeCharacter(
  11925. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11926. {
  11927. front: {
  11928. height: math.unit(6, "feet"),
  11929. weight: math.unit(150, "lb"),
  11930. name: "Front",
  11931. image: {
  11932. source: "./media/characters/neos/front.svg",
  11933. extra: 1696 / 992,
  11934. bottom: 0.14
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(54, "cm"),
  11942. default: true
  11943. },
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(100, "m")
  11947. },
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(10, "km")
  11951. },
  11952. {
  11953. name: "Megamacro+",
  11954. height: math.unit(100, "km")
  11955. },
  11956. {
  11957. name: "Gigamacro",
  11958. height: math.unit(100, "Mm")
  11959. },
  11960. {
  11961. name: "Teramacro",
  11962. height: math.unit(100, "Gm")
  11963. },
  11964. {
  11965. name: "Examacro",
  11966. height: math.unit(100, "Em")
  11967. },
  11968. {
  11969. name: "Godly",
  11970. height: math.unit(10000, "Ym")
  11971. },
  11972. {
  11973. name: "Beyond Godly",
  11974. height: math.unit(25, "multiverses")
  11975. },
  11976. ]
  11977. ))
  11978. characterMakers.push(() => makeCharacter(
  11979. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11980. {
  11981. feminine: {
  11982. height: math.unit(5, "feet"),
  11983. weight: math.unit(100, "lb"),
  11984. name: "Feminine",
  11985. image: {
  11986. source: "./media/characters/sammy-mouse/feminine.svg",
  11987. extra: 2526 / 2425,
  11988. bottom: 0.123
  11989. }
  11990. },
  11991. masculine: {
  11992. height: math.unit(5, "feet"),
  11993. weight: math.unit(100, "lb"),
  11994. name: "Masculine",
  11995. image: {
  11996. source: "./media/characters/sammy-mouse/masculine.svg",
  11997. extra: 2526 / 2425,
  11998. bottom: 0.123
  11999. }
  12000. },
  12001. },
  12002. [
  12003. {
  12004. name: "Micro",
  12005. height: math.unit(5, "inches")
  12006. },
  12007. {
  12008. name: "Normal",
  12009. height: math.unit(5, "feet"),
  12010. default: true
  12011. },
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(60, "feet")
  12015. },
  12016. ]
  12017. ))
  12018. characterMakers.push(() => makeCharacter(
  12019. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12020. {
  12021. front: {
  12022. height: math.unit(4, "feet"),
  12023. weight: math.unit(50, "lb"),
  12024. name: "Front",
  12025. image: {
  12026. source: "./media/characters/kole/front.svg",
  12027. extra: 1423 / 1303,
  12028. bottom: 0.025
  12029. }
  12030. },
  12031. back: {
  12032. height: math.unit(4, "feet"),
  12033. weight: math.unit(50, "lb"),
  12034. name: "Back",
  12035. image: {
  12036. source: "./media/characters/kole/back.svg",
  12037. extra: 1426 / 1280,
  12038. bottom: 0.02
  12039. }
  12040. },
  12041. },
  12042. [
  12043. {
  12044. name: "Normal",
  12045. height: math.unit(4, "feet"),
  12046. default: true
  12047. },
  12048. ]
  12049. ))
  12050. characterMakers.push(() => makeCharacter(
  12051. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12052. {
  12053. front: {
  12054. height: math.unit(2 + 6 / 12, "feet"),
  12055. weight: math.unit(20, "lb"),
  12056. name: "Front",
  12057. image: {
  12058. source: "./media/characters/rufran/front.svg",
  12059. extra: 2041 / 1839,
  12060. bottom: 0.055
  12061. }
  12062. },
  12063. back: {
  12064. height: math.unit(2 + 6 / 12, "feet"),
  12065. weight: math.unit(20, "lb"),
  12066. name: "Back",
  12067. image: {
  12068. source: "./media/characters/rufran/back.svg",
  12069. extra: 2054 / 1839,
  12070. bottom: 0.01
  12071. }
  12072. },
  12073. hand: {
  12074. height: math.unit(0.2166, "meters"),
  12075. name: "Hand",
  12076. image: {
  12077. source: "./media/characters/rufran/hand.svg"
  12078. }
  12079. },
  12080. foot: {
  12081. height: math.unit(0.185, "meters"),
  12082. name: "Foot",
  12083. image: {
  12084. source: "./media/characters/rufran/foot.svg"
  12085. }
  12086. },
  12087. },
  12088. [
  12089. {
  12090. name: "Micro",
  12091. height: math.unit(1, "inch")
  12092. },
  12093. {
  12094. name: "Normal",
  12095. height: math.unit(2 + 6 / 12, "feet"),
  12096. default: true
  12097. },
  12098. {
  12099. name: "Big",
  12100. height: math.unit(60, "feet")
  12101. },
  12102. {
  12103. name: "Macro",
  12104. height: math.unit(325, "feet")
  12105. },
  12106. ]
  12107. ))
  12108. characterMakers.push(() => makeCharacter(
  12109. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12110. {
  12111. front: {
  12112. height: math.unit(0.3, "meters"),
  12113. weight: math.unit(3.5, "kg"),
  12114. name: "Front",
  12115. image: {
  12116. source: "./media/characters/chip/front.svg",
  12117. extra: 748 / 674
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Micro",
  12124. height: math.unit(1, "inch"),
  12125. default: true
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12131. {
  12132. side: {
  12133. height: math.unit(2.3, "meters"),
  12134. weight: math.unit(3500, "lb"),
  12135. name: "Side",
  12136. image: {
  12137. source: "./media/characters/torvid/side.svg",
  12138. extra: 1972 / 722,
  12139. bottom: 0.035
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Normal",
  12146. height: math.unit(2.3, "meters"),
  12147. default: true
  12148. },
  12149. ]
  12150. ))
  12151. characterMakers.push(() => makeCharacter(
  12152. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12153. {
  12154. front: {
  12155. height: math.unit(2, "meters"),
  12156. weight: math.unit(150.5, "kg"),
  12157. name: "Front",
  12158. image: {
  12159. source: "./media/characters/susan/front.svg",
  12160. extra: 693 / 635,
  12161. bottom: 0.05
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Megamacro",
  12168. height: math.unit(505, "miles"),
  12169. default: true
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(150, "lb"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/raindrops/front.svg",
  12182. extra: 2655 / 2461,
  12183. bottom: 49 / 2705
  12184. }
  12185. },
  12186. back: {
  12187. height: math.unit(6, "feet"),
  12188. weight: math.unit(150, "lb"),
  12189. name: "Back",
  12190. image: {
  12191. source: "./media/characters/raindrops/back.svg",
  12192. extra: 2574 / 2400,
  12193. bottom: 65 / 2634
  12194. }
  12195. },
  12196. },
  12197. [
  12198. {
  12199. name: "Micro",
  12200. height: math.unit(6, "inches")
  12201. },
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(6 + 2 / 12, "feet")
  12205. },
  12206. {
  12207. name: "Macro",
  12208. height: math.unit(131, "feet"),
  12209. default: true
  12210. },
  12211. {
  12212. name: "Megamacro",
  12213. height: math.unit(15, "miles")
  12214. },
  12215. {
  12216. name: "Gigamacro",
  12217. height: math.unit(4000, "miles")
  12218. },
  12219. {
  12220. name: "Teramacro",
  12221. height: math.unit(315000, "miles")
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(2.794, "meters"),
  12230. weight: math.unit(325, "kg"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/tezwa/front.svg",
  12234. extra: 2083 / 1906,
  12235. bottom: 0.031
  12236. }
  12237. },
  12238. foot: {
  12239. height: math.unit(0.687, "meters"),
  12240. name: "Foot",
  12241. image: {
  12242. source: "./media/characters/tezwa/foot.svg"
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(9 + 2 / 12, "feet"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(58, "feet"),
  12259. weight: math.unit(89000, "lb"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/typhus/front.svg",
  12263. extra: 816 / 800,
  12264. bottom: 0.065
  12265. }
  12266. },
  12267. },
  12268. [
  12269. {
  12270. name: "Macro",
  12271. height: math.unit(58, "feet"),
  12272. default: true
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12278. {
  12279. front: {
  12280. height: math.unit(12, "feet"),
  12281. weight: math.unit(6, "tonnes"),
  12282. name: "Front",
  12283. image: {
  12284. source: "./media/characters/lyra-von-wulf/front.svg",
  12285. extra: 1,
  12286. bottom: 0.10
  12287. }
  12288. },
  12289. frontMecha: {
  12290. height: math.unit(12, "feet"),
  12291. weight: math.unit(12, "tonnes"),
  12292. name: "Front (Mecha)",
  12293. image: {
  12294. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12295. extra: 1,
  12296. bottom: 0.042
  12297. }
  12298. },
  12299. maw: {
  12300. height: math.unit(2.2, "feet"),
  12301. name: "Maw",
  12302. image: {
  12303. source: "./media/characters/lyra-von-wulf/maw.svg"
  12304. }
  12305. },
  12306. },
  12307. [
  12308. {
  12309. name: "Normal",
  12310. height: math.unit(12, "feet"),
  12311. default: true
  12312. },
  12313. {
  12314. name: "Classic",
  12315. height: math.unit(50, "feet")
  12316. },
  12317. {
  12318. name: "Macro",
  12319. height: math.unit(500, "feet")
  12320. },
  12321. {
  12322. name: "Megamacro",
  12323. height: math.unit(1, "mile")
  12324. },
  12325. {
  12326. name: "Gigamacro",
  12327. height: math.unit(400, "miles")
  12328. },
  12329. {
  12330. name: "Teramacro",
  12331. height: math.unit(22000, "miles")
  12332. },
  12333. {
  12334. name: "Solarmacro",
  12335. height: math.unit(8600000, "miles")
  12336. },
  12337. {
  12338. name: "Galactic",
  12339. height: math.unit(1057000, "lightyears")
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12345. {
  12346. front: {
  12347. height: math.unit(6 + 10 / 12, "feet"),
  12348. weight: math.unit(150, "lb"),
  12349. name: "Front",
  12350. image: {
  12351. source: "./media/characters/dixon/front.svg",
  12352. extra: 3361 / 3209,
  12353. bottom: 0.01
  12354. }
  12355. },
  12356. },
  12357. [
  12358. {
  12359. name: "Normal",
  12360. height: math.unit(6 + 10 / 12, "feet"),
  12361. default: true
  12362. },
  12363. {
  12364. name: "Big",
  12365. height: math.unit(12, "meters")
  12366. },
  12367. {
  12368. name: "Macro",
  12369. height: math.unit(500, "meters")
  12370. },
  12371. {
  12372. name: "Megamacro",
  12373. height: math.unit(2, "km")
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12379. {
  12380. front: {
  12381. height: math.unit(185, "cm"),
  12382. weight: math.unit(68, "kg"),
  12383. name: "Front",
  12384. image: {
  12385. source: "./media/characters/kauko/front.svg",
  12386. extra: 1455 / 1421,
  12387. bottom: 0.03
  12388. }
  12389. },
  12390. back: {
  12391. height: math.unit(185, "cm"),
  12392. weight: math.unit(68, "kg"),
  12393. name: "Back",
  12394. image: {
  12395. source: "./media/characters/kauko/back.svg",
  12396. extra: 1455 / 1421,
  12397. bottom: 0.004
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Normal",
  12404. height: math.unit(185, "cm"),
  12405. default: true
  12406. },
  12407. ]
  12408. ))
  12409. characterMakers.push(() => makeCharacter(
  12410. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12411. {
  12412. front: {
  12413. height: math.unit(6, "feet"),
  12414. weight: math.unit(150, "kg"),
  12415. name: "Front",
  12416. image: {
  12417. source: "./media/characters/varg/front.svg",
  12418. extra: 1108 / 1018,
  12419. bottom: 0.0375
  12420. }
  12421. },
  12422. },
  12423. [
  12424. {
  12425. name: "Normal",
  12426. height: math.unit(5, "meters")
  12427. },
  12428. {
  12429. name: "Macro",
  12430. height: math.unit(200, "meters")
  12431. },
  12432. {
  12433. name: "Megamacro",
  12434. height: math.unit(20, "kilometers")
  12435. },
  12436. {
  12437. name: "True Size",
  12438. height: math.unit(211, "km"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Gigamacro",
  12443. height: math.unit(1000, "km")
  12444. },
  12445. {
  12446. name: "Gigamacro+",
  12447. height: math.unit(8000, "km")
  12448. },
  12449. {
  12450. name: "Teramacro",
  12451. height: math.unit(1000000, "km")
  12452. },
  12453. ]
  12454. ))
  12455. characterMakers.push(() => makeCharacter(
  12456. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12457. {
  12458. front: {
  12459. height: math.unit(7 + 7 / 12, "feet"),
  12460. weight: math.unit(267, "lb"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/dayza/front.svg",
  12464. extra: 1262 / 1200,
  12465. bottom: 0.035
  12466. }
  12467. },
  12468. side: {
  12469. height: math.unit(7 + 7 / 12, "feet"),
  12470. weight: math.unit(267, "lb"),
  12471. name: "Side",
  12472. image: {
  12473. source: "./media/characters/dayza/side.svg",
  12474. extra: 1295 / 1245,
  12475. bottom: 0.05
  12476. }
  12477. },
  12478. back: {
  12479. height: math.unit(7 + 7 / 12, "feet"),
  12480. weight: math.unit(267, "lb"),
  12481. name: "Back",
  12482. image: {
  12483. source: "./media/characters/dayza/back.svg",
  12484. extra: 1241 / 1170
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Normal",
  12491. height: math.unit(7 + 7 / 12, "feet"),
  12492. default: true
  12493. },
  12494. {
  12495. name: "Macro",
  12496. height: math.unit(155, "feet")
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(6 + 5 / 12, "feet"),
  12505. weight: math.unit(160, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/xanthos/front.svg",
  12509. extra: 1,
  12510. bottom: 0.04
  12511. }
  12512. },
  12513. back: {
  12514. height: math.unit(6 + 5 / 12, "feet"),
  12515. weight: math.unit(160, "lb"),
  12516. name: "Back",
  12517. image: {
  12518. source: "./media/characters/xanthos/back.svg",
  12519. extra: 1,
  12520. bottom: 0.03
  12521. }
  12522. },
  12523. hand: {
  12524. height: math.unit(0.928, "feet"),
  12525. name: "Hand",
  12526. image: {
  12527. source: "./media/characters/xanthos/hand.svg"
  12528. }
  12529. },
  12530. foot: {
  12531. height: math.unit(1.286, "feet"),
  12532. name: "Foot",
  12533. image: {
  12534. source: "./media/characters/xanthos/foot.svg"
  12535. }
  12536. },
  12537. },
  12538. [
  12539. {
  12540. name: "Normal",
  12541. height: math.unit(6 + 5 / 12, "feet"),
  12542. default: true
  12543. },
  12544. {
  12545. name: "Normal+",
  12546. height: math.unit(6, "meters")
  12547. },
  12548. {
  12549. name: "Macro",
  12550. height: math.unit(40, "feet")
  12551. },
  12552. {
  12553. name: "Macro+",
  12554. height: math.unit(200, "meters")
  12555. },
  12556. {
  12557. name: "Megamacro",
  12558. height: math.unit(20, "km")
  12559. },
  12560. {
  12561. name: "Megamacro+",
  12562. height: math.unit(100, "km")
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12568. {
  12569. front: {
  12570. height: math.unit(6 + 3 / 12, "feet"),
  12571. weight: math.unit(215, "lb"),
  12572. name: "Front",
  12573. image: {
  12574. source: "./media/characters/grynn/front.svg",
  12575. extra: 4627 / 4209,
  12576. bottom: 0.047
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Micro",
  12583. height: math.unit(6, "inches")
  12584. },
  12585. {
  12586. name: "Normal",
  12587. height: math.unit(6 + 3 / 12, "feet"),
  12588. default: true
  12589. },
  12590. {
  12591. name: "Big",
  12592. height: math.unit(104, "feet")
  12593. },
  12594. {
  12595. name: "Macro",
  12596. height: math.unit(944, "feet")
  12597. },
  12598. {
  12599. name: "Macro+",
  12600. height: math.unit(9480, "feet")
  12601. },
  12602. {
  12603. name: "Megamacro",
  12604. height: math.unit(78752, "feet")
  12605. },
  12606. {
  12607. name: "Megamacro+",
  12608. height: math.unit(630128, "feet")
  12609. },
  12610. {
  12611. name: "Megamacro++",
  12612. height: math.unit(3150695, "feet")
  12613. },
  12614. ]
  12615. ))
  12616. characterMakers.push(() => makeCharacter(
  12617. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12618. {
  12619. front: {
  12620. height: math.unit(7 + 5 / 12, "feet"),
  12621. weight: math.unit(450, "lb"),
  12622. name: "Front",
  12623. image: {
  12624. source: "./media/characters/mocha-aura/front.svg",
  12625. extra: 1907 / 1817,
  12626. bottom: 0.04
  12627. }
  12628. },
  12629. back: {
  12630. height: math.unit(7 + 5 / 12, "feet"),
  12631. weight: math.unit(450, "lb"),
  12632. name: "Back",
  12633. image: {
  12634. source: "./media/characters/mocha-aura/back.svg",
  12635. extra: 1900 / 1825,
  12636. bottom: 0.045
  12637. }
  12638. },
  12639. },
  12640. [
  12641. {
  12642. name: "Nano",
  12643. height: math.unit(1, "nm")
  12644. },
  12645. {
  12646. name: "Megamicro",
  12647. height: math.unit(1, "mm")
  12648. },
  12649. {
  12650. name: "Micro",
  12651. height: math.unit(3, "inches")
  12652. },
  12653. {
  12654. name: "Normal",
  12655. height: math.unit(7 + 5 / 12, "feet"),
  12656. default: true
  12657. },
  12658. {
  12659. name: "Macro",
  12660. height: math.unit(30, "feet")
  12661. },
  12662. {
  12663. name: "Megamacro",
  12664. height: math.unit(3500, "feet")
  12665. },
  12666. {
  12667. name: "Teramacro",
  12668. height: math.unit(500000, "miles")
  12669. },
  12670. {
  12671. name: "Petamacro",
  12672. height: math.unit(50000000000000000, "parsecs")
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(150, "lb"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/ilisha-devya/front.svg",
  12685. extra: 1,
  12686. bottom: 0.175
  12687. }
  12688. },
  12689. back: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(150, "lb"),
  12692. name: "Back",
  12693. image: {
  12694. source: "./media/characters/ilisha-devya/back.svg",
  12695. extra: 1,
  12696. bottom: 0.015
  12697. }
  12698. },
  12699. },
  12700. [
  12701. {
  12702. name: "Macro",
  12703. height: math.unit(500, "feet"),
  12704. default: true
  12705. },
  12706. {
  12707. name: "Megamacro",
  12708. height: math.unit(10, "miles")
  12709. },
  12710. {
  12711. name: "Gigamacro",
  12712. height: math.unit(100000, "miles")
  12713. },
  12714. {
  12715. name: "Examacro",
  12716. height: math.unit(1e9, "lightyears")
  12717. },
  12718. {
  12719. name: "Omniversal",
  12720. height: math.unit(1e33, "lightyears")
  12721. },
  12722. {
  12723. name: "Beyond Infinite",
  12724. height: math.unit(1e100, "lightyears")
  12725. },
  12726. ]
  12727. ))
  12728. characterMakers.push(() => makeCharacter(
  12729. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12730. {
  12731. Side: {
  12732. height: math.unit(6, "feet"),
  12733. weight: math.unit(150, "lb"),
  12734. name: "Side",
  12735. image: {
  12736. source: "./media/characters/mira/side.svg",
  12737. extra: 900 / 799,
  12738. bottom: 0.02
  12739. }
  12740. },
  12741. },
  12742. [
  12743. {
  12744. name: "Human Size",
  12745. height: math.unit(6, "feet")
  12746. },
  12747. {
  12748. name: "Macro",
  12749. height: math.unit(100, "feet"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Megamacro",
  12754. height: math.unit(10, "miles")
  12755. },
  12756. {
  12757. name: "Gigamacro",
  12758. height: math.unit(25000, "miles")
  12759. },
  12760. {
  12761. name: "Teramacro",
  12762. height: math.unit(300, "AU")
  12763. },
  12764. {
  12765. name: "Full Size",
  12766. height: math.unit(4.5e10, "lightyears")
  12767. },
  12768. ]
  12769. ))
  12770. characterMakers.push(() => makeCharacter(
  12771. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12772. {
  12773. front: {
  12774. height: math.unit(6, "feet"),
  12775. weight: math.unit(150, "lb"),
  12776. name: "Front",
  12777. image: {
  12778. source: "./media/characters/holly/front.svg",
  12779. extra: 639 / 606
  12780. }
  12781. },
  12782. back: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "lb"),
  12785. name: "Back",
  12786. image: {
  12787. source: "./media/characters/holly/back.svg",
  12788. extra: 623 / 598
  12789. }
  12790. },
  12791. frontWorking: {
  12792. height: math.unit(6, "feet"),
  12793. weight: math.unit(150, "lb"),
  12794. name: "Front (Working)",
  12795. image: {
  12796. source: "./media/characters/holly/front-working.svg",
  12797. extra: 607 / 577,
  12798. bottom: 0.048
  12799. }
  12800. },
  12801. },
  12802. [
  12803. {
  12804. name: "Normal",
  12805. height: math.unit(12 + 3 / 12, "feet"),
  12806. default: true
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12812. {
  12813. front: {
  12814. height: math.unit(6, "feet"),
  12815. weight: math.unit(150, "lb"),
  12816. name: "Front",
  12817. image: {
  12818. source: "./media/characters/porter/front.svg",
  12819. extra: 1,
  12820. bottom: 0.01
  12821. }
  12822. },
  12823. frontRobes: {
  12824. height: math.unit(6, "feet"),
  12825. weight: math.unit(150, "lb"),
  12826. name: "Front (Robes)",
  12827. image: {
  12828. source: "./media/characters/porter/front-robes.svg",
  12829. extra: 1.01,
  12830. bottom: 0.01
  12831. }
  12832. },
  12833. },
  12834. [
  12835. {
  12836. name: "Normal",
  12837. height: math.unit(11 + 9 / 12, "feet"),
  12838. default: true
  12839. },
  12840. ]
  12841. ))
  12842. characterMakers.push(() => makeCharacter(
  12843. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12844. {
  12845. legendary: {
  12846. height: math.unit(6, "feet"),
  12847. weight: math.unit(150, "lb"),
  12848. name: "Legendary",
  12849. image: {
  12850. source: "./media/characters/lucy/legendary.svg",
  12851. extra: 1355 / 1100,
  12852. bottom: 0.045
  12853. }
  12854. },
  12855. },
  12856. [
  12857. {
  12858. name: "Legendary",
  12859. height: math.unit(86882 * 2, "miles"),
  12860. default: true
  12861. },
  12862. ]
  12863. ))
  12864. characterMakers.push(() => makeCharacter(
  12865. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12866. {
  12867. front: {
  12868. height: math.unit(6, "feet"),
  12869. weight: math.unit(150, "lb"),
  12870. name: "Front",
  12871. image: {
  12872. source: "./media/characters/drusilla/front.svg",
  12873. extra: 678 / 635,
  12874. bottom: 0.03
  12875. }
  12876. },
  12877. back: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(150, "lb"),
  12880. name: "Back",
  12881. image: {
  12882. source: "./media/characters/drusilla/back.svg",
  12883. extra: 678 / 635,
  12884. bottom: 0.005
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Macro",
  12891. height: math.unit(100, "feet")
  12892. },
  12893. {
  12894. name: "Canon Height",
  12895. height: math.unit(2000, "feet"),
  12896. default: true
  12897. },
  12898. ]
  12899. ))
  12900. characterMakers.push(() => makeCharacter(
  12901. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12902. {
  12903. front: {
  12904. height: math.unit(6, "feet"),
  12905. weight: math.unit(180, "lb"),
  12906. name: "Front",
  12907. image: {
  12908. source: "./media/characters/renard-thatch/front.svg",
  12909. extra: 2411 / 2275,
  12910. bottom: 0.01
  12911. }
  12912. },
  12913. frontPosing: {
  12914. height: math.unit(6, "feet"),
  12915. weight: math.unit(180, "lb"),
  12916. name: "Front (Posing)",
  12917. image: {
  12918. source: "./media/characters/renard-thatch/front-posing.svg",
  12919. extra: 2381 / 2261,
  12920. bottom: 0.01
  12921. }
  12922. },
  12923. back: {
  12924. height: math.unit(6, "feet"),
  12925. weight: math.unit(180, "lb"),
  12926. name: "Back",
  12927. image: {
  12928. source: "./media/characters/renard-thatch/back.svg",
  12929. extra: 2428 / 2288
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Micro",
  12936. height: math.unit(3, "inches")
  12937. },
  12938. {
  12939. name: "Default",
  12940. height: math.unit(6, "feet"),
  12941. default: true
  12942. },
  12943. {
  12944. name: "Macro",
  12945. height: math.unit(75, "feet")
  12946. },
  12947. ]
  12948. ))
  12949. characterMakers.push(() => makeCharacter(
  12950. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12951. {
  12952. front: {
  12953. height: math.unit(1450, "feet"),
  12954. weight: math.unit(1.21e6, "tons"),
  12955. name: "Front",
  12956. image: {
  12957. source: "./media/characters/sekvra/front.svg",
  12958. extra: 1,
  12959. bottom: 0.03
  12960. }
  12961. },
  12962. frontClothed: {
  12963. height: math.unit(1450, "feet"),
  12964. weight: math.unit(1.21e6, "tons"),
  12965. name: "Front (Clothed)",
  12966. image: {
  12967. source: "./media/characters/sekvra/front-clothed.svg",
  12968. extra: 1,
  12969. bottom: 0.03
  12970. }
  12971. },
  12972. side: {
  12973. height: math.unit(1450, "feet"),
  12974. weight: math.unit(1.21e6, "tons"),
  12975. name: "Side",
  12976. image: {
  12977. source: "./media/characters/sekvra/side.svg",
  12978. extra: 1,
  12979. bottom: 0.025
  12980. }
  12981. },
  12982. back: {
  12983. height: math.unit(1450, "feet"),
  12984. weight: math.unit(1.21e6, "tons"),
  12985. name: "Back",
  12986. image: {
  12987. source: "./media/characters/sekvra/back.svg",
  12988. extra: 1,
  12989. bottom: 0.005
  12990. }
  12991. },
  12992. },
  12993. [
  12994. {
  12995. name: "Macro",
  12996. height: math.unit(1450, "feet"),
  12997. default: true
  12998. },
  12999. {
  13000. name: "Megamacro",
  13001. height: math.unit(15000, "feet")
  13002. },
  13003. ]
  13004. ))
  13005. characterMakers.push(() => makeCharacter(
  13006. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13007. {
  13008. front: {
  13009. height: math.unit(6, "feet"),
  13010. weight: math.unit(150, "lb"),
  13011. name: "Front",
  13012. image: {
  13013. source: "./media/characters/carmine/front.svg",
  13014. extra: 1,
  13015. bottom: 0.035
  13016. }
  13017. },
  13018. frontArmor: {
  13019. height: math.unit(6, "feet"),
  13020. weight: math.unit(150, "lb"),
  13021. name: "Front (Armor)",
  13022. image: {
  13023. source: "./media/characters/carmine/front-armor.svg",
  13024. extra: 1,
  13025. bottom: 0.035
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Large",
  13032. height: math.unit(1, "mile")
  13033. },
  13034. {
  13035. name: "Huge",
  13036. height: math.unit(40, "miles"),
  13037. default: true
  13038. },
  13039. {
  13040. name: "Colossal",
  13041. height: math.unit(2500, "miles")
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13047. {
  13048. front: {
  13049. height: math.unit(6, "feet"),
  13050. weight: math.unit(150, "lb"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/elyssia/front.svg",
  13054. extra: 2201 / 2035,
  13055. bottom: 0.05
  13056. }
  13057. },
  13058. frontClothed: {
  13059. height: math.unit(6, "feet"),
  13060. weight: math.unit(150, "lb"),
  13061. name: "Front (Clothed)",
  13062. image: {
  13063. source: "./media/characters/elyssia/front-clothed.svg",
  13064. extra: 2201 / 2035,
  13065. bottom: 0.05
  13066. }
  13067. },
  13068. back: {
  13069. height: math.unit(6, "feet"),
  13070. weight: math.unit(150, "lb"),
  13071. name: "Back",
  13072. image: {
  13073. source: "./media/characters/elyssia/back.svg",
  13074. extra: 2201 / 2035,
  13075. bottom: 0.013
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Smaller",
  13082. height: math.unit(150, "feet")
  13083. },
  13084. {
  13085. name: "Standard",
  13086. height: math.unit(1400, "feet"),
  13087. default: true
  13088. },
  13089. {
  13090. name: "Distracted",
  13091. height: math.unit(15000, "feet")
  13092. },
  13093. ]
  13094. ))
  13095. characterMakers.push(() => makeCharacter(
  13096. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13097. {
  13098. front: {
  13099. height: math.unit(7 + 4 / 12, "feet"),
  13100. weight: math.unit(500, "lb"),
  13101. name: "Front",
  13102. image: {
  13103. source: "./media/characters/geno-maxwell/front.svg",
  13104. extra: 2207 / 2040,
  13105. bottom: 0.015
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Micro",
  13112. height: math.unit(3, "inches")
  13113. },
  13114. {
  13115. name: "Normal",
  13116. height: math.unit(7 + 4 / 12, "feet"),
  13117. default: true
  13118. },
  13119. {
  13120. name: "Macro",
  13121. height: math.unit(220, "feet")
  13122. },
  13123. {
  13124. name: "Megamacro",
  13125. height: math.unit(11, "miles")
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(7 + 4 / 12, "feet"),
  13134. weight: math.unit(500, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/regena-maxwell/front.svg",
  13138. extra: 3115 / 2770,
  13139. bottom: 0.02
  13140. }
  13141. },
  13142. },
  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: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(6, "feet"),
  13164. weight: math.unit(150, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13168. extra: 860 / 690,
  13169. bottom: 0.03
  13170. }
  13171. },
  13172. },
  13173. [
  13174. {
  13175. name: "Normal",
  13176. height: math.unit(1.7, "meters"),
  13177. default: true
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13183. {
  13184. front: {
  13185. height: math.unit(6, "feet"),
  13186. weight: math.unit(150, "lb"),
  13187. name: "Front",
  13188. image: {
  13189. source: "./media/characters/quilly/front.svg",
  13190. extra: 890 / 776
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Gigamacro",
  13197. height: math.unit(404090, "miles"),
  13198. default: true
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(7 + 8 / 12, "feet"),
  13207. weight: math.unit(350, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/tempest/front.svg",
  13211. extra: 1175 / 1086,
  13212. bottom: 0.02
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Normal",
  13219. height: math.unit(7 + 8 / 12, "feet"),
  13220. default: true
  13221. },
  13222. ]
  13223. ))
  13224. characterMakers.push(() => makeCharacter(
  13225. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13226. {
  13227. side: {
  13228. height: math.unit(4 + 5 / 12, "feet"),
  13229. weight: math.unit(80, "lb"),
  13230. name: "Side",
  13231. image: {
  13232. source: "./media/characters/rodger/side.svg",
  13233. extra: 1235 / 1118
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Micro",
  13240. height: math.unit(1, "inch")
  13241. },
  13242. {
  13243. name: "Normal",
  13244. height: math.unit(4 + 5 / 12, "feet"),
  13245. default: true
  13246. },
  13247. {
  13248. name: "Macro",
  13249. height: math.unit(120, "feet")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(6, "feet"),
  13258. weight: math.unit(150, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/danyel/front.svg",
  13262. extra: 1185 / 1123,
  13263. bottom: 0.05
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Shrunken",
  13270. height: math.unit(0.5, "mm")
  13271. },
  13272. {
  13273. name: "Micro",
  13274. height: math.unit(1, "mm"),
  13275. default: true
  13276. },
  13277. {
  13278. name: "Upsized",
  13279. height: math.unit(5 + 5 / 12, "feet")
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13285. {
  13286. front: {
  13287. height: math.unit(5 + 6 / 12, "feet"),
  13288. weight: math.unit(200, "lb"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/vivian-bijoux/front.svg",
  13292. extra: 1,
  13293. bottom: 0.072
  13294. }
  13295. },
  13296. },
  13297. [
  13298. {
  13299. name: "Normal",
  13300. height: math.unit(5 + 6 / 12, "feet"),
  13301. default: true
  13302. },
  13303. {
  13304. name: "Bad Dream",
  13305. height: math.unit(500, "feet")
  13306. },
  13307. {
  13308. name: "Nightmare",
  13309. height: math.unit(500, "miles")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(6 + 1 / 12, "feet"),
  13318. weight: math.unit(260, "lb"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/zeta/front.svg",
  13322. extra: 1968 / 1889,
  13323. bottom: 0.06
  13324. }
  13325. },
  13326. back: {
  13327. height: math.unit(6 + 1 / 12, "feet"),
  13328. weight: math.unit(260, "lb"),
  13329. name: "Back",
  13330. image: {
  13331. source: "./media/characters/zeta/back.svg",
  13332. extra: 1944 / 1858,
  13333. bottom: 0.03
  13334. }
  13335. },
  13336. hand: {
  13337. height: math.unit(1.112, "feet"),
  13338. name: "Hand",
  13339. image: {
  13340. source: "./media/characters/zeta/hand.svg"
  13341. }
  13342. },
  13343. foot: {
  13344. height: math.unit(1.48, "feet"),
  13345. name: "Foot",
  13346. image: {
  13347. source: "./media/characters/zeta/foot.svg"
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Micro",
  13354. height: math.unit(6, "inches")
  13355. },
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(6 + 1 / 12, "feet"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Macro",
  13363. height: math.unit(20, "feet")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(6, "feet"),
  13372. weight: math.unit(150, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/jamie-larsen/front.svg",
  13376. extra: 962 / 933,
  13377. bottom: 0.02
  13378. }
  13379. },
  13380. back: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Back",
  13384. image: {
  13385. source: "./media/characters/jamie-larsen/back.svg",
  13386. extra: 997 / 946
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Macro",
  13393. height: math.unit(28 + 7 / 12, "feet"),
  13394. default: true
  13395. },
  13396. {
  13397. name: "Macro+",
  13398. height: math.unit(180, "feet")
  13399. },
  13400. {
  13401. name: "Megamacro",
  13402. height: math.unit(10, "miles")
  13403. },
  13404. {
  13405. name: "Gigamacro",
  13406. height: math.unit(200000, "miles")
  13407. },
  13408. ]
  13409. ))
  13410. characterMakers.push(() => makeCharacter(
  13411. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13412. {
  13413. front: {
  13414. height: math.unit(6, "feet"),
  13415. weight: math.unit(120, "lb"),
  13416. name: "Front",
  13417. image: {
  13418. source: "./media/characters/vance/front.svg",
  13419. extra: 1980 / 1890,
  13420. bottom: 0.09
  13421. }
  13422. },
  13423. back: {
  13424. height: math.unit(6, "feet"),
  13425. weight: math.unit(120, "lb"),
  13426. name: "Back",
  13427. image: {
  13428. source: "./media/characters/vance/back.svg",
  13429. extra: 2081 / 1994,
  13430. bottom: 0.014
  13431. }
  13432. },
  13433. hand: {
  13434. height: math.unit(0.88, "feet"),
  13435. name: "Hand",
  13436. image: {
  13437. source: "./media/characters/vance/hand.svg"
  13438. }
  13439. },
  13440. foot: {
  13441. height: math.unit(0.64, "feet"),
  13442. name: "Foot",
  13443. image: {
  13444. source: "./media/characters/vance/foot.svg"
  13445. }
  13446. },
  13447. },
  13448. [
  13449. {
  13450. name: "Small",
  13451. height: math.unit(90, "feet"),
  13452. default: true
  13453. },
  13454. {
  13455. name: "Macro",
  13456. height: math.unit(100, "meters")
  13457. },
  13458. {
  13459. name: "Megamacro",
  13460. height: math.unit(15, "miles")
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13466. {
  13467. front: {
  13468. height: math.unit(6, "feet"),
  13469. weight: math.unit(180, "lb"),
  13470. name: "Front",
  13471. image: {
  13472. source: "./media/characters/xochitl/front.svg",
  13473. extra: 2297 / 2261,
  13474. bottom: 0.065
  13475. }
  13476. },
  13477. back: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(180, "lb"),
  13480. name: "Back",
  13481. image: {
  13482. source: "./media/characters/xochitl/back.svg",
  13483. extra: 2386 / 2354,
  13484. bottom: 0.01
  13485. }
  13486. },
  13487. foot: {
  13488. height: math.unit(6 / 5 * 1.15, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Foot",
  13491. image: {
  13492. source: "./media/characters/xochitl/foot.svg"
  13493. }
  13494. },
  13495. },
  13496. [
  13497. {
  13498. name: "Macro",
  13499. height: math.unit(80, "feet")
  13500. },
  13501. {
  13502. name: "Macro+",
  13503. height: math.unit(400, "feet"),
  13504. default: true
  13505. },
  13506. {
  13507. name: "Gigamacro",
  13508. height: math.unit(80000, "miles")
  13509. },
  13510. {
  13511. name: "Gigamacro+",
  13512. height: math.unit(400000, "miles")
  13513. },
  13514. {
  13515. name: "Teramacro",
  13516. height: math.unit(300, "AU")
  13517. },
  13518. ]
  13519. ))
  13520. characterMakers.push(() => makeCharacter(
  13521. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13522. {
  13523. front: {
  13524. height: math.unit(6, "feet"),
  13525. weight: math.unit(150, "lb"),
  13526. name: "Front",
  13527. image: {
  13528. source: "./media/characters/vincent/front.svg",
  13529. extra: 1130 / 1080,
  13530. bottom: 0.055
  13531. }
  13532. },
  13533. beak: {
  13534. height: math.unit(6 * 0.1, "feet"),
  13535. name: "Beak",
  13536. image: {
  13537. source: "./media/characters/vincent/beak.svg"
  13538. }
  13539. },
  13540. hand: {
  13541. height: math.unit(6 * 0.85, "feet"),
  13542. weight: math.unit(150, "lb"),
  13543. name: "Hand",
  13544. image: {
  13545. source: "./media/characters/vincent/hand.svg"
  13546. }
  13547. },
  13548. foot: {
  13549. height: math.unit(6 * 0.19, "feet"),
  13550. weight: math.unit(150, "lb"),
  13551. name: "Foot",
  13552. image: {
  13553. source: "./media/characters/vincent/foot.svg"
  13554. }
  13555. },
  13556. },
  13557. [
  13558. {
  13559. name: "Base",
  13560. height: math.unit(6 + 5 / 12, "feet"),
  13561. default: true
  13562. },
  13563. {
  13564. name: "Macro",
  13565. height: math.unit(300, "feet")
  13566. },
  13567. {
  13568. name: "Megamacro",
  13569. height: math.unit(2, "miles")
  13570. },
  13571. {
  13572. name: "Gigamacro",
  13573. height: math.unit(1000, "miles")
  13574. },
  13575. ]
  13576. ))
  13577. characterMakers.push(() => makeCharacter(
  13578. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13579. {
  13580. front: {
  13581. height: math.unit(2, "meters"),
  13582. weight: math.unit(500, "kg"),
  13583. name: "Front",
  13584. image: {
  13585. source: "./media/characters/coatl/front.svg",
  13586. extra: 3948 / 3500,
  13587. bottom: 0.082
  13588. }
  13589. },
  13590. },
  13591. [
  13592. {
  13593. name: "Normal",
  13594. height: math.unit(4, "meters")
  13595. },
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(100, "meters"),
  13599. default: true
  13600. },
  13601. {
  13602. name: "Macro+",
  13603. height: math.unit(300, "meters")
  13604. },
  13605. {
  13606. name: "Megamacro",
  13607. height: math.unit(3, "gigameters")
  13608. },
  13609. {
  13610. name: "Megamacro+",
  13611. height: math.unit(300, "terameters")
  13612. },
  13613. {
  13614. name: "Megamacro++",
  13615. height: math.unit(3, "lightyears")
  13616. },
  13617. ]
  13618. ))
  13619. characterMakers.push(() => makeCharacter(
  13620. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13621. {
  13622. front: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(50, "kg"),
  13625. name: "front",
  13626. image: {
  13627. source: "./media/characters/shiroryu/front.svg",
  13628. extra: 1990 / 1935
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Mortal Mingling",
  13635. height: math.unit(3, "meters")
  13636. },
  13637. {
  13638. name: "Kaiju-ish",
  13639. height: math.unit(250, "meters")
  13640. },
  13641. {
  13642. name: "Somewhat Godly",
  13643. height: math.unit(400, "km"),
  13644. default: true
  13645. },
  13646. {
  13647. name: "Planetary",
  13648. height: math.unit(300, "megameters")
  13649. },
  13650. {
  13651. name: "Galaxy-dwarfing",
  13652. height: math.unit(450, "kiloparsecs")
  13653. },
  13654. {
  13655. name: "Universe Eater",
  13656. height: math.unit(150, "gigaparsecs")
  13657. },
  13658. {
  13659. name: "Almost Immeasurable",
  13660. height: math.unit(1.3e266, "yottaparsecs")
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13666. {
  13667. front: {
  13668. height: math.unit(6, "feet"),
  13669. weight: math.unit(150, "lb"),
  13670. name: "Front",
  13671. image: {
  13672. source: "./media/characters/umeko/front.svg",
  13673. extra: 1,
  13674. bottom: 0.019
  13675. }
  13676. },
  13677. frontArmored: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(150, "lb"),
  13680. name: "Front (Armored)",
  13681. image: {
  13682. source: "./media/characters/umeko/front-armored.svg",
  13683. extra: 1,
  13684. bottom: 0.021
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Macro",
  13691. height: math.unit(220, "feet"),
  13692. default: true
  13693. },
  13694. {
  13695. name: "Guardian Dragon",
  13696. height: math.unit(50, "miles")
  13697. },
  13698. {
  13699. name: "Cosmic",
  13700. height: math.unit(800000, "miles")
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13706. {
  13707. front: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/cassidy/front.svg",
  13713. extra: 1,
  13714. bottom: 0.043
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Canon Height",
  13721. height: math.unit(120, "feet"),
  13722. default: true
  13723. },
  13724. {
  13725. name: "Macro+",
  13726. height: math.unit(400, "feet")
  13727. },
  13728. {
  13729. name: "Macro++",
  13730. height: math.unit(4000, "feet")
  13731. },
  13732. {
  13733. name: "Megamacro",
  13734. height: math.unit(3, "miles")
  13735. },
  13736. ]
  13737. ))
  13738. characterMakers.push(() => makeCharacter(
  13739. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13740. {
  13741. front: {
  13742. height: math.unit(6, "feet"),
  13743. weight: math.unit(150, "lb"),
  13744. name: "Front",
  13745. image: {
  13746. source: "./media/characters/isaac/front.svg",
  13747. extra: 896 / 815,
  13748. bottom: 0.11
  13749. }
  13750. },
  13751. },
  13752. [
  13753. {
  13754. name: "Human Size",
  13755. height: math.unit(8, "feet"),
  13756. default: true
  13757. },
  13758. {
  13759. name: "Macro",
  13760. height: math.unit(400, "feet")
  13761. },
  13762. {
  13763. name: "Megamacro",
  13764. height: math.unit(50, "miles")
  13765. },
  13766. {
  13767. name: "Canon Height",
  13768. height: math.unit(200, "AU")
  13769. },
  13770. ]
  13771. ))
  13772. characterMakers.push(() => makeCharacter(
  13773. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13774. {
  13775. front: {
  13776. height: math.unit(6, "feet"),
  13777. weight: math.unit(72, "kg"),
  13778. name: "Front",
  13779. image: {
  13780. source: "./media/characters/sleekit/front.svg",
  13781. extra: 4693 / 4487,
  13782. bottom: 0.012
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Minimum Height",
  13789. height: math.unit(10, "meters")
  13790. },
  13791. {
  13792. name: "Smaller",
  13793. height: math.unit(25, "meters")
  13794. },
  13795. {
  13796. name: "Larger",
  13797. height: math.unit(38, "meters"),
  13798. default: true
  13799. },
  13800. {
  13801. name: "Maximum height",
  13802. height: math.unit(100, "meters")
  13803. },
  13804. ]
  13805. ))
  13806. characterMakers.push(() => makeCharacter(
  13807. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13808. {
  13809. front: {
  13810. height: math.unit(6, "feet"),
  13811. weight: math.unit(150, "lb"),
  13812. name: "Front",
  13813. image: {
  13814. source: "./media/characters/nillia/front.svg",
  13815. extra: 2195 / 2037,
  13816. bottom: 0.005
  13817. }
  13818. },
  13819. back: {
  13820. height: math.unit(6, "feet"),
  13821. weight: math.unit(150, "lb"),
  13822. name: "Back",
  13823. image: {
  13824. source: "./media/characters/nillia/back.svg",
  13825. extra: 2195 / 2037,
  13826. bottom: 0.005
  13827. }
  13828. },
  13829. },
  13830. [
  13831. {
  13832. name: "Canon Height",
  13833. height: math.unit(489, "feet"),
  13834. default: true
  13835. }
  13836. ]
  13837. ))
  13838. characterMakers.push(() => makeCharacter(
  13839. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13840. {
  13841. front: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(150, "lb"),
  13844. name: "Front",
  13845. image: {
  13846. source: "./media/characters/mesmyriza/front.svg",
  13847. extra: 2067 / 1784,
  13848. bottom: 0.035
  13849. }
  13850. },
  13851. foot: {
  13852. height: math.unit(6 / (250 / 35), "feet"),
  13853. name: "Foot",
  13854. image: {
  13855. source: "./media/characters/mesmyriza/foot.svg"
  13856. }
  13857. },
  13858. },
  13859. [
  13860. {
  13861. name: "Macro",
  13862. height: math.unit(457, "meters"),
  13863. default: true
  13864. },
  13865. {
  13866. name: "Megamacro",
  13867. height: math.unit(8, "megameters")
  13868. },
  13869. ]
  13870. ))
  13871. characterMakers.push(() => makeCharacter(
  13872. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13873. {
  13874. front: {
  13875. height: math.unit(6, "feet"),
  13876. weight: math.unit(250, "lb"),
  13877. name: "Front",
  13878. image: {
  13879. source: "./media/characters/saudade/front.svg",
  13880. extra: 1172 / 1139,
  13881. bottom: 0.035
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Micro",
  13888. height: math.unit(3, "inches")
  13889. },
  13890. {
  13891. name: "Normal",
  13892. height: math.unit(6, "feet"),
  13893. default: true
  13894. },
  13895. {
  13896. name: "Macro",
  13897. height: math.unit(50, "feet")
  13898. },
  13899. {
  13900. name: "Megamacro",
  13901. height: math.unit(2800, "feet")
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13907. {
  13908. front: {
  13909. height: math.unit(5 + 4 / 12, "feet"),
  13910. weight: math.unit(100, "lb"),
  13911. name: "Front",
  13912. image: {
  13913. source: "./media/characters/keireer/front.svg",
  13914. extra: 716 / 666,
  13915. bottom: 0.05
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Normal",
  13922. height: math.unit(5 + 4 / 12, "feet"),
  13923. default: true
  13924. },
  13925. ]
  13926. ))
  13927. characterMakers.push(() => makeCharacter(
  13928. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13929. {
  13930. front: {
  13931. height: math.unit(6, "feet"),
  13932. weight: math.unit(90, "kg"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/mirja/front.svg",
  13936. extra: 1789 / 1683,
  13937. bottom: 0.05
  13938. }
  13939. },
  13940. frontDressed: {
  13941. height: math.unit(6, "feet"),
  13942. weight: math.unit(90, "lb"),
  13943. name: "Front (Dressed)",
  13944. image: {
  13945. source: "./media/characters/mirja/front-dressed.svg",
  13946. extra: 1789 / 1683,
  13947. bottom: 0.05
  13948. }
  13949. },
  13950. back: {
  13951. height: math.unit(6, "feet"),
  13952. weight: math.unit(90, "lb"),
  13953. name: "Back",
  13954. image: {
  13955. source: "./media/characters/mirja/back.svg",
  13956. extra: 953 / 917,
  13957. bottom: 0.017
  13958. }
  13959. },
  13960. },
  13961. [
  13962. {
  13963. name: "\"Incognito\"",
  13964. height: math.unit(3, "meters")
  13965. },
  13966. {
  13967. name: "Strolling Size",
  13968. height: math.unit(15, "km")
  13969. },
  13970. {
  13971. name: "Larger Strolling Size",
  13972. height: math.unit(400, "km")
  13973. },
  13974. {
  13975. name: "Preferred Size",
  13976. height: math.unit(5000, "km")
  13977. },
  13978. {
  13979. name: "True Size",
  13980. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13981. default: true
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13987. {
  13988. front: {
  13989. height: math.unit(15, "feet"),
  13990. weight: math.unit(880, "kg"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/nightraver/front.svg",
  13994. extra: 2444 / 2160,
  13995. bottom: 0.027
  13996. }
  13997. },
  13998. back: {
  13999. height: math.unit(15, "feet"),
  14000. weight: math.unit(880, "kg"),
  14001. name: "Back",
  14002. image: {
  14003. source: "./media/characters/nightraver/back.svg",
  14004. extra: 2309 / 2180,
  14005. bottom: 0.005
  14006. }
  14007. },
  14008. sole: {
  14009. height: math.unit(2.878, "feet"),
  14010. name: "Sole",
  14011. image: {
  14012. source: "./media/characters/nightraver/sole.svg"
  14013. }
  14014. },
  14015. foot: {
  14016. height: math.unit(2.285, "feet"),
  14017. name: "Foot",
  14018. image: {
  14019. source: "./media/characters/nightraver/foot.svg"
  14020. }
  14021. },
  14022. maw: {
  14023. height: math.unit(2.67, "feet"),
  14024. name: "Maw",
  14025. image: {
  14026. source: "./media/characters/nightraver/maw.svg"
  14027. }
  14028. },
  14029. },
  14030. [
  14031. {
  14032. name: "Micro",
  14033. height: math.unit(1, "cm")
  14034. },
  14035. {
  14036. name: "Normal",
  14037. height: math.unit(15, "feet"),
  14038. default: true
  14039. },
  14040. {
  14041. name: "Macro",
  14042. height: math.unit(300, "feet")
  14043. },
  14044. {
  14045. name: "Megamacro",
  14046. height: math.unit(300, "miles")
  14047. },
  14048. {
  14049. name: "Gigamacro",
  14050. height: math.unit(10000, "miles")
  14051. },
  14052. ]
  14053. ))
  14054. characterMakers.push(() => makeCharacter(
  14055. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14056. {
  14057. side: {
  14058. height: math.unit(2, "inches"),
  14059. weight: math.unit(5, "grams"),
  14060. name: "Side",
  14061. image: {
  14062. source: "./media/characters/arc/side.svg"
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Micro",
  14069. height: math.unit(2, "inches"),
  14070. default: true
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14076. {
  14077. front: {
  14078. height: math.unit(1.1938, "meters"),
  14079. weight: math.unit(54, "kg"),
  14080. name: "Front",
  14081. image: {
  14082. source: "./media/characters/nebula-shahar/front.svg",
  14083. extra: 1642 / 1436,
  14084. bottom: 0.06
  14085. }
  14086. },
  14087. },
  14088. [
  14089. {
  14090. name: "Megamicro",
  14091. height: math.unit(0.3, "mm")
  14092. },
  14093. {
  14094. name: "Micro",
  14095. height: math.unit(3, "cm")
  14096. },
  14097. {
  14098. name: "Normal",
  14099. height: math.unit(138, "cm"),
  14100. default: true
  14101. },
  14102. {
  14103. name: "Macro",
  14104. height: math.unit(30, "m")
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14110. {
  14111. front: {
  14112. height: math.unit(5.24, "feet"),
  14113. weight: math.unit(150, "lb"),
  14114. name: "Front",
  14115. image: {
  14116. source: "./media/characters/shayla/front.svg",
  14117. extra: 1512 / 1414,
  14118. bottom: 0.01
  14119. }
  14120. },
  14121. back: {
  14122. height: math.unit(5.24, "feet"),
  14123. weight: math.unit(150, "lb"),
  14124. name: "Back",
  14125. image: {
  14126. source: "./media/characters/shayla/back.svg",
  14127. extra: 1512 / 1414
  14128. }
  14129. },
  14130. hand: {
  14131. height: math.unit(0.7781496062992126, "feet"),
  14132. name: "Hand",
  14133. image: {
  14134. source: "./media/characters/shayla/hand.svg"
  14135. }
  14136. },
  14137. foot: {
  14138. height: math.unit(1.4206036745406823, "feet"),
  14139. name: "Foot",
  14140. image: {
  14141. source: "./media/characters/shayla/foot.svg"
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Micro",
  14148. height: math.unit(0.32, "feet")
  14149. },
  14150. {
  14151. name: "Normal",
  14152. height: math.unit(5.24, "feet"),
  14153. default: true
  14154. },
  14155. {
  14156. name: "Macro",
  14157. height: math.unit(492.12, "feet")
  14158. },
  14159. {
  14160. name: "Megamacro",
  14161. height: math.unit(186.41, "miles")
  14162. },
  14163. ]
  14164. ))
  14165. characterMakers.push(() => makeCharacter(
  14166. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14167. {
  14168. front: {
  14169. height: math.unit(2.2, "m"),
  14170. weight: math.unit(120, "kg"),
  14171. name: "Front",
  14172. image: {
  14173. source: "./media/characters/pia-jr/front.svg",
  14174. extra: 1000 / 970,
  14175. bottom: 0.035
  14176. }
  14177. },
  14178. hand: {
  14179. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14180. name: "Hand",
  14181. image: {
  14182. source: "./media/characters/pia-jr/hand.svg"
  14183. }
  14184. },
  14185. paw: {
  14186. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14187. name: "Paw",
  14188. image: {
  14189. source: "./media/characters/pia-jr/paw.svg"
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "Micro",
  14196. height: math.unit(1.2, "cm")
  14197. },
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(2.2, "m"),
  14201. default: true
  14202. },
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(180, "m")
  14206. },
  14207. {
  14208. name: "Megamacro",
  14209. height: math.unit(420, "km")
  14210. },
  14211. ]
  14212. ))
  14213. characterMakers.push(() => makeCharacter(
  14214. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14215. {
  14216. front: {
  14217. height: math.unit(2, "m"),
  14218. weight: math.unit(115, "kg"),
  14219. name: "Front",
  14220. image: {
  14221. source: "./media/characters/pia-sr/front.svg",
  14222. extra: 760 / 730,
  14223. bottom: 0.015
  14224. }
  14225. },
  14226. back: {
  14227. height: math.unit(2, "m"),
  14228. weight: math.unit(115, "kg"),
  14229. name: "Back",
  14230. image: {
  14231. source: "./media/characters/pia-sr/back.svg",
  14232. extra: 760 / 730,
  14233. bottom: 0.01
  14234. }
  14235. },
  14236. hand: {
  14237. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14238. name: "Hand",
  14239. image: {
  14240. source: "./media/characters/pia-sr/hand.svg"
  14241. }
  14242. },
  14243. foot: {
  14244. height: math.unit(1.83, "feet"),
  14245. name: "Foot",
  14246. image: {
  14247. source: "./media/characters/pia-sr/foot.svg"
  14248. }
  14249. },
  14250. },
  14251. [
  14252. {
  14253. name: "Micro",
  14254. height: math.unit(88, "mm")
  14255. },
  14256. {
  14257. name: "Normal",
  14258. height: math.unit(2, "m"),
  14259. default: true
  14260. },
  14261. {
  14262. name: "Macro",
  14263. height: math.unit(200, "m")
  14264. },
  14265. {
  14266. name: "Megamacro",
  14267. height: math.unit(420, "km")
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(8 + 2 / 12, "feet"),
  14276. weight: math.unit(300, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/kibibyte/front.svg",
  14280. extra: 2221 / 2098,
  14281. bottom: 0.04
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(8 + 2 / 12, "feet"),
  14289. default: true
  14290. },
  14291. {
  14292. name: "Socialable Macro",
  14293. height: math.unit(50, "feet")
  14294. },
  14295. {
  14296. name: "Macro",
  14297. height: math.unit(300, "feet")
  14298. },
  14299. {
  14300. name: "Megamacro",
  14301. height: math.unit(500, "miles")
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(150, "lb"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/felix/front.svg",
  14314. extra: 762 / 722,
  14315. bottom: 0.02
  14316. }
  14317. },
  14318. frontClothed: {
  14319. height: math.unit(6, "feet"),
  14320. weight: math.unit(150, "lb"),
  14321. name: "Front (Clothed)",
  14322. image: {
  14323. source: "./media/characters/felix/front-clothed.svg",
  14324. extra: 762 / 722,
  14325. bottom: 0.02
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Normal",
  14332. height: math.unit(6 + 8 / 12, "feet"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Macro",
  14337. height: math.unit(2600, "feet")
  14338. },
  14339. {
  14340. name: "Megamacro",
  14341. height: math.unit(450, "miles")
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14347. {
  14348. front: {
  14349. height: math.unit(6 + 1 / 12, "feet"),
  14350. weight: math.unit(250, "lb"),
  14351. name: "Front",
  14352. image: {
  14353. source: "./media/characters/tobo/front.svg",
  14354. extra: 608 / 586,
  14355. bottom: 0.023
  14356. }
  14357. },
  14358. back: {
  14359. height: math.unit(6 + 1 / 12, "feet"),
  14360. weight: math.unit(250, "lb"),
  14361. name: "Back",
  14362. image: {
  14363. source: "./media/characters/tobo/back.svg",
  14364. extra: 608 / 586
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Nano",
  14371. height: math.unit(2, "nm")
  14372. },
  14373. {
  14374. name: "Megamicro",
  14375. height: math.unit(0.1, "mm")
  14376. },
  14377. {
  14378. name: "Micro",
  14379. height: math.unit(1, "inch"),
  14380. default: true
  14381. },
  14382. {
  14383. name: "Human-sized",
  14384. height: math.unit(6 + 1 / 12, "feet")
  14385. },
  14386. {
  14387. name: "Macro",
  14388. height: math.unit(250, "feet")
  14389. },
  14390. {
  14391. name: "Megamacro",
  14392. height: math.unit(75, "miles")
  14393. },
  14394. {
  14395. name: "Texas-sized",
  14396. height: math.unit(750, "miles")
  14397. },
  14398. {
  14399. name: "Teramacro",
  14400. height: math.unit(50000, "miles")
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14406. {
  14407. front: {
  14408. height: math.unit(6, "feet"),
  14409. weight: math.unit(269, "lb"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/danny-kapowsky/front.svg",
  14413. extra: 766 / 736,
  14414. bottom: 0.044
  14415. }
  14416. },
  14417. back: {
  14418. height: math.unit(6, "feet"),
  14419. weight: math.unit(269, "lb"),
  14420. name: "Back",
  14421. image: {
  14422. source: "./media/characters/danny-kapowsky/back.svg",
  14423. extra: 797 / 760,
  14424. bottom: 0.025
  14425. }
  14426. },
  14427. },
  14428. [
  14429. {
  14430. name: "Macro",
  14431. height: math.unit(150, "feet"),
  14432. default: true
  14433. },
  14434. {
  14435. name: "Macro+",
  14436. height: math.unit(200, "feet")
  14437. },
  14438. {
  14439. name: "Macro++",
  14440. height: math.unit(300, "feet")
  14441. },
  14442. {
  14443. name: "Macro+++",
  14444. height: math.unit(400, "feet")
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14450. {
  14451. side: {
  14452. height: math.unit(6, "feet"),
  14453. weight: math.unit(170, "lb"),
  14454. name: "Side",
  14455. image: {
  14456. source: "./media/characters/finn/side.svg",
  14457. extra: 1953 / 1807,
  14458. bottom: 0.057
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Megamacro",
  14465. height: math.unit(14445, "feet"),
  14466. default: true
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14472. {
  14473. front: {
  14474. height: math.unit(5 + 6 / 12, "feet"),
  14475. weight: math.unit(125, "lb"),
  14476. name: "Front",
  14477. image: {
  14478. source: "./media/characters/roy/front.svg",
  14479. extra: 1,
  14480. bottom: 0.11
  14481. }
  14482. },
  14483. },
  14484. [
  14485. {
  14486. name: "Micro",
  14487. height: math.unit(3, "inches"),
  14488. default: true
  14489. },
  14490. {
  14491. name: "Normal",
  14492. height: math.unit(5 + 6 / 12, "feet")
  14493. },
  14494. {
  14495. name: "Lesser Macro",
  14496. height: math.unit(60, "feet")
  14497. },
  14498. {
  14499. name: "Greater Macro",
  14500. height: math.unit(120, "feet")
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14506. {
  14507. front: {
  14508. height: math.unit(6, "feet"),
  14509. weight: math.unit(100, "lb"),
  14510. name: "Front",
  14511. image: {
  14512. source: "./media/characters/aevsivs/front.svg",
  14513. extra: 1,
  14514. bottom: 0.03
  14515. }
  14516. },
  14517. back: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(100, "lb"),
  14520. name: "Back",
  14521. image: {
  14522. source: "./media/characters/aevsivs/back.svg"
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Micro",
  14529. height: math.unit(2, "inches"),
  14530. default: true
  14531. },
  14532. {
  14533. name: "Normal",
  14534. height: math.unit(5, "feet")
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14540. {
  14541. front: {
  14542. height: math.unit(5 + 7 / 12, "feet"),
  14543. weight: math.unit(159, "lb"),
  14544. name: "Front",
  14545. image: {
  14546. source: "./media/characters/hildegard/front.svg",
  14547. extra: 289 / 269,
  14548. bottom: 7.63 / 297.8
  14549. }
  14550. },
  14551. back: {
  14552. height: math.unit(5 + 7 / 12, "feet"),
  14553. weight: math.unit(159, "lb"),
  14554. name: "Back",
  14555. image: {
  14556. source: "./media/characters/hildegard/back.svg",
  14557. extra: 280 / 260,
  14558. bottom: 2.3 / 282
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Normal",
  14565. height: math.unit(5 + 7 / 12, "feet"),
  14566. default: true
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14572. {
  14573. bernard: {
  14574. height: math.unit(2 + 7 / 12, "feet"),
  14575. weight: math.unit(66, "lb"),
  14576. name: "Bernard",
  14577. rename: true,
  14578. image: {
  14579. source: "./media/characters/bernard-wilder/bernard.svg",
  14580. extra: 192 / 128,
  14581. bottom: 0.05
  14582. }
  14583. },
  14584. wilder: {
  14585. height: math.unit(5 + 8 / 12, "feet"),
  14586. weight: math.unit(143, "lb"),
  14587. name: "Wilder",
  14588. rename: true,
  14589. image: {
  14590. source: "./media/characters/bernard-wilder/wilder.svg",
  14591. extra: 361 / 312,
  14592. bottom: 0.02
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Normal",
  14599. height: math.unit(2 + 7 / 12, "feet"),
  14600. default: true
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14606. {
  14607. anthro: {
  14608. height: math.unit(6 + 1 / 12, "feet"),
  14609. weight: math.unit(155, "lb"),
  14610. name: "Anthro",
  14611. image: {
  14612. source: "./media/characters/hearth/anthro.svg",
  14613. extra: 260 / 250,
  14614. bottom: 0.02
  14615. }
  14616. },
  14617. feral: {
  14618. height: math.unit(3.78, "feet"),
  14619. weight: math.unit(35, "kg"),
  14620. name: "Feral",
  14621. image: {
  14622. source: "./media/characters/hearth/feral.svg",
  14623. extra: 153 / 135,
  14624. bottom: 0.03
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Normal",
  14631. height: math.unit(6 + 1 / 12, "feet"),
  14632. default: true
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(6, "feet"),
  14641. weight: math.unit(182, "lb"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/ingrid/front.svg",
  14645. extra: 294 / 268,
  14646. bottom: 0.027
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(6, "feet"),
  14654. default: true
  14655. },
  14656. ]
  14657. ))
  14658. characterMakers.push(() => makeCharacter(
  14659. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14660. {
  14661. eevee: {
  14662. height: math.unit(2 + 10 / 12, "feet"),
  14663. weight: math.unit(86, "lb"),
  14664. name: "Malgam",
  14665. image: {
  14666. source: "./media/characters/malgam/eevee.svg",
  14667. extra: 218 / 180,
  14668. bottom: 0.2
  14669. }
  14670. },
  14671. sylveon: {
  14672. height: math.unit(4, "feet"),
  14673. weight: math.unit(101, "lb"),
  14674. name: "Future Malgam",
  14675. rename: true,
  14676. image: {
  14677. source: "./media/characters/malgam/sylveon.svg",
  14678. extra: 371 / 325,
  14679. bottom: 0.015
  14680. }
  14681. },
  14682. gigantamax: {
  14683. height: math.unit(50, "feet"),
  14684. name: "Gigantamax Malgam",
  14685. rename: true,
  14686. image: {
  14687. source: "./media/characters/malgam/gigantamax.svg"
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(2 + 10 / 12, "feet"),
  14695. default: true
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(5 + 11 / 12, "feet"),
  14704. weight: math.unit(188, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/fleur/front.svg",
  14708. extra: 309 / 283,
  14709. bottom: 0.007
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(5 + 11 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(5 + 4 / 12, "feet"),
  14726. weight: math.unit(122, "lb"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/jude/front.svg",
  14730. extra: 288 / 273,
  14731. bottom: 0.03
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(5 + 4 / 12, "feet"),
  14739. default: true
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(5 + 11 / 12, "feet"),
  14748. weight: math.unit(190, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/seara/front.svg",
  14752. extra: 1,
  14753. bottom: 0.05
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(5 + 11 / 12, "feet"),
  14761. default: true
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14767. {
  14768. front: {
  14769. height: math.unit(16 + 5 / 12, "feet"),
  14770. weight: math.unit(524, "lb"),
  14771. name: "Front",
  14772. image: {
  14773. source: "./media/characters/caspian/front.svg",
  14774. extra: 1,
  14775. bottom: 0.04
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Normal",
  14782. height: math.unit(16 + 5 / 12, "feet"),
  14783. default: true
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(5 + 7 / 12, "feet"),
  14792. weight: math.unit(170, "lb"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/mika/front.svg",
  14796. extra: 1,
  14797. bottom: 0.016
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Normal",
  14804. height: math.unit(5 + 7 / 12, "feet"),
  14805. default: true
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14811. {
  14812. front: {
  14813. height: math.unit(6 + 2 / 12, "feet"),
  14814. weight: math.unit(268, "lb"),
  14815. name: "Front",
  14816. image: {
  14817. source: "./media/characters/sol/front.svg",
  14818. extra: 247 / 231,
  14819. bottom: 0.05
  14820. }
  14821. },
  14822. },
  14823. [
  14824. {
  14825. name: "Normal",
  14826. height: math.unit(6 + 2 / 12, "feet"),
  14827. default: true
  14828. },
  14829. ]
  14830. ))
  14831. characterMakers.push(() => makeCharacter(
  14832. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14833. {
  14834. buizel: {
  14835. height: math.unit(2 + 5 / 12, "feet"),
  14836. weight: math.unit(87, "lb"),
  14837. name: "Buizel",
  14838. image: {
  14839. source: "./media/characters/umiko/buizel.svg",
  14840. extra: 172 / 157,
  14841. bottom: 0.01
  14842. }
  14843. },
  14844. floatzel: {
  14845. height: math.unit(5 + 9 / 12, "feet"),
  14846. weight: math.unit(250, "lb"),
  14847. name: "Floatzel",
  14848. image: {
  14849. source: "./media/characters/umiko/floatzel.svg",
  14850. extra: 262 / 248
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(2 + 5 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(6 + 2 / 12, "feet"),
  14867. weight: math.unit(146, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/iliac/front.svg",
  14871. extra: 389 / 365,
  14872. bottom: 0.035
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(6 + 2 / 12, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(170, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/topaz/front.svg",
  14893. extra: 317 / 303,
  14894. bottom: 0.055
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(6, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(5 + 11 / 12, "feet"),
  14911. weight: math.unit(144, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/gabriel/front.svg",
  14915. extra: 285 / 262,
  14916. bottom: 0.004
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(5 + 11 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14930. {
  14931. side: {
  14932. height: math.unit(6 + 5 / 12, "feet"),
  14933. weight: math.unit(300, "lb"),
  14934. name: "Side",
  14935. image: {
  14936. source: "./media/characters/tempest-suicune/side.svg",
  14937. extra: 195 / 154,
  14938. bottom: 0.04
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(6 + 5 / 12, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(7 + 2 / 12, "feet"),
  14955. weight: math.unit(322, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/vulcan/front.svg",
  14959. extra: 154 / 147,
  14960. bottom: 0.04
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(7 + 2 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(5 + 10 / 12, "feet"),
  14977. weight: math.unit(264, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/gault/front.svg",
  14981. extra: 161 / 140,
  14982. bottom: 0.028
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(5 + 10 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(6, "feet"),
  14999. weight: math.unit(150, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/shard/front.svg",
  15003. extra: 273 / 238,
  15004. bottom: 0.02
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(3 + 6 / 12, "feet"),
  15012. default: true
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(5 + 11 / 12, "feet"),
  15021. weight: math.unit(146, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/ashe/front.svg",
  15025. extra: 400 / 373,
  15026. bottom: 0.01
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(5 + 11 / 12, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(5 + 5 / 12, "feet"),
  15043. weight: math.unit(135, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/beatrix/front.svg",
  15047. extra: 392 / 379,
  15048. bottom: 0.01
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(6, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(6, "feet"),
  15065. weight: math.unit(150, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/ignatius/front.svg",
  15069. extra: 245 / 222,
  15070. bottom: 0.01
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(5 + 5 / 12, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15084. {
  15085. front: {
  15086. height: math.unit(6 + 2 / 12, "feet"),
  15087. weight: math.unit(138, "lb"),
  15088. name: "Front",
  15089. image: {
  15090. source: "./media/characters/mei-li/front.svg",
  15091. extra: 237 / 229,
  15092. bottom: 0.03
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(6 + 2 / 12, "feet"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15106. {
  15107. front: {
  15108. height: math.unit(2 + 4 / 12, "feet"),
  15109. weight: math.unit(62, "lb"),
  15110. name: "Front",
  15111. image: {
  15112. source: "./media/characters/puru/front.svg",
  15113. extra: 206 / 149,
  15114. bottom: 0.06
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(2 + 4 / 12, "feet"),
  15122. default: true
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15128. {
  15129. anthro: {
  15130. height: math.unit(5 + 8/12, "feet"),
  15131. weight: math.unit(200, "lb"),
  15132. energyNeed: math.unit(2000, "kcal"),
  15133. name: "Anthro",
  15134. image: {
  15135. source: "./media/characters/kee/anthro.svg",
  15136. extra: 3251/3184,
  15137. bottom: 250/3501
  15138. }
  15139. },
  15140. taur: {
  15141. height: math.unit(11, "feet"),
  15142. weight: math.unit(500, "lb"),
  15143. energyNeed: math.unit(5000, "kcal"),
  15144. name: "Taur",
  15145. image: {
  15146. source: "./media/characters/kee/taur.svg",
  15147. extra: 1362/1320,
  15148. bottom: 83/1445
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(5 + 8/12, "feet"),
  15156. default: true
  15157. },
  15158. {
  15159. name: "Macro",
  15160. height: math.unit(35, "feet")
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15166. {
  15167. anthro: {
  15168. height: math.unit(7, "feet"),
  15169. weight: math.unit(190, "lb"),
  15170. name: "Anthro",
  15171. image: {
  15172. source: "./media/characters/cobalt-dracha/anthro.svg",
  15173. extra: 231 / 225,
  15174. bottom: 0.04
  15175. }
  15176. },
  15177. feral: {
  15178. height: math.unit(9 + 7 / 12, "feet"),
  15179. weight: math.unit(294, "lb"),
  15180. name: "Feral",
  15181. image: {
  15182. source: "./media/characters/cobalt-dracha/feral.svg",
  15183. extra: 692 / 633,
  15184. bottom: 0.05
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(7, "feet"),
  15192. default: true
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15198. {
  15199. fallen: {
  15200. height: math.unit(11 + 8 / 12, "feet"),
  15201. weight: math.unit(485, "lb"),
  15202. name: "Java (Fallen)",
  15203. rename: true,
  15204. image: {
  15205. source: "./media/characters/java/fallen.svg",
  15206. extra: 226 / 208,
  15207. bottom: 0.005
  15208. }
  15209. },
  15210. godkin: {
  15211. height: math.unit(10 + 6 / 12, "feet"),
  15212. weight: math.unit(328, "lb"),
  15213. name: "Java (Godkin)",
  15214. rename: true,
  15215. image: {
  15216. source: "./media/characters/java/godkin.svg",
  15217. extra: 270 / 262,
  15218. bottom: 0.02
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(11 + 8 / 12, "feet"),
  15226. default: true
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(7 + 8 / 12, "feet"),
  15235. weight: math.unit(320, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/skoll/front.svg",
  15239. extra: 232 / 220,
  15240. bottom: 0.02
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(7 + 8 / 12, "feet"),
  15248. default: true
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(5 + 9 / 12, "feet"),
  15257. weight: math.unit(170, "lb"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/purna/front.svg",
  15261. extra: 239 / 229,
  15262. bottom: 0.01
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Normal",
  15269. height: math.unit(5 + 9 / 12, "feet"),
  15270. default: true
  15271. },
  15272. ]
  15273. ))
  15274. characterMakers.push(() => makeCharacter(
  15275. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15276. {
  15277. front: {
  15278. height: math.unit(5 + 9 / 12, "feet"),
  15279. weight: math.unit(142, "lb"),
  15280. name: "Front",
  15281. image: {
  15282. source: "./media/characters/kuva/front.svg",
  15283. extra: 281 / 271,
  15284. bottom: 0.006
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Normal",
  15291. height: math.unit(5 + 9 / 12, "feet"),
  15292. default: true
  15293. },
  15294. ]
  15295. ))
  15296. characterMakers.push(() => makeCharacter(
  15297. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15298. {
  15299. anthro: {
  15300. height: math.unit(9 + 2 / 12, "feet"),
  15301. weight: math.unit(270, "lb"),
  15302. name: "Anthro",
  15303. image: {
  15304. source: "./media/characters/embra/anthro.svg",
  15305. extra: 200 / 187,
  15306. bottom: 0.02
  15307. }
  15308. },
  15309. feral: {
  15310. height: math.unit(18 + 8 / 12, "feet"),
  15311. weight: math.unit(576, "lb"),
  15312. name: "Feral",
  15313. image: {
  15314. source: "./media/characters/embra/feral.svg",
  15315. extra: 152 / 137,
  15316. bottom: 0.037
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(9 + 2 / 12, "feet"),
  15324. default: true
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15330. {
  15331. anthro: {
  15332. height: math.unit(10 + 9 / 12, "feet"),
  15333. weight: math.unit(224, "lb"),
  15334. name: "Anthro",
  15335. image: {
  15336. source: "./media/characters/grottos/anthro.svg",
  15337. extra: 350 / 332,
  15338. bottom: 0.045
  15339. }
  15340. },
  15341. feral: {
  15342. height: math.unit(20 + 7 / 12, "feet"),
  15343. weight: math.unit(629, "lb"),
  15344. name: "Feral",
  15345. image: {
  15346. source: "./media/characters/grottos/feral.svg",
  15347. extra: 207 / 190,
  15348. bottom: 0.05
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Normal",
  15355. height: math.unit(10 + 9 / 12, "feet"),
  15356. default: true
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15362. {
  15363. anthro: {
  15364. height: math.unit(9 + 6 / 12, "feet"),
  15365. weight: math.unit(298, "lb"),
  15366. name: "Anthro",
  15367. image: {
  15368. source: "./media/characters/frifna/anthro.svg",
  15369. extra: 282 / 269,
  15370. bottom: 0.015
  15371. }
  15372. },
  15373. feral: {
  15374. height: math.unit(16 + 2 / 12, "feet"),
  15375. weight: math.unit(624, "lb"),
  15376. name: "Feral",
  15377. image: {
  15378. source: "./media/characters/frifna/feral.svg"
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(9 + 6 / 12, "feet"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(6 + 2 / 12, "feet"),
  15395. weight: math.unit(168, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/elise/front.svg",
  15399. extra: 276 / 271
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(6 + 2 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(5 + 10 / 12, "feet"),
  15416. weight: math.unit(210, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/glade/front.svg",
  15420. extra: 258 / 247,
  15421. bottom: 0.008
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(5 + 10 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(5 + 10 / 12, "feet"),
  15438. weight: math.unit(129, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/rina/front.svg",
  15442. extra: 266 / 255,
  15443. bottom: 0.005
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(5 + 10 / 12, "feet"),
  15451. default: true
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15457. {
  15458. front: {
  15459. height: math.unit(6 + 1 / 12, "feet"),
  15460. weight: math.unit(192, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/veronica/front.svg",
  15464. extra: 319 / 309,
  15465. bottom: 0.005
  15466. }
  15467. },
  15468. },
  15469. [
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(6 + 1 / 12, "feet"),
  15473. default: true
  15474. },
  15475. ]
  15476. ))
  15477. characterMakers.push(() => makeCharacter(
  15478. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15479. {
  15480. front: {
  15481. height: math.unit(9 + 3 / 12, "feet"),
  15482. weight: math.unit(1100, "lb"),
  15483. name: "Front",
  15484. image: {
  15485. source: "./media/characters/braxton/front.svg",
  15486. extra: 1057 / 984,
  15487. bottom: 0.05
  15488. }
  15489. },
  15490. },
  15491. [
  15492. {
  15493. name: "Normal",
  15494. height: math.unit(9 + 3 / 12, "feet")
  15495. },
  15496. {
  15497. name: "Giant",
  15498. height: math.unit(300, "feet"),
  15499. default: true
  15500. },
  15501. {
  15502. name: "Macro",
  15503. height: math.unit(700, "feet")
  15504. },
  15505. {
  15506. name: "Megamacro",
  15507. height: math.unit(6000, "feet")
  15508. },
  15509. ]
  15510. ))
  15511. characterMakers.push(() => makeCharacter(
  15512. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15513. {
  15514. front: {
  15515. height: math.unit(6 + 7 / 12, "feet"),
  15516. weight: math.unit(150, "lb"),
  15517. name: "Front",
  15518. image: {
  15519. source: "./media/characters/blue-feyonics/front.svg",
  15520. extra: 1403 / 1306,
  15521. bottom: 0.047
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Normal",
  15528. height: math.unit(6 + 7 / 12, "feet"),
  15529. default: true
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(1.8, "meters"),
  15538. weight: math.unit(60, "kg"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/maxwell/front.svg",
  15542. extra: 2060 / 1873
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Micro",
  15549. height: math.unit(1, "mm")
  15550. },
  15551. {
  15552. name: "Normal",
  15553. height: math.unit(1.8, "meter"),
  15554. default: true
  15555. },
  15556. {
  15557. name: "Macro",
  15558. height: math.unit(30, "meters")
  15559. },
  15560. {
  15561. name: "Megamacro",
  15562. height: math.unit(10, "km")
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(6, "feet"),
  15571. weight: math.unit(150, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/jack/front.svg",
  15575. extra: 1754 / 1640,
  15576. bottom: 0.01
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(80000, "feet"),
  15584. default: true
  15585. },
  15586. {
  15587. name: "Max size",
  15588. height: math.unit(10, "lightyears")
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15594. {
  15595. urban: {
  15596. height: math.unit(5, "feet"),
  15597. weight: math.unit(240, "lb"),
  15598. name: "Urban",
  15599. image: {
  15600. source: "./media/characters/cafat/urban.svg",
  15601. extra: 1223/1126,
  15602. bottom: 205/1428
  15603. }
  15604. },
  15605. summer: {
  15606. height: math.unit(5, "feet"),
  15607. weight: math.unit(240, "lb"),
  15608. name: "Summer",
  15609. image: {
  15610. source: "./media/characters/cafat/summer.svg",
  15611. extra: 1223/1126,
  15612. bottom: 205/1428
  15613. }
  15614. },
  15615. winter: {
  15616. height: math.unit(5, "feet"),
  15617. weight: math.unit(240, "lb"),
  15618. name: "Winter",
  15619. image: {
  15620. source: "./media/characters/cafat/winter.svg",
  15621. extra: 1223/1126,
  15622. bottom: 205/1428
  15623. }
  15624. },
  15625. lingerie: {
  15626. height: math.unit(5, "feet"),
  15627. weight: math.unit(240, "lb"),
  15628. name: "Lingerie",
  15629. image: {
  15630. source: "./media/characters/cafat/lingerie.svg",
  15631. extra: 1223/1126,
  15632. bottom: 205/1428
  15633. }
  15634. },
  15635. upright: {
  15636. height: math.unit(6.3, "feet"),
  15637. weight: math.unit(240, "lb"),
  15638. name: "Upright",
  15639. image: {
  15640. source: "./media/characters/cafat/upright.svg",
  15641. bottom: 0.01
  15642. }
  15643. },
  15644. uprightFull: {
  15645. height: math.unit(6.3, "feet"),
  15646. weight: math.unit(240, "lb"),
  15647. name: "Upright (Full)",
  15648. image: {
  15649. source: "./media/characters/cafat/upright-full.svg",
  15650. bottom: 0.01
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Small",
  15657. height: math.unit(5, "feet"),
  15658. default: true
  15659. },
  15660. {
  15661. name: "Large",
  15662. height: math.unit(13, "feet")
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(6, "feet"),
  15671. weight: math.unit(150, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/verin-raharra/front.svg",
  15675. extra: 5019 / 4835,
  15676. bottom: 0.023
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(7 + 5 / 12, "feet"),
  15684. default: true
  15685. },
  15686. {
  15687. name: "Upsized",
  15688. height: math.unit(20, "feet")
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(7, "feet"),
  15697. weight: math.unit(230, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/nakata/front.svg",
  15701. extra: 1.005,
  15702. bottom: 0.01
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(7, "feet"),
  15710. default: true
  15711. },
  15712. {
  15713. name: "Big",
  15714. height: math.unit(14, "feet")
  15715. },
  15716. {
  15717. name: "Macro",
  15718. height: math.unit(400, "feet")
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15724. {
  15725. front: {
  15726. height: math.unit(4.91, "feet"),
  15727. weight: math.unit(100, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/lily/front.svg",
  15731. extra: 1585 / 1415,
  15732. bottom: 0.02
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(4.91, "feet"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15746. {
  15747. laying: {
  15748. height: math.unit(4 + 4 / 12, "feet"),
  15749. weight: math.unit(600, "lb"),
  15750. name: "Laying",
  15751. image: {
  15752. source: "./media/characters/sheila/laying.svg",
  15753. extra: 1333 / 1265,
  15754. bottom: 0.16
  15755. }
  15756. },
  15757. },
  15758. [
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(4 + 4 / 12, "feet"),
  15762. default: true
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(6, "feet"),
  15771. weight: math.unit(190, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/sax/front.svg",
  15775. extra: 1187 / 973,
  15776. bottom: 0.042
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Micro",
  15783. height: math.unit(4, "inches"),
  15784. default: true
  15785. },
  15786. ]
  15787. ))
  15788. characterMakers.push(() => makeCharacter(
  15789. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15790. {
  15791. front: {
  15792. height: math.unit(6, "feet"),
  15793. weight: math.unit(150, "lb"),
  15794. name: "Front",
  15795. image: {
  15796. source: "./media/characters/pandora/front.svg",
  15797. extra: 2720 / 2556,
  15798. bottom: 0.015
  15799. }
  15800. },
  15801. back: {
  15802. height: math.unit(6, "feet"),
  15803. weight: math.unit(150, "lb"),
  15804. name: "Back",
  15805. image: {
  15806. source: "./media/characters/pandora/back.svg",
  15807. extra: 2720 / 2556,
  15808. bottom: 0.01
  15809. }
  15810. },
  15811. beans: {
  15812. height: math.unit(6 / 8, "feet"),
  15813. name: "Beans",
  15814. image: {
  15815. source: "./media/characters/pandora/beans.svg"
  15816. }
  15817. },
  15818. collar: {
  15819. height: math.unit(0.31, "feet"),
  15820. name: "Collar",
  15821. image: {
  15822. source: "./media/characters/pandora/collar.svg"
  15823. }
  15824. },
  15825. skirt: {
  15826. height: math.unit(6, "feet"),
  15827. weight: math.unit(150, "lb"),
  15828. name: "Skirt",
  15829. image: {
  15830. source: "./media/characters/pandora/skirt.svg",
  15831. extra: 1622 / 1525,
  15832. bottom: 0.015
  15833. }
  15834. },
  15835. hoodie: {
  15836. height: math.unit(6, "feet"),
  15837. weight: math.unit(150, "lb"),
  15838. name: "Hoodie",
  15839. image: {
  15840. source: "./media/characters/pandora/hoodie.svg",
  15841. extra: 1622 / 1525,
  15842. bottom: 0.015
  15843. }
  15844. },
  15845. casual: {
  15846. height: math.unit(6, "feet"),
  15847. weight: math.unit(150, "lb"),
  15848. name: "Casual",
  15849. image: {
  15850. source: "./media/characters/pandora/casual.svg",
  15851. extra: 1622 / 1525,
  15852. bottom: 0.015
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(6, "feet")
  15860. },
  15861. {
  15862. name: "Big Steppy",
  15863. height: math.unit(1, "km"),
  15864. default: true
  15865. },
  15866. {
  15867. name: "Galactic Steppy",
  15868. height: math.unit(2, "gigameters")
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15874. {
  15875. side: {
  15876. height: math.unit(10, "feet"),
  15877. weight: math.unit(800, "kg"),
  15878. name: "Side",
  15879. image: {
  15880. source: "./media/characters/venio-darcony/side.svg",
  15881. extra: 1373 / 1003,
  15882. bottom: 0.037
  15883. }
  15884. },
  15885. front: {
  15886. height: math.unit(19, "feet"),
  15887. weight: math.unit(800, "kg"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/venio-darcony/front.svg"
  15891. }
  15892. },
  15893. back: {
  15894. height: math.unit(19, "feet"),
  15895. weight: math.unit(800, "kg"),
  15896. name: "Back",
  15897. image: {
  15898. source: "./media/characters/venio-darcony/back.svg"
  15899. }
  15900. },
  15901. sideNsfw: {
  15902. height: math.unit(10, "feet"),
  15903. weight: math.unit(800, "kg"),
  15904. name: "Side (NSFW)",
  15905. image: {
  15906. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15907. extra: 1373 / 1003,
  15908. bottom: 0.037
  15909. }
  15910. },
  15911. frontNsfw: {
  15912. height: math.unit(19, "feet"),
  15913. weight: math.unit(800, "kg"),
  15914. name: "Front (NSFW)",
  15915. image: {
  15916. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15917. }
  15918. },
  15919. backNsfw: {
  15920. height: math.unit(19, "feet"),
  15921. weight: math.unit(800, "kg"),
  15922. name: "Back (NSFW)",
  15923. image: {
  15924. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15925. }
  15926. },
  15927. sideArmored: {
  15928. height: math.unit(10, "feet"),
  15929. weight: math.unit(800, "kg"),
  15930. name: "Side (Armored)",
  15931. image: {
  15932. source: "./media/characters/venio-darcony/side-armored.svg",
  15933. extra: 1373 / 1003,
  15934. bottom: 0.037
  15935. }
  15936. },
  15937. frontArmored: {
  15938. height: math.unit(19, "feet"),
  15939. weight: math.unit(900, "kg"),
  15940. name: "Front (Armored)",
  15941. image: {
  15942. source: "./media/characters/venio-darcony/front-armored.svg"
  15943. }
  15944. },
  15945. backArmored: {
  15946. height: math.unit(19, "feet"),
  15947. weight: math.unit(900, "kg"),
  15948. name: "Back (Armored)",
  15949. image: {
  15950. source: "./media/characters/venio-darcony/back-armored.svg"
  15951. }
  15952. },
  15953. sword: {
  15954. height: math.unit(10, "feet"),
  15955. weight: math.unit(50, "lb"),
  15956. name: "Sword",
  15957. image: {
  15958. source: "./media/characters/venio-darcony/sword.svg"
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(10, "feet")
  15966. },
  15967. {
  15968. name: "Macro",
  15969. height: math.unit(130, "feet"),
  15970. default: true
  15971. },
  15972. {
  15973. name: "Macro+",
  15974. height: math.unit(240, "feet")
  15975. },
  15976. ]
  15977. ))
  15978. characterMakers.push(() => makeCharacter(
  15979. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15980. {
  15981. front: {
  15982. height: math.unit(6, "feet"),
  15983. weight: math.unit(150, "lb"),
  15984. name: "Front",
  15985. image: {
  15986. source: "./media/characters/veski/front.svg",
  15987. extra: 1299 / 1225,
  15988. bottom: 0.04
  15989. }
  15990. },
  15991. back: {
  15992. height: math.unit(6, "feet"),
  15993. weight: math.unit(150, "lb"),
  15994. name: "Back",
  15995. image: {
  15996. source: "./media/characters/veski/back.svg",
  15997. extra: 1299 / 1225,
  15998. bottom: 0.008
  15999. }
  16000. },
  16001. maw: {
  16002. height: math.unit(1.5 * 1.21, "feet"),
  16003. name: "Maw",
  16004. image: {
  16005. source: "./media/characters/veski/maw.svg"
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Macro",
  16012. height: math.unit(2, "km"),
  16013. default: true
  16014. },
  16015. ]
  16016. ))
  16017. characterMakers.push(() => makeCharacter(
  16018. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16019. {
  16020. front: {
  16021. height: math.unit(5 + 7 / 12, "feet"),
  16022. name: "Front",
  16023. image: {
  16024. source: "./media/characters/isabelle/front.svg",
  16025. extra: 2130 / 1976,
  16026. bottom: 0.05
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Supermicro",
  16033. height: math.unit(10, "micrometers")
  16034. },
  16035. {
  16036. name: "Micro",
  16037. height: math.unit(1, "inch")
  16038. },
  16039. {
  16040. name: "Tiny",
  16041. height: math.unit(5, "inches")
  16042. },
  16043. {
  16044. name: "Standard",
  16045. height: math.unit(5 + 7 / 12, "inches")
  16046. },
  16047. {
  16048. name: "Macro",
  16049. height: math.unit(80, "meters"),
  16050. default: true
  16051. },
  16052. {
  16053. name: "Megamacro",
  16054. height: math.unit(250, "meters")
  16055. },
  16056. {
  16057. name: "Gigamacro",
  16058. height: math.unit(5, "km")
  16059. },
  16060. {
  16061. name: "Cosmic",
  16062. height: math.unit(2.5e6, "miles")
  16063. },
  16064. ]
  16065. ))
  16066. characterMakers.push(() => makeCharacter(
  16067. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16068. {
  16069. front: {
  16070. height: math.unit(6, "feet"),
  16071. weight: math.unit(150, "lb"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/hanzo/front.svg",
  16075. extra: 374 / 344,
  16076. bottom: 0.02
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Normal",
  16083. height: math.unit(8, "feet"),
  16084. default: true
  16085. },
  16086. ]
  16087. ))
  16088. characterMakers.push(() => makeCharacter(
  16089. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16090. {
  16091. front: {
  16092. height: math.unit(7, "feet"),
  16093. weight: math.unit(130, "lb"),
  16094. name: "Front",
  16095. image: {
  16096. source: "./media/characters/anna/front.svg",
  16097. extra: 169 / 145,
  16098. bottom: 0.06
  16099. }
  16100. },
  16101. full: {
  16102. height: math.unit(4.96, "feet"),
  16103. weight: math.unit(220, "lb"),
  16104. name: "Full",
  16105. image: {
  16106. source: "./media/characters/anna/full.svg",
  16107. extra: 138 / 114,
  16108. bottom: 0.15
  16109. }
  16110. },
  16111. tongue: {
  16112. height: math.unit(2.53, "feet"),
  16113. name: "Tongue",
  16114. image: {
  16115. source: "./media/characters/anna/tongue.svg"
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(7, "feet"),
  16123. default: true
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(7, "feet"),
  16132. weight: math.unit(150, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/ian-corvid/front.svg",
  16136. extra: 150 / 142,
  16137. bottom: 0.02
  16138. }
  16139. },
  16140. back: {
  16141. height: math.unit(7, "feet"),
  16142. weight: math.unit(150, "lb"),
  16143. name: "Back",
  16144. image: {
  16145. source: "./media/characters/ian-corvid/back.svg",
  16146. extra: 150 / 143,
  16147. bottom: 0.01
  16148. }
  16149. },
  16150. stomping: {
  16151. height: math.unit(7, "feet"),
  16152. weight: math.unit(150, "lb"),
  16153. name: "Stomping",
  16154. image: {
  16155. source: "./media/characters/ian-corvid/stomping.svg",
  16156. extra: 76 / 72
  16157. }
  16158. },
  16159. sitting: {
  16160. height: math.unit(7 / 1.8, "feet"),
  16161. weight: math.unit(150, "lb"),
  16162. name: "Sitting",
  16163. image: {
  16164. source: "./media/characters/ian-corvid/sitting.svg",
  16165. extra: 1400 / 1269,
  16166. bottom: 0.15
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Tiny Microw",
  16173. height: math.unit(1, "inch")
  16174. },
  16175. {
  16176. name: "Microw",
  16177. height: math.unit(6, "inches")
  16178. },
  16179. {
  16180. name: "Crow",
  16181. height: math.unit(7 + 1 / 12, "feet"),
  16182. default: true
  16183. },
  16184. {
  16185. name: "Macrow",
  16186. height: math.unit(176, "feet")
  16187. },
  16188. ]
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16192. {
  16193. front: {
  16194. height: math.unit(5 + 7 / 12, "feet"),
  16195. weight: math.unit(147, "lb"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/natalie-kellon/front.svg",
  16199. extra: 1214 / 1141,
  16200. bottom: 0.02
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Micro",
  16207. height: math.unit(1 / 16, "inch")
  16208. },
  16209. {
  16210. name: "Tiny",
  16211. height: math.unit(4, "inches")
  16212. },
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(5 + 7 / 12, "feet"),
  16216. default: true
  16217. },
  16218. {
  16219. name: "Amazon",
  16220. height: math.unit(12, "feet")
  16221. },
  16222. {
  16223. name: "Giantess",
  16224. height: math.unit(160, "meters")
  16225. },
  16226. {
  16227. name: "Titaness",
  16228. height: math.unit(800, "meters")
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(6, "feet"),
  16237. weight: math.unit(150, "lb"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/alluria/front.svg",
  16241. extra: 806 / 738,
  16242. bottom: 0.01
  16243. }
  16244. },
  16245. side: {
  16246. height: math.unit(6, "feet"),
  16247. weight: math.unit(150, "lb"),
  16248. name: "Side",
  16249. image: {
  16250. source: "./media/characters/alluria/side.svg",
  16251. extra: 800 / 750,
  16252. }
  16253. },
  16254. back: {
  16255. height: math.unit(6, "feet"),
  16256. weight: math.unit(150, "lb"),
  16257. name: "Back",
  16258. image: {
  16259. source: "./media/characters/alluria/back.svg",
  16260. extra: 806 / 738,
  16261. }
  16262. },
  16263. frontMaid: {
  16264. height: math.unit(6, "feet"),
  16265. weight: math.unit(150, "lb"),
  16266. name: "Front (Maid)",
  16267. image: {
  16268. source: "./media/characters/alluria/front-maid.svg",
  16269. extra: 806 / 738,
  16270. bottom: 0.01
  16271. }
  16272. },
  16273. sideMaid: {
  16274. height: math.unit(6, "feet"),
  16275. weight: math.unit(150, "lb"),
  16276. name: "Side (Maid)",
  16277. image: {
  16278. source: "./media/characters/alluria/side-maid.svg",
  16279. extra: 800 / 750,
  16280. bottom: 0.005
  16281. }
  16282. },
  16283. backMaid: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(150, "lb"),
  16286. name: "Back (Maid)",
  16287. image: {
  16288. source: "./media/characters/alluria/back-maid.svg",
  16289. extra: 806 / 738,
  16290. }
  16291. },
  16292. },
  16293. [
  16294. {
  16295. name: "Micro",
  16296. height: math.unit(6, "inches"),
  16297. default: true
  16298. },
  16299. ]
  16300. ))
  16301. characterMakers.push(() => makeCharacter(
  16302. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16303. {
  16304. front: {
  16305. height: math.unit(6, "feet"),
  16306. weight: math.unit(150, "lb"),
  16307. name: "Front",
  16308. image: {
  16309. source: "./media/characters/kyle/front.svg",
  16310. extra: 1069 / 962,
  16311. bottom: 77.228 / 1727.45
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "Macro",
  16318. height: math.unit(150, "feet"),
  16319. default: true
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16325. {
  16326. front: {
  16327. height: math.unit(6, "feet"),
  16328. weight: math.unit(300, "lb"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/duncan/front.svg",
  16332. extra: 1650 / 1482,
  16333. bottom: 0.05
  16334. }
  16335. },
  16336. },
  16337. [
  16338. {
  16339. name: "Macro",
  16340. height: math.unit(100, "feet"),
  16341. default: true
  16342. },
  16343. ]
  16344. ))
  16345. characterMakers.push(() => makeCharacter(
  16346. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16347. {
  16348. front: {
  16349. height: math.unit(5 + 4 / 12, "feet"),
  16350. weight: math.unit(220, "lb"),
  16351. name: "Front",
  16352. image: {
  16353. source: "./media/characters/memory/front.svg",
  16354. extra: 3641 / 3545,
  16355. bottom: 0.03
  16356. }
  16357. },
  16358. back: {
  16359. height: math.unit(5 + 4 / 12, "feet"),
  16360. weight: math.unit(220, "lb"),
  16361. name: "Back",
  16362. image: {
  16363. source: "./media/characters/memory/back.svg",
  16364. extra: 3641 / 3545,
  16365. bottom: 0.025
  16366. }
  16367. },
  16368. frontSkirt: {
  16369. height: math.unit(5 + 4 / 12, "feet"),
  16370. weight: math.unit(220, "lb"),
  16371. name: "Front (Skirt)",
  16372. image: {
  16373. source: "./media/characters/memory/front-skirt.svg",
  16374. extra: 3641 / 3545,
  16375. bottom: 0.03
  16376. }
  16377. },
  16378. frontDress: {
  16379. height: math.unit(5 + 4 / 12, "feet"),
  16380. weight: math.unit(220, "lb"),
  16381. name: "Front (Dress)",
  16382. image: {
  16383. source: "./media/characters/memory/front-dress.svg",
  16384. extra: 3641 / 3545,
  16385. bottom: 0.03
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Micro",
  16392. height: math.unit(6, "inches"),
  16393. default: true
  16394. },
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(5 + 4 / 12, "feet")
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(4 + 11 / 12, "feet"),
  16406. weight: math.unit(100, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/luno/front.svg",
  16410. extra: 1535 / 1487,
  16411. bottom: 0.03
  16412. }
  16413. },
  16414. },
  16415. [
  16416. {
  16417. name: "Micro",
  16418. height: math.unit(3, "inches")
  16419. },
  16420. {
  16421. name: "Normal",
  16422. height: math.unit(4 + 11 / 12, "feet"),
  16423. default: true
  16424. },
  16425. {
  16426. name: "Macro",
  16427. height: math.unit(300, "feet")
  16428. },
  16429. {
  16430. name: "Megamacro",
  16431. height: math.unit(700, "miles")
  16432. },
  16433. ]
  16434. ))
  16435. characterMakers.push(() => makeCharacter(
  16436. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16437. {
  16438. front: {
  16439. height: math.unit(6 + 2 / 12, "feet"),
  16440. weight: math.unit(170, "lb"),
  16441. name: "Front",
  16442. image: {
  16443. source: "./media/characters/jamesy/front.svg",
  16444. extra: 440 / 382,
  16445. bottom: 0.005
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Micro",
  16452. height: math.unit(3, "inches")
  16453. },
  16454. {
  16455. name: "Normal",
  16456. height: math.unit(6 + 2 / 12, "feet"),
  16457. default: true
  16458. },
  16459. {
  16460. name: "Macro",
  16461. height: math.unit(300, "feet")
  16462. },
  16463. {
  16464. name: "Megamacro",
  16465. height: math.unit(700, "miles")
  16466. },
  16467. ]
  16468. ))
  16469. characterMakers.push(() => makeCharacter(
  16470. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16471. {
  16472. front: {
  16473. height: math.unit(6, "feet"),
  16474. weight: math.unit(160, "lb"),
  16475. name: "Front",
  16476. image: {
  16477. source: "./media/characters/mark/front.svg",
  16478. extra: 3300 / 3100,
  16479. bottom: 136.42 / 3440.47
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Macro",
  16486. height: math.unit(120, "meters")
  16487. },
  16488. {
  16489. name: "Bigger Macro",
  16490. height: math.unit(350, "meters")
  16491. },
  16492. {
  16493. name: "Megamacro",
  16494. height: math.unit(8, "km"),
  16495. default: true
  16496. },
  16497. {
  16498. name: "Continental",
  16499. height: math.unit(4550, "km")
  16500. },
  16501. {
  16502. name: "Planetary",
  16503. height: math.unit(65000, "km")
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(6, "feet"),
  16512. weight: math.unit(400, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/mac/front.svg",
  16516. extra: 1048 / 987.7,
  16517. bottom: 60 / 1107.6,
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Macro",
  16524. height: math.unit(500, "feet"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(5 + 2 / 12, "feet"),
  16534. weight: math.unit(190, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/bari/front.svg",
  16538. extra: 3156 / 2880,
  16539. bottom: 0.03
  16540. }
  16541. },
  16542. back: {
  16543. height: math.unit(5 + 2 / 12, "feet"),
  16544. weight: math.unit(190, "lb"),
  16545. name: "Back",
  16546. image: {
  16547. source: "./media/characters/bari/back.svg",
  16548. extra: 3260 / 2834,
  16549. bottom: 0.025
  16550. }
  16551. },
  16552. frontPlush: {
  16553. height: math.unit(5 + 2 / 12, "feet"),
  16554. weight: math.unit(190, "lb"),
  16555. name: "Front (Plush)",
  16556. image: {
  16557. source: "./media/characters/bari/front-plush.svg",
  16558. extra: 1112 / 1061,
  16559. bottom: 0.002
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Micro",
  16566. height: math.unit(3, "inches")
  16567. },
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(5 + 2 / 12, "feet"),
  16571. default: true
  16572. },
  16573. {
  16574. name: "Macro",
  16575. height: math.unit(20, "feet")
  16576. },
  16577. ]
  16578. ))
  16579. characterMakers.push(() => makeCharacter(
  16580. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16581. {
  16582. front: {
  16583. height: math.unit(6 + 1 / 12, "feet"),
  16584. weight: math.unit(275, "lb"),
  16585. name: "Front",
  16586. image: {
  16587. source: "./media/characters/hunter-misha-raven/front.svg"
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Mortal",
  16594. height: math.unit(6 + 1 / 12, "feet")
  16595. },
  16596. {
  16597. name: "Divine",
  16598. height: math.unit(1.12134e34, "parsecs"),
  16599. default: true
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16605. {
  16606. front: {
  16607. height: math.unit(6 + 3 / 12, "feet"),
  16608. weight: math.unit(220, "lb"),
  16609. name: "Front",
  16610. image: {
  16611. source: "./media/characters/max-calore/front.svg",
  16612. extra: 1700 / 1648,
  16613. bottom: 0.01
  16614. }
  16615. },
  16616. back: {
  16617. height: math.unit(6 + 3 / 12, "feet"),
  16618. weight: math.unit(220, "lb"),
  16619. name: "Back",
  16620. image: {
  16621. source: "./media/characters/max-calore/back.svg",
  16622. extra: 1700 / 1648,
  16623. bottom: 0.01
  16624. }
  16625. },
  16626. },
  16627. [
  16628. {
  16629. name: "Normal",
  16630. height: math.unit(6 + 3 / 12, "feet"),
  16631. default: true
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16637. {
  16638. side: {
  16639. height: math.unit(2 + 8 / 12, "feet"),
  16640. weight: math.unit(99, "lb"),
  16641. name: "Side",
  16642. image: {
  16643. source: "./media/characters/aspen/side.svg",
  16644. extra: 152 / 138,
  16645. bottom: 0.032
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Normal",
  16652. height: math.unit(2 + 8 / 12, "feet"),
  16653. default: true
  16654. },
  16655. ]
  16656. ))
  16657. characterMakers.push(() => makeCharacter(
  16658. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16659. {
  16660. side: {
  16661. height: math.unit(3 + 2 / 12, "feet"),
  16662. weight: math.unit(224, "lb"),
  16663. name: "Side",
  16664. image: {
  16665. source: "./media/characters/sheila-feral-wolf/side.svg",
  16666. extra: 179 / 166,
  16667. bottom: 0.03
  16668. }
  16669. },
  16670. },
  16671. [
  16672. {
  16673. name: "Normal",
  16674. height: math.unit(3 + 2 / 12, "feet"),
  16675. default: true
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16681. {
  16682. side: {
  16683. height: math.unit(1 + 9 / 12, "feet"),
  16684. weight: math.unit(38, "lb"),
  16685. name: "Side",
  16686. image: {
  16687. source: "./media/characters/michelle/side.svg",
  16688. extra: 147 / 136.7,
  16689. bottom: 0.03
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Normal",
  16696. height: math.unit(1 + 9 / 12, "feet"),
  16697. default: true
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(1 + 1 / 12, "feet"),
  16706. weight: math.unit(18, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/nino/front.svg"
  16710. }
  16711. },
  16712. },
  16713. [
  16714. {
  16715. name: "Normal",
  16716. height: math.unit(1 + 1 / 12, "feet"),
  16717. default: true
  16718. },
  16719. ]
  16720. ))
  16721. characterMakers.push(() => makeCharacter(
  16722. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16723. {
  16724. front: {
  16725. height: math.unit(1, "feet"),
  16726. weight: math.unit(16, "lb"),
  16727. name: "Front",
  16728. image: {
  16729. source: "./media/characters/viola/front.svg"
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(1, "feet"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(6 + 5 / 12, "feet"),
  16746. weight: math.unit(580, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/atlas/front.svg",
  16750. extra: 298.5 / 290,
  16751. bottom: 0.015
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(6 + 5 / 12, "feet"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16765. {
  16766. side: {
  16767. height: math.unit(1 + 10 / 12, "feet"),
  16768. weight: math.unit(25, "lb"),
  16769. name: "Side",
  16770. image: {
  16771. source: "./media/characters/davy/side.svg",
  16772. extra: 200 / 170,
  16773. bottom: 0.01
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(1 + 10 / 12, "feet"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16787. {
  16788. side: {
  16789. height: math.unit(4 + 8 / 12, "feet"),
  16790. weight: math.unit(166, "lb"),
  16791. name: "Side",
  16792. image: {
  16793. source: "./media/characters/fiona/side.svg",
  16794. extra: 232 / 220,
  16795. bottom: 0.03
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(4 + 8 / 12, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16809. {
  16810. front: {
  16811. height: math.unit(2, "feet"),
  16812. weight: math.unit(62, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/lyla/front.svg",
  16816. bottom: 0.1
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(2, "feet"),
  16824. default: true
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16830. {
  16831. side: {
  16832. height: math.unit(1.8, "feet"),
  16833. weight: math.unit(44, "lb"),
  16834. name: "Side",
  16835. image: {
  16836. source: "./media/characters/perseus/side.svg",
  16837. bottom: 0.21
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(1.8, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16851. {
  16852. side: {
  16853. height: math.unit(4 + 2 / 12, "feet"),
  16854. weight: math.unit(20, "lb"),
  16855. name: "Side",
  16856. image: {
  16857. source: "./media/characters/remus/side.svg"
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Normal",
  16864. height: math.unit(4 + 2 / 12, "feet"),
  16865. default: true
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16871. {
  16872. front: {
  16873. height: math.unit(4 + 11 / 12, "feet"),
  16874. weight: math.unit(114, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/raf/front.svg",
  16878. bottom: 20.5 / 1863
  16879. }
  16880. },
  16881. side: {
  16882. height: math.unit(4 + 11 / 12, "feet"),
  16883. weight: math.unit(114, "lb"),
  16884. name: "Side",
  16885. image: {
  16886. source: "./media/characters/raf/side.svg",
  16887. bottom: 22 / 1822
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Micro",
  16894. height: math.unit(2, "inches")
  16895. },
  16896. {
  16897. name: "Normal",
  16898. height: math.unit(4 + 11 / 12, "feet"),
  16899. default: true
  16900. },
  16901. {
  16902. name: "Macro",
  16903. height: math.unit(70, "feet")
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(1.5, "meters"),
  16912. weight: math.unit(68, "kg"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/liam-einarr/front.svg",
  16916. extra: 2822 / 2666
  16917. }
  16918. },
  16919. back: {
  16920. height: math.unit(1.5, "meters"),
  16921. weight: math.unit(68, "kg"),
  16922. name: "Back",
  16923. image: {
  16924. source: "./media/characters/liam-einarr/back.svg",
  16925. extra: 2822 / 2666,
  16926. bottom: 0.015
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(1.5, "meters"),
  16934. default: true
  16935. },
  16936. {
  16937. name: "Macro",
  16938. height: math.unit(150, "meters")
  16939. },
  16940. {
  16941. name: "Megamacro",
  16942. height: math.unit(35, "km")
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16948. {
  16949. front: {
  16950. height: math.unit(6, "feet"),
  16951. weight: math.unit(75, "kg"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/linda/front.svg",
  16955. extra: 930 / 874,
  16956. bottom: 0.004
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Normal",
  16963. height: math.unit(6, "feet"),
  16964. default: true
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16970. {
  16971. front: {
  16972. height: math.unit(6 + 8 / 12, "feet"),
  16973. weight: math.unit(220, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/caylex/front.svg",
  16977. extra: 821 / 772,
  16978. bottom: 0.07
  16979. }
  16980. },
  16981. back: {
  16982. height: math.unit(6 + 8 / 12, "feet"),
  16983. weight: math.unit(220, "lb"),
  16984. name: "Back",
  16985. image: {
  16986. source: "./media/characters/caylex/back.svg",
  16987. extra: 821 / 772,
  16988. bottom: 0.022
  16989. }
  16990. },
  16991. hand: {
  16992. height: math.unit(1.25, "feet"),
  16993. name: "Hand",
  16994. image: {
  16995. source: "./media/characters/caylex/hand.svg"
  16996. }
  16997. },
  16998. foot: {
  16999. height: math.unit(1.6, "feet"),
  17000. name: "Foot",
  17001. image: {
  17002. source: "./media/characters/caylex/foot.svg"
  17003. }
  17004. },
  17005. armored: {
  17006. height: math.unit(6 + 8 / 12, "feet"),
  17007. weight: math.unit(250, "lb"),
  17008. name: "Armored",
  17009. image: {
  17010. source: "./media/characters/caylex/armored.svg",
  17011. extra: 1420 / 1310,
  17012. bottom: 0.045
  17013. }
  17014. },
  17015. },
  17016. [
  17017. {
  17018. name: "Normal",
  17019. height: math.unit(6 + 8 / 12, "feet"),
  17020. default: true
  17021. },
  17022. {
  17023. name: "Normal+",
  17024. height: math.unit(12, "feet")
  17025. },
  17026. ]
  17027. ))
  17028. characterMakers.push(() => makeCharacter(
  17029. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17030. {
  17031. front: {
  17032. height: math.unit(7 + 6 / 12, "feet"),
  17033. weight: math.unit(288, "lb"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/alana/front.svg",
  17037. extra: 679 / 653,
  17038. bottom: 22.5 / 701
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(7 + 6 / 12, "feet")
  17046. },
  17047. {
  17048. name: "Large",
  17049. height: math.unit(50, "feet")
  17050. },
  17051. {
  17052. name: "Macro",
  17053. height: math.unit(100, "feet"),
  17054. default: true
  17055. },
  17056. {
  17057. name: "Macro+",
  17058. height: math.unit(200, "feet")
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17064. {
  17065. front: {
  17066. height: math.unit(6 + 1 / 12, "feet"),
  17067. weight: math.unit(210, "lb"),
  17068. name: "Front",
  17069. image: {
  17070. source: "./media/characters/hasani/front.svg",
  17071. extra: 244 / 232,
  17072. bottom: 0.01
  17073. }
  17074. },
  17075. back: {
  17076. height: math.unit(6 + 1 / 12, "feet"),
  17077. weight: math.unit(210, "lb"),
  17078. name: "Back",
  17079. image: {
  17080. source: "./media/characters/hasani/back.svg",
  17081. extra: 244 / 232,
  17082. bottom: 0.01
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(6 + 1 / 12, "feet")
  17090. },
  17091. {
  17092. name: "Macro",
  17093. height: math.unit(175, "feet"),
  17094. default: true
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(1.82, "meters"),
  17103. weight: math.unit(140, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/nita/front.svg",
  17107. extra: 2473 / 2363,
  17108. bottom: 0.01
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(1.82, "m")
  17116. },
  17117. {
  17118. name: "Macro",
  17119. height: math.unit(300, "m")
  17120. },
  17121. {
  17122. name: "Mistake Canon",
  17123. height: math.unit(0.5, "miles"),
  17124. default: true
  17125. },
  17126. {
  17127. name: "Big Mistake",
  17128. height: math.unit(13, "miles")
  17129. },
  17130. {
  17131. name: "Playing God",
  17132. height: math.unit(2450, "miles")
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17138. {
  17139. front: {
  17140. height: math.unit(4, "feet"),
  17141. weight: math.unit(120, "lb"),
  17142. name: "Front",
  17143. image: {
  17144. source: "./media/characters/shiriko/front.svg",
  17145. extra: 195 / 188
  17146. }
  17147. },
  17148. },
  17149. [
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(4, "feet"),
  17153. default: true
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17159. {
  17160. front: {
  17161. height: math.unit(6, "feet"),
  17162. name: "front",
  17163. image: {
  17164. source: "./media/characters/deja/front.svg",
  17165. extra: 926 / 840,
  17166. bottom: 0.07
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Planck Length",
  17173. height: math.unit(1.6e-35, "meters")
  17174. },
  17175. {
  17176. name: "Normal",
  17177. height: math.unit(30.48, "meters"),
  17178. default: true
  17179. },
  17180. {
  17181. name: "Universal",
  17182. height: math.unit(8.8e26, "meters")
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17188. {
  17189. side: {
  17190. height: math.unit(8, "feet"),
  17191. weight: math.unit(6300, "lb"),
  17192. name: "Side",
  17193. image: {
  17194. source: "./media/characters/anima/side.svg",
  17195. bottom: 0.035
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(8, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17209. {
  17210. front: {
  17211. height: math.unit(8, "feet"),
  17212. weight: math.unit(350, "lb"),
  17213. name: "Front",
  17214. image: {
  17215. source: "./media/characters/bianca/front.svg",
  17216. extra: 234 / 225,
  17217. bottom: 0.03
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(8, "feet"),
  17225. default: true
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(6, "feet"),
  17234. weight: math.unit(150, "lb"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/adinia/front.svg",
  17238. extra: 1845 / 1672,
  17239. bottom: 0.02
  17240. }
  17241. },
  17242. back: {
  17243. height: math.unit(6, "feet"),
  17244. weight: math.unit(150, "lb"),
  17245. name: "Back",
  17246. image: {
  17247. source: "./media/characters/adinia/back.svg",
  17248. extra: 1845 / 1672,
  17249. bottom: 0.002
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Normal",
  17256. height: math.unit(11 + 5 / 12, "feet"),
  17257. default: true
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(3, "meters"),
  17266. weight: math.unit(200, "kg"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/lykasa/front.svg",
  17270. extra: 1076 / 976,
  17271. bottom: 0.06
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(3, "meters")
  17279. },
  17280. {
  17281. name: "Kaiju",
  17282. height: math.unit(120, "meters"),
  17283. default: true
  17284. },
  17285. {
  17286. name: "Mega Kaiju",
  17287. height: math.unit(240, "km")
  17288. },
  17289. {
  17290. name: "Giga Kaiju",
  17291. height: math.unit(400, "megameters")
  17292. },
  17293. {
  17294. name: "Tera Kaiju",
  17295. height: math.unit(800, "gigameters")
  17296. },
  17297. {
  17298. name: "Kaiju Dragon Goddess",
  17299. height: math.unit(26, "zettaparsecs")
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17305. {
  17306. side: {
  17307. height: math.unit(283 / 124 * 6, "feet"),
  17308. weight: math.unit(35000, "lb"),
  17309. name: "Side",
  17310. image: {
  17311. source: "./media/characters/malfaren/side.svg",
  17312. extra: 2500 / 1010,
  17313. bottom: 0.01
  17314. }
  17315. },
  17316. front: {
  17317. height: math.unit(22.36, "feet"),
  17318. weight: math.unit(35000, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/malfaren/front.svg",
  17322. extra: 1631 / 1476,
  17323. bottom: 0.01
  17324. }
  17325. },
  17326. maw: {
  17327. height: math.unit(6.9, "feet"),
  17328. name: "Maw",
  17329. image: {
  17330. source: "./media/characters/malfaren/maw.svg"
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Big",
  17337. height: math.unit(283 / 162 * 6, "feet"),
  17338. },
  17339. {
  17340. name: "Bigger",
  17341. height: math.unit(283 / 124 * 6, "feet")
  17342. },
  17343. {
  17344. name: "Massive",
  17345. height: math.unit(283 / 92 * 6, "feet"),
  17346. default: true
  17347. },
  17348. {
  17349. name: "👀💦",
  17350. height: math.unit(283 / 73 * 6, "feet"),
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17356. {
  17357. front: {
  17358. height: math.unit(1.7, "m"),
  17359. weight: math.unit(70, "kg"),
  17360. name: "Front",
  17361. image: {
  17362. source: "./media/characters/kernel/front.svg",
  17363. extra: 222 / 210,
  17364. bottom: 0.007
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Nano",
  17371. height: math.unit(17, "micrometers")
  17372. },
  17373. {
  17374. name: "Micro",
  17375. height: math.unit(1.7, "mm")
  17376. },
  17377. {
  17378. name: "Small",
  17379. height: math.unit(1.7, "cm")
  17380. },
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(1.7, "m"),
  17384. default: true
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17390. {
  17391. front: {
  17392. height: math.unit(1.75, "meters"),
  17393. weight: math.unit(65, "kg"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/jayne-folest/front.svg",
  17397. extra: 2115 / 2007,
  17398. bottom: 0.02
  17399. }
  17400. },
  17401. back: {
  17402. height: math.unit(1.75, "meters"),
  17403. weight: math.unit(65, "kg"),
  17404. name: "Back",
  17405. image: {
  17406. source: "./media/characters/jayne-folest/back.svg",
  17407. extra: 2115 / 2007,
  17408. bottom: 0.005
  17409. }
  17410. },
  17411. frontClothed: {
  17412. height: math.unit(1.75, "meters"),
  17413. weight: math.unit(65, "kg"),
  17414. name: "Front (Clothed)",
  17415. image: {
  17416. source: "./media/characters/jayne-folest/front-clothed.svg",
  17417. extra: 2115 / 2007,
  17418. bottom: 0.035
  17419. }
  17420. },
  17421. hand: {
  17422. height: math.unit(1 / 1.260, "feet"),
  17423. name: "Hand",
  17424. image: {
  17425. source: "./media/characters/jayne-folest/hand.svg"
  17426. }
  17427. },
  17428. foot: {
  17429. height: math.unit(1 / 0.918, "feet"),
  17430. name: "Foot",
  17431. image: {
  17432. source: "./media/characters/jayne-folest/foot.svg"
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Micro",
  17439. height: math.unit(4, "cm")
  17440. },
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(1.75, "meters")
  17444. },
  17445. {
  17446. name: "Macro",
  17447. height: math.unit(47.5, "meters"),
  17448. default: true
  17449. },
  17450. ]
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17454. {
  17455. front: {
  17456. height: math.unit(180, "cm"),
  17457. weight: math.unit(70, "kg"),
  17458. name: "Front",
  17459. image: {
  17460. source: "./media/characters/algier/front.svg",
  17461. extra: 596 / 572,
  17462. bottom: 0.04
  17463. }
  17464. },
  17465. back: {
  17466. height: math.unit(180, "cm"),
  17467. weight: math.unit(70, "kg"),
  17468. name: "Back",
  17469. image: {
  17470. source: "./media/characters/algier/back.svg",
  17471. extra: 596 / 572,
  17472. bottom: 0.025
  17473. }
  17474. },
  17475. frontdressed: {
  17476. height: math.unit(180, "cm"),
  17477. weight: math.unit(150, "kg"),
  17478. name: "Front-dressed",
  17479. image: {
  17480. source: "./media/characters/algier/front-dressed.svg",
  17481. extra: 596 / 572,
  17482. bottom: 0.038
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Micro",
  17489. height: math.unit(5, "cm")
  17490. },
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(180, "cm"),
  17494. default: true
  17495. },
  17496. {
  17497. name: "Macro",
  17498. height: math.unit(64, "m")
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17504. {
  17505. upright: {
  17506. height: math.unit(7, "feet"),
  17507. weight: math.unit(300, "lb"),
  17508. name: "Upright",
  17509. image: {
  17510. source: "./media/characters/pretzel/upright.svg",
  17511. extra: 534 / 522,
  17512. bottom: 0.065
  17513. }
  17514. },
  17515. sprawling: {
  17516. height: math.unit(3.75, "feet"),
  17517. weight: math.unit(300, "lb"),
  17518. name: "Sprawling",
  17519. image: {
  17520. source: "./media/characters/pretzel/sprawling.svg",
  17521. extra: 314 / 281,
  17522. bottom: 0.1
  17523. }
  17524. },
  17525. tongue: {
  17526. height: math.unit(2, "feet"),
  17527. name: "Tongue",
  17528. image: {
  17529. source: "./media/characters/pretzel/tongue.svg"
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(7, "feet"),
  17537. default: true
  17538. },
  17539. {
  17540. name: "Oversized",
  17541. height: math.unit(15, "feet")
  17542. },
  17543. {
  17544. name: "Huge",
  17545. height: math.unit(30, "feet")
  17546. },
  17547. {
  17548. name: "Macro",
  17549. height: math.unit(250, "feet")
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17555. {
  17556. sideFront: {
  17557. height: math.unit(5 + 2 / 12, "feet"),
  17558. weight: math.unit(120, "lb"),
  17559. name: "Front Side",
  17560. image: {
  17561. source: "./media/characters/roxi/side-front.svg",
  17562. extra: 2924 / 2717,
  17563. bottom: 0.08
  17564. }
  17565. },
  17566. sideBack: {
  17567. height: math.unit(5 + 2 / 12, "feet"),
  17568. weight: math.unit(120, "lb"),
  17569. name: "Back Side",
  17570. image: {
  17571. source: "./media/characters/roxi/side-back.svg",
  17572. extra: 2904 / 2693,
  17573. bottom: 0.06
  17574. }
  17575. },
  17576. front: {
  17577. height: math.unit(5 + 2 / 12, "feet"),
  17578. weight: math.unit(120, "lb"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/roxi/front.svg",
  17582. extra: 2028 / 1907,
  17583. bottom: 0.01
  17584. }
  17585. },
  17586. frontAlt: {
  17587. height: math.unit(5 + 2 / 12, "feet"),
  17588. weight: math.unit(120, "lb"),
  17589. name: "Front (Alt)",
  17590. image: {
  17591. source: "./media/characters/roxi/front-alt.svg",
  17592. extra: 1828 / 1798,
  17593. bottom: 0.01
  17594. }
  17595. },
  17596. sitting: {
  17597. height: math.unit(2.8, "feet"),
  17598. weight: math.unit(120, "lb"),
  17599. name: "Sitting",
  17600. image: {
  17601. source: "./media/characters/roxi/sitting.svg",
  17602. extra: 2660 / 2462,
  17603. bottom: 0.1
  17604. }
  17605. },
  17606. },
  17607. [
  17608. {
  17609. name: "Normal",
  17610. height: math.unit(5 + 2 / 12, "feet"),
  17611. default: true
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17617. {
  17618. side: {
  17619. height: math.unit(55, "feet"),
  17620. weight: math.unit(153, "tons"),
  17621. name: "Side",
  17622. image: {
  17623. source: "./media/characters/shadow/side.svg",
  17624. extra: 701 / 628,
  17625. bottom: 0.02
  17626. }
  17627. },
  17628. flying: {
  17629. height: math.unit(145, "feet"),
  17630. weight: math.unit(153, "tons"),
  17631. name: "Flying",
  17632. image: {
  17633. source: "./media/characters/shadow/flying.svg"
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(55, "feet"),
  17641. default: true
  17642. },
  17643. ]
  17644. ))
  17645. characterMakers.push(() => makeCharacter(
  17646. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17647. {
  17648. front: {
  17649. height: math.unit(6, "feet"),
  17650. weight: math.unit(200, "lb"),
  17651. name: "Front",
  17652. image: {
  17653. source: "./media/characters/marcie/front.svg",
  17654. extra: 960 / 876,
  17655. bottom: 58 / 1017.87
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Macro",
  17662. height: math.unit(1, "mile"),
  17663. default: true
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(7, "feet"),
  17672. weight: math.unit(200, "lb"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/kachina/front.svg",
  17676. extra: 1290.68 / 1119,
  17677. bottom: 36.5 / 1327.18
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(7, "feet"),
  17685. default: true
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17691. {
  17692. looking: {
  17693. height: math.unit(2, "meters"),
  17694. weight: math.unit(300, "kg"),
  17695. name: "Looking",
  17696. image: {
  17697. source: "./media/characters/kash/looking.svg",
  17698. extra: 474 / 344,
  17699. bottom: 0.03
  17700. }
  17701. },
  17702. side: {
  17703. height: math.unit(2, "meters"),
  17704. weight: math.unit(300, "kg"),
  17705. name: "Side",
  17706. image: {
  17707. source: "./media/characters/kash/side.svg",
  17708. extra: 302 / 251,
  17709. bottom: 0.03
  17710. }
  17711. },
  17712. front: {
  17713. height: math.unit(2, "meters"),
  17714. weight: math.unit(300, "kg"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/kash/front.svg",
  17718. extra: 495 / 360,
  17719. bottom: 0.015
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(2, "meters"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "Big",
  17731. height: math.unit(3, "meters")
  17732. },
  17733. {
  17734. name: "Large",
  17735. height: math.unit(5, "meters")
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17741. {
  17742. feeding: {
  17743. height: math.unit(6.7, "feet"),
  17744. weight: math.unit(350, "lb"),
  17745. name: "Feeding",
  17746. image: {
  17747. source: "./media/characters/lalim/feeding.svg",
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(6.7, "feet"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(9.5, "feet"),
  17764. weight: math.unit(600, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/de'vout/front.svg",
  17768. extra: 1443 / 1328,
  17769. bottom: 0.025
  17770. }
  17771. },
  17772. back: {
  17773. height: math.unit(9.5, "feet"),
  17774. weight: math.unit(600, "lb"),
  17775. name: "Back",
  17776. image: {
  17777. source: "./media/characters/de'vout/back.svg",
  17778. extra: 1443 / 1328
  17779. }
  17780. },
  17781. frontDressed: {
  17782. height: math.unit(9.5, "feet"),
  17783. weight: math.unit(600, "lb"),
  17784. name: "Front (Dressed",
  17785. image: {
  17786. source: "./media/characters/de'vout/front-dressed.svg",
  17787. extra: 1443 / 1328,
  17788. bottom: 0.025
  17789. }
  17790. },
  17791. backDressed: {
  17792. height: math.unit(9.5, "feet"),
  17793. weight: math.unit(600, "lb"),
  17794. name: "Back (Dressed",
  17795. image: {
  17796. source: "./media/characters/de'vout/back-dressed.svg",
  17797. extra: 1443 / 1328
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(9.5, "feet"),
  17805. default: true
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17811. {
  17812. front: {
  17813. height: math.unit(8, "feet"),
  17814. weight: math.unit(225, "lb"),
  17815. name: "Front",
  17816. image: {
  17817. source: "./media/characters/talana/front.svg",
  17818. extra: 1410 / 1300,
  17819. bottom: 0.015
  17820. }
  17821. },
  17822. frontDressed: {
  17823. height: math.unit(8, "feet"),
  17824. weight: math.unit(225, "lb"),
  17825. name: "Front (Dressed",
  17826. image: {
  17827. source: "./media/characters/talana/front-dressed.svg",
  17828. extra: 1410 / 1300,
  17829. bottom: 0.015
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Normal",
  17836. height: math.unit(8, "feet"),
  17837. default: true
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17843. {
  17844. side: {
  17845. height: math.unit(7.2, "feet"),
  17846. weight: math.unit(150, "lb"),
  17847. name: "Side",
  17848. image: {
  17849. source: "./media/characters/xeauvok/side.svg",
  17850. extra: 1975 / 1523,
  17851. bottom: 0.07
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(7.2, "feet"),
  17859. default: true
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17865. {
  17866. side: {
  17867. height: math.unit(10, "feet"),
  17868. weight: math.unit(900, "kg"),
  17869. name: "Side",
  17870. image: {
  17871. source: "./media/characters/zara/side.svg",
  17872. extra: 504 / 498
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(10, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17886. {
  17887. side: {
  17888. height: math.unit(6, "feet"),
  17889. weight: math.unit(150, "lb"),
  17890. name: "Side",
  17891. image: {
  17892. source: "./media/characters/richard-dragon/side.svg",
  17893. extra: 845 / 340,
  17894. bottom: 0.017
  17895. }
  17896. },
  17897. maw: {
  17898. height: math.unit(2.97, "feet"),
  17899. name: "Maw",
  17900. image: {
  17901. source: "./media/characters/richard-dragon/maw.svg"
  17902. }
  17903. },
  17904. },
  17905. [
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17910. {
  17911. front: {
  17912. height: math.unit(4, "feet"),
  17913. weight: math.unit(100, "lb"),
  17914. name: "Front",
  17915. image: {
  17916. source: "./media/characters/richard-smeargle/front.svg",
  17917. extra: 2952 / 2820,
  17918. bottom: 0.028
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(4, "feet"),
  17926. default: true
  17927. },
  17928. {
  17929. name: "Dynamax",
  17930. height: math.unit(20, "meters")
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17936. {
  17937. front: {
  17938. height: math.unit(6, "feet"),
  17939. weight: math.unit(110, "lb"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/klay/front.svg",
  17943. extra: 962 / 883,
  17944. bottom: 0.04
  17945. }
  17946. },
  17947. back: {
  17948. height: math.unit(6, "feet"),
  17949. weight: math.unit(110, "lb"),
  17950. name: "Back",
  17951. image: {
  17952. source: "./media/characters/klay/back.svg",
  17953. extra: 962 / 883
  17954. }
  17955. },
  17956. beans: {
  17957. height: math.unit(1.15, "feet"),
  17958. name: "Beans",
  17959. image: {
  17960. source: "./media/characters/klay/beans.svg"
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Micro",
  17967. height: math.unit(6, "inches")
  17968. },
  17969. {
  17970. name: "Mini",
  17971. height: math.unit(3, "feet")
  17972. },
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(6, "feet"),
  17976. default: true
  17977. },
  17978. {
  17979. name: "Big",
  17980. height: math.unit(25, "feet")
  17981. },
  17982. {
  17983. name: "Macro",
  17984. height: math.unit(100, "feet")
  17985. },
  17986. {
  17987. name: "Megamacro",
  17988. height: math.unit(400, "feet")
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17994. {
  17995. front: {
  17996. height: math.unit(6, "feet"),
  17997. weight: math.unit(160, "lb"),
  17998. name: "Front",
  17999. image: {
  18000. source: "./media/characters/marcus/front.svg",
  18001. extra: 734 / 676,
  18002. bottom: 0.03
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Little",
  18009. height: math.unit(6, "feet")
  18010. },
  18011. {
  18012. name: "Normal",
  18013. height: math.unit(110, "feet"),
  18014. default: true
  18015. },
  18016. {
  18017. name: "Macro",
  18018. height: math.unit(250, "feet")
  18019. },
  18020. {
  18021. name: "Megamacro",
  18022. height: math.unit(1000, "feet")
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18028. {
  18029. front: {
  18030. height: math.unit(7, "feet"),
  18031. weight: math.unit(275, "lb"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/claude-delroute/front.svg",
  18035. extra: 230 / 214,
  18036. bottom: 0.007
  18037. }
  18038. },
  18039. side: {
  18040. height: math.unit(7, "feet"),
  18041. weight: math.unit(275, "lb"),
  18042. name: "Side",
  18043. image: {
  18044. source: "./media/characters/claude-delroute/side.svg",
  18045. extra: 222 / 214,
  18046. bottom: 0.01
  18047. }
  18048. },
  18049. back: {
  18050. height: math.unit(7, "feet"),
  18051. weight: math.unit(275, "lb"),
  18052. name: "Back",
  18053. image: {
  18054. source: "./media/characters/claude-delroute/back.svg",
  18055. extra: 230 / 214,
  18056. bottom: 0.015
  18057. }
  18058. },
  18059. maw: {
  18060. height: math.unit(0.6407, "meters"),
  18061. name: "Maw",
  18062. image: {
  18063. source: "./media/characters/claude-delroute/maw.svg"
  18064. }
  18065. },
  18066. },
  18067. [
  18068. {
  18069. name: "Normal",
  18070. height: math.unit(7, "feet"),
  18071. default: true
  18072. },
  18073. {
  18074. name: "Lorge",
  18075. height: math.unit(20, "feet")
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(8 + 4 / 12, "feet"),
  18084. weight: math.unit(600, "lb"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/dragonien/front.svg",
  18088. extra: 100 / 94,
  18089. bottom: 3.3 / 103.3445
  18090. }
  18091. },
  18092. back: {
  18093. height: math.unit(8 + 4 / 12, "feet"),
  18094. weight: math.unit(600, "lb"),
  18095. name: "Back",
  18096. image: {
  18097. source: "./media/characters/dragonien/back.svg",
  18098. extra: 776 / 746,
  18099. bottom: 6.4 / 782.0616
  18100. }
  18101. },
  18102. foot: {
  18103. height: math.unit(1.54, "feet"),
  18104. name: "Foot",
  18105. image: {
  18106. source: "./media/characters/dragonien/foot.svg",
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(8 + 4 / 12, "feet"),
  18114. default: true
  18115. },
  18116. {
  18117. name: "Macro",
  18118. height: math.unit(200, "feet")
  18119. },
  18120. {
  18121. name: "Megamacro",
  18122. height: math.unit(1, "mile")
  18123. },
  18124. {
  18125. name: "Gigamacro",
  18126. height: math.unit(1000, "miles")
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18132. {
  18133. front: {
  18134. height: math.unit(5 + 2 / 12, "feet"),
  18135. weight: math.unit(110, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/desta/front.svg",
  18139. extra: 767 / 726,
  18140. bottom: 11.7 / 779
  18141. }
  18142. },
  18143. back: {
  18144. height: math.unit(5 + 2 / 12, "feet"),
  18145. weight: math.unit(110, "lb"),
  18146. name: "Back",
  18147. image: {
  18148. source: "./media/characters/desta/back.svg",
  18149. extra: 777 / 728,
  18150. bottom: 6 / 784
  18151. }
  18152. },
  18153. frontAlt: {
  18154. height: math.unit(5 + 2 / 12, "feet"),
  18155. weight: math.unit(110, "lb"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/desta/front-alt.svg",
  18159. extra: 1482 / 1417
  18160. }
  18161. },
  18162. side: {
  18163. height: math.unit(5 + 2 / 12, "feet"),
  18164. weight: math.unit(110, "lb"),
  18165. name: "Side",
  18166. image: {
  18167. source: "./media/characters/desta/side.svg",
  18168. extra: 2579 / 2491,
  18169. bottom: 0.053
  18170. }
  18171. },
  18172. },
  18173. [
  18174. {
  18175. name: "Micro",
  18176. height: math.unit(6, "inches")
  18177. },
  18178. {
  18179. name: "Normal",
  18180. height: math.unit(5 + 2 / 12, "feet"),
  18181. default: true
  18182. },
  18183. {
  18184. name: "Macro",
  18185. height: math.unit(62, "feet")
  18186. },
  18187. {
  18188. name: "Megamacro",
  18189. height: math.unit(1800, "feet")
  18190. },
  18191. ]
  18192. ))
  18193. characterMakers.push(() => makeCharacter(
  18194. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18195. {
  18196. front: {
  18197. height: math.unit(10, "feet"),
  18198. weight: math.unit(700, "lb"),
  18199. name: "Front",
  18200. image: {
  18201. source: "./media/characters/storm-alystar/front.svg",
  18202. extra: 2112 / 1898,
  18203. bottom: 0.034
  18204. }
  18205. },
  18206. },
  18207. [
  18208. {
  18209. name: "Micro",
  18210. height: math.unit(3.5, "inches")
  18211. },
  18212. {
  18213. name: "Normal",
  18214. height: math.unit(10, "feet"),
  18215. default: true
  18216. },
  18217. {
  18218. name: "Macro",
  18219. height: math.unit(400, "feet")
  18220. },
  18221. {
  18222. name: "Deific",
  18223. height: math.unit(60, "miles")
  18224. },
  18225. ]
  18226. ))
  18227. characterMakers.push(() => makeCharacter(
  18228. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18229. {
  18230. front: {
  18231. height: math.unit(2.35, "meters"),
  18232. weight: math.unit(119, "kg"),
  18233. name: "Front",
  18234. image: {
  18235. source: "./media/characters/ilia/front.svg",
  18236. extra: 1285 / 1255,
  18237. bottom: 0.06
  18238. }
  18239. },
  18240. },
  18241. [
  18242. {
  18243. name: "Normal",
  18244. height: math.unit(2.35, "meters")
  18245. },
  18246. {
  18247. name: "Macro",
  18248. height: math.unit(140, "meters"),
  18249. default: true
  18250. },
  18251. {
  18252. name: "Megamacro",
  18253. height: math.unit(100, "miles")
  18254. },
  18255. ]
  18256. ))
  18257. characterMakers.push(() => makeCharacter(
  18258. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18259. {
  18260. front: {
  18261. height: math.unit(6 + 5 / 12, "feet"),
  18262. weight: math.unit(190, "lb"),
  18263. name: "Front",
  18264. image: {
  18265. source: "./media/characters/kingdead/front.svg",
  18266. extra: 1228 / 1177
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Micro",
  18273. height: math.unit(7, "inches")
  18274. },
  18275. {
  18276. name: "Normal",
  18277. height: math.unit(6 + 5 / 12, "feet")
  18278. },
  18279. {
  18280. name: "Macro",
  18281. height: math.unit(150, "feet"),
  18282. default: true
  18283. },
  18284. {
  18285. name: "Megamacro",
  18286. height: math.unit(200, "miles")
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(8, "feet"),
  18295. weight: math.unit(600, "lb"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/kyrehx/front.svg",
  18299. extra: 1195 / 1095,
  18300. bottom: 0.034
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Micro",
  18307. height: math.unit(2, "inches")
  18308. },
  18309. {
  18310. name: "Normal",
  18311. height: math.unit(8, "feet"),
  18312. default: true
  18313. },
  18314. {
  18315. name: "Macro",
  18316. height: math.unit(255, "feet")
  18317. },
  18318. ]
  18319. ))
  18320. characterMakers.push(() => makeCharacter(
  18321. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18322. {
  18323. front: {
  18324. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18325. weight: math.unit(184, "lb"),
  18326. name: "Front",
  18327. image: {
  18328. source: "./media/characters/xang/front.svg",
  18329. extra: 845 / 755
  18330. }
  18331. },
  18332. },
  18333. [
  18334. {
  18335. name: "Normal",
  18336. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18337. default: true
  18338. },
  18339. {
  18340. name: "Macro",
  18341. height: math.unit(0.935 * 146, "feet")
  18342. },
  18343. {
  18344. name: "Megamacro",
  18345. height: math.unit(0.935 * 3, "miles")
  18346. },
  18347. ]
  18348. ))
  18349. characterMakers.push(() => makeCharacter(
  18350. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18351. {
  18352. frontDressed: {
  18353. height: math.unit(5 + 7 / 12, "feet"),
  18354. weight: math.unit(140, "lb"),
  18355. name: "Front (Dressed)",
  18356. image: {
  18357. source: "./media/characters/doc-weardno/front-dressed.svg",
  18358. extra: 263 / 234
  18359. }
  18360. },
  18361. backDressed: {
  18362. height: math.unit(5 + 7 / 12, "feet"),
  18363. weight: math.unit(140, "lb"),
  18364. name: "Back (Dressed)",
  18365. image: {
  18366. source: "./media/characters/doc-weardno/back-dressed.svg",
  18367. extra: 266 / 238
  18368. }
  18369. },
  18370. front: {
  18371. height: math.unit(5 + 7 / 12, "feet"),
  18372. weight: math.unit(140, "lb"),
  18373. name: "Front",
  18374. image: {
  18375. source: "./media/characters/doc-weardno/front.svg",
  18376. extra: 254 / 233
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Micro",
  18383. height: math.unit(3, "inches")
  18384. },
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(5 + 7 / 12, "feet"),
  18388. default: true
  18389. },
  18390. {
  18391. name: "Macro",
  18392. height: math.unit(25, "feet")
  18393. },
  18394. {
  18395. name: "Megamacro",
  18396. height: math.unit(2, "miles")
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18402. {
  18403. front: {
  18404. height: math.unit(6 + 2 / 12, "feet"),
  18405. weight: math.unit(153, "lb"),
  18406. name: "Front",
  18407. image: {
  18408. source: "./media/characters/seth-whilst/front.svg",
  18409. bottom: 0.07
  18410. }
  18411. },
  18412. },
  18413. [
  18414. {
  18415. name: "Micro",
  18416. height: math.unit(5, "inches")
  18417. },
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(6 + 2 / 12, "feet"),
  18421. default: true
  18422. },
  18423. ]
  18424. ))
  18425. characterMakers.push(() => makeCharacter(
  18426. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18427. {
  18428. front: {
  18429. height: math.unit(3, "inches"),
  18430. weight: math.unit(8, "grams"),
  18431. name: "Front",
  18432. image: {
  18433. source: "./media/characters/pocket-jabari/front.svg",
  18434. extra: 1024 / 974,
  18435. bottom: 0.039
  18436. }
  18437. },
  18438. },
  18439. [
  18440. {
  18441. name: "Minimicro",
  18442. height: math.unit(8, "mm")
  18443. },
  18444. {
  18445. name: "Micro",
  18446. height: math.unit(3, "inches"),
  18447. default: true
  18448. },
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(3, "feet")
  18452. },
  18453. ]
  18454. ))
  18455. characterMakers.push(() => makeCharacter(
  18456. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18457. {
  18458. front: {
  18459. height: math.unit(15, "feet"),
  18460. weight: math.unit(3280, "lb"),
  18461. name: "Front",
  18462. image: {
  18463. source: "./media/characters/sapphy/front.svg",
  18464. extra: 671 / 577,
  18465. bottom: 0.085
  18466. }
  18467. },
  18468. back: {
  18469. height: math.unit(15, "feet"),
  18470. weight: math.unit(3280, "lb"),
  18471. name: "Back",
  18472. image: {
  18473. source: "./media/characters/sapphy/back.svg",
  18474. extra: 631 / 607,
  18475. bottom: 0.045
  18476. }
  18477. },
  18478. },
  18479. [
  18480. {
  18481. name: "Normal",
  18482. height: math.unit(15, "feet")
  18483. },
  18484. {
  18485. name: "Casual Macro",
  18486. height: math.unit(120, "feet")
  18487. },
  18488. {
  18489. name: "Macro",
  18490. height: math.unit(2150, "feet"),
  18491. default: true
  18492. },
  18493. {
  18494. name: "Megamacro",
  18495. height: math.unit(8, "miles")
  18496. },
  18497. {
  18498. name: "Galaxy Mom",
  18499. height: math.unit(6, "megalightyears")
  18500. },
  18501. ]
  18502. ))
  18503. characterMakers.push(() => makeCharacter(
  18504. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18505. {
  18506. front: {
  18507. height: math.unit(6, "feet"),
  18508. weight: math.unit(170, "lb"),
  18509. name: "Front",
  18510. image: {
  18511. source: "./media/characters/kiro/front.svg",
  18512. extra: 1064 / 1012,
  18513. bottom: 0.052
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Micro",
  18520. height: math.unit(6, "inches")
  18521. },
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(6, "feet"),
  18525. default: true
  18526. },
  18527. {
  18528. name: "Macro",
  18529. height: math.unit(72, "feet")
  18530. },
  18531. ]
  18532. ))
  18533. characterMakers.push(() => makeCharacter(
  18534. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18535. {
  18536. front: {
  18537. height: math.unit(5 + 9 / 12, "feet"),
  18538. weight: math.unit(175, "lb"),
  18539. name: "Front",
  18540. image: {
  18541. source: "./media/characters/irishfox/front.svg",
  18542. extra: 1912 / 1680,
  18543. bottom: 0.02
  18544. }
  18545. },
  18546. },
  18547. [
  18548. {
  18549. name: "Nano",
  18550. height: math.unit(1, "mm")
  18551. },
  18552. {
  18553. name: "Micro",
  18554. height: math.unit(2, "inches")
  18555. },
  18556. {
  18557. name: "Normal",
  18558. height: math.unit(5 + 9 / 12, "feet"),
  18559. default: true
  18560. },
  18561. {
  18562. name: "Macro",
  18563. height: math.unit(45, "feet")
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(6 + 1 / 12, "feet"),
  18572. weight: math.unit(75, "lb"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/aronai-sieyes/front.svg",
  18576. extra: 1556 / 1480,
  18577. bottom: 0.015
  18578. }
  18579. },
  18580. side: {
  18581. height: math.unit(6 + 1 / 12, "feet"),
  18582. weight: math.unit(75, "lb"),
  18583. name: "Side",
  18584. image: {
  18585. source: "./media/characters/aronai-sieyes/side.svg",
  18586. extra: 1433 / 1390,
  18587. bottom: 0.0393
  18588. }
  18589. },
  18590. back: {
  18591. height: math.unit(6 + 1 / 12, "feet"),
  18592. weight: math.unit(75, "lb"),
  18593. name: "Back",
  18594. image: {
  18595. source: "./media/characters/aronai-sieyes/back.svg",
  18596. extra: 1544 / 1494,
  18597. bottom: 0.02
  18598. }
  18599. },
  18600. frontClothed: {
  18601. height: math.unit(6 + 1 / 12, "feet"),
  18602. weight: math.unit(75, "lb"),
  18603. name: "Front (Clothed)",
  18604. image: {
  18605. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18606. extra: 1582 / 1527
  18607. }
  18608. },
  18609. feral: {
  18610. height: math.unit(18, "feet"),
  18611. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18612. name: "Feral",
  18613. image: {
  18614. source: "./media/characters/aronai-sieyes/feral.svg",
  18615. extra: 1530 / 1240,
  18616. bottom: 0.035
  18617. }
  18618. },
  18619. },
  18620. [
  18621. {
  18622. name: "Micro",
  18623. height: math.unit(2, "inches")
  18624. },
  18625. {
  18626. name: "Normal",
  18627. height: math.unit(6 + 1 / 12, "feet"),
  18628. default: true
  18629. }
  18630. ]
  18631. ))
  18632. characterMakers.push(() => makeCharacter(
  18633. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18634. {
  18635. front: {
  18636. height: math.unit(12, "feet"),
  18637. weight: math.unit(410, "kg"),
  18638. name: "Front",
  18639. image: {
  18640. source: "./media/characters/xuna/front.svg",
  18641. extra: 2184 / 1980
  18642. }
  18643. },
  18644. side: {
  18645. height: math.unit(12, "feet"),
  18646. weight: math.unit(410, "kg"),
  18647. name: "Side",
  18648. image: {
  18649. source: "./media/characters/xuna/side.svg",
  18650. extra: 2184 / 1980
  18651. }
  18652. },
  18653. back: {
  18654. height: math.unit(12, "feet"),
  18655. weight: math.unit(410, "kg"),
  18656. name: "Back",
  18657. image: {
  18658. source: "./media/characters/xuna/back.svg",
  18659. extra: 2184 / 1980
  18660. }
  18661. },
  18662. },
  18663. [
  18664. {
  18665. name: "Nano glow",
  18666. height: math.unit(10, "nm")
  18667. },
  18668. {
  18669. name: "Micro floof",
  18670. height: math.unit(0.3, "m")
  18671. },
  18672. {
  18673. name: "Huggable softy boi",
  18674. height: math.unit(3.6576, "m"),
  18675. default: true
  18676. },
  18677. {
  18678. name: "Admirable floof",
  18679. height: math.unit(80, "meters")
  18680. },
  18681. {
  18682. name: "Gentle macro",
  18683. height: math.unit(300, "meters")
  18684. },
  18685. {
  18686. name: "Very careful floof",
  18687. height: math.unit(3200, "meters")
  18688. },
  18689. {
  18690. name: "The mega floof",
  18691. height: math.unit(36000, "meters")
  18692. },
  18693. {
  18694. name: "Giga-fur-Wicker",
  18695. height: math.unit(4800000, "meters")
  18696. },
  18697. {
  18698. name: "Licky world",
  18699. height: math.unit(20000000, "meters")
  18700. },
  18701. {
  18702. name: "Floofy cyan sun",
  18703. height: math.unit(1500000000, "meters")
  18704. },
  18705. {
  18706. name: "Milky Wicker",
  18707. height: math.unit(1000000000000000000000, "meters")
  18708. },
  18709. {
  18710. name: "The observing Wicker",
  18711. height: math.unit(999999999999999999999999999, "meters")
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18717. {
  18718. front: {
  18719. height: math.unit(5 + 9 / 12, "feet"),
  18720. weight: math.unit(150, "lb"),
  18721. name: "Front",
  18722. image: {
  18723. source: "./media/characters/arokha-sieyes/front.svg",
  18724. extra: 1425 / 1284,
  18725. bottom: 0.05
  18726. }
  18727. },
  18728. },
  18729. [
  18730. {
  18731. name: "Normal",
  18732. height: math.unit(5 + 9 / 12, "feet")
  18733. },
  18734. {
  18735. name: "Macro",
  18736. height: math.unit(30, "meters"),
  18737. default: true
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18743. {
  18744. front: {
  18745. height: math.unit(6, "feet"),
  18746. weight: math.unit(180, "lb"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/arokh-sieyes/front.svg",
  18750. extra: 1830 / 1769,
  18751. bottom: 0.01
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(6, "feet")
  18759. },
  18760. {
  18761. name: "Macro",
  18762. height: math.unit(30, "meters"),
  18763. default: true
  18764. },
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18769. {
  18770. side: {
  18771. height: math.unit(13 + 1 / 12, "feet"),
  18772. weight: math.unit(8.5, "tonnes"),
  18773. name: "Side",
  18774. image: {
  18775. source: "./media/characters/goldeneye/side.svg",
  18776. extra: 1182 / 778,
  18777. bottom: 0.067
  18778. }
  18779. },
  18780. paw: {
  18781. height: math.unit(3.4, "feet"),
  18782. name: "Paw",
  18783. image: {
  18784. source: "./media/characters/goldeneye/paw.svg"
  18785. }
  18786. },
  18787. },
  18788. [
  18789. {
  18790. name: "Normal",
  18791. height: math.unit(13 + 1 / 12, "feet"),
  18792. default: true
  18793. },
  18794. ]
  18795. ))
  18796. characterMakers.push(() => makeCharacter(
  18797. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18798. {
  18799. front: {
  18800. height: math.unit(6 + 1 / 12, "feet"),
  18801. weight: math.unit(210, "lb"),
  18802. name: "Front",
  18803. image: {
  18804. source: "./media/characters/leonardo-lycheborne/front.svg",
  18805. extra: 390 / 365,
  18806. bottom: 0.032
  18807. }
  18808. },
  18809. side: {
  18810. height: math.unit(6 + 1 / 12, "feet"),
  18811. weight: math.unit(210, "lb"),
  18812. name: "Side",
  18813. image: {
  18814. source: "./media/characters/leonardo-lycheborne/side.svg",
  18815. extra: 390 / 365,
  18816. bottom: 0.005
  18817. }
  18818. },
  18819. back: {
  18820. height: math.unit(6 + 1 / 12, "feet"),
  18821. weight: math.unit(210, "lb"),
  18822. name: "Back",
  18823. image: {
  18824. source: "./media/characters/leonardo-lycheborne/back.svg",
  18825. extra: 392 / 366,
  18826. bottom: 0.01
  18827. }
  18828. },
  18829. hand: {
  18830. height: math.unit(1.08, "feet"),
  18831. name: "Hand",
  18832. image: {
  18833. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18834. }
  18835. },
  18836. foot: {
  18837. height: math.unit(1.32, "feet"),
  18838. name: "Foot",
  18839. image: {
  18840. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18841. }
  18842. },
  18843. were: {
  18844. height: math.unit(20, "feet"),
  18845. weight: math.unit(7800, "lb"),
  18846. name: "Were",
  18847. image: {
  18848. source: "./media/characters/leonardo-lycheborne/were.svg",
  18849. extra: 308 / 294,
  18850. bottom: 0.048
  18851. }
  18852. },
  18853. feral: {
  18854. height: math.unit(7.5, "feet"),
  18855. weight: math.unit(600, "lb"),
  18856. name: "Feral",
  18857. image: {
  18858. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18859. extra: 210 / 186,
  18860. bottom: 0.108
  18861. }
  18862. },
  18863. taur: {
  18864. height: math.unit(11, "feet"),
  18865. weight: math.unit(3300, "lb"),
  18866. name: "Taur",
  18867. image: {
  18868. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18869. extra: 320 / 303,
  18870. bottom: 0.025
  18871. }
  18872. },
  18873. barghest: {
  18874. height: math.unit(11, "feet"),
  18875. weight: math.unit(1300, "lb"),
  18876. name: "Barghest",
  18877. image: {
  18878. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18879. extra: 323 / 302,
  18880. bottom: 0.027
  18881. }
  18882. },
  18883. dick: {
  18884. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18885. name: "Dick",
  18886. image: {
  18887. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18888. }
  18889. },
  18890. dickWere: {
  18891. height: math.unit((20) / 3.8, "feet"),
  18892. name: "Dick (Were)",
  18893. image: {
  18894. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(6 + 1 / 12, "feet"),
  18902. default: true
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(10, "feet"),
  18911. weight: math.unit(350, "lb"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/jet/front.svg",
  18915. extra: 2050 / 1980,
  18916. bottom: 0.013
  18917. }
  18918. },
  18919. back: {
  18920. height: math.unit(10, "feet"),
  18921. weight: math.unit(350, "lb"),
  18922. name: "Back",
  18923. image: {
  18924. source: "./media/characters/jet/back.svg",
  18925. extra: 2050 / 1980,
  18926. bottom: 0.013
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Micro",
  18933. height: math.unit(6, "inches")
  18934. },
  18935. {
  18936. name: "Normal",
  18937. height: math.unit(10, "feet"),
  18938. default: true
  18939. },
  18940. {
  18941. name: "Macro",
  18942. height: math.unit(100, "feet")
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(15, "feet"),
  18951. weight: math.unit(2800, "lb"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/tanarath/front.svg",
  18955. extra: 2392 / 2220,
  18956. bottom: 0.03
  18957. }
  18958. },
  18959. back: {
  18960. height: math.unit(15, "feet"),
  18961. weight: math.unit(2800, "lb"),
  18962. name: "Back",
  18963. image: {
  18964. source: "./media/characters/tanarath/back.svg",
  18965. extra: 2392 / 2220,
  18966. bottom: 0.03
  18967. }
  18968. },
  18969. },
  18970. [
  18971. {
  18972. name: "Normal",
  18973. height: math.unit(15, "feet"),
  18974. default: true
  18975. },
  18976. ]
  18977. ))
  18978. characterMakers.push(() => makeCharacter(
  18979. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18980. {
  18981. front: {
  18982. height: math.unit(7 + 1 / 12, "feet"),
  18983. weight: math.unit(175, "lb"),
  18984. name: "Front",
  18985. image: {
  18986. source: "./media/characters/patty-cattybatty/front.svg",
  18987. extra: 908 / 874,
  18988. bottom: 0.025
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Micro",
  18995. height: math.unit(1, "inch")
  18996. },
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(7 + 1 / 12, "feet")
  19000. },
  19001. {
  19002. name: "Mini Macro",
  19003. height: math.unit(155, "feet")
  19004. },
  19005. {
  19006. name: "Macro",
  19007. height: math.unit(1077, "feet")
  19008. },
  19009. {
  19010. name: "Mega Macro",
  19011. height: math.unit(47650, "feet"),
  19012. default: true
  19013. },
  19014. {
  19015. name: "Giga Macro",
  19016. height: math.unit(440, "miles")
  19017. },
  19018. {
  19019. name: "Tera Macro",
  19020. height: math.unit(8700, "miles")
  19021. },
  19022. {
  19023. name: "Planetary Macro",
  19024. height: math.unit(32700, "miles")
  19025. },
  19026. {
  19027. name: "Solar Macro",
  19028. height: math.unit(550000, "miles")
  19029. },
  19030. {
  19031. name: "Celestial Macro",
  19032. height: math.unit(2.5, "AU")
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19038. {
  19039. front: {
  19040. height: math.unit(4 + 5 / 12, "feet"),
  19041. weight: math.unit(90, "lb"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/cappu/front.svg",
  19045. extra: 1247 / 1152,
  19046. bottom: 0.012
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(4 + 5 / 12, "feet"),
  19054. default: true
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19060. {
  19061. frontDressed: {
  19062. height: math.unit(70, "cm"),
  19063. weight: math.unit(6, "kg"),
  19064. name: "Front (Dressed)",
  19065. image: {
  19066. source: "./media/characters/sebi/front-dressed.svg",
  19067. extra: 713.5 / 686.5,
  19068. bottom: 0.003
  19069. }
  19070. },
  19071. front: {
  19072. height: math.unit(70, "cm"),
  19073. weight: math.unit(5, "kg"),
  19074. name: "Front",
  19075. image: {
  19076. source: "./media/characters/sebi/front.svg",
  19077. extra: 713.5 / 686.5,
  19078. bottom: 0.003
  19079. }
  19080. }
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(70, "cm"),
  19086. default: true
  19087. },
  19088. {
  19089. name: "Macro",
  19090. height: math.unit(8, "meters")
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(6, "feet"),
  19099. weight: math.unit(150, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/typhek/front.svg",
  19103. extra: 1948 / 1929,
  19104. bottom: 0.025
  19105. }
  19106. },
  19107. side: {
  19108. height: math.unit(6, "feet"),
  19109. weight: math.unit(150, "lb"),
  19110. name: "Side",
  19111. image: {
  19112. source: "./media/characters/typhek/side.svg",
  19113. extra: 2034 / 2010,
  19114. bottom: 0.003
  19115. }
  19116. },
  19117. back: {
  19118. height: math.unit(6, "feet"),
  19119. weight: math.unit(150, "lb"),
  19120. name: "Back",
  19121. image: {
  19122. source: "./media/characters/typhek/back.svg",
  19123. extra: 2005 / 1978,
  19124. bottom: 0.004
  19125. }
  19126. },
  19127. palm: {
  19128. height: math.unit(1.2, "feet"),
  19129. name: "Palm",
  19130. image: {
  19131. source: "./media/characters/typhek/palm.svg"
  19132. }
  19133. },
  19134. fist: {
  19135. height: math.unit(1.1, "feet"),
  19136. name: "Fist",
  19137. image: {
  19138. source: "./media/characters/typhek/fist.svg"
  19139. }
  19140. },
  19141. foot: {
  19142. height: math.unit(1.57, "feet"),
  19143. name: "Foot",
  19144. image: {
  19145. source: "./media/characters/typhek/foot.svg"
  19146. }
  19147. },
  19148. sole: {
  19149. height: math.unit(2.05, "feet"),
  19150. name: "Sole",
  19151. image: {
  19152. source: "./media/characters/typhek/sole.svg"
  19153. }
  19154. },
  19155. },
  19156. [
  19157. {
  19158. name: "Macro",
  19159. height: math.unit(40, "stories"),
  19160. default: true
  19161. },
  19162. {
  19163. name: "Megamacro",
  19164. height: math.unit(1, "mile")
  19165. },
  19166. {
  19167. name: "Gigamacro",
  19168. height: math.unit(4000, "solarradii")
  19169. },
  19170. {
  19171. name: "Universal",
  19172. height: math.unit(1.1, "universes")
  19173. }
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19178. {
  19179. side: {
  19180. height: math.unit(5 + 7 / 12, "feet"),
  19181. weight: math.unit(150, "lb"),
  19182. name: "Side",
  19183. image: {
  19184. source: "./media/characters/kassy/side.svg",
  19185. extra: 1280 / 1225,
  19186. bottom: 0.002
  19187. }
  19188. },
  19189. front: {
  19190. height: math.unit(5 + 7 / 12, "feet"),
  19191. weight: math.unit(150, "lb"),
  19192. name: "Front",
  19193. image: {
  19194. source: "./media/characters/kassy/front.svg",
  19195. extra: 1280 / 1225,
  19196. bottom: 0.025
  19197. }
  19198. },
  19199. back: {
  19200. height: math.unit(5 + 7 / 12, "feet"),
  19201. weight: math.unit(150, "lb"),
  19202. name: "Back",
  19203. image: {
  19204. source: "./media/characters/kassy/back.svg",
  19205. extra: 1280 / 1225,
  19206. bottom: 0.002
  19207. }
  19208. },
  19209. foot: {
  19210. height: math.unit(1.266, "feet"),
  19211. name: "Foot",
  19212. image: {
  19213. source: "./media/characters/kassy/foot.svg"
  19214. }
  19215. },
  19216. },
  19217. [
  19218. {
  19219. name: "Normal",
  19220. height: math.unit(5 + 7 / 12, "feet")
  19221. },
  19222. {
  19223. name: "Macro",
  19224. height: math.unit(137, "feet"),
  19225. default: true
  19226. },
  19227. {
  19228. name: "Megamacro",
  19229. height: math.unit(1, "mile")
  19230. },
  19231. ]
  19232. ))
  19233. characterMakers.push(() => makeCharacter(
  19234. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19235. {
  19236. front: {
  19237. height: math.unit(6 + 1 / 12, "feet"),
  19238. weight: math.unit(200, "lb"),
  19239. name: "Front",
  19240. image: {
  19241. source: "./media/characters/neil/front.svg",
  19242. extra: 1326 / 1250,
  19243. bottom: 0.023
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(6 + 1 / 12, "feet"),
  19251. default: true
  19252. },
  19253. {
  19254. name: "Macro",
  19255. height: math.unit(200, "feet")
  19256. },
  19257. ]
  19258. ))
  19259. characterMakers.push(() => makeCharacter(
  19260. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19261. {
  19262. front: {
  19263. height: math.unit(5 + 9 / 12, "feet"),
  19264. weight: math.unit(190, "lb"),
  19265. name: "Front",
  19266. image: {
  19267. source: "./media/characters/atticus/front.svg",
  19268. extra: 2934 / 2785,
  19269. bottom: 0.025
  19270. }
  19271. },
  19272. },
  19273. [
  19274. {
  19275. name: "Normal",
  19276. height: math.unit(5 + 9 / 12, "feet"),
  19277. default: true
  19278. },
  19279. {
  19280. name: "Macro",
  19281. height: math.unit(180, "feet")
  19282. },
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19287. {
  19288. side: {
  19289. height: math.unit(9, "feet"),
  19290. weight: math.unit(650, "lb"),
  19291. name: "Side",
  19292. image: {
  19293. source: "./media/characters/milo/side.svg",
  19294. extra: 2644 / 2310,
  19295. bottom: 0.032
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(9, "feet"),
  19303. default: true
  19304. },
  19305. {
  19306. name: "Macro",
  19307. height: math.unit(300, "feet")
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19313. {
  19314. side: {
  19315. height: math.unit(8, "meters"),
  19316. weight: math.unit(90000, "kg"),
  19317. name: "Side",
  19318. image: {
  19319. source: "./media/characters/ijzer/side.svg",
  19320. extra: 2756 / 1600,
  19321. bottom: 0.01
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Small",
  19328. height: math.unit(3, "meters")
  19329. },
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(8, "meters"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Normal+",
  19337. height: math.unit(10, "meters")
  19338. },
  19339. {
  19340. name: "Bigger",
  19341. height: math.unit(24, "meters")
  19342. },
  19343. {
  19344. name: "Huge",
  19345. height: math.unit(80, "meters")
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19351. {
  19352. front: {
  19353. height: math.unit(6 + 2 / 12, "feet"),
  19354. weight: math.unit(153, "lb"),
  19355. name: "Front",
  19356. image: {
  19357. source: "./media/characters/luca-cervicum/front.svg",
  19358. extra: 370 / 327,
  19359. bottom: 0.015
  19360. }
  19361. },
  19362. back: {
  19363. height: math.unit(6 + 2 / 12, "feet"),
  19364. weight: math.unit(153, "lb"),
  19365. name: "Back",
  19366. image: {
  19367. source: "./media/characters/luca-cervicum/back.svg",
  19368. extra: 367 / 333,
  19369. bottom: 0.005
  19370. }
  19371. },
  19372. frontGear: {
  19373. height: math.unit(6 + 2 / 12, "feet"),
  19374. weight: math.unit(173, "lb"),
  19375. name: "Front (Gear)",
  19376. image: {
  19377. source: "./media/characters/luca-cervicum/front-gear.svg",
  19378. extra: 377 / 333,
  19379. bottom: 0.006
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(6 + 2 / 12, "feet"),
  19387. default: true
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19393. {
  19394. front: {
  19395. height: math.unit(6 + 1 / 12, "feet"),
  19396. weight: math.unit(304, "lb"),
  19397. name: "Front",
  19398. image: {
  19399. source: "./media/characters/oliver/front.svg",
  19400. extra: 157 / 143,
  19401. bottom: 0.08
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(6 + 1 / 12, "feet"),
  19409. default: true
  19410. },
  19411. ]
  19412. ))
  19413. characterMakers.push(() => makeCharacter(
  19414. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19415. {
  19416. front: {
  19417. height: math.unit(5 + 7 / 12, "feet"),
  19418. weight: math.unit(140, "lb"),
  19419. name: "Front",
  19420. image: {
  19421. source: "./media/characters/shane/front.svg",
  19422. extra: 304 / 289,
  19423. bottom: 0.005
  19424. }
  19425. },
  19426. },
  19427. [
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(5 + 7 / 12, "feet"),
  19431. default: true
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(5 + 9 / 12, "feet"),
  19440. weight: math.unit(178, "lb"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/shin/front.svg",
  19444. extra: 159 / 151,
  19445. bottom: 0.015
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Normal",
  19452. height: math.unit(5 + 9 / 12, "feet"),
  19453. default: true
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19459. {
  19460. front: {
  19461. height: math.unit(5 + 10 / 12, "feet"),
  19462. weight: math.unit(168, "lb"),
  19463. name: "Front",
  19464. image: {
  19465. source: "./media/characters/xerxes/front.svg",
  19466. extra: 282 / 260,
  19467. bottom: 0.045
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Normal",
  19474. height: math.unit(5 + 10 / 12, "feet"),
  19475. default: true
  19476. },
  19477. ]
  19478. ))
  19479. characterMakers.push(() => makeCharacter(
  19480. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19481. {
  19482. front: {
  19483. height: math.unit(6 + 7 / 12, "feet"),
  19484. weight: math.unit(208, "lb"),
  19485. name: "Front",
  19486. image: {
  19487. source: "./media/characters/chaska/front.svg",
  19488. extra: 332 / 319,
  19489. bottom: 0.015
  19490. }
  19491. },
  19492. },
  19493. [
  19494. {
  19495. name: "Normal",
  19496. height: math.unit(6 + 7 / 12, "feet"),
  19497. default: true
  19498. },
  19499. ]
  19500. ))
  19501. characterMakers.push(() => makeCharacter(
  19502. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19503. {
  19504. front: {
  19505. height: math.unit(5 + 8 / 12, "feet"),
  19506. weight: math.unit(208, "lb"),
  19507. name: "Front",
  19508. image: {
  19509. source: "./media/characters/enuk/front.svg",
  19510. extra: 437 / 406,
  19511. bottom: 0.02
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(5 + 8 / 12, "feet"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19525. {
  19526. front: {
  19527. height: math.unit(5 + 10 / 12, "feet"),
  19528. weight: math.unit(252, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/bruun/front.svg",
  19532. extra: 197 / 187,
  19533. bottom: 0.012
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(5 + 10 / 12, "feet"),
  19541. default: true
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19547. {
  19548. front: {
  19549. height: math.unit(6 + 10 / 12, "feet"),
  19550. weight: math.unit(255, "lb"),
  19551. name: "Front",
  19552. image: {
  19553. source: "./media/characters/alexeev/front.svg",
  19554. extra: 213 / 200,
  19555. bottom: 0.05
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Normal",
  19562. height: math.unit(6 + 10 / 12, "feet"),
  19563. default: true
  19564. },
  19565. ]
  19566. ))
  19567. characterMakers.push(() => makeCharacter(
  19568. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19569. {
  19570. front: {
  19571. height: math.unit(2 + 8 / 12, "feet"),
  19572. weight: math.unit(22, "lb"),
  19573. name: "Front",
  19574. image: {
  19575. source: "./media/characters/evelyn/front.svg",
  19576. extra: 208 / 180
  19577. }
  19578. },
  19579. },
  19580. [
  19581. {
  19582. name: "Normal",
  19583. height: math.unit(2 + 8 / 12, "feet"),
  19584. default: true
  19585. },
  19586. ]
  19587. ))
  19588. characterMakers.push(() => makeCharacter(
  19589. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19590. {
  19591. front: {
  19592. height: math.unit(5 + 9 / 12, "feet"),
  19593. weight: math.unit(139, "lb"),
  19594. name: "Front",
  19595. image: {
  19596. source: "./media/characters/inca/front.svg",
  19597. extra: 294 / 291,
  19598. bottom: 0.03
  19599. }
  19600. },
  19601. },
  19602. [
  19603. {
  19604. name: "Normal",
  19605. height: math.unit(5 + 9 / 12, "feet"),
  19606. default: true
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19612. {
  19613. front: {
  19614. height: math.unit(5 + 1 / 12, "feet"),
  19615. weight: math.unit(84, "lb"),
  19616. name: "Front",
  19617. image: {
  19618. source: "./media/characters/magdalene/front.svg",
  19619. extra: 293 / 273
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Normal",
  19626. height: math.unit(5 + 1 / 12, "feet"),
  19627. default: true
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19633. {
  19634. front: {
  19635. height: math.unit(6 + 3 / 12, "feet"),
  19636. weight: math.unit(185, "lb"),
  19637. name: "Front",
  19638. image: {
  19639. source: "./media/characters/mera/front.svg",
  19640. extra: 291 / 277,
  19641. bottom: 0.03
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(6 + 3 / 12, "feet"),
  19649. default: true
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19655. {
  19656. front: {
  19657. height: math.unit(6 + 7 / 12, "feet"),
  19658. weight: math.unit(160, "lb"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/ceres/front.svg",
  19662. extra: 1023 / 950,
  19663. bottom: 0.027
  19664. }
  19665. },
  19666. back: {
  19667. height: math.unit(6 + 7 / 12, "feet"),
  19668. weight: math.unit(160, "lb"),
  19669. name: "Back",
  19670. image: {
  19671. source: "./media/characters/ceres/back.svg",
  19672. extra: 1023 / 950
  19673. }
  19674. },
  19675. },
  19676. [
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(6 + 7 / 12, "feet"),
  19680. default: true
  19681. },
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19686. {
  19687. front: {
  19688. height: math.unit(5 + 10 / 12, "feet"),
  19689. weight: math.unit(150, "lb"),
  19690. name: "Front",
  19691. image: {
  19692. source: "./media/characters/kris/front.svg",
  19693. extra: 885 / 803,
  19694. bottom: 0.03
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(5 + 10 / 12, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(7, "feet"),
  19711. weight: math.unit(120, "kg"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/taluthus/front.svg",
  19715. extra: 903 / 833,
  19716. bottom: 0.015
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(7, "feet"),
  19724. default: true
  19725. },
  19726. {
  19727. name: "Macro",
  19728. height: math.unit(300, "feet")
  19729. },
  19730. ]
  19731. ))
  19732. characterMakers.push(() => makeCharacter(
  19733. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19734. {
  19735. front: {
  19736. height: math.unit(5 + 9 / 12, "feet"),
  19737. weight: math.unit(145, "lb"),
  19738. name: "Front",
  19739. image: {
  19740. source: "./media/characters/dawn/front.svg",
  19741. extra: 2094 / 2016,
  19742. bottom: 0.025
  19743. }
  19744. },
  19745. back: {
  19746. height: math.unit(5 + 9 / 12, "feet"),
  19747. weight: math.unit(160, "lb"),
  19748. name: "Back",
  19749. image: {
  19750. source: "./media/characters/dawn/back.svg",
  19751. extra: 2112 / 2080,
  19752. bottom: 0.005
  19753. }
  19754. },
  19755. },
  19756. [
  19757. {
  19758. name: "Normal",
  19759. height: math.unit(6 + 7 / 12, "feet"),
  19760. default: true
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19766. {
  19767. anthro: {
  19768. height: math.unit(8 + 3 / 12, "feet"),
  19769. weight: math.unit(450, "lb"),
  19770. name: "Anthro",
  19771. image: {
  19772. source: "./media/characters/arador/anthro.svg",
  19773. extra: 1835 / 1718,
  19774. bottom: 0.025
  19775. }
  19776. },
  19777. feral: {
  19778. height: math.unit(4, "feet"),
  19779. weight: math.unit(200, "lb"),
  19780. name: "Feral",
  19781. image: {
  19782. source: "./media/characters/arador/feral.svg",
  19783. extra: 1683 / 1514,
  19784. bottom: 0.07
  19785. }
  19786. },
  19787. },
  19788. [
  19789. {
  19790. name: "Normal",
  19791. height: math.unit(8 + 3 / 12, "feet")
  19792. },
  19793. {
  19794. name: "Macro",
  19795. height: math.unit(82.5, "feet"),
  19796. default: true
  19797. },
  19798. ]
  19799. ))
  19800. characterMakers.push(() => makeCharacter(
  19801. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19802. {
  19803. front: {
  19804. height: math.unit(5 + 10 / 12, "feet"),
  19805. weight: math.unit(125, "lb"),
  19806. name: "Front",
  19807. image: {
  19808. source: "./media/characters/dharsi/front.svg",
  19809. extra: 716 / 630,
  19810. bottom: 0.035
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Nano",
  19817. height: math.unit(100, "nm")
  19818. },
  19819. {
  19820. name: "Micro",
  19821. height: math.unit(2, "inches")
  19822. },
  19823. {
  19824. name: "Normal",
  19825. height: math.unit(5 + 10 / 12, "feet"),
  19826. default: true
  19827. },
  19828. {
  19829. name: "Macro",
  19830. height: math.unit(1000, "feet")
  19831. },
  19832. {
  19833. name: "Megamacro",
  19834. height: math.unit(10, "miles")
  19835. },
  19836. {
  19837. name: "Gigamacro",
  19838. height: math.unit(3000, "miles")
  19839. },
  19840. {
  19841. name: "Teramacro",
  19842. height: math.unit(500000, "miles")
  19843. },
  19844. {
  19845. name: "Teramacro+",
  19846. height: math.unit(30, "galaxies")
  19847. },
  19848. ]
  19849. ))
  19850. characterMakers.push(() => makeCharacter(
  19851. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19852. {
  19853. front: {
  19854. height: math.unit(6, "feet"),
  19855. weight: math.unit(150, "lb"),
  19856. name: "Front",
  19857. image: {
  19858. source: "./media/characters/deathy/front.svg",
  19859. extra: 1552 / 1463,
  19860. bottom: 0.025
  19861. }
  19862. },
  19863. side: {
  19864. height: math.unit(6, "feet"),
  19865. weight: math.unit(150, "lb"),
  19866. name: "Side",
  19867. image: {
  19868. source: "./media/characters/deathy/side.svg",
  19869. extra: 1604 / 1455,
  19870. bottom: 0.025
  19871. }
  19872. },
  19873. back: {
  19874. height: math.unit(6, "feet"),
  19875. weight: math.unit(150, "lb"),
  19876. name: "Back",
  19877. image: {
  19878. source: "./media/characters/deathy/back.svg",
  19879. extra: 1580 / 1463,
  19880. bottom: 0.005
  19881. }
  19882. },
  19883. },
  19884. [
  19885. {
  19886. name: "Micro",
  19887. height: math.unit(5, "millimeters")
  19888. },
  19889. {
  19890. name: "Normal",
  19891. height: math.unit(6 + 5 / 12, "feet"),
  19892. default: true
  19893. },
  19894. ]
  19895. ))
  19896. characterMakers.push(() => makeCharacter(
  19897. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19898. {
  19899. front: {
  19900. height: math.unit(16, "feet"),
  19901. weight: math.unit(4000, "lb"),
  19902. name: "Front",
  19903. image: {
  19904. source: "./media/characters/juniper/front.svg",
  19905. bottom: 0.04
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(16, "feet"),
  19913. default: true
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(6, "feet"),
  19922. weight: math.unit(150, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/hipster/front.svg",
  19926. extra: 1312 / 1209,
  19927. bottom: 0.025
  19928. }
  19929. },
  19930. back: {
  19931. height: math.unit(6, "feet"),
  19932. weight: math.unit(150, "lb"),
  19933. name: "Back",
  19934. image: {
  19935. source: "./media/characters/hipster/back.svg",
  19936. extra: 1281 / 1196,
  19937. bottom: 0.01
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Micro",
  19944. height: math.unit(1, "mm")
  19945. },
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(4, "inches"),
  19949. default: true
  19950. },
  19951. {
  19952. name: "Macro",
  19953. height: math.unit(500, "feet")
  19954. },
  19955. {
  19956. name: "Megamacro",
  19957. height: math.unit(1000, "miles")
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(6, "feet"),
  19966. weight: math.unit(150, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/tendirmuldr/front.svg",
  19970. extra: 1878 / 1772,
  19971. bottom: 0.015
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Megamacro",
  19978. height: math.unit(1500, "miles"),
  19979. default: true
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19985. {
  19986. front: {
  19987. height: math.unit(14, "feet"),
  19988. weight: math.unit(12000, "lb"),
  19989. name: "Front",
  19990. image: {
  19991. source: "./media/characters/mort/front.svg",
  19992. extra: 365 / 318,
  19993. bottom: 0.01
  19994. }
  19995. },
  19996. side: {
  19997. height: math.unit(14, "feet"),
  19998. weight: math.unit(12000, "lb"),
  19999. name: "Side",
  20000. image: {
  20001. source: "./media/characters/mort/side.svg",
  20002. extra: 365 / 318,
  20003. bottom: 0.052
  20004. },
  20005. default: true
  20006. },
  20007. back: {
  20008. height: math.unit(14, "feet"),
  20009. weight: math.unit(12000, "lb"),
  20010. name: "Back",
  20011. image: {
  20012. source: "./media/characters/mort/back.svg",
  20013. extra: 371 / 332,
  20014. bottom: 0.18
  20015. }
  20016. },
  20017. },
  20018. [
  20019. {
  20020. name: "Normal",
  20021. height: math.unit(14, "feet"),
  20022. default: true
  20023. },
  20024. ]
  20025. ))
  20026. characterMakers.push(() => makeCharacter(
  20027. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20028. {
  20029. front: {
  20030. height: math.unit(8, "feet"),
  20031. weight: math.unit(1, "ton"),
  20032. name: "Front",
  20033. image: {
  20034. source: "./media/characters/lycoa/front.svg",
  20035. extra: 1875 / 1789,
  20036. bottom: 0.022
  20037. }
  20038. },
  20039. back: {
  20040. height: math.unit(8, "feet"),
  20041. weight: math.unit(1, "ton"),
  20042. name: "Back",
  20043. image: {
  20044. source: "./media/characters/lycoa/back.svg",
  20045. extra: 1835 / 1781,
  20046. bottom: 0.03
  20047. }
  20048. },
  20049. head: {
  20050. height: math.unit(2.1, "feet"),
  20051. name: "Head",
  20052. image: {
  20053. source: "./media/characters/lycoa/head.svg"
  20054. }
  20055. },
  20056. tailmaw: {
  20057. height: math.unit(1.9, "feet"),
  20058. name: "Tailmaw",
  20059. image: {
  20060. source: "./media/characters/lycoa/tailmaw.svg"
  20061. }
  20062. },
  20063. tentacles: {
  20064. height: math.unit(2.1, "feet"),
  20065. name: "Tentacles",
  20066. image: {
  20067. source: "./media/characters/lycoa/tentacles.svg"
  20068. }
  20069. },
  20070. dick: {
  20071. height: math.unit(1.73, "feet"),
  20072. name: "Dick",
  20073. image: {
  20074. source: "./media/characters/lycoa/dick.svg"
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(8, "feet"),
  20082. default: true
  20083. },
  20084. {
  20085. name: "Macro",
  20086. height: math.unit(30, "feet")
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20092. {
  20093. front: {
  20094. height: math.unit(4 + 2 / 12, "feet"),
  20095. weight: math.unit(70, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/naldara/front.svg",
  20099. extra: 841 / 720,
  20100. bottom: 0.04
  20101. }
  20102. },
  20103. naga: {
  20104. height: math.unit(23, "feet"),
  20105. weight: math.unit(15000, "kg"),
  20106. name: "Naga",
  20107. image: {
  20108. source: "./media/characters/naldara/naga.svg",
  20109. extra: 3290 / 2959,
  20110. bottom: 124 / 3432
  20111. }
  20112. },
  20113. },
  20114. [
  20115. {
  20116. name: "Normal",
  20117. height: math.unit(4 + 2 / 12, "feet"),
  20118. default: true
  20119. },
  20120. ]
  20121. ))
  20122. characterMakers.push(() => makeCharacter(
  20123. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20124. {
  20125. front: {
  20126. height: math.unit(13 + 7 / 12, "feet"),
  20127. weight: math.unit(1500, "lb"),
  20128. name: "Front",
  20129. image: {
  20130. source: "./media/characters/briar/front.svg",
  20131. extra: 626 / 596,
  20132. bottom: 0.08
  20133. }
  20134. },
  20135. },
  20136. [
  20137. {
  20138. name: "Normal",
  20139. height: math.unit(13 + 7 / 12, "feet"),
  20140. default: true
  20141. },
  20142. ]
  20143. ))
  20144. characterMakers.push(() => makeCharacter(
  20145. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20146. {
  20147. side: {
  20148. height: math.unit(10, "feet"),
  20149. weight: math.unit(500, "lb"),
  20150. name: "Side",
  20151. image: {
  20152. source: "./media/characters/vanguard/side.svg",
  20153. extra: 502 / 425,
  20154. bottom: 0.087
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Normal",
  20161. height: math.unit(10, "feet"),
  20162. default: true
  20163. },
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20168. {
  20169. front: {
  20170. height: math.unit(7.5, "feet"),
  20171. weight: math.unit(2, "lb"),
  20172. name: "Front",
  20173. image: {
  20174. source: "./media/characters/artemis/front.svg",
  20175. extra: 1192 / 1075,
  20176. bottom: 0.07
  20177. }
  20178. },
  20179. frontNsfw: {
  20180. height: math.unit(7.5, "feet"),
  20181. weight: math.unit(2, "lb"),
  20182. name: "Front (NSFW)",
  20183. image: {
  20184. source: "./media/characters/artemis/front-nsfw.svg",
  20185. extra: 1192 / 1075,
  20186. bottom: 0.07
  20187. }
  20188. },
  20189. frontNsfwer: {
  20190. height: math.unit(7.5, "feet"),
  20191. weight: math.unit(2, "lb"),
  20192. name: "Front (NSFW-er)",
  20193. image: {
  20194. source: "./media/characters/artemis/front-nsfwer.svg",
  20195. extra: 1192 / 1075,
  20196. bottom: 0.07
  20197. }
  20198. },
  20199. side: {
  20200. height: math.unit(7.5, "feet"),
  20201. weight: math.unit(2, "lb"),
  20202. name: "Side",
  20203. image: {
  20204. source: "./media/characters/artemis/side.svg",
  20205. extra: 1192 / 1075,
  20206. bottom: 0.07
  20207. }
  20208. },
  20209. sideNsfw: {
  20210. height: math.unit(7.5, "feet"),
  20211. weight: math.unit(2, "lb"),
  20212. name: "Side (NSFW)",
  20213. image: {
  20214. source: "./media/characters/artemis/side-nsfw.svg",
  20215. extra: 1192 / 1075,
  20216. bottom: 0.07
  20217. }
  20218. },
  20219. sideNsfwer: {
  20220. height: math.unit(7.5, "feet"),
  20221. weight: math.unit(2, "lb"),
  20222. name: "Side (NSFW-er)",
  20223. image: {
  20224. source: "./media/characters/artemis/side-nsfwer.svg",
  20225. extra: 1192 / 1075,
  20226. bottom: 0.07
  20227. }
  20228. },
  20229. maw: {
  20230. height: math.unit(1.1, "feet"),
  20231. name: "Maw",
  20232. image: {
  20233. source: "./media/characters/artemis/maw.svg"
  20234. }
  20235. },
  20236. stomach: {
  20237. height: math.unit(0.95, "feet"),
  20238. name: "Stomach",
  20239. image: {
  20240. source: "./media/characters/artemis/stomach.svg"
  20241. }
  20242. },
  20243. dickCanine: {
  20244. height: math.unit(1, "feet"),
  20245. name: "Dick (Canine)",
  20246. image: {
  20247. source: "./media/characters/artemis/dick-canine.svg"
  20248. }
  20249. },
  20250. dickEquine: {
  20251. height: math.unit(0.85, "feet"),
  20252. name: "Dick (Equine)",
  20253. image: {
  20254. source: "./media/characters/artemis/dick-equine.svg"
  20255. }
  20256. },
  20257. dickExotic: {
  20258. height: math.unit(0.85, "feet"),
  20259. name: "Dick (Exotic)",
  20260. image: {
  20261. source: "./media/characters/artemis/dick-exotic.svg"
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(7.5, "feet"),
  20269. default: true
  20270. },
  20271. {
  20272. name: "Enlarged",
  20273. height: math.unit(12, "feet")
  20274. },
  20275. ]
  20276. ))
  20277. characterMakers.push(() => makeCharacter(
  20278. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20279. {
  20280. front: {
  20281. height: math.unit(5 + 3 / 12, "feet"),
  20282. weight: math.unit(160, "lb"),
  20283. name: "Front",
  20284. image: {
  20285. source: "./media/characters/kira/front.svg",
  20286. extra: 906 / 786,
  20287. bottom: 0.01
  20288. }
  20289. },
  20290. back: {
  20291. height: math.unit(5 + 3 / 12, "feet"),
  20292. weight: math.unit(160, "lb"),
  20293. name: "Back",
  20294. image: {
  20295. source: "./media/characters/kira/back.svg",
  20296. extra: 882 / 757,
  20297. bottom: 0.005
  20298. }
  20299. },
  20300. frontDressed: {
  20301. height: math.unit(5 + 3 / 12, "feet"),
  20302. weight: math.unit(160, "lb"),
  20303. name: "Front (Dressed)",
  20304. image: {
  20305. source: "./media/characters/kira/front-dressed.svg",
  20306. extra: 906 / 786,
  20307. bottom: 0.01
  20308. }
  20309. },
  20310. beans: {
  20311. height: math.unit(0.92, "feet"),
  20312. name: "Beans",
  20313. image: {
  20314. source: "./media/characters/kira/beans.svg"
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(5 + 3 / 12, "feet"),
  20322. default: true
  20323. },
  20324. ]
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20328. {
  20329. front: {
  20330. height: math.unit(5 + 4 / 12, "feet"),
  20331. weight: math.unit(145, "lb"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/scramble/front.svg",
  20335. extra: 763 / 727,
  20336. bottom: 0.05
  20337. }
  20338. },
  20339. back: {
  20340. height: math.unit(5 + 4 / 12, "feet"),
  20341. weight: math.unit(145, "lb"),
  20342. name: "Back",
  20343. image: {
  20344. source: "./media/characters/scramble/back.svg",
  20345. extra: 826 / 737,
  20346. bottom: 0.002
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Normal",
  20353. height: math.unit(5 + 4 / 12, "feet"),
  20354. default: true
  20355. },
  20356. ]
  20357. ))
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20360. {
  20361. side: {
  20362. height: math.unit(6 + 2 / 12, "feet"),
  20363. weight: math.unit(190, "lb"),
  20364. name: "Side",
  20365. image: {
  20366. source: "./media/characters/biscuit/side.svg",
  20367. extra: 858 / 791,
  20368. bottom: 0.044
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(6 + 2 / 12, "feet"),
  20376. default: true
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20382. {
  20383. front: {
  20384. height: math.unit(5 + 2 / 12, "feet"),
  20385. weight: math.unit(120, "lb"),
  20386. name: "Front",
  20387. image: {
  20388. source: "./media/characters/poffin/front.svg",
  20389. extra: 786 / 680,
  20390. bottom: 0.005
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(5 + 2 / 12, "feet"),
  20398. default: true
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20404. {
  20405. front: {
  20406. height: math.unit(6 + 3 / 12, "feet"),
  20407. weight: math.unit(519, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/dhari/front.svg",
  20411. extra: 1048 / 946,
  20412. bottom: 0.015
  20413. }
  20414. },
  20415. back: {
  20416. height: math.unit(6 + 3 / 12, "feet"),
  20417. weight: math.unit(519, "lb"),
  20418. name: "Back",
  20419. image: {
  20420. source: "./media/characters/dhari/back.svg",
  20421. extra: 1048 / 931,
  20422. bottom: 0.005
  20423. }
  20424. },
  20425. frontDressed: {
  20426. height: math.unit(6 + 3 / 12, "feet"),
  20427. weight: math.unit(519, "lb"),
  20428. name: "Front (Dressed)",
  20429. image: {
  20430. source: "./media/characters/dhari/front-dressed.svg",
  20431. extra: 1713 / 1546,
  20432. bottom: 0.02
  20433. }
  20434. },
  20435. backDressed: {
  20436. height: math.unit(6 + 3 / 12, "feet"),
  20437. weight: math.unit(519, "lb"),
  20438. name: "Back (Dressed)",
  20439. image: {
  20440. source: "./media/characters/dhari/back-dressed.svg",
  20441. extra: 1699 / 1537,
  20442. bottom: 0.01
  20443. }
  20444. },
  20445. maw: {
  20446. height: math.unit(0.95, "feet"),
  20447. name: "Maw",
  20448. image: {
  20449. source: "./media/characters/dhari/maw.svg"
  20450. }
  20451. },
  20452. wereFront: {
  20453. height: math.unit(12 + 8 / 12, "feet"),
  20454. weight: math.unit(4000, "lb"),
  20455. name: "Front (Were)",
  20456. image: {
  20457. source: "./media/characters/dhari/were-front.svg",
  20458. extra: 1065 / 969,
  20459. bottom: 0.015
  20460. }
  20461. },
  20462. wereBack: {
  20463. height: math.unit(12 + 8 / 12, "feet"),
  20464. weight: math.unit(4000, "lb"),
  20465. name: "Back (Were)",
  20466. image: {
  20467. source: "./media/characters/dhari/were-back.svg",
  20468. extra: 1065 / 969,
  20469. bottom: 0.012
  20470. }
  20471. },
  20472. wereMaw: {
  20473. height: math.unit(0.625, "meters"),
  20474. name: "Maw (Were)",
  20475. image: {
  20476. source: "./media/characters/dhari/were-maw.svg"
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(6 + 3 / 12, "feet"),
  20484. default: true
  20485. },
  20486. ]
  20487. ))
  20488. characterMakers.push(() => makeCharacter(
  20489. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20490. {
  20491. anthro: {
  20492. height: math.unit(5 + 7 / 12, "feet"),
  20493. weight: math.unit(175, "lb"),
  20494. name: "Anthro",
  20495. image: {
  20496. source: "./media/characters/rena-dyne/anthro.svg",
  20497. extra: 1849 / 1785,
  20498. bottom: 0.005
  20499. }
  20500. },
  20501. taur: {
  20502. height: math.unit(15 + 6 / 12, "feet"),
  20503. weight: math.unit(8000, "lb"),
  20504. name: "Taur",
  20505. image: {
  20506. source: "./media/characters/rena-dyne/taur.svg",
  20507. extra: 2315 / 2234,
  20508. bottom: 0.033
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(5 + 7 / 12, "feet"),
  20516. default: true
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20522. {
  20523. front: {
  20524. height: math.unit(8, "feet"),
  20525. weight: math.unit(600, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/weremeep/front.svg",
  20529. extra: 967 / 862,
  20530. bottom: 0.01
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Normal",
  20537. height: math.unit(8, "feet"),
  20538. default: true
  20539. },
  20540. {
  20541. name: "Lorg",
  20542. height: math.unit(12, "feet")
  20543. },
  20544. {
  20545. name: "Oh Lawd She Comin'",
  20546. height: math.unit(20, "feet")
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20552. {
  20553. front: {
  20554. height: math.unit(4, "feet"),
  20555. weight: math.unit(90, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/reza/front.svg",
  20559. extra: 1183 / 1111,
  20560. bottom: 0.017
  20561. }
  20562. },
  20563. back: {
  20564. height: math.unit(4, "feet"),
  20565. weight: math.unit(90, "lb"),
  20566. name: "Back",
  20567. image: {
  20568. source: "./media/characters/reza/back.svg",
  20569. extra: 1183 / 1111,
  20570. bottom: 0.01
  20571. }
  20572. },
  20573. drake: {
  20574. height: math.unit(30, "feet"),
  20575. weight: math.unit(246960, "lb"),
  20576. name: "Drake",
  20577. image: {
  20578. source: "./media/characters/reza/drake.svg",
  20579. extra: 2350 / 2024,
  20580. bottom: 60.7 / 2403
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(4, "feet"),
  20588. default: true
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20594. {
  20595. side: {
  20596. height: math.unit(15, "feet"),
  20597. weight: math.unit(14, "tons"),
  20598. name: "Side",
  20599. image: {
  20600. source: "./media/characters/athea/side.svg",
  20601. extra: 960 / 540,
  20602. bottom: 0.003
  20603. }
  20604. },
  20605. sitting: {
  20606. height: math.unit(6 * 2.85, "feet"),
  20607. weight: math.unit(14, "tons"),
  20608. name: "Sitting",
  20609. image: {
  20610. source: "./media/characters/athea/sitting.svg",
  20611. extra: 621 / 581,
  20612. bottom: 0.075
  20613. }
  20614. },
  20615. maw: {
  20616. height: math.unit(7.59498031496063, "feet"),
  20617. name: "Maw",
  20618. image: {
  20619. source: "./media/characters/athea/maw.svg"
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Lap Cat",
  20626. height: math.unit(2.5, "feet")
  20627. },
  20628. {
  20629. name: "Minimacro",
  20630. height: math.unit(15, "feet"),
  20631. default: true
  20632. },
  20633. {
  20634. name: "Macro",
  20635. height: math.unit(120, "feet")
  20636. },
  20637. {
  20638. name: "Macro+",
  20639. height: math.unit(640, "feet")
  20640. },
  20641. {
  20642. name: "Colossus",
  20643. height: math.unit(2.2, "miles")
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20649. {
  20650. front: {
  20651. height: math.unit(8 + 8 / 12, "feet"),
  20652. weight: math.unit(130, "kg"),
  20653. name: "Front",
  20654. image: {
  20655. source: "./media/characters/seroko/front.svg",
  20656. extra: 1385 / 1280,
  20657. bottom: 0.025
  20658. }
  20659. },
  20660. back: {
  20661. height: math.unit(8 + 8 / 12, "feet"),
  20662. weight: math.unit(130, "kg"),
  20663. name: "Back",
  20664. image: {
  20665. source: "./media/characters/seroko/back.svg",
  20666. extra: 1369 / 1238,
  20667. bottom: 0.018
  20668. }
  20669. },
  20670. frontDressed: {
  20671. height: math.unit(8 + 8 / 12, "feet"),
  20672. weight: math.unit(130, "kg"),
  20673. name: "Front (Dressed)",
  20674. image: {
  20675. source: "./media/characters/seroko/front-dressed.svg",
  20676. extra: 1366 / 1275,
  20677. bottom: 0.03
  20678. }
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Normal",
  20684. height: math.unit(8 + 8 / 12, "feet"),
  20685. default: true
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(5.5, "feet"),
  20694. weight: math.unit(160, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/quatzi/front.svg",
  20698. extra: 2346 / 2242,
  20699. bottom: 0.015
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(5.5, "feet"),
  20707. default: true
  20708. },
  20709. {
  20710. name: "Big",
  20711. height: math.unit(7.7, "feet")
  20712. },
  20713. ]
  20714. ))
  20715. characterMakers.push(() => makeCharacter(
  20716. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20717. {
  20718. front: {
  20719. height: math.unit(5 + 11 / 12, "feet"),
  20720. weight: math.unit(180, "lb"),
  20721. name: "Front",
  20722. image: {
  20723. source: "./media/characters/sen/front.svg",
  20724. extra: 1321 / 1254,
  20725. bottom: 0.015
  20726. }
  20727. },
  20728. side: {
  20729. height: math.unit(5 + 11 / 12, "feet"),
  20730. weight: math.unit(180, "lb"),
  20731. name: "Side",
  20732. image: {
  20733. source: "./media/characters/sen/side.svg",
  20734. extra: 1321 / 1254,
  20735. bottom: 0.007
  20736. }
  20737. },
  20738. back: {
  20739. height: math.unit(5 + 11 / 12, "feet"),
  20740. weight: math.unit(180, "lb"),
  20741. name: "Back",
  20742. image: {
  20743. source: "./media/characters/sen/back.svg",
  20744. extra: 1321 / 1254
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(5 + 11 / 12, "feet"),
  20752. default: true
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(166.6, "cm"),
  20761. weight: math.unit(66.6, "kg"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/fruity/front.svg",
  20765. extra: 1510 / 1386,
  20766. bottom: 0.04
  20767. }
  20768. },
  20769. back: {
  20770. height: math.unit(166.6, "cm"),
  20771. weight: math.unit(66.6, "lb"),
  20772. name: "Back",
  20773. image: {
  20774. source: "./media/characters/fruity/back.svg",
  20775. extra: 1563 / 1435,
  20776. bottom: 0.005
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Normal",
  20783. height: math.unit(166.6, "cm"),
  20784. default: true
  20785. },
  20786. {
  20787. name: "Demonic",
  20788. height: math.unit(166.6, "feet")
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20794. {
  20795. side: {
  20796. height: math.unit(10, "feet"),
  20797. weight: math.unit(500, "lb"),
  20798. name: "Side",
  20799. image: {
  20800. source: "./media/characters/zost/side.svg",
  20801. extra: 966 / 880,
  20802. bottom: 0.075
  20803. }
  20804. },
  20805. mawFront: {
  20806. height: math.unit(1.08, "meters"),
  20807. name: "Maw (Front)",
  20808. image: {
  20809. source: "./media/characters/zost/maw-front.svg"
  20810. }
  20811. },
  20812. mawSide: {
  20813. height: math.unit(2.66, "feet"),
  20814. name: "Maw (Side)",
  20815. image: {
  20816. source: "./media/characters/zost/maw-side.svg"
  20817. }
  20818. },
  20819. },
  20820. [
  20821. {
  20822. name: "Normal",
  20823. height: math.unit(10, "feet"),
  20824. default: true
  20825. },
  20826. ]
  20827. ))
  20828. characterMakers.push(() => makeCharacter(
  20829. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20830. {
  20831. front: {
  20832. height: math.unit(5 + 4 / 12, "feet"),
  20833. weight: math.unit(120, "lb"),
  20834. name: "Front",
  20835. image: {
  20836. source: "./media/characters/luci/front.svg",
  20837. extra: 1985 / 1884,
  20838. bottom: 0.04
  20839. }
  20840. },
  20841. back: {
  20842. height: math.unit(5 + 4 / 12, "feet"),
  20843. weight: math.unit(120, "lb"),
  20844. name: "Back",
  20845. image: {
  20846. source: "./media/characters/luci/back.svg",
  20847. extra: 1892 / 1791,
  20848. bottom: 0.002
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(5 + 4 / 12, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20862. {
  20863. front: {
  20864. height: math.unit(1500, "feet"),
  20865. weight: math.unit(3.8e6, "tons"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/2th/front.svg",
  20869. extra: 3489 / 3350,
  20870. bottom: 0.1
  20871. }
  20872. },
  20873. foot: {
  20874. height: math.unit(461, "feet"),
  20875. name: "Foot",
  20876. image: {
  20877. source: "./media/characters/2th/foot.svg"
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "\"Micro\"",
  20884. height: math.unit(15 + 7 / 12, "feet")
  20885. },
  20886. {
  20887. name: "Normal",
  20888. height: math.unit(1500, "feet"),
  20889. default: true
  20890. },
  20891. {
  20892. name: "Macro",
  20893. height: math.unit(5000, "feet")
  20894. },
  20895. {
  20896. name: "Megamacro",
  20897. height: math.unit(15, "miles")
  20898. },
  20899. {
  20900. name: "Gigamacro",
  20901. height: math.unit(4000, "miles")
  20902. },
  20903. {
  20904. name: "Galactic",
  20905. height: math.unit(50, "AU")
  20906. },
  20907. ]
  20908. ))
  20909. characterMakers.push(() => makeCharacter(
  20910. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20911. {
  20912. front: {
  20913. height: math.unit(5 + 6 / 12, "feet"),
  20914. weight: math.unit(220, "lb"),
  20915. name: "Front",
  20916. image: {
  20917. source: "./media/characters/amethyst/front.svg",
  20918. extra: 2078 / 2040,
  20919. bottom: 0.045
  20920. }
  20921. },
  20922. back: {
  20923. height: math.unit(5 + 6 / 12, "feet"),
  20924. weight: math.unit(220, "lb"),
  20925. name: "Back",
  20926. image: {
  20927. source: "./media/characters/amethyst/back.svg",
  20928. extra: 2021 / 1989,
  20929. bottom: 0.02
  20930. }
  20931. },
  20932. },
  20933. [
  20934. {
  20935. name: "Normal",
  20936. height: math.unit(5 + 6 / 12, "feet"),
  20937. default: true
  20938. },
  20939. ]
  20940. ))
  20941. characterMakers.push(() => makeCharacter(
  20942. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20943. {
  20944. front: {
  20945. height: math.unit(4 + 11 / 12, "feet"),
  20946. weight: math.unit(120, "lb"),
  20947. name: "Front",
  20948. image: {
  20949. source: "./media/characters/yumi-akiyama/front.svg",
  20950. extra: 1327 / 1235,
  20951. bottom: 0.02
  20952. }
  20953. },
  20954. back: {
  20955. height: math.unit(4 + 11 / 12, "feet"),
  20956. weight: math.unit(120, "lb"),
  20957. name: "Back",
  20958. image: {
  20959. source: "./media/characters/yumi-akiyama/back.svg",
  20960. extra: 1287 / 1245,
  20961. bottom: 0.002
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Galactic",
  20968. height: math.unit(50, "galaxies"),
  20969. default: true
  20970. },
  20971. {
  20972. name: "Universal",
  20973. height: math.unit(100, "universes")
  20974. },
  20975. ]
  20976. ))
  20977. characterMakers.push(() => makeCharacter(
  20978. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20979. {
  20980. front: {
  20981. height: math.unit(8, "feet"),
  20982. weight: math.unit(500, "lb"),
  20983. name: "Front",
  20984. image: {
  20985. source: "./media/characters/rifter-yrmori/front.svg",
  20986. extra: 1180 / 1125,
  20987. bottom: 0.02
  20988. }
  20989. },
  20990. back: {
  20991. height: math.unit(8, "feet"),
  20992. weight: math.unit(500, "lb"),
  20993. name: "Back",
  20994. image: {
  20995. source: "./media/characters/rifter-yrmori/back.svg",
  20996. extra: 1190 / 1145,
  20997. bottom: 0.001
  20998. }
  20999. },
  21000. wings: {
  21001. height: math.unit(7.75, "feet"),
  21002. weight: math.unit(500, "lb"),
  21003. name: "Wings",
  21004. image: {
  21005. source: "./media/characters/rifter-yrmori/wings.svg",
  21006. extra: 1357 / 1285
  21007. }
  21008. },
  21009. maw: {
  21010. height: math.unit(0.8, "feet"),
  21011. name: "Maw",
  21012. image: {
  21013. source: "./media/characters/rifter-yrmori/maw.svg"
  21014. }
  21015. },
  21016. mawfront: {
  21017. height: math.unit(1.45, "feet"),
  21018. name: "Maw (Front)",
  21019. image: {
  21020. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(8, "feet"),
  21028. default: true
  21029. },
  21030. {
  21031. name: "Macro",
  21032. height: math.unit(42, "meters")
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21038. {
  21039. were: {
  21040. height: math.unit(25 + 6 / 12, "feet"),
  21041. weight: math.unit(10000, "lb"),
  21042. name: "Were",
  21043. image: {
  21044. source: "./media/characters/tahajin/were.svg",
  21045. extra: 801 / 770,
  21046. bottom: 0.042
  21047. }
  21048. },
  21049. aquatic: {
  21050. height: math.unit(6 + 4 / 12, "feet"),
  21051. weight: math.unit(160, "lb"),
  21052. name: "Aquatic",
  21053. image: {
  21054. source: "./media/characters/tahajin/aquatic.svg",
  21055. extra: 572 / 542,
  21056. bottom: 0.04
  21057. }
  21058. },
  21059. chow: {
  21060. height: math.unit(8 + 11 / 12, "feet"),
  21061. weight: math.unit(450, "lb"),
  21062. name: "Chow",
  21063. image: {
  21064. source: "./media/characters/tahajin/chow.svg",
  21065. extra: 660 / 640,
  21066. bottom: 0.015
  21067. }
  21068. },
  21069. demiNaga: {
  21070. height: math.unit(6 + 8 / 12, "feet"),
  21071. weight: math.unit(300, "lb"),
  21072. name: "Demi Naga",
  21073. image: {
  21074. source: "./media/characters/tahajin/demi-naga.svg",
  21075. extra: 643 / 615,
  21076. bottom: 0.1
  21077. }
  21078. },
  21079. data: {
  21080. height: math.unit(5, "inches"),
  21081. weight: math.unit(0.1, "lb"),
  21082. name: "Data",
  21083. image: {
  21084. source: "./media/characters/tahajin/data.svg"
  21085. }
  21086. },
  21087. fluu: {
  21088. height: math.unit(5 + 7 / 12, "feet"),
  21089. weight: math.unit(140, "lb"),
  21090. name: "Fluu",
  21091. image: {
  21092. source: "./media/characters/tahajin/fluu.svg",
  21093. extra: 628 / 592,
  21094. bottom: 0.02
  21095. }
  21096. },
  21097. starWarrior: {
  21098. height: math.unit(4 + 5 / 12, "feet"),
  21099. weight: math.unit(50, "lb"),
  21100. name: "Star Warrior",
  21101. image: {
  21102. source: "./media/characters/tahajin/star-warrior.svg"
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(25 + 6 / 12, "feet"),
  21110. default: true
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21116. {
  21117. front: {
  21118. height: math.unit(8, "feet"),
  21119. weight: math.unit(350, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/gabira/front.svg",
  21123. extra: 608 / 580,
  21124. bottom: 0.03
  21125. }
  21126. },
  21127. back: {
  21128. height: math.unit(8, "feet"),
  21129. weight: math.unit(350, "lb"),
  21130. name: "Back",
  21131. image: {
  21132. source: "./media/characters/gabira/back.svg",
  21133. extra: 608 / 580,
  21134. bottom: 0.03
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Normal",
  21141. height: math.unit(8, "feet"),
  21142. default: true
  21143. },
  21144. ]
  21145. ))
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21148. {
  21149. front: {
  21150. height: math.unit(5 + 3 / 12, "feet"),
  21151. weight: math.unit(137, "lb"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/sasha-katraine/front.svg",
  21155. bottom: 0.045
  21156. }
  21157. },
  21158. },
  21159. [
  21160. {
  21161. name: "Micro",
  21162. height: math.unit(5, "inches")
  21163. },
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(5 + 3 / 12, "feet"),
  21167. default: true
  21168. },
  21169. ]
  21170. ))
  21171. characterMakers.push(() => makeCharacter(
  21172. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21173. {
  21174. side: {
  21175. height: math.unit(4, "inches"),
  21176. weight: math.unit(200, "grams"),
  21177. name: "Side",
  21178. image: {
  21179. source: "./media/characters/der/side.svg",
  21180. extra: 719 / 400,
  21181. bottom: 30.6 / 749.9187
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Micro",
  21188. height: math.unit(4, "inches"),
  21189. default: true
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21195. {
  21196. side: {
  21197. height: math.unit(30, "meters"),
  21198. weight: math.unit(700, "tonnes"),
  21199. name: "Side",
  21200. image: {
  21201. source: "./media/characters/fixerdragon/side.svg",
  21202. extra: (1293.0514 - 116.03) / 1106.86,
  21203. bottom: 116.03 / 1293.0514
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Planck",
  21210. height: math.unit(1.6e-35, "meters")
  21211. },
  21212. {
  21213. name: "Micro",
  21214. height: math.unit(0.4, "meters")
  21215. },
  21216. {
  21217. name: "Normal",
  21218. height: math.unit(30, "meters"),
  21219. default: true
  21220. },
  21221. {
  21222. name: "Megamacro",
  21223. height: math.unit(1.2, "megameters")
  21224. },
  21225. {
  21226. name: "Teramacro",
  21227. height: math.unit(130, "terameters")
  21228. },
  21229. {
  21230. name: "Yottamacro",
  21231. height: math.unit(6200, "yottameters")
  21232. },
  21233. ]
  21234. ));
  21235. characterMakers.push(() => makeCharacter(
  21236. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21237. {
  21238. front: {
  21239. height: math.unit(8, "feet"),
  21240. weight: math.unit(250, "lb"),
  21241. name: "Front",
  21242. image: {
  21243. source: "./media/characters/kite/front.svg",
  21244. extra: 2796 / 2659,
  21245. bottom: 0.002
  21246. }
  21247. },
  21248. },
  21249. [
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(8, "feet"),
  21253. default: true
  21254. },
  21255. {
  21256. name: "Macro",
  21257. height: math.unit(360, "feet")
  21258. },
  21259. {
  21260. name: "Megamacro",
  21261. height: math.unit(1500, "feet")
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21267. {
  21268. front: {
  21269. height: math.unit(5 + 10 / 12, "feet"),
  21270. weight: math.unit(150, "lb"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/poojawa-vynar/front.svg",
  21274. extra: (1506.1547 - 55) / 1356.6,
  21275. bottom: 55 / 1506.1547
  21276. }
  21277. },
  21278. frontTailless: {
  21279. height: math.unit(5 + 10 / 12, "feet"),
  21280. weight: math.unit(150, "lb"),
  21281. name: "Front (Tailless)",
  21282. image: {
  21283. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21284. extra: (1506.1547 - 55) / 1356.6,
  21285. bottom: 55 / 1506.1547
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Normal",
  21292. height: math.unit(5 + 10 / 12, "feet"),
  21293. default: true
  21294. },
  21295. ]
  21296. ))
  21297. characterMakers.push(() => makeCharacter(
  21298. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21299. {
  21300. front: {
  21301. height: math.unit(293, "meters"),
  21302. weight: math.unit(70400, "tons"),
  21303. name: "Front",
  21304. image: {
  21305. source: "./media/characters/violette/front.svg",
  21306. extra: 1227 / 1180,
  21307. bottom: 0.005
  21308. }
  21309. },
  21310. back: {
  21311. height: math.unit(293, "meters"),
  21312. weight: math.unit(70400, "tons"),
  21313. name: "Back",
  21314. image: {
  21315. source: "./media/characters/violette/back.svg",
  21316. extra: 1227 / 1180,
  21317. bottom: 0.005
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Macro",
  21324. height: math.unit(293, "meters"),
  21325. default: true
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21331. {
  21332. front: {
  21333. height: math.unit(1050, "feet"),
  21334. weight: math.unit(200000, "tons"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/alessandra/front.svg",
  21338. extra: 960 / 912,
  21339. bottom: 0.06
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Macro",
  21346. height: math.unit(1050, "feet")
  21347. },
  21348. {
  21349. name: "Macro+",
  21350. height: math.unit(900, "meters"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21357. {
  21358. front: {
  21359. height: math.unit(5, "feet"),
  21360. weight: math.unit(187, "lb"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/person/front.svg",
  21364. extra: 3087 / 2945,
  21365. bottom: 91 / 3181
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Micro",
  21372. height: math.unit(3, "inches")
  21373. },
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(5, "feet"),
  21377. default: true
  21378. },
  21379. {
  21380. name: "Macro",
  21381. height: math.unit(90, "feet")
  21382. },
  21383. {
  21384. name: "Max Size",
  21385. height: math.unit(280, "feet")
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21391. {
  21392. front: {
  21393. height: math.unit(4.5, "meters"),
  21394. weight: math.unit(3200, "lb"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/ty/front.svg",
  21398. extra: 1038 / 960,
  21399. bottom: 31.156 / 1068
  21400. }
  21401. },
  21402. back: {
  21403. height: math.unit(4.5, "meters"),
  21404. weight: math.unit(3200, "lb"),
  21405. name: "Back",
  21406. image: {
  21407. source: "./media/characters/ty/back.svg",
  21408. extra: 1044 / 966,
  21409. bottom: 7.48 / 1049
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(4.5, "meters"),
  21417. default: true
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21423. {
  21424. front: {
  21425. height: math.unit(5 + 4 / 12, "feet"),
  21426. weight: math.unit(115, "lb"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/rocky/front.svg",
  21430. extra: 1012 / 975,
  21431. bottom: 54 / 1066
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(5 + 4 / 12, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21445. {
  21446. upright: {
  21447. height: math.unit(6, "meters"),
  21448. weight: math.unit(4000, "kg"),
  21449. name: "Upright",
  21450. image: {
  21451. source: "./media/characters/ruin/upright.svg",
  21452. extra: 668 / 661,
  21453. bottom: 42 / 799.8396
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(6, "meters"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21467. {
  21468. front: {
  21469. height: math.unit(5, "feet"),
  21470. weight: math.unit(106, "lb"),
  21471. name: "Front",
  21472. image: {
  21473. source: "./media/characters/robin/front.svg",
  21474. extra: 862 / 799,
  21475. bottom: 42.4 / 914.8856
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(5, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21489. {
  21490. side: {
  21491. height: math.unit(3, "feet"),
  21492. weight: math.unit(225, "lb"),
  21493. name: "Side",
  21494. image: {
  21495. source: "./media/characters/saian/side.svg",
  21496. extra: 566 / 356,
  21497. bottom: 79.7 / 643
  21498. }
  21499. },
  21500. maw: {
  21501. height: math.unit(2.85, "feet"),
  21502. name: "Maw",
  21503. image: {
  21504. source: "./media/characters/saian/maw.svg"
  21505. }
  21506. },
  21507. },
  21508. [
  21509. {
  21510. name: "Normal",
  21511. height: math.unit(3, "feet"),
  21512. default: true
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21518. {
  21519. side: {
  21520. height: math.unit(8, "feet"),
  21521. weight: math.unit(300, "lb"),
  21522. name: "Side",
  21523. image: {
  21524. source: "./media/characters/equus-silvermane/side.svg",
  21525. extra: 2176 / 2050,
  21526. bottom: 65.7 / 2245
  21527. }
  21528. },
  21529. front: {
  21530. height: math.unit(8, "feet"),
  21531. weight: math.unit(300, "lb"),
  21532. name: "Front",
  21533. image: {
  21534. source: "./media/characters/equus-silvermane/front.svg",
  21535. extra: 4633 / 4400,
  21536. bottom: 71.3 / 4706.915
  21537. }
  21538. },
  21539. sideStepping: {
  21540. height: math.unit(8, "feet"),
  21541. weight: math.unit(300, "lb"),
  21542. name: "Side (Stepping)",
  21543. image: {
  21544. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21545. extra: 1968 / 1860,
  21546. bottom: 16.4 / 1989
  21547. }
  21548. },
  21549. },
  21550. [
  21551. {
  21552. name: "Normal",
  21553. height: math.unit(8, "feet")
  21554. },
  21555. {
  21556. name: "Minimacro",
  21557. height: math.unit(75, "feet"),
  21558. default: true
  21559. },
  21560. {
  21561. name: "Macro",
  21562. height: math.unit(150, "feet")
  21563. },
  21564. {
  21565. name: "Macro+",
  21566. height: math.unit(1000, "feet")
  21567. },
  21568. {
  21569. name: "Megamacro",
  21570. height: math.unit(1, "mile")
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21576. {
  21577. side: {
  21578. height: math.unit(20, "feet"),
  21579. weight: math.unit(30000, "kg"),
  21580. name: "Side",
  21581. image: {
  21582. source: "./media/characters/windar/side.svg",
  21583. extra: 1491 / 1248,
  21584. bottom: 82.56 / 1568
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(20, "feet"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21598. {
  21599. side: {
  21600. height: math.unit(15.66, "feet"),
  21601. weight: math.unit(150, "lb"),
  21602. name: "Side",
  21603. image: {
  21604. source: "./media/characters/melody/side.svg",
  21605. extra: 1097 / 944,
  21606. bottom: 11.8 / 1109
  21607. }
  21608. },
  21609. sideOutfit: {
  21610. height: math.unit(15.66, "feet"),
  21611. weight: math.unit(150, "lb"),
  21612. name: "Side (Outfit)",
  21613. image: {
  21614. source: "./media/characters/melody/side-outfit.svg",
  21615. extra: 1097 / 944,
  21616. bottom: 11.8 / 1109
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(15.66, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21630. {
  21631. front: {
  21632. height: math.unit(8, "feet"),
  21633. weight: math.unit(325, "lb"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/windera/front.svg",
  21637. extra: 3180 / 2845,
  21638. bottom: 178 / 3365
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(8, "feet"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21652. {
  21653. front: {
  21654. height: math.unit(28.75, "feet"),
  21655. weight: math.unit(2000, "kg"),
  21656. name: "Front",
  21657. image: {
  21658. source: "./media/characters/sonear/front.svg",
  21659. extra: 1041.1 / 964.9,
  21660. bottom: 53.7 / 1096.6
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(28.75, "feet"),
  21668. default: true
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21674. {
  21675. side: {
  21676. height: math.unit(25.5, "feet"),
  21677. weight: math.unit(23000, "kg"),
  21678. name: "Side",
  21679. image: {
  21680. source: "./media/characters/kanara/side.svg"
  21681. }
  21682. },
  21683. },
  21684. [
  21685. {
  21686. name: "Normal",
  21687. height: math.unit(25.5, "feet"),
  21688. default: true
  21689. },
  21690. ]
  21691. ))
  21692. characterMakers.push(() => makeCharacter(
  21693. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21694. {
  21695. side: {
  21696. height: math.unit(10, "feet"),
  21697. weight: math.unit(1000, "kg"),
  21698. name: "Side",
  21699. image: {
  21700. source: "./media/characters/ereus/side.svg",
  21701. extra: 1157 / 959,
  21702. bottom: 153 / 1312.5
  21703. }
  21704. },
  21705. },
  21706. [
  21707. {
  21708. name: "Normal",
  21709. height: math.unit(10, "feet"),
  21710. default: true
  21711. },
  21712. ]
  21713. ))
  21714. characterMakers.push(() => makeCharacter(
  21715. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21716. {
  21717. side: {
  21718. height: math.unit(4.5, "feet"),
  21719. weight: math.unit(500, "lb"),
  21720. name: "Side",
  21721. image: {
  21722. source: "./media/characters/e-ter/side.svg",
  21723. extra: 1550 / 1248,
  21724. bottom: 146 / 1694
  21725. }
  21726. },
  21727. },
  21728. [
  21729. {
  21730. name: "Normal",
  21731. height: math.unit(4.5, "feet"),
  21732. default: true
  21733. },
  21734. ]
  21735. ))
  21736. characterMakers.push(() => makeCharacter(
  21737. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21738. {
  21739. side: {
  21740. height: math.unit(9.7, "feet"),
  21741. weight: math.unit(4000, "kg"),
  21742. name: "Side",
  21743. image: {
  21744. source: "./media/characters/yamie/side.svg"
  21745. }
  21746. },
  21747. },
  21748. [
  21749. {
  21750. name: "Normal",
  21751. height: math.unit(9.7, "feet"),
  21752. default: true
  21753. },
  21754. ]
  21755. ))
  21756. characterMakers.push(() => makeCharacter(
  21757. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21758. {
  21759. front: {
  21760. height: math.unit(50, "feet"),
  21761. weight: math.unit(50000, "kg"),
  21762. name: "Front",
  21763. image: {
  21764. source: "./media/characters/anders/front.svg",
  21765. extra: 570 / 539,
  21766. bottom: 14.7 / 586.7
  21767. }
  21768. },
  21769. },
  21770. [
  21771. {
  21772. name: "Large",
  21773. height: math.unit(50, "feet")
  21774. },
  21775. {
  21776. name: "Macro",
  21777. height: math.unit(2000, "feet"),
  21778. default: true
  21779. },
  21780. {
  21781. name: "Megamacro",
  21782. height: math.unit(12, "miles")
  21783. },
  21784. ]
  21785. ))
  21786. characterMakers.push(() => makeCharacter(
  21787. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21788. {
  21789. front: {
  21790. height: math.unit(7 + 2 / 12, "feet"),
  21791. weight: math.unit(300, "lb"),
  21792. name: "Front",
  21793. image: {
  21794. source: "./media/characters/reban/front.svg",
  21795. extra: 516 / 487,
  21796. bottom: 42.82 / 558.356
  21797. }
  21798. },
  21799. dick: {
  21800. height: math.unit(7 / 5, "feet"),
  21801. name: "Dick",
  21802. image: {
  21803. source: "./media/characters/reban/dick.svg"
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Natural Height",
  21810. height: math.unit(7 + 2 / 12, "feet")
  21811. },
  21812. {
  21813. name: "Macro",
  21814. height: math.unit(500, "feet"),
  21815. default: true
  21816. },
  21817. {
  21818. name: "Canon Height",
  21819. height: math.unit(50, "AU")
  21820. },
  21821. ]
  21822. ))
  21823. characterMakers.push(() => makeCharacter(
  21824. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21825. {
  21826. front: {
  21827. height: math.unit(6, "feet"),
  21828. weight: math.unit(150, "lb"),
  21829. name: "Front",
  21830. image: {
  21831. source: "./media/characters/terrance-keayes/front.svg",
  21832. extra: 1.005,
  21833. bottom: 151 / 1615
  21834. }
  21835. },
  21836. side: {
  21837. height: math.unit(6, "feet"),
  21838. weight: math.unit(150, "lb"),
  21839. name: "Side",
  21840. image: {
  21841. source: "./media/characters/terrance-keayes/side.svg",
  21842. extra: 1.005,
  21843. bottom: 129.4 / 1544
  21844. }
  21845. },
  21846. back: {
  21847. height: math.unit(6, "feet"),
  21848. weight: math.unit(150, "lb"),
  21849. name: "Back",
  21850. image: {
  21851. source: "./media/characters/terrance-keayes/back.svg",
  21852. extra: 1.005,
  21853. bottom: 58.4 / 1557.3
  21854. }
  21855. },
  21856. dick: {
  21857. height: math.unit(6 * 0.208, "feet"),
  21858. name: "Dick",
  21859. image: {
  21860. source: "./media/characters/terrance-keayes/dick.svg"
  21861. }
  21862. },
  21863. },
  21864. [
  21865. {
  21866. name: "Canon Height",
  21867. height: math.unit(35, "miles"),
  21868. default: true
  21869. },
  21870. ]
  21871. ))
  21872. characterMakers.push(() => makeCharacter(
  21873. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21874. {
  21875. front: {
  21876. height: math.unit(6, "feet"),
  21877. weight: math.unit(150, "lb"),
  21878. name: "Front",
  21879. image: {
  21880. source: "./media/characters/ofelia/front.svg",
  21881. extra: 546 / 541,
  21882. bottom: 39 / 583
  21883. }
  21884. },
  21885. back: {
  21886. height: math.unit(6, "feet"),
  21887. weight: math.unit(150, "lb"),
  21888. name: "Back",
  21889. image: {
  21890. source: "./media/characters/ofelia/back.svg",
  21891. extra: 564 / 559.5,
  21892. bottom: 8.69 / 573.02
  21893. }
  21894. },
  21895. maw: {
  21896. height: math.unit(1, "feet"),
  21897. name: "Maw",
  21898. image: {
  21899. source: "./media/characters/ofelia/maw.svg"
  21900. }
  21901. },
  21902. foot: {
  21903. height: math.unit(1.949, "feet"),
  21904. name: "Foot",
  21905. image: {
  21906. source: "./media/characters/ofelia/foot.svg"
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Canon Height",
  21913. height: math.unit(2000, "miles"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21920. {
  21921. front: {
  21922. height: math.unit(6, "feet"),
  21923. weight: math.unit(150, "lb"),
  21924. name: "Front",
  21925. image: {
  21926. source: "./media/characters/samuel/front.svg",
  21927. extra: 265 / 258,
  21928. bottom: 2 / 266.1566
  21929. }
  21930. },
  21931. },
  21932. [
  21933. {
  21934. name: "Macro",
  21935. height: math.unit(100, "feet"),
  21936. default: true
  21937. },
  21938. {
  21939. name: "Full Size",
  21940. height: math.unit(1000, "miles")
  21941. },
  21942. ]
  21943. ))
  21944. characterMakers.push(() => makeCharacter(
  21945. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21946. {
  21947. front: {
  21948. height: math.unit(6, "feet"),
  21949. weight: math.unit(300, "lb"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/beishir-kiel/front.svg",
  21953. extra: 569 / 547,
  21954. bottom: 41.9 / 609
  21955. }
  21956. },
  21957. maw: {
  21958. height: math.unit(6 * 0.202, "feet"),
  21959. name: "Maw",
  21960. image: {
  21961. source: "./media/characters/beishir-kiel/maw.svg"
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Macro",
  21968. height: math.unit(300, "feet"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(5 + 7/12, "feet"),
  21978. weight: math.unit(120, "lb"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/logan-grey/front.svg",
  21982. extra: 1836/1738,
  21983. bottom: 108/1944
  21984. }
  21985. },
  21986. back: {
  21987. height: math.unit(5 + 7/12, "feet"),
  21988. weight: math.unit(120, "lb"),
  21989. name: "Back",
  21990. image: {
  21991. source: "./media/characters/logan-grey/back.svg",
  21992. extra: 1880/1794,
  21993. bottom: 24/1904
  21994. }
  21995. },
  21996. frontSfw: {
  21997. height: math.unit(5 + 7/12, "feet"),
  21998. weight: math.unit(120, "lb"),
  21999. name: "Front (SFW)",
  22000. image: {
  22001. source: "./media/characters/logan-grey/front-sfw.svg",
  22002. extra: 1836/1738,
  22003. bottom: 108/1944
  22004. }
  22005. },
  22006. backSfw: {
  22007. height: math.unit(5 + 7/12, "feet"),
  22008. weight: math.unit(120, "lb"),
  22009. name: "Back (SFW)",
  22010. image: {
  22011. source: "./media/characters/logan-grey/back-sfw.svg",
  22012. extra: 1880/1794,
  22013. bottom: 24/1904
  22014. }
  22015. },
  22016. hands: {
  22017. height: math.unit(0.84, "feet"),
  22018. name: "Hands",
  22019. image: {
  22020. source: "./media/characters/logan-grey/hands.svg"
  22021. }
  22022. },
  22023. paws: {
  22024. height: math.unit(0.72, "feet"),
  22025. name: "Paws",
  22026. image: {
  22027. source: "./media/characters/logan-grey/paws.svg"
  22028. }
  22029. },
  22030. cock: {
  22031. height: math.unit(1.45, "feet"),
  22032. name: "Cock",
  22033. image: {
  22034. source: "./media/characters/logan-grey/cock.svg"
  22035. }
  22036. },
  22037. cockAlt: {
  22038. height: math.unit(1.437, "feet"),
  22039. name: "Cock (alt)",
  22040. image: {
  22041. source: "./media/characters/logan-grey/cock-alt.svg"
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(5 + 8 / 12, "feet")
  22049. },
  22050. {
  22051. name: "The 500 Foot Femboy",
  22052. height: math.unit(500, "feet"),
  22053. default: true
  22054. },
  22055. {
  22056. name: "Megmacro",
  22057. height: math.unit(20, "miles")
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22063. {
  22064. front: {
  22065. height: math.unit(8 + 2 / 12, "feet"),
  22066. weight: math.unit(275, "lb"),
  22067. name: "Front",
  22068. image: {
  22069. source: "./media/characters/draganta/front.svg",
  22070. extra: 1177 / 1135,
  22071. bottom: 33.46 / 1212.1
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(8 + 6 / 12, "feet"),
  22079. default: true
  22080. },
  22081. {
  22082. name: "Macro",
  22083. height: math.unit(150, "feet")
  22084. },
  22085. {
  22086. name: "Megamacro",
  22087. height: math.unit(1000, "miles")
  22088. },
  22089. ]
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22093. {
  22094. front: {
  22095. height: math.unit(1.72, "m"),
  22096. weight: math.unit(80, "lb"),
  22097. name: "Front",
  22098. image: {
  22099. source: "./media/characters/voski/front.svg",
  22100. extra: 2076.22 / 2022.4,
  22101. bottom: 102.7 / 2177.3866
  22102. }
  22103. },
  22104. frontNsfw: {
  22105. height: math.unit(1.72, "m"),
  22106. weight: math.unit(80, "lb"),
  22107. name: "Front (NSFW)",
  22108. image: {
  22109. source: "./media/characters/voski/front-nsfw.svg",
  22110. extra: 2076.22 / 2022.4,
  22111. bottom: 102.7 / 2177.3866
  22112. }
  22113. },
  22114. back: {
  22115. height: math.unit(1.72, "m"),
  22116. weight: math.unit(80, "lb"),
  22117. name: "Back",
  22118. image: {
  22119. source: "./media/characters/voski/back.svg",
  22120. extra: 2104 / 2051,
  22121. bottom: 10.45 / 2113.63
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(1.72, "m")
  22129. },
  22130. {
  22131. name: "Macro",
  22132. height: math.unit(55, "m"),
  22133. default: true
  22134. },
  22135. {
  22136. name: "Macro+",
  22137. height: math.unit(300, "m")
  22138. },
  22139. {
  22140. name: "Macro++",
  22141. height: math.unit(700, "m")
  22142. },
  22143. {
  22144. name: "Macro+++",
  22145. height: math.unit(4500, "m")
  22146. },
  22147. {
  22148. name: "Macro++++",
  22149. height: math.unit(45, "km")
  22150. },
  22151. {
  22152. name: "Macro+++++",
  22153. height: math.unit(1220, "km")
  22154. },
  22155. ]
  22156. ))
  22157. characterMakers.push(() => makeCharacter(
  22158. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22159. {
  22160. front: {
  22161. height: math.unit(2.3, "m"),
  22162. weight: math.unit(304, "kg"),
  22163. name: "Front",
  22164. image: {
  22165. source: "./media/characters/icowom-lee/front.svg",
  22166. extra: 985 / 955,
  22167. bottom: 25.4 / 1012
  22168. }
  22169. },
  22170. fronttentacles: {
  22171. height: math.unit(2.3, "m"),
  22172. weight: math.unit(304, "kg"),
  22173. name: "Front-tentacles",
  22174. image: {
  22175. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22176. extra: 985 / 955,
  22177. bottom: 25.4 / 1012
  22178. }
  22179. },
  22180. back: {
  22181. height: math.unit(2.3, "m"),
  22182. weight: math.unit(304, "kg"),
  22183. name: "Back",
  22184. image: {
  22185. source: "./media/characters/icowom-lee/back.svg",
  22186. extra: 975 / 954,
  22187. bottom: 9.5 / 985
  22188. }
  22189. },
  22190. backtentacles: {
  22191. height: math.unit(2.3, "m"),
  22192. weight: math.unit(304, "kg"),
  22193. name: "Back-tentacles",
  22194. image: {
  22195. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22196. extra: 975 / 954,
  22197. bottom: 9.5 / 985
  22198. }
  22199. },
  22200. frontDressed: {
  22201. height: math.unit(2.3, "m"),
  22202. weight: math.unit(304, "kg"),
  22203. name: "Front (Dressed)",
  22204. image: {
  22205. source: "./media/characters/icowom-lee/front-dressed.svg",
  22206. extra: 3076 / 2933,
  22207. bottom: 51.4 / 3125.1889
  22208. }
  22209. },
  22210. rump: {
  22211. height: math.unit(0.776, "meters"),
  22212. name: "Rump",
  22213. image: {
  22214. source: "./media/characters/icowom-lee/rump.svg"
  22215. }
  22216. },
  22217. genitals: {
  22218. height: math.unit(0.78, "meters"),
  22219. name: "Genitals",
  22220. image: {
  22221. source: "./media/characters/icowom-lee/genitals.svg"
  22222. }
  22223. },
  22224. },
  22225. [
  22226. {
  22227. name: "Normal",
  22228. height: math.unit(2.3, "meters"),
  22229. default: true
  22230. },
  22231. {
  22232. name: "Macro",
  22233. height: math.unit(94, "meters"),
  22234. default: true
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22240. {
  22241. front: {
  22242. height: math.unit(22, "meters"),
  22243. weight: math.unit(21000, "kg"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/shock-diamond/front.svg",
  22247. extra: 2204 / 2053,
  22248. bottom: 65 / 2239.47
  22249. }
  22250. },
  22251. frontNude: {
  22252. height: math.unit(22, "meters"),
  22253. weight: math.unit(21000, "kg"),
  22254. name: "Front (Nude)",
  22255. image: {
  22256. source: "./media/characters/shock-diamond/front-nude.svg",
  22257. extra: 2514 / 2285,
  22258. bottom: 13 / 2527.56
  22259. }
  22260. },
  22261. },
  22262. [
  22263. {
  22264. name: "Normal",
  22265. height: math.unit(3, "meters")
  22266. },
  22267. {
  22268. name: "Macro",
  22269. height: math.unit(22, "meters"),
  22270. default: true
  22271. },
  22272. ]
  22273. ))
  22274. characterMakers.push(() => makeCharacter(
  22275. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22276. {
  22277. front: {
  22278. height: math.unit(5 + 4 / 12, "feet"),
  22279. weight: math.unit(120, "lb"),
  22280. name: "Front",
  22281. image: {
  22282. source: "./media/characters/rory/front.svg",
  22283. extra: 589 / 556,
  22284. bottom: 45.7 / 635.76
  22285. }
  22286. },
  22287. frontNude: {
  22288. height: math.unit(5 + 4 / 12, "feet"),
  22289. weight: math.unit(120, "lb"),
  22290. name: "Front (Nude)",
  22291. image: {
  22292. source: "./media/characters/rory/front-nude.svg",
  22293. extra: 589 / 556,
  22294. bottom: 45.7 / 635.76
  22295. }
  22296. },
  22297. side: {
  22298. height: math.unit(5 + 4 / 12, "feet"),
  22299. weight: math.unit(120, "lb"),
  22300. name: "Side",
  22301. image: {
  22302. source: "./media/characters/rory/side.svg",
  22303. extra: 597 / 564,
  22304. bottom: 55 / 653
  22305. }
  22306. },
  22307. back: {
  22308. height: math.unit(5 + 4 / 12, "feet"),
  22309. weight: math.unit(120, "lb"),
  22310. name: "Back",
  22311. image: {
  22312. source: "./media/characters/rory/back.svg",
  22313. extra: 620 / 585,
  22314. bottom: 8.86 / 630.43
  22315. }
  22316. },
  22317. dick: {
  22318. height: math.unit(0.86, "feet"),
  22319. name: "Dick",
  22320. image: {
  22321. source: "./media/characters/rory/dick.svg"
  22322. }
  22323. },
  22324. },
  22325. [
  22326. {
  22327. name: "Normal",
  22328. height: math.unit(5 + 4 / 12, "feet"),
  22329. default: true
  22330. },
  22331. {
  22332. name: "Macro",
  22333. height: math.unit(100, "feet")
  22334. },
  22335. {
  22336. name: "Macro+",
  22337. height: math.unit(140, "feet")
  22338. },
  22339. {
  22340. name: "Macro++",
  22341. height: math.unit(300, "feet")
  22342. },
  22343. ]
  22344. ))
  22345. characterMakers.push(() => makeCharacter(
  22346. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22347. {
  22348. front: {
  22349. height: math.unit(5 + 9 / 12, "feet"),
  22350. weight: math.unit(190, "lb"),
  22351. name: "Front",
  22352. image: {
  22353. source: "./media/characters/sprisk/front.svg",
  22354. extra: 1225 / 1180,
  22355. bottom: 42.7 / 1266.4
  22356. }
  22357. },
  22358. frontNsfw: {
  22359. height: math.unit(5 + 9 / 12, "feet"),
  22360. weight: math.unit(190, "lb"),
  22361. name: "Front (NSFW)",
  22362. image: {
  22363. source: "./media/characters/sprisk/front-nsfw.svg",
  22364. extra: 1225 / 1180,
  22365. bottom: 42.7 / 1266.4
  22366. }
  22367. },
  22368. back: {
  22369. height: math.unit(5 + 9 / 12, "feet"),
  22370. weight: math.unit(190, "lb"),
  22371. name: "Back",
  22372. image: {
  22373. source: "./media/characters/sprisk/back.svg",
  22374. extra: 1247 / 1200,
  22375. bottom: 5.6 / 1253.04
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Tiny",
  22382. height: math.unit(2, "inches")
  22383. },
  22384. {
  22385. name: "Normal",
  22386. height: math.unit(5 + 9 / 12, "feet"),
  22387. default: true
  22388. },
  22389. {
  22390. name: "Mini Macro",
  22391. height: math.unit(18, "feet")
  22392. },
  22393. {
  22394. name: "Macro",
  22395. height: math.unit(100, "feet")
  22396. },
  22397. {
  22398. name: "MACRO",
  22399. height: math.unit(50, "miles")
  22400. },
  22401. {
  22402. name: "M A C R O",
  22403. height: math.unit(300, "miles")
  22404. },
  22405. ]
  22406. ))
  22407. characterMakers.push(() => makeCharacter(
  22408. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22409. {
  22410. side: {
  22411. height: math.unit(15.6, "meters"),
  22412. weight: math.unit(700000, "kg"),
  22413. name: "Side",
  22414. image: {
  22415. source: "./media/characters/bunsen/side.svg",
  22416. extra: 1644 / 358
  22417. }
  22418. },
  22419. foot: {
  22420. height: math.unit(1.611 * 1644 / 358, "meter"),
  22421. name: "Foot",
  22422. image: {
  22423. source: "./media/characters/bunsen/foot.svg"
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Small",
  22430. height: math.unit(10, "feet")
  22431. },
  22432. {
  22433. name: "Normal",
  22434. height: math.unit(15.6, "meters"),
  22435. default: true
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22441. {
  22442. front: {
  22443. height: math.unit(4 + 11 / 12, "feet"),
  22444. weight: math.unit(140, "lb"),
  22445. name: "Front",
  22446. image: {
  22447. source: "./media/characters/sesh/front.svg",
  22448. extra: 3420 / 3231,
  22449. bottom: 72 / 3949.5
  22450. }
  22451. },
  22452. },
  22453. [
  22454. {
  22455. name: "Normal",
  22456. height: math.unit(4 + 11 / 12, "feet")
  22457. },
  22458. {
  22459. name: "Grown",
  22460. height: math.unit(15, "feet"),
  22461. default: true
  22462. },
  22463. {
  22464. name: "Macro",
  22465. height: math.unit(1500, "feet")
  22466. },
  22467. {
  22468. name: "Megamacro",
  22469. height: math.unit(30, "miles")
  22470. },
  22471. {
  22472. name: "Continental",
  22473. height: math.unit(3000, "miles")
  22474. },
  22475. {
  22476. name: "Gravity Mass",
  22477. height: math.unit(300000, "miles")
  22478. },
  22479. {
  22480. name: "Planet Buster",
  22481. height: math.unit(30000000, "miles")
  22482. },
  22483. {
  22484. name: "Big",
  22485. height: math.unit(3000000000, "miles")
  22486. },
  22487. ]
  22488. ))
  22489. characterMakers.push(() => makeCharacter(
  22490. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22491. {
  22492. front: {
  22493. height: math.unit(9, "feet"),
  22494. weight: math.unit(350, "lb"),
  22495. name: "Front",
  22496. image: {
  22497. source: "./media/characters/pepper/front.svg",
  22498. extra: 1448 / 1312,
  22499. bottom: 9.4 / 1457.88
  22500. }
  22501. },
  22502. back: {
  22503. height: math.unit(9, "feet"),
  22504. weight: math.unit(350, "lb"),
  22505. name: "Back",
  22506. image: {
  22507. source: "./media/characters/pepper/back.svg",
  22508. extra: 1423 / 1300,
  22509. bottom: 4.6 / 1429
  22510. }
  22511. },
  22512. maw: {
  22513. height: math.unit(0.932, "feet"),
  22514. name: "Maw",
  22515. image: {
  22516. source: "./media/characters/pepper/maw.svg"
  22517. }
  22518. },
  22519. },
  22520. [
  22521. {
  22522. name: "Normal",
  22523. height: math.unit(9, "feet"),
  22524. default: true
  22525. },
  22526. ]
  22527. ))
  22528. characterMakers.push(() => makeCharacter(
  22529. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22530. {
  22531. front: {
  22532. height: math.unit(6, "feet"),
  22533. weight: math.unit(150, "lb"),
  22534. name: "Front",
  22535. image: {
  22536. source: "./media/characters/maelstrom/front.svg",
  22537. extra: 2100 / 1883,
  22538. bottom: 94 / 2196.7
  22539. }
  22540. },
  22541. },
  22542. [
  22543. {
  22544. name: "Less Kaiju",
  22545. height: math.unit(200, "feet")
  22546. },
  22547. {
  22548. name: "Kaiju",
  22549. height: math.unit(400, "feet"),
  22550. default: true
  22551. },
  22552. {
  22553. name: "Kaiju-er",
  22554. height: math.unit(600, "feet")
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22560. {
  22561. front: {
  22562. height: math.unit(6 + 5 / 12, "feet"),
  22563. weight: math.unit(180, "lb"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/lexir/front.svg",
  22567. extra: 180 / 172,
  22568. bottom: 12 / 192
  22569. }
  22570. },
  22571. back: {
  22572. height: math.unit(6 + 5 / 12, "feet"),
  22573. weight: math.unit(180, "lb"),
  22574. name: "Back",
  22575. image: {
  22576. source: "./media/characters/lexir/back.svg",
  22577. extra: 183.84 / 175.5,
  22578. bottom: 3.1 / 187
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Very Smal",
  22585. height: math.unit(1, "nm")
  22586. },
  22587. {
  22588. name: "Normal",
  22589. height: math.unit(6 + 5 / 12, "feet"),
  22590. default: true
  22591. },
  22592. {
  22593. name: "Macro",
  22594. height: math.unit(1, "mile")
  22595. },
  22596. {
  22597. name: "Megamacro",
  22598. height: math.unit(50, "miles")
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(1.5, "meters"),
  22607. weight: math.unit(100, "lb"),
  22608. name: "Front",
  22609. image: {
  22610. source: "./media/characters/maksio/front.svg",
  22611. extra: 1549 / 1531,
  22612. bottom: 123.7 / 1674.5429
  22613. }
  22614. },
  22615. back: {
  22616. height: math.unit(1.5, "meters"),
  22617. weight: math.unit(100, "lb"),
  22618. name: "Back",
  22619. image: {
  22620. source: "./media/characters/maksio/back.svg",
  22621. extra: 1541 / 1509,
  22622. bottom: 97 / 1639
  22623. }
  22624. },
  22625. hand: {
  22626. height: math.unit(0.621, "feet"),
  22627. name: "Hand",
  22628. image: {
  22629. source: "./media/characters/maksio/hand.svg"
  22630. }
  22631. },
  22632. foot: {
  22633. height: math.unit(1.611, "feet"),
  22634. name: "Foot",
  22635. image: {
  22636. source: "./media/characters/maksio/foot.svg"
  22637. }
  22638. },
  22639. },
  22640. [
  22641. {
  22642. name: "Shrunken",
  22643. height: math.unit(10, "cm")
  22644. },
  22645. {
  22646. name: "Normal",
  22647. height: math.unit(150, "cm"),
  22648. default: true
  22649. },
  22650. ]
  22651. ))
  22652. characterMakers.push(() => makeCharacter(
  22653. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22654. {
  22655. front: {
  22656. height: math.unit(100, "feet"),
  22657. name: "Front",
  22658. image: {
  22659. source: "./media/characters/erza-bear/front.svg",
  22660. extra: 2449 / 2390,
  22661. bottom: 46 / 2494
  22662. }
  22663. },
  22664. back: {
  22665. height: math.unit(100, "feet"),
  22666. name: "Back",
  22667. image: {
  22668. source: "./media/characters/erza-bear/back.svg",
  22669. extra: 2489 / 2430,
  22670. bottom: 85.4 / 2480
  22671. }
  22672. },
  22673. tail: {
  22674. height: math.unit(42, "feet"),
  22675. name: "Tail",
  22676. image: {
  22677. source: "./media/characters/erza-bear/tail.svg"
  22678. }
  22679. },
  22680. tongue: {
  22681. height: math.unit(8, "feet"),
  22682. name: "Tongue",
  22683. image: {
  22684. source: "./media/characters/erza-bear/tongue.svg"
  22685. }
  22686. },
  22687. dick: {
  22688. height: math.unit(10.5, "feet"),
  22689. name: "Dick",
  22690. image: {
  22691. source: "./media/characters/erza-bear/dick.svg"
  22692. }
  22693. },
  22694. dickVertical: {
  22695. height: math.unit(16.9, "feet"),
  22696. name: "Dick (Vertical)",
  22697. image: {
  22698. source: "./media/characters/erza-bear/dick-vertical.svg"
  22699. }
  22700. },
  22701. },
  22702. [
  22703. {
  22704. name: "Macro",
  22705. height: math.unit(100, "feet"),
  22706. default: true
  22707. },
  22708. ]
  22709. ))
  22710. characterMakers.push(() => makeCharacter(
  22711. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22712. {
  22713. front: {
  22714. height: math.unit(172, "cm"),
  22715. weight: math.unit(73, "kg"),
  22716. name: "Front",
  22717. image: {
  22718. source: "./media/characters/violet-flor/front.svg",
  22719. extra: 1530 / 1442,
  22720. bottom: 61.9 / 1588.8
  22721. }
  22722. },
  22723. back: {
  22724. height: math.unit(180, "cm"),
  22725. weight: math.unit(73, "kg"),
  22726. name: "Back",
  22727. image: {
  22728. source: "./media/characters/violet-flor/back.svg",
  22729. extra: 1692 / 1630,
  22730. bottom: 20 / 1712
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Normal",
  22737. height: math.unit(172, "cm"),
  22738. default: true
  22739. },
  22740. ]
  22741. ))
  22742. characterMakers.push(() => makeCharacter(
  22743. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22744. {
  22745. front: {
  22746. height: math.unit(6, "feet"),
  22747. weight: math.unit(220, "lb"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/lynn-rhea/front.svg",
  22751. extra: 310 / 273
  22752. }
  22753. },
  22754. back: {
  22755. height: math.unit(6, "feet"),
  22756. weight: math.unit(220, "lb"),
  22757. name: "Back",
  22758. image: {
  22759. source: "./media/characters/lynn-rhea/back.svg",
  22760. extra: 310 / 273
  22761. }
  22762. },
  22763. dicks: {
  22764. height: math.unit(0.9, "feet"),
  22765. name: "Dicks",
  22766. image: {
  22767. source: "./media/characters/lynn-rhea/dicks.svg"
  22768. }
  22769. },
  22770. slit: {
  22771. height: math.unit(0.4, "feet"),
  22772. name: "Slit",
  22773. image: {
  22774. source: "./media/characters/lynn-rhea/slit.svg"
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Micro",
  22781. height: math.unit(1, "inch")
  22782. },
  22783. {
  22784. name: "Macro",
  22785. height: math.unit(60, "feet"),
  22786. default: true
  22787. },
  22788. {
  22789. name: "Megamacro",
  22790. height: math.unit(2, "miles")
  22791. },
  22792. {
  22793. name: "Gigamacro",
  22794. height: math.unit(3, "earths")
  22795. },
  22796. {
  22797. name: "Galactic",
  22798. height: math.unit(0.8, "galaxies")
  22799. },
  22800. ]
  22801. ))
  22802. characterMakers.push(() => makeCharacter(
  22803. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22804. {
  22805. front: {
  22806. height: math.unit(1600, "feet"),
  22807. weight: math.unit(85758785169, "kg"),
  22808. name: "Front",
  22809. image: {
  22810. source: "./media/characters/valathos/front.svg",
  22811. extra: 1451 / 1339
  22812. }
  22813. },
  22814. },
  22815. [
  22816. {
  22817. name: "Macro",
  22818. height: math.unit(1600, "feet"),
  22819. default: true
  22820. },
  22821. ]
  22822. ))
  22823. characterMakers.push(() => makeCharacter(
  22824. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22825. {
  22826. front: {
  22827. height: math.unit(7 + 5 / 12, "feet"),
  22828. weight: math.unit(300, "lb"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/azula/front.svg",
  22832. extra: 3208 / 2880,
  22833. bottom: 80.2 / 3277
  22834. }
  22835. },
  22836. back: {
  22837. height: math.unit(7 + 5 / 12, "feet"),
  22838. weight: math.unit(300, "lb"),
  22839. name: "Back",
  22840. image: {
  22841. source: "./media/characters/azula/back.svg",
  22842. extra: 3169 / 2822,
  22843. bottom: 150.6 / 3321
  22844. }
  22845. },
  22846. },
  22847. [
  22848. {
  22849. name: "Normal",
  22850. height: math.unit(7 + 5 / 12, "feet"),
  22851. default: true
  22852. },
  22853. {
  22854. name: "Big",
  22855. height: math.unit(20, "feet")
  22856. },
  22857. ]
  22858. ))
  22859. characterMakers.push(() => makeCharacter(
  22860. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22861. {
  22862. front: {
  22863. height: math.unit(5 + 1 / 12, "feet"),
  22864. weight: math.unit(110, "lb"),
  22865. name: "Front",
  22866. image: {
  22867. source: "./media/characters/rupert/front.svg",
  22868. extra: 1549 / 1495,
  22869. bottom: 54.2 / 1604.4
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Normal",
  22876. height: math.unit(5 + 1 / 12, "feet"),
  22877. default: true
  22878. },
  22879. ]
  22880. ))
  22881. characterMakers.push(() => makeCharacter(
  22882. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22883. {
  22884. front: {
  22885. height: math.unit(8 + 4 / 12, "feet"),
  22886. weight: math.unit(350, "lb"),
  22887. name: "Front",
  22888. image: {
  22889. source: "./media/characters/sheera-castellar/front.svg",
  22890. extra: 1957 / 1894,
  22891. bottom: 26.97 / 1975.017
  22892. }
  22893. },
  22894. side: {
  22895. height: math.unit(8 + 4 / 12, "feet"),
  22896. weight: math.unit(350, "lb"),
  22897. name: "Side",
  22898. image: {
  22899. source: "./media/characters/sheera-castellar/side.svg",
  22900. extra: 1957 / 1894
  22901. }
  22902. },
  22903. back: {
  22904. height: math.unit(8 + 4 / 12, "feet"),
  22905. weight: math.unit(350, "lb"),
  22906. name: "Back",
  22907. image: {
  22908. source: "./media/characters/sheera-castellar/back.svg",
  22909. extra: 1957 / 1894
  22910. }
  22911. },
  22912. angled: {
  22913. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22914. weight: math.unit(350, "lb"),
  22915. name: "Angled",
  22916. image: {
  22917. source: "./media/characters/sheera-castellar/angled.svg",
  22918. extra: 1807 / 1707,
  22919. bottom: 68 / 1875
  22920. }
  22921. },
  22922. genitals: {
  22923. height: math.unit(2.2, "feet"),
  22924. name: "Genitals",
  22925. image: {
  22926. source: "./media/characters/sheera-castellar/genitals.svg"
  22927. }
  22928. },
  22929. taur: {
  22930. height: math.unit(10 + 6/12, "feet"),
  22931. name: "Taur",
  22932. image: {
  22933. source: "./media/characters/sheera-castellar/taur.svg",
  22934. extra: 2017/1909,
  22935. bottom: 185/2202
  22936. }
  22937. },
  22938. },
  22939. [
  22940. {
  22941. name: "Normal",
  22942. height: math.unit(8 + 4 / 12, "feet")
  22943. },
  22944. {
  22945. name: "Macro",
  22946. height: math.unit(150, "feet"),
  22947. default: true
  22948. },
  22949. {
  22950. name: "Macro+",
  22951. height: math.unit(800, "feet")
  22952. },
  22953. ]
  22954. ))
  22955. characterMakers.push(() => makeCharacter(
  22956. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22957. {
  22958. front: {
  22959. height: math.unit(6, "feet"),
  22960. weight: math.unit(150, "lb"),
  22961. name: "Front",
  22962. image: {
  22963. source: "./media/characters/jaipur/front.svg",
  22964. extra: 3860 / 3731,
  22965. bottom: 287 / 4140
  22966. }
  22967. },
  22968. back: {
  22969. height: math.unit(6, "feet"),
  22970. weight: math.unit(150, "lb"),
  22971. name: "Back",
  22972. image: {
  22973. source: "./media/characters/jaipur/back.svg",
  22974. extra: 4060 / 3930,
  22975. bottom: 151 / 4200
  22976. }
  22977. },
  22978. },
  22979. [
  22980. {
  22981. name: "Normal",
  22982. height: math.unit(1.85, "meters"),
  22983. default: true
  22984. },
  22985. {
  22986. name: "Macro",
  22987. height: math.unit(150, "meters")
  22988. },
  22989. {
  22990. name: "Macro+",
  22991. height: math.unit(0.5, "miles")
  22992. },
  22993. {
  22994. name: "Macro++",
  22995. height: math.unit(2.5, "miles")
  22996. },
  22997. {
  22998. name: "Macro+++",
  22999. height: math.unit(12, "miles")
  23000. },
  23001. {
  23002. name: "Macro++++",
  23003. height: math.unit(120, "miles")
  23004. },
  23005. {
  23006. name: "Macro+++++",
  23007. height: math.unit(1200, "miles")
  23008. },
  23009. ]
  23010. ))
  23011. characterMakers.push(() => makeCharacter(
  23012. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23013. {
  23014. front: {
  23015. height: math.unit(6, "feet"),
  23016. weight: math.unit(150, "lb"),
  23017. name: "Front",
  23018. image: {
  23019. source: "./media/characters/sheila-wolf/front.svg",
  23020. extra: 1931 / 1808,
  23021. bottom: 29.5 / 1960
  23022. }
  23023. },
  23024. dick: {
  23025. height: math.unit(1.464, "feet"),
  23026. name: "Dick",
  23027. image: {
  23028. source: "./media/characters/sheila-wolf/dick.svg"
  23029. }
  23030. },
  23031. muzzle: {
  23032. height: math.unit(0.513, "feet"),
  23033. name: "Muzzle",
  23034. image: {
  23035. source: "./media/characters/sheila-wolf/muzzle.svg"
  23036. }
  23037. },
  23038. },
  23039. [
  23040. {
  23041. name: "Macro",
  23042. height: math.unit(70, "feet"),
  23043. default: true
  23044. },
  23045. ]
  23046. ))
  23047. characterMakers.push(() => makeCharacter(
  23048. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23049. {
  23050. front: {
  23051. height: math.unit(32, "meters"),
  23052. weight: math.unit(300000, "kg"),
  23053. name: "Front",
  23054. image: {
  23055. source: "./media/characters/almor/front.svg",
  23056. extra: 1408 / 1322,
  23057. bottom: 94.6 / 1506.5
  23058. }
  23059. },
  23060. },
  23061. [
  23062. {
  23063. name: "Macro",
  23064. height: math.unit(32, "meters"),
  23065. default: true
  23066. },
  23067. ]
  23068. ))
  23069. characterMakers.push(() => makeCharacter(
  23070. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23071. {
  23072. front: {
  23073. height: math.unit(7, "feet"),
  23074. weight: math.unit(200, "lb"),
  23075. name: "Front",
  23076. image: {
  23077. source: "./media/characters/silver/front.svg",
  23078. extra: 472.1 / 450.5,
  23079. bottom: 26.5 / 499.424
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Normal",
  23086. height: math.unit(7, "feet"),
  23087. default: true
  23088. },
  23089. {
  23090. name: "Macro",
  23091. height: math.unit(800, "feet")
  23092. },
  23093. {
  23094. name: "Megamacro",
  23095. height: math.unit(250, "miles")
  23096. },
  23097. ]
  23098. ))
  23099. characterMakers.push(() => makeCharacter(
  23100. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23101. {
  23102. front: {
  23103. height: math.unit(6, "feet"),
  23104. weight: math.unit(150, "lb"),
  23105. name: "Front",
  23106. image: {
  23107. source: "./media/characters/pliskin/front.svg",
  23108. extra: 1469 / 1359,
  23109. bottom: 70 / 1540
  23110. }
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Micro",
  23116. height: math.unit(3, "inches")
  23117. },
  23118. {
  23119. name: "Normal",
  23120. height: math.unit(5 + 11 / 12, "feet"),
  23121. default: true
  23122. },
  23123. {
  23124. name: "Macro",
  23125. height: math.unit(120, "feet")
  23126. },
  23127. ]
  23128. ))
  23129. characterMakers.push(() => makeCharacter(
  23130. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23131. {
  23132. front: {
  23133. height: math.unit(6, "feet"),
  23134. weight: math.unit(150, "lb"),
  23135. name: "Front",
  23136. image: {
  23137. source: "./media/characters/sammy/front.svg",
  23138. extra: 1193 / 1089,
  23139. bottom: 30.5 / 1226
  23140. }
  23141. },
  23142. },
  23143. [
  23144. {
  23145. name: "Macro",
  23146. height: math.unit(1700, "feet"),
  23147. default: true
  23148. },
  23149. {
  23150. name: "Examacro",
  23151. height: math.unit(2.5e9, "lightyears")
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23157. {
  23158. front: {
  23159. height: math.unit(21, "meters"),
  23160. weight: math.unit(12, "tonnes"),
  23161. name: "Front",
  23162. image: {
  23163. source: "./media/characters/kuru/front.svg",
  23164. extra: 4301 / 3785,
  23165. bottom: 371.3 / 4691
  23166. }
  23167. },
  23168. },
  23169. [
  23170. {
  23171. name: "Macro",
  23172. height: math.unit(21, "meters"),
  23173. default: true
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(23, "meters"),
  23182. weight: math.unit(12.2, "tonnes"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/rakka/front.svg",
  23186. extra: 4670 / 4169,
  23187. bottom: 301 / 4968.7
  23188. }
  23189. },
  23190. },
  23191. [
  23192. {
  23193. name: "Macro",
  23194. height: math.unit(23, "meters"),
  23195. default: true
  23196. },
  23197. ]
  23198. ))
  23199. characterMakers.push(() => makeCharacter(
  23200. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23201. {
  23202. front: {
  23203. height: math.unit(6, "feet"),
  23204. weight: math.unit(150, "lb"),
  23205. name: "Front",
  23206. image: {
  23207. source: "./media/characters/rhys-feline/front.svg",
  23208. extra: 2488 / 2308,
  23209. bottom: 35.67 / 2519.19
  23210. }
  23211. },
  23212. },
  23213. [
  23214. {
  23215. name: "Really Small",
  23216. height: math.unit(1, "nm")
  23217. },
  23218. {
  23219. name: "Micro",
  23220. height: math.unit(4, "inches")
  23221. },
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(4 + 10 / 12, "feet"),
  23225. default: true
  23226. },
  23227. {
  23228. name: "Macro",
  23229. height: math.unit(100, "feet")
  23230. },
  23231. {
  23232. name: "Megamacto",
  23233. height: math.unit(50, "miles")
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23239. {
  23240. side: {
  23241. height: math.unit(30, "feet"),
  23242. weight: math.unit(35000, "kg"),
  23243. name: "Side",
  23244. image: {
  23245. source: "./media/characters/alydar/side.svg",
  23246. extra: 234 / 222,
  23247. bottom: 6.5 / 241
  23248. }
  23249. },
  23250. front: {
  23251. height: math.unit(30, "feet"),
  23252. weight: math.unit(35000, "kg"),
  23253. name: "Front",
  23254. image: {
  23255. source: "./media/characters/alydar/front.svg",
  23256. extra: 223.37 / 210.2,
  23257. bottom: 22.3 / 246.76
  23258. }
  23259. },
  23260. top: {
  23261. height: math.unit(64.54, "feet"),
  23262. weight: math.unit(35000, "kg"),
  23263. name: "Top",
  23264. image: {
  23265. source: "./media/characters/alydar/top.svg"
  23266. }
  23267. },
  23268. anthro: {
  23269. height: math.unit(30, "feet"),
  23270. weight: math.unit(9000, "kg"),
  23271. name: "Anthro",
  23272. image: {
  23273. source: "./media/characters/alydar/anthro.svg",
  23274. extra: 432 / 421,
  23275. bottom: 7.18 / 440
  23276. }
  23277. },
  23278. maw: {
  23279. height: math.unit(11.693, "feet"),
  23280. name: "Maw",
  23281. image: {
  23282. source: "./media/characters/alydar/maw.svg"
  23283. }
  23284. },
  23285. head: {
  23286. height: math.unit(11.693, "feet"),
  23287. name: "Head",
  23288. image: {
  23289. source: "./media/characters/alydar/head.svg"
  23290. }
  23291. },
  23292. headAlt: {
  23293. height: math.unit(12.861, "feet"),
  23294. name: "Head (Alt)",
  23295. image: {
  23296. source: "./media/characters/alydar/head-alt.svg"
  23297. }
  23298. },
  23299. wing: {
  23300. height: math.unit(20.712, "feet"),
  23301. name: "Wing",
  23302. image: {
  23303. source: "./media/characters/alydar/wing.svg"
  23304. }
  23305. },
  23306. wingFeather: {
  23307. height: math.unit(9.662, "feet"),
  23308. name: "Wing Feather",
  23309. image: {
  23310. source: "./media/characters/alydar/wing-feather.svg"
  23311. }
  23312. },
  23313. countourFeather: {
  23314. height: math.unit(4.154, "feet"),
  23315. name: "Contour Feather",
  23316. image: {
  23317. source: "./media/characters/alydar/contour-feather.svg"
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Diplomatic",
  23324. height: math.unit(13, "feet"),
  23325. default: true
  23326. },
  23327. {
  23328. name: "Small",
  23329. height: math.unit(30, "feet")
  23330. },
  23331. {
  23332. name: "Normal",
  23333. height: math.unit(95, "feet"),
  23334. default: true
  23335. },
  23336. {
  23337. name: "Large",
  23338. height: math.unit(285, "feet")
  23339. },
  23340. {
  23341. name: "Incomprehensible",
  23342. height: math.unit(450, "megameters")
  23343. },
  23344. ]
  23345. ))
  23346. characterMakers.push(() => makeCharacter(
  23347. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23348. {
  23349. side: {
  23350. height: math.unit(11, "feet"),
  23351. weight: math.unit(1750, "kg"),
  23352. name: "Side",
  23353. image: {
  23354. source: "./media/characters/selicia/side.svg",
  23355. extra: 440 / 396,
  23356. bottom: 24.8 / 465.979
  23357. }
  23358. },
  23359. maw: {
  23360. height: math.unit(4.665, "feet"),
  23361. name: "Maw",
  23362. image: {
  23363. source: "./media/characters/selicia/maw.svg"
  23364. }
  23365. },
  23366. },
  23367. [
  23368. {
  23369. name: "Normal",
  23370. height: math.unit(11, "feet"),
  23371. default: true
  23372. },
  23373. ]
  23374. ))
  23375. characterMakers.push(() => makeCharacter(
  23376. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23377. {
  23378. side: {
  23379. height: math.unit(2 + 6 / 12, "feet"),
  23380. weight: math.unit(30, "lb"),
  23381. name: "Side",
  23382. image: {
  23383. source: "./media/characters/layla/side.svg",
  23384. extra: 244 / 188,
  23385. bottom: 18.2 / 262.1
  23386. }
  23387. },
  23388. back: {
  23389. height: math.unit(2 + 6 / 12, "feet"),
  23390. weight: math.unit(30, "lb"),
  23391. name: "Back",
  23392. image: {
  23393. source: "./media/characters/layla/back.svg",
  23394. extra: 308 / 241.5,
  23395. bottom: 8.9 / 316.8
  23396. }
  23397. },
  23398. cumming: {
  23399. height: math.unit(2 + 6 / 12, "feet"),
  23400. weight: math.unit(30, "lb"),
  23401. name: "Cumming",
  23402. image: {
  23403. source: "./media/characters/layla/cumming.svg",
  23404. extra: 342 / 279,
  23405. bottom: 595 / 938
  23406. }
  23407. },
  23408. dickFlaccid: {
  23409. height: math.unit(2.595, "feet"),
  23410. name: "Flaccid Genitals",
  23411. image: {
  23412. source: "./media/characters/layla/dick-flaccid.svg"
  23413. }
  23414. },
  23415. dickErect: {
  23416. height: math.unit(2.359, "feet"),
  23417. name: "Erect Genitals",
  23418. image: {
  23419. source: "./media/characters/layla/dick-erect.svg"
  23420. }
  23421. },
  23422. dragon: {
  23423. height: math.unit(40, "feet"),
  23424. name: "Dragon",
  23425. image: {
  23426. source: "./media/characters/layla/dragon.svg",
  23427. extra: 610/535,
  23428. bottom: 367/977
  23429. }
  23430. },
  23431. taur: {
  23432. height: math.unit(30, "feet"),
  23433. name: "Taur",
  23434. image: {
  23435. source: "./media/characters/layla/taur.svg",
  23436. extra: 1268/1199,
  23437. bottom: 112/1380
  23438. }
  23439. },
  23440. },
  23441. [
  23442. {
  23443. name: "Micro",
  23444. height: math.unit(1, "inch")
  23445. },
  23446. {
  23447. name: "Small",
  23448. height: math.unit(1, "foot")
  23449. },
  23450. {
  23451. name: "Normal",
  23452. height: math.unit(2 + 6 / 12, "feet"),
  23453. default: true
  23454. },
  23455. {
  23456. name: "Macro",
  23457. height: math.unit(200, "feet")
  23458. },
  23459. {
  23460. name: "Megamacro",
  23461. height: math.unit(1000, "miles")
  23462. },
  23463. {
  23464. name: "Planetary",
  23465. height: math.unit(8000, "miles")
  23466. },
  23467. {
  23468. name: "True Layla",
  23469. height: math.unit(200000 * 7, "multiverses")
  23470. },
  23471. ]
  23472. ))
  23473. characterMakers.push(() => makeCharacter(
  23474. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23475. {
  23476. back: {
  23477. height: math.unit(10.5, "feet"),
  23478. weight: math.unit(800, "lb"),
  23479. name: "Back",
  23480. image: {
  23481. source: "./media/characters/knox/back.svg",
  23482. extra: 1486 / 1089,
  23483. bottom: 107 / 1601.4
  23484. }
  23485. },
  23486. side: {
  23487. height: math.unit(10.5, "feet"),
  23488. weight: math.unit(800, "lb"),
  23489. name: "Side",
  23490. image: {
  23491. source: "./media/characters/knox/side.svg",
  23492. extra: 244 / 218,
  23493. bottom: 14 / 260
  23494. }
  23495. },
  23496. },
  23497. [
  23498. {
  23499. name: "Compact",
  23500. height: math.unit(10.5, "feet"),
  23501. default: true
  23502. },
  23503. {
  23504. name: "Dynamax",
  23505. height: math.unit(210, "feet")
  23506. },
  23507. {
  23508. name: "Full Macro",
  23509. height: math.unit(850, "feet")
  23510. },
  23511. ]
  23512. ))
  23513. characterMakers.push(() => makeCharacter(
  23514. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23515. {
  23516. front: {
  23517. height: math.unit(6, "feet"),
  23518. weight: math.unit(152, "lb"),
  23519. name: "Front",
  23520. image: {
  23521. source: "./media/characters/shin-pikachu/front.svg",
  23522. extra: 1854/1602,
  23523. bottom: 166/2020
  23524. }
  23525. },
  23526. hand: {
  23527. height: math.unit(1.055, "feet"),
  23528. name: "Hand",
  23529. image: {
  23530. source: "./media/characters/shin-pikachu/hand.svg"
  23531. }
  23532. },
  23533. foot: {
  23534. height: math.unit(1.1, "feet"),
  23535. name: "Foot",
  23536. image: {
  23537. source: "./media/characters/shin-pikachu/foot.svg"
  23538. }
  23539. },
  23540. collar: {
  23541. height: math.unit(0.386, "feet"),
  23542. name: "Collar",
  23543. image: {
  23544. source: "./media/characters/shin-pikachu/collar.svg"
  23545. }
  23546. },
  23547. },
  23548. [
  23549. {
  23550. name: "Smallest",
  23551. height: math.unit(0.5, "inches")
  23552. },
  23553. {
  23554. name: "Micro",
  23555. height: math.unit(6, "inches")
  23556. },
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(6, "feet"),
  23560. default: true
  23561. },
  23562. {
  23563. name: "Macro",
  23564. height: math.unit(150, "feet")
  23565. },
  23566. ]
  23567. ))
  23568. characterMakers.push(() => makeCharacter(
  23569. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23570. {
  23571. front: {
  23572. height: math.unit(28, "feet"),
  23573. weight: math.unit(10500, "lb"),
  23574. name: "Front",
  23575. image: {
  23576. source: "./media/characters/kayda/front.svg",
  23577. extra: 1536 / 1428,
  23578. bottom: 68.7 / 1603
  23579. }
  23580. },
  23581. back: {
  23582. height: math.unit(28, "feet"),
  23583. weight: math.unit(10500, "lb"),
  23584. name: "Back",
  23585. image: {
  23586. source: "./media/characters/kayda/back.svg",
  23587. extra: 1557 / 1464,
  23588. bottom: 39.5 / 1597.49
  23589. }
  23590. },
  23591. dick: {
  23592. height: math.unit(3.858, "feet"),
  23593. name: "Dick",
  23594. image: {
  23595. source: "./media/characters/kayda/dick.svg"
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Macro",
  23602. height: math.unit(28, "feet"),
  23603. default: true
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23609. {
  23610. front: {
  23611. height: math.unit(10 + 11 / 12, "feet"),
  23612. weight: math.unit(1400, "lb"),
  23613. name: "Front",
  23614. image: {
  23615. source: "./media/characters/brian/front.svg",
  23616. extra: 737 / 692,
  23617. bottom: 55.4 / 785
  23618. }
  23619. },
  23620. },
  23621. [
  23622. {
  23623. name: "Normal",
  23624. height: math.unit(10 + 11 / 12, "feet"),
  23625. default: true
  23626. },
  23627. ]
  23628. ))
  23629. characterMakers.push(() => makeCharacter(
  23630. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23631. {
  23632. front: {
  23633. height: math.unit(5 + 8 / 12, "feet"),
  23634. weight: math.unit(140, "lb"),
  23635. name: "Front",
  23636. image: {
  23637. source: "./media/characters/khemri/front.svg",
  23638. extra: 4780 / 4059,
  23639. bottom: 80.1 / 4859.25
  23640. }
  23641. },
  23642. },
  23643. [
  23644. {
  23645. name: "Micro",
  23646. height: math.unit(6, "inches")
  23647. },
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(5 + 8 / 12, "feet"),
  23651. default: true
  23652. },
  23653. ]
  23654. ))
  23655. characterMakers.push(() => makeCharacter(
  23656. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23657. {
  23658. front: {
  23659. height: math.unit(13, "feet"),
  23660. weight: math.unit(1700, "lb"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/felix-braveheart/front.svg",
  23664. extra: 1222 / 1157,
  23665. bottom: 53.2 / 1280
  23666. }
  23667. },
  23668. back: {
  23669. height: math.unit(13, "feet"),
  23670. weight: math.unit(1700, "lb"),
  23671. name: "Back",
  23672. image: {
  23673. source: "./media/characters/felix-braveheart/back.svg",
  23674. extra: 1277 / 1203,
  23675. bottom: 50.2 / 1327
  23676. }
  23677. },
  23678. feral: {
  23679. height: math.unit(6, "feet"),
  23680. weight: math.unit(400, "lb"),
  23681. name: "Feral",
  23682. image: {
  23683. source: "./media/characters/felix-braveheart/feral.svg",
  23684. extra: 682 / 625,
  23685. bottom: 6.9 / 688
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Normal",
  23692. height: math.unit(13, "feet"),
  23693. default: true
  23694. },
  23695. ]
  23696. ))
  23697. characterMakers.push(() => makeCharacter(
  23698. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23699. {
  23700. side: {
  23701. height: math.unit(5 + 11 / 12, "feet"),
  23702. weight: math.unit(1400, "lb"),
  23703. name: "Side",
  23704. image: {
  23705. source: "./media/characters/shadow-blade/side.svg",
  23706. extra: 1726 / 1267,
  23707. bottom: 58.4 / 1785
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Normal",
  23714. height: math.unit(5 + 11 / 12, "feet"),
  23715. default: true
  23716. },
  23717. ]
  23718. ))
  23719. characterMakers.push(() => makeCharacter(
  23720. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23721. {
  23722. front: {
  23723. height: math.unit(1 + 6 / 12, "feet"),
  23724. weight: math.unit(25, "lb"),
  23725. name: "Front",
  23726. image: {
  23727. source: "./media/characters/karla-halldor/front.svg",
  23728. extra: 1459 / 1383,
  23729. bottom: 12 / 1472
  23730. }
  23731. },
  23732. },
  23733. [
  23734. {
  23735. name: "Normal",
  23736. height: math.unit(1 + 6 / 12, "feet"),
  23737. default: true
  23738. },
  23739. ]
  23740. ))
  23741. characterMakers.push(() => makeCharacter(
  23742. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23743. {
  23744. front: {
  23745. height: math.unit(6 + 2 / 12, "feet"),
  23746. weight: math.unit(160, "lb"),
  23747. name: "Front",
  23748. image: {
  23749. source: "./media/characters/ariam/front.svg",
  23750. extra: 714 / 617,
  23751. bottom: 23.4 / 737,
  23752. }
  23753. },
  23754. squatting: {
  23755. height: math.unit(4.1, "feet"),
  23756. weight: math.unit(160, "lb"),
  23757. name: "Squatting",
  23758. image: {
  23759. source: "./media/characters/ariam/squatting.svg",
  23760. extra: 2617 / 2112,
  23761. bottom: 61.2 / 2681,
  23762. }
  23763. },
  23764. },
  23765. [
  23766. {
  23767. name: "Normal",
  23768. height: math.unit(6 + 2 / 12, "feet"),
  23769. default: true
  23770. },
  23771. {
  23772. name: "Normal+",
  23773. height: math.unit(4, "meters")
  23774. },
  23775. {
  23776. name: "Macro",
  23777. height: math.unit(50, "meters")
  23778. },
  23779. {
  23780. name: "Macro+",
  23781. height: math.unit(100, "meters")
  23782. },
  23783. {
  23784. name: "Megamacro",
  23785. height: math.unit(20, "km")
  23786. },
  23787. ]
  23788. ))
  23789. characterMakers.push(() => makeCharacter(
  23790. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23791. {
  23792. front: {
  23793. height: math.unit(1.67, "meters"),
  23794. weight: math.unit(140, "lb"),
  23795. name: "Front",
  23796. image: {
  23797. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23798. extra: 438 / 410,
  23799. bottom: 0.75 / 439
  23800. }
  23801. },
  23802. },
  23803. [
  23804. {
  23805. name: "Shrunken",
  23806. height: math.unit(7.6, "cm")
  23807. },
  23808. {
  23809. name: "Human Scale",
  23810. height: math.unit(1.67, "meters")
  23811. },
  23812. {
  23813. name: "Wolxi Scale",
  23814. height: math.unit(36.7, "meters"),
  23815. default: true
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23821. {
  23822. front: {
  23823. height: math.unit(1.73, "meters"),
  23824. weight: math.unit(240, "lb"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/izue-two-mothers/front.svg",
  23828. extra: 469 / 437,
  23829. bottom: 1.24 / 470.6
  23830. }
  23831. },
  23832. },
  23833. [
  23834. {
  23835. name: "Shrunken",
  23836. height: math.unit(7.86, "cm")
  23837. },
  23838. {
  23839. name: "Human Scale",
  23840. height: math.unit(1.73, "meters")
  23841. },
  23842. {
  23843. name: "Wolxi Scale",
  23844. height: math.unit(38, "meters"),
  23845. default: true
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23851. {
  23852. front: {
  23853. height: math.unit(1.55, "meters"),
  23854. weight: math.unit(120, "lb"),
  23855. name: "Front",
  23856. image: {
  23857. source: "./media/characters/teeku-love-shack/front.svg",
  23858. extra: 387 / 362,
  23859. bottom: 1.51 / 388
  23860. }
  23861. },
  23862. },
  23863. [
  23864. {
  23865. name: "Shrunken",
  23866. height: math.unit(7, "cm")
  23867. },
  23868. {
  23869. name: "Human Scale",
  23870. height: math.unit(1.55, "meters")
  23871. },
  23872. {
  23873. name: "Wolxi Scale",
  23874. height: math.unit(34.1, "meters"),
  23875. default: true
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23881. {
  23882. front: {
  23883. height: math.unit(1.83, "meters"),
  23884. weight: math.unit(135, "lb"),
  23885. name: "Front",
  23886. image: {
  23887. source: "./media/characters/dejma-the-red/front.svg",
  23888. extra: 480 / 458,
  23889. bottom: 1.8 / 482
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Shrunken",
  23896. height: math.unit(8.3, "cm")
  23897. },
  23898. {
  23899. name: "Human Scale",
  23900. height: math.unit(1.83, "meters")
  23901. },
  23902. {
  23903. name: "Wolxi Scale",
  23904. height: math.unit(40, "meters"),
  23905. default: true
  23906. },
  23907. ]
  23908. ))
  23909. characterMakers.push(() => makeCharacter(
  23910. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23911. {
  23912. front: {
  23913. height: math.unit(1.78, "meters"),
  23914. weight: math.unit(65, "kg"),
  23915. name: "Front",
  23916. image: {
  23917. source: "./media/characters/aki/front.svg",
  23918. extra: 452 / 415
  23919. }
  23920. },
  23921. frontNsfw: {
  23922. height: math.unit(1.78, "meters"),
  23923. weight: math.unit(65, "kg"),
  23924. name: "Front (NSFW)",
  23925. image: {
  23926. source: "./media/characters/aki/front-nsfw.svg",
  23927. extra: 452 / 415
  23928. }
  23929. },
  23930. back: {
  23931. height: math.unit(1.78, "meters"),
  23932. weight: math.unit(65, "kg"),
  23933. name: "Back",
  23934. image: {
  23935. source: "./media/characters/aki/back.svg",
  23936. extra: 452 / 415
  23937. }
  23938. },
  23939. rump: {
  23940. height: math.unit(2.05, "feet"),
  23941. name: "Rump",
  23942. image: {
  23943. source: "./media/characters/aki/rump.svg"
  23944. }
  23945. },
  23946. dick: {
  23947. height: math.unit(0.95, "feet"),
  23948. name: "Dick",
  23949. image: {
  23950. source: "./media/characters/aki/dick.svg"
  23951. }
  23952. },
  23953. },
  23954. [
  23955. {
  23956. name: "Micro",
  23957. height: math.unit(15, "cm")
  23958. },
  23959. {
  23960. name: "Normal",
  23961. height: math.unit(178, "cm"),
  23962. default: true
  23963. },
  23964. {
  23965. name: "Macro",
  23966. height: math.unit(214, "m")
  23967. },
  23968. {
  23969. name: "Macro+",
  23970. height: math.unit(534, "m")
  23971. },
  23972. ]
  23973. ))
  23974. characterMakers.push(() => makeCharacter(
  23975. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23976. {
  23977. front: {
  23978. height: math.unit(5 + 5 / 12, "feet"),
  23979. weight: math.unit(120, "lb"),
  23980. name: "Front",
  23981. image: {
  23982. source: "./media/characters/ari/front.svg",
  23983. extra: 714.5 / 682,
  23984. bottom: 8 / 722.5
  23985. }
  23986. },
  23987. },
  23988. [
  23989. {
  23990. name: "Normal",
  23991. height: math.unit(5 + 5 / 12, "feet")
  23992. },
  23993. {
  23994. name: "Macro",
  23995. height: math.unit(100, "feet"),
  23996. default: true
  23997. },
  23998. {
  23999. name: "Megamacro",
  24000. height: math.unit(100, "miles")
  24001. },
  24002. {
  24003. name: "Gigamacro",
  24004. height: math.unit(80000, "miles")
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24010. {
  24011. side: {
  24012. height: math.unit(9, "feet"),
  24013. weight: math.unit(400, "kg"),
  24014. name: "Side",
  24015. image: {
  24016. source: "./media/characters/bolt/side.svg",
  24017. extra: 1126 / 896,
  24018. bottom: 60 / 1187.3,
  24019. }
  24020. },
  24021. },
  24022. [
  24023. {
  24024. name: "Micro",
  24025. height: math.unit(5, "inches")
  24026. },
  24027. {
  24028. name: "Normal",
  24029. height: math.unit(9, "feet"),
  24030. default: true
  24031. },
  24032. {
  24033. name: "Macro",
  24034. height: math.unit(700, "feet")
  24035. },
  24036. {
  24037. name: "Max Size",
  24038. height: math.unit(1.52e22, "yottameters")
  24039. },
  24040. ]
  24041. ))
  24042. characterMakers.push(() => makeCharacter(
  24043. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24044. {
  24045. front: {
  24046. height: math.unit(4.53, "meters"),
  24047. weight: math.unit(3, "tons"),
  24048. name: "Front",
  24049. image: {
  24050. source: "./media/characters/draekon-sylviar/front.svg",
  24051. extra: 1228 / 1068,
  24052. bottom: 41 / 1270
  24053. }
  24054. },
  24055. tail: {
  24056. height: math.unit(1.772, "meter"),
  24057. name: "Tail",
  24058. image: {
  24059. source: "./media/characters/draekon-sylviar/tail.svg"
  24060. }
  24061. },
  24062. head: {
  24063. height: math.unit(1.331, "meter"),
  24064. name: "Head",
  24065. image: {
  24066. source: "./media/characters/draekon-sylviar/head.svg"
  24067. }
  24068. },
  24069. hand: {
  24070. height: math.unit(0.564, "meter"),
  24071. name: "Hand",
  24072. image: {
  24073. source: "./media/characters/draekon-sylviar/hand.svg"
  24074. }
  24075. },
  24076. foot: {
  24077. height: math.unit(0.621, "meter"),
  24078. name: "Foot",
  24079. image: {
  24080. source: "./media/characters/draekon-sylviar/foot.svg",
  24081. bottom: 32 / 324
  24082. }
  24083. },
  24084. dick: {
  24085. height: math.unit(61, "cm"),
  24086. name: "Dick",
  24087. image: {
  24088. source: "./media/characters/draekon-sylviar/dick.svg"
  24089. }
  24090. },
  24091. dickseparated: {
  24092. height: math.unit(61, "cm"),
  24093. name: "Dick-separated",
  24094. image: {
  24095. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24096. }
  24097. },
  24098. },
  24099. [
  24100. {
  24101. name: "Small",
  24102. height: math.unit(4.53 / 2, "meters"),
  24103. default: true
  24104. },
  24105. {
  24106. name: "Normal",
  24107. height: math.unit(4.53, "meters"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Large",
  24112. height: math.unit(4.53 * 2, "meters"),
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(6 + 2 / 12, "feet"),
  24121. weight: math.unit(180, "lb"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/brawler/front.svg",
  24125. extra: 3301 / 3027,
  24126. bottom: 138 / 3439
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Normal",
  24133. height: math.unit(6 + 2 / 12, "feet"),
  24134. default: true
  24135. },
  24136. ]
  24137. ))
  24138. characterMakers.push(() => makeCharacter(
  24139. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24140. {
  24141. front: {
  24142. height: math.unit(11, "feet"),
  24143. weight: math.unit(1000, "lb"),
  24144. name: "Front",
  24145. image: {
  24146. source: "./media/characters/alex/front.svg",
  24147. bottom: 44.5 / 620
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Micro",
  24154. height: math.unit(5, "inches")
  24155. },
  24156. {
  24157. name: "Normal",
  24158. height: math.unit(11, "feet"),
  24159. default: true
  24160. },
  24161. {
  24162. name: "Macro",
  24163. height: math.unit(9.5e9, "feet")
  24164. },
  24165. {
  24166. name: "Max Size",
  24167. height: math.unit(1.4e283, "yottameters")
  24168. },
  24169. ]
  24170. ))
  24171. characterMakers.push(() => makeCharacter(
  24172. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24173. {
  24174. female: {
  24175. height: math.unit(29.9, "m"),
  24176. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24177. name: "Female",
  24178. image: {
  24179. source: "./media/characters/zenari/female.svg",
  24180. extra: 3281.6 / 3217,
  24181. bottom: 72.2 / 3353
  24182. }
  24183. },
  24184. male: {
  24185. height: math.unit(27.7, "m"),
  24186. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24187. name: "Male",
  24188. image: {
  24189. source: "./media/characters/zenari/male.svg",
  24190. extra: 3008 / 2991,
  24191. bottom: 54.6 / 3069
  24192. }
  24193. },
  24194. },
  24195. [
  24196. {
  24197. name: "Macro",
  24198. height: math.unit(29.7, "meters"),
  24199. default: true
  24200. },
  24201. ]
  24202. ))
  24203. characterMakers.push(() => makeCharacter(
  24204. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24205. {
  24206. female: {
  24207. height: math.unit(23.8, "m"),
  24208. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24209. name: "Female",
  24210. image: {
  24211. source: "./media/characters/mactarian/female.svg",
  24212. extra: 2662 / 2569,
  24213. bottom: 73 / 2736
  24214. }
  24215. },
  24216. male: {
  24217. height: math.unit(23.8, "m"),
  24218. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24219. name: "Male",
  24220. image: {
  24221. source: "./media/characters/mactarian/male.svg",
  24222. extra: 2673 / 2600,
  24223. bottom: 76 / 2750
  24224. }
  24225. },
  24226. },
  24227. [
  24228. {
  24229. name: "Macro",
  24230. height: math.unit(23.8, "meters"),
  24231. default: true
  24232. },
  24233. ]
  24234. ))
  24235. characterMakers.push(() => makeCharacter(
  24236. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24237. {
  24238. female: {
  24239. height: math.unit(19.3, "m"),
  24240. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24241. name: "Female",
  24242. image: {
  24243. source: "./media/characters/umok/female.svg",
  24244. extra: 2186 / 2078,
  24245. bottom: 87 / 2277
  24246. }
  24247. },
  24248. male: {
  24249. height: math.unit(19.5, "m"),
  24250. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24251. name: "Male",
  24252. image: {
  24253. source: "./media/characters/umok/male.svg",
  24254. extra: 2233 / 2140,
  24255. bottom: 24.4 / 2258
  24256. }
  24257. },
  24258. },
  24259. [
  24260. {
  24261. name: "Macro",
  24262. height: math.unit(19.3, "meters"),
  24263. default: true
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24269. {
  24270. female: {
  24271. height: math.unit(26.15, "m"),
  24272. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24273. name: "Female",
  24274. image: {
  24275. source: "./media/characters/joraxian/female.svg",
  24276. extra: 2912 / 2824,
  24277. bottom: 36 / 2956
  24278. }
  24279. },
  24280. male: {
  24281. height: math.unit(25.4, "m"),
  24282. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24283. name: "Male",
  24284. image: {
  24285. source: "./media/characters/joraxian/male.svg",
  24286. extra: 2877 / 2721,
  24287. bottom: 82 / 2967
  24288. }
  24289. },
  24290. },
  24291. [
  24292. {
  24293. name: "Macro",
  24294. height: math.unit(26.15, "meters"),
  24295. default: true
  24296. },
  24297. ]
  24298. ))
  24299. characterMakers.push(() => makeCharacter(
  24300. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24301. {
  24302. female: {
  24303. height: math.unit(21.6, "m"),
  24304. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24305. name: "Female",
  24306. image: {
  24307. source: "./media/characters/sthara/female.svg",
  24308. extra: 2516 / 2347,
  24309. bottom: 21.5 / 2537
  24310. }
  24311. },
  24312. male: {
  24313. height: math.unit(24, "m"),
  24314. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24315. name: "Male",
  24316. image: {
  24317. source: "./media/characters/sthara/male.svg",
  24318. extra: 2732 / 2607,
  24319. bottom: 23 / 2732
  24320. }
  24321. },
  24322. },
  24323. [
  24324. {
  24325. name: "Macro",
  24326. height: math.unit(21.6, "meters"),
  24327. default: true
  24328. },
  24329. ]
  24330. ))
  24331. characterMakers.push(() => makeCharacter(
  24332. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24333. {
  24334. front: {
  24335. height: math.unit(6 + 4 / 12, "feet"),
  24336. weight: math.unit(175, "lb"),
  24337. name: "Front",
  24338. image: {
  24339. source: "./media/characters/luka-bryzant/front.svg",
  24340. extra: 311 / 289,
  24341. bottom: 4 / 315
  24342. }
  24343. },
  24344. back: {
  24345. height: math.unit(6 + 4 / 12, "feet"),
  24346. weight: math.unit(175, "lb"),
  24347. name: "Back",
  24348. image: {
  24349. source: "./media/characters/luka-bryzant/back.svg",
  24350. extra: 311 / 289,
  24351. bottom: 3.8 / 313.7
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Micro",
  24358. height: math.unit(10, "inches")
  24359. },
  24360. {
  24361. name: "Normal",
  24362. height: math.unit(6 + 4 / 12, "feet"),
  24363. default: true
  24364. },
  24365. {
  24366. name: "Large",
  24367. height: math.unit(12, "feet")
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24373. {
  24374. front: {
  24375. height: math.unit(5 + 7 / 12, "feet"),
  24376. weight: math.unit(185, "lb"),
  24377. name: "Front",
  24378. image: {
  24379. source: "./media/characters/aman-aquila/front.svg",
  24380. extra: 1013 / 976,
  24381. bottom: 45.6 / 1057
  24382. }
  24383. },
  24384. side: {
  24385. height: math.unit(5 + 7 / 12, "feet"),
  24386. weight: math.unit(185, "lb"),
  24387. name: "Side",
  24388. image: {
  24389. source: "./media/characters/aman-aquila/side.svg",
  24390. extra: 1054 / 1011,
  24391. bottom: 15 / 1070
  24392. }
  24393. },
  24394. back: {
  24395. height: math.unit(5 + 7 / 12, "feet"),
  24396. weight: math.unit(185, "lb"),
  24397. name: "Back",
  24398. image: {
  24399. source: "./media/characters/aman-aquila/back.svg",
  24400. extra: 1026 / 970,
  24401. bottom: 12 / 1039
  24402. }
  24403. },
  24404. head: {
  24405. height: math.unit(1.211, "feet"),
  24406. name: "Head",
  24407. image: {
  24408. source: "./media/characters/aman-aquila/head.svg",
  24409. }
  24410. },
  24411. },
  24412. [
  24413. {
  24414. name: "Minimicro",
  24415. height: math.unit(0.057, "inches")
  24416. },
  24417. {
  24418. name: "Micro",
  24419. height: math.unit(7, "inches")
  24420. },
  24421. {
  24422. name: "Mini",
  24423. height: math.unit(3 + 7 / 12, "feet")
  24424. },
  24425. {
  24426. name: "Normal",
  24427. height: math.unit(5 + 7 / 12, "feet"),
  24428. default: true
  24429. },
  24430. {
  24431. name: "Macro",
  24432. height: math.unit(157 + 7 / 12, "feet")
  24433. },
  24434. {
  24435. name: "Megamacro",
  24436. height: math.unit(1557 + 7 / 12, "feet")
  24437. },
  24438. {
  24439. name: "Gigamacro",
  24440. height: math.unit(15557 + 7 / 12, "feet")
  24441. },
  24442. ]
  24443. ))
  24444. characterMakers.push(() => makeCharacter(
  24445. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24446. {
  24447. front: {
  24448. height: math.unit(3 + 2 / 12, "inches"),
  24449. weight: math.unit(0.3, "ounces"),
  24450. name: "Front",
  24451. image: {
  24452. source: "./media/characters/hiphae/front.svg",
  24453. extra: 1931 / 1683,
  24454. bottom: 24 / 1955
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Normal",
  24461. height: math.unit(3 + 1 / 2, "inches"),
  24462. default: true
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24468. {
  24469. front: {
  24470. height: math.unit(5 + 10 / 12, "feet"),
  24471. weight: math.unit(165, "lb"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/nicky/front.svg",
  24475. extra: 3144 / 2886,
  24476. bottom: 45.6 / 3192
  24477. }
  24478. },
  24479. back: {
  24480. height: math.unit(5 + 10 / 12, "feet"),
  24481. weight: math.unit(165, "lb"),
  24482. name: "Back",
  24483. image: {
  24484. source: "./media/characters/nicky/back.svg",
  24485. extra: 3055 / 2804,
  24486. bottom: 28.4 / 3087
  24487. }
  24488. },
  24489. frontclothed: {
  24490. height: math.unit(5 + 10 / 12, "feet"),
  24491. weight: math.unit(165, "lb"),
  24492. name: "Front-clothed",
  24493. image: {
  24494. source: "./media/characters/nicky/front-clothed.svg",
  24495. extra: 3184.9 / 2926.9,
  24496. bottom: 86.5 / 3239.9
  24497. }
  24498. },
  24499. foot: {
  24500. height: math.unit(1.16, "feet"),
  24501. name: "Foot",
  24502. image: {
  24503. source: "./media/characters/nicky/foot.svg"
  24504. }
  24505. },
  24506. feet: {
  24507. height: math.unit(1.34, "feet"),
  24508. name: "Feet",
  24509. image: {
  24510. source: "./media/characters/nicky/feet.svg"
  24511. }
  24512. },
  24513. maw: {
  24514. height: math.unit(0.9, "feet"),
  24515. name: "Maw",
  24516. image: {
  24517. source: "./media/characters/nicky/maw.svg"
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Normal",
  24524. height: math.unit(5 + 10 / 12, "feet"),
  24525. default: true
  24526. },
  24527. {
  24528. name: "Macro",
  24529. height: math.unit(60, "feet")
  24530. },
  24531. {
  24532. name: "Megamacro",
  24533. height: math.unit(1, "mile")
  24534. },
  24535. ]
  24536. ))
  24537. characterMakers.push(() => makeCharacter(
  24538. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24539. {
  24540. side: {
  24541. height: math.unit(10, "feet"),
  24542. weight: math.unit(600, "lb"),
  24543. name: "Side",
  24544. image: {
  24545. source: "./media/characters/blair/side.svg",
  24546. bottom: 16.6 / 475,
  24547. extra: 458 / 431
  24548. }
  24549. },
  24550. },
  24551. [
  24552. {
  24553. name: "Micro",
  24554. height: math.unit(8, "inches")
  24555. },
  24556. {
  24557. name: "Normal",
  24558. height: math.unit(10, "feet"),
  24559. default: true
  24560. },
  24561. {
  24562. name: "Macro",
  24563. height: math.unit(180, "feet")
  24564. },
  24565. ]
  24566. ))
  24567. characterMakers.push(() => makeCharacter(
  24568. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24569. {
  24570. front: {
  24571. height: math.unit(5 + 4 / 12, "feet"),
  24572. weight: math.unit(125, "lb"),
  24573. name: "Front",
  24574. image: {
  24575. source: "./media/characters/fisher/front.svg",
  24576. extra: 444 / 390,
  24577. bottom: 2 / 444.8
  24578. }
  24579. },
  24580. },
  24581. [
  24582. {
  24583. name: "Micro",
  24584. height: math.unit(4, "inches")
  24585. },
  24586. {
  24587. name: "Normal",
  24588. height: math.unit(5 + 4 / 12, "feet"),
  24589. default: true
  24590. },
  24591. {
  24592. name: "Macro",
  24593. height: math.unit(100, "feet")
  24594. },
  24595. ]
  24596. ))
  24597. characterMakers.push(() => makeCharacter(
  24598. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24599. {
  24600. front: {
  24601. height: math.unit(6.71, "feet"),
  24602. weight: math.unit(200, "lb"),
  24603. capacity: math.unit(1000000, "people"),
  24604. name: "Front",
  24605. image: {
  24606. source: "./media/characters/gliss/front.svg",
  24607. extra: 2347 / 2231,
  24608. bottom: 113 / 2462
  24609. }
  24610. },
  24611. hammerspaceSize: {
  24612. height: math.unit(6.71 * 717, "feet"),
  24613. weight: math.unit(200, "lb"),
  24614. capacity: math.unit(1000000, "people"),
  24615. name: "Hammerspace Size",
  24616. image: {
  24617. source: "./media/characters/gliss/front.svg",
  24618. extra: 2347 / 2231,
  24619. bottom: 113 / 2462
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(6.71, "feet"),
  24627. default: true
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24633. {
  24634. side: {
  24635. height: math.unit(1.44, "m"),
  24636. weight: math.unit(80, "kg"),
  24637. name: "Side",
  24638. image: {
  24639. source: "./media/characters/dune-anderson/side.svg",
  24640. bottom: 49 / 1426
  24641. }
  24642. },
  24643. },
  24644. [
  24645. {
  24646. name: "Wolf-sized",
  24647. height: math.unit(1.44, "meters")
  24648. },
  24649. {
  24650. name: "Normal",
  24651. height: math.unit(5.05, "meters"),
  24652. default: true
  24653. },
  24654. {
  24655. name: "Big",
  24656. height: math.unit(14.4, "meters")
  24657. },
  24658. {
  24659. name: "Huge",
  24660. height: math.unit(144, "meters")
  24661. },
  24662. ]
  24663. ))
  24664. characterMakers.push(() => makeCharacter(
  24665. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24666. {
  24667. front: {
  24668. height: math.unit(7, "feet"),
  24669. weight: math.unit(425, "lb"),
  24670. name: "Front",
  24671. image: {
  24672. source: "./media/characters/hind/front.svg",
  24673. extra: 2091 / 1860,
  24674. bottom: 129 / 2220
  24675. }
  24676. },
  24677. back: {
  24678. height: math.unit(7, "feet"),
  24679. weight: math.unit(425, "lb"),
  24680. name: "Back",
  24681. image: {
  24682. source: "./media/characters/hind/back.svg",
  24683. extra: 2091 / 1860,
  24684. bottom: 24.6 / 2309
  24685. }
  24686. },
  24687. tail: {
  24688. height: math.unit(2.8, "feet"),
  24689. name: "Tail",
  24690. image: {
  24691. source: "./media/characters/hind/tail.svg"
  24692. }
  24693. },
  24694. head: {
  24695. height: math.unit(2.55, "feet"),
  24696. name: "Head",
  24697. image: {
  24698. source: "./media/characters/hind/head.svg"
  24699. }
  24700. },
  24701. },
  24702. [
  24703. {
  24704. name: "XS",
  24705. height: math.unit(0.7, "feet")
  24706. },
  24707. {
  24708. name: "Normal",
  24709. height: math.unit(7, "feet"),
  24710. default: true
  24711. },
  24712. {
  24713. name: "XL",
  24714. height: math.unit(70, "feet")
  24715. },
  24716. ]
  24717. ))
  24718. characterMakers.push(() => makeCharacter(
  24719. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24720. {
  24721. front: {
  24722. height: math.unit(6, "feet"),
  24723. weight: math.unit(150, "lb"),
  24724. name: "Front",
  24725. image: {
  24726. source: "./media/characters/dylan-skaven/front.svg",
  24727. extra: 2318 / 2063,
  24728. bottom: 93.4 / 2410
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Nano",
  24735. height: math.unit(1, "mm")
  24736. },
  24737. {
  24738. name: "Micro",
  24739. height: math.unit(1, "cm")
  24740. },
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(2.1, "meters"),
  24744. default: true
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24750. {
  24751. front: {
  24752. height: math.unit(7 + 5 / 12, "feet"),
  24753. weight: math.unit(357, "lb"),
  24754. name: "Front",
  24755. image: {
  24756. source: "./media/characters/solex-draconov/front.svg",
  24757. extra: 1993 / 1865,
  24758. bottom: 117 / 2111
  24759. }
  24760. },
  24761. },
  24762. [
  24763. {
  24764. name: "Natural Height",
  24765. height: math.unit(7 + 5 / 12, "feet"),
  24766. default: true
  24767. },
  24768. {
  24769. name: "Macro",
  24770. height: math.unit(350, "feet")
  24771. },
  24772. {
  24773. name: "Macro+",
  24774. height: math.unit(1000, "feet")
  24775. },
  24776. {
  24777. name: "Megamacro",
  24778. height: math.unit(20, "km")
  24779. },
  24780. {
  24781. name: "Megamacro+",
  24782. height: math.unit(1000, "km")
  24783. },
  24784. {
  24785. name: "Gigamacro",
  24786. height: math.unit(2.5, "Gm")
  24787. },
  24788. {
  24789. name: "Teramacro",
  24790. height: math.unit(15, "Tm")
  24791. },
  24792. {
  24793. name: "Galactic",
  24794. height: math.unit(30, "Zm")
  24795. },
  24796. {
  24797. name: "Universal",
  24798. height: math.unit(21000, "Ym")
  24799. },
  24800. {
  24801. name: "Omniversal",
  24802. height: math.unit(9.861e50, "Ym")
  24803. },
  24804. {
  24805. name: "Existential",
  24806. height: math.unit(1e300, "meters")
  24807. },
  24808. ]
  24809. ))
  24810. characterMakers.push(() => makeCharacter(
  24811. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24812. {
  24813. side: {
  24814. height: math.unit(25, "feet"),
  24815. weight: math.unit(90000, "lb"),
  24816. name: "Side",
  24817. image: {
  24818. source: "./media/characters/mandarax/side.svg",
  24819. extra: 614 / 332,
  24820. bottom: 55 / 630
  24821. }
  24822. },
  24823. head: {
  24824. height: math.unit(11.4, "feet"),
  24825. name: "Head",
  24826. image: {
  24827. source: "./media/characters/mandarax/head.svg"
  24828. }
  24829. },
  24830. belly: {
  24831. height: math.unit(33, "feet"),
  24832. name: "Belly",
  24833. capacity: math.unit(500, "people"),
  24834. image: {
  24835. source: "./media/characters/mandarax/belly.svg"
  24836. }
  24837. },
  24838. dick: {
  24839. height: math.unit(8.46, "feet"),
  24840. name: "Dick",
  24841. image: {
  24842. source: "./media/characters/mandarax/dick.svg"
  24843. }
  24844. },
  24845. top: {
  24846. height: math.unit(28, "meters"),
  24847. name: "Top",
  24848. image: {
  24849. source: "./media/characters/mandarax/top.svg"
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Normal",
  24856. height: math.unit(25, "feet"),
  24857. default: true
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24863. {
  24864. front: {
  24865. height: math.unit(5, "feet"),
  24866. weight: math.unit(90, "lb"),
  24867. name: "Front",
  24868. image: {
  24869. source: "./media/characters/pixil/front.svg",
  24870. extra: 2000 / 1618,
  24871. bottom: 12.3 / 2011
  24872. }
  24873. },
  24874. },
  24875. [
  24876. {
  24877. name: "Normal",
  24878. height: math.unit(5, "feet"),
  24879. default: true
  24880. },
  24881. {
  24882. name: "Megamacro",
  24883. height: math.unit(10, "miles"),
  24884. },
  24885. ]
  24886. ))
  24887. characterMakers.push(() => makeCharacter(
  24888. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24889. {
  24890. front: {
  24891. height: math.unit(7 + 2 / 12, "feet"),
  24892. weight: math.unit(200, "lb"),
  24893. name: "Front",
  24894. image: {
  24895. source: "./media/characters/angel/front.svg",
  24896. extra: 1830 / 1737,
  24897. bottom: 22.6 / 1854,
  24898. }
  24899. },
  24900. },
  24901. [
  24902. {
  24903. name: "Normal",
  24904. height: math.unit(7 + 2 / 12, "feet"),
  24905. default: true
  24906. },
  24907. {
  24908. name: "Macro",
  24909. height: math.unit(1000, "feet")
  24910. },
  24911. {
  24912. name: "Megamacro",
  24913. height: math.unit(2, "miles")
  24914. },
  24915. {
  24916. name: "Gigamacro",
  24917. height: math.unit(20, "earths")
  24918. },
  24919. ]
  24920. ))
  24921. characterMakers.push(() => makeCharacter(
  24922. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24923. {
  24924. front: {
  24925. height: math.unit(5, "feet"),
  24926. weight: math.unit(180, "lb"),
  24927. name: "Front",
  24928. image: {
  24929. source: "./media/characters/mekana/front.svg",
  24930. extra: 1671 / 1605,
  24931. bottom: 3.5 / 1691
  24932. }
  24933. },
  24934. side: {
  24935. height: math.unit(5, "feet"),
  24936. weight: math.unit(180, "lb"),
  24937. name: "Side",
  24938. image: {
  24939. source: "./media/characters/mekana/side.svg",
  24940. extra: 1671 / 1605,
  24941. bottom: 3.5 / 1691
  24942. }
  24943. },
  24944. back: {
  24945. height: math.unit(5, "feet"),
  24946. weight: math.unit(180, "lb"),
  24947. name: "Back",
  24948. image: {
  24949. source: "./media/characters/mekana/back.svg",
  24950. extra: 1671 / 1605,
  24951. bottom: 3.5 / 1691
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(5, "feet"),
  24959. default: true
  24960. },
  24961. ]
  24962. ))
  24963. characterMakers.push(() => makeCharacter(
  24964. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24965. {
  24966. front: {
  24967. height: math.unit(4 + 6 / 12, "feet"),
  24968. weight: math.unit(80, "lb"),
  24969. name: "Front",
  24970. image: {
  24971. source: "./media/characters/pixie/front.svg",
  24972. extra: 1924 / 1825,
  24973. bottom: 22.4 / 1946
  24974. }
  24975. },
  24976. },
  24977. [
  24978. {
  24979. name: "Normal",
  24980. height: math.unit(4 + 6 / 12, "feet"),
  24981. default: true
  24982. },
  24983. {
  24984. name: "Macro",
  24985. height: math.unit(40, "feet")
  24986. },
  24987. ]
  24988. ))
  24989. characterMakers.push(() => makeCharacter(
  24990. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24991. {
  24992. front: {
  24993. height: math.unit(2.1, "meters"),
  24994. weight: math.unit(200, "lb"),
  24995. name: "Front",
  24996. image: {
  24997. source: "./media/characters/the-lascivious/front.svg",
  24998. extra: 1 / 0.893,
  24999. bottom: 3.5 / 573.7
  25000. }
  25001. },
  25002. },
  25003. [
  25004. {
  25005. name: "Human Scale",
  25006. height: math.unit(2.1, "meters")
  25007. },
  25008. {
  25009. name: "Wolxi Scale",
  25010. height: math.unit(46.2, "m"),
  25011. default: true
  25012. },
  25013. {
  25014. name: "Boinker of Buildings",
  25015. height: math.unit(10, "km")
  25016. },
  25017. {
  25018. name: "Shagger of Skyscrapers",
  25019. height: math.unit(40, "km")
  25020. },
  25021. {
  25022. name: "Banger of Boroughs",
  25023. height: math.unit(4000, "km")
  25024. },
  25025. {
  25026. name: "Screwer of States",
  25027. height: math.unit(100000, "km")
  25028. },
  25029. {
  25030. name: "Pounder of Planets",
  25031. height: math.unit(2000000, "km")
  25032. },
  25033. ]
  25034. ))
  25035. characterMakers.push(() => makeCharacter(
  25036. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25037. {
  25038. front: {
  25039. height: math.unit(6, "feet"),
  25040. weight: math.unit(150, "lb"),
  25041. name: "Front",
  25042. image: {
  25043. source: "./media/characters/aj/front.svg",
  25044. extra: 2039 / 1562,
  25045. bottom: 40 / 2079
  25046. }
  25047. },
  25048. },
  25049. [
  25050. {
  25051. name: "Normal",
  25052. height: math.unit(11 + 6 / 12, "feet"),
  25053. default: true
  25054. },
  25055. {
  25056. name: "Megamacro",
  25057. height: math.unit(60, "megameters")
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25063. {
  25064. side: {
  25065. height: math.unit(31 + 8 / 12, "feet"),
  25066. weight: math.unit(75000, "kg"),
  25067. name: "Side",
  25068. image: {
  25069. source: "./media/characters/koros/side.svg",
  25070. extra: 1442 / 1297,
  25071. bottom: 122.7 / 1562
  25072. }
  25073. },
  25074. dicksKingsCrown: {
  25075. height: math.unit(6, "feet"),
  25076. name: "Dicks (King's Crown)",
  25077. image: {
  25078. source: "./media/characters/koros/dicks-kings-crown.svg"
  25079. }
  25080. },
  25081. dicksTailSet: {
  25082. height: math.unit(3, "feet"),
  25083. name: "Dicks (Tail Set)",
  25084. image: {
  25085. source: "./media/characters/koros/dicks-tail-set.svg"
  25086. }
  25087. },
  25088. dickCumming: {
  25089. height: math.unit(7.98, "feet"),
  25090. name: "Dick (Cumming)",
  25091. image: {
  25092. source: "./media/characters/koros/dick-cumming.svg"
  25093. }
  25094. },
  25095. dicksBack: {
  25096. height: math.unit(5.9, "feet"),
  25097. name: "Dicks (Back)",
  25098. image: {
  25099. source: "./media/characters/koros/dicks-back.svg"
  25100. }
  25101. },
  25102. dicksFront: {
  25103. height: math.unit(3.72, "feet"),
  25104. name: "Dicks (Front)",
  25105. image: {
  25106. source: "./media/characters/koros/dicks-front.svg"
  25107. }
  25108. },
  25109. dicksPeeking: {
  25110. height: math.unit(3.0, "feet"),
  25111. name: "Dicks (Peeking)",
  25112. image: {
  25113. source: "./media/characters/koros/dicks-peeking.svg"
  25114. }
  25115. },
  25116. eye: {
  25117. height: math.unit(1.7, "feet"),
  25118. name: "Eye",
  25119. image: {
  25120. source: "./media/characters/koros/eye.svg"
  25121. }
  25122. },
  25123. headFront: {
  25124. height: math.unit(11.69, "feet"),
  25125. name: "Head (Front)",
  25126. image: {
  25127. source: "./media/characters/koros/head-front.svg"
  25128. }
  25129. },
  25130. headSide: {
  25131. height: math.unit(14, "feet"),
  25132. name: "Head (Side)",
  25133. image: {
  25134. source: "./media/characters/koros/head-side.svg"
  25135. }
  25136. },
  25137. leg: {
  25138. height: math.unit(17, "feet"),
  25139. name: "Leg",
  25140. image: {
  25141. source: "./media/characters/koros/leg.svg"
  25142. }
  25143. },
  25144. mawSide: {
  25145. height: math.unit(12.8, "feet"),
  25146. name: "Maw (Side)",
  25147. image: {
  25148. source: "./media/characters/koros/maw-side.svg"
  25149. }
  25150. },
  25151. mawSpitting: {
  25152. height: math.unit(17, "feet"),
  25153. name: "Maw (Spitting)",
  25154. image: {
  25155. source: "./media/characters/koros/maw-spitting.svg"
  25156. }
  25157. },
  25158. slit: {
  25159. height: math.unit(2.8, "feet"),
  25160. name: "Slit",
  25161. image: {
  25162. source: "./media/characters/koros/slit.svg"
  25163. }
  25164. },
  25165. stomach: {
  25166. height: math.unit(6.8, "feet"),
  25167. capacity: math.unit(20, "people"),
  25168. name: "Stomach",
  25169. image: {
  25170. source: "./media/characters/koros/stomach.svg"
  25171. }
  25172. },
  25173. wingspanBottom: {
  25174. height: math.unit(114, "feet"),
  25175. name: "Wingspan (Bottom)",
  25176. image: {
  25177. source: "./media/characters/koros/wingspan-bottom.svg"
  25178. }
  25179. },
  25180. wingspanTop: {
  25181. height: math.unit(104, "feet"),
  25182. name: "Wingspan (Top)",
  25183. image: {
  25184. source: "./media/characters/koros/wingspan-top.svg"
  25185. }
  25186. },
  25187. },
  25188. [
  25189. {
  25190. name: "Normal",
  25191. height: math.unit(31 + 8 / 12, "feet"),
  25192. default: true
  25193. },
  25194. ]
  25195. ))
  25196. characterMakers.push(() => makeCharacter(
  25197. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25198. {
  25199. front: {
  25200. height: math.unit(18 + 5 / 12, "feet"),
  25201. weight: math.unit(3750, "kg"),
  25202. name: "Front",
  25203. image: {
  25204. source: "./media/characters/vexx/front.svg",
  25205. extra: 426 / 396,
  25206. bottom: 31.5 / 458
  25207. }
  25208. },
  25209. maw: {
  25210. height: math.unit(6, "feet"),
  25211. name: "Maw",
  25212. image: {
  25213. source: "./media/characters/vexx/maw.svg"
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Normal",
  25220. height: math.unit(18 + 5 / 12, "feet"),
  25221. default: true
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(17 + 6 / 12, "feet"),
  25230. weight: math.unit(150, "lb"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/baadra/front.svg",
  25234. extra: 3137 / 2890,
  25235. bottom: 168.4 / 3305
  25236. }
  25237. },
  25238. back: {
  25239. height: math.unit(17 + 6 / 12, "feet"),
  25240. weight: math.unit(150, "lb"),
  25241. name: "Back",
  25242. image: {
  25243. source: "./media/characters/baadra/back.svg",
  25244. extra: 3142 / 2890,
  25245. bottom: 220 / 3371
  25246. }
  25247. },
  25248. head: {
  25249. height: math.unit(5.45, "feet"),
  25250. name: "Head",
  25251. image: {
  25252. source: "./media/characters/baadra/head.svg"
  25253. }
  25254. },
  25255. headAngry: {
  25256. height: math.unit(4.95, "feet"),
  25257. name: "Head (Angry)",
  25258. image: {
  25259. source: "./media/characters/baadra/head-angry.svg"
  25260. }
  25261. },
  25262. headOpen: {
  25263. height: math.unit(6, "feet"),
  25264. name: "Head (Open)",
  25265. image: {
  25266. source: "./media/characters/baadra/head-open.svg"
  25267. }
  25268. },
  25269. },
  25270. [
  25271. {
  25272. name: "Normal",
  25273. height: math.unit(17 + 6 / 12, "feet"),
  25274. default: true
  25275. },
  25276. ]
  25277. ))
  25278. characterMakers.push(() => makeCharacter(
  25279. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25280. {
  25281. front: {
  25282. height: math.unit(7 + 3 / 12, "feet"),
  25283. weight: math.unit(180, "lb"),
  25284. name: "Front",
  25285. image: {
  25286. source: "./media/characters/juri/front.svg",
  25287. extra: 1401 / 1237,
  25288. bottom: 18.5 / 1418
  25289. }
  25290. },
  25291. side: {
  25292. height: math.unit(7 + 3 / 12, "feet"),
  25293. weight: math.unit(180, "lb"),
  25294. name: "Side",
  25295. image: {
  25296. source: "./media/characters/juri/side.svg",
  25297. extra: 1424 / 1242,
  25298. bottom: 18.5 / 1447
  25299. }
  25300. },
  25301. sitting: {
  25302. height: math.unit(6, "feet"),
  25303. weight: math.unit(180, "lb"),
  25304. name: "Sitting",
  25305. image: {
  25306. source: "./media/characters/juri/sitting.svg",
  25307. extra: 1270 / 1143,
  25308. bottom: 100 / 1343
  25309. }
  25310. },
  25311. back: {
  25312. height: math.unit(7 + 3 / 12, "feet"),
  25313. weight: math.unit(180, "lb"),
  25314. name: "Back",
  25315. image: {
  25316. source: "./media/characters/juri/back.svg",
  25317. extra: 1377 / 1240,
  25318. bottom: 23.7 / 1405
  25319. }
  25320. },
  25321. maw: {
  25322. height: math.unit(2.8, "feet"),
  25323. name: "Maw",
  25324. image: {
  25325. source: "./media/characters/juri/maw.svg"
  25326. }
  25327. },
  25328. stomach: {
  25329. height: math.unit(0.89, "feet"),
  25330. capacity: math.unit(4, "liters"),
  25331. name: "Stomach",
  25332. image: {
  25333. source: "./media/characters/juri/stomach.svg"
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Normal",
  25340. height: math.unit(7 + 3 / 12, "feet"),
  25341. default: true
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25347. {
  25348. fox: {
  25349. height: math.unit(5 + 6 / 12, "feet"),
  25350. weight: math.unit(140, "lb"),
  25351. name: "Fox",
  25352. image: {
  25353. source: "./media/characters/maxene-sita/fox.svg",
  25354. extra: 146 / 138,
  25355. bottom: 2.1 / 148.19
  25356. }
  25357. },
  25358. foxLaying: {
  25359. height: math.unit(1.70, "feet"),
  25360. weight: math.unit(140, "lb"),
  25361. name: "Fox (Laying)",
  25362. image: {
  25363. source: "./media/characters/maxene-sita/fox-laying.svg",
  25364. extra: 910 / 572,
  25365. bottom: 71 / 981
  25366. }
  25367. },
  25368. kitsune: {
  25369. height: math.unit(10, "feet"),
  25370. weight: math.unit(800, "lb"),
  25371. name: "Kitsune",
  25372. image: {
  25373. source: "./media/characters/maxene-sita/kitsune.svg",
  25374. extra: 185 / 176,
  25375. bottom: 4.7 / 189.9
  25376. }
  25377. },
  25378. hellhound: {
  25379. height: math.unit(10, "feet"),
  25380. weight: math.unit(700, "lb"),
  25381. name: "Hellhound",
  25382. image: {
  25383. source: "./media/characters/maxene-sita/hellhound.svg",
  25384. extra: 1600 / 1545,
  25385. bottom: 81 / 1681
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Normal",
  25392. height: math.unit(5 + 6 / 12, "feet"),
  25393. default: true
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25399. {
  25400. front: {
  25401. height: math.unit(3 + 4 / 12, "feet"),
  25402. weight: math.unit(70, "lb"),
  25403. name: "Front",
  25404. image: {
  25405. source: "./media/characters/maia/front.svg",
  25406. extra: 227 / 219.5,
  25407. bottom: 40 / 267
  25408. }
  25409. },
  25410. back: {
  25411. height: math.unit(3 + 4 / 12, "feet"),
  25412. weight: math.unit(70, "lb"),
  25413. name: "Back",
  25414. image: {
  25415. source: "./media/characters/maia/back.svg",
  25416. extra: 237 / 225
  25417. }
  25418. },
  25419. },
  25420. [
  25421. {
  25422. name: "Normal",
  25423. height: math.unit(3 + 4 / 12, "feet"),
  25424. default: true
  25425. },
  25426. ]
  25427. ))
  25428. characterMakers.push(() => makeCharacter(
  25429. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25430. {
  25431. front: {
  25432. height: math.unit(5 + 10 / 12, "feet"),
  25433. weight: math.unit(197, "lb"),
  25434. name: "Front",
  25435. image: {
  25436. source: "./media/characters/jabaro/front.svg",
  25437. extra: 225 / 216,
  25438. bottom: 5.06 / 230
  25439. }
  25440. },
  25441. back: {
  25442. height: math.unit(5 + 10 / 12, "feet"),
  25443. weight: math.unit(197, "lb"),
  25444. name: "Back",
  25445. image: {
  25446. source: "./media/characters/jabaro/back.svg",
  25447. extra: 225 / 219,
  25448. bottom: 1.9 / 227
  25449. }
  25450. },
  25451. },
  25452. [
  25453. {
  25454. name: "Normal",
  25455. height: math.unit(5 + 10 / 12, "feet"),
  25456. default: true
  25457. },
  25458. ]
  25459. ))
  25460. characterMakers.push(() => makeCharacter(
  25461. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25462. {
  25463. front: {
  25464. height: math.unit(5 + 8 / 12, "feet"),
  25465. weight: math.unit(139, "lb"),
  25466. name: "Front",
  25467. image: {
  25468. source: "./media/characters/risa/front.svg",
  25469. extra: 270 / 260,
  25470. bottom: 11.2 / 282
  25471. }
  25472. },
  25473. back: {
  25474. height: math.unit(5 + 8 / 12, "feet"),
  25475. weight: math.unit(139, "lb"),
  25476. name: "Back",
  25477. image: {
  25478. source: "./media/characters/risa/back.svg",
  25479. extra: 264 / 255,
  25480. bottom: 4 / 268
  25481. }
  25482. },
  25483. },
  25484. [
  25485. {
  25486. name: "Normal",
  25487. height: math.unit(5 + 8 / 12, "feet"),
  25488. default: true
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25494. {
  25495. front: {
  25496. height: math.unit(2 + 11 / 12, "feet"),
  25497. weight: math.unit(30, "lb"),
  25498. name: "Front",
  25499. image: {
  25500. source: "./media/characters/weatley/front.svg",
  25501. bottom: 10.7 / 414,
  25502. extra: 403.5 / 362
  25503. }
  25504. },
  25505. back: {
  25506. height: math.unit(2 + 11 / 12, "feet"),
  25507. weight: math.unit(30, "lb"),
  25508. name: "Back",
  25509. image: {
  25510. source: "./media/characters/weatley/back.svg",
  25511. bottom: 10.7 / 414,
  25512. extra: 403.5 / 362
  25513. }
  25514. },
  25515. },
  25516. [
  25517. {
  25518. name: "Normal",
  25519. height: math.unit(2 + 11 / 12, "feet"),
  25520. default: true
  25521. },
  25522. ]
  25523. ))
  25524. characterMakers.push(() => makeCharacter(
  25525. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25526. {
  25527. front: {
  25528. height: math.unit(5 + 2 / 12, "feet"),
  25529. weight: math.unit(50, "kg"),
  25530. name: "Front",
  25531. image: {
  25532. source: "./media/characters/mercury-crescent/front.svg",
  25533. extra: 1088 / 1033,
  25534. bottom: 18.9 / 1109
  25535. }
  25536. },
  25537. },
  25538. [
  25539. {
  25540. name: "Normal",
  25541. height: math.unit(5 + 2 / 12, "feet"),
  25542. default: true
  25543. },
  25544. ]
  25545. ))
  25546. characterMakers.push(() => makeCharacter(
  25547. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25548. {
  25549. front: {
  25550. height: math.unit(2, "feet"),
  25551. weight: math.unit(15, "kg"),
  25552. name: "Front",
  25553. image: {
  25554. source: "./media/characters/diamond-jones/front.svg",
  25555. extra: 727/723,
  25556. bottom: 46/773
  25557. }
  25558. },
  25559. },
  25560. [
  25561. {
  25562. name: "Normal",
  25563. height: math.unit(2, "feet"),
  25564. default: true
  25565. },
  25566. ]
  25567. ))
  25568. characterMakers.push(() => makeCharacter(
  25569. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25570. {
  25571. front: {
  25572. height: math.unit(3, "feet"),
  25573. weight: math.unit(30, "kg"),
  25574. name: "Front",
  25575. image: {
  25576. source: "./media/characters/sweet-bit/front.svg",
  25577. extra: 675 / 567,
  25578. bottom: 27.7 / 703
  25579. }
  25580. },
  25581. },
  25582. [
  25583. {
  25584. name: "Normal",
  25585. height: math.unit(3, "feet"),
  25586. default: true
  25587. },
  25588. ]
  25589. ))
  25590. characterMakers.push(() => makeCharacter(
  25591. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25592. {
  25593. side: {
  25594. height: math.unit(9.178, "feet"),
  25595. weight: math.unit(500, "lb"),
  25596. name: "Side",
  25597. image: {
  25598. source: "./media/characters/umbrazen/side.svg",
  25599. extra: 1730 / 1473,
  25600. bottom: 34.6 / 1765
  25601. }
  25602. },
  25603. },
  25604. [
  25605. {
  25606. name: "Normal",
  25607. height: math.unit(9.178, "feet"),
  25608. default: true
  25609. },
  25610. ]
  25611. ))
  25612. characterMakers.push(() => makeCharacter(
  25613. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25614. {
  25615. front: {
  25616. height: math.unit(10, "feet"),
  25617. weight: math.unit(750, "lb"),
  25618. name: "Front",
  25619. image: {
  25620. source: "./media/characters/arlist/front.svg",
  25621. extra: 961 / 778,
  25622. bottom: 6.2 / 986
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Normal",
  25629. height: math.unit(10, "feet"),
  25630. default: true
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25636. {
  25637. front: {
  25638. height: math.unit(5 + 1 / 12, "feet"),
  25639. weight: math.unit(110, "lb"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/aradel/front.svg",
  25643. extra: 324 / 303,
  25644. bottom: 3.6 / 329.4
  25645. }
  25646. },
  25647. },
  25648. [
  25649. {
  25650. name: "Normal",
  25651. height: math.unit(5 + 1 / 12, "feet"),
  25652. default: true
  25653. },
  25654. ]
  25655. ))
  25656. characterMakers.push(() => makeCharacter(
  25657. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25658. {
  25659. front: {
  25660. height: math.unit(3 + 8 / 12, "feet"),
  25661. weight: math.unit(50, "lb"),
  25662. name: "Front",
  25663. image: {
  25664. source: "./media/characters/serryn/front.svg",
  25665. extra: 1792 / 1656,
  25666. bottom: 43.5 / 1840
  25667. }
  25668. },
  25669. },
  25670. [
  25671. {
  25672. name: "Normal",
  25673. height: math.unit(3 + 8 / 12, "feet"),
  25674. default: true
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25680. {
  25681. front: {
  25682. height: math.unit(7 + 10 / 12, "feet"),
  25683. weight: math.unit(255, "lb"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/xavier-thyme/front.svg",
  25687. extra: 3733 / 3642,
  25688. bottom: 131 / 3869
  25689. }
  25690. },
  25691. frontRaven: {
  25692. height: math.unit(7 + 10 / 12, "feet"),
  25693. weight: math.unit(255, "lb"),
  25694. name: "Front (Raven)",
  25695. image: {
  25696. source: "./media/characters/xavier-thyme/front-raven.svg",
  25697. extra: 4385 / 3642,
  25698. bottom: 131 / 4517
  25699. }
  25700. },
  25701. },
  25702. [
  25703. {
  25704. name: "Normal",
  25705. height: math.unit(7 + 10 / 12, "feet"),
  25706. default: true
  25707. },
  25708. ]
  25709. ))
  25710. characterMakers.push(() => makeCharacter(
  25711. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25712. {
  25713. front: {
  25714. height: math.unit(1.6, "m"),
  25715. weight: math.unit(50, "kg"),
  25716. name: "Front",
  25717. image: {
  25718. source: "./media/characters/kiki/front.svg",
  25719. extra: 4682 / 3610,
  25720. bottom: 115 / 4777
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Normal",
  25727. height: math.unit(1.6, "meters"),
  25728. default: true
  25729. },
  25730. ]
  25731. ))
  25732. characterMakers.push(() => makeCharacter(
  25733. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25734. {
  25735. front: {
  25736. height: math.unit(50, "m"),
  25737. weight: math.unit(500, "tonnes"),
  25738. name: "Front",
  25739. image: {
  25740. source: "./media/characters/ryoko/front.svg",
  25741. extra: 4632 / 3926,
  25742. bottom: 193 / 4823
  25743. }
  25744. },
  25745. },
  25746. [
  25747. {
  25748. name: "Normal",
  25749. height: math.unit(50, "meters"),
  25750. default: true
  25751. },
  25752. ]
  25753. ))
  25754. characterMakers.push(() => makeCharacter(
  25755. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25756. {
  25757. front: {
  25758. height: math.unit(30, "m"),
  25759. weight: math.unit(22, "tonnes"),
  25760. name: "Front",
  25761. image: {
  25762. source: "./media/characters/elio/front.svg",
  25763. extra: 4582 / 3720,
  25764. bottom: 236 / 4828
  25765. }
  25766. },
  25767. },
  25768. [
  25769. {
  25770. name: "Normal",
  25771. height: math.unit(30, "meters"),
  25772. default: true
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25778. {
  25779. front: {
  25780. height: math.unit(6 + 3 / 12, "feet"),
  25781. weight: math.unit(120, "lb"),
  25782. name: "Front",
  25783. image: {
  25784. source: "./media/characters/azura/front.svg",
  25785. extra: 1149 / 1135,
  25786. bottom: 45 / 1194
  25787. }
  25788. },
  25789. frontClothed: {
  25790. height: math.unit(6 + 3 / 12, "feet"),
  25791. weight: math.unit(120, "lb"),
  25792. name: "Front (Clothed)",
  25793. image: {
  25794. source: "./media/characters/azura/front-clothed.svg",
  25795. extra: 1149 / 1135,
  25796. bottom: 45 / 1194
  25797. }
  25798. },
  25799. },
  25800. [
  25801. {
  25802. name: "Normal",
  25803. height: math.unit(6 + 3 / 12, "feet"),
  25804. default: true
  25805. },
  25806. {
  25807. name: "Macro",
  25808. height: math.unit(20 + 6 / 12, "feet")
  25809. },
  25810. {
  25811. name: "Megamacro",
  25812. height: math.unit(12, "miles")
  25813. },
  25814. {
  25815. name: "Gigamacro",
  25816. height: math.unit(10000, "miles")
  25817. },
  25818. {
  25819. name: "Teramacro",
  25820. height: math.unit(900000, "miles")
  25821. },
  25822. ]
  25823. ))
  25824. characterMakers.push(() => makeCharacter(
  25825. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25826. {
  25827. front: {
  25828. height: math.unit(12, "feet"),
  25829. weight: math.unit(1, "ton"),
  25830. capacity: math.unit(660000, "gallons"),
  25831. name: "Front",
  25832. image: {
  25833. source: "./media/characters/zeus/front.svg",
  25834. extra: 5005 / 4717,
  25835. bottom: 363 / 5388
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(12, "feet")
  25843. },
  25844. {
  25845. name: "Preferred Size",
  25846. height: math.unit(0.5, "miles"),
  25847. default: true
  25848. },
  25849. {
  25850. name: "Giga Horse",
  25851. height: math.unit(300, "miles")
  25852. },
  25853. {
  25854. name: "Riding Planets",
  25855. height: math.unit(30, "megameters")
  25856. },
  25857. {
  25858. name: "Cosmic Giant",
  25859. height: math.unit(3, "zettameters")
  25860. },
  25861. {
  25862. name: "Breeding God",
  25863. height: math.unit(9.92e22, "yottameters")
  25864. },
  25865. ]
  25866. ))
  25867. characterMakers.push(() => makeCharacter(
  25868. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25869. {
  25870. side: {
  25871. height: math.unit(9, "feet"),
  25872. weight: math.unit(1500, "kg"),
  25873. name: "Side",
  25874. image: {
  25875. source: "./media/characters/fang/side.svg",
  25876. extra: 924 / 866,
  25877. bottom: 47.5 / 972.3
  25878. }
  25879. },
  25880. },
  25881. [
  25882. {
  25883. name: "Normal",
  25884. height: math.unit(9, "feet"),
  25885. default: true
  25886. },
  25887. {
  25888. name: "Macro",
  25889. height: math.unit(75 + 6 / 12, "feet")
  25890. },
  25891. {
  25892. name: "Teramacro",
  25893. height: math.unit(50000, "miles")
  25894. },
  25895. ]
  25896. ))
  25897. characterMakers.push(() => makeCharacter(
  25898. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25899. {
  25900. front: {
  25901. height: math.unit(10, "feet"),
  25902. weight: math.unit(2, "tons"),
  25903. name: "Front",
  25904. image: {
  25905. source: "./media/characters/rekhit/front.svg",
  25906. extra: 2796 / 2590,
  25907. bottom: 225 / 3022
  25908. }
  25909. },
  25910. },
  25911. [
  25912. {
  25913. name: "Normal",
  25914. height: math.unit(10, "feet"),
  25915. default: true
  25916. },
  25917. {
  25918. name: "Macro",
  25919. height: math.unit(500, "feet")
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(7 + 6.451 / 12, "feet"),
  25928. weight: math.unit(310, "lb"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/dahlia-verrick/front.svg",
  25932. extra: 1488 / 1365,
  25933. bottom: 6.2 / 1495
  25934. }
  25935. },
  25936. back: {
  25937. height: math.unit(7 + 6.451 / 12, "feet"),
  25938. weight: math.unit(310, "lb"),
  25939. name: "Back",
  25940. image: {
  25941. source: "./media/characters/dahlia-verrick/back.svg",
  25942. extra: 1472 / 1351,
  25943. bottom: 5.28 / 1477
  25944. }
  25945. },
  25946. frontBusiness: {
  25947. height: math.unit(7 + 6.451 / 12, "feet"),
  25948. weight: math.unit(200, "lb"),
  25949. name: "Front (Business)",
  25950. image: {
  25951. source: "./media/characters/dahlia-verrick/front-business.svg",
  25952. extra: 1478 / 1381,
  25953. bottom: 5.5 / 1484
  25954. }
  25955. },
  25956. frontCasual: {
  25957. height: math.unit(7 + 6.451 / 12, "feet"),
  25958. weight: math.unit(200, "lb"),
  25959. name: "Front (Casual)",
  25960. image: {
  25961. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25962. extra: 1478 / 1381,
  25963. bottom: 5.5 / 1484
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Travel-Sized",
  25970. height: math.unit(7.45, "inches")
  25971. },
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(7 + 6.451 / 12, "feet"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Hitting the Town",
  25979. height: math.unit(37 + 8 / 12, "feet")
  25980. },
  25981. {
  25982. name: "Stomp in the Suburbs",
  25983. height: math.unit(964 + 9.728 / 12, "feet")
  25984. },
  25985. {
  25986. name: "Sit on the City",
  25987. height: math.unit(61747 + 10.592 / 12, "feet")
  25988. },
  25989. {
  25990. name: "Glomp the Globe",
  25991. height: math.unit(252919327 + 4.832 / 12, "feet")
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(6 + 4 / 12, "feet"),
  26000. weight: math.unit(320, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/balina-mahigan/front.svg",
  26004. extra: 447 / 428,
  26005. bottom: 18 / 466
  26006. }
  26007. },
  26008. back: {
  26009. height: math.unit(6 + 4 / 12, "feet"),
  26010. weight: math.unit(320, "lb"),
  26011. name: "Back",
  26012. image: {
  26013. source: "./media/characters/balina-mahigan/back.svg",
  26014. extra: 445 / 428,
  26015. bottom: 4.07 / 448
  26016. }
  26017. },
  26018. arm: {
  26019. height: math.unit(1.88, "feet"),
  26020. name: "Arm",
  26021. image: {
  26022. source: "./media/characters/balina-mahigan/arm.svg"
  26023. }
  26024. },
  26025. backPort: {
  26026. height: math.unit(0.685, "feet"),
  26027. name: "Back Port",
  26028. image: {
  26029. source: "./media/characters/balina-mahigan/back-port.svg"
  26030. }
  26031. },
  26032. hoofpaw: {
  26033. height: math.unit(1.41, "feet"),
  26034. name: "Hoofpaw",
  26035. image: {
  26036. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26037. }
  26038. },
  26039. leftHandBack: {
  26040. height: math.unit(0.938, "feet"),
  26041. name: "Left Hand (Back)",
  26042. image: {
  26043. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26044. }
  26045. },
  26046. leftHandFront: {
  26047. height: math.unit(0.938, "feet"),
  26048. name: "Left Hand (Front)",
  26049. image: {
  26050. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26051. }
  26052. },
  26053. rightHandBack: {
  26054. height: math.unit(0.95, "feet"),
  26055. name: "Right Hand (Back)",
  26056. image: {
  26057. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26058. }
  26059. },
  26060. rightHandFront: {
  26061. height: math.unit(0.95, "feet"),
  26062. name: "Right Hand (Front)",
  26063. image: {
  26064. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26065. }
  26066. },
  26067. },
  26068. [
  26069. {
  26070. name: "Normal",
  26071. height: math.unit(6 + 4 / 12, "feet"),
  26072. default: true
  26073. },
  26074. ]
  26075. ))
  26076. characterMakers.push(() => makeCharacter(
  26077. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26078. {
  26079. front: {
  26080. height: math.unit(6, "feet"),
  26081. weight: math.unit(320, "lb"),
  26082. name: "Front",
  26083. image: {
  26084. source: "./media/characters/balina-mejeri/front.svg",
  26085. extra: 517 / 488,
  26086. bottom: 44.2 / 561
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Normal",
  26093. height: math.unit(6 + 4 / 12, "feet")
  26094. },
  26095. {
  26096. name: "Business",
  26097. height: math.unit(155, "feet"),
  26098. default: true
  26099. },
  26100. ]
  26101. ))
  26102. characterMakers.push(() => makeCharacter(
  26103. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26104. {
  26105. kneeling: {
  26106. height: math.unit(6 + 4 / 12, "feet"),
  26107. weight: math.unit(300 * 20, "lb"),
  26108. name: "Kneeling",
  26109. image: {
  26110. source: "./media/characters/balbarian/kneeling.svg",
  26111. extra: 922 / 862,
  26112. bottom: 42.4 / 965
  26113. }
  26114. },
  26115. },
  26116. [
  26117. {
  26118. name: "Normal",
  26119. height: math.unit(6 + 4 / 12, "feet")
  26120. },
  26121. {
  26122. name: "Treasured",
  26123. height: math.unit(18 + 9 / 12, "feet"),
  26124. default: true
  26125. },
  26126. {
  26127. name: "Macro",
  26128. height: math.unit(900, "feet")
  26129. },
  26130. ]
  26131. ))
  26132. characterMakers.push(() => makeCharacter(
  26133. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26134. {
  26135. front: {
  26136. height: math.unit(6 + 4 / 12, "feet"),
  26137. weight: math.unit(325, "lb"),
  26138. name: "Front",
  26139. image: {
  26140. source: "./media/characters/balina-amarini/front.svg",
  26141. extra: 415 / 403,
  26142. bottom: 19 / 433.4
  26143. }
  26144. },
  26145. back: {
  26146. height: math.unit(6 + 4 / 12, "feet"),
  26147. weight: math.unit(325, "lb"),
  26148. name: "Back",
  26149. image: {
  26150. source: "./media/characters/balina-amarini/back.svg",
  26151. extra: 415 / 403,
  26152. bottom: 13.5 / 432
  26153. }
  26154. },
  26155. overdrive: {
  26156. height: math.unit(6 + 4 / 12, "feet"),
  26157. weight: math.unit(400, "lb"),
  26158. name: "Overdrive",
  26159. image: {
  26160. source: "./media/characters/balina-amarini/overdrive.svg",
  26161. extra: 269 / 259,
  26162. bottom: 12 / 282
  26163. }
  26164. },
  26165. },
  26166. [
  26167. {
  26168. name: "Boom",
  26169. height: math.unit(9 + 10 / 12, "feet"),
  26170. default: true
  26171. },
  26172. {
  26173. name: "Macro",
  26174. height: math.unit(280, "feet")
  26175. },
  26176. ]
  26177. ))
  26178. characterMakers.push(() => makeCharacter(
  26179. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26180. {
  26181. goddess: {
  26182. height: math.unit(600, "feet"),
  26183. weight: math.unit(2000000, "tons"),
  26184. name: "Goddess",
  26185. image: {
  26186. source: "./media/characters/lady-kubwa/goddess.svg",
  26187. extra: 1240.5 / 1223,
  26188. bottom: 22 / 1263
  26189. }
  26190. },
  26191. goddesser: {
  26192. height: math.unit(900, "feet"),
  26193. weight: math.unit(20000000, "lb"),
  26194. name: "Goddess-er",
  26195. image: {
  26196. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26197. extra: 899 / 888,
  26198. bottom: 12.6 / 912
  26199. }
  26200. },
  26201. },
  26202. [
  26203. {
  26204. name: "Macro",
  26205. height: math.unit(600, "feet"),
  26206. default: true
  26207. },
  26208. {
  26209. name: "Megamacro",
  26210. height: math.unit(250, "miles")
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26216. {
  26217. front: {
  26218. height: math.unit(7 + 7 / 12, "feet"),
  26219. weight: math.unit(250, "lb"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/tala-grovehorn/front.svg",
  26223. extra: 2636 / 2525,
  26224. bottom: 147 / 2781
  26225. }
  26226. },
  26227. back: {
  26228. height: math.unit(7 + 7 / 12, "feet"),
  26229. weight: math.unit(250, "lb"),
  26230. name: "Back",
  26231. image: {
  26232. source: "./media/characters/tala-grovehorn/back.svg",
  26233. extra: 2635 / 2539,
  26234. bottom: 100 / 2732.8
  26235. }
  26236. },
  26237. mouth: {
  26238. height: math.unit(1.15, "feet"),
  26239. name: "Mouth",
  26240. image: {
  26241. source: "./media/characters/tala-grovehorn/mouth.svg"
  26242. }
  26243. },
  26244. dick: {
  26245. height: math.unit(2.36, "feet"),
  26246. name: "Dick",
  26247. image: {
  26248. source: "./media/characters/tala-grovehorn/dick.svg"
  26249. }
  26250. },
  26251. slit: {
  26252. height: math.unit(0.61, "feet"),
  26253. name: "Slit",
  26254. image: {
  26255. source: "./media/characters/tala-grovehorn/slit.svg"
  26256. }
  26257. },
  26258. },
  26259. [
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(7 + 7 / 12, "feet"),
  26267. weight: math.unit(225, "lb"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/epona/front.svg",
  26271. extra: 2445 / 2290,
  26272. bottom: 251 / 2696
  26273. }
  26274. },
  26275. back: {
  26276. height: math.unit(7 + 7 / 12, "feet"),
  26277. weight: math.unit(225, "lb"),
  26278. name: "Back",
  26279. image: {
  26280. source: "./media/characters/epona/back.svg",
  26281. extra: 2546 / 2408,
  26282. bottom: 44 / 2589
  26283. }
  26284. },
  26285. genitals: {
  26286. height: math.unit(1.5, "feet"),
  26287. name: "Genitals",
  26288. image: {
  26289. source: "./media/characters/epona/genitals.svg"
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(7 + 7 / 12, "feet"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26303. {
  26304. front: {
  26305. height: math.unit(7, "feet"),
  26306. weight: math.unit(518, "lb"),
  26307. name: "Front",
  26308. image: {
  26309. source: "./media/characters/avia-bloodbourn/front.svg",
  26310. extra: 1466 / 1350,
  26311. bottom: 65 / 1527
  26312. }
  26313. },
  26314. },
  26315. [
  26316. ]
  26317. ))
  26318. characterMakers.push(() => makeCharacter(
  26319. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26320. {
  26321. front: {
  26322. height: math.unit(9.35, "feet"),
  26323. weight: math.unit(600, "lb"),
  26324. name: "Front",
  26325. image: {
  26326. source: "./media/characters/amera/front.svg",
  26327. extra: 891 / 818,
  26328. bottom: 30 / 922.7
  26329. }
  26330. },
  26331. back: {
  26332. height: math.unit(9.35, "feet"),
  26333. weight: math.unit(600, "lb"),
  26334. name: "Back",
  26335. image: {
  26336. source: "./media/characters/amera/back.svg",
  26337. extra: 876 / 824,
  26338. bottom: 6.8 / 884
  26339. }
  26340. },
  26341. dick: {
  26342. height: math.unit(2.14, "feet"),
  26343. name: "Dick",
  26344. image: {
  26345. source: "./media/characters/amera/dick.svg"
  26346. }
  26347. },
  26348. },
  26349. [
  26350. {
  26351. name: "Normal",
  26352. height: math.unit(9.35, "feet"),
  26353. default: true
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26359. {
  26360. kneeling: {
  26361. height: math.unit(3 + 4 / 12, "feet"),
  26362. weight: math.unit(90, "lb"),
  26363. name: "Kneeling",
  26364. image: {
  26365. source: "./media/characters/rosewen/kneeling.svg",
  26366. extra: 1835 / 1571,
  26367. bottom: 27.7 / 1862
  26368. }
  26369. },
  26370. },
  26371. [
  26372. {
  26373. name: "Normal",
  26374. height: math.unit(3 + 4 / 12, "feet"),
  26375. default: true
  26376. },
  26377. ]
  26378. ))
  26379. characterMakers.push(() => makeCharacter(
  26380. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26381. {
  26382. front: {
  26383. height: math.unit(5 + 10 / 12, "feet"),
  26384. weight: math.unit(200, "lb"),
  26385. name: "Front",
  26386. image: {
  26387. source: "./media/characters/sabah/front.svg",
  26388. extra: 849 / 763,
  26389. bottom: 33.9 / 881
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(5 + 10 / 12, "feet"),
  26397. default: true
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26403. {
  26404. front: {
  26405. height: math.unit(3 + 5 / 12, "feet"),
  26406. weight: math.unit(40, "kg"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/purple-flame/front.svg",
  26410. extra: 1577 / 1412,
  26411. bottom: 97 / 1694
  26412. }
  26413. },
  26414. frontDressed: {
  26415. height: math.unit(3 + 5 / 12, "feet"),
  26416. weight: math.unit(40, "kg"),
  26417. name: "Front (Dressed)",
  26418. image: {
  26419. source: "./media/characters/purple-flame/front-dressed.svg",
  26420. extra: 1577 / 1412,
  26421. bottom: 97 / 1694
  26422. }
  26423. },
  26424. headphones: {
  26425. height: math.unit(0.85, "feet"),
  26426. name: "Headphones",
  26427. image: {
  26428. source: "./media/characters/purple-flame/headphones.svg"
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Really Small",
  26435. height: math.unit(5, "cm")
  26436. },
  26437. {
  26438. name: "Micro",
  26439. height: math.unit(1 + 5 / 12, "feet")
  26440. },
  26441. {
  26442. name: "Normal",
  26443. height: math.unit(3 + 5 / 12, "feet"),
  26444. default: true
  26445. },
  26446. {
  26447. name: "Minimacro",
  26448. height: math.unit(125, "feet")
  26449. },
  26450. {
  26451. name: "Macro",
  26452. height: math.unit(0.5, "miles")
  26453. },
  26454. {
  26455. name: "Megamacro",
  26456. height: math.unit(50, "miles")
  26457. },
  26458. {
  26459. name: "Gigantic",
  26460. height: math.unit(750, "miles")
  26461. },
  26462. {
  26463. name: "Planetary",
  26464. height: math.unit(15000, "miles")
  26465. },
  26466. ]
  26467. ))
  26468. characterMakers.push(() => makeCharacter(
  26469. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26470. {
  26471. front: {
  26472. height: math.unit(14, "feet"),
  26473. weight: math.unit(959, "lb"),
  26474. name: "Front",
  26475. image: {
  26476. source: "./media/characters/arsenal/front.svg",
  26477. extra: 2357 / 2157,
  26478. bottom: 93 / 2458
  26479. }
  26480. },
  26481. },
  26482. [
  26483. {
  26484. name: "Normal",
  26485. height: math.unit(14, "feet"),
  26486. default: true
  26487. },
  26488. ]
  26489. ))
  26490. characterMakers.push(() => makeCharacter(
  26491. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26492. {
  26493. front: {
  26494. height: math.unit(6, "feet"),
  26495. weight: math.unit(150, "lb"),
  26496. name: "Front",
  26497. image: {
  26498. source: "./media/characters/adira/front.svg",
  26499. extra: 1078 / 1029,
  26500. bottom: 87 / 1166
  26501. }
  26502. },
  26503. },
  26504. [
  26505. {
  26506. name: "Micro",
  26507. height: math.unit(4, "inches"),
  26508. default: true
  26509. },
  26510. {
  26511. name: "Macro",
  26512. height: math.unit(50, "feet")
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26518. {
  26519. front: {
  26520. height: math.unit(16, "feet"),
  26521. weight: math.unit(1000, "lb"),
  26522. name: "Front",
  26523. image: {
  26524. source: "./media/characters/grim/front.svg",
  26525. extra: 622 / 614,
  26526. bottom: 18.1 / 642
  26527. }
  26528. },
  26529. back: {
  26530. height: math.unit(16, "feet"),
  26531. weight: math.unit(1000, "lb"),
  26532. name: "Back",
  26533. image: {
  26534. source: "./media/characters/grim/back.svg",
  26535. extra: 610.6 / 602,
  26536. bottom: 40.8 / 652
  26537. }
  26538. },
  26539. hunched: {
  26540. height: math.unit(9.75, "feet"),
  26541. weight: math.unit(1000, "lb"),
  26542. name: "Hunched",
  26543. image: {
  26544. source: "./media/characters/grim/hunched.svg",
  26545. extra: 304 / 297,
  26546. bottom: 35.4 / 394
  26547. }
  26548. },
  26549. },
  26550. [
  26551. {
  26552. name: "Normal",
  26553. height: math.unit(16, "feet"),
  26554. default: true
  26555. },
  26556. ]
  26557. ))
  26558. characterMakers.push(() => makeCharacter(
  26559. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26560. {
  26561. front: {
  26562. height: math.unit(2.3, "meters"),
  26563. weight: math.unit(300, "lb"),
  26564. name: "Front",
  26565. image: {
  26566. source: "./media/characters/sinja/front-sfw.svg",
  26567. extra: 1393 / 1294,
  26568. bottom: 70 / 1463
  26569. }
  26570. },
  26571. frontNsfw: {
  26572. height: math.unit(2.3, "meters"),
  26573. weight: math.unit(300, "lb"),
  26574. name: "Front (NSFW)",
  26575. image: {
  26576. source: "./media/characters/sinja/front-nsfw.svg",
  26577. extra: 1393 / 1294,
  26578. bottom: 70 / 1463
  26579. }
  26580. },
  26581. back: {
  26582. height: math.unit(2.3, "meters"),
  26583. weight: math.unit(300, "lb"),
  26584. name: "Back",
  26585. image: {
  26586. source: "./media/characters/sinja/back.svg",
  26587. extra: 1393 / 1294,
  26588. bottom: 70 / 1463
  26589. }
  26590. },
  26591. head: {
  26592. height: math.unit(1.771, "feet"),
  26593. name: "Head",
  26594. image: {
  26595. source: "./media/characters/sinja/head.svg"
  26596. }
  26597. },
  26598. slit: {
  26599. height: math.unit(0.8, "feet"),
  26600. name: "Slit",
  26601. image: {
  26602. source: "./media/characters/sinja/slit.svg"
  26603. }
  26604. },
  26605. },
  26606. [
  26607. {
  26608. name: "Normal",
  26609. height: math.unit(2.3, "meters")
  26610. },
  26611. {
  26612. name: "Macro",
  26613. height: math.unit(91, "meters"),
  26614. default: true
  26615. },
  26616. {
  26617. name: "Megamacro",
  26618. height: math.unit(91440, "meters")
  26619. },
  26620. {
  26621. name: "Gigamacro",
  26622. height: math.unit(60960000, "meters")
  26623. },
  26624. {
  26625. name: "Teramacro",
  26626. height: math.unit(9144000000, "meters")
  26627. },
  26628. ]
  26629. ))
  26630. characterMakers.push(() => makeCharacter(
  26631. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26632. {
  26633. front: {
  26634. height: math.unit(1.7, "meters"),
  26635. weight: math.unit(130, "lb"),
  26636. name: "Front",
  26637. image: {
  26638. source: "./media/characters/kyu/front.svg",
  26639. extra: 415 / 395,
  26640. bottom: 5 / 420
  26641. }
  26642. },
  26643. head: {
  26644. height: math.unit(1.75, "feet"),
  26645. name: "Head",
  26646. image: {
  26647. source: "./media/characters/kyu/head.svg"
  26648. }
  26649. },
  26650. foot: {
  26651. height: math.unit(0.81, "feet"),
  26652. name: "Foot",
  26653. image: {
  26654. source: "./media/characters/kyu/foot.svg"
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Normal",
  26661. height: math.unit(1.7, "meters")
  26662. },
  26663. {
  26664. name: "Macro",
  26665. height: math.unit(131, "feet"),
  26666. default: true
  26667. },
  26668. {
  26669. name: "Megamacro",
  26670. height: math.unit(91440, "meters")
  26671. },
  26672. {
  26673. name: "Gigamacro",
  26674. height: math.unit(60960000, "meters")
  26675. },
  26676. {
  26677. name: "Teramacro",
  26678. height: math.unit(9144000000, "meters")
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26684. {
  26685. front: {
  26686. height: math.unit(7 + 1 / 12, "feet"),
  26687. weight: math.unit(250, "lb"),
  26688. name: "Front",
  26689. image: {
  26690. source: "./media/characters/joey/front.svg",
  26691. extra: 1791 / 1537,
  26692. bottom: 28 / 1816
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Micro",
  26699. height: math.unit(3, "inches")
  26700. },
  26701. {
  26702. name: "Normal",
  26703. height: math.unit(7 + 1 / 12, "feet"),
  26704. default: true
  26705. },
  26706. ]
  26707. ))
  26708. characterMakers.push(() => makeCharacter(
  26709. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26710. {
  26711. front: {
  26712. height: math.unit(165, "cm"),
  26713. weight: math.unit(140, "lb"),
  26714. name: "Front",
  26715. image: {
  26716. source: "./media/characters/sam-evans/front.svg",
  26717. extra: 3417 / 3230,
  26718. bottom: 41.3 / 3417
  26719. }
  26720. },
  26721. frontSixTails: {
  26722. height: math.unit(165, "cm"),
  26723. weight: math.unit(140, "lb"),
  26724. name: "Front-six-tails",
  26725. image: {
  26726. source: "./media/characters/sam-evans/front-six-tails.svg",
  26727. extra: 3417 / 3230,
  26728. bottom: 41.3 / 3417
  26729. }
  26730. },
  26731. back: {
  26732. height: math.unit(165, "cm"),
  26733. weight: math.unit(140, "lb"),
  26734. name: "Back",
  26735. image: {
  26736. source: "./media/characters/sam-evans/back.svg",
  26737. extra: 3227 / 3032,
  26738. bottom: 6.8 / 3234
  26739. }
  26740. },
  26741. face: {
  26742. height: math.unit(0.68, "feet"),
  26743. name: "Face",
  26744. image: {
  26745. source: "./media/characters/sam-evans/face.svg"
  26746. }
  26747. },
  26748. },
  26749. [
  26750. {
  26751. name: "Normal",
  26752. height: math.unit(165, "cm"),
  26753. default: true
  26754. },
  26755. {
  26756. name: "Macro",
  26757. height: math.unit(100, "meters")
  26758. },
  26759. {
  26760. name: "Macro+",
  26761. height: math.unit(800, "meters")
  26762. },
  26763. {
  26764. name: "Macro++",
  26765. height: math.unit(3, "km")
  26766. },
  26767. {
  26768. name: "Macro+++",
  26769. height: math.unit(30, "km")
  26770. },
  26771. ]
  26772. ))
  26773. characterMakers.push(() => makeCharacter(
  26774. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26775. {
  26776. front: {
  26777. height: math.unit(10, "feet"),
  26778. weight: math.unit(750, "lb"),
  26779. name: "Front",
  26780. image: {
  26781. source: "./media/characters/juliet-a/front.svg",
  26782. extra: 1766 / 1720,
  26783. bottom: 43 / 1809
  26784. }
  26785. },
  26786. back: {
  26787. height: math.unit(10, "feet"),
  26788. weight: math.unit(750, "lb"),
  26789. name: "Back",
  26790. image: {
  26791. source: "./media/characters/juliet-a/back.svg",
  26792. extra: 1781 / 1734,
  26793. bottom: 35 / 1810,
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Normal",
  26800. height: math.unit(10, "feet"),
  26801. default: true
  26802. },
  26803. {
  26804. name: "Dragon Form",
  26805. height: math.unit(250, "feet")
  26806. },
  26807. {
  26808. name: "Macro",
  26809. height: math.unit(1000, "feet")
  26810. },
  26811. {
  26812. name: "Megamacro",
  26813. height: math.unit(10000, "feet")
  26814. }
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26819. {
  26820. regular: {
  26821. height: math.unit(7 + 3 / 12, "feet"),
  26822. weight: math.unit(260, "lb"),
  26823. name: "Regular",
  26824. image: {
  26825. source: "./media/characters/wild/regular.svg",
  26826. extra: 97.45 / 92,
  26827. bottom: 6.8 / 104.3
  26828. }
  26829. },
  26830. biggums: {
  26831. height: math.unit(8 + 6 / 12, "feet"),
  26832. weight: math.unit(425, "lb"),
  26833. name: "Biggums",
  26834. image: {
  26835. source: "./media/characters/wild/biggums.svg",
  26836. extra: 97.45 / 92,
  26837. bottom: 7.5 / 132.34
  26838. }
  26839. },
  26840. mawRegular: {
  26841. height: math.unit(1.24, "feet"),
  26842. name: "Maw (Regular)",
  26843. image: {
  26844. source: "./media/characters/wild/maw.svg"
  26845. }
  26846. },
  26847. mawBiggums: {
  26848. height: math.unit(1.47, "feet"),
  26849. name: "Maw (Biggums)",
  26850. image: {
  26851. source: "./media/characters/wild/maw.svg"
  26852. }
  26853. },
  26854. },
  26855. [
  26856. {
  26857. name: "Normal",
  26858. height: math.unit(7 + 3 / 12, "feet"),
  26859. default: true
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26865. {
  26866. front: {
  26867. height: math.unit(2.5, "meters"),
  26868. weight: math.unit(200, "kg"),
  26869. name: "Front",
  26870. image: {
  26871. source: "./media/characters/vidar/front.svg",
  26872. extra: 2994 / 2795,
  26873. bottom: 56 / 3061
  26874. }
  26875. },
  26876. back: {
  26877. height: math.unit(2.5, "meters"),
  26878. weight: math.unit(200, "kg"),
  26879. name: "Back",
  26880. image: {
  26881. source: "./media/characters/vidar/back.svg",
  26882. extra: 3131 / 2928,
  26883. bottom: 13.5 / 3141.5
  26884. }
  26885. },
  26886. feral: {
  26887. height: math.unit(2.5, "meters"),
  26888. weight: math.unit(2000, "kg"),
  26889. name: "Feral",
  26890. image: {
  26891. source: "./media/characters/vidar/feral.svg",
  26892. extra: 2790 / 1765,
  26893. bottom: 6 / 2796
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Normal",
  26900. height: math.unit(2.5, "meters"),
  26901. default: true
  26902. },
  26903. {
  26904. name: "Macro",
  26905. height: math.unit(100, "meters")
  26906. },
  26907. ]
  26908. ))
  26909. characterMakers.push(() => makeCharacter(
  26910. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26911. {
  26912. front: {
  26913. height: math.unit(5 + 9 / 12, "feet"),
  26914. weight: math.unit(120, "lb"),
  26915. name: "Front",
  26916. image: {
  26917. source: "./media/characters/ash/front.svg",
  26918. extra: 2189 / 1961,
  26919. bottom: 5.2 / 2194
  26920. }
  26921. },
  26922. },
  26923. [
  26924. {
  26925. name: "Normal",
  26926. height: math.unit(5 + 9 / 12, "feet"),
  26927. default: true
  26928. },
  26929. ]
  26930. ))
  26931. characterMakers.push(() => makeCharacter(
  26932. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26933. {
  26934. front: {
  26935. height: math.unit(9, "feet"),
  26936. weight: math.unit(10000, "lb"),
  26937. name: "Front",
  26938. image: {
  26939. source: "./media/characters/gygabite/front.svg",
  26940. bottom: 31.7 / 537.8,
  26941. extra: 505 / 370
  26942. }
  26943. },
  26944. },
  26945. [
  26946. {
  26947. name: "Normal",
  26948. height: math.unit(9, "feet"),
  26949. default: true
  26950. },
  26951. ]
  26952. ))
  26953. characterMakers.push(() => makeCharacter(
  26954. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26955. {
  26956. front: {
  26957. height: math.unit(12, "feet"),
  26958. weight: math.unit(35000, "lb"),
  26959. name: "Front",
  26960. image: {
  26961. source: "./media/characters/p0tat0/front.svg",
  26962. extra: 1065 / 921,
  26963. bottom: 55.7 / 1121.25
  26964. }
  26965. },
  26966. },
  26967. [
  26968. {
  26969. name: "Normal",
  26970. height: math.unit(12, "feet"),
  26971. default: true
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26977. {
  26978. side: {
  26979. height: math.unit(6.5, "feet"),
  26980. weight: math.unit(800, "lb"),
  26981. name: "Side",
  26982. image: {
  26983. source: "./media/characters/dusk/side.svg",
  26984. extra: 615 / 373,
  26985. bottom: 53 / 664
  26986. }
  26987. },
  26988. sitting: {
  26989. height: math.unit(7, "feet"),
  26990. weight: math.unit(800, "lb"),
  26991. name: "Sitting",
  26992. image: {
  26993. source: "./media/characters/dusk/sitting.svg",
  26994. extra: 753 / 425,
  26995. bottom: 33 / 774
  26996. }
  26997. },
  26998. head: {
  26999. height: math.unit(6.1, "feet"),
  27000. name: "Head",
  27001. image: {
  27002. source: "./media/characters/dusk/head.svg"
  27003. }
  27004. },
  27005. },
  27006. [
  27007. {
  27008. name: "Normal",
  27009. height: math.unit(7, "feet"),
  27010. default: true
  27011. },
  27012. ]
  27013. ))
  27014. characterMakers.push(() => makeCharacter(
  27015. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27016. {
  27017. front: {
  27018. height: math.unit(15, "feet"),
  27019. weight: math.unit(7000, "lb"),
  27020. name: "Front",
  27021. image: {
  27022. source: "./media/characters/jay-direwolf/front.svg",
  27023. extra: 1810 / 1732,
  27024. bottom: 66 / 1892
  27025. }
  27026. },
  27027. },
  27028. [
  27029. {
  27030. name: "Normal",
  27031. height: math.unit(15, "feet"),
  27032. default: true
  27033. },
  27034. ]
  27035. ))
  27036. characterMakers.push(() => makeCharacter(
  27037. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27038. {
  27039. front: {
  27040. height: math.unit(4 + 9 / 12, "feet"),
  27041. weight: math.unit(130, "lb"),
  27042. name: "Front",
  27043. image: {
  27044. source: "./media/characters/anchovie/front.svg",
  27045. extra: 382 / 350,
  27046. bottom: 25 / 409
  27047. }
  27048. },
  27049. back: {
  27050. height: math.unit(4 + 9 / 12, "feet"),
  27051. weight: math.unit(130, "lb"),
  27052. name: "Back",
  27053. image: {
  27054. source: "./media/characters/anchovie/back.svg",
  27055. extra: 385 / 352,
  27056. bottom: 16.6 / 402
  27057. }
  27058. },
  27059. frontDressed: {
  27060. height: math.unit(4 + 9 / 12, "feet"),
  27061. weight: math.unit(130, "lb"),
  27062. name: "Front (Dressed)",
  27063. image: {
  27064. source: "./media/characters/anchovie/front-dressed.svg",
  27065. extra: 382 / 350,
  27066. bottom: 25 / 409
  27067. }
  27068. },
  27069. backDressed: {
  27070. height: math.unit(4 + 9 / 12, "feet"),
  27071. weight: math.unit(130, "lb"),
  27072. name: "Back (Dressed)",
  27073. image: {
  27074. source: "./media/characters/anchovie/back-dressed.svg",
  27075. extra: 385 / 352,
  27076. bottom: 16.6 / 402
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Micro",
  27083. height: math.unit(6.4, "inches")
  27084. },
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(4 + 9 / 12, "feet"),
  27088. default: true
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(2, "meters"),
  27097. weight: math.unit(180, "lb"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/acidrenamon/front.svg",
  27101. extra: 987 / 890,
  27102. bottom: 22.8 / 1009
  27103. }
  27104. },
  27105. back: {
  27106. height: math.unit(2, "meters"),
  27107. weight: math.unit(180, "lb"),
  27108. name: "Back",
  27109. image: {
  27110. source: "./media/characters/acidrenamon/back.svg",
  27111. extra: 983 / 891,
  27112. bottom: 8.4 / 992
  27113. }
  27114. },
  27115. head: {
  27116. height: math.unit(1.92, "feet"),
  27117. name: "Head",
  27118. image: {
  27119. source: "./media/characters/acidrenamon/head.svg"
  27120. }
  27121. },
  27122. rump: {
  27123. height: math.unit(1.72, "feet"),
  27124. name: "Rump",
  27125. image: {
  27126. source: "./media/characters/acidrenamon/rump.svg"
  27127. }
  27128. },
  27129. tail: {
  27130. height: math.unit(4.2, "feet"),
  27131. name: "Tail",
  27132. image: {
  27133. source: "./media/characters/acidrenamon/tail.svg"
  27134. }
  27135. },
  27136. },
  27137. [
  27138. {
  27139. name: "Normal",
  27140. height: math.unit(2, "meters"),
  27141. default: true
  27142. },
  27143. {
  27144. name: "Minimacro",
  27145. height: math.unit(7, "meters")
  27146. },
  27147. {
  27148. name: "Macro",
  27149. height: math.unit(200, "meters")
  27150. },
  27151. {
  27152. name: "Gigamacro",
  27153. height: math.unit(0.2, "earths")
  27154. },
  27155. ]
  27156. ))
  27157. characterMakers.push(() => makeCharacter(
  27158. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27159. {
  27160. front: {
  27161. height: math.unit(6, "feet"),
  27162. weight: math.unit(150, "lb"),
  27163. name: "Front",
  27164. image: {
  27165. source: "./media/characters/kenzie-lee/front.svg",
  27166. extra: 1525 / 1465,
  27167. bottom: 45 / 1570
  27168. }
  27169. },
  27170. side: {
  27171. height: math.unit(6, "feet"),
  27172. weight: math.unit(150, "lb"),
  27173. name: "Side",
  27174. image: {
  27175. source: "./media/characters/kenzie-lee/side.svg",
  27176. extra: 5505 / 5383,
  27177. bottom: 60 / 5573
  27178. }
  27179. },
  27180. paw: {
  27181. height: math.unit(0.57, "feet"),
  27182. name: "Paw",
  27183. image: {
  27184. source: "./media/characters/kenzie-lee/paw.svg"
  27185. }
  27186. },
  27187. },
  27188. [
  27189. {
  27190. name: "Normal",
  27191. height: math.unit(152, "feet"),
  27192. default: true
  27193. },
  27194. {
  27195. name: "Megamacro",
  27196. height: math.unit(7, "miles")
  27197. },
  27198. {
  27199. name: "Gigamacro",
  27200. height: math.unit(8000, "miles")
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27206. {
  27207. side: {
  27208. height: math.unit(6, "feet"),
  27209. weight: math.unit(150, "lb"),
  27210. name: "Side",
  27211. image: {
  27212. source: "./media/characters/withers/side.svg",
  27213. extra: 1830 / 1728,
  27214. bottom: 96 / 1927
  27215. }
  27216. },
  27217. front: {
  27218. height: math.unit(6, "feet"),
  27219. weight: math.unit(150, "lb"),
  27220. name: "Front",
  27221. image: {
  27222. source: "./media/characters/withers/front.svg",
  27223. extra: 1514 / 1438,
  27224. bottom: 118 / 1632
  27225. }
  27226. },
  27227. },
  27228. [
  27229. {
  27230. name: "Macro",
  27231. height: math.unit(168, "feet"),
  27232. default: true
  27233. },
  27234. {
  27235. name: "Megamacro",
  27236. height: math.unit(15, "miles")
  27237. }
  27238. ]
  27239. ))
  27240. characterMakers.push(() => makeCharacter(
  27241. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27242. {
  27243. front: {
  27244. height: math.unit(6 + 7 / 12, "feet"),
  27245. weight: math.unit(250, "lb"),
  27246. name: "Front",
  27247. image: {
  27248. source: "./media/characters/nemoskii/front.svg",
  27249. extra: 2270 / 1734,
  27250. bottom: 86 / 2354
  27251. }
  27252. },
  27253. back: {
  27254. height: math.unit(6 + 7 / 12, "feet"),
  27255. weight: math.unit(250, "lb"),
  27256. name: "Back",
  27257. image: {
  27258. source: "./media/characters/nemoskii/back.svg",
  27259. extra: 1845 / 1788,
  27260. bottom: 10.5 / 1852
  27261. }
  27262. },
  27263. head: {
  27264. height: math.unit(1.31, "feet"),
  27265. name: "Head",
  27266. image: {
  27267. source: "./media/characters/nemoskii/head.svg"
  27268. }
  27269. },
  27270. },
  27271. [
  27272. {
  27273. name: "Micro",
  27274. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27275. },
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(6 + 7 / 12, "feet"),
  27279. default: true
  27280. },
  27281. {
  27282. name: "Macro",
  27283. height: math.unit((6 + 7 / 12) * 150, "feet")
  27284. },
  27285. {
  27286. name: "Macro+",
  27287. height: math.unit((6 + 7 / 12) * 500, "feet")
  27288. },
  27289. {
  27290. name: "Megamacro",
  27291. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27292. },
  27293. ]
  27294. ))
  27295. characterMakers.push(() => makeCharacter(
  27296. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27297. {
  27298. front: {
  27299. height: math.unit(1, "mile"),
  27300. weight: math.unit(265261.9, "lb"),
  27301. name: "Front",
  27302. image: {
  27303. source: "./media/characters/shui/front.svg",
  27304. extra: 1633 / 1564,
  27305. bottom: 91.5 / 1726
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Macro",
  27312. height: math.unit(1, "mile"),
  27313. default: true
  27314. },
  27315. ]
  27316. ))
  27317. characterMakers.push(() => makeCharacter(
  27318. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27319. {
  27320. front: {
  27321. height: math.unit(12 + 6 / 12, "feet"),
  27322. weight: math.unit(1342, "lb"),
  27323. name: "Front",
  27324. image: {
  27325. source: "./media/characters/arokh-takakura/front.svg",
  27326. extra: 1089 / 1043,
  27327. bottom: 77.4 / 1176.7
  27328. }
  27329. },
  27330. back: {
  27331. height: math.unit(12 + 6 / 12, "feet"),
  27332. weight: math.unit(1342, "lb"),
  27333. name: "Back",
  27334. image: {
  27335. source: "./media/characters/arokh-takakura/back.svg",
  27336. extra: 1046 / 1019,
  27337. bottom: 102 / 1150
  27338. }
  27339. },
  27340. },
  27341. [
  27342. {
  27343. name: "Big",
  27344. height: math.unit(12 + 6 / 12, "feet"),
  27345. default: true
  27346. },
  27347. ]
  27348. ))
  27349. characterMakers.push(() => makeCharacter(
  27350. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27351. {
  27352. front: {
  27353. height: math.unit(5 + 6 / 12, "feet"),
  27354. weight: math.unit(150, "lb"),
  27355. name: "Front",
  27356. image: {
  27357. source: "./media/characters/theo/front.svg",
  27358. extra: 1184 / 1131,
  27359. bottom: 7.4 / 1191
  27360. }
  27361. },
  27362. },
  27363. [
  27364. {
  27365. name: "Micro",
  27366. height: math.unit(5, "inches")
  27367. },
  27368. {
  27369. name: "Normal",
  27370. height: math.unit(5 + 6 / 12, "feet"),
  27371. default: true
  27372. },
  27373. ]
  27374. ))
  27375. characterMakers.push(() => makeCharacter(
  27376. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27377. {
  27378. front: {
  27379. height: math.unit(5 + 9 / 12, "feet"),
  27380. weight: math.unit(130, "lb"),
  27381. name: "Front",
  27382. image: {
  27383. source: "./media/characters/cecelia-swift/front.svg",
  27384. extra: 502 / 484,
  27385. bottom: 23 / 523
  27386. }
  27387. },
  27388. back: {
  27389. height: math.unit(5 + 9 / 12, "feet"),
  27390. weight: math.unit(130, "lb"),
  27391. name: "Back",
  27392. image: {
  27393. source: "./media/characters/cecelia-swift/back.svg",
  27394. extra: 499 / 485,
  27395. bottom: 12 / 511
  27396. }
  27397. },
  27398. head: {
  27399. height: math.unit(0.90, "feet"),
  27400. name: "Head",
  27401. image: {
  27402. source: "./media/characters/cecelia-swift/head.svg"
  27403. }
  27404. },
  27405. rump: {
  27406. height: math.unit(1.75, "feet"),
  27407. name: "Rump",
  27408. image: {
  27409. source: "./media/characters/cecelia-swift/rump.svg"
  27410. }
  27411. },
  27412. },
  27413. [
  27414. {
  27415. name: "Normal",
  27416. height: math.unit(5 + 9 / 12, "feet"),
  27417. default: true
  27418. },
  27419. {
  27420. name: "Big",
  27421. height: math.unit(50, "feet")
  27422. },
  27423. {
  27424. name: "Macro",
  27425. height: math.unit(100, "feet")
  27426. },
  27427. {
  27428. name: "Macro+",
  27429. height: math.unit(500, "feet")
  27430. },
  27431. {
  27432. name: "Macro++",
  27433. height: math.unit(1000, "feet")
  27434. },
  27435. ]
  27436. ))
  27437. characterMakers.push(() => makeCharacter(
  27438. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27439. {
  27440. front: {
  27441. height: math.unit(6, "feet"),
  27442. weight: math.unit(150, "lb"),
  27443. name: "Front",
  27444. image: {
  27445. source: "./media/characters/kaunan/front.svg",
  27446. extra: 2890 / 2523,
  27447. bottom: 49 / 2939
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Macro",
  27454. height: math.unit(150, "feet"),
  27455. default: true
  27456. },
  27457. ]
  27458. ))
  27459. characterMakers.push(() => makeCharacter(
  27460. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27461. {
  27462. front: {
  27463. height: math.unit(175, "cm"),
  27464. weight: math.unit(60, "kg"),
  27465. name: "Front",
  27466. image: {
  27467. source: "./media/characters/fei/front.svg",
  27468. extra: 1873/1723,
  27469. bottom: 53/1926
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Mortal",
  27476. height: math.unit(175, "cm")
  27477. },
  27478. {
  27479. name: "Normal",
  27480. height: math.unit(3500, "m"),
  27481. default: true
  27482. },
  27483. {
  27484. name: "Stroll",
  27485. height: math.unit(17.5, "km")
  27486. },
  27487. {
  27488. name: "Showoff",
  27489. height: math.unit(175, "km")
  27490. },
  27491. ]
  27492. ))
  27493. characterMakers.push(() => makeCharacter(
  27494. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27495. {
  27496. front: {
  27497. height: math.unit(7, "feet"),
  27498. weight: math.unit(1000, "kg"),
  27499. name: "Front",
  27500. image: {
  27501. source: "./media/characters/edrax/front.svg",
  27502. extra: 2838 / 2550,
  27503. bottom: 130 / 2968
  27504. }
  27505. },
  27506. },
  27507. [
  27508. {
  27509. name: "Small",
  27510. height: math.unit(7, "feet")
  27511. },
  27512. {
  27513. name: "Normal",
  27514. height: math.unit(1500, "meters")
  27515. },
  27516. {
  27517. name: "Mega",
  27518. height: math.unit(12000000, "km"),
  27519. default: true
  27520. },
  27521. {
  27522. name: "Megamacro",
  27523. height: math.unit(10600000, "lightyears")
  27524. },
  27525. {
  27526. name: "Hypermacro",
  27527. height: math.unit(256, "yottameters")
  27528. },
  27529. ]
  27530. ))
  27531. characterMakers.push(() => makeCharacter(
  27532. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27533. {
  27534. front: {
  27535. height: math.unit(10, "feet"),
  27536. weight: math.unit(750, "lb"),
  27537. name: "Front",
  27538. image: {
  27539. source: "./media/characters/clove/front.svg",
  27540. extra: 2031 / 1860,
  27541. bottom: 47.8 / 2080
  27542. }
  27543. },
  27544. back: {
  27545. height: math.unit(10, "feet"),
  27546. weight: math.unit(750, "lb"),
  27547. name: "Back",
  27548. image: {
  27549. source: "./media/characters/clove/back.svg",
  27550. extra: 2025 / 1859,
  27551. bottom: 46 / 2071
  27552. }
  27553. },
  27554. },
  27555. [
  27556. {
  27557. name: "Normal",
  27558. height: math.unit(10, "feet"),
  27559. default: true
  27560. },
  27561. ]
  27562. ))
  27563. characterMakers.push(() => makeCharacter(
  27564. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27565. {
  27566. front: {
  27567. height: math.unit(4, "feet"),
  27568. weight: math.unit(50, "lb"),
  27569. name: "Front",
  27570. image: {
  27571. source: "./media/characters/alex-rabbit/front.svg",
  27572. extra: 507 / 458,
  27573. bottom: 18.5 / 527
  27574. }
  27575. },
  27576. back: {
  27577. height: math.unit(4, "feet"),
  27578. weight: math.unit(50, "lb"),
  27579. name: "Back",
  27580. image: {
  27581. source: "./media/characters/alex-rabbit/back.svg",
  27582. extra: 502 / 460,
  27583. bottom: 18.9 / 521
  27584. }
  27585. },
  27586. },
  27587. [
  27588. {
  27589. name: "Normal",
  27590. height: math.unit(4, "feet"),
  27591. default: true
  27592. },
  27593. ]
  27594. ))
  27595. characterMakers.push(() => makeCharacter(
  27596. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27597. {
  27598. front: {
  27599. height: math.unit(1 + 3 / 12, "feet"),
  27600. weight: math.unit(80, "lb"),
  27601. name: "Front",
  27602. image: {
  27603. source: "./media/characters/zander-rose/front.svg",
  27604. extra: 916 / 797,
  27605. bottom: 17 / 933
  27606. }
  27607. },
  27608. back: {
  27609. height: math.unit(1 + 3 / 12, "feet"),
  27610. weight: math.unit(80, "lb"),
  27611. name: "Back",
  27612. image: {
  27613. source: "./media/characters/zander-rose/back.svg",
  27614. extra: 903 / 779,
  27615. bottom: 31 / 934
  27616. }
  27617. },
  27618. },
  27619. [
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(1 + 3 / 12, "feet"),
  27623. default: true
  27624. },
  27625. ]
  27626. ))
  27627. characterMakers.push(() => makeCharacter(
  27628. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27629. {
  27630. anthro: {
  27631. height: math.unit(6, "feet"),
  27632. weight: math.unit(150, "lb"),
  27633. name: "Anthro",
  27634. image: {
  27635. source: "./media/characters/razz/anthro.svg",
  27636. extra: 1437 / 1343,
  27637. bottom: 48 / 1485
  27638. }
  27639. },
  27640. feral: {
  27641. height: math.unit(6, "feet"),
  27642. weight: math.unit(150, "lb"),
  27643. name: "Feral",
  27644. image: {
  27645. source: "./media/characters/razz/feral.svg",
  27646. extra: 2569 / 1385,
  27647. bottom: 95 / 2664
  27648. }
  27649. },
  27650. },
  27651. [
  27652. {
  27653. name: "Normal",
  27654. height: math.unit(6, "feet"),
  27655. default: true
  27656. },
  27657. ]
  27658. ))
  27659. characterMakers.push(() => makeCharacter(
  27660. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27661. {
  27662. front: {
  27663. height: math.unit(9 + 4 / 12, "feet"),
  27664. weight: math.unit(500, "lb"),
  27665. name: "Front",
  27666. image: {
  27667. source: "./media/characters/morrigan/front.svg",
  27668. extra: 2707 / 2579,
  27669. bottom: 156 / 2863
  27670. }
  27671. },
  27672. },
  27673. [
  27674. {
  27675. name: "Normal",
  27676. height: math.unit(9 + 4 / 12, "feet"),
  27677. default: true
  27678. },
  27679. ]
  27680. ))
  27681. characterMakers.push(() => makeCharacter(
  27682. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27683. {
  27684. front: {
  27685. height: math.unit(5, "stories"),
  27686. weight: math.unit(4000, "lb"),
  27687. name: "Front",
  27688. image: {
  27689. source: "./media/characters/jenene/front.svg",
  27690. extra: 1780 / 1710,
  27691. bottom: 57 / 1837
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Normal",
  27698. height: math.unit(5, "stories"),
  27699. default: true
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27705. {
  27706. taurSfw: {
  27707. height: math.unit(10, "meters"),
  27708. weight: math.unit(17500, "kg"),
  27709. name: "Taur",
  27710. image: {
  27711. source: "./media/characters/faey/taur-sfw.svg",
  27712. extra: 1200 / 968,
  27713. bottom: 41 / 1241
  27714. }
  27715. },
  27716. chestmaw: {
  27717. height: math.unit(2.01, "meters"),
  27718. name: "Chestmaw",
  27719. image: {
  27720. source: "./media/characters/faey/chestmaw.svg"
  27721. }
  27722. },
  27723. foot: {
  27724. height: math.unit(2.43, "meters"),
  27725. name: "Foot",
  27726. image: {
  27727. source: "./media/characters/faey/foot.svg"
  27728. }
  27729. },
  27730. jaws: {
  27731. height: math.unit(1.66, "meters"),
  27732. name: "Jaws",
  27733. image: {
  27734. source: "./media/characters/faey/jaws.svg"
  27735. }
  27736. },
  27737. tongues: {
  27738. height: math.unit(2.01, "meters"),
  27739. name: "Tongues",
  27740. image: {
  27741. source: "./media/characters/faey/tongues.svg"
  27742. }
  27743. },
  27744. },
  27745. [
  27746. {
  27747. name: "Small",
  27748. height: math.unit(10, "meters"),
  27749. default: true
  27750. },
  27751. {
  27752. name: "Big",
  27753. height: math.unit(500000, "km")
  27754. },
  27755. ]
  27756. ))
  27757. characterMakers.push(() => makeCharacter(
  27758. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27759. {
  27760. front: {
  27761. height: math.unit(7, "feet"),
  27762. weight: math.unit(275, "lb"),
  27763. name: "Front",
  27764. image: {
  27765. source: "./media/characters/roku/front.svg",
  27766. extra: 903 / 878,
  27767. bottom: 37 / 940
  27768. }
  27769. },
  27770. },
  27771. [
  27772. {
  27773. name: "Normal",
  27774. height: math.unit(7, "feet"),
  27775. default: true
  27776. },
  27777. {
  27778. name: "Macro",
  27779. height: math.unit(500, "feet")
  27780. },
  27781. {
  27782. name: "Megamacro",
  27783. height: math.unit(200, "miles")
  27784. },
  27785. ]
  27786. ))
  27787. characterMakers.push(() => makeCharacter(
  27788. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27789. {
  27790. front: {
  27791. height: math.unit(6 + 2 / 12, "feet"),
  27792. weight: math.unit(150, "lb"),
  27793. name: "Front",
  27794. image: {
  27795. source: "./media/characters/lira/front.svg",
  27796. extra: 1727 / 1605,
  27797. bottom: 26 / 1753
  27798. }
  27799. },
  27800. back: {
  27801. height: math.unit(6 + 2 / 12, "feet"),
  27802. weight: math.unit(150, "lb"),
  27803. name: "Back",
  27804. image: {
  27805. source: "./media/characters/lira/back.svg",
  27806. extra: 1713/1621,
  27807. bottom: 20/1733
  27808. }
  27809. },
  27810. hand: {
  27811. height: math.unit(0.75, "feet"),
  27812. name: "Hand",
  27813. image: {
  27814. source: "./media/characters/lira/hand.svg"
  27815. }
  27816. },
  27817. maw: {
  27818. height: math.unit(0.65, "feet"),
  27819. name: "Maw",
  27820. image: {
  27821. source: "./media/characters/lira/maw.svg"
  27822. }
  27823. },
  27824. pawDigi: {
  27825. height: math.unit(1.6, "feet"),
  27826. name: "Paw Digi",
  27827. image: {
  27828. source: "./media/characters/lira/paw-digi.svg"
  27829. }
  27830. },
  27831. pawPlanti: {
  27832. height: math.unit(1.4, "feet"),
  27833. name: "Paw Planti",
  27834. image: {
  27835. source: "./media/characters/lira/paw-planti.svg"
  27836. }
  27837. },
  27838. },
  27839. [
  27840. {
  27841. name: "Normal",
  27842. height: math.unit(6 + 2 / 12, "feet"),
  27843. default: true
  27844. },
  27845. {
  27846. name: "Macro",
  27847. height: math.unit(100, "feet")
  27848. },
  27849. {
  27850. name: "Macro²",
  27851. height: math.unit(1600, "feet")
  27852. },
  27853. {
  27854. name: "Planetary",
  27855. height: math.unit(20, "earths")
  27856. },
  27857. ]
  27858. ))
  27859. characterMakers.push(() => makeCharacter(
  27860. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27861. {
  27862. front: {
  27863. height: math.unit(6, "feet"),
  27864. weight: math.unit(150, "lb"),
  27865. name: "Front",
  27866. image: {
  27867. source: "./media/characters/hadjet/front.svg",
  27868. extra: 1480 / 1346,
  27869. bottom: 26 / 1506
  27870. }
  27871. },
  27872. frontNsfw: {
  27873. height: math.unit(6, "feet"),
  27874. weight: math.unit(150, "lb"),
  27875. name: "Front (NSFW)",
  27876. image: {
  27877. source: "./media/characters/hadjet/front-nsfw.svg",
  27878. extra: 1440 / 1358,
  27879. bottom: 52 / 1492
  27880. }
  27881. },
  27882. },
  27883. [
  27884. {
  27885. name: "Macro",
  27886. height: math.unit(10, "stories"),
  27887. default: true
  27888. },
  27889. {
  27890. name: "Megamacro",
  27891. height: math.unit(1.5, "miles")
  27892. },
  27893. {
  27894. name: "Megamacro+",
  27895. height: math.unit(5, "miles")
  27896. },
  27897. ]
  27898. ))
  27899. characterMakers.push(() => makeCharacter(
  27900. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27901. {
  27902. side: {
  27903. height: math.unit(106, "feet"),
  27904. weight: math.unit(500, "tonnes"),
  27905. name: "Side",
  27906. image: {
  27907. source: "./media/characters/kodran/side.svg",
  27908. extra: 553 / 480,
  27909. bottom: 33 / 586
  27910. }
  27911. },
  27912. front: {
  27913. height: math.unit(132, "feet"),
  27914. weight: math.unit(500, "tonnes"),
  27915. name: "Front",
  27916. image: {
  27917. source: "./media/characters/kodran/front.svg",
  27918. extra: 667 / 643,
  27919. bottom: 42 / 709
  27920. }
  27921. },
  27922. flying: {
  27923. height: math.unit(350, "feet"),
  27924. weight: math.unit(500, "tonnes"),
  27925. name: "Flying",
  27926. image: {
  27927. source: "./media/characters/kodran/flying.svg"
  27928. }
  27929. },
  27930. foot: {
  27931. height: math.unit(33, "feet"),
  27932. name: "Foot",
  27933. image: {
  27934. source: "./media/characters/kodran/foot.svg"
  27935. }
  27936. },
  27937. footFront: {
  27938. height: math.unit(19, "feet"),
  27939. name: "Foot (Front)",
  27940. image: {
  27941. source: "./media/characters/kodran/foot-front.svg",
  27942. extra: 261 / 261,
  27943. bottom: 91 / 352
  27944. }
  27945. },
  27946. headFront: {
  27947. height: math.unit(53, "feet"),
  27948. name: "Head (Front)",
  27949. image: {
  27950. source: "./media/characters/kodran/head-front.svg"
  27951. }
  27952. },
  27953. headSide: {
  27954. height: math.unit(65, "feet"),
  27955. name: "Head (Side)",
  27956. image: {
  27957. source: "./media/characters/kodran/head-side.svg"
  27958. }
  27959. },
  27960. throat: {
  27961. height: math.unit(79, "feet"),
  27962. name: "Throat",
  27963. image: {
  27964. source: "./media/characters/kodran/throat.svg"
  27965. }
  27966. },
  27967. },
  27968. [
  27969. {
  27970. name: "Large",
  27971. height: math.unit(106, "feet"),
  27972. default: true
  27973. },
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27978. {
  27979. side: {
  27980. height: math.unit(11, "feet"),
  27981. weight: math.unit(150, "lb"),
  27982. name: "Side",
  27983. image: {
  27984. source: "./media/characters/pyxaron/side.svg",
  27985. extra: 305 / 195,
  27986. bottom: 17 / 322
  27987. }
  27988. },
  27989. },
  27990. [
  27991. {
  27992. name: "Normal",
  27993. height: math.unit(11, "feet"),
  27994. default: true
  27995. },
  27996. ]
  27997. ))
  27998. characterMakers.push(() => makeCharacter(
  27999. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28000. {
  28001. front: {
  28002. height: math.unit(6, "feet"),
  28003. weight: math.unit(150, "lb"),
  28004. name: "Front",
  28005. image: {
  28006. source: "./media/characters/meep/front.svg",
  28007. extra: 88 / 80,
  28008. bottom: 6 / 94
  28009. }
  28010. },
  28011. },
  28012. [
  28013. {
  28014. name: "Fun Sized",
  28015. height: math.unit(2, "inches"),
  28016. default: true
  28017. },
  28018. {
  28019. name: "Friend Sized",
  28020. height: math.unit(8, "inches")
  28021. },
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28026. {
  28027. front: {
  28028. height: math.unit(15, "feet"),
  28029. weight: math.unit(2500, "lb"),
  28030. name: "Front",
  28031. image: {
  28032. source: "./media/characters/holly-rabbit/front.svg",
  28033. extra: 1433 / 1233,
  28034. bottom: 125 / 1558
  28035. }
  28036. },
  28037. dick: {
  28038. height: math.unit(4.6, "feet"),
  28039. name: "Dick",
  28040. image: {
  28041. source: "./media/characters/holly-rabbit/dick.svg"
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Normal",
  28048. height: math.unit(15, "feet"),
  28049. default: true
  28050. },
  28051. {
  28052. name: "Macro",
  28053. height: math.unit(250, "feet")
  28054. },
  28055. {
  28056. name: "Macro+",
  28057. height: math.unit(2500, "feet")
  28058. },
  28059. ]
  28060. ))
  28061. characterMakers.push(() => makeCharacter(
  28062. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28063. {
  28064. front: {
  28065. height: math.unit(3.02, "meters"),
  28066. weight: math.unit(500, "kg"),
  28067. name: "Front",
  28068. image: {
  28069. source: "./media/characters/drena/front.svg",
  28070. extra: 282 / 243,
  28071. bottom: 8 / 290
  28072. }
  28073. },
  28074. side: {
  28075. height: math.unit(3.02, "meters"),
  28076. weight: math.unit(500, "kg"),
  28077. name: "Side",
  28078. image: {
  28079. source: "./media/characters/drena/side.svg",
  28080. extra: 280 / 245,
  28081. bottom: 10 / 290
  28082. }
  28083. },
  28084. back: {
  28085. height: math.unit(3.02, "meters"),
  28086. weight: math.unit(500, "kg"),
  28087. name: "Back",
  28088. image: {
  28089. source: "./media/characters/drena/back.svg",
  28090. extra: 278 / 243,
  28091. bottom: 2 / 280
  28092. }
  28093. },
  28094. foot: {
  28095. height: math.unit(0.75, "meters"),
  28096. name: "Foot",
  28097. image: {
  28098. source: "./media/characters/drena/foot.svg"
  28099. }
  28100. },
  28101. maw: {
  28102. height: math.unit(0.82, "meters"),
  28103. name: "Maw",
  28104. image: {
  28105. source: "./media/characters/drena/maw.svg"
  28106. }
  28107. },
  28108. rump: {
  28109. height: math.unit(0.93, "meters"),
  28110. name: "Rump",
  28111. image: {
  28112. source: "./media/characters/drena/rump.svg"
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(3.02, "meters"),
  28120. default: true
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28126. {
  28127. front: {
  28128. height: math.unit(6 + 4 / 12, "feet"),
  28129. weight: math.unit(250, "lb"),
  28130. name: "Front",
  28131. image: {
  28132. source: "./media/characters/remmyzilla/front.svg",
  28133. extra: 4033 / 3588,
  28134. bottom: 123 / 4156
  28135. }
  28136. },
  28137. back: {
  28138. height: math.unit(6 + 4 / 12, "feet"),
  28139. weight: math.unit(250, "lb"),
  28140. name: "Back",
  28141. image: {
  28142. source: "./media/characters/remmyzilla/back.svg",
  28143. extra: 2687 / 2555,
  28144. bottom: 48 / 2735
  28145. }
  28146. },
  28147. paw: {
  28148. height: math.unit(1.73, "feet"),
  28149. name: "Paw",
  28150. image: {
  28151. source: "./media/characters/remmyzilla/paw.svg"
  28152. }
  28153. },
  28154. maw: {
  28155. height: math.unit(1.73, "feet"),
  28156. name: "Maw",
  28157. image: {
  28158. source: "./media/characters/remmyzilla/maw.svg"
  28159. }
  28160. },
  28161. },
  28162. [
  28163. {
  28164. name: "Normal",
  28165. height: math.unit(6 + 4 / 12, "feet")
  28166. },
  28167. {
  28168. name: "Minimacro",
  28169. height: math.unit(12 + 8 / 12, "feet")
  28170. },
  28171. {
  28172. name: "Normal",
  28173. height: math.unit(640, "feet"),
  28174. default: true
  28175. },
  28176. {
  28177. name: "Megamacro",
  28178. height: math.unit(6400, "feet")
  28179. },
  28180. {
  28181. name: "Gigamacro",
  28182. height: math.unit(64000, "miles")
  28183. },
  28184. ]
  28185. ))
  28186. characterMakers.push(() => makeCharacter(
  28187. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28188. {
  28189. front: {
  28190. height: math.unit(2.5, "meters"),
  28191. weight: math.unit(300, "lb"),
  28192. name: "Front",
  28193. image: {
  28194. source: "./media/characters/lawrence/front.svg",
  28195. extra: 357 / 335,
  28196. bottom: 30 / 387
  28197. }
  28198. },
  28199. back: {
  28200. height: math.unit(2.5, "meters"),
  28201. weight: math.unit(300, "lb"),
  28202. name: "Back",
  28203. image: {
  28204. source: "./media/characters/lawrence/back.svg",
  28205. extra: 357 / 338,
  28206. bottom: 16 / 373
  28207. }
  28208. },
  28209. head: {
  28210. height: math.unit(0.9, "meter"),
  28211. name: "Head",
  28212. image: {
  28213. source: "./media/characters/lawrence/head.svg"
  28214. }
  28215. },
  28216. maw: {
  28217. height: math.unit(0.7, "meter"),
  28218. name: "Maw",
  28219. image: {
  28220. source: "./media/characters/lawrence/maw.svg"
  28221. }
  28222. },
  28223. footBottom: {
  28224. height: math.unit(0.5, "meter"),
  28225. name: "Foot (Bottom)",
  28226. image: {
  28227. source: "./media/characters/lawrence/foot-bottom.svg"
  28228. }
  28229. },
  28230. footTop: {
  28231. height: math.unit(0.5, "meter"),
  28232. name: "Foot (Top)",
  28233. image: {
  28234. source: "./media/characters/lawrence/foot-top.svg"
  28235. }
  28236. },
  28237. },
  28238. [
  28239. {
  28240. name: "Normal",
  28241. height: math.unit(2.5, "meters"),
  28242. default: true
  28243. },
  28244. {
  28245. name: "Macro",
  28246. height: math.unit(95, "meters")
  28247. },
  28248. {
  28249. name: "Megamacro",
  28250. height: math.unit(150, "km")
  28251. },
  28252. ]
  28253. ))
  28254. characterMakers.push(() => makeCharacter(
  28255. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28256. {
  28257. front: {
  28258. height: math.unit(4.2, "meters"),
  28259. name: "Front",
  28260. image: {
  28261. source: "./media/characters/sydney/front.svg",
  28262. extra: 1323 / 1277,
  28263. bottom: 111 / 1434
  28264. }
  28265. },
  28266. },
  28267. [
  28268. {
  28269. name: "Normal",
  28270. height: math.unit(4.2, "meters"),
  28271. default: true
  28272. },
  28273. ]
  28274. ))
  28275. characterMakers.push(() => makeCharacter(
  28276. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28277. {
  28278. back: {
  28279. height: math.unit(201, "feet"),
  28280. name: "Back",
  28281. image: {
  28282. source: "./media/characters/jessica/back.svg",
  28283. extra: 273 / 259,
  28284. bottom: 7 / 280
  28285. }
  28286. },
  28287. },
  28288. [
  28289. {
  28290. name: "Normal",
  28291. height: math.unit(201, "feet"),
  28292. default: true
  28293. },
  28294. {
  28295. name: "Megamacro",
  28296. height: math.unit(8, "miles")
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28302. {
  28303. side: {
  28304. height: math.unit(320, "cm"),
  28305. name: "Side",
  28306. image: {
  28307. source: "./media/characters/victoria/side.svg",
  28308. extra: 778 / 346,
  28309. bottom: 56 / 834
  28310. }
  28311. },
  28312. maw: {
  28313. height: math.unit(5.9, "feet"),
  28314. name: "Maw",
  28315. image: {
  28316. source: "./media/characters/victoria/maw.svg"
  28317. }
  28318. },
  28319. },
  28320. [
  28321. {
  28322. name: "Normal",
  28323. height: math.unit(320, "cm"),
  28324. default: true
  28325. },
  28326. ]
  28327. ))
  28328. characterMakers.push(() => makeCharacter(
  28329. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28330. {
  28331. front: {
  28332. height: math.unit(5 + 6 / 12, "feet"),
  28333. name: "Front",
  28334. image: {
  28335. source: "./media/characters/cat/front.svg",
  28336. extra: 1374 / 1257,
  28337. bottom: 59 / 1433
  28338. }
  28339. },
  28340. back: {
  28341. height: math.unit(5 + 6 / 12, "feet"),
  28342. name: "Back",
  28343. image: {
  28344. source: "./media/characters/cat/back.svg",
  28345. extra: 1337 / 1226,
  28346. bottom: 34 / 1371
  28347. }
  28348. },
  28349. taur: {
  28350. height: math.unit(7, "feet"),
  28351. name: "Taur",
  28352. image: {
  28353. source: "./media/characters/cat/taur.svg",
  28354. extra: 1345 / 1231,
  28355. bottom: 66 / 1411
  28356. }
  28357. },
  28358. lucario: {
  28359. height: math.unit(4, "feet"),
  28360. name: "Lucario",
  28361. image: {
  28362. source: "./media/characters/cat/lucario.svg",
  28363. extra: 1470 / 1318,
  28364. bottom: 65 / 1535
  28365. }
  28366. },
  28367. megaLucario: {
  28368. height: math.unit(4, "feet"),
  28369. name: "Mega Lucario",
  28370. image: {
  28371. source: "./media/characters/cat/mega-lucario.svg",
  28372. extra: 1515 / 1319,
  28373. bottom: 63 / 1578
  28374. }
  28375. },
  28376. nickit: {
  28377. height: math.unit(2, "feet"),
  28378. name: "Nickit",
  28379. image: {
  28380. source: "./media/characters/cat/nickit.svg",
  28381. extra: 1980 / 1585,
  28382. bottom: 102 / 2082
  28383. }
  28384. },
  28385. lopunnyFront: {
  28386. height: math.unit(5, "feet"),
  28387. name: "Lopunny (Front)",
  28388. image: {
  28389. source: "./media/characters/cat/lopunny-front.svg",
  28390. extra: 1782 / 1469,
  28391. bottom: 38 / 1820
  28392. }
  28393. },
  28394. lopunnyBack: {
  28395. height: math.unit(5, "feet"),
  28396. name: "Lopunny (Back)",
  28397. image: {
  28398. source: "./media/characters/cat/lopunny-back.svg",
  28399. extra: 1660 / 1490,
  28400. bottom: 25 / 1685
  28401. }
  28402. },
  28403. },
  28404. [
  28405. {
  28406. name: "Really small",
  28407. height: math.unit(1, "nm")
  28408. },
  28409. {
  28410. name: "Micro",
  28411. height: math.unit(5, "inches")
  28412. },
  28413. {
  28414. name: "Normal",
  28415. height: math.unit(5 + 6 / 12, "feet"),
  28416. default: true
  28417. },
  28418. {
  28419. name: "Macro",
  28420. height: math.unit(50, "feet")
  28421. },
  28422. {
  28423. name: "Macro+",
  28424. height: math.unit(150, "feet")
  28425. },
  28426. {
  28427. name: "Megamacro",
  28428. height: math.unit(100, "miles")
  28429. },
  28430. ]
  28431. ))
  28432. characterMakers.push(() => makeCharacter(
  28433. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28434. {
  28435. front: {
  28436. height: math.unit(63.4, "meters"),
  28437. weight: math.unit(3.28349e+6, "kilograms"),
  28438. name: "Front",
  28439. image: {
  28440. source: "./media/characters/kirina-violet/front.svg",
  28441. extra: 2812 / 2725,
  28442. bottom: 0 / 2812
  28443. }
  28444. },
  28445. back: {
  28446. height: math.unit(63.4, "meters"),
  28447. weight: math.unit(3.28349e+6, "kilograms"),
  28448. name: "Back",
  28449. image: {
  28450. source: "./media/characters/kirina-violet/back.svg",
  28451. extra: 2812 / 2725,
  28452. bottom: 0 / 2812
  28453. }
  28454. },
  28455. mouth: {
  28456. height: math.unit(4.35, "meters"),
  28457. name: "Mouth",
  28458. image: {
  28459. source: "./media/characters/kirina-violet/mouth.svg"
  28460. }
  28461. },
  28462. paw: {
  28463. height: math.unit(5.6, "meters"),
  28464. name: "Paw",
  28465. image: {
  28466. source: "./media/characters/kirina-violet/paw.svg"
  28467. }
  28468. },
  28469. tail: {
  28470. height: math.unit(18, "meters"),
  28471. name: "Tail",
  28472. image: {
  28473. source: "./media/characters/kirina-violet/tail.svg"
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Macro",
  28480. height: math.unit(63.4, "meters"),
  28481. default: true
  28482. },
  28483. ]
  28484. ))
  28485. characterMakers.push(() => makeCharacter(
  28486. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28487. {
  28488. front: {
  28489. height: math.unit(75, "feet"),
  28490. name: "Front",
  28491. image: {
  28492. source: "./media/characters/cat-gigachu/front.svg",
  28493. extra: 1239/1027,
  28494. bottom: 32/1271
  28495. }
  28496. },
  28497. back: {
  28498. height: math.unit(75, "feet"),
  28499. name: "Back",
  28500. image: {
  28501. source: "./media/characters/cat-gigachu/back.svg",
  28502. extra: 1229/1030,
  28503. bottom: 9/1238
  28504. }
  28505. },
  28506. },
  28507. [
  28508. {
  28509. name: "Dynamax",
  28510. height: math.unit(75, "feet"),
  28511. default: true
  28512. },
  28513. ]
  28514. ))
  28515. characterMakers.push(() => makeCharacter(
  28516. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28517. {
  28518. front: {
  28519. height: math.unit(6, "feet"),
  28520. weight: math.unit(150, "lb"),
  28521. name: "Front",
  28522. image: {
  28523. source: "./media/characters/sfaiyan/front.svg",
  28524. extra: 999 / 978,
  28525. bottom: 5 / 1004
  28526. }
  28527. },
  28528. },
  28529. [
  28530. {
  28531. name: "Normal",
  28532. height: math.unit(1.82, "meters")
  28533. },
  28534. {
  28535. name: "Giant",
  28536. height: math.unit(2.27, "km"),
  28537. default: true
  28538. },
  28539. ]
  28540. ))
  28541. characterMakers.push(() => makeCharacter(
  28542. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28543. {
  28544. front: {
  28545. height: math.unit(179, "cm"),
  28546. weight: math.unit(100, "kg"),
  28547. name: "Front",
  28548. image: {
  28549. source: "./media/characters/raunehkeli/front.svg",
  28550. extra: 1934 / 1926,
  28551. bottom: 0 / 1934
  28552. }
  28553. },
  28554. },
  28555. [
  28556. {
  28557. name: "Normal",
  28558. height: math.unit(179, "cm")
  28559. },
  28560. {
  28561. name: "Maximum",
  28562. height: math.unit(575, "meters"),
  28563. default: true
  28564. },
  28565. ]
  28566. ))
  28567. characterMakers.push(() => makeCharacter(
  28568. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28569. {
  28570. front: {
  28571. height: math.unit(6, "feet"),
  28572. weight: math.unit(150, "lb"),
  28573. name: "Front",
  28574. image: {
  28575. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28576. extra: 2625 / 2518,
  28577. bottom: 60 / 2685
  28578. }
  28579. },
  28580. },
  28581. [
  28582. {
  28583. name: "Normal",
  28584. height: math.unit(6 + 2 / 12, "feet")
  28585. },
  28586. {
  28587. name: "Macro",
  28588. height: math.unit(1180, "feet"),
  28589. default: true
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(5 + 6 / 12, "feet"),
  28598. weight: math.unit(108, "lb"),
  28599. name: "Front",
  28600. image: {
  28601. source: "./media/characters/lilith-zott/front.svg",
  28602. extra: 2510 / 2238,
  28603. bottom: 100 / 2610
  28604. }
  28605. },
  28606. frontDressed: {
  28607. height: math.unit(5 + 6 / 12, "feet"),
  28608. weight: math.unit(108, "lb"),
  28609. name: "Front (Dressed)",
  28610. image: {
  28611. source: "./media/characters/lilith-zott/front-dressed.svg",
  28612. extra: 2510 / 2238,
  28613. bottom: 100 / 2610
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Normal",
  28620. height: math.unit(5 + 6 / 12, "feet")
  28621. },
  28622. {
  28623. name: "Macro",
  28624. height: math.unit(1030, "feet"),
  28625. default: true
  28626. },
  28627. ]
  28628. ))
  28629. characterMakers.push(() => makeCharacter(
  28630. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28631. {
  28632. front: {
  28633. height: math.unit(6, "feet"),
  28634. weight: math.unit(150, "lb"),
  28635. name: "Front",
  28636. image: {
  28637. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28638. extra: 2567 / 2435,
  28639. bottom: 39 / 2606
  28640. }
  28641. },
  28642. frontSuper: {
  28643. height: math.unit(6, "feet"),
  28644. name: "Front (Super)",
  28645. image: {
  28646. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28647. extra: 2567 / 2435,
  28648. bottom: 39 / 2606
  28649. }
  28650. },
  28651. },
  28652. [
  28653. {
  28654. name: "Normal",
  28655. height: math.unit(5 + 10 / 12, "feet")
  28656. },
  28657. {
  28658. name: "Macro",
  28659. height: math.unit(1100, "feet"),
  28660. default: true
  28661. },
  28662. ]
  28663. ))
  28664. characterMakers.push(() => makeCharacter(
  28665. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28666. {
  28667. front: {
  28668. height: math.unit(100, "miles"),
  28669. name: "Front",
  28670. image: {
  28671. source: "./media/characters/sona/front.svg",
  28672. extra: 2433 / 2201,
  28673. bottom: 53 / 2486
  28674. }
  28675. },
  28676. foot: {
  28677. height: math.unit(16.1, "miles"),
  28678. name: "Foot",
  28679. image: {
  28680. source: "./media/characters/sona/foot.svg"
  28681. }
  28682. },
  28683. },
  28684. [
  28685. {
  28686. name: "Macro",
  28687. height: math.unit(100, "miles"),
  28688. default: true
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28694. {
  28695. front: {
  28696. height: math.unit(6, "feet"),
  28697. weight: math.unit(150, "lb"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/bailey/front.svg",
  28701. extra: 1778 / 1724,
  28702. bottom: 30 / 1808
  28703. }
  28704. },
  28705. },
  28706. [
  28707. {
  28708. name: "Micro",
  28709. height: math.unit(4, "inches")
  28710. },
  28711. {
  28712. name: "Normal",
  28713. height: math.unit(5 + 5 / 12, "feet"),
  28714. default: true
  28715. },
  28716. {
  28717. name: "Macro",
  28718. height: math.unit(250, "feet")
  28719. },
  28720. {
  28721. name: "Megamacro",
  28722. height: math.unit(100, "miles")
  28723. },
  28724. ]
  28725. ))
  28726. characterMakers.push(() => makeCharacter(
  28727. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28728. {
  28729. front: {
  28730. height: math.unit(5 + 2 / 12, "feet"),
  28731. weight: math.unit(120, "lb"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/snaps/front.svg",
  28735. extra: 2370 / 2177,
  28736. bottom: 48 / 2418
  28737. }
  28738. },
  28739. back: {
  28740. height: math.unit(5 + 2 / 12, "feet"),
  28741. weight: math.unit(120, "lb"),
  28742. name: "Back",
  28743. image: {
  28744. source: "./media/characters/snaps/back.svg",
  28745. extra: 2408 / 2258,
  28746. bottom: 15 / 2423
  28747. }
  28748. },
  28749. },
  28750. [
  28751. {
  28752. name: "Micro",
  28753. height: math.unit(9, "inches")
  28754. },
  28755. {
  28756. name: "Normal",
  28757. height: math.unit(5 + 2 / 12, "feet"),
  28758. default: true
  28759. },
  28760. {
  28761. name: "Mini Macro",
  28762. height: math.unit(10, "feet")
  28763. },
  28764. ]
  28765. ))
  28766. characterMakers.push(() => makeCharacter(
  28767. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28768. {
  28769. front: {
  28770. height: math.unit(1.8, "meters"),
  28771. weight: math.unit(85, "kg"),
  28772. name: "Front",
  28773. image: {
  28774. source: "./media/characters/azteck/front.svg",
  28775. extra: 2815 / 2625,
  28776. bottom: 89 / 2904
  28777. }
  28778. },
  28779. back: {
  28780. height: math.unit(1.8, "meters"),
  28781. weight: math.unit(85, "kg"),
  28782. name: "Back",
  28783. image: {
  28784. source: "./media/characters/azteck/back.svg",
  28785. extra: 2856 / 2648,
  28786. bottom: 85 / 2941
  28787. }
  28788. },
  28789. frontDressed: {
  28790. height: math.unit(1.8, "meters"),
  28791. weight: math.unit(85, "kg"),
  28792. name: "Front (Dressed)",
  28793. image: {
  28794. source: "./media/characters/azteck/front-dressed.svg",
  28795. extra: 2147 / 2003,
  28796. bottom: 68 / 2215
  28797. }
  28798. },
  28799. head: {
  28800. height: math.unit(0.47, "meters"),
  28801. weight: math.unit(85, "kg"),
  28802. name: "Head",
  28803. image: {
  28804. source: "./media/characters/azteck/head.svg"
  28805. }
  28806. },
  28807. },
  28808. [
  28809. {
  28810. name: "Bite sized",
  28811. height: math.unit(16, "cm")
  28812. },
  28813. {
  28814. name: "Normal",
  28815. height: math.unit(1.8, "meters"),
  28816. default: true
  28817. },
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28822. {
  28823. front: {
  28824. height: math.unit(6, "feet"),
  28825. weight: math.unit(150, "lb"),
  28826. name: "Front",
  28827. image: {
  28828. source: "./media/characters/pidge/front.svg",
  28829. extra: 620 / 588,
  28830. bottom: 9 / 629
  28831. }
  28832. },
  28833. back: {
  28834. height: math.unit(6, "feet"),
  28835. weight: math.unit(150, "lb"),
  28836. name: "Back",
  28837. image: {
  28838. source: "./media/characters/pidge/back.svg",
  28839. extra: 620 / 588,
  28840. bottom: 9 / 629
  28841. }
  28842. },
  28843. },
  28844. [
  28845. {
  28846. name: "Macro",
  28847. height: math.unit(1, "mile"),
  28848. default: true
  28849. },
  28850. ]
  28851. ))
  28852. characterMakers.push(() => makeCharacter(
  28853. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28854. {
  28855. front: {
  28856. height: math.unit(6, "feet"),
  28857. weight: math.unit(150, "lb"),
  28858. name: "Front",
  28859. image: {
  28860. source: "./media/characters/en/front.svg",
  28861. extra: 1697 / 1563,
  28862. bottom: 103 / 1800
  28863. }
  28864. },
  28865. back: {
  28866. height: math.unit(6, "feet"),
  28867. weight: math.unit(150, "lb"),
  28868. name: "Back",
  28869. image: {
  28870. source: "./media/characters/en/back.svg",
  28871. extra: 1700 / 1570,
  28872. bottom: 51 / 1751
  28873. }
  28874. },
  28875. frontDressed: {
  28876. height: math.unit(6, "feet"),
  28877. weight: math.unit(150, "lb"),
  28878. name: "Front (Dressed)",
  28879. image: {
  28880. source: "./media/characters/en/front-dressed.svg",
  28881. extra: 1697 / 1563,
  28882. bottom: 103 / 1800
  28883. }
  28884. },
  28885. backDressed: {
  28886. height: math.unit(6, "feet"),
  28887. weight: math.unit(150, "lb"),
  28888. name: "Back (Dressed)",
  28889. image: {
  28890. source: "./media/characters/en/back-dressed.svg",
  28891. extra: 1700 / 1570,
  28892. bottom: 51 / 1751
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Macro",
  28899. height: math.unit(210, "feet"),
  28900. default: true
  28901. },
  28902. ]
  28903. ))
  28904. characterMakers.push(() => makeCharacter(
  28905. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28906. {
  28907. front: {
  28908. height: math.unit(6, "feet"),
  28909. weight: math.unit(150, "lb"),
  28910. name: "Front",
  28911. image: {
  28912. source: "./media/characters/haze-orris/front.svg",
  28913. extra: 3975 / 3525,
  28914. bottom: 137 / 4112
  28915. }
  28916. },
  28917. },
  28918. [
  28919. {
  28920. name: "Micro",
  28921. height: math.unit(150, "mm"),
  28922. default: true
  28923. },
  28924. ]
  28925. ))
  28926. characterMakers.push(() => makeCharacter(
  28927. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28928. {
  28929. front: {
  28930. height: math.unit(6, "feet"),
  28931. weight: math.unit(150, "lb"),
  28932. name: "Front",
  28933. image: {
  28934. source: "./media/characters/casselene-yaro/front.svg",
  28935. extra: 4721 / 4541,
  28936. bottom: 82 / 4803
  28937. }
  28938. },
  28939. back: {
  28940. height: math.unit(6, "feet"),
  28941. weight: math.unit(150, "lb"),
  28942. name: "Back",
  28943. image: {
  28944. source: "./media/characters/casselene-yaro/back.svg",
  28945. extra: 4569 / 4377,
  28946. bottom: 69 / 4638
  28947. }
  28948. },
  28949. frontDressed: {
  28950. height: math.unit(6, "feet"),
  28951. weight: math.unit(150, "lb"),
  28952. name: "Front-dressed",
  28953. image: {
  28954. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28955. extra: 4721 / 4541,
  28956. bottom: 82 / 4803
  28957. }
  28958. },
  28959. },
  28960. [
  28961. {
  28962. name: "Macro",
  28963. height: math.unit(190, "feet"),
  28964. default: true
  28965. },
  28966. ]
  28967. ))
  28968. characterMakers.push(() => makeCharacter(
  28969. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28970. {
  28971. front: {
  28972. height: math.unit(6, "feet"),
  28973. weight: math.unit(150, "lb"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/myra-rue-delore/front.svg",
  28977. extra: 1340 / 1308,
  28978. bottom: 67 / 1407
  28979. }
  28980. },
  28981. back: {
  28982. height: math.unit(6, "feet"),
  28983. weight: math.unit(150, "lb"),
  28984. name: "Back",
  28985. image: {
  28986. source: "./media/characters/myra-rue-delore/back.svg",
  28987. extra: 1341 / 1310,
  28988. bottom: 40 / 1381
  28989. }
  28990. },
  28991. frontDressed: {
  28992. height: math.unit(6, "feet"),
  28993. weight: math.unit(150, "lb"),
  28994. name: "Front (Dressed)",
  28995. image: {
  28996. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28997. extra: 1340 / 1308,
  28998. bottom: 67 / 1407
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Macro",
  29005. height: math.unit(150, "feet"),
  29006. default: true
  29007. },
  29008. ]
  29009. ))
  29010. characterMakers.push(() => makeCharacter(
  29011. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29012. {
  29013. front: {
  29014. height: math.unit(10, "feet"),
  29015. weight: math.unit(15015, "lb"),
  29016. name: "Front",
  29017. image: {
  29018. source: "./media/characters/fem!plat/front.svg",
  29019. extra: 2799 / 2604,
  29020. bottom: 149 / 2948
  29021. }
  29022. },
  29023. },
  29024. [
  29025. {
  29026. name: "Normal",
  29027. height: math.unit(10, "feet"),
  29028. default: true
  29029. },
  29030. {
  29031. name: "Macro",
  29032. height: math.unit(100, "feet")
  29033. },
  29034. {
  29035. name: "Megamacro",
  29036. height: math.unit(1000, "feet")
  29037. },
  29038. ]
  29039. ))
  29040. characterMakers.push(() => makeCharacter(
  29041. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29042. {
  29043. front: {
  29044. height: math.unit(15 + 5 / 12, "feet"),
  29045. weight: math.unit(4600, "lb"),
  29046. name: "Front",
  29047. image: {
  29048. source: "./media/characters/neapolitan-ananassa/front.svg",
  29049. extra: 2903 / 2736,
  29050. bottom: 0 / 2903
  29051. }
  29052. },
  29053. side: {
  29054. height: math.unit(15 + 5 / 12, "feet"),
  29055. weight: math.unit(4600, "lb"),
  29056. name: "Side",
  29057. image: {
  29058. source: "./media/characters/neapolitan-ananassa/side.svg",
  29059. extra: 2925 / 2719,
  29060. bottom: 0 / 2925
  29061. }
  29062. },
  29063. back: {
  29064. height: math.unit(15 + 5 / 12, "feet"),
  29065. weight: math.unit(4600, "lb"),
  29066. name: "Back",
  29067. image: {
  29068. source: "./media/characters/neapolitan-ananassa/back.svg",
  29069. extra: 2903 / 2736,
  29070. bottom: 0 / 2903
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(15 + 5 / 12, "feet"),
  29078. default: true
  29079. },
  29080. {
  29081. name: "Post-Millenium",
  29082. height: math.unit(35 + 5 / 12, "feet")
  29083. },
  29084. {
  29085. name: "Post-Era",
  29086. height: math.unit(450 + 5 / 12, "feet")
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(300, "meters"),
  29095. weight: math.unit(125000, "tonnes"),
  29096. name: "Front",
  29097. image: {
  29098. source: "./media/characters/pazuzu/front.svg",
  29099. extra: 877 / 794,
  29100. bottom: 47 / 924
  29101. }
  29102. },
  29103. },
  29104. [
  29105. {
  29106. name: "Macro",
  29107. height: math.unit(300, "meters"),
  29108. default: true
  29109. },
  29110. ]
  29111. ))
  29112. characterMakers.push(() => makeCharacter(
  29113. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29114. {
  29115. side: {
  29116. height: math.unit(10 + 7 / 12, "feet"),
  29117. weight: math.unit(2.5, "tons"),
  29118. name: "Side",
  29119. image: {
  29120. source: "./media/characters/aasha/side.svg",
  29121. extra: 1345 / 1245,
  29122. bottom: 111 / 1456
  29123. }
  29124. },
  29125. back: {
  29126. height: math.unit(10 + 7 / 12, "feet"),
  29127. weight: math.unit(2.5, "tons"),
  29128. name: "Back",
  29129. image: {
  29130. source: "./media/characters/aasha/back.svg",
  29131. extra: 1133 / 1057,
  29132. bottom: 257 / 1390
  29133. }
  29134. },
  29135. },
  29136. [
  29137. {
  29138. name: "Normal",
  29139. height: math.unit(10 + 7 / 12, "feet"),
  29140. default: true
  29141. },
  29142. ]
  29143. ))
  29144. characterMakers.push(() => makeCharacter(
  29145. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29146. {
  29147. front: {
  29148. height: math.unit(6 + 3 / 12, "feet"),
  29149. name: "Front",
  29150. image: {
  29151. source: "./media/characters/nevan/front.svg",
  29152. extra: 704 / 704,
  29153. bottom: 28 / 732
  29154. }
  29155. },
  29156. back: {
  29157. height: math.unit(6 + 3 / 12, "feet"),
  29158. name: "Back",
  29159. image: {
  29160. source: "./media/characters/nevan/back.svg",
  29161. extra: 714 / 714,
  29162. bottom: 21 / 735
  29163. }
  29164. },
  29165. frontFlaccid: {
  29166. height: math.unit(6 + 3 / 12, "feet"),
  29167. name: "Front (Flaccid)",
  29168. image: {
  29169. source: "./media/characters/nevan/front-flaccid.svg",
  29170. extra: 704 / 704,
  29171. bottom: 28 / 732
  29172. }
  29173. },
  29174. frontErect: {
  29175. height: math.unit(6 + 3 / 12, "feet"),
  29176. name: "Front (Erect)",
  29177. image: {
  29178. source: "./media/characters/nevan/front-erect.svg",
  29179. extra: 704 / 704,
  29180. bottom: 28 / 732
  29181. }
  29182. },
  29183. backFlaccid: {
  29184. height: math.unit(6 + 3 / 12, "feet"),
  29185. name: "Back (Flaccid)",
  29186. image: {
  29187. source: "./media/characters/nevan/back-flaccid.svg",
  29188. extra: 714 / 714,
  29189. bottom: 21 / 735
  29190. }
  29191. },
  29192. },
  29193. [
  29194. {
  29195. name: "Normal",
  29196. height: math.unit(6 + 3 / 12, "feet"),
  29197. default: true
  29198. },
  29199. ]
  29200. ))
  29201. characterMakers.push(() => makeCharacter(
  29202. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29203. {
  29204. front: {
  29205. height: math.unit(4, "feet"),
  29206. name: "Front",
  29207. image: {
  29208. source: "./media/characters/arhan/front.svg",
  29209. extra: 3368 / 3133,
  29210. bottom: 0 / 3368
  29211. }
  29212. },
  29213. side: {
  29214. height: math.unit(4, "feet"),
  29215. name: "Side",
  29216. image: {
  29217. source: "./media/characters/arhan/side.svg",
  29218. extra: 3347 / 3105,
  29219. bottom: 0 / 3347
  29220. }
  29221. },
  29222. tongue: {
  29223. height: math.unit(1.42, "feet"),
  29224. name: "Tongue",
  29225. image: {
  29226. source: "./media/characters/arhan/tongue.svg"
  29227. }
  29228. },
  29229. head: {
  29230. height: math.unit(0.85, "feet"),
  29231. name: "Head",
  29232. image: {
  29233. source: "./media/characters/arhan/head.svg"
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "Normal",
  29240. height: math.unit(4, "feet"),
  29241. default: true
  29242. },
  29243. ]
  29244. ))
  29245. characterMakers.push(() => makeCharacter(
  29246. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29247. {
  29248. front: {
  29249. height: math.unit(5 + 7.5 / 12, "feet"),
  29250. weight: math.unit(120, "lb"),
  29251. name: "Front",
  29252. image: {
  29253. source: "./media/characters/digi-duncan/front.svg",
  29254. extra: 330 / 326,
  29255. bottom: 16 / 346
  29256. }
  29257. },
  29258. side: {
  29259. height: math.unit(5 + 7.5 / 12, "feet"),
  29260. weight: math.unit(120, "lb"),
  29261. name: "Side",
  29262. image: {
  29263. source: "./media/characters/digi-duncan/side.svg",
  29264. extra: 341 / 337,
  29265. bottom: 1 / 342
  29266. }
  29267. },
  29268. back: {
  29269. height: math.unit(5 + 7.5 / 12, "feet"),
  29270. weight: math.unit(120, "lb"),
  29271. name: "Back",
  29272. image: {
  29273. source: "./media/characters/digi-duncan/back.svg",
  29274. extra: 330 / 326,
  29275. bottom: 12 / 342
  29276. }
  29277. },
  29278. },
  29279. [
  29280. {
  29281. name: "Speck",
  29282. height: math.unit(0.25, "mm")
  29283. },
  29284. {
  29285. name: "Micro",
  29286. height: math.unit(5, "mm")
  29287. },
  29288. {
  29289. name: "Tiny",
  29290. height: math.unit(0.5, "inches"),
  29291. default: true
  29292. },
  29293. {
  29294. name: "Human",
  29295. height: math.unit(5 + 7.5 / 12, "feet")
  29296. },
  29297. {
  29298. name: "Minigiant",
  29299. height: math.unit(8 + 5.25, "feet")
  29300. },
  29301. {
  29302. name: "Giant",
  29303. height: math.unit(2000, "feet")
  29304. },
  29305. {
  29306. name: "Mega",
  29307. height: math.unit(371.1, "miles")
  29308. },
  29309. ]
  29310. ))
  29311. characterMakers.push(() => makeCharacter(
  29312. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29313. {
  29314. front: {
  29315. height: math.unit(2, "meters"),
  29316. weight: math.unit(350, "kg"),
  29317. name: "Front",
  29318. image: {
  29319. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29320. extra: 898 / 838,
  29321. bottom: 9 / 907
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Micro",
  29328. height: math.unit(8, "meters")
  29329. },
  29330. {
  29331. name: "Normal",
  29332. height: math.unit(50, "meters"),
  29333. default: true
  29334. },
  29335. {
  29336. name: "Macro",
  29337. height: math.unit(500, "meters")
  29338. },
  29339. ]
  29340. ))
  29341. characterMakers.push(() => makeCharacter(
  29342. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29343. {
  29344. front: {
  29345. height: math.unit(6 + 6 / 12, "feet"),
  29346. name: "Front",
  29347. image: {
  29348. source: "./media/characters/khardesh/front.svg",
  29349. extra: 888 / 797,
  29350. bottom: 25 / 913
  29351. }
  29352. },
  29353. },
  29354. [
  29355. {
  29356. name: "Normal",
  29357. height: math.unit(6 + 6 / 12, "feet"),
  29358. default: true
  29359. },
  29360. {
  29361. name: "Normal+",
  29362. height: math.unit(4, "meters")
  29363. },
  29364. {
  29365. name: "Macro",
  29366. height: math.unit(50, "meters")
  29367. },
  29368. {
  29369. name: "Macro+",
  29370. height: math.unit(100, "meters")
  29371. },
  29372. {
  29373. name: "Megamacro",
  29374. height: math.unit(20, "km")
  29375. },
  29376. ]
  29377. ))
  29378. characterMakers.push(() => makeCharacter(
  29379. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29380. {
  29381. front: {
  29382. height: math.unit(6, "feet"),
  29383. weight: math.unit(150, "lb"),
  29384. name: "Front",
  29385. image: {
  29386. source: "./media/characters/kosho/front.svg",
  29387. extra: 1847 / 1847,
  29388. bottom: 86 / 1933
  29389. }
  29390. },
  29391. },
  29392. [
  29393. {
  29394. name: "Second-stage micro",
  29395. height: math.unit(0.5, "inches")
  29396. },
  29397. {
  29398. name: "First-stage micro",
  29399. height: math.unit(6, "inches")
  29400. },
  29401. {
  29402. name: "Normal",
  29403. height: math.unit(6, "feet"),
  29404. default: true
  29405. },
  29406. {
  29407. name: "First-stage macro",
  29408. height: math.unit(72, "feet")
  29409. },
  29410. {
  29411. name: "Second-stage macro",
  29412. height: math.unit(864, "feet")
  29413. },
  29414. ]
  29415. ))
  29416. characterMakers.push(() => makeCharacter(
  29417. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29418. {
  29419. normal: {
  29420. height: math.unit(4 + 6 / 12, "feet"),
  29421. name: "Normal",
  29422. image: {
  29423. source: "./media/characters/hydra/normal.svg",
  29424. extra: 2833 / 2634,
  29425. bottom: 68 / 2901
  29426. }
  29427. },
  29428. smol: {
  29429. height: math.unit(0.705, "inches"),
  29430. name: "Smol",
  29431. image: {
  29432. source: "./media/characters/hydra/smol.svg",
  29433. extra: 2715 / 2540,
  29434. bottom: 0 / 2715
  29435. }
  29436. },
  29437. },
  29438. [
  29439. {
  29440. name: "Normal",
  29441. height: math.unit(4 + 6 / 12, "feet"),
  29442. default: true
  29443. }
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29448. {
  29449. front: {
  29450. height: math.unit(0.6, "cm"),
  29451. name: "Front",
  29452. image: {
  29453. source: "./media/characters/daz/front.svg",
  29454. extra: 1682 / 1164,
  29455. bottom: 42 / 1724
  29456. }
  29457. },
  29458. },
  29459. [
  29460. {
  29461. name: "Normal",
  29462. height: math.unit(0.6, "cm"),
  29463. default: true
  29464. },
  29465. ]
  29466. ))
  29467. characterMakers.push(() => makeCharacter(
  29468. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29469. {
  29470. front: {
  29471. height: math.unit(6, "feet"),
  29472. weight: math.unit(235, "lb"),
  29473. name: "Front",
  29474. image: {
  29475. source: "./media/characters/theo-pangolin/front.svg",
  29476. extra: 1996 / 1969,
  29477. bottom: 115 / 2111
  29478. }
  29479. },
  29480. back: {
  29481. height: math.unit(6, "feet"),
  29482. weight: math.unit(235, "lb"),
  29483. name: "Back",
  29484. image: {
  29485. source: "./media/characters/theo-pangolin/back.svg",
  29486. extra: 1979 / 1979,
  29487. bottom: 40 / 2019
  29488. }
  29489. },
  29490. feral: {
  29491. height: math.unit(2, "feet"),
  29492. weight: math.unit(30, "lb"),
  29493. name: "Feral",
  29494. image: {
  29495. source: "./media/characters/theo-pangolin/feral.svg",
  29496. extra: 803 / 791,
  29497. bottom: 181 / 984
  29498. }
  29499. },
  29500. footFive: {
  29501. height: math.unit(1.43, "feet"),
  29502. name: "Foot (Five Toes)",
  29503. image: {
  29504. source: "./media/characters/theo-pangolin/foot-five.svg"
  29505. }
  29506. },
  29507. footFour: {
  29508. height: math.unit(1.43, "feet"),
  29509. name: "Foot (Four Toes)",
  29510. image: {
  29511. source: "./media/characters/theo-pangolin/foot-four.svg"
  29512. }
  29513. },
  29514. handFour: {
  29515. height: math.unit(0.81, "feet"),
  29516. name: "Hand (Four Fingers)",
  29517. image: {
  29518. source: "./media/characters/theo-pangolin/hand-four.svg"
  29519. }
  29520. },
  29521. handThree: {
  29522. height: math.unit(0.81, "feet"),
  29523. name: "Hand (Three Fingers)",
  29524. image: {
  29525. source: "./media/characters/theo-pangolin/hand-three.svg"
  29526. }
  29527. },
  29528. headFront: {
  29529. height: math.unit(1.37, "feet"),
  29530. name: "Head (Front)",
  29531. image: {
  29532. source: "./media/characters/theo-pangolin/head-front.svg"
  29533. }
  29534. },
  29535. headSide: {
  29536. height: math.unit(1.43, "feet"),
  29537. name: "Head (Side)",
  29538. image: {
  29539. source: "./media/characters/theo-pangolin/head-side.svg"
  29540. }
  29541. },
  29542. tongue: {
  29543. height: math.unit(2.29, "feet"),
  29544. name: "Tongue",
  29545. image: {
  29546. source: "./media/characters/theo-pangolin/tongue.svg"
  29547. }
  29548. },
  29549. },
  29550. [
  29551. {
  29552. name: "Normal",
  29553. height: math.unit(6, "feet")
  29554. },
  29555. {
  29556. name: "Macro",
  29557. height: math.unit(400, "feet"),
  29558. default: true
  29559. },
  29560. ]
  29561. ))
  29562. characterMakers.push(() => makeCharacter(
  29563. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29564. {
  29565. front: {
  29566. height: math.unit(6, "inches"),
  29567. weight: math.unit(0.036, "kg"),
  29568. name: "Front",
  29569. image: {
  29570. source: "./media/characters/renée/front.svg",
  29571. extra: 900 / 886,
  29572. bottom: 8 / 908
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Nano",
  29579. height: math.unit(1, "nm")
  29580. },
  29581. {
  29582. name: "Micro",
  29583. height: math.unit(1, "mm")
  29584. },
  29585. {
  29586. name: "Normal",
  29587. height: math.unit(6, "inches")
  29588. },
  29589. {
  29590. name: "Macro",
  29591. height: math.unit(2000, "feet"),
  29592. default: true
  29593. },
  29594. {
  29595. name: "Megamacro",
  29596. height: math.unit(2, "km")
  29597. },
  29598. {
  29599. name: "Gigamacro",
  29600. height: math.unit(2000, "km")
  29601. },
  29602. {
  29603. name: "Teramacro",
  29604. height: math.unit(250000, "km")
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29610. {
  29611. front: {
  29612. height: math.unit(4, "meters"),
  29613. weight: math.unit(150, "kg"),
  29614. name: "Front",
  29615. image: {
  29616. source: "./media/characters/caledvwlch/front.svg",
  29617. extra: 1760 / 1551,
  29618. bottom: 28 / 1788
  29619. }
  29620. },
  29621. side: {
  29622. height: math.unit(4, "meters"),
  29623. weight: math.unit(150, "kg"),
  29624. name: "Side",
  29625. image: {
  29626. source: "./media/characters/caledvwlch/side.svg",
  29627. extra: 1605 / 1536,
  29628. bottom: 31 / 1636
  29629. }
  29630. },
  29631. back: {
  29632. height: math.unit(4, "meters"),
  29633. weight: math.unit(150, "kg"),
  29634. name: "Back",
  29635. image: {
  29636. source: "./media/characters/caledvwlch/back.svg",
  29637. extra: 1635 / 1565,
  29638. bottom: 27 / 1662
  29639. }
  29640. },
  29641. },
  29642. [
  29643. {
  29644. name: "\"Incognito\"",
  29645. height: math.unit(4, "meters")
  29646. },
  29647. {
  29648. name: "Small rampage",
  29649. height: math.unit(600, "meters")
  29650. },
  29651. {
  29652. name: "Mega",
  29653. height: math.unit(30, "km")
  29654. },
  29655. {
  29656. name: "Home-size",
  29657. height: math.unit(50, "km"),
  29658. default: true
  29659. },
  29660. {
  29661. name: "Giga",
  29662. height: math.unit(300, "km")
  29663. },
  29664. {
  29665. name: "Lounging",
  29666. height: math.unit(11000, "km")
  29667. },
  29668. {
  29669. name: "Planet snacking",
  29670. height: math.unit(2000000, "km")
  29671. },
  29672. ]
  29673. ))
  29674. characterMakers.push(() => makeCharacter(
  29675. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29676. {
  29677. front: {
  29678. height: math.unit(6, "feet"),
  29679. weight: math.unit(215, "lb"),
  29680. name: "Front",
  29681. image: {
  29682. source: "./media/characters/sapphire-svell/front.svg",
  29683. extra: 495 / 455,
  29684. bottom: 20 / 515
  29685. }
  29686. },
  29687. back: {
  29688. height: math.unit(6, "feet"),
  29689. weight: math.unit(216, "lb"),
  29690. name: "Back",
  29691. image: {
  29692. source: "./media/characters/sapphire-svell/back.svg",
  29693. extra: 497 / 477,
  29694. bottom: 7 / 504
  29695. }
  29696. },
  29697. maw: {
  29698. height: math.unit(1.57, "feet"),
  29699. name: "Maw",
  29700. image: {
  29701. source: "./media/characters/sapphire-svell/maw.svg"
  29702. }
  29703. },
  29704. foot: {
  29705. height: math.unit(1.07, "feet"),
  29706. name: "Foot",
  29707. image: {
  29708. source: "./media/characters/sapphire-svell/foot.svg"
  29709. }
  29710. },
  29711. toering: {
  29712. height: math.unit(1.7, "inch"),
  29713. name: "Toering",
  29714. image: {
  29715. source: "./media/characters/sapphire-svell/toering.svg"
  29716. }
  29717. },
  29718. },
  29719. [
  29720. {
  29721. name: "Normal",
  29722. height: math.unit(300, "feet"),
  29723. default: true
  29724. },
  29725. {
  29726. name: "Augmented",
  29727. height: math.unit(1250, "feet")
  29728. },
  29729. {
  29730. name: "Unleashed",
  29731. height: math.unit(3000, "feet")
  29732. },
  29733. ]
  29734. ))
  29735. characterMakers.push(() => makeCharacter(
  29736. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29737. {
  29738. side: {
  29739. height: math.unit(2 + 3 / 12, "feet"),
  29740. weight: math.unit(110, "lb"),
  29741. name: "Side",
  29742. image: {
  29743. source: "./media/characters/glitch-flux/side.svg",
  29744. extra: 997 / 805,
  29745. bottom: 20 / 1017
  29746. }
  29747. },
  29748. },
  29749. [
  29750. {
  29751. name: "Normal",
  29752. height: math.unit(2 + 3 / 12, "feet"),
  29753. default: true
  29754. },
  29755. ]
  29756. ))
  29757. characterMakers.push(() => makeCharacter(
  29758. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29759. {
  29760. front: {
  29761. height: math.unit(4, "meters"),
  29762. name: "Front",
  29763. image: {
  29764. source: "./media/characters/mid/front.svg",
  29765. extra: 507 / 476,
  29766. bottom: 17 / 524
  29767. }
  29768. },
  29769. back: {
  29770. height: math.unit(4, "meters"),
  29771. name: "Back",
  29772. image: {
  29773. source: "./media/characters/mid/back.svg",
  29774. extra: 519 / 487,
  29775. bottom: 7 / 526
  29776. }
  29777. },
  29778. stuck: {
  29779. height: math.unit(2.2, "meters"),
  29780. name: "Stuck",
  29781. image: {
  29782. source: "./media/characters/mid/stuck.svg",
  29783. extra: 1951 / 1869,
  29784. bottom: 88 / 2039
  29785. }
  29786. }
  29787. },
  29788. [
  29789. {
  29790. name: "Normal",
  29791. height: math.unit(4, "meters"),
  29792. default: true
  29793. },
  29794. {
  29795. name: "Big",
  29796. height: math.unit(10, "meters")
  29797. },
  29798. {
  29799. name: "Macro",
  29800. height: math.unit(800, "meters")
  29801. },
  29802. {
  29803. name: "Megamacro",
  29804. height: math.unit(100, "km")
  29805. },
  29806. {
  29807. name: "Overgrown",
  29808. height: math.unit(1, "parsec")
  29809. },
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29814. {
  29815. front: {
  29816. height: math.unit(2.5, "meters"),
  29817. weight: math.unit(225, "kg"),
  29818. name: "Front",
  29819. image: {
  29820. source: "./media/characters/iris/front.svg",
  29821. extra: 3348 / 3251,
  29822. bottom: 205 / 3553
  29823. }
  29824. },
  29825. maw: {
  29826. height: math.unit(0.56, "meter"),
  29827. name: "Maw",
  29828. image: {
  29829. source: "./media/characters/iris/maw.svg"
  29830. }
  29831. },
  29832. },
  29833. [
  29834. {
  29835. name: "Mewter cat",
  29836. height: math.unit(1.2, "meters")
  29837. },
  29838. {
  29839. name: "Minimacro",
  29840. height: math.unit(2.5, "meters"),
  29841. default: true
  29842. },
  29843. {
  29844. name: "Macro",
  29845. height: math.unit(180, "meters")
  29846. },
  29847. {
  29848. name: "Megamacro",
  29849. height: math.unit(2746, "meters")
  29850. },
  29851. ]
  29852. ))
  29853. characterMakers.push(() => makeCharacter(
  29854. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29855. {
  29856. front: {
  29857. height: math.unit(6, "feet"),
  29858. weight: math.unit(135, "lb"),
  29859. name: "Front",
  29860. image: {
  29861. source: "./media/characters/axel/front.svg",
  29862. extra: 908 / 908,
  29863. bottom: 58 / 966
  29864. }
  29865. },
  29866. side: {
  29867. height: math.unit(6, "feet"),
  29868. weight: math.unit(135, "lb"),
  29869. name: "Side",
  29870. image: {
  29871. source: "./media/characters/axel/side.svg",
  29872. extra: 958 / 958,
  29873. bottom: 11 / 969
  29874. }
  29875. },
  29876. back: {
  29877. height: math.unit(6, "feet"),
  29878. weight: math.unit(135, "lb"),
  29879. name: "Back",
  29880. image: {
  29881. source: "./media/characters/axel/back.svg",
  29882. extra: 887 / 887,
  29883. bottom: 34 / 921
  29884. }
  29885. },
  29886. head: {
  29887. height: math.unit(1.07, "feet"),
  29888. name: "Head",
  29889. image: {
  29890. source: "./media/characters/axel/head.svg"
  29891. }
  29892. },
  29893. beak: {
  29894. height: math.unit(1.4, "feet"),
  29895. name: "Beak",
  29896. image: {
  29897. source: "./media/characters/axel/beak.svg"
  29898. }
  29899. },
  29900. beakSide: {
  29901. height: math.unit(1.4, "feet"),
  29902. name: "Beak Side",
  29903. image: {
  29904. source: "./media/characters/axel/beak-side.svg"
  29905. }
  29906. },
  29907. sheath: {
  29908. height: math.unit(0.5, "feet"),
  29909. name: "Sheath",
  29910. image: {
  29911. source: "./media/characters/axel/sheath.svg"
  29912. }
  29913. },
  29914. dick: {
  29915. height: math.unit(0.98, "feet"),
  29916. name: "Dick",
  29917. image: {
  29918. source: "./media/characters/axel/dick.svg"
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Macro",
  29925. height: math.unit(68, "meters"),
  29926. default: true
  29927. },
  29928. ]
  29929. ))
  29930. characterMakers.push(() => makeCharacter(
  29931. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29932. {
  29933. front: {
  29934. height: math.unit(3.5, "meters"),
  29935. weight: math.unit(1200, "kg"),
  29936. name: "Front",
  29937. image: {
  29938. source: "./media/characters/joanna/front.svg",
  29939. extra: 1596 / 1488,
  29940. bottom: 29 / 1625
  29941. }
  29942. },
  29943. back: {
  29944. height: math.unit(3.5, "meters"),
  29945. weight: math.unit(1200, "kg"),
  29946. name: "Back",
  29947. image: {
  29948. source: "./media/characters/joanna/back.svg",
  29949. extra: 1594 / 1495,
  29950. bottom: 26 / 1620
  29951. }
  29952. },
  29953. frontShorts: {
  29954. height: math.unit(3.5, "meters"),
  29955. weight: math.unit(1200, "kg"),
  29956. name: "Front (Shorts)",
  29957. image: {
  29958. source: "./media/characters/joanna/front-shorts.svg",
  29959. extra: 1596 / 1488,
  29960. bottom: 29 / 1625
  29961. }
  29962. },
  29963. frontBiker: {
  29964. height: math.unit(3.5, "meters"),
  29965. weight: math.unit(1200, "kg"),
  29966. name: "Front (Biker)",
  29967. image: {
  29968. source: "./media/characters/joanna/front-biker.svg",
  29969. extra: 1596 / 1488,
  29970. bottom: 29 / 1625
  29971. }
  29972. },
  29973. backBiker: {
  29974. height: math.unit(3.5, "meters"),
  29975. weight: math.unit(1200, "kg"),
  29976. name: "Back (Biker)",
  29977. image: {
  29978. source: "./media/characters/joanna/back-biker.svg",
  29979. extra: 1594 / 1495,
  29980. bottom: 88 / 1682
  29981. }
  29982. },
  29983. bikeLeft: {
  29984. height: math.unit(2.4, "meters"),
  29985. weight: math.unit(1600, "kg"),
  29986. name: "Bike (Left)",
  29987. image: {
  29988. source: "./media/characters/joanna/bike-left.svg",
  29989. extra: 720 / 720,
  29990. bottom: 8 / 728
  29991. }
  29992. },
  29993. bikeRight: {
  29994. height: math.unit(2.4, "meters"),
  29995. weight: math.unit(1600, "kg"),
  29996. name: "Bike (Right)",
  29997. image: {
  29998. source: "./media/characters/joanna/bike-right.svg",
  29999. extra: 720 / 720,
  30000. bottom: 8 / 728
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Incognito",
  30007. height: math.unit(3.5, "meters")
  30008. },
  30009. {
  30010. name: "Casual Big",
  30011. height: math.unit(200, "meters")
  30012. },
  30013. {
  30014. name: "Macro",
  30015. height: math.unit(600, "meters")
  30016. },
  30017. {
  30018. name: "Original",
  30019. height: math.unit(20, "km"),
  30020. default: true
  30021. },
  30022. {
  30023. name: "Giga",
  30024. height: math.unit(400, "km")
  30025. },
  30026. {
  30027. name: "Lounging",
  30028. height: math.unit(1500, "km")
  30029. },
  30030. {
  30031. name: "Planetary",
  30032. height: math.unit(200000, "km")
  30033. },
  30034. ]
  30035. ))
  30036. characterMakers.push(() => makeCharacter(
  30037. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30038. {
  30039. front: {
  30040. height: math.unit(6, "feet"),
  30041. weight: math.unit(150, "lb"),
  30042. name: "Front",
  30043. image: {
  30044. source: "./media/characters/hugo-sigil/front.svg",
  30045. extra: 522 / 500,
  30046. bottom: 2 / 524
  30047. }
  30048. },
  30049. back: {
  30050. height: math.unit(6, "feet"),
  30051. weight: math.unit(150, "lb"),
  30052. name: "Back",
  30053. image: {
  30054. source: "./media/characters/hugo-sigil/back.svg",
  30055. extra: 519 / 495,
  30056. bottom: 5 / 524
  30057. }
  30058. },
  30059. maw: {
  30060. height: math.unit(1.4, "feet"),
  30061. weight: math.unit(150, "lb"),
  30062. name: "Maw",
  30063. image: {
  30064. source: "./media/characters/hugo-sigil/maw.svg"
  30065. }
  30066. },
  30067. feet: {
  30068. height: math.unit(1.56, "feet"),
  30069. weight: math.unit(150, "lb"),
  30070. name: "Feet",
  30071. image: {
  30072. source: "./media/characters/hugo-sigil/feet.svg",
  30073. extra: 177 / 177,
  30074. bottom: 12 / 189
  30075. }
  30076. },
  30077. },
  30078. [
  30079. {
  30080. name: "Normal",
  30081. height: math.unit(6, "feet")
  30082. },
  30083. {
  30084. name: "Macro",
  30085. height: math.unit(200, "feet"),
  30086. default: true
  30087. },
  30088. ]
  30089. ))
  30090. characterMakers.push(() => makeCharacter(
  30091. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30092. {
  30093. front: {
  30094. height: math.unit(6, "feet"),
  30095. weight: math.unit(150, "lb"),
  30096. name: "Front",
  30097. image: {
  30098. source: "./media/characters/peri/front.svg",
  30099. extra: 2354 / 2233,
  30100. bottom: 49 / 2403
  30101. }
  30102. },
  30103. },
  30104. [
  30105. {
  30106. name: "Really Small",
  30107. height: math.unit(1, "nm")
  30108. },
  30109. {
  30110. name: "Micro",
  30111. height: math.unit(4, "inches")
  30112. },
  30113. {
  30114. name: "Normal",
  30115. height: math.unit(7, "inches"),
  30116. default: true
  30117. },
  30118. {
  30119. name: "Macro",
  30120. height: math.unit(400, "feet")
  30121. },
  30122. {
  30123. name: "Megamacro",
  30124. height: math.unit(100, "miles")
  30125. },
  30126. ]
  30127. ))
  30128. characterMakers.push(() => makeCharacter(
  30129. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30130. {
  30131. frontSlim: {
  30132. height: math.unit(7, "feet"),
  30133. name: "Front (Slim)",
  30134. image: {
  30135. source: "./media/characters/issilora/front-slim.svg",
  30136. extra: 529 / 449,
  30137. bottom: 53 / 582
  30138. }
  30139. },
  30140. sideSlim: {
  30141. height: math.unit(7, "feet"),
  30142. name: "Side (Slim)",
  30143. image: {
  30144. source: "./media/characters/issilora/side-slim.svg",
  30145. extra: 570 / 480,
  30146. bottom: 30 / 600
  30147. }
  30148. },
  30149. backSlim: {
  30150. height: math.unit(7, "feet"),
  30151. name: "Back (Slim)",
  30152. image: {
  30153. source: "./media/characters/issilora/back-slim.svg",
  30154. extra: 537 / 455,
  30155. bottom: 46 / 583
  30156. }
  30157. },
  30158. frontBuff: {
  30159. height: math.unit(7, "feet"),
  30160. name: "Front (Buff)",
  30161. image: {
  30162. source: "./media/characters/issilora/front-buff.svg",
  30163. extra: 2310 / 2035,
  30164. bottom: 335 / 2645
  30165. }
  30166. },
  30167. head: {
  30168. height: math.unit(1.94, "feet"),
  30169. name: "Head",
  30170. image: {
  30171. source: "./media/characters/issilora/head.svg"
  30172. }
  30173. },
  30174. },
  30175. [
  30176. {
  30177. name: "Minimum",
  30178. height: math.unit(7, "feet")
  30179. },
  30180. {
  30181. name: "Comfortable",
  30182. height: math.unit(17, "feet")
  30183. },
  30184. {
  30185. name: "Fun Size",
  30186. height: math.unit(47, "feet")
  30187. },
  30188. {
  30189. name: "Natural Macro",
  30190. height: math.unit(137, "feet"),
  30191. default: true
  30192. },
  30193. {
  30194. name: "Maximum Kaiju",
  30195. height: math.unit(397, "feet")
  30196. },
  30197. ]
  30198. ))
  30199. characterMakers.push(() => makeCharacter(
  30200. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30201. {
  30202. front: {
  30203. height: math.unit(50 + 9/12, "feet"),
  30204. weight: math.unit(32.8, "tons"),
  30205. name: "Front",
  30206. image: {
  30207. source: "./media/characters/irb'iiritaahn/front.svg",
  30208. extra: 1878/1826,
  30209. bottom: 326/2204
  30210. }
  30211. },
  30212. back: {
  30213. height: math.unit(50 + 9/12, "feet"),
  30214. weight: math.unit(32.8, "tons"),
  30215. name: "Back",
  30216. image: {
  30217. source: "./media/characters/irb'iiritaahn/back.svg",
  30218. extra: 2052/2018,
  30219. bottom: 152/2204
  30220. }
  30221. },
  30222. head: {
  30223. height: math.unit(12.86, "feet"),
  30224. name: "Head",
  30225. image: {
  30226. source: "./media/characters/irb'iiritaahn/head.svg"
  30227. }
  30228. },
  30229. maw: {
  30230. height: math.unit(9.66, "feet"),
  30231. name: "Maw",
  30232. image: {
  30233. source: "./media/characters/irb'iiritaahn/maw.svg"
  30234. }
  30235. },
  30236. frontDick: {
  30237. height: math.unit(8.78461, "feet"),
  30238. name: "Front Dick",
  30239. image: {
  30240. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30241. }
  30242. },
  30243. rearDick: {
  30244. height: math.unit(8.78461, "feet"),
  30245. name: "Rear Dick",
  30246. image: {
  30247. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30248. }
  30249. },
  30250. rearDickUnfolded: {
  30251. height: math.unit(8.78, "feet"),
  30252. name: "Rear Dick (Unfolded)",
  30253. image: {
  30254. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30255. }
  30256. },
  30257. wings: {
  30258. height: math.unit(43, "feet"),
  30259. name: "Wings",
  30260. image: {
  30261. source: "./media/characters/irb'iiritaahn/wings.svg"
  30262. }
  30263. },
  30264. },
  30265. [
  30266. {
  30267. name: "Macro",
  30268. height: math.unit(50 + 9/12, "feet"),
  30269. default: true
  30270. },
  30271. ]
  30272. ))
  30273. characterMakers.push(() => makeCharacter(
  30274. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30275. {
  30276. front: {
  30277. height: math.unit(205, "cm"),
  30278. weight: math.unit(102, "kg"),
  30279. name: "Front",
  30280. image: {
  30281. source: "./media/characters/irbisgreif/front.svg",
  30282. extra: 785/706,
  30283. bottom: 13/798
  30284. }
  30285. },
  30286. back: {
  30287. height: math.unit(205, "cm"),
  30288. weight: math.unit(102, "kg"),
  30289. name: "Back",
  30290. image: {
  30291. source: "./media/characters/irbisgreif/back.svg",
  30292. extra: 713/701,
  30293. bottom: 26/739
  30294. }
  30295. },
  30296. frontDressed: {
  30297. height: math.unit(216, "cm"),
  30298. weight: math.unit(102, "kg"),
  30299. name: "Front-dressed",
  30300. image: {
  30301. source: "./media/characters/irbisgreif/front-dressed.svg",
  30302. extra: 902/776,
  30303. bottom: 14/916
  30304. }
  30305. },
  30306. sideDressed: {
  30307. height: math.unit(195, "cm"),
  30308. weight: math.unit(102, "kg"),
  30309. name: "Side-dressed",
  30310. image: {
  30311. source: "./media/characters/irbisgreif/side-dressed.svg",
  30312. extra: 788/688,
  30313. bottom: 21/809
  30314. }
  30315. },
  30316. backDressed: {
  30317. height: math.unit(216, "cm"),
  30318. weight: math.unit(102, "kg"),
  30319. name: "Back-dressed",
  30320. image: {
  30321. source: "./media/characters/irbisgreif/back-dressed.svg",
  30322. extra: 901/783,
  30323. bottom: 10/911
  30324. }
  30325. },
  30326. dick: {
  30327. height: math.unit(0.49, "feet"),
  30328. name: "Dick",
  30329. image: {
  30330. source: "./media/characters/irbisgreif/dick.svg"
  30331. }
  30332. },
  30333. wingTop: {
  30334. height: math.unit(1.93 , "feet"),
  30335. name: "Wing-top",
  30336. image: {
  30337. source: "./media/characters/irbisgreif/wing-top.svg"
  30338. }
  30339. },
  30340. wingBottom: {
  30341. height: math.unit(1.93 , "feet"),
  30342. name: "Wing-bottom",
  30343. image: {
  30344. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30345. }
  30346. },
  30347. },
  30348. [
  30349. {
  30350. name: "Normal",
  30351. height: math.unit(216, "cm"),
  30352. default: true
  30353. },
  30354. ]
  30355. ))
  30356. characterMakers.push(() => makeCharacter(
  30357. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30358. {
  30359. front: {
  30360. height: math.unit(6, "feet"),
  30361. weight: math.unit(150, "lb"),
  30362. name: "Front",
  30363. image: {
  30364. source: "./media/characters/pride/front.svg",
  30365. extra: 1299/1230,
  30366. bottom: 18/1317
  30367. }
  30368. },
  30369. },
  30370. [
  30371. {
  30372. name: "Normal",
  30373. height: math.unit(7, "feet")
  30374. },
  30375. {
  30376. name: "Mini-macro",
  30377. height: math.unit(11, "feet")
  30378. },
  30379. {
  30380. name: "Macro",
  30381. height: math.unit(15, "meters"),
  30382. default: true
  30383. },
  30384. {
  30385. name: "Macro+",
  30386. height: math.unit(40, "meters")
  30387. },
  30388. ]
  30389. ))
  30390. characterMakers.push(() => makeCharacter(
  30391. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30392. {
  30393. front: {
  30394. height: math.unit(4 + 2 / 12, "feet"),
  30395. weight: math.unit(95, "lb"),
  30396. name: "Front",
  30397. image: {
  30398. source: "./media/characters/vaelophis-nyx/front.svg",
  30399. extra: 2532/2330,
  30400. bottom: 0/2532
  30401. }
  30402. },
  30403. back: {
  30404. height: math.unit(4 + 2 / 12, "feet"),
  30405. weight: math.unit(95, "lb"),
  30406. name: "Back",
  30407. image: {
  30408. source: "./media/characters/vaelophis-nyx/back.svg",
  30409. extra: 2484/2361,
  30410. bottom: 0/2484
  30411. }
  30412. },
  30413. feralSide: {
  30414. height: math.unit(2 + 1/12, "feet"),
  30415. weight: math.unit(20, "lb"),
  30416. name: "Feral (Side)",
  30417. image: {
  30418. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30419. extra: 1721/1581,
  30420. bottom: 70/1791
  30421. }
  30422. },
  30423. feralLazing: {
  30424. height: math.unit(1.08, "feet"),
  30425. weight: math.unit(20, "lb"),
  30426. name: "Feral (Lazing)",
  30427. image: {
  30428. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30429. extra: 822/822,
  30430. bottom: 248/1070
  30431. }
  30432. },
  30433. ear: {
  30434. height: math.unit(0.416, "feet"),
  30435. name: "Ear",
  30436. image: {
  30437. source: "./media/characters/vaelophis-nyx/ear.svg"
  30438. }
  30439. },
  30440. eye: {
  30441. height: math.unit(0.0748, "feet"),
  30442. name: "Eye",
  30443. image: {
  30444. source: "./media/characters/vaelophis-nyx/eye.svg"
  30445. }
  30446. },
  30447. mouth: {
  30448. height: math.unit(0.378, "feet"),
  30449. name: "Mouth",
  30450. image: {
  30451. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30452. }
  30453. },
  30454. spade: {
  30455. height: math.unit(0.55, "feet"),
  30456. name: "Spade",
  30457. image: {
  30458. source: "./media/characters/vaelophis-nyx/spade.svg"
  30459. }
  30460. },
  30461. },
  30462. [
  30463. {
  30464. name: "Normal",
  30465. height: math.unit(4 + 2/12, "feet"),
  30466. default: true
  30467. },
  30468. ]
  30469. ))
  30470. characterMakers.push(() => makeCharacter(
  30471. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30472. {
  30473. front: {
  30474. height: math.unit(7, "feet"),
  30475. weight: math.unit(231, "lb"),
  30476. name: "Front",
  30477. image: {
  30478. source: "./media/characters/flux/front.svg",
  30479. extra: 919/871,
  30480. bottom: 0/919
  30481. }
  30482. },
  30483. back: {
  30484. height: math.unit(7, "feet"),
  30485. weight: math.unit(231, "lb"),
  30486. name: "Back",
  30487. image: {
  30488. source: "./media/characters/flux/back.svg",
  30489. extra: 1040/992,
  30490. bottom: 0/1040
  30491. }
  30492. },
  30493. frontDressed: {
  30494. height: math.unit(7, "feet"),
  30495. weight: math.unit(231, "lb"),
  30496. name: "Front (Dressed)",
  30497. image: {
  30498. source: "./media/characters/flux/front-dressed.svg",
  30499. extra: 919/871,
  30500. bottom: 0/919
  30501. }
  30502. },
  30503. feralSide: {
  30504. height: math.unit(5, "feet"),
  30505. weight: math.unit(150, "lb"),
  30506. name: "Feral (Side)",
  30507. image: {
  30508. source: "./media/characters/flux/feral-side.svg",
  30509. extra: 598/528,
  30510. bottom: 28/626
  30511. }
  30512. },
  30513. head: {
  30514. height: math.unit(1.585, "feet"),
  30515. name: "Head",
  30516. image: {
  30517. source: "./media/characters/flux/head.svg"
  30518. }
  30519. },
  30520. headSide: {
  30521. height: math.unit(1.74, "feet"),
  30522. name: "Head (Side)",
  30523. image: {
  30524. source: "./media/characters/flux/head-side.svg"
  30525. }
  30526. },
  30527. headSideFire: {
  30528. height: math.unit(1.76, "feet"),
  30529. name: "Head (Side, Fire)",
  30530. image: {
  30531. source: "./media/characters/flux/head-side-fire.svg"
  30532. }
  30533. },
  30534. },
  30535. [
  30536. {
  30537. name: "Normal",
  30538. height: math.unit(7, "feet"),
  30539. default: true
  30540. },
  30541. ]
  30542. ))
  30543. characterMakers.push(() => makeCharacter(
  30544. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30545. {
  30546. front: {
  30547. height: math.unit(9, "feet"),
  30548. weight: math.unit(1012, "lb"),
  30549. name: "Front",
  30550. image: {
  30551. source: "./media/characters/ulfra-lupae/front.svg",
  30552. extra: 1083/1011,
  30553. bottom: 67/1150
  30554. }
  30555. },
  30556. },
  30557. [
  30558. {
  30559. name: "Micro",
  30560. height: math.unit(6, "inches")
  30561. },
  30562. {
  30563. name: "Socializing",
  30564. height: math.unit(6 + 5/12, "feet")
  30565. },
  30566. {
  30567. name: "Normal",
  30568. height: math.unit(9, "feet"),
  30569. default: true
  30570. },
  30571. {
  30572. name: "Macro",
  30573. height: math.unit(150, "feet")
  30574. },
  30575. ]
  30576. ))
  30577. characterMakers.push(() => makeCharacter(
  30578. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30579. {
  30580. front: {
  30581. height: math.unit(5 + 2/12, "feet"),
  30582. weight: math.unit(120, "lb"),
  30583. name: "Front",
  30584. image: {
  30585. source: "./media/characters/timber/front.svg",
  30586. extra: 2814/2705,
  30587. bottom: 181/2995
  30588. }
  30589. },
  30590. },
  30591. [
  30592. {
  30593. name: "Normal",
  30594. height: math.unit(5 + 2/12, "feet"),
  30595. default: true
  30596. },
  30597. ]
  30598. ))
  30599. characterMakers.push(() => makeCharacter(
  30600. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30601. {
  30602. front: {
  30603. height: math.unit(5 + 7/12, "feet"),
  30604. weight: math.unit(220, "lb"),
  30605. name: "Front",
  30606. image: {
  30607. source: "./media/characters/nicki/front.svg",
  30608. extra: 453/419,
  30609. bottom: 7/460
  30610. }
  30611. },
  30612. frontAlt: {
  30613. height: math.unit(5 + 7/12, "feet"),
  30614. weight: math.unit(220, "lb"),
  30615. name: "Front-alt",
  30616. image: {
  30617. source: "./media/characters/nicki/front-alt.svg",
  30618. extra: 435/411,
  30619. bottom: 12/447
  30620. }
  30621. },
  30622. back: {
  30623. height: math.unit(5 + 7/12, "feet"),
  30624. weight: math.unit(220, "lb"),
  30625. name: "Back",
  30626. image: {
  30627. source: "./media/characters/nicki/back.svg",
  30628. extra: 440/413,
  30629. bottom: 19/459
  30630. }
  30631. },
  30632. taur: {
  30633. height: math.unit(7 + 6/12, "feet"),
  30634. weight: math.unit(700, "lb"),
  30635. name: "Taur",
  30636. image: {
  30637. source: "./media/characters/nicki/taur.svg",
  30638. extra: 975/773,
  30639. bottom: 0/975
  30640. }
  30641. },
  30642. frontNsfw: {
  30643. height: math.unit(5 + 7/12, "feet"),
  30644. weight: math.unit(220, "lb"),
  30645. name: "Front (NSFW)",
  30646. image: {
  30647. source: "./media/characters/nicki/front-nsfw.svg",
  30648. extra: 453/419,
  30649. bottom: 7/460
  30650. }
  30651. },
  30652. frontNsfwAlt: {
  30653. height: math.unit(5 + 7/12, "feet"),
  30654. weight: math.unit(220, "lb"),
  30655. name: "Front (Alt, NSFW)",
  30656. image: {
  30657. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30658. extra: 435/411,
  30659. bottom: 12/447
  30660. }
  30661. },
  30662. backNsfw: {
  30663. height: math.unit(5 + 7/12, "feet"),
  30664. weight: math.unit(220, "lb"),
  30665. name: "Back (NSFW)",
  30666. image: {
  30667. source: "./media/characters/nicki/back-nsfw.svg",
  30668. extra: 440/413,
  30669. bottom: 19/459
  30670. }
  30671. },
  30672. head: {
  30673. height: math.unit(2.1, "feet"),
  30674. name: "Head",
  30675. image: {
  30676. source: "./media/characters/nicki/head.svg"
  30677. }
  30678. },
  30679. paw: {
  30680. height: math.unit(1.88, "feet"),
  30681. name: "Paw",
  30682. image: {
  30683. source: "./media/characters/nicki/paw.svg"
  30684. }
  30685. },
  30686. },
  30687. [
  30688. {
  30689. name: "Normal",
  30690. height: math.unit(5 + 7/12, "feet"),
  30691. default: true
  30692. },
  30693. ]
  30694. ))
  30695. characterMakers.push(() => makeCharacter(
  30696. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30697. {
  30698. front: {
  30699. height: math.unit(7 + 10/12, "feet"),
  30700. weight: math.unit(3.5, "tons"),
  30701. name: "Front",
  30702. image: {
  30703. source: "./media/characters/lee/front.svg",
  30704. extra: 1773/1615,
  30705. bottom: 86/1859
  30706. }
  30707. },
  30708. hand: {
  30709. height: math.unit(1.78, "feet"),
  30710. name: "Hand",
  30711. image: {
  30712. source: "./media/characters/lee/hand.svg"
  30713. }
  30714. },
  30715. maw: {
  30716. height: math.unit(1.18, "feet"),
  30717. name: "Maw",
  30718. image: {
  30719. source: "./media/characters/lee/maw.svg"
  30720. }
  30721. },
  30722. },
  30723. [
  30724. {
  30725. name: "Normal",
  30726. height: math.unit(7 + 10/12, "feet"),
  30727. default: true
  30728. },
  30729. ]
  30730. ))
  30731. characterMakers.push(() => makeCharacter(
  30732. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30733. {
  30734. front: {
  30735. height: math.unit(9, "feet"),
  30736. name: "Front",
  30737. image: {
  30738. source: "./media/characters/guti/front.svg",
  30739. extra: 4551/4355,
  30740. bottom: 123/4674
  30741. }
  30742. },
  30743. tongue: {
  30744. height: math.unit(1, "feet"),
  30745. name: "Tongue",
  30746. image: {
  30747. source: "./media/characters/guti/tongue.svg"
  30748. }
  30749. },
  30750. paw: {
  30751. height: math.unit(1.18, "feet"),
  30752. name: "Paw",
  30753. image: {
  30754. source: "./media/characters/guti/paw.svg"
  30755. }
  30756. },
  30757. },
  30758. [
  30759. {
  30760. name: "Normal",
  30761. height: math.unit(9, "feet"),
  30762. default: true
  30763. },
  30764. ]
  30765. ))
  30766. characterMakers.push(() => makeCharacter(
  30767. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30768. {
  30769. side: {
  30770. height: math.unit(5, "meters"),
  30771. name: "Side",
  30772. image: {
  30773. source: "./media/characters/vesper/side.svg",
  30774. extra: 1605/1518,
  30775. bottom: 0/1605
  30776. }
  30777. },
  30778. },
  30779. [
  30780. {
  30781. name: "Small",
  30782. height: math.unit(5, "meters")
  30783. },
  30784. {
  30785. name: "Sage",
  30786. height: math.unit(100, "meters"),
  30787. default: true
  30788. },
  30789. {
  30790. name: "Fun Size",
  30791. height: math.unit(600, "meters")
  30792. },
  30793. {
  30794. name: "Goddess",
  30795. height: math.unit(20000, "km")
  30796. },
  30797. {
  30798. name: "Maximum",
  30799. height: math.unit(5, "galaxies")
  30800. },
  30801. ]
  30802. ))
  30803. characterMakers.push(() => makeCharacter(
  30804. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30805. {
  30806. front: {
  30807. height: math.unit(6 + 3/12, "feet"),
  30808. weight: math.unit(190, "lb"),
  30809. name: "Front",
  30810. image: {
  30811. source: "./media/characters/gawain/front.svg",
  30812. extra: 2222/2139,
  30813. bottom: 90/2312
  30814. }
  30815. },
  30816. back: {
  30817. height: math.unit(6 + 3/12, "feet"),
  30818. weight: math.unit(190, "lb"),
  30819. name: "Back",
  30820. image: {
  30821. source: "./media/characters/gawain/back.svg",
  30822. extra: 2199/2111,
  30823. bottom: 73/2272
  30824. }
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Normal",
  30830. height: math.unit(6 + 3/12, "feet"),
  30831. default: true
  30832. },
  30833. ]
  30834. ))
  30835. characterMakers.push(() => makeCharacter(
  30836. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30837. {
  30838. side: {
  30839. height: math.unit(3.5, "meters"),
  30840. weight: math.unit(16000, "lb"),
  30841. name: "Side",
  30842. image: {
  30843. source: "./media/characters/dascalti/side.svg",
  30844. extra: 392/273,
  30845. bottom: 47/439
  30846. }
  30847. },
  30848. breath: {
  30849. height: math.unit(7.4, "feet"),
  30850. name: "Breath",
  30851. image: {
  30852. source: "./media/characters/dascalti/breath.svg"
  30853. }
  30854. },
  30855. fed: {
  30856. height: math.unit(3.6, "meters"),
  30857. weight: math.unit(16000, "lb"),
  30858. name: "Fed",
  30859. image: {
  30860. source: "./media/characters/dascalti/fed.svg",
  30861. extra: 1419/820,
  30862. bottom: 95/1514
  30863. }
  30864. },
  30865. },
  30866. [
  30867. {
  30868. name: "Normal",
  30869. height: math.unit(3.5, "meters"),
  30870. default: true
  30871. },
  30872. ]
  30873. ))
  30874. characterMakers.push(() => makeCharacter(
  30875. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30876. {
  30877. front: {
  30878. height: math.unit(3 + 5/12, "feet"),
  30879. name: "Front",
  30880. image: {
  30881. source: "./media/characters/mauve/front.svg",
  30882. extra: 1126/1033,
  30883. bottom: 65/1191
  30884. }
  30885. },
  30886. side: {
  30887. height: math.unit(3 + 5/12, "feet"),
  30888. name: "Side",
  30889. image: {
  30890. source: "./media/characters/mauve/side.svg",
  30891. extra: 1089/1001,
  30892. bottom: 29/1118
  30893. }
  30894. },
  30895. back: {
  30896. height: math.unit(3 + 5/12, "feet"),
  30897. name: "Back",
  30898. image: {
  30899. source: "./media/characters/mauve/back.svg",
  30900. extra: 1173/1053,
  30901. bottom: 109/1282
  30902. }
  30903. },
  30904. },
  30905. [
  30906. {
  30907. name: "Normal",
  30908. height: math.unit(3 + 5/12, "feet"),
  30909. default: true
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30915. {
  30916. front: {
  30917. height: math.unit(6 + 3/12, "feet"),
  30918. weight: math.unit(430, "lb"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/carlos/front.svg",
  30922. extra: 1964/1913,
  30923. bottom: 70/2034
  30924. }
  30925. },
  30926. },
  30927. [
  30928. {
  30929. name: "Normal",
  30930. height: math.unit(6 + 3/12, "feet"),
  30931. default: true
  30932. },
  30933. ]
  30934. ))
  30935. characterMakers.push(() => makeCharacter(
  30936. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30937. {
  30938. back: {
  30939. height: math.unit(5 + 10/12, "feet"),
  30940. weight: math.unit(200, "lb"),
  30941. name: "Back",
  30942. image: {
  30943. source: "./media/characters/jax/back.svg",
  30944. extra: 764/739,
  30945. bottom: 25/789
  30946. }
  30947. },
  30948. },
  30949. [
  30950. {
  30951. name: "Normal",
  30952. height: math.unit(5 + 10/12, "feet"),
  30953. default: true
  30954. },
  30955. ]
  30956. ))
  30957. characterMakers.push(() => makeCharacter(
  30958. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30959. {
  30960. front: {
  30961. height: math.unit(8, "feet"),
  30962. weight: math.unit(250, "lb"),
  30963. name: "Front",
  30964. image: {
  30965. source: "./media/characters/eikthynir/front.svg",
  30966. extra: 1332/1166,
  30967. bottom: 82/1414
  30968. }
  30969. },
  30970. back: {
  30971. height: math.unit(8, "feet"),
  30972. weight: math.unit(250, "lb"),
  30973. name: "Back",
  30974. image: {
  30975. source: "./media/characters/eikthynir/back.svg",
  30976. extra: 1342/1190,
  30977. bottom: 19/1361
  30978. }
  30979. },
  30980. dick: {
  30981. height: math.unit(2.35, "feet"),
  30982. name: "Dick",
  30983. image: {
  30984. source: "./media/characters/eikthynir/dick.svg"
  30985. }
  30986. },
  30987. },
  30988. [
  30989. {
  30990. name: "Normal",
  30991. height: math.unit(8, "feet"),
  30992. default: true
  30993. },
  30994. ]
  30995. ))
  30996. characterMakers.push(() => makeCharacter(
  30997. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30998. {
  30999. front: {
  31000. height: math.unit(99, "meters"),
  31001. weight: math.unit(13000, "tons"),
  31002. name: "Front",
  31003. image: {
  31004. source: "./media/characters/zlmos/front.svg",
  31005. extra: 2202/1992,
  31006. bottom: 315/2517
  31007. }
  31008. },
  31009. },
  31010. [
  31011. {
  31012. name: "Macro",
  31013. height: math.unit(99, "meters"),
  31014. default: true
  31015. },
  31016. ]
  31017. ))
  31018. characterMakers.push(() => makeCharacter(
  31019. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31020. {
  31021. front: {
  31022. height: math.unit(6 + 5/12, "feet"),
  31023. name: "Front",
  31024. image: {
  31025. source: "./media/characters/purri/front.svg",
  31026. extra: 1698/1610,
  31027. bottom: 32/1730
  31028. }
  31029. },
  31030. frontAlt: {
  31031. height: math.unit(6 + 5/12, "feet"),
  31032. name: "Front (Alt)",
  31033. image: {
  31034. source: "./media/characters/purri/front-alt.svg",
  31035. extra: 450/420,
  31036. bottom: 26/476
  31037. }
  31038. },
  31039. boots: {
  31040. height: math.unit(5.5, "feet"),
  31041. name: "Boots",
  31042. image: {
  31043. source: "./media/characters/purri/boots.svg",
  31044. extra: 905/853,
  31045. bottom: 18/923
  31046. }
  31047. },
  31048. lying: {
  31049. height: math.unit(2, "feet"),
  31050. name: "Lying",
  31051. image: {
  31052. source: "./media/characters/purri/lying.svg",
  31053. extra: 940/843,
  31054. bottom: 146/1086
  31055. }
  31056. },
  31057. devious: {
  31058. height: math.unit(1.77, "feet"),
  31059. name: "Devious",
  31060. image: {
  31061. source: "./media/characters/purri/devious.svg",
  31062. extra: 1440/1155,
  31063. bottom: 147/1587
  31064. }
  31065. },
  31066. bean: {
  31067. height: math.unit(1.94, "feet"),
  31068. name: "Bean",
  31069. image: {
  31070. source: "./media/characters/purri/bean.svg"
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Micro",
  31077. height: math.unit(1, "mm")
  31078. },
  31079. {
  31080. name: "Normal",
  31081. height: math.unit(6 + 5/12, "feet"),
  31082. default: true
  31083. },
  31084. {
  31085. name: "Macro :3c",
  31086. height: math.unit(2, "miles")
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(6 + 2/12, "feet"),
  31095. weight: math.unit(250, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/moonlight/front.svg",
  31099. extra: 1044/908,
  31100. bottom: 56/1100
  31101. }
  31102. },
  31103. feral: {
  31104. height: math.unit(3 + 1/12, "feet"),
  31105. weight: math.unit(50, "kg"),
  31106. name: "Feral",
  31107. image: {
  31108. source: "./media/characters/moonlight/feral.svg",
  31109. extra: 3705/2791,
  31110. bottom: 145/3850
  31111. }
  31112. },
  31113. paw: {
  31114. height: math.unit(1, "feet"),
  31115. name: "Paw",
  31116. image: {
  31117. source: "./media/characters/moonlight/paw.svg"
  31118. }
  31119. },
  31120. paws: {
  31121. height: math.unit(0.98, "feet"),
  31122. name: "Paws",
  31123. image: {
  31124. source: "./media/characters/moonlight/paws.svg",
  31125. extra: 939/939,
  31126. bottom: 50/989
  31127. }
  31128. },
  31129. mouth: {
  31130. height: math.unit(0.48, "feet"),
  31131. name: "Mouth",
  31132. image: {
  31133. source: "./media/characters/moonlight/mouth.svg"
  31134. }
  31135. },
  31136. dick: {
  31137. height: math.unit(1.46, "feet"),
  31138. name: "Dick",
  31139. image: {
  31140. source: "./media/characters/moonlight/dick.svg"
  31141. }
  31142. },
  31143. },
  31144. [
  31145. {
  31146. name: "Normal",
  31147. height: math.unit(6 + 2/12, "feet"),
  31148. default: true
  31149. },
  31150. {
  31151. name: "Macro",
  31152. height: math.unit(300, "feet")
  31153. },
  31154. {
  31155. name: "Macro+",
  31156. height: math.unit(1, "mile")
  31157. },
  31158. {
  31159. name: "Mt. Moon",
  31160. height: math.unit(5, "miles")
  31161. },
  31162. {
  31163. name: "Megamacro",
  31164. height: math.unit(15, "miles")
  31165. },
  31166. ]
  31167. ))
  31168. characterMakers.push(() => makeCharacter(
  31169. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31170. {
  31171. back: {
  31172. height: math.unit(6, "feet"),
  31173. weight: math.unit(150, "lb"),
  31174. name: "Back",
  31175. image: {
  31176. source: "./media/characters/sylen/back.svg",
  31177. extra: 1335/1273,
  31178. bottom: 107/1442
  31179. }
  31180. },
  31181. },
  31182. [
  31183. {
  31184. name: "Normal",
  31185. height: math.unit(5 + 5/12, "feet")
  31186. },
  31187. {
  31188. name: "Megamacro",
  31189. height: math.unit(3, "miles"),
  31190. default: true
  31191. },
  31192. ]
  31193. ))
  31194. characterMakers.push(() => makeCharacter(
  31195. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31196. {
  31197. front: {
  31198. height: math.unit(6, "feet"),
  31199. weight: math.unit(190, "lb"),
  31200. name: "Front",
  31201. image: {
  31202. source: "./media/characters/huttser/front.svg",
  31203. extra: 1152/1058,
  31204. bottom: 23/1175
  31205. }
  31206. },
  31207. side: {
  31208. height: math.unit(6, "feet"),
  31209. weight: math.unit(190, "lb"),
  31210. name: "Side",
  31211. image: {
  31212. source: "./media/characters/huttser/side.svg",
  31213. extra: 1174/1065,
  31214. bottom: 18/1192
  31215. }
  31216. },
  31217. back: {
  31218. height: math.unit(6, "feet"),
  31219. weight: math.unit(190, "lb"),
  31220. name: "Back",
  31221. image: {
  31222. source: "./media/characters/huttser/back.svg",
  31223. extra: 1158/1056,
  31224. bottom: 12/1170
  31225. }
  31226. },
  31227. },
  31228. [
  31229. ]
  31230. ))
  31231. characterMakers.push(() => makeCharacter(
  31232. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31233. {
  31234. side: {
  31235. height: math.unit(12 + 9/12, "feet"),
  31236. weight: math.unit(15000, "lb"),
  31237. name: "Side",
  31238. image: {
  31239. source: "./media/characters/faan/side.svg",
  31240. extra: 2747/2697,
  31241. bottom: 0/2747
  31242. }
  31243. },
  31244. front: {
  31245. height: math.unit(12 + 9/12, "feet"),
  31246. weight: math.unit(15000, "lb"),
  31247. name: "Front",
  31248. image: {
  31249. source: "./media/characters/faan/front.svg",
  31250. extra: 607/571,
  31251. bottom: 24/631
  31252. }
  31253. },
  31254. head: {
  31255. height: math.unit(2.85, "feet"),
  31256. name: "Head",
  31257. image: {
  31258. source: "./media/characters/faan/head.svg"
  31259. }
  31260. },
  31261. headAlt: {
  31262. height: math.unit(3.13, "feet"),
  31263. name: "Head-alt",
  31264. image: {
  31265. source: "./media/characters/faan/head-alt.svg"
  31266. }
  31267. },
  31268. },
  31269. [
  31270. {
  31271. name: "Normal",
  31272. height: math.unit(12 + 9/12, "feet"),
  31273. default: true
  31274. },
  31275. ]
  31276. ))
  31277. characterMakers.push(() => makeCharacter(
  31278. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31279. {
  31280. front: {
  31281. height: math.unit(6, "feet"),
  31282. weight: math.unit(300, "lb"),
  31283. name: "Front",
  31284. image: {
  31285. source: "./media/characters/tanio/front.svg",
  31286. extra: 711/673,
  31287. bottom: 25/736
  31288. }
  31289. },
  31290. },
  31291. [
  31292. {
  31293. name: "Normal",
  31294. height: math.unit(6, "feet"),
  31295. default: true
  31296. },
  31297. ]
  31298. ))
  31299. characterMakers.push(() => makeCharacter(
  31300. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31301. {
  31302. front: {
  31303. height: math.unit(3, "inches"),
  31304. name: "Front",
  31305. image: {
  31306. source: "./media/characters/noboru/front.svg",
  31307. extra: 1039/932,
  31308. bottom: 18/1057
  31309. }
  31310. },
  31311. },
  31312. [
  31313. {
  31314. name: "Micro",
  31315. height: math.unit(3, "inches"),
  31316. default: true
  31317. },
  31318. ]
  31319. ))
  31320. characterMakers.push(() => makeCharacter(
  31321. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31322. {
  31323. front: {
  31324. height: math.unit(1.85, "meters"),
  31325. weight: math.unit(80, "kg"),
  31326. name: "Front",
  31327. image: {
  31328. source: "./media/characters/daniel-barrett/front.svg",
  31329. extra: 355/337,
  31330. bottom: 9/364
  31331. }
  31332. },
  31333. },
  31334. [
  31335. {
  31336. name: "Pico",
  31337. height: math.unit(0.0433, "mm")
  31338. },
  31339. {
  31340. name: "Nano",
  31341. height: math.unit(1.5, "mm")
  31342. },
  31343. {
  31344. name: "Micro",
  31345. height: math.unit(5.3, "cm"),
  31346. default: true
  31347. },
  31348. {
  31349. name: "Normal",
  31350. height: math.unit(1.85, "meters")
  31351. },
  31352. {
  31353. name: "Macro",
  31354. height: math.unit(64.7, "meters")
  31355. },
  31356. {
  31357. name: "Megamacro",
  31358. height: math.unit(2.26, "km")
  31359. },
  31360. {
  31361. name: "Gigamacro",
  31362. height: math.unit(79, "km")
  31363. },
  31364. {
  31365. name: "Teramacro",
  31366. height: math.unit(2765, "km")
  31367. },
  31368. {
  31369. name: "Petamacro",
  31370. height: math.unit(96678, "km")
  31371. },
  31372. ]
  31373. ))
  31374. characterMakers.push(() => makeCharacter(
  31375. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31376. {
  31377. front: {
  31378. height: math.unit(30, "meters"),
  31379. weight: math.unit(400, "tons"),
  31380. name: "Front",
  31381. image: {
  31382. source: "./media/characters/zeel/front.svg",
  31383. extra: 2599/2599,
  31384. bottom: 226/2825
  31385. }
  31386. },
  31387. },
  31388. [
  31389. {
  31390. name: "Macro",
  31391. height: math.unit(30, "meters"),
  31392. default: true
  31393. },
  31394. ]
  31395. ))
  31396. characterMakers.push(() => makeCharacter(
  31397. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31398. {
  31399. front: {
  31400. height: math.unit(6 + 7/12, "feet"),
  31401. weight: math.unit(210, "lb"),
  31402. name: "Front",
  31403. image: {
  31404. source: "./media/characters/tarn/front.svg",
  31405. extra: 3517/3220,
  31406. bottom: 91/3608
  31407. }
  31408. },
  31409. back: {
  31410. height: math.unit(6 + 7/12, "feet"),
  31411. weight: math.unit(210, "lb"),
  31412. name: "Back",
  31413. image: {
  31414. source: "./media/characters/tarn/back.svg",
  31415. extra: 3566/3241,
  31416. bottom: 34/3600
  31417. }
  31418. },
  31419. dick: {
  31420. height: math.unit(1.65, "feet"),
  31421. name: "Dick",
  31422. image: {
  31423. source: "./media/characters/tarn/dick.svg"
  31424. }
  31425. },
  31426. paw: {
  31427. height: math.unit(1.80, "feet"),
  31428. name: "Paw",
  31429. image: {
  31430. source: "./media/characters/tarn/paw.svg"
  31431. }
  31432. },
  31433. tongue: {
  31434. height: math.unit(0.97, "feet"),
  31435. name: "Tongue",
  31436. image: {
  31437. source: "./media/characters/tarn/tongue.svg"
  31438. }
  31439. },
  31440. },
  31441. [
  31442. {
  31443. name: "Micro",
  31444. height: math.unit(4, "inches")
  31445. },
  31446. {
  31447. name: "Normal",
  31448. height: math.unit(6 + 7/12, "feet"),
  31449. default: true
  31450. },
  31451. {
  31452. name: "Macro",
  31453. height: math.unit(300, "feet")
  31454. },
  31455. ]
  31456. ))
  31457. characterMakers.push(() => makeCharacter(
  31458. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31459. {
  31460. front: {
  31461. height: math.unit(5 + 7/12, "feet"),
  31462. weight: math.unit(80, "kg"),
  31463. name: "Front",
  31464. image: {
  31465. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31466. extra: 3023/2865,
  31467. bottom: 33/3056
  31468. }
  31469. },
  31470. back: {
  31471. height: math.unit(5 + 7/12, "feet"),
  31472. weight: math.unit(80, "kg"),
  31473. name: "Back",
  31474. image: {
  31475. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31476. extra: 3020/2886,
  31477. bottom: 30/3050
  31478. }
  31479. },
  31480. dick: {
  31481. height: math.unit(0.98, "feet"),
  31482. name: "Dick",
  31483. image: {
  31484. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31485. }
  31486. },
  31487. anatomy: {
  31488. height: math.unit(2.86, "feet"),
  31489. name: "Anatomy",
  31490. image: {
  31491. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31492. }
  31493. },
  31494. },
  31495. [
  31496. {
  31497. name: "Really Small",
  31498. height: math.unit(2, "inches")
  31499. },
  31500. {
  31501. name: "Micro",
  31502. height: math.unit(5.583, "inches")
  31503. },
  31504. {
  31505. name: "Normal",
  31506. height: math.unit(5 + 7/12, "feet"),
  31507. default: true
  31508. },
  31509. {
  31510. name: "Macro",
  31511. height: math.unit(67, "feet")
  31512. },
  31513. {
  31514. name: "Megamacro",
  31515. height: math.unit(134, "feet")
  31516. },
  31517. ]
  31518. ))
  31519. characterMakers.push(() => makeCharacter(
  31520. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31521. {
  31522. front: {
  31523. height: math.unit(9, "feet"),
  31524. weight: math.unit(120, "lb"),
  31525. name: "Front",
  31526. image: {
  31527. source: "./media/characters/sally/front.svg",
  31528. extra: 1506/1349,
  31529. bottom: 66/1572
  31530. }
  31531. },
  31532. },
  31533. [
  31534. {
  31535. name: "Normal",
  31536. height: math.unit(9, "feet"),
  31537. default: true
  31538. },
  31539. ]
  31540. ))
  31541. characterMakers.push(() => makeCharacter(
  31542. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31543. {
  31544. front: {
  31545. height: math.unit(8, "feet"),
  31546. weight: math.unit(900, "lb"),
  31547. name: "Front",
  31548. image: {
  31549. source: "./media/characters/owen/front.svg",
  31550. extra: 1761/1657,
  31551. bottom: 74/1835
  31552. }
  31553. },
  31554. side: {
  31555. height: math.unit(8, "feet"),
  31556. weight: math.unit(900, "lb"),
  31557. name: "Side",
  31558. image: {
  31559. source: "./media/characters/owen/side.svg",
  31560. extra: 1797/1734,
  31561. bottom: 30/1827
  31562. }
  31563. },
  31564. back: {
  31565. height: math.unit(8, "feet"),
  31566. weight: math.unit(900, "lb"),
  31567. name: "Back",
  31568. image: {
  31569. source: "./media/characters/owen/back.svg",
  31570. extra: 1796/1706,
  31571. bottom: 59/1855
  31572. }
  31573. },
  31574. maw: {
  31575. height: math.unit(1.76, "feet"),
  31576. name: "Maw",
  31577. image: {
  31578. source: "./media/characters/owen/maw.svg"
  31579. }
  31580. },
  31581. },
  31582. [
  31583. {
  31584. name: "Normal",
  31585. height: math.unit(8, "feet"),
  31586. default: true
  31587. },
  31588. ]
  31589. ))
  31590. characterMakers.push(() => makeCharacter(
  31591. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31592. {
  31593. front: {
  31594. height: math.unit(4, "feet"),
  31595. weight: math.unit(400, "lb"),
  31596. name: "Front",
  31597. image: {
  31598. source: "./media/characters/ryth/front.svg",
  31599. extra: 876/691,
  31600. bottom: 25/901
  31601. }
  31602. },
  31603. goia: {
  31604. height: math.unit(12, "feet"),
  31605. weight: math.unit(10800, "lb"),
  31606. name: "Goia",
  31607. image: {
  31608. source: "./media/characters/ryth/goia.svg",
  31609. extra: 3450/3198,
  31610. bottom: 61/3511
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "Normal",
  31617. height: math.unit(4, "feet"),
  31618. default: true
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31624. {
  31625. front: {
  31626. height: math.unit(7, "feet"),
  31627. weight: math.unit(180, "lb"),
  31628. name: "Front",
  31629. image: {
  31630. source: "./media/characters/necrolance/front.svg",
  31631. extra: 1062/947,
  31632. bottom: 41/1103
  31633. }
  31634. },
  31635. back: {
  31636. height: math.unit(7, "feet"),
  31637. weight: math.unit(180, "lb"),
  31638. name: "Back",
  31639. image: {
  31640. source: "./media/characters/necrolance/back.svg",
  31641. extra: 1045/984,
  31642. bottom: 14/1059
  31643. }
  31644. },
  31645. wing: {
  31646. height: math.unit(2.67, "feet"),
  31647. name: "Wing",
  31648. image: {
  31649. source: "./media/characters/necrolance/wing.svg"
  31650. }
  31651. },
  31652. },
  31653. [
  31654. {
  31655. name: "Normal",
  31656. height: math.unit(7, "feet"),
  31657. default: true
  31658. },
  31659. ]
  31660. ))
  31661. characterMakers.push(() => makeCharacter(
  31662. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31663. {
  31664. front: {
  31665. height: math.unit(76, "meters"),
  31666. weight: math.unit(30000, "tons"),
  31667. name: "Front",
  31668. image: {
  31669. source: "./media/characters/tyler/front.svg",
  31670. extra: 1640/1640,
  31671. bottom: 114/1754
  31672. }
  31673. },
  31674. },
  31675. [
  31676. {
  31677. name: "Macro",
  31678. height: math.unit(76, "meters"),
  31679. default: true
  31680. },
  31681. ]
  31682. ))
  31683. characterMakers.push(() => makeCharacter(
  31684. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31685. {
  31686. front: {
  31687. height: math.unit(4 + 11/12, "feet"),
  31688. weight: math.unit(132, "lb"),
  31689. name: "Front",
  31690. image: {
  31691. source: "./media/characters/icey/front.svg",
  31692. extra: 2750/2550,
  31693. bottom: 33/2783
  31694. }
  31695. },
  31696. back: {
  31697. height: math.unit(4 + 11/12, "feet"),
  31698. weight: math.unit(132, "lb"),
  31699. name: "Back",
  31700. image: {
  31701. source: "./media/characters/icey/back.svg",
  31702. extra: 2624/2481,
  31703. bottom: 35/2659
  31704. }
  31705. },
  31706. },
  31707. [
  31708. {
  31709. name: "Normal",
  31710. height: math.unit(4 + 11/12, "feet"),
  31711. default: true
  31712. },
  31713. ]
  31714. ))
  31715. characterMakers.push(() => makeCharacter(
  31716. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31717. {
  31718. front: {
  31719. height: math.unit(100, "feet"),
  31720. weight: math.unit(0, "lb"),
  31721. name: "Front",
  31722. image: {
  31723. source: "./media/characters/smile/front.svg",
  31724. extra: 2983/2912,
  31725. bottom: 162/3145
  31726. }
  31727. },
  31728. back: {
  31729. height: math.unit(100, "feet"),
  31730. weight: math.unit(0, "lb"),
  31731. name: "Back",
  31732. image: {
  31733. source: "./media/characters/smile/back.svg",
  31734. extra: 3143/3031,
  31735. bottom: 91/3234
  31736. }
  31737. },
  31738. head: {
  31739. height: math.unit(26.3, "feet"),
  31740. weight: math.unit(0, "lb"),
  31741. name: "Head",
  31742. image: {
  31743. source: "./media/characters/smile/head.svg"
  31744. }
  31745. },
  31746. collar: {
  31747. height: math.unit(5.3, "feet"),
  31748. weight: math.unit(0, "lb"),
  31749. name: "Collar",
  31750. image: {
  31751. source: "./media/characters/smile/collar.svg"
  31752. }
  31753. },
  31754. },
  31755. [
  31756. {
  31757. name: "Macro",
  31758. height: math.unit(100, "feet"),
  31759. default: true
  31760. },
  31761. ]
  31762. ))
  31763. characterMakers.push(() => makeCharacter(
  31764. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31765. {
  31766. dragon: {
  31767. height: math.unit(26, "feet"),
  31768. weight: math.unit(36, "tons"),
  31769. name: "Dragon",
  31770. image: {
  31771. source: "./media/characters/arimphae/dragon.svg",
  31772. extra: 1574/983,
  31773. bottom: 357/1931
  31774. }
  31775. },
  31776. drake: {
  31777. height: math.unit(9, "feet"),
  31778. weight: math.unit(1.5, "tons"),
  31779. name: "Drake",
  31780. image: {
  31781. source: "./media/characters/arimphae/drake.svg",
  31782. extra: 1120/925,
  31783. bottom: 435/1555
  31784. }
  31785. },
  31786. },
  31787. [
  31788. {
  31789. name: "Small",
  31790. height: math.unit(26*5/9, "feet")
  31791. },
  31792. {
  31793. name: "Normal",
  31794. height: math.unit(26, "feet"),
  31795. default: true
  31796. },
  31797. ]
  31798. ))
  31799. characterMakers.push(() => makeCharacter(
  31800. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31801. {
  31802. front: {
  31803. height: math.unit(8 + 9/12, "feet"),
  31804. name: "Front",
  31805. image: {
  31806. source: "./media/characters/xander/front.svg",
  31807. extra: 848/673,
  31808. bottom: 62/910
  31809. }
  31810. },
  31811. },
  31812. [
  31813. {
  31814. name: "Normal",
  31815. height: math.unit(8 + 9/12, "feet"),
  31816. default: true
  31817. },
  31818. {
  31819. name: "Gaze Grabber",
  31820. height: math.unit(13 + 8/12, "feet")
  31821. },
  31822. {
  31823. name: "Jaw Dropper",
  31824. height: math.unit(27, "feet")
  31825. },
  31826. {
  31827. name: "Show Stopper",
  31828. height: math.unit(136, "feet")
  31829. },
  31830. {
  31831. name: "Superstar",
  31832. height: math.unit(1.9e6, "miles")
  31833. },
  31834. ]
  31835. ))
  31836. characterMakers.push(() => makeCharacter(
  31837. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31838. {
  31839. side: {
  31840. height: math.unit(2100, "feet"),
  31841. name: "Side",
  31842. image: {
  31843. source: "./media/characters/osiris/side.svg",
  31844. extra: 1105/939,
  31845. bottom: 167/1272
  31846. }
  31847. },
  31848. },
  31849. [
  31850. {
  31851. name: "Macro",
  31852. height: math.unit(2100, "feet"),
  31853. default: true
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31859. {
  31860. front: {
  31861. height: math.unit(6 + 8/12, "feet"),
  31862. weight: math.unit(225, "lb"),
  31863. name: "Front",
  31864. image: {
  31865. source: "./media/characters/rhys-londe/front.svg",
  31866. extra: 2258/2141,
  31867. bottom: 188/2446
  31868. }
  31869. },
  31870. back: {
  31871. height: math.unit(6 + 8/12, "feet"),
  31872. weight: math.unit(225, "lb"),
  31873. name: "Back",
  31874. image: {
  31875. source: "./media/characters/rhys-londe/back.svg",
  31876. extra: 2237/2137,
  31877. bottom: 63/2300
  31878. }
  31879. },
  31880. frontNsfw: {
  31881. height: math.unit(6 + 8/12, "feet"),
  31882. weight: math.unit(225, "lb"),
  31883. name: "Front (NSFW)",
  31884. image: {
  31885. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31886. extra: 2258/2141,
  31887. bottom: 188/2446
  31888. }
  31889. },
  31890. backNsfw: {
  31891. height: math.unit(6 + 8/12, "feet"),
  31892. weight: math.unit(225, "lb"),
  31893. name: "Back (NSFW)",
  31894. image: {
  31895. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31896. extra: 2237/2137,
  31897. bottom: 63/2300
  31898. }
  31899. },
  31900. dick: {
  31901. height: math.unit(30, "inches"),
  31902. name: "Dick",
  31903. image: {
  31904. source: "./media/characters/rhys-londe/dick.svg"
  31905. }
  31906. },
  31907. maw: {
  31908. height: math.unit(1.6, "feet"),
  31909. name: "Maw",
  31910. image: {
  31911. source: "./media/characters/rhys-londe/maw.svg"
  31912. }
  31913. },
  31914. },
  31915. [
  31916. {
  31917. name: "Normal",
  31918. height: math.unit(6 + 8/12, "feet"),
  31919. default: true
  31920. },
  31921. ]
  31922. ))
  31923. characterMakers.push(() => makeCharacter(
  31924. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31925. {
  31926. front: {
  31927. height: math.unit(3 + 10/12, "feet"),
  31928. weight: math.unit(90, "lb"),
  31929. name: "Front",
  31930. image: {
  31931. source: "./media/characters/taivas-ensim/front.svg",
  31932. extra: 1327/1216,
  31933. bottom: 96/1423
  31934. }
  31935. },
  31936. back: {
  31937. height: math.unit(3 + 10/12, "feet"),
  31938. weight: math.unit(90, "lb"),
  31939. name: "Back",
  31940. image: {
  31941. source: "./media/characters/taivas-ensim/back.svg",
  31942. extra: 1355/1247,
  31943. bottom: 11/1366
  31944. }
  31945. },
  31946. frontNsfw: {
  31947. height: math.unit(3 + 10/12, "feet"),
  31948. weight: math.unit(90, "lb"),
  31949. name: "Front (NSFW)",
  31950. image: {
  31951. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31952. extra: 1327/1216,
  31953. bottom: 96/1423
  31954. }
  31955. },
  31956. backNsfw: {
  31957. height: math.unit(3 + 10/12, "feet"),
  31958. weight: math.unit(90, "lb"),
  31959. name: "Back (NSFW)",
  31960. image: {
  31961. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31962. extra: 1355/1247,
  31963. bottom: 11/1366
  31964. }
  31965. },
  31966. },
  31967. [
  31968. {
  31969. name: "Normal",
  31970. height: math.unit(3 + 10/12, "feet"),
  31971. default: true
  31972. },
  31973. ]
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31977. {
  31978. front: {
  31979. height: math.unit(9 + 6/12, "feet"),
  31980. weight: math.unit(940, "lb"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/byliss/front.svg",
  31984. extra: 1327/1290,
  31985. bottom: 82/1409
  31986. }
  31987. },
  31988. back: {
  31989. height: math.unit(9 + 6/12, "feet"),
  31990. weight: math.unit(940, "lb"),
  31991. name: "Back",
  31992. image: {
  31993. source: "./media/characters/byliss/back.svg",
  31994. extra: 1376/1349,
  31995. bottom: 9/1385
  31996. }
  31997. },
  31998. frontNsfw: {
  31999. height: math.unit(9 + 6/12, "feet"),
  32000. weight: math.unit(940, "lb"),
  32001. name: "Front (NSFW)",
  32002. image: {
  32003. source: "./media/characters/byliss/front-nsfw.svg",
  32004. extra: 1327/1290,
  32005. bottom: 82/1409
  32006. }
  32007. },
  32008. backNsfw: {
  32009. height: math.unit(9 + 6/12, "feet"),
  32010. weight: math.unit(940, "lb"),
  32011. name: "Back (NSFW)",
  32012. image: {
  32013. source: "./media/characters/byliss/back-nsfw.svg",
  32014. extra: 1376/1349,
  32015. bottom: 9/1385
  32016. }
  32017. },
  32018. },
  32019. [
  32020. {
  32021. name: "Normal",
  32022. height: math.unit(9 + 6/12, "feet"),
  32023. default: true
  32024. },
  32025. ]
  32026. ))
  32027. characterMakers.push(() => makeCharacter(
  32028. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32029. {
  32030. front: {
  32031. height: math.unit(5 + 2/12, "feet"),
  32032. weight: math.unit(200, "lb"),
  32033. name: "Front",
  32034. image: {
  32035. source: "./media/characters/noraly/front.svg",
  32036. extra: 4985/4773,
  32037. bottom: 150/5135
  32038. }
  32039. },
  32040. full: {
  32041. height: math.unit(5 + 2/12, "feet"),
  32042. weight: math.unit(164, "lb"),
  32043. name: "Full",
  32044. image: {
  32045. source: "./media/characters/noraly/full.svg",
  32046. extra: 1114/1059,
  32047. bottom: 35/1149
  32048. }
  32049. },
  32050. fuller: {
  32051. height: math.unit(5 + 2/12, "feet"),
  32052. weight: math.unit(230, "lb"),
  32053. name: "Fuller",
  32054. image: {
  32055. source: "./media/characters/noraly/fuller.svg",
  32056. extra: 1114/1059,
  32057. bottom: 35/1149
  32058. }
  32059. },
  32060. fullest: {
  32061. height: math.unit(5 + 2/12, "feet"),
  32062. weight: math.unit(300, "lb"),
  32063. name: "Fullest",
  32064. image: {
  32065. source: "./media/characters/noraly/fullest.svg",
  32066. extra: 1114/1059,
  32067. bottom: 35/1149
  32068. }
  32069. },
  32070. },
  32071. [
  32072. {
  32073. name: "Normal",
  32074. height: math.unit(5 + 2/12, "feet"),
  32075. default: true
  32076. },
  32077. ]
  32078. ))
  32079. characterMakers.push(() => makeCharacter(
  32080. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32081. {
  32082. front: {
  32083. height: math.unit(5 + 2/12, "feet"),
  32084. weight: math.unit(210, "lb"),
  32085. name: "Front",
  32086. image: {
  32087. source: "./media/characters/pera/front.svg",
  32088. extra: 1560/1531,
  32089. bottom: 165/1725
  32090. }
  32091. },
  32092. back: {
  32093. height: math.unit(5 + 2/12, "feet"),
  32094. weight: math.unit(210, "lb"),
  32095. name: "Back",
  32096. image: {
  32097. source: "./media/characters/pera/back.svg",
  32098. extra: 1523/1493,
  32099. bottom: 152/1675
  32100. }
  32101. },
  32102. dick: {
  32103. height: math.unit(2.4, "feet"),
  32104. name: "Dick",
  32105. image: {
  32106. source: "./media/characters/pera/dick.svg"
  32107. }
  32108. },
  32109. },
  32110. [
  32111. {
  32112. name: "Normal",
  32113. height: math.unit(5 + 2/12, "feet"),
  32114. default: true
  32115. },
  32116. ]
  32117. ))
  32118. characterMakers.push(() => makeCharacter(
  32119. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32120. {
  32121. front: {
  32122. height: math.unit(12, "feet"),
  32123. weight: math.unit(3200, "lb"),
  32124. name: "Front",
  32125. image: {
  32126. source: "./media/characters/julian/front.svg",
  32127. extra: 2962/2701,
  32128. bottom: 184/3146
  32129. }
  32130. },
  32131. maw: {
  32132. height: math.unit(5.35, "feet"),
  32133. name: "Maw",
  32134. image: {
  32135. source: "./media/characters/julian/maw.svg"
  32136. }
  32137. },
  32138. paw: {
  32139. height: math.unit(3.07, "feet"),
  32140. name: "Paw",
  32141. image: {
  32142. source: "./media/characters/julian/paw.svg"
  32143. }
  32144. },
  32145. },
  32146. [
  32147. {
  32148. name: "Default",
  32149. height: math.unit(12, "feet"),
  32150. default: true
  32151. },
  32152. {
  32153. name: "Big",
  32154. height: math.unit(50, "feet")
  32155. },
  32156. {
  32157. name: "Really Big",
  32158. height: math.unit(1, "mile")
  32159. },
  32160. {
  32161. name: "Extremely Big",
  32162. height: math.unit(100, "miles")
  32163. },
  32164. {
  32165. name: "Planet Hugger",
  32166. height: math.unit(200, "megameters")
  32167. },
  32168. {
  32169. name: "Unreasonably Big",
  32170. height: math.unit(1e300, "meters")
  32171. },
  32172. ]
  32173. ))
  32174. characterMakers.push(() => makeCharacter(
  32175. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32176. {
  32177. solgooleo: {
  32178. height: math.unit(4, "meters"),
  32179. weight: math.unit(6000*1.5, "kg"),
  32180. volume: math.unit(6000, "liters"),
  32181. name: "Solgooleo",
  32182. image: {
  32183. source: "./media/characters/pi/solgooleo.svg",
  32184. extra: 388/331,
  32185. bottom: 29/417
  32186. }
  32187. },
  32188. },
  32189. [
  32190. {
  32191. name: "Normal",
  32192. height: math.unit(4, "meters"),
  32193. default: true
  32194. },
  32195. ]
  32196. ))
  32197. characterMakers.push(() => makeCharacter(
  32198. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32199. {
  32200. front: {
  32201. height: math.unit(8 + 2/12, "feet"),
  32202. weight: math.unit(4, "tons"),
  32203. name: "Front",
  32204. image: {
  32205. source: "./media/characters/shaun/front.svg",
  32206. extra: 1550/1505,
  32207. bottom: 353/1903
  32208. }
  32209. },
  32210. },
  32211. [
  32212. {
  32213. name: "Lorg",
  32214. height: math.unit(8 + 2/12, "feet"),
  32215. default: true
  32216. },
  32217. ]
  32218. ))
  32219. characterMakers.push(() => makeCharacter(
  32220. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32221. {
  32222. front: {
  32223. height: math.unit(7, "feet"),
  32224. name: "Front",
  32225. image: {
  32226. source: "./media/characters/sini/front.svg",
  32227. extra: 726/678,
  32228. bottom: 35/761
  32229. }
  32230. },
  32231. back: {
  32232. height: math.unit(7, "feet"),
  32233. name: "Back",
  32234. image: {
  32235. source: "./media/characters/sini/back.svg",
  32236. extra: 743/701,
  32237. bottom: 12/755
  32238. }
  32239. },
  32240. mawAnthro: {
  32241. height: math.unit(2.14, "feet"),
  32242. name: "Maw (Anthro)",
  32243. image: {
  32244. source: "./media/characters/sini/maw-anthro.svg"
  32245. }
  32246. },
  32247. dick: {
  32248. height: math.unit(1.45, "feet"),
  32249. name: "Dick (Anthro)",
  32250. image: {
  32251. source: "./media/characters/sini/dick-anthro.svg"
  32252. }
  32253. },
  32254. feral: {
  32255. height: math.unit(16, "feet"),
  32256. name: "Feral",
  32257. image: {
  32258. source: "./media/characters/sini/feral.svg",
  32259. extra: 814/605,
  32260. bottom: 11/825
  32261. }
  32262. },
  32263. mawFeral: {
  32264. height: math.unit(5.66, "feet"),
  32265. name: "Maw-feral",
  32266. image: {
  32267. source: "./media/characters/sini/maw-feral.svg"
  32268. }
  32269. },
  32270. footFeral: {
  32271. height: math.unit(5.17, "feet"),
  32272. name: "Foot-feral",
  32273. image: {
  32274. source: "./media/characters/sini/foot-feral.svg"
  32275. }
  32276. },
  32277. },
  32278. [
  32279. {
  32280. name: "Normal",
  32281. height: math.unit(7, "feet"),
  32282. default: true
  32283. },
  32284. ]
  32285. ))
  32286. characterMakers.push(() => makeCharacter(
  32287. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32288. {
  32289. side: {
  32290. height: math.unit(13, "meters"),
  32291. weight: math.unit(9072, "kg"),
  32292. name: "Side",
  32293. image: {
  32294. source: "./media/characters/raylldo/side.svg",
  32295. extra: 403/344,
  32296. bottom: 42/445
  32297. }
  32298. },
  32299. leaping: {
  32300. height: math.unit(12.3, "meters"),
  32301. weight: math.unit(9072, "kg"),
  32302. name: "Leaping",
  32303. image: {
  32304. source: "./media/characters/raylldo/leaping.svg",
  32305. extra: 470/249,
  32306. bottom: 13/483
  32307. }
  32308. },
  32309. flying: {
  32310. height: math.unit(18, "meters"),
  32311. weight: math.unit(9072, "kg"),
  32312. name: "Flying",
  32313. image: {
  32314. source: "./media/characters/raylldo/flying.svg"
  32315. }
  32316. },
  32317. head: {
  32318. height: math.unit(5.85, "meters"),
  32319. name: "Head",
  32320. image: {
  32321. source: "./media/characters/raylldo/head.svg"
  32322. }
  32323. },
  32324. maw: {
  32325. height: math.unit(5.32, "meters"),
  32326. name: "Maw",
  32327. image: {
  32328. source: "./media/characters/raylldo/maw.svg"
  32329. }
  32330. },
  32331. eye: {
  32332. height: math.unit(0.54, "meters"),
  32333. name: "Eye",
  32334. image: {
  32335. source: "./media/characters/raylldo/eye.svg"
  32336. }
  32337. },
  32338. },
  32339. [
  32340. {
  32341. name: "Normal",
  32342. height: math.unit(13, "meters"),
  32343. default: true
  32344. },
  32345. ]
  32346. ))
  32347. characterMakers.push(() => makeCharacter(
  32348. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32349. {
  32350. anthroFront: {
  32351. height: math.unit(9, "feet"),
  32352. weight: math.unit(600, "lb"),
  32353. name: "Anthro (Front)",
  32354. image: {
  32355. source: "./media/characters/glint/anthro-front.svg",
  32356. extra: 1097/1018,
  32357. bottom: 28/1125
  32358. }
  32359. },
  32360. anthroBack: {
  32361. height: math.unit(9, "feet"),
  32362. weight: math.unit(600, "lb"),
  32363. name: "Anthro (Back)",
  32364. image: {
  32365. source: "./media/characters/glint/anthro-back.svg",
  32366. extra: 1154/997,
  32367. bottom: 36/1190
  32368. }
  32369. },
  32370. feral: {
  32371. height: math.unit(11, "feet"),
  32372. weight: math.unit(50000, "lb"),
  32373. name: "Feral",
  32374. image: {
  32375. source: "./media/characters/glint/feral.svg",
  32376. extra: 3035/1585,
  32377. bottom: 1169/4204
  32378. }
  32379. },
  32380. dickAnthro: {
  32381. height: math.unit(0.7, "meters"),
  32382. name: "Dick (Anthro)",
  32383. image: {
  32384. source: "./media/characters/glint/dick-anthro.svg"
  32385. }
  32386. },
  32387. dickFeral: {
  32388. height: math.unit(2.65, "meters"),
  32389. name: "Dick (Feral)",
  32390. image: {
  32391. source: "./media/characters/glint/dick-feral.svg"
  32392. }
  32393. },
  32394. slitHidden: {
  32395. height: math.unit(5.85, "meters"),
  32396. name: "Slit (Hidden)",
  32397. image: {
  32398. source: "./media/characters/glint/slit-hidden.svg"
  32399. }
  32400. },
  32401. slitErect: {
  32402. height: math.unit(5.85, "meters"),
  32403. name: "Slit (Erect)",
  32404. image: {
  32405. source: "./media/characters/glint/slit-erect.svg"
  32406. }
  32407. },
  32408. mawAnthro: {
  32409. height: math.unit(0.63, "meters"),
  32410. name: "Maw (Anthro)",
  32411. image: {
  32412. source: "./media/characters/glint/maw.svg"
  32413. }
  32414. },
  32415. mawFeral: {
  32416. height: math.unit(2.89, "meters"),
  32417. name: "Maw (Feral)",
  32418. image: {
  32419. source: "./media/characters/glint/maw.svg"
  32420. }
  32421. },
  32422. },
  32423. [
  32424. {
  32425. name: "Normal",
  32426. height: math.unit(9, "feet"),
  32427. default: true
  32428. },
  32429. ]
  32430. ))
  32431. characterMakers.push(() => makeCharacter(
  32432. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32433. {
  32434. side: {
  32435. height: math.unit(15, "feet"),
  32436. weight: math.unit(5000, "kg"),
  32437. name: "Side",
  32438. image: {
  32439. source: "./media/characters/kairne/side.svg",
  32440. extra: 979/811,
  32441. bottom: 13/992
  32442. }
  32443. },
  32444. front: {
  32445. height: math.unit(15, "feet"),
  32446. weight: math.unit(5000, "kg"),
  32447. name: "Front",
  32448. image: {
  32449. source: "./media/characters/kairne/front.svg",
  32450. extra: 908/814,
  32451. bottom: 26/934
  32452. }
  32453. },
  32454. sideNsfw: {
  32455. height: math.unit(15, "feet"),
  32456. weight: math.unit(5000, "kg"),
  32457. name: "Side (NSFW)",
  32458. image: {
  32459. source: "./media/characters/kairne/side-nsfw.svg",
  32460. extra: 979/811,
  32461. bottom: 13/992
  32462. }
  32463. },
  32464. frontNsfw: {
  32465. height: math.unit(15, "feet"),
  32466. weight: math.unit(5000, "kg"),
  32467. name: "Front (NSFW)",
  32468. image: {
  32469. source: "./media/characters/kairne/front-nsfw.svg",
  32470. extra: 908/814,
  32471. bottom: 26/934
  32472. }
  32473. },
  32474. dickCaged: {
  32475. height: math.unit(0.65, "meters"),
  32476. name: "Dick-caged",
  32477. image: {
  32478. source: "./media/characters/kairne/dick-caged.svg"
  32479. }
  32480. },
  32481. dick: {
  32482. height: math.unit(0.79, "meters"),
  32483. name: "Dick",
  32484. image: {
  32485. source: "./media/characters/kairne/dick.svg"
  32486. }
  32487. },
  32488. genitals: {
  32489. height: math.unit(1.29, "meters"),
  32490. name: "Genitals",
  32491. image: {
  32492. source: "./media/characters/kairne/genitals.svg"
  32493. }
  32494. },
  32495. maw: {
  32496. height: math.unit(1.73, "meters"),
  32497. name: "Maw",
  32498. image: {
  32499. source: "./media/characters/kairne/maw.svg"
  32500. }
  32501. },
  32502. },
  32503. [
  32504. {
  32505. name: "Normal",
  32506. height: math.unit(15, "feet"),
  32507. default: true
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32513. {
  32514. front: {
  32515. height: math.unit(5 + 8/12, "feet"),
  32516. weight: math.unit(139, "lb"),
  32517. name: "Front",
  32518. image: {
  32519. source: "./media/characters/biscuit-jackal/front.svg",
  32520. extra: 2106/1961,
  32521. bottom: 58/2164
  32522. }
  32523. },
  32524. back: {
  32525. height: math.unit(5 + 8/12, "feet"),
  32526. weight: math.unit(139, "lb"),
  32527. name: "Back",
  32528. image: {
  32529. source: "./media/characters/biscuit-jackal/back.svg",
  32530. extra: 2132/1976,
  32531. bottom: 57/2189
  32532. }
  32533. },
  32534. werejackal: {
  32535. height: math.unit(6 + 3/12, "feet"),
  32536. weight: math.unit(188, "lb"),
  32537. name: "Werejackal",
  32538. image: {
  32539. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32540. extra: 2373/2178,
  32541. bottom: 53/2426
  32542. }
  32543. },
  32544. },
  32545. [
  32546. {
  32547. name: "Normal",
  32548. height: math.unit(5 + 8/12, "feet"),
  32549. default: true
  32550. },
  32551. ]
  32552. ))
  32553. characterMakers.push(() => makeCharacter(
  32554. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32555. {
  32556. front: {
  32557. height: math.unit(140, "cm"),
  32558. weight: math.unit(45, "kg"),
  32559. name: "Front",
  32560. image: {
  32561. source: "./media/characters/tayra-white/front.svg",
  32562. extra: 2229/2192,
  32563. bottom: 75/2304
  32564. }
  32565. },
  32566. },
  32567. [
  32568. {
  32569. name: "Normal",
  32570. height: math.unit(140, "cm"),
  32571. default: true
  32572. },
  32573. ]
  32574. ))
  32575. characterMakers.push(() => makeCharacter(
  32576. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32577. {
  32578. front: {
  32579. height: math.unit(4 + 5/12, "feet"),
  32580. name: "Front",
  32581. image: {
  32582. source: "./media/characters/scoop/front.svg",
  32583. extra: 1257/1136,
  32584. bottom: 69/1326
  32585. }
  32586. },
  32587. back: {
  32588. height: math.unit(4 + 5/12, "feet"),
  32589. name: "Back",
  32590. image: {
  32591. source: "./media/characters/scoop/back.svg",
  32592. extra: 1321/1152,
  32593. bottom: 32/1353
  32594. }
  32595. },
  32596. maw: {
  32597. height: math.unit(0.68, "feet"),
  32598. name: "Maw",
  32599. image: {
  32600. source: "./media/characters/scoop/maw.svg"
  32601. }
  32602. },
  32603. },
  32604. [
  32605. {
  32606. name: "Really Small",
  32607. height: math.unit(1, "mm")
  32608. },
  32609. {
  32610. name: "Micro",
  32611. height: math.unit(1, "inch")
  32612. },
  32613. {
  32614. name: "Normal",
  32615. height: math.unit(4 + 5/12, "feet"),
  32616. default: true
  32617. },
  32618. {
  32619. name: "Macro",
  32620. height: math.unit(200, "feet")
  32621. },
  32622. {
  32623. name: "Megamacro",
  32624. height: math.unit(3240, "feet")
  32625. },
  32626. {
  32627. name: "Teramacro",
  32628. height: math.unit(2500, "miles")
  32629. },
  32630. ]
  32631. ))
  32632. characterMakers.push(() => makeCharacter(
  32633. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32634. {
  32635. front: {
  32636. height: math.unit(15 + 7/12, "feet"),
  32637. name: "Front",
  32638. image: {
  32639. source: "./media/characters/saphinara/front.svg",
  32640. extra: 604/546,
  32641. bottom: 19/623
  32642. }
  32643. },
  32644. side: {
  32645. height: math.unit(15 + 7/12, "feet"),
  32646. name: "Side",
  32647. image: {
  32648. source: "./media/characters/saphinara/side.svg",
  32649. extra: 605/547,
  32650. bottom: 6/611
  32651. }
  32652. },
  32653. back: {
  32654. height: math.unit(15 + 7/12, "feet"),
  32655. name: "Back",
  32656. image: {
  32657. source: "./media/characters/saphinara/back.svg",
  32658. extra: 591/531,
  32659. bottom: 13/604
  32660. }
  32661. },
  32662. frontTail: {
  32663. height: math.unit(15 + 7/12, "feet"),
  32664. name: "Front (Full Tail)",
  32665. image: {
  32666. source: "./media/characters/saphinara/front-tail.svg",
  32667. extra: 748/547,
  32668. bottom: 66/814
  32669. }
  32670. },
  32671. },
  32672. [
  32673. {
  32674. name: "Normal",
  32675. height: math.unit(15 + 7/12, "feet"),
  32676. default: true
  32677. },
  32678. {
  32679. name: "Angry",
  32680. height: math.unit(30 + 6/12, "feet")
  32681. },
  32682. {
  32683. name: "Enraged",
  32684. height: math.unit(102 + 1/12, "feet")
  32685. },
  32686. ]
  32687. ))
  32688. characterMakers.push(() => makeCharacter(
  32689. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32690. {
  32691. front: {
  32692. height: math.unit(6 + 8/12, "feet"),
  32693. weight: math.unit(300, "lb"),
  32694. name: "Front",
  32695. image: {
  32696. source: "./media/characters/jrain/front.svg",
  32697. extra: 3039/2865,
  32698. bottom: 399/3438
  32699. }
  32700. },
  32701. back: {
  32702. height: math.unit(6 + 8/12, "feet"),
  32703. weight: math.unit(300, "lb"),
  32704. name: "Back",
  32705. image: {
  32706. source: "./media/characters/jrain/back.svg",
  32707. extra: 3089/2938,
  32708. bottom: 172/3261
  32709. }
  32710. },
  32711. head: {
  32712. height: math.unit(2.14, "feet"),
  32713. name: "Head",
  32714. image: {
  32715. source: "./media/characters/jrain/head.svg"
  32716. }
  32717. },
  32718. maw: {
  32719. height: math.unit(1.77, "feet"),
  32720. name: "Maw",
  32721. image: {
  32722. source: "./media/characters/jrain/maw.svg"
  32723. }
  32724. },
  32725. leftHand: {
  32726. height: math.unit(1.1, "feet"),
  32727. name: "Left Hand",
  32728. image: {
  32729. source: "./media/characters/jrain/left-hand.svg"
  32730. }
  32731. },
  32732. rightHand: {
  32733. height: math.unit(1.1, "feet"),
  32734. name: "Right Hand",
  32735. image: {
  32736. source: "./media/characters/jrain/right-hand.svg"
  32737. }
  32738. },
  32739. eye: {
  32740. height: math.unit(0.35, "feet"),
  32741. name: "Eye",
  32742. image: {
  32743. source: "./media/characters/jrain/eye.svg"
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "Normal",
  32750. height: math.unit(6 + 8/12, "feet"),
  32751. default: true
  32752. },
  32753. {
  32754. name: "Casually Large",
  32755. height: math.unit(25, "feet")
  32756. },
  32757. {
  32758. name: "Giant",
  32759. height: math.unit(100, "feet")
  32760. },
  32761. {
  32762. name: "Kaiju",
  32763. height: math.unit(300, "feet")
  32764. },
  32765. ]
  32766. ))
  32767. characterMakers.push(() => makeCharacter(
  32768. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32769. {
  32770. dragon: {
  32771. height: math.unit(5, "meters"),
  32772. name: "Dragon",
  32773. image: {
  32774. source: "./media/characters/sabrina/dragon.svg",
  32775. extra: 3670 / 2365,
  32776. bottom: 333 / 4003
  32777. }
  32778. },
  32779. gryphon: {
  32780. height: math.unit(3, "meters"),
  32781. name: "Gryphon",
  32782. image: {
  32783. source: "./media/characters/sabrina/gryphon.svg",
  32784. extra: 1576 / 945,
  32785. bottom: 71 / 1647
  32786. }
  32787. },
  32788. snake: {
  32789. height: math.unit(12, "meters"),
  32790. name: "Snake",
  32791. image: {
  32792. source: "./media/characters/sabrina/snake.svg",
  32793. extra: 1758 / 1320,
  32794. bottom: 186 / 1944
  32795. }
  32796. },
  32797. collar: {
  32798. height: math.unit(1.86, "meters"),
  32799. name: "Collar",
  32800. image: {
  32801. source: "./media/characters/sabrina/collar.svg"
  32802. }
  32803. },
  32804. eye: {
  32805. height: math.unit(0.53, "meters"),
  32806. name: "Eye",
  32807. image: {
  32808. source: "./media/characters/sabrina/eye.svg"
  32809. }
  32810. },
  32811. foot: {
  32812. height: math.unit(1.86, "meters"),
  32813. name: "Foot",
  32814. image: {
  32815. source: "./media/characters/sabrina/foot.svg"
  32816. }
  32817. },
  32818. hand: {
  32819. height: math.unit(1.32, "meters"),
  32820. name: "Hand",
  32821. image: {
  32822. source: "./media/characters/sabrina/hand.svg"
  32823. }
  32824. },
  32825. head: {
  32826. height: math.unit(2.44, "meters"),
  32827. name: "Head",
  32828. image: {
  32829. source: "./media/characters/sabrina/head.svg"
  32830. }
  32831. },
  32832. headAngry: {
  32833. height: math.unit(2.44, "meters"),
  32834. name: "Head (Angry))",
  32835. image: {
  32836. source: "./media/characters/sabrina/head-angry.svg"
  32837. }
  32838. },
  32839. maw: {
  32840. height: math.unit(1.65, "meters"),
  32841. name: "Maw",
  32842. image: {
  32843. source: "./media/characters/sabrina/maw.svg"
  32844. }
  32845. },
  32846. spikes: {
  32847. height: math.unit(1.69, "meters"),
  32848. name: "Spikes",
  32849. image: {
  32850. source: "./media/characters/sabrina/spikes.svg"
  32851. }
  32852. },
  32853. stomach: {
  32854. height: math.unit(1.15, "meters"),
  32855. name: "Stomach",
  32856. image: {
  32857. source: "./media/characters/sabrina/stomach.svg"
  32858. }
  32859. },
  32860. tongue: {
  32861. height: math.unit(1.27, "meters"),
  32862. name: "Tongue",
  32863. image: {
  32864. source: "./media/characters/sabrina/tongue.svg"
  32865. }
  32866. },
  32867. wingDorsal: {
  32868. height: math.unit(4.85, "meters"),
  32869. name: "Wing (Dorsal)",
  32870. image: {
  32871. source: "./media/characters/sabrina/wing-dorsal.svg"
  32872. }
  32873. },
  32874. wingVentral: {
  32875. height: math.unit(4.85, "meters"),
  32876. name: "Wing (Ventral)",
  32877. image: {
  32878. source: "./media/characters/sabrina/wing-ventral.svg"
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Normal",
  32885. height: math.unit(5, "meters"),
  32886. default: true
  32887. },
  32888. ]
  32889. ))
  32890. characterMakers.push(() => makeCharacter(
  32891. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32892. {
  32893. frontMaid: {
  32894. height: math.unit(5 + 5/12, "feet"),
  32895. weight: math.unit(130, "lb"),
  32896. name: "Front (Maid)",
  32897. image: {
  32898. source: "./media/characters/midnight-tales/front-maid.svg",
  32899. extra: 489/454,
  32900. bottom: 61/550
  32901. }
  32902. },
  32903. frontFormal: {
  32904. height: math.unit(5 + 5/12, "feet"),
  32905. weight: math.unit(130, "lb"),
  32906. name: "Front (Formal)",
  32907. image: {
  32908. source: "./media/characters/midnight-tales/front-formal.svg",
  32909. extra: 489/454,
  32910. bottom: 61/550
  32911. }
  32912. },
  32913. back: {
  32914. height: math.unit(5 + 5/12, "feet"),
  32915. weight: math.unit(130, "lb"),
  32916. name: "Back",
  32917. image: {
  32918. source: "./media/characters/midnight-tales/back.svg",
  32919. extra: 498/456,
  32920. bottom: 33/531
  32921. }
  32922. },
  32923. frontBeast: {
  32924. height: math.unit(40, "feet"),
  32925. weight: math.unit(64000, "lb"),
  32926. name: "Front (Beast)",
  32927. image: {
  32928. source: "./media/characters/midnight-tales/front-beast.svg",
  32929. extra: 927/860,
  32930. bottom: 53/980
  32931. }
  32932. },
  32933. backBeast: {
  32934. height: math.unit(40, "feet"),
  32935. weight: math.unit(64000, "lb"),
  32936. name: "Back (Beast)",
  32937. image: {
  32938. source: "./media/characters/midnight-tales/back-beast.svg",
  32939. extra: 929/855,
  32940. bottom: 16/945
  32941. }
  32942. },
  32943. footBeast: {
  32944. height: math.unit(6.7, "feet"),
  32945. name: "Foot (Beast)",
  32946. image: {
  32947. source: "./media/characters/midnight-tales/foot-beast.svg"
  32948. }
  32949. },
  32950. headBeast: {
  32951. height: math.unit(8, "feet"),
  32952. name: "Head (Beast)",
  32953. image: {
  32954. source: "./media/characters/midnight-tales/head-beast.svg"
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Normal",
  32961. height: math.unit(5 + 5 / 12, "feet"),
  32962. default: true
  32963. },
  32964. {
  32965. name: "Macro",
  32966. height: math.unit(25, "feet")
  32967. },
  32968. ]
  32969. ))
  32970. characterMakers.push(() => makeCharacter(
  32971. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32972. {
  32973. front: {
  32974. height: math.unit(5 + 10/12, "feet"),
  32975. name: "Front",
  32976. image: {
  32977. source: "./media/characters/argon/front.svg",
  32978. extra: 2009/1935,
  32979. bottom: 118/2127
  32980. }
  32981. },
  32982. back: {
  32983. height: math.unit(5 + 10/12, "feet"),
  32984. name: "Back",
  32985. image: {
  32986. source: "./media/characters/argon/back.svg",
  32987. extra: 2047/1992,
  32988. bottom: 20/2067
  32989. }
  32990. },
  32991. frontDressed: {
  32992. height: math.unit(5 + 10/12, "feet"),
  32993. name: "Front (Dressed)",
  32994. image: {
  32995. source: "./media/characters/argon/front-dressed.svg",
  32996. extra: 2009/1935,
  32997. bottom: 118/2127
  32998. }
  32999. },
  33000. },
  33001. [
  33002. {
  33003. name: "Normal",
  33004. height: math.unit(5 + 10/12, "feet"),
  33005. default: true
  33006. },
  33007. ]
  33008. ))
  33009. characterMakers.push(() => makeCharacter(
  33010. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33011. {
  33012. front: {
  33013. height: math.unit(8 + 6/12, "feet"),
  33014. weight: math.unit(1150, "lb"),
  33015. name: "Front",
  33016. image: {
  33017. source: "./media/characters/kichi/front.svg",
  33018. extra: 1267/1164,
  33019. bottom: 61/1328
  33020. }
  33021. },
  33022. back: {
  33023. height: math.unit(8 + 6/12, "feet"),
  33024. weight: math.unit(1150, "lb"),
  33025. name: "Back",
  33026. image: {
  33027. source: "./media/characters/kichi/back.svg",
  33028. extra: 1273/1166,
  33029. bottom: 33/1306
  33030. }
  33031. },
  33032. },
  33033. [
  33034. {
  33035. name: "Normal",
  33036. height: math.unit(8 + 6/12, "feet"),
  33037. default: true
  33038. },
  33039. ]
  33040. ))
  33041. characterMakers.push(() => makeCharacter(
  33042. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33043. {
  33044. front: {
  33045. height: math.unit(6, "feet"),
  33046. weight: math.unit(210, "lb"),
  33047. name: "Front",
  33048. image: {
  33049. source: "./media/characters/manetel-greyscale/front.svg",
  33050. extra: 350/312,
  33051. bottom: 8/358
  33052. }
  33053. },
  33054. },
  33055. [
  33056. {
  33057. name: "Micro",
  33058. height: math.unit(2, "inches")
  33059. },
  33060. {
  33061. name: "Normal",
  33062. height: math.unit(6, "feet"),
  33063. default: true
  33064. },
  33065. {
  33066. name: "Minimacro",
  33067. height: math.unit(17, "feet")
  33068. },
  33069. {
  33070. name: "Macro",
  33071. height: math.unit(117, "feet")
  33072. },
  33073. ]
  33074. ))
  33075. characterMakers.push(() => makeCharacter(
  33076. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33077. {
  33078. side: {
  33079. height: math.unit(5 + 1/12, "feet"),
  33080. weight: math.unit(418, "lb"),
  33081. name: "Side",
  33082. image: {
  33083. source: "./media/characters/softpurr/side.svg",
  33084. extra: 1993/1945,
  33085. bottom: 134/2127
  33086. }
  33087. },
  33088. front: {
  33089. height: math.unit(5 + 1/12, "feet"),
  33090. weight: math.unit(418, "lb"),
  33091. name: "Front",
  33092. image: {
  33093. source: "./media/characters/softpurr/front.svg",
  33094. extra: 1950/1856,
  33095. bottom: 174/2124
  33096. }
  33097. },
  33098. paw: {
  33099. height: math.unit(1, "feet"),
  33100. name: "Paw",
  33101. image: {
  33102. source: "./media/characters/softpurr/paw.svg"
  33103. }
  33104. },
  33105. },
  33106. [
  33107. {
  33108. name: "Normal",
  33109. height: math.unit(5 + 1/12, "feet"),
  33110. default: true
  33111. },
  33112. ]
  33113. ))
  33114. characterMakers.push(() => makeCharacter(
  33115. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33116. {
  33117. front: {
  33118. height: math.unit(260, "meters"),
  33119. name: "Front",
  33120. image: {
  33121. source: "./media/characters/anahita/front.svg",
  33122. extra: 665/635,
  33123. bottom: 89/754
  33124. }
  33125. },
  33126. },
  33127. [
  33128. {
  33129. name: "Macro",
  33130. height: math.unit(260, "meters"),
  33131. default: true
  33132. },
  33133. ]
  33134. ))
  33135. characterMakers.push(() => makeCharacter(
  33136. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33137. {
  33138. front: {
  33139. height: math.unit(4 + 10/12, "feet"),
  33140. weight: math.unit(160, "lb"),
  33141. name: "Front",
  33142. image: {
  33143. source: "./media/characters/chip-mouse/front.svg",
  33144. extra: 3528/3408,
  33145. bottom: 0/3528
  33146. }
  33147. },
  33148. frontNsfw: {
  33149. height: math.unit(4 + 10/12, "feet"),
  33150. weight: math.unit(160, "lb"),
  33151. name: "Front (NSFW)",
  33152. image: {
  33153. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33154. extra: 3528/3408,
  33155. bottom: 0/3528
  33156. }
  33157. },
  33158. },
  33159. [
  33160. {
  33161. name: "Normal",
  33162. height: math.unit(4 + 10/12, "feet"),
  33163. default: true
  33164. },
  33165. ]
  33166. ))
  33167. characterMakers.push(() => makeCharacter(
  33168. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33169. {
  33170. side: {
  33171. height: math.unit(10, "feet"),
  33172. weight: math.unit(14000, "lb"),
  33173. name: "Side",
  33174. image: {
  33175. source: "./media/characters/kremm/side.svg",
  33176. extra: 1390/1053,
  33177. bottom: 90/1480
  33178. }
  33179. },
  33180. gut: {
  33181. height: math.unit(5.8, "feet"),
  33182. name: "Gut",
  33183. image: {
  33184. source: "./media/characters/kremm/gut.svg"
  33185. }
  33186. },
  33187. ass: {
  33188. height: math.unit(6.1, "feet"),
  33189. name: "Ass",
  33190. image: {
  33191. source: "./media/characters/kremm/ass.svg"
  33192. }
  33193. },
  33194. jaws: {
  33195. height: math.unit(2.2, "feet"),
  33196. name: "Jaws",
  33197. image: {
  33198. source: "./media/characters/kremm/jaws.svg"
  33199. }
  33200. },
  33201. dick: {
  33202. height: math.unit(4.26, "feet"),
  33203. name: "Dick",
  33204. image: {
  33205. source: "./media/characters/kremm/dick.svg"
  33206. }
  33207. },
  33208. },
  33209. [
  33210. {
  33211. name: "Normal",
  33212. height: math.unit(10, "feet"),
  33213. default: true
  33214. },
  33215. ]
  33216. ))
  33217. characterMakers.push(() => makeCharacter(
  33218. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33219. {
  33220. front: {
  33221. height: math.unit(30, "stories"),
  33222. name: "Front",
  33223. image: {
  33224. source: "./media/characters/kai/front.svg",
  33225. extra: 1892/1718,
  33226. bottom: 162/2054
  33227. }
  33228. },
  33229. },
  33230. [
  33231. {
  33232. name: "Macro",
  33233. height: math.unit(30, "stories"),
  33234. default: true
  33235. },
  33236. ]
  33237. ))
  33238. characterMakers.push(() => makeCharacter(
  33239. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33240. {
  33241. front: {
  33242. height: math.unit(6 + 4/12, "feet"),
  33243. weight: math.unit(145, "lb"),
  33244. name: "Front",
  33245. image: {
  33246. source: "./media/characters/sykes/front.svg",
  33247. extra: 1321 / 1187,
  33248. bottom: 66 / 1387
  33249. }
  33250. },
  33251. back: {
  33252. height: math.unit(6 + 4/12, "feet"),
  33253. weight: math.unit(145, "lb"),
  33254. name: "Back",
  33255. image: {
  33256. source: "./media/characters/sykes/back.svg",
  33257. extra: 1326/1181,
  33258. bottom: 31/1357
  33259. }
  33260. },
  33261. handBack: {
  33262. height: math.unit(0.9, "feet"),
  33263. name: "Hand (Back)",
  33264. image: {
  33265. source: "./media/characters/sykes/hand-back.svg"
  33266. }
  33267. },
  33268. handFront: {
  33269. height: math.unit(0.839, "feet"),
  33270. name: "Hand (Front)",
  33271. image: {
  33272. source: "./media/characters/sykes/hand-front.svg"
  33273. }
  33274. },
  33275. leftFoot: {
  33276. height: math.unit(1.2, "feet"),
  33277. name: "Foot (Left)",
  33278. image: {
  33279. source: "./media/characters/sykes/foot-left.svg"
  33280. }
  33281. },
  33282. rightFoot: {
  33283. height: math.unit(1.2, "feet"),
  33284. name: "Foot (Right)",
  33285. image: {
  33286. source: "./media/characters/sykes/foot-right.svg"
  33287. }
  33288. },
  33289. maw: {
  33290. height: math.unit(1.93, "feet"),
  33291. name: "Maw",
  33292. image: {
  33293. source: "./media/characters/sykes/maw.svg"
  33294. }
  33295. },
  33296. teeth: {
  33297. height: math.unit(0.51, "feet"),
  33298. name: "Teeth",
  33299. image: {
  33300. source: "./media/characters/sykes/teeth.svg"
  33301. }
  33302. },
  33303. tongue: {
  33304. height: math.unit(2.13, "feet"),
  33305. name: "Tongue",
  33306. image: {
  33307. source: "./media/characters/sykes/tongue.svg"
  33308. }
  33309. },
  33310. uvula: {
  33311. height: math.unit(0.16, "feet"),
  33312. name: "Uvula",
  33313. image: {
  33314. source: "./media/characters/sykes/uvula.svg"
  33315. }
  33316. },
  33317. collar: {
  33318. height: math.unit(0.287, "feet"),
  33319. name: "Collar",
  33320. image: {
  33321. source: "./media/characters/sykes/collar.svg"
  33322. }
  33323. },
  33324. },
  33325. [
  33326. {
  33327. name: "Shrunken",
  33328. height: math.unit(5, "inches")
  33329. },
  33330. {
  33331. name: "Normal",
  33332. height: math.unit(6 + 4 / 12, "feet"),
  33333. default: true
  33334. },
  33335. {
  33336. name: "Big",
  33337. height: math.unit(15, "feet")
  33338. },
  33339. ]
  33340. ))
  33341. characterMakers.push(() => makeCharacter(
  33342. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33343. {
  33344. front: {
  33345. height: math.unit(5 + 8/12, "feet"),
  33346. weight: math.unit(190, "lb"),
  33347. name: "Front",
  33348. image: {
  33349. source: "./media/characters/oven-otter/front.svg",
  33350. extra: 1809/1740,
  33351. bottom: 181/1990
  33352. }
  33353. },
  33354. back: {
  33355. height: math.unit(5 + 8/12, "feet"),
  33356. weight: math.unit(190, "lb"),
  33357. name: "Back",
  33358. image: {
  33359. source: "./media/characters/oven-otter/back.svg",
  33360. extra: 1709/1635,
  33361. bottom: 118/1827
  33362. }
  33363. },
  33364. hand: {
  33365. height: math.unit(1.07, "feet"),
  33366. name: "Hand",
  33367. image: {
  33368. source: "./media/characters/oven-otter/hand.svg"
  33369. }
  33370. },
  33371. beans: {
  33372. height: math.unit(1.74, "feet"),
  33373. name: "Beans",
  33374. image: {
  33375. source: "./media/characters/oven-otter/beans.svg"
  33376. }
  33377. },
  33378. },
  33379. [
  33380. {
  33381. name: "Micro",
  33382. height: math.unit(0.5, "inches")
  33383. },
  33384. {
  33385. name: "Normal",
  33386. height: math.unit(5 + 8/12, "feet"),
  33387. default: true
  33388. },
  33389. {
  33390. name: "Macro",
  33391. height: math.unit(250, "feet")
  33392. },
  33393. {
  33394. name: "Really High",
  33395. height: math.unit(420, "feet")
  33396. },
  33397. ]
  33398. ))
  33399. characterMakers.push(() => makeCharacter(
  33400. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33401. {
  33402. front: {
  33403. height: math.unit(5, "meters"),
  33404. weight: math.unit(292000000000000, "kg"),
  33405. name: "Front",
  33406. image: {
  33407. source: "./media/characters/devourer/front.svg",
  33408. extra: 1800/1733,
  33409. bottom: 211/2011
  33410. }
  33411. },
  33412. maw: {
  33413. height: math.unit(1.1, "meter"),
  33414. name: "Maw",
  33415. image: {
  33416. source: "./media/characters/devourer/maw.svg"
  33417. }
  33418. },
  33419. },
  33420. [
  33421. {
  33422. name: "Small",
  33423. height: math.unit(3, "meters")
  33424. },
  33425. {
  33426. name: "Large",
  33427. height: math.unit(5, "meters"),
  33428. default: true
  33429. },
  33430. ]
  33431. ))
  33432. characterMakers.push(() => makeCharacter(
  33433. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33434. {
  33435. front: {
  33436. height: math.unit(6, "feet"),
  33437. weight: math.unit(400, "lb"),
  33438. name: "Front",
  33439. image: {
  33440. source: "./media/characters/ellarby/front.svg",
  33441. extra: 1909/1763,
  33442. bottom: 80/1989
  33443. }
  33444. },
  33445. back: {
  33446. height: math.unit(6, "feet"),
  33447. weight: math.unit(400, "lb"),
  33448. name: "Back",
  33449. image: {
  33450. source: "./media/characters/ellarby/back.svg",
  33451. extra: 1914/1784,
  33452. bottom: 172/2086
  33453. }
  33454. },
  33455. },
  33456. [
  33457. {
  33458. name: "Mischief",
  33459. height: math.unit(18, "inches")
  33460. },
  33461. {
  33462. name: "Trouble",
  33463. height: math.unit(12, "feet")
  33464. },
  33465. {
  33466. name: "Havoc",
  33467. height: math.unit(200, "feet"),
  33468. default: true
  33469. },
  33470. {
  33471. name: "Pandemonium",
  33472. height: math.unit(1, "mile")
  33473. },
  33474. {
  33475. name: "Catastrophe",
  33476. height: math.unit(100, "miles")
  33477. },
  33478. ]
  33479. ))
  33480. characterMakers.push(() => makeCharacter(
  33481. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33482. {
  33483. front: {
  33484. height: math.unit(4.7, "meters"),
  33485. weight: math.unit(6500, "kg"),
  33486. name: "Front",
  33487. image: {
  33488. source: "./media/characters/vex/front.svg",
  33489. extra: 1288/1140,
  33490. bottom: 100/1388
  33491. }
  33492. },
  33493. },
  33494. [
  33495. {
  33496. name: "Normal",
  33497. height: math.unit(4.7, "meters"),
  33498. default: true
  33499. },
  33500. ]
  33501. ))
  33502. characterMakers.push(() => makeCharacter(
  33503. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33504. {
  33505. normal: {
  33506. height: math.unit(6, "feet"),
  33507. weight: math.unit(350, "lb"),
  33508. name: "Normal",
  33509. image: {
  33510. source: "./media/characters/teshy/normal.svg",
  33511. extra: 1795/1735,
  33512. bottom: 16/1811
  33513. }
  33514. },
  33515. monsterFront: {
  33516. height: math.unit(12, "feet"),
  33517. weight: math.unit(4700, "lb"),
  33518. name: "Monster (Front)",
  33519. image: {
  33520. source: "./media/characters/teshy/monster-front.svg",
  33521. extra: 2042/2034,
  33522. bottom: 128/2170
  33523. }
  33524. },
  33525. monsterSide: {
  33526. height: math.unit(12, "feet"),
  33527. weight: math.unit(4700, "lb"),
  33528. name: "Monster (Side)",
  33529. image: {
  33530. source: "./media/characters/teshy/monster-side.svg",
  33531. extra: 2067/2056,
  33532. bottom: 70/2137
  33533. }
  33534. },
  33535. monsterBack: {
  33536. height: math.unit(12, "feet"),
  33537. weight: math.unit(4700, "lb"),
  33538. name: "Monster (Back)",
  33539. image: {
  33540. source: "./media/characters/teshy/monster-back.svg",
  33541. extra: 1921/1914,
  33542. bottom: 171/2092
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Normal",
  33549. height: math.unit(6, "feet"),
  33550. default: true
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33556. {
  33557. front: {
  33558. height: math.unit(6, "feet"),
  33559. name: "Front",
  33560. image: {
  33561. source: "./media/characters/ramey/front.svg",
  33562. extra: 790/787,
  33563. bottom: 27/817
  33564. }
  33565. },
  33566. },
  33567. [
  33568. {
  33569. name: "Normal",
  33570. height: math.unit(6, "feet"),
  33571. default: true
  33572. },
  33573. ]
  33574. ))
  33575. characterMakers.push(() => makeCharacter(
  33576. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33577. {
  33578. front: {
  33579. height: math.unit(5 + 5/12, "feet"),
  33580. weight: math.unit(120, "lb"),
  33581. name: "Front",
  33582. image: {
  33583. source: "./media/characters/phirae/front.svg",
  33584. extra: 2491/2436,
  33585. bottom: 38/2529
  33586. }
  33587. },
  33588. },
  33589. [
  33590. {
  33591. name: "Normal",
  33592. height: math.unit(5 + 5/12, "feet"),
  33593. default: true
  33594. },
  33595. ]
  33596. ))
  33597. characterMakers.push(() => makeCharacter(
  33598. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33599. {
  33600. front: {
  33601. height: math.unit(6, "feet"),
  33602. weight: math.unit(150, "lb"),
  33603. name: "Front",
  33604. image: {
  33605. source: "./media/characters/stagglas/front.svg",
  33606. extra: 962/882,
  33607. bottom: 53/1015
  33608. }
  33609. },
  33610. },
  33611. [
  33612. {
  33613. name: "Normal",
  33614. height: math.unit(5 + 3/12, "feet"),
  33615. default: true
  33616. },
  33617. ]
  33618. ))
  33619. characterMakers.push(() => makeCharacter(
  33620. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33621. {
  33622. front: {
  33623. height: math.unit(5 + 4/12, "feet"),
  33624. weight: math.unit(145, "lb"),
  33625. name: "Front",
  33626. image: {
  33627. source: "./media/characters/starra/front.svg",
  33628. extra: 1790/1691,
  33629. bottom: 91/1881
  33630. }
  33631. },
  33632. },
  33633. [
  33634. {
  33635. name: "Normal",
  33636. height: math.unit(5 + 4/12, "feet"),
  33637. default: true
  33638. },
  33639. ]
  33640. ))
  33641. characterMakers.push(() => makeCharacter(
  33642. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33643. {
  33644. front: {
  33645. height: math.unit(2.2, "meters"),
  33646. name: "Front",
  33647. image: {
  33648. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33649. extra: 1194/1005,
  33650. bottom: 25/1219
  33651. }
  33652. },
  33653. },
  33654. [
  33655. {
  33656. name: "Normal",
  33657. height: math.unit(2.2, "meters"),
  33658. default: true
  33659. },
  33660. ]
  33661. ))
  33662. characterMakers.push(() => makeCharacter(
  33663. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33664. {
  33665. side: {
  33666. height: math.unit(8 + 2/12, "feet"),
  33667. weight: math.unit(1240, "lb"),
  33668. name: "Side",
  33669. image: {
  33670. source: "./media/characters/mika-valentine/side.svg",
  33671. extra: 2670/2501,
  33672. bottom: 250/2920
  33673. }
  33674. },
  33675. },
  33676. [
  33677. {
  33678. name: "Normal",
  33679. height: math.unit(8 + 2/12, "feet"),
  33680. default: true
  33681. },
  33682. ]
  33683. ))
  33684. characterMakers.push(() => makeCharacter(
  33685. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33686. {
  33687. front: {
  33688. height: math.unit(7 + 2/12, "feet"),
  33689. name: "Front",
  33690. image: {
  33691. source: "./media/characters/xoltol/front.svg",
  33692. extra: 2212/2124,
  33693. bottom: 84/2296
  33694. }
  33695. },
  33696. side: {
  33697. height: math.unit(7 + 2/12, "feet"),
  33698. name: "Side",
  33699. image: {
  33700. source: "./media/characters/xoltol/side.svg",
  33701. extra: 2273/2197,
  33702. bottom: 26/2299
  33703. }
  33704. },
  33705. hand: {
  33706. height: math.unit(2.5, "feet"),
  33707. name: "Hand",
  33708. image: {
  33709. source: "./media/characters/xoltol/hand.svg"
  33710. }
  33711. },
  33712. },
  33713. [
  33714. {
  33715. name: "Small-ish",
  33716. height: math.unit(5 + 11/12, "feet")
  33717. },
  33718. {
  33719. name: "Normal",
  33720. height: math.unit(7 + 2/12, "feet")
  33721. },
  33722. {
  33723. name: "\"Macro\"",
  33724. height: math.unit(14 + 9/12, "feet"),
  33725. default: true
  33726. },
  33727. {
  33728. name: "Alternate Height",
  33729. height: math.unit(20, "feet")
  33730. },
  33731. {
  33732. name: "Actually Macro",
  33733. height: math.unit(100, "feet")
  33734. },
  33735. ]
  33736. ))
  33737. characterMakers.push(() => makeCharacter(
  33738. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33739. {
  33740. front: {
  33741. height: math.unit(5 + 2/12, "feet"),
  33742. name: "Front",
  33743. image: {
  33744. source: "./media/characters/kotetsu-redwood/front.svg",
  33745. extra: 1053/942,
  33746. bottom: 60/1113
  33747. }
  33748. },
  33749. },
  33750. [
  33751. {
  33752. name: "Normal",
  33753. height: math.unit(5 + 2/12, "feet"),
  33754. default: true
  33755. },
  33756. ]
  33757. ))
  33758. characterMakers.push(() => makeCharacter(
  33759. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33760. {
  33761. front: {
  33762. height: math.unit(2.4, "meters"),
  33763. weight: math.unit(125, "kg"),
  33764. name: "Front",
  33765. image: {
  33766. source: "./media/characters/lilith/front.svg",
  33767. extra: 1590/1513,
  33768. bottom: 203/1793
  33769. }
  33770. },
  33771. },
  33772. [
  33773. {
  33774. name: "Humanoid",
  33775. height: math.unit(2.4, "meters")
  33776. },
  33777. {
  33778. name: "Normal",
  33779. height: math.unit(6, "meters"),
  33780. default: true
  33781. },
  33782. {
  33783. name: "Largest",
  33784. height: math.unit(55, "meters")
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33790. {
  33791. front: {
  33792. height: math.unit(8 + 4/12, "feet"),
  33793. weight: math.unit(535, "lb"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/beh'kah-bolger/front.svg",
  33797. extra: 1660/1603,
  33798. bottom: 37/1697
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Normal",
  33805. height: math.unit(8 + 4/12, "feet"),
  33806. default: true
  33807. },
  33808. {
  33809. name: "Kaiju",
  33810. height: math.unit(250, "feet")
  33811. },
  33812. {
  33813. name: "Still Growing",
  33814. height: math.unit(10, "miles")
  33815. },
  33816. {
  33817. name: "Continental",
  33818. height: math.unit(5000, "miles")
  33819. },
  33820. {
  33821. name: "Final Form",
  33822. height: math.unit(2500000, "miles")
  33823. },
  33824. ]
  33825. ))
  33826. characterMakers.push(() => makeCharacter(
  33827. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33828. {
  33829. front: {
  33830. height: math.unit(7 + 2/12, "feet"),
  33831. weight: math.unit(230, "kg"),
  33832. name: "Front",
  33833. image: {
  33834. source: "./media/characters/tatyana-milewska/front.svg",
  33835. extra: 1199/1150,
  33836. bottom: 86/1285
  33837. }
  33838. },
  33839. },
  33840. [
  33841. {
  33842. name: "Normal",
  33843. height: math.unit(7 + 2/12, "feet"),
  33844. default: true
  33845. },
  33846. {
  33847. name: "Big",
  33848. height: math.unit(12, "feet")
  33849. },
  33850. {
  33851. name: "Minimacro",
  33852. height: math.unit(20, "feet")
  33853. },
  33854. {
  33855. name: "Macro",
  33856. height: math.unit(120, "feet")
  33857. },
  33858. ]
  33859. ))
  33860. characterMakers.push(() => makeCharacter(
  33861. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33862. {
  33863. front: {
  33864. height: math.unit(7 + 8/12, "feet"),
  33865. weight: math.unit(152, "kg"),
  33866. name: "Front",
  33867. image: {
  33868. source: "./media/characters/helen-arri/front.svg",
  33869. extra: 440/423,
  33870. bottom: 14/454
  33871. }
  33872. },
  33873. back: {
  33874. height: math.unit(7 + 8/12, "feet"),
  33875. weight: math.unit(152, "kg"),
  33876. name: "Back",
  33877. image: {
  33878. source: "./media/characters/helen-arri/back.svg",
  33879. extra: 443/426,
  33880. bottom: 8/451
  33881. }
  33882. },
  33883. },
  33884. [
  33885. {
  33886. name: "Normal",
  33887. height: math.unit(7 + 8/12, "feet"),
  33888. default: true
  33889. },
  33890. {
  33891. name: "Big",
  33892. height: math.unit(14, "feet")
  33893. },
  33894. {
  33895. name: "Minimacro",
  33896. height: math.unit(24, "feet")
  33897. },
  33898. {
  33899. name: "Macro",
  33900. height: math.unit(140, "feet")
  33901. },
  33902. ]
  33903. ))
  33904. characterMakers.push(() => makeCharacter(
  33905. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33906. {
  33907. front: {
  33908. height: math.unit(6, "meters"),
  33909. name: "Front",
  33910. image: {
  33911. source: "./media/characters/ehanu-rehu/front.svg",
  33912. extra: 1800/1800,
  33913. bottom: 59/1859
  33914. }
  33915. },
  33916. },
  33917. [
  33918. {
  33919. name: "Normal",
  33920. height: math.unit(6, "meters"),
  33921. default: true
  33922. },
  33923. ]
  33924. ))
  33925. characterMakers.push(() => makeCharacter(
  33926. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33927. {
  33928. front: {
  33929. height: math.unit(7 + 3/12, "feet"),
  33930. name: "Front",
  33931. image: {
  33932. source: "./media/characters/renholder/front.svg",
  33933. extra: 3096/2960,
  33934. bottom: 250/3346
  33935. }
  33936. },
  33937. },
  33938. [
  33939. {
  33940. name: "Normal Bat",
  33941. height: math.unit(7 + 3/12, "feet"),
  33942. default: true
  33943. },
  33944. {
  33945. name: "Slightly Tall Bat",
  33946. height: math.unit(100, "feet")
  33947. },
  33948. {
  33949. name: "Big Bat",
  33950. height: math.unit(1000, "feet")
  33951. },
  33952. {
  33953. name: "City-Sized Bat",
  33954. height: math.unit(200000, "feet")
  33955. },
  33956. {
  33957. name: "Bigger Bat",
  33958. height: math.unit(10000, "miles")
  33959. },
  33960. {
  33961. name: "Solar Sized Bat",
  33962. height: math.unit(100, "AU")
  33963. },
  33964. {
  33965. name: "Galactic Bat",
  33966. height: math.unit(200000, "lightyears")
  33967. },
  33968. {
  33969. name: "Universally Known Bat",
  33970. height: math.unit(1, "universe")
  33971. },
  33972. ]
  33973. ))
  33974. characterMakers.push(() => makeCharacter(
  33975. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33976. {
  33977. front: {
  33978. height: math.unit(6 + 11/12, "feet"),
  33979. weight: math.unit(250, "lb"),
  33980. name: "Front",
  33981. image: {
  33982. source: "./media/characters/cookiecat/front.svg",
  33983. extra: 893/827,
  33984. bottom: 14/907
  33985. }
  33986. },
  33987. },
  33988. [
  33989. {
  33990. name: "Micro",
  33991. height: math.unit(3, "inches")
  33992. },
  33993. {
  33994. name: "Normal",
  33995. height: math.unit(6 + 11/12, "feet"),
  33996. default: true
  33997. },
  33998. {
  33999. name: "Macro",
  34000. height: math.unit(100, "feet")
  34001. },
  34002. {
  34003. name: "Macro+",
  34004. height: math.unit(404, "feet")
  34005. },
  34006. {
  34007. name: "Megamacro",
  34008. height: math.unit(165, "miles")
  34009. },
  34010. {
  34011. name: "Planetary",
  34012. height: math.unit(4600, "miles")
  34013. },
  34014. ]
  34015. ))
  34016. characterMakers.push(() => makeCharacter(
  34017. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34018. {
  34019. front: {
  34020. height: math.unit(10 + 3/12, "feet"),
  34021. weight: math.unit(1500, "lb"),
  34022. name: "Front",
  34023. image: {
  34024. source: "./media/characters/tux-kusanagi/front.svg",
  34025. extra: 944/840,
  34026. bottom: 39/983
  34027. }
  34028. },
  34029. back: {
  34030. height: math.unit(10 + 3/12, "feet"),
  34031. weight: math.unit(1500, "lb"),
  34032. name: "Back",
  34033. image: {
  34034. source: "./media/characters/tux-kusanagi/back.svg",
  34035. extra: 941/842,
  34036. bottom: 28/969
  34037. }
  34038. },
  34039. rump: {
  34040. height: math.unit(5.25, "feet"),
  34041. name: "Rump",
  34042. image: {
  34043. source: "./media/characters/tux-kusanagi/rump.svg"
  34044. }
  34045. },
  34046. beak: {
  34047. height: math.unit(1.54, "feet"),
  34048. name: "Beak",
  34049. image: {
  34050. source: "./media/characters/tux-kusanagi/beak.svg"
  34051. }
  34052. },
  34053. },
  34054. [
  34055. {
  34056. name: "Normal",
  34057. height: math.unit(10 + 3/12, "feet"),
  34058. default: true
  34059. },
  34060. ]
  34061. ))
  34062. characterMakers.push(() => makeCharacter(
  34063. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34064. {
  34065. front: {
  34066. height: math.unit(58, "feet"),
  34067. weight: math.unit(200, "tons"),
  34068. name: "Front",
  34069. image: {
  34070. source: "./media/characters/uzarmazari/front.svg",
  34071. extra: 1575/1455,
  34072. bottom: 152/1727
  34073. }
  34074. },
  34075. back: {
  34076. height: math.unit(58, "feet"),
  34077. weight: math.unit(200, "tons"),
  34078. name: "Back",
  34079. image: {
  34080. source: "./media/characters/uzarmazari/back.svg",
  34081. extra: 1585/1510,
  34082. bottom: 157/1742
  34083. }
  34084. },
  34085. head: {
  34086. height: math.unit(26, "feet"),
  34087. name: "Head",
  34088. image: {
  34089. source: "./media/characters/uzarmazari/head.svg"
  34090. }
  34091. },
  34092. },
  34093. [
  34094. {
  34095. name: "Normal",
  34096. height: math.unit(58, "feet"),
  34097. default: true
  34098. },
  34099. ]
  34100. ))
  34101. characterMakers.push(() => makeCharacter(
  34102. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34103. {
  34104. side: {
  34105. height: math.unit(15, "feet"),
  34106. name: "Side",
  34107. image: {
  34108. source: "./media/characters/akitu/side.svg",
  34109. extra: 1421/1321,
  34110. bottom: 157/1578
  34111. }
  34112. },
  34113. front: {
  34114. height: math.unit(15, "feet"),
  34115. name: "Front",
  34116. image: {
  34117. source: "./media/characters/akitu/front.svg",
  34118. extra: 1435/1326,
  34119. bottom: 232/1667
  34120. }
  34121. },
  34122. },
  34123. [
  34124. {
  34125. name: "Normal",
  34126. height: math.unit(15, "feet"),
  34127. default: true
  34128. },
  34129. ]
  34130. ))
  34131. characterMakers.push(() => makeCharacter(
  34132. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34133. {
  34134. front: {
  34135. height: math.unit(10 + 8/12, "feet"),
  34136. name: "Front",
  34137. image: {
  34138. source: "./media/characters/azalie-croixland/front.svg",
  34139. extra: 1972/1856,
  34140. bottom: 31/2003
  34141. }
  34142. },
  34143. },
  34144. [
  34145. {
  34146. name: "Original Height",
  34147. height: math.unit(5 + 4/12, "feet")
  34148. },
  34149. {
  34150. name: "Normal Height",
  34151. height: math.unit(10 + 8/12, "feet"),
  34152. default: true
  34153. },
  34154. ]
  34155. ))
  34156. characterMakers.push(() => makeCharacter(
  34157. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34158. {
  34159. side: {
  34160. height: math.unit(7 + 1/12, "feet"),
  34161. weight: math.unit(245, "lb"),
  34162. name: "Side",
  34163. image: {
  34164. source: "./media/characters/kavus-kazian/side.svg",
  34165. extra: 349/342,
  34166. bottom: 15/364
  34167. }
  34168. },
  34169. },
  34170. [
  34171. {
  34172. name: "Normal",
  34173. height: math.unit(7 + 1/12, "feet"),
  34174. default: true
  34175. },
  34176. ]
  34177. ))
  34178. characterMakers.push(() => makeCharacter(
  34179. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34180. {
  34181. normal: {
  34182. height: math.unit(5 + 11/12, "feet"),
  34183. name: "Normal",
  34184. image: {
  34185. source: "./media/characters/moonlight-rose/normal.svg",
  34186. extra: 1979/1835,
  34187. bottom: 14/1993
  34188. }
  34189. },
  34190. demon: {
  34191. height: math.unit(5, "km"),
  34192. name: "Demon",
  34193. image: {
  34194. source: "./media/characters/moonlight-rose/demon.svg",
  34195. extra: 986/916,
  34196. bottom: 28/1014
  34197. }
  34198. },
  34199. },
  34200. [
  34201. {
  34202. name: "\"Natural\" height",
  34203. height: math.unit(5 + 11/12, "feet")
  34204. },
  34205. {
  34206. name: "Comfortable Size",
  34207. height: math.unit(40, "meters")
  34208. },
  34209. {
  34210. name: "Common Size",
  34211. height: math.unit(50, "km"),
  34212. default: true
  34213. },
  34214. {
  34215. name: "Demonic",
  34216. height: math.unit(1.24415e+21, "meters")
  34217. },
  34218. ]
  34219. ))
  34220. characterMakers.push(() => makeCharacter(
  34221. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34222. {
  34223. front: {
  34224. height: math.unit(16, "feet"),
  34225. weight: math.unit(610, "kg"),
  34226. name: "Front",
  34227. image: {
  34228. source: "./media/characters/huckle/front.svg",
  34229. extra: 1731/1625,
  34230. bottom: 33/1764
  34231. }
  34232. },
  34233. back: {
  34234. height: math.unit(16, "feet"),
  34235. weight: math.unit(610, "kg"),
  34236. name: "Back",
  34237. image: {
  34238. source: "./media/characters/huckle/back.svg",
  34239. extra: 1738/1651,
  34240. bottom: 37/1775
  34241. }
  34242. },
  34243. laughing: {
  34244. height: math.unit(3.75, "feet"),
  34245. name: "Laughing",
  34246. image: {
  34247. source: "./media/characters/huckle/laughing.svg"
  34248. }
  34249. },
  34250. angry: {
  34251. height: math.unit(4.15, "feet"),
  34252. name: "Angry",
  34253. image: {
  34254. source: "./media/characters/huckle/angry.svg"
  34255. }
  34256. },
  34257. },
  34258. [
  34259. {
  34260. name: "Normal",
  34261. height: math.unit(16, "feet"),
  34262. default: true
  34263. },
  34264. {
  34265. name: "Mini Macro",
  34266. height: math.unit(463, "feet")
  34267. },
  34268. {
  34269. name: "Macro",
  34270. height: math.unit(1680, "meters")
  34271. },
  34272. {
  34273. name: "Mega Macro",
  34274. height: math.unit(175, "km")
  34275. },
  34276. {
  34277. name: "Terra Macro",
  34278. height: math.unit(32, "gigameters")
  34279. },
  34280. {
  34281. name: "Multiverse+",
  34282. height: math.unit(2.56e23, "yottameters")
  34283. },
  34284. ]
  34285. ))
  34286. characterMakers.push(() => makeCharacter(
  34287. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34288. {
  34289. front: {
  34290. height: math.unit(6 + 9/12, "feet"),
  34291. weight: math.unit(280, "lb"),
  34292. name: "Front",
  34293. image: {
  34294. source: "./media/characters/candy/front.svg",
  34295. extra: 234/217,
  34296. bottom: 11/245
  34297. }
  34298. },
  34299. },
  34300. [
  34301. {
  34302. name: "Really Small",
  34303. height: math.unit(0.1, "nm")
  34304. },
  34305. {
  34306. name: "Micro",
  34307. height: math.unit(2, "inches")
  34308. },
  34309. {
  34310. name: "Normal",
  34311. height: math.unit(6 + 9/12, "feet"),
  34312. default: true
  34313. },
  34314. {
  34315. name: "Small Macro",
  34316. height: math.unit(69, "feet")
  34317. },
  34318. {
  34319. name: "Macro",
  34320. height: math.unit(160, "feet")
  34321. },
  34322. {
  34323. name: "Megamacro",
  34324. height: math.unit(22000, "miles")
  34325. },
  34326. {
  34327. name: "Gigamacro",
  34328. height: math.unit(50000, "miles")
  34329. },
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34334. {
  34335. front: {
  34336. height: math.unit(4, "feet"),
  34337. weight: math.unit(90, "lb"),
  34338. name: "Front",
  34339. image: {
  34340. source: "./media/characters/joey-mcdonald/front.svg",
  34341. extra: 1059/852,
  34342. bottom: 33/1092
  34343. }
  34344. },
  34345. back: {
  34346. height: math.unit(4, "feet"),
  34347. weight: math.unit(90, "lb"),
  34348. name: "Back",
  34349. image: {
  34350. source: "./media/characters/joey-mcdonald/back.svg",
  34351. extra: 1077/879,
  34352. bottom: 5/1082
  34353. }
  34354. },
  34355. },
  34356. [
  34357. {
  34358. name: "Normal",
  34359. height: math.unit(4, "feet"),
  34360. default: true
  34361. },
  34362. ]
  34363. ))
  34364. characterMakers.push(() => makeCharacter(
  34365. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34366. {
  34367. front: {
  34368. height: math.unit(12 + 6/12, "feet"),
  34369. name: "Front",
  34370. image: {
  34371. source: "./media/characters/kass-lockheed/front.svg",
  34372. extra: 354/343,
  34373. bottom: 9/363
  34374. }
  34375. },
  34376. back: {
  34377. height: math.unit(12 + 6/12, "feet"),
  34378. name: "Back",
  34379. image: {
  34380. source: "./media/characters/kass-lockheed/back.svg",
  34381. extra: 364/352,
  34382. bottom: 3/367
  34383. }
  34384. },
  34385. dick: {
  34386. height: math.unit(3.12, "feet"),
  34387. name: "Dick",
  34388. image: {
  34389. source: "./media/characters/kass-lockheed/dick.svg"
  34390. }
  34391. },
  34392. head: {
  34393. height: math.unit(2.6, "feet"),
  34394. name: "Head",
  34395. image: {
  34396. source: "./media/characters/kass-lockheed/head.svg"
  34397. }
  34398. },
  34399. bleh: {
  34400. height: math.unit(2.85, "feet"),
  34401. name: "Bleh",
  34402. image: {
  34403. source: "./media/characters/kass-lockheed/bleh.svg"
  34404. }
  34405. },
  34406. smug: {
  34407. height: math.unit(2.85, "feet"),
  34408. name: "Smug",
  34409. image: {
  34410. source: "./media/characters/kass-lockheed/smug.svg"
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(12 + 6/12, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(6 + 2/12, "feet"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/taylor/front.svg",
  34430. extra: 639/495,
  34431. bottom: 12/651
  34432. }
  34433. },
  34434. },
  34435. [
  34436. {
  34437. name: "Normal",
  34438. height: math.unit(6 + 2/12, "feet"),
  34439. default: true
  34440. },
  34441. {
  34442. name: "Big",
  34443. height: math.unit(15, "feet")
  34444. },
  34445. {
  34446. name: "Lorg",
  34447. height: math.unit(80, "feet")
  34448. },
  34449. {
  34450. name: "Too Lorg",
  34451. height: math.unit(120, "feet")
  34452. },
  34453. ]
  34454. ))
  34455. characterMakers.push(() => makeCharacter(
  34456. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34457. {
  34458. front: {
  34459. height: math.unit(15, "feet"),
  34460. name: "Front",
  34461. image: {
  34462. source: "./media/characters/kaizer/front.svg",
  34463. extra: 1612/1436,
  34464. bottom: 43/1655
  34465. }
  34466. },
  34467. },
  34468. [
  34469. {
  34470. name: "Normal",
  34471. height: math.unit(15, "feet"),
  34472. default: true
  34473. },
  34474. ]
  34475. ))
  34476. characterMakers.push(() => makeCharacter(
  34477. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34478. {
  34479. front: {
  34480. height: math.unit(2, "feet"),
  34481. weight: math.unit(30, "lb"),
  34482. name: "Front",
  34483. image: {
  34484. source: "./media/characters/sandy/front.svg",
  34485. extra: 1439/1307,
  34486. bottom: 194/1633
  34487. }
  34488. },
  34489. },
  34490. [
  34491. {
  34492. name: "Normal",
  34493. height: math.unit(2, "feet"),
  34494. default: true
  34495. },
  34496. ]
  34497. ))
  34498. characterMakers.push(() => makeCharacter(
  34499. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34500. {
  34501. front: {
  34502. height: math.unit(3, "feet"),
  34503. name: "Front",
  34504. image: {
  34505. source: "./media/characters/mellvi/front.svg",
  34506. extra: 1831/1630,
  34507. bottom: 58/1889
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "Normal",
  34514. height: math.unit(3, "feet"),
  34515. default: true
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34521. {
  34522. front: {
  34523. height: math.unit(5 + 11/12, "feet"),
  34524. weight: math.unit(200, "lb"),
  34525. name: "Front",
  34526. image: {
  34527. source: "./media/characters/shirou/front.svg",
  34528. extra: 2491/2383,
  34529. bottom: 189/2680
  34530. }
  34531. },
  34532. back: {
  34533. height: math.unit(5 + 11/12, "feet"),
  34534. weight: math.unit(200, "lb"),
  34535. name: "Back",
  34536. image: {
  34537. source: "./media/characters/shirou/back.svg",
  34538. extra: 2554/2450,
  34539. bottom: 76/2630
  34540. }
  34541. },
  34542. },
  34543. [
  34544. {
  34545. name: "Normal",
  34546. height: math.unit(5 + 11/12, "feet"),
  34547. default: true
  34548. },
  34549. ]
  34550. ))
  34551. characterMakers.push(() => makeCharacter(
  34552. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34553. {
  34554. front: {
  34555. height: math.unit(6 + 3/12, "feet"),
  34556. weight: math.unit(177, "lb"),
  34557. name: "Front",
  34558. image: {
  34559. source: "./media/characters/noryu/front.svg",
  34560. extra: 973/885,
  34561. bottom: 10/983
  34562. }
  34563. },
  34564. },
  34565. [
  34566. {
  34567. name: "Normal",
  34568. height: math.unit(6 + 3/12, "feet"),
  34569. default: true
  34570. },
  34571. ]
  34572. ))
  34573. characterMakers.push(() => makeCharacter(
  34574. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34575. {
  34576. front: {
  34577. height: math.unit(5 + 6/12, "feet"),
  34578. weight: math.unit(170, "lb"),
  34579. name: "Front",
  34580. image: {
  34581. source: "./media/characters/mevolas-rubenido/front.svg",
  34582. extra: 2109/1901,
  34583. bottom: 96/2205
  34584. }
  34585. },
  34586. },
  34587. [
  34588. {
  34589. name: "Normal",
  34590. height: math.unit(5 + 6/12, "feet"),
  34591. default: true
  34592. },
  34593. ]
  34594. ))
  34595. characterMakers.push(() => makeCharacter(
  34596. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34597. {
  34598. front: {
  34599. height: math.unit(100, "feet"),
  34600. name: "Front",
  34601. image: {
  34602. source: "./media/characters/dee/front.svg",
  34603. extra: 2153/2036,
  34604. bottom: 59/2212
  34605. }
  34606. },
  34607. back: {
  34608. height: math.unit(100, "feet"),
  34609. name: "Back",
  34610. image: {
  34611. source: "./media/characters/dee/back.svg",
  34612. extra: 2183/2058,
  34613. bottom: 75/2258
  34614. }
  34615. },
  34616. foot: {
  34617. height: math.unit(19.43, "feet"),
  34618. name: "Foot",
  34619. image: {
  34620. source: "./media/characters/dee/foot.svg"
  34621. }
  34622. },
  34623. hoof: {
  34624. height: math.unit(20.6, "feet"),
  34625. name: "Hoof",
  34626. image: {
  34627. source: "./media/characters/dee/hoof.svg"
  34628. }
  34629. },
  34630. },
  34631. [
  34632. {
  34633. name: "Macro",
  34634. height: math.unit(100, "feet"),
  34635. default: true
  34636. },
  34637. ]
  34638. ))
  34639. characterMakers.push(() => makeCharacter(
  34640. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34641. {
  34642. front: {
  34643. height: math.unit(5 + 6/12, "feet"),
  34644. name: "Front",
  34645. image: {
  34646. source: "./media/characters/teh/front.svg",
  34647. extra: 1002/847,
  34648. bottom: 62/1064
  34649. }
  34650. },
  34651. },
  34652. [
  34653. {
  34654. name: "Normal",
  34655. height: math.unit(5 + 6/12, "feet"),
  34656. default: true
  34657. },
  34658. ]
  34659. ))
  34660. characterMakers.push(() => makeCharacter(
  34661. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34662. {
  34663. side: {
  34664. height: math.unit(6 + 1/12, "feet"),
  34665. weight: math.unit(204, "lb"),
  34666. name: "Side",
  34667. image: {
  34668. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34669. extra: 974/775,
  34670. bottom: 169/1143
  34671. }
  34672. },
  34673. sitting: {
  34674. height: math.unit(6 + 2/12, "feet"),
  34675. weight: math.unit(204, "lb"),
  34676. name: "Sitting",
  34677. image: {
  34678. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34679. extra: 1175/964,
  34680. bottom: 378/1553
  34681. }
  34682. },
  34683. },
  34684. [
  34685. {
  34686. name: "Normal",
  34687. height: math.unit(6 + 1/12, "feet"),
  34688. default: true
  34689. },
  34690. ]
  34691. ))
  34692. characterMakers.push(() => makeCharacter(
  34693. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34694. {
  34695. front: {
  34696. height: math.unit(6, "inches"),
  34697. name: "Front",
  34698. image: {
  34699. source: "./media/characters/tululi/front.svg",
  34700. extra: 1997/1876,
  34701. bottom: 20/2017
  34702. }
  34703. },
  34704. },
  34705. [
  34706. {
  34707. name: "Normal",
  34708. height: math.unit(6, "inches"),
  34709. default: true
  34710. },
  34711. ]
  34712. ))
  34713. characterMakers.push(() => makeCharacter(
  34714. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34715. {
  34716. front: {
  34717. height: math.unit(4 + 1/12, "feet"),
  34718. name: "Front",
  34719. image: {
  34720. source: "./media/characters/star/front.svg",
  34721. extra: 1493/1189,
  34722. bottom: 48/1541
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Normal",
  34729. height: math.unit(4 + 1/12, "feet"),
  34730. default: true
  34731. },
  34732. ]
  34733. ))
  34734. characterMakers.push(() => makeCharacter(
  34735. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34736. {
  34737. front: {
  34738. height: math.unit(6 + 3/12, "feet"),
  34739. name: "Front",
  34740. image: {
  34741. source: "./media/characters/comet/front.svg",
  34742. extra: 1681/1462,
  34743. bottom: 26/1707
  34744. }
  34745. },
  34746. },
  34747. [
  34748. {
  34749. name: "Normal",
  34750. height: math.unit(6 + 3/12, "feet"),
  34751. default: true
  34752. },
  34753. ]
  34754. ))
  34755. characterMakers.push(() => makeCharacter(
  34756. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34757. {
  34758. front: {
  34759. height: math.unit(950, "feet"),
  34760. name: "Front",
  34761. image: {
  34762. source: "./media/characters/vortex/front.svg",
  34763. extra: 1497/1434,
  34764. bottom: 56/1553
  34765. }
  34766. },
  34767. maw: {
  34768. height: math.unit(285, "feet"),
  34769. name: "Maw",
  34770. image: {
  34771. source: "./media/characters/vortex/maw.svg"
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Macro",
  34778. height: math.unit(950, "feet"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34785. {
  34786. front: {
  34787. height: math.unit(600, "feet"),
  34788. weight: math.unit(0.02, "grams"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/doodle/front.svg",
  34792. extra: 1578/1413,
  34793. bottom: 37/1615
  34794. }
  34795. },
  34796. },
  34797. [
  34798. {
  34799. name: "Macro",
  34800. height: math.unit(600, "feet"),
  34801. default: true
  34802. },
  34803. ]
  34804. ))
  34805. characterMakers.push(() => makeCharacter(
  34806. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34807. {
  34808. front: {
  34809. height: math.unit(6 + 6/12, "feet"),
  34810. name: "Front",
  34811. image: {
  34812. source: "./media/characters/jai/front.svg",
  34813. extra: 1645/1534,
  34814. bottom: 115/1760
  34815. }
  34816. },
  34817. },
  34818. [
  34819. {
  34820. name: "Normal",
  34821. height: math.unit(6 + 6/12, "feet"),
  34822. default: true
  34823. },
  34824. ]
  34825. ))
  34826. characterMakers.push(() => makeCharacter(
  34827. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34828. {
  34829. front: {
  34830. height: math.unit(6 + 8/12, "feet"),
  34831. name: "Front",
  34832. image: {
  34833. source: "./media/characters/pixel/front.svg",
  34834. extra: 1900/1735,
  34835. bottom: 63/1963
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(6 + 8/12, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34849. {
  34850. front: {
  34851. height: math.unit(4 + 11/12, "feet"),
  34852. weight: math.unit(111, "lb"),
  34853. name: "Front",
  34854. image: {
  34855. source: "./media/characters/rhett/front.svg",
  34856. extra: 1682/1586,
  34857. bottom: 92/1774
  34858. }
  34859. },
  34860. },
  34861. [
  34862. {
  34863. name: "Mini",
  34864. height: math.unit(1 + 1/12, "feet")
  34865. },
  34866. {
  34867. name: "Normal",
  34868. height: math.unit(4 + 11/12, "feet"),
  34869. default: true
  34870. },
  34871. ]
  34872. ))
  34873. characterMakers.push(() => makeCharacter(
  34874. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34875. {
  34876. front: {
  34877. height: math.unit(3 + 3/12, "feet"),
  34878. name: "Front",
  34879. image: {
  34880. source: "./media/characters/penny/front.svg",
  34881. extra: 1406/1311,
  34882. bottom: 26/1432
  34883. }
  34884. },
  34885. },
  34886. [
  34887. {
  34888. name: "Normal",
  34889. height: math.unit(3 + 3/12, "feet"),
  34890. default: true
  34891. },
  34892. ]
  34893. ))
  34894. characterMakers.push(() => makeCharacter(
  34895. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34896. {
  34897. front: {
  34898. height: math.unit(4 + 11/12, "feet"),
  34899. name: "Front",
  34900. image: {
  34901. source: "./media/characters/monty/front.svg",
  34902. extra: 1479/1209,
  34903. bottom: 0/1479
  34904. }
  34905. },
  34906. },
  34907. [
  34908. {
  34909. name: "Normal",
  34910. height: math.unit(4 + 11/12, "feet"),
  34911. default: true
  34912. },
  34913. ]
  34914. ))
  34915. characterMakers.push(() => makeCharacter(
  34916. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34917. {
  34918. front: {
  34919. height: math.unit(8 + 4/12, "feet"),
  34920. name: "Front",
  34921. image: {
  34922. source: "./media/characters/sterling/front.svg",
  34923. extra: 1420/1236,
  34924. bottom: 27/1447
  34925. }
  34926. },
  34927. },
  34928. [
  34929. {
  34930. name: "Normal",
  34931. height: math.unit(8 + 4/12, "feet"),
  34932. default: true
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34938. {
  34939. front: {
  34940. height: math.unit(15, "feet"),
  34941. name: "Front",
  34942. image: {
  34943. source: "./media/characters/marble/front.svg",
  34944. extra: 973/937,
  34945. bottom: 32/1005
  34946. }
  34947. },
  34948. },
  34949. [
  34950. {
  34951. name: "Normal",
  34952. height: math.unit(15, "feet"),
  34953. default: true
  34954. },
  34955. ]
  34956. ))
  34957. characterMakers.push(() => makeCharacter(
  34958. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34959. {
  34960. front: {
  34961. height: math.unit(3, "inches"),
  34962. name: "Front",
  34963. image: {
  34964. source: "./media/characters/powder/front.svg",
  34965. extra: 1504/1334,
  34966. bottom: 518/2022
  34967. }
  34968. },
  34969. },
  34970. [
  34971. {
  34972. name: "Normal",
  34973. height: math.unit(3, "inches"),
  34974. default: true
  34975. },
  34976. ]
  34977. ))
  34978. characterMakers.push(() => makeCharacter(
  34979. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34980. {
  34981. front: {
  34982. height: math.unit(4 + 5/12, "feet"),
  34983. name: "Front",
  34984. image: {
  34985. source: "./media/characters/joey-raccoon/front.svg",
  34986. extra: 1273/1197,
  34987. bottom: 0/1273
  34988. }
  34989. },
  34990. },
  34991. [
  34992. {
  34993. name: "Normal",
  34994. height: math.unit(4 + 5/12, "feet"),
  34995. default: true
  34996. },
  34997. ]
  34998. ))
  34999. characterMakers.push(() => makeCharacter(
  35000. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35001. {
  35002. front: {
  35003. height: math.unit(8 + 4/12, "feet"),
  35004. name: "Front",
  35005. image: {
  35006. source: "./media/characters/vick/front.svg",
  35007. extra: 2187/2118,
  35008. bottom: 47/2234
  35009. }
  35010. },
  35011. },
  35012. [
  35013. {
  35014. name: "Normal",
  35015. height: math.unit(8 + 4/12, "feet"),
  35016. default: true
  35017. },
  35018. ]
  35019. ))
  35020. characterMakers.push(() => makeCharacter(
  35021. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35022. {
  35023. front: {
  35024. height: math.unit(5 + 5/12, "feet"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/mitsy/front.svg",
  35028. extra: 1842/1695,
  35029. bottom: 0/1842
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Normal",
  35036. height: math.unit(5 + 5/12, "feet"),
  35037. default: true
  35038. },
  35039. ]
  35040. ))
  35041. characterMakers.push(() => makeCharacter(
  35042. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35043. {
  35044. front: {
  35045. height: math.unit(6 + 3/12, "feet"),
  35046. name: "Front",
  35047. image: {
  35048. source: "./media/characters/silvy/front.svg",
  35049. extra: 1995/1836,
  35050. bottom: 225/2220
  35051. }
  35052. },
  35053. },
  35054. [
  35055. {
  35056. name: "Normal",
  35057. height: math.unit(6 + 3/12, "feet"),
  35058. default: true
  35059. },
  35060. ]
  35061. ))
  35062. characterMakers.push(() => makeCharacter(
  35063. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35064. {
  35065. front: {
  35066. height: math.unit(3 + 8/12, "feet"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/rodney/front.svg",
  35070. extra: 1956/1747,
  35071. bottom: 31/1987
  35072. }
  35073. },
  35074. frontDressed: {
  35075. height: math.unit(2.9, "feet"),
  35076. name: "Front (Dressed)",
  35077. image: {
  35078. source: "./media/characters/rodney/front-dressed.svg",
  35079. extra: 1382/1241,
  35080. bottom: 385/1767
  35081. }
  35082. },
  35083. },
  35084. [
  35085. {
  35086. name: "Normal",
  35087. height: math.unit(3 + 8/12, "feet"),
  35088. default: true
  35089. },
  35090. ]
  35091. ))
  35092. characterMakers.push(() => makeCharacter(
  35093. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35094. {
  35095. front: {
  35096. height: math.unit(5 + 9/12, "feet"),
  35097. weight: math.unit(194, "lbs"),
  35098. name: "Front",
  35099. image: {
  35100. source: "./media/characters/zakail-sudekai/front.svg",
  35101. extra: 2696/2533,
  35102. bottom: 248/2944
  35103. }
  35104. },
  35105. maw: {
  35106. height: math.unit(1.35, "feet"),
  35107. name: "Maw",
  35108. image: {
  35109. source: "./media/characters/zakail-sudekai/maw.svg"
  35110. }
  35111. },
  35112. },
  35113. [
  35114. {
  35115. name: "Normal",
  35116. height: math.unit(5 + 9/12, "feet"),
  35117. default: true
  35118. },
  35119. ]
  35120. ))
  35121. characterMakers.push(() => makeCharacter(
  35122. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35123. {
  35124. front: {
  35125. height: math.unit(8 + 4/12, "feet"),
  35126. weight: math.unit(1200, "lb"),
  35127. name: "Front",
  35128. image: {
  35129. source: "./media/characters/eleanor/front.svg",
  35130. extra: 1226/1192,
  35131. bottom: 52/1278
  35132. }
  35133. },
  35134. back: {
  35135. height: math.unit(8 + 4/12, "feet"),
  35136. weight: math.unit(1200, "lb"),
  35137. name: "Back",
  35138. image: {
  35139. source: "./media/characters/eleanor/back.svg",
  35140. extra: 1242/1184,
  35141. bottom: 60/1302
  35142. }
  35143. },
  35144. head: {
  35145. height: math.unit(2.62, "feet"),
  35146. name: "Head",
  35147. image: {
  35148. source: "./media/characters/eleanor/head.svg"
  35149. }
  35150. },
  35151. },
  35152. [
  35153. {
  35154. name: "Normal",
  35155. height: math.unit(8 + 4/12, "feet"),
  35156. default: true
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35162. {
  35163. front: {
  35164. height: math.unit(8 + 4/12, "feet"),
  35165. weight: math.unit(750, "lb"),
  35166. name: "Front",
  35167. image: {
  35168. source: "./media/characters/tanya/front.svg",
  35169. extra: 1749/1615,
  35170. bottom: 33/1782
  35171. }
  35172. },
  35173. },
  35174. [
  35175. {
  35176. name: "Normal",
  35177. height: math.unit(8 + 4/12, "feet"),
  35178. default: true
  35179. },
  35180. ]
  35181. ))
  35182. characterMakers.push(() => makeCharacter(
  35183. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35184. {
  35185. front: {
  35186. height: math.unit(5, "feet"),
  35187. weight: math.unit(225, "lb"),
  35188. name: "Front",
  35189. image: {
  35190. source: "./media/characters/cindy/front.svg",
  35191. extra: 1320/1250,
  35192. bottom: 42/1362
  35193. }
  35194. },
  35195. frontDressed: {
  35196. height: math.unit(5, "feet"),
  35197. weight: math.unit(225, "lb"),
  35198. name: "Front (Dressed)",
  35199. image: {
  35200. source: "./media/characters/cindy/front-dressed.svg",
  35201. extra: 1320/1250,
  35202. bottom: 42/1362
  35203. }
  35204. },
  35205. back: {
  35206. height: math.unit(5, "feet"),
  35207. weight: math.unit(225, "lb"),
  35208. name: "Back",
  35209. image: {
  35210. source: "./media/characters/cindy/back.svg",
  35211. extra: 1384/1346,
  35212. bottom: 14/1398
  35213. }
  35214. },
  35215. },
  35216. [
  35217. {
  35218. name: "Normal",
  35219. height: math.unit(5, "feet"),
  35220. default: true
  35221. },
  35222. ]
  35223. ))
  35224. characterMakers.push(() => makeCharacter(
  35225. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35226. {
  35227. front: {
  35228. height: math.unit(6 + 9/12, "feet"),
  35229. weight: math.unit(440, "lb"),
  35230. name: "Front",
  35231. image: {
  35232. source: "./media/characters/wilbur-owen/front.svg",
  35233. extra: 1575/1448,
  35234. bottom: 72/1647
  35235. }
  35236. },
  35237. back: {
  35238. height: math.unit(6 + 9/12, "feet"),
  35239. weight: math.unit(440, "lb"),
  35240. name: "Back",
  35241. image: {
  35242. source: "./media/characters/wilbur-owen/back.svg",
  35243. extra: 1578/1445,
  35244. bottom: 36/1614
  35245. }
  35246. },
  35247. },
  35248. [
  35249. {
  35250. name: "Normal",
  35251. height: math.unit(6 + 9/12, "feet"),
  35252. default: true
  35253. },
  35254. ]
  35255. ))
  35256. characterMakers.push(() => makeCharacter(
  35257. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35258. {
  35259. front: {
  35260. height: math.unit(6 + 5/12, "feet"),
  35261. weight: math.unit(650, "lb"),
  35262. name: "Front",
  35263. image: {
  35264. source: "./media/characters/keegan/front.svg",
  35265. extra: 2387/2198,
  35266. bottom: 33/2420
  35267. }
  35268. },
  35269. side: {
  35270. height: math.unit(6 + 5/12, "feet"),
  35271. weight: math.unit(650, "lb"),
  35272. name: "Side",
  35273. image: {
  35274. source: "./media/characters/keegan/side.svg",
  35275. extra: 2390/2202,
  35276. bottom: 47/2437
  35277. }
  35278. },
  35279. back: {
  35280. height: math.unit(6 + 5/12, "feet"),
  35281. weight: math.unit(650, "lb"),
  35282. name: "Back",
  35283. image: {
  35284. source: "./media/characters/keegan/back.svg",
  35285. extra: 2418/2268,
  35286. bottom: 15/2433
  35287. }
  35288. },
  35289. frontSfw: {
  35290. height: math.unit(6 + 5/12, "feet"),
  35291. weight: math.unit(650, "lb"),
  35292. name: "Front (SFW)",
  35293. image: {
  35294. source: "./media/characters/keegan/front-sfw.svg",
  35295. extra: 2387/2198,
  35296. bottom: 33/2420
  35297. }
  35298. },
  35299. beans: {
  35300. height: math.unit(1.85, "feet"),
  35301. name: "Beans",
  35302. image: {
  35303. source: "./media/characters/keegan/beans.svg"
  35304. }
  35305. },
  35306. },
  35307. [
  35308. {
  35309. name: "Normal",
  35310. height: math.unit(6 + 5/12, "feet"),
  35311. default: true
  35312. },
  35313. ]
  35314. ))
  35315. characterMakers.push(() => makeCharacter(
  35316. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35317. {
  35318. front: {
  35319. height: math.unit(9, "feet"),
  35320. name: "Front",
  35321. image: {
  35322. source: "./media/characters/colton/front.svg",
  35323. extra: 1589/1326,
  35324. bottom: 139/1728
  35325. }
  35326. },
  35327. },
  35328. [
  35329. {
  35330. name: "Normal",
  35331. height: math.unit(9, "feet"),
  35332. default: true
  35333. },
  35334. ]
  35335. ))
  35336. characterMakers.push(() => makeCharacter(
  35337. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35338. {
  35339. front: {
  35340. height: math.unit(2 + 9/12, "feet"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/bora/front.svg",
  35344. extra: 1265/1250,
  35345. bottom: 24/1289
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Normal",
  35352. height: math.unit(2 + 9/12, "feet"),
  35353. default: true
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35359. {
  35360. front: {
  35361. height: math.unit(8, "feet"),
  35362. name: "Front",
  35363. image: {
  35364. source: "./media/characters/myu-myu/front.svg",
  35365. extra: 1949/1857,
  35366. bottom: 90/2039
  35367. }
  35368. },
  35369. },
  35370. [
  35371. {
  35372. name: "Normal",
  35373. height: math.unit(8, "feet"),
  35374. default: true
  35375. },
  35376. {
  35377. name: "Big",
  35378. height: math.unit(15, "feet")
  35379. },
  35380. {
  35381. name: "BIG",
  35382. height: math.unit(25, "feet")
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35388. {
  35389. side: {
  35390. height: math.unit(7 + 5/12, "feet"),
  35391. weight: math.unit(2800, "lb"),
  35392. name: "Side",
  35393. image: {
  35394. source: "./media/characters/haloren/side.svg",
  35395. extra: 1793/409,
  35396. bottom: 59/1852
  35397. }
  35398. },
  35399. frontPaw: {
  35400. height: math.unit(2.36, "feet"),
  35401. name: "Front paw",
  35402. image: {
  35403. source: "./media/characters/haloren/front-paw.svg"
  35404. }
  35405. },
  35406. hindPaw: {
  35407. height: math.unit(3.18, "feet"),
  35408. name: "Hind paw",
  35409. image: {
  35410. source: "./media/characters/haloren/hind-paw.svg"
  35411. }
  35412. },
  35413. maw: {
  35414. height: math.unit(5.05, "feet"),
  35415. name: "Maw",
  35416. image: {
  35417. source: "./media/characters/haloren/maw.svg"
  35418. }
  35419. },
  35420. dick: {
  35421. height: math.unit(2.90, "feet"),
  35422. name: "Dick",
  35423. image: {
  35424. source: "./media/characters/haloren/dick.svg"
  35425. }
  35426. },
  35427. },
  35428. [
  35429. {
  35430. name: "Normal",
  35431. height: math.unit(7 + 5/12, "feet"),
  35432. default: true
  35433. },
  35434. {
  35435. name: "Enhanced",
  35436. height: math.unit(14 + 3/12, "feet")
  35437. },
  35438. ]
  35439. ))
  35440. characterMakers.push(() => makeCharacter(
  35441. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35442. {
  35443. front: {
  35444. height: math.unit(171, "cm"),
  35445. name: "Front",
  35446. image: {
  35447. source: "./media/characters/kimmy/front.svg",
  35448. extra: 1491/1435,
  35449. bottom: 53/1544
  35450. }
  35451. },
  35452. },
  35453. [
  35454. {
  35455. name: "Small",
  35456. height: math.unit(9, "cm")
  35457. },
  35458. {
  35459. name: "Normal",
  35460. height: math.unit(171, "cm"),
  35461. default: true
  35462. },
  35463. ]
  35464. ))
  35465. characterMakers.push(() => makeCharacter(
  35466. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35467. {
  35468. front: {
  35469. height: math.unit(8, "feet"),
  35470. weight: math.unit(300, "lb"),
  35471. name: "Front",
  35472. image: {
  35473. source: "./media/characters/galeboomer/front.svg",
  35474. extra: 4651/4415,
  35475. bottom: 162/4813
  35476. }
  35477. },
  35478. back: {
  35479. height: math.unit(8, "feet"),
  35480. weight: math.unit(300, "lb"),
  35481. name: "Back",
  35482. image: {
  35483. source: "./media/characters/galeboomer/back.svg",
  35484. extra: 4544/4314,
  35485. bottom: 16/4560
  35486. }
  35487. },
  35488. frontAlt: {
  35489. height: math.unit(8, "feet"),
  35490. weight: math.unit(300, "lb"),
  35491. name: "Front (Alt)",
  35492. image: {
  35493. source: "./media/characters/galeboomer/front-alt.svg",
  35494. extra: 4458/4228,
  35495. bottom: 68/4526
  35496. }
  35497. },
  35498. maw: {
  35499. height: math.unit(1.2, "feet"),
  35500. name: "Maw",
  35501. image: {
  35502. source: "./media/characters/galeboomer/maw.svg"
  35503. }
  35504. },
  35505. },
  35506. [
  35507. {
  35508. name: "Normal",
  35509. height: math.unit(8, "feet"),
  35510. default: true
  35511. },
  35512. ]
  35513. ))
  35514. characterMakers.push(() => makeCharacter(
  35515. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35516. {
  35517. front: {
  35518. height: math.unit(5 + 9/12, "feet"),
  35519. weight: math.unit(120, "lb"),
  35520. name: "Front",
  35521. image: {
  35522. source: "./media/characters/chyr/front.svg",
  35523. extra: 1323/1254,
  35524. bottom: 63/1386
  35525. }
  35526. },
  35527. back: {
  35528. height: math.unit(5 + 9/12, "feet"),
  35529. weight: math.unit(120, "lb"),
  35530. name: "Back",
  35531. image: {
  35532. source: "./media/characters/chyr/back.svg",
  35533. extra: 1323/1252,
  35534. bottom: 48/1371
  35535. }
  35536. },
  35537. },
  35538. [
  35539. {
  35540. name: "Normal",
  35541. height: math.unit(5 + 9/12, "feet"),
  35542. default: true
  35543. },
  35544. ]
  35545. ))
  35546. characterMakers.push(() => makeCharacter(
  35547. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35548. {
  35549. front: {
  35550. height: math.unit(7, "feet"),
  35551. weight: math.unit(310, "lb"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/solarus/front.svg",
  35555. extra: 2415/2021,
  35556. bottom: 103/2518
  35557. }
  35558. },
  35559. back: {
  35560. height: math.unit(7, "feet"),
  35561. weight: math.unit(310, "lb"),
  35562. name: "Back",
  35563. image: {
  35564. source: "./media/characters/solarus/back.svg",
  35565. extra: 2463/2089,
  35566. bottom: 79/2542
  35567. }
  35568. },
  35569. },
  35570. [
  35571. {
  35572. name: "Normal",
  35573. height: math.unit(7, "feet"),
  35574. default: true
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35580. {
  35581. front: {
  35582. height: math.unit(16, "feet"),
  35583. name: "Front",
  35584. image: {
  35585. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35586. extra: 1844/1780,
  35587. bottom: 58/1902
  35588. }
  35589. },
  35590. },
  35591. [
  35592. {
  35593. name: "Normal",
  35594. height: math.unit(16, "feet"),
  35595. default: true
  35596. },
  35597. ]
  35598. ))
  35599. characterMakers.push(() => makeCharacter(
  35600. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35601. {
  35602. front: {
  35603. height: math.unit(11 + 6/12, "feet"),
  35604. weight: math.unit(1366, "lb"),
  35605. name: "Front",
  35606. image: {
  35607. source: "./media/characters/lexor/front.svg",
  35608. extra: 1560/1481,
  35609. bottom: 211/1771
  35610. }
  35611. },
  35612. back: {
  35613. height: math.unit(11 + 6/12, "feet"),
  35614. weight: math.unit(1366, "lb"),
  35615. name: "Back",
  35616. image: {
  35617. source: "./media/characters/lexor/back.svg",
  35618. extra: 1614/1533,
  35619. bottom: 76/1690
  35620. }
  35621. },
  35622. maw: {
  35623. height: math.unit(3, "feet"),
  35624. name: "Maw",
  35625. image: {
  35626. source: "./media/characters/lexor/maw.svg"
  35627. }
  35628. },
  35629. dick: {
  35630. height: math.unit(2.59, "feet"),
  35631. name: "Dick",
  35632. image: {
  35633. source: "./media/characters/lexor/dick.svg"
  35634. }
  35635. },
  35636. },
  35637. [
  35638. {
  35639. name: "Normal",
  35640. height: math.unit(11 + 6/12, "feet"),
  35641. default: true
  35642. },
  35643. ]
  35644. ))
  35645. characterMakers.push(() => makeCharacter(
  35646. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35647. {
  35648. front: {
  35649. height: math.unit(5 + 8/12, "feet"),
  35650. name: "Front",
  35651. image: {
  35652. source: "./media/characters/magnum/front.svg",
  35653. extra: 942/855,
  35654. bottom: 26/968
  35655. }
  35656. },
  35657. },
  35658. [
  35659. {
  35660. name: "Normal",
  35661. height: math.unit(5 + 8/12, "feet"),
  35662. default: true
  35663. },
  35664. ]
  35665. ))
  35666. characterMakers.push(() => makeCharacter(
  35667. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35668. {
  35669. front: {
  35670. height: math.unit(18 + 4/12, "feet"),
  35671. weight: math.unit(1500, "kg"),
  35672. name: "Front",
  35673. image: {
  35674. source: "./media/characters/solas-sharpsman/front.svg",
  35675. extra: 1698/1589,
  35676. bottom: 0/1698
  35677. }
  35678. },
  35679. },
  35680. [
  35681. {
  35682. name: "Normal",
  35683. height: math.unit(18 + 4/12, "feet"),
  35684. default: true
  35685. },
  35686. ]
  35687. ))
  35688. characterMakers.push(() => makeCharacter(
  35689. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35690. {
  35691. front: {
  35692. height: math.unit(5 + 5/12, "feet"),
  35693. weight: math.unit(180, "lb"),
  35694. name: "Front",
  35695. image: {
  35696. source: "./media/characters/october/front.svg",
  35697. extra: 1800/1650,
  35698. bottom: 0/1800
  35699. }
  35700. },
  35701. frontNsfw: {
  35702. height: math.unit(5 + 5/12, "feet"),
  35703. weight: math.unit(180, "lb"),
  35704. name: "Front (NSFW)",
  35705. image: {
  35706. source: "./media/characters/october/front-nsfw.svg",
  35707. extra: 1392/1307,
  35708. bottom: 42/1434
  35709. }
  35710. },
  35711. },
  35712. [
  35713. {
  35714. name: "Normal",
  35715. height: math.unit(5 + 5/12, "feet"),
  35716. default: true
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35722. {
  35723. front: {
  35724. height: math.unit(8 + 6/12, "feet"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/essynkardi/front.svg",
  35728. extra: 1914/1846,
  35729. bottom: 22/1936
  35730. }
  35731. },
  35732. },
  35733. [
  35734. {
  35735. name: "Normal",
  35736. height: math.unit(8 + 6/12, "feet"),
  35737. default: true
  35738. },
  35739. ]
  35740. ))
  35741. characterMakers.push(() => makeCharacter(
  35742. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35743. {
  35744. front: {
  35745. height: math.unit(6 + 6/12, "feet"),
  35746. weight: math.unit(7, "lb"),
  35747. name: "Front",
  35748. image: {
  35749. source: "./media/characters/icky/front.svg",
  35750. extra: 813/782,
  35751. bottom: 66/879
  35752. }
  35753. },
  35754. back: {
  35755. height: math.unit(6 + 6/12, "feet"),
  35756. weight: math.unit(7, "lb"),
  35757. name: "Back",
  35758. image: {
  35759. source: "./media/characters/icky/back.svg",
  35760. extra: 754/735,
  35761. bottom: 56/810
  35762. }
  35763. },
  35764. },
  35765. [
  35766. {
  35767. name: "Normal",
  35768. height: math.unit(6 + 6/12, "feet"),
  35769. default: true
  35770. },
  35771. ]
  35772. ))
  35773. characterMakers.push(() => makeCharacter(
  35774. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35775. {
  35776. front: {
  35777. height: math.unit(15, "feet"),
  35778. name: "Front",
  35779. image: {
  35780. source: "./media/characters/rojas/front.svg",
  35781. extra: 1462/1408,
  35782. bottom: 95/1557
  35783. }
  35784. },
  35785. back: {
  35786. height: math.unit(15, "feet"),
  35787. name: "Back",
  35788. image: {
  35789. source: "./media/characters/rojas/back.svg",
  35790. extra: 1023/954,
  35791. bottom: 28/1051
  35792. }
  35793. },
  35794. },
  35795. [
  35796. {
  35797. name: "Normal",
  35798. height: math.unit(15, "feet"),
  35799. default: true
  35800. },
  35801. ]
  35802. ))
  35803. characterMakers.push(() => makeCharacter(
  35804. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35805. {
  35806. frontHuman: {
  35807. height: math.unit(5 + 7/12, "feet"),
  35808. name: "Front (Human)",
  35809. image: {
  35810. source: "./media/characters/alek-dryagan/front-human.svg",
  35811. extra: 1687/1667,
  35812. bottom: 69/1756
  35813. }
  35814. },
  35815. backHuman: {
  35816. height: math.unit(5 + 7/12, "feet"),
  35817. name: "Back (Human)",
  35818. image: {
  35819. source: "./media/characters/alek-dryagan/back-human.svg",
  35820. extra: 1670/1649,
  35821. bottom: 65/1735
  35822. }
  35823. },
  35824. frontDemi: {
  35825. height: math.unit(65, "feet"),
  35826. name: "Front (Demi)",
  35827. image: {
  35828. source: "./media/characters/alek-dryagan/front-demi.svg",
  35829. extra: 1669/1642,
  35830. bottom: 49/1718
  35831. }
  35832. },
  35833. backDemi: {
  35834. height: math.unit(65, "feet"),
  35835. name: "Back (Demi)",
  35836. image: {
  35837. source: "./media/characters/alek-dryagan/back-demi.svg",
  35838. extra: 1658/1637,
  35839. bottom: 40/1698
  35840. }
  35841. },
  35842. mawHuman: {
  35843. height: math.unit(0.3, "feet"),
  35844. name: "Maw (Human)",
  35845. image: {
  35846. source: "./media/characters/alek-dryagan/maw-human.svg"
  35847. }
  35848. },
  35849. mawDemi: {
  35850. height: math.unit(3.8, "feet"),
  35851. name: "Maw (Demi)",
  35852. image: {
  35853. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35854. }
  35855. },
  35856. },
  35857. [
  35858. {
  35859. name: "Normal",
  35860. height: math.unit(5 + 7/12, "feet"),
  35861. default: true
  35862. },
  35863. ]
  35864. ))
  35865. characterMakers.push(() => makeCharacter(
  35866. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35867. {
  35868. frontHuman: {
  35869. height: math.unit(5 + 2/12, "feet"),
  35870. name: "Front (Human)",
  35871. image: {
  35872. source: "./media/characters/gen/front-human.svg",
  35873. extra: 1627/1538,
  35874. bottom: 71/1698
  35875. }
  35876. },
  35877. backHuman: {
  35878. height: math.unit(5 + 2/12, "feet"),
  35879. name: "Back (Human)",
  35880. image: {
  35881. source: "./media/characters/gen/back-human.svg",
  35882. extra: 1638/1548,
  35883. bottom: 69/1707
  35884. }
  35885. },
  35886. frontDemi: {
  35887. height: math.unit(5 + 2/12, "feet"),
  35888. name: "Front (Demi)",
  35889. image: {
  35890. source: "./media/characters/gen/front-demi.svg",
  35891. extra: 1627/1538,
  35892. bottom: 71/1698
  35893. }
  35894. },
  35895. backDemi: {
  35896. height: math.unit(5 + 2/12, "feet"),
  35897. name: "Back (Demi)",
  35898. image: {
  35899. source: "./media/characters/gen/back-demi.svg",
  35900. extra: 1638/1548,
  35901. bottom: 69/1707
  35902. }
  35903. },
  35904. },
  35905. [
  35906. {
  35907. name: "Normal",
  35908. height: math.unit(5 + 2/12, "feet"),
  35909. default: true
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35915. {
  35916. frontImp: {
  35917. height: math.unit(1 + 11/12, "feet"),
  35918. name: "Front (Imp)",
  35919. image: {
  35920. source: "./media/characters/max-kobold/front-imp.svg",
  35921. extra: 1238/1134,
  35922. bottom: 81/1319
  35923. }
  35924. },
  35925. backImp: {
  35926. height: math.unit(1 + 11/12, "feet"),
  35927. name: "Back (Imp)",
  35928. image: {
  35929. source: "./media/characters/max-kobold/back-imp.svg",
  35930. extra: 1334/1175,
  35931. bottom: 34/1368
  35932. }
  35933. },
  35934. frontDemi: {
  35935. height: math.unit(5 + 9/12, "feet"),
  35936. name: "Front (Demi)",
  35937. image: {
  35938. source: "./media/characters/max-kobold/front-demi.svg",
  35939. extra: 1715/1685,
  35940. bottom: 54/1769
  35941. }
  35942. },
  35943. backDemi: {
  35944. height: math.unit(5 + 9/12, "feet"),
  35945. name: "Back (Demi)",
  35946. image: {
  35947. source: "./media/characters/max-kobold/back-demi.svg",
  35948. extra: 1752/1729,
  35949. bottom: 41/1793
  35950. }
  35951. },
  35952. handImp: {
  35953. height: math.unit(0.45, "feet"),
  35954. name: "Hand (Imp)",
  35955. image: {
  35956. source: "./media/characters/max-kobold/hand.svg"
  35957. }
  35958. },
  35959. pawImp: {
  35960. height: math.unit(0.46, "feet"),
  35961. name: "Paw (Imp)",
  35962. image: {
  35963. source: "./media/characters/max-kobold/paw.svg"
  35964. }
  35965. },
  35966. handDemi: {
  35967. height: math.unit(0.80, "feet"),
  35968. name: "Hand (Demi)",
  35969. image: {
  35970. source: "./media/characters/max-kobold/hand.svg"
  35971. }
  35972. },
  35973. pawDemi: {
  35974. height: math.unit(1.1, "feet"),
  35975. name: "Paw (Demi)",
  35976. image: {
  35977. source: "./media/characters/max-kobold/paw.svg"
  35978. }
  35979. },
  35980. headImp: {
  35981. height: math.unit(1.33, "feet"),
  35982. name: "Head (Imp)",
  35983. image: {
  35984. source: "./media/characters/max-kobold/head-imp.svg"
  35985. }
  35986. },
  35987. mawImp: {
  35988. height: math.unit(0.75, "feet"),
  35989. name: "Maw (Imp)",
  35990. image: {
  35991. source: "./media/characters/max-kobold/maw-imp.svg"
  35992. }
  35993. },
  35994. mawDemi: {
  35995. height: math.unit(0.42, "feet"),
  35996. name: "Maw (Demi)",
  35997. image: {
  35998. source: "./media/characters/max-kobold/maw-demi.svg"
  35999. }
  36000. },
  36001. },
  36002. [
  36003. {
  36004. name: "Normal",
  36005. height: math.unit(1 + 11/12, "feet"),
  36006. default: true
  36007. },
  36008. ]
  36009. ))
  36010. characterMakers.push(() => makeCharacter(
  36011. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36012. {
  36013. front: {
  36014. height: math.unit(7 + 5/12, "feet"),
  36015. name: "Front",
  36016. image: {
  36017. source: "./media/characters/carbon/front.svg",
  36018. extra: 1754/1689,
  36019. bottom: 65/1819
  36020. }
  36021. },
  36022. back: {
  36023. height: math.unit(7 + 5/12, "feet"),
  36024. name: "Back",
  36025. image: {
  36026. source: "./media/characters/carbon/back.svg",
  36027. extra: 1762/1695,
  36028. bottom: 24/1786
  36029. }
  36030. },
  36031. frontGigantamax: {
  36032. height: math.unit(150, "feet"),
  36033. name: "Front (Gigantamax)",
  36034. image: {
  36035. source: "./media/characters/carbon/front-gigantamax.svg",
  36036. extra: 1826/1669,
  36037. bottom: 59/1885
  36038. }
  36039. },
  36040. backGigantamax: {
  36041. height: math.unit(150, "feet"),
  36042. name: "Back (Gigantamax)",
  36043. image: {
  36044. source: "./media/characters/carbon/back-gigantamax.svg",
  36045. extra: 1796/1653,
  36046. bottom: 53/1849
  36047. }
  36048. },
  36049. maw: {
  36050. height: math.unit(0.48, "feet"),
  36051. name: "Maw",
  36052. image: {
  36053. source: "./media/characters/carbon/maw.svg"
  36054. }
  36055. },
  36056. mawGigantamax: {
  36057. height: math.unit(7.5, "feet"),
  36058. name: "Maw (Gigantamax)",
  36059. image: {
  36060. source: "./media/characters/carbon/maw-gigantamax.svg"
  36061. }
  36062. },
  36063. },
  36064. [
  36065. {
  36066. name: "Normal",
  36067. height: math.unit(7 + 5/12, "feet"),
  36068. default: true
  36069. },
  36070. ]
  36071. ))
  36072. characterMakers.push(() => makeCharacter(
  36073. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36074. {
  36075. front: {
  36076. height: math.unit(6, "feet"),
  36077. name: "Front",
  36078. image: {
  36079. source: "./media/characters/maverick/front.svg",
  36080. extra: 1672/1661,
  36081. bottom: 85/1757
  36082. }
  36083. },
  36084. back: {
  36085. height: math.unit(6, "feet"),
  36086. name: "Back",
  36087. image: {
  36088. source: "./media/characters/maverick/back.svg",
  36089. extra: 1642/1631,
  36090. bottom: 38/1680
  36091. }
  36092. },
  36093. },
  36094. [
  36095. {
  36096. name: "Normal",
  36097. height: math.unit(6, "feet"),
  36098. default: true
  36099. },
  36100. ]
  36101. ))
  36102. characterMakers.push(() => makeCharacter(
  36103. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36104. {
  36105. front: {
  36106. height: math.unit(15, "feet"),
  36107. weight: math.unit(615, "lb"),
  36108. name: "Front",
  36109. image: {
  36110. source: "./media/characters/grockle/front.svg",
  36111. extra: 1535/1427,
  36112. bottom: 56/1591
  36113. }
  36114. },
  36115. },
  36116. [
  36117. {
  36118. name: "Normal",
  36119. height: math.unit(15, "feet"),
  36120. default: true
  36121. },
  36122. {
  36123. name: "Large",
  36124. height: math.unit(150, "feet")
  36125. },
  36126. {
  36127. name: "Macro",
  36128. height: math.unit(1876, "feet")
  36129. },
  36130. {
  36131. name: "Mega Macro",
  36132. height: math.unit(121940, "feet")
  36133. },
  36134. {
  36135. name: "Giga Macro",
  36136. height: math.unit(750, "km")
  36137. },
  36138. {
  36139. name: "Tera Macro",
  36140. height: math.unit(750000, "km")
  36141. },
  36142. {
  36143. name: "Galactic",
  36144. height: math.unit(1.4e5, "km")
  36145. },
  36146. {
  36147. name: "Godlike",
  36148. height: math.unit(9.8e280, "galaxies")
  36149. },
  36150. ]
  36151. ))
  36152. characterMakers.push(() => makeCharacter(
  36153. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36154. {
  36155. front: {
  36156. height: math.unit(11, "meters"),
  36157. weight: math.unit(20, "tonnes"),
  36158. name: "Front",
  36159. image: {
  36160. source: "./media/characters/alistair/front.svg",
  36161. extra: 1265/1009,
  36162. bottom: 93/1358
  36163. }
  36164. },
  36165. },
  36166. [
  36167. {
  36168. name: "Normal",
  36169. height: math.unit(11, "meters"),
  36170. default: true
  36171. },
  36172. ]
  36173. ))
  36174. characterMakers.push(() => makeCharacter(
  36175. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36176. {
  36177. front: {
  36178. height: math.unit(5 + 8/12, "feet"),
  36179. name: "Front",
  36180. image: {
  36181. source: "./media/characters/haruka/front.svg",
  36182. extra: 2012/1952,
  36183. bottom: 0/2012
  36184. }
  36185. },
  36186. },
  36187. [
  36188. {
  36189. name: "Normal",
  36190. height: math.unit(5 + 8/12, "feet"),
  36191. default: true
  36192. },
  36193. ]
  36194. ))
  36195. characterMakers.push(() => makeCharacter(
  36196. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36197. {
  36198. back: {
  36199. height: math.unit(9, "feet"),
  36200. name: "Back",
  36201. image: {
  36202. source: "./media/characters/vivian-sylveon/back.svg",
  36203. extra: 1853/1714,
  36204. bottom: 0/1853
  36205. }
  36206. },
  36207. },
  36208. [
  36209. {
  36210. name: "Normal",
  36211. height: math.unit(9, "feet"),
  36212. default: true
  36213. },
  36214. {
  36215. name: "Macro",
  36216. height: math.unit(500, "feet")
  36217. },
  36218. {
  36219. name: "Megamacro",
  36220. height: math.unit(600, "miles")
  36221. },
  36222. {
  36223. name: "Gigamacro",
  36224. height: math.unit(30000, "miles")
  36225. },
  36226. ]
  36227. ))
  36228. characterMakers.push(() => makeCharacter(
  36229. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36230. {
  36231. anthro: {
  36232. height: math.unit(5 + 10/12, "feet"),
  36233. weight: math.unit(100, "lb"),
  36234. name: "Anthro",
  36235. image: {
  36236. source: "./media/characters/daiki/anthro.svg",
  36237. extra: 1115/1027,
  36238. bottom: 69/1184
  36239. }
  36240. },
  36241. feral: {
  36242. height: math.unit(200, "feet"),
  36243. name: "Feral",
  36244. image: {
  36245. source: "./media/characters/daiki/feral.svg",
  36246. extra: 1256/313,
  36247. bottom: 39/1295
  36248. }
  36249. },
  36250. feralHead: {
  36251. height: math.unit(171, "feet"),
  36252. name: "Feral Head",
  36253. image: {
  36254. source: "./media/characters/daiki/feral-head.svg"
  36255. }
  36256. },
  36257. },
  36258. [
  36259. {
  36260. name: "Normal",
  36261. height: math.unit(5 + 10/12, "feet"),
  36262. default: true
  36263. },
  36264. ]
  36265. ))
  36266. characterMakers.push(() => makeCharacter(
  36267. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36268. {
  36269. fullyEquippedFront: {
  36270. height: math.unit(3 + 1/12, "feet"),
  36271. weight: math.unit(24, "lb"),
  36272. name: "Fully Equipped (Front)",
  36273. image: {
  36274. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36275. extra: 687/605,
  36276. bottom: 18/705
  36277. }
  36278. },
  36279. fullyEquippedBack: {
  36280. height: math.unit(3 + 1/12, "feet"),
  36281. weight: math.unit(24, "lb"),
  36282. name: "Fully Equipped (Back)",
  36283. image: {
  36284. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36285. extra: 689/590,
  36286. bottom: 18/707
  36287. }
  36288. },
  36289. dailyWear: {
  36290. height: math.unit(3 + 1/12, "feet"),
  36291. weight: math.unit(24, "lb"),
  36292. name: "Daily Wear",
  36293. image: {
  36294. source: "./media/characters/tea-spot/daily-wear.svg",
  36295. extra: 701/620,
  36296. bottom: 21/722
  36297. }
  36298. },
  36299. maidWork: {
  36300. height: math.unit(3 + 1/12, "feet"),
  36301. weight: math.unit(24, "lb"),
  36302. name: "Maid Work",
  36303. image: {
  36304. source: "./media/characters/tea-spot/maid-work.svg",
  36305. extra: 693/609,
  36306. bottom: 15/708
  36307. }
  36308. },
  36309. },
  36310. [
  36311. {
  36312. name: "Normal",
  36313. height: math.unit(3 + 1/12, "feet"),
  36314. default: true
  36315. },
  36316. ]
  36317. ))
  36318. characterMakers.push(() => makeCharacter(
  36319. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36320. {
  36321. front: {
  36322. height: math.unit(175, "cm"),
  36323. weight: math.unit(75, "kg"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/chee/front.svg",
  36327. extra: 1796/1740,
  36328. bottom: 40/1836
  36329. }
  36330. },
  36331. },
  36332. [
  36333. {
  36334. name: "Micro-Micro",
  36335. height: math.unit(1, "nm")
  36336. },
  36337. {
  36338. name: "Micro-erst",
  36339. height: math.unit(1, "micrometer")
  36340. },
  36341. {
  36342. name: "Micro-er",
  36343. height: math.unit(1, "cm")
  36344. },
  36345. {
  36346. name: "Normal",
  36347. height: math.unit(175, "cm"),
  36348. default: true
  36349. },
  36350. {
  36351. name: "Macro",
  36352. height: math.unit(100, "m")
  36353. },
  36354. {
  36355. name: "Macro-er",
  36356. height: math.unit(1, "km")
  36357. },
  36358. {
  36359. name: "Macro-erst",
  36360. height: math.unit(10, "km")
  36361. },
  36362. {
  36363. name: "Macro-Macro",
  36364. height: math.unit(100, "km")
  36365. },
  36366. ]
  36367. ))
  36368. characterMakers.push(() => makeCharacter(
  36369. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36370. {
  36371. front: {
  36372. height: math.unit(11 + 9/12, "feet"),
  36373. weight: math.unit(935, "lb"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/kingsley/front.svg",
  36377. extra: 1803/1674,
  36378. bottom: 127/1930
  36379. }
  36380. },
  36381. frontNude: {
  36382. height: math.unit(11 + 9/12, "feet"),
  36383. weight: math.unit(935, "lb"),
  36384. name: "Front (Nude)",
  36385. image: {
  36386. source: "./media/characters/kingsley/front-nude.svg",
  36387. extra: 1803/1674,
  36388. bottom: 127/1930
  36389. }
  36390. },
  36391. },
  36392. [
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(11 + 9/12, "feet"),
  36396. default: true
  36397. },
  36398. ]
  36399. ))
  36400. characterMakers.push(() => makeCharacter(
  36401. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36402. {
  36403. side: {
  36404. height: math.unit(9, "feet"),
  36405. name: "Side",
  36406. image: {
  36407. source: "./media/characters/rymel/side.svg",
  36408. extra: 792/469,
  36409. bottom: 121/913
  36410. }
  36411. },
  36412. maw: {
  36413. height: math.unit(2.4, "meters"),
  36414. name: "Maw",
  36415. image: {
  36416. source: "./media/characters/rymel/maw.svg"
  36417. }
  36418. },
  36419. },
  36420. [
  36421. {
  36422. name: "House Drake",
  36423. height: math.unit(2, "feet")
  36424. },
  36425. {
  36426. name: "Reduced",
  36427. height: math.unit(4.5, "feet")
  36428. },
  36429. {
  36430. name: "Normal",
  36431. height: math.unit(9, "feet"),
  36432. default: true
  36433. },
  36434. ]
  36435. ))
  36436. characterMakers.push(() => makeCharacter(
  36437. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36438. {
  36439. front: {
  36440. height: math.unit(1.74, "meters"),
  36441. weight: math.unit(55, "kg"),
  36442. name: "Front",
  36443. image: {
  36444. source: "./media/characters/rubus/front.svg",
  36445. extra: 1894/1742,
  36446. bottom: 44/1938
  36447. }
  36448. },
  36449. },
  36450. [
  36451. {
  36452. name: "Normal",
  36453. height: math.unit(1.74, "meters"),
  36454. default: true
  36455. },
  36456. ]
  36457. ))
  36458. characterMakers.push(() => makeCharacter(
  36459. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36460. {
  36461. front: {
  36462. height: math.unit(5 + 2/12, "feet"),
  36463. weight: math.unit(112, "lb"),
  36464. name: "Front",
  36465. image: {
  36466. source: "./media/characters/cassie-kingston/front.svg",
  36467. extra: 1438/1390,
  36468. bottom: 47/1485
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Normal",
  36475. height: math.unit(5 + 2/12, "feet"),
  36476. default: true
  36477. },
  36478. {
  36479. name: "Macro",
  36480. height: math.unit(128, "feet")
  36481. },
  36482. {
  36483. name: "Megamacro",
  36484. height: math.unit(2.56, "miles")
  36485. },
  36486. ]
  36487. ))
  36488. characterMakers.push(() => makeCharacter(
  36489. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36490. {
  36491. front: {
  36492. height: math.unit(7, "feet"),
  36493. name: "Front",
  36494. image: {
  36495. source: "./media/characters/fox/front.svg",
  36496. extra: 1798/1703,
  36497. bottom: 55/1853
  36498. }
  36499. },
  36500. back: {
  36501. height: math.unit(7, "feet"),
  36502. name: "Back",
  36503. image: {
  36504. source: "./media/characters/fox/back.svg",
  36505. extra: 1748/1649,
  36506. bottom: 32/1780
  36507. }
  36508. },
  36509. head: {
  36510. height: math.unit(1.95, "feet"),
  36511. name: "Head",
  36512. image: {
  36513. source: "./media/characters/fox/head.svg"
  36514. }
  36515. },
  36516. dick: {
  36517. height: math.unit(1.33, "feet"),
  36518. name: "Dick",
  36519. image: {
  36520. source: "./media/characters/fox/dick.svg"
  36521. }
  36522. },
  36523. foot: {
  36524. height: math.unit(1, "feet"),
  36525. name: "Foot",
  36526. image: {
  36527. source: "./media/characters/fox/foot.svg"
  36528. }
  36529. },
  36530. paw: {
  36531. height: math.unit(0.92, "feet"),
  36532. name: "Paw",
  36533. image: {
  36534. source: "./media/characters/fox/paw.svg"
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Small",
  36541. height: math.unit(3, "inches")
  36542. },
  36543. {
  36544. name: "\"Realistic\"",
  36545. height: math.unit(7, "feet")
  36546. },
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(150, "feet"),
  36550. default: true
  36551. },
  36552. {
  36553. name: "BIG",
  36554. height: math.unit(1200, "feet")
  36555. },
  36556. {
  36557. name: "👀",
  36558. height: math.unit(5, "miles")
  36559. },
  36560. {
  36561. name: "👀👀👀",
  36562. height: math.unit(64, "miles")
  36563. },
  36564. ]
  36565. ))
  36566. characterMakers.push(() => makeCharacter(
  36567. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36568. {
  36569. front: {
  36570. height: math.unit(625, "feet"),
  36571. name: "Front",
  36572. image: {
  36573. source: "./media/characters/asonja-rossa/front.svg",
  36574. extra: 1833/1686,
  36575. bottom: 24/1857
  36576. }
  36577. },
  36578. back: {
  36579. height: math.unit(625, "feet"),
  36580. name: "Back",
  36581. image: {
  36582. source: "./media/characters/asonja-rossa/back.svg",
  36583. extra: 1852/1753,
  36584. bottom: 26/1878
  36585. }
  36586. },
  36587. },
  36588. [
  36589. {
  36590. name: "Macro",
  36591. height: math.unit(625, "feet"),
  36592. default: true
  36593. },
  36594. ]
  36595. ))
  36596. characterMakers.push(() => makeCharacter(
  36597. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36598. {
  36599. side: {
  36600. height: math.unit(6, "feet"),
  36601. weight: math.unit(150, "lb"),
  36602. name: "Side",
  36603. image: {
  36604. source: "./media/characters/rezukii/side.svg",
  36605. extra: 979/542,
  36606. bottom: 87/1066
  36607. }
  36608. },
  36609. },
  36610. [
  36611. {
  36612. name: "Tiny",
  36613. height: math.unit(2, "feet")
  36614. },
  36615. {
  36616. name: "Smol",
  36617. height: math.unit(4, "feet")
  36618. },
  36619. {
  36620. name: "Normal",
  36621. height: math.unit(8, "feet"),
  36622. default: true
  36623. },
  36624. {
  36625. name: "Big",
  36626. height: math.unit(12, "feet")
  36627. },
  36628. {
  36629. name: "Macro",
  36630. height: math.unit(30, "feet")
  36631. },
  36632. ]
  36633. ))
  36634. characterMakers.push(() => makeCharacter(
  36635. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36636. {
  36637. front: {
  36638. height: math.unit(14, "feet"),
  36639. weight: math.unit(9.5, "tonnes"),
  36640. name: "Front",
  36641. image: {
  36642. source: "./media/characters/dawnheart/front.svg",
  36643. extra: 2792/2675,
  36644. bottom: 64/2856
  36645. }
  36646. },
  36647. },
  36648. [
  36649. {
  36650. name: "Normal",
  36651. height: math.unit(14, "feet"),
  36652. default: true
  36653. },
  36654. ]
  36655. ))
  36656. characterMakers.push(() => makeCharacter(
  36657. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36658. {
  36659. front: {
  36660. height: math.unit(1.7, "m"),
  36661. name: "Front",
  36662. image: {
  36663. source: "./media/characters/gladi/front.svg",
  36664. extra: 1460/1362,
  36665. bottom: 19/1479
  36666. }
  36667. },
  36668. back: {
  36669. height: math.unit(1.7, "m"),
  36670. name: "Back",
  36671. image: {
  36672. source: "./media/characters/gladi/back.svg",
  36673. extra: 1459/1357,
  36674. bottom: 12/1471
  36675. }
  36676. },
  36677. feral: {
  36678. height: math.unit(2.05, "m"),
  36679. name: "Feral",
  36680. image: {
  36681. source: "./media/characters/gladi/feral.svg",
  36682. extra: 821/557,
  36683. bottom: 91/912
  36684. }
  36685. },
  36686. },
  36687. [
  36688. {
  36689. name: "Shortest",
  36690. height: math.unit(70, "cm")
  36691. },
  36692. {
  36693. name: "Normal",
  36694. height: math.unit(1.7, "m")
  36695. },
  36696. {
  36697. name: "Macro",
  36698. height: math.unit(10, "m"),
  36699. default: true
  36700. },
  36701. {
  36702. name: "Tallest",
  36703. height: math.unit(200, "m")
  36704. },
  36705. ]
  36706. ))
  36707. characterMakers.push(() => makeCharacter(
  36708. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36709. {
  36710. front: {
  36711. height: math.unit(5 + 7/12, "feet"),
  36712. weight: math.unit(92, "kg"),
  36713. name: "Front",
  36714. image: {
  36715. source: "./media/characters/erdno/front.svg",
  36716. extra: 1954/1889,
  36717. bottom: 22/1976
  36718. }
  36719. },
  36720. },
  36721. [
  36722. {
  36723. name: "Normal",
  36724. height: math.unit(5 + 7/12, "feet"),
  36725. default: true
  36726. },
  36727. ]
  36728. ))
  36729. characterMakers.push(() => makeCharacter(
  36730. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36731. {
  36732. front: {
  36733. height: math.unit(5 + 10/12, "feet"),
  36734. weight: math.unit(150, "lb"),
  36735. name: "Front",
  36736. image: {
  36737. source: "./media/characters/jamie/front.svg",
  36738. extra: 1908/1768,
  36739. bottom: 19/1927
  36740. }
  36741. },
  36742. },
  36743. [
  36744. {
  36745. name: "Minimum",
  36746. height: math.unit(2, "cm")
  36747. },
  36748. {
  36749. name: "Micro",
  36750. height: math.unit(3, "inches")
  36751. },
  36752. {
  36753. name: "Normal",
  36754. height: math.unit(5 + 10/12, "feet"),
  36755. default: true
  36756. },
  36757. {
  36758. name: "Macro",
  36759. height: math.unit(150, "feet")
  36760. },
  36761. {
  36762. name: "Megamacro",
  36763. height: math.unit(10000, "m")
  36764. },
  36765. ]
  36766. ))
  36767. characterMakers.push(() => makeCharacter(
  36768. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36769. {
  36770. front: {
  36771. height: math.unit(2, "meters"),
  36772. weight: math.unit(100, "kg"),
  36773. name: "Front",
  36774. image: {
  36775. source: "./media/characters/shiron/front.svg",
  36776. extra: 2103/1985,
  36777. bottom: 98/2201
  36778. }
  36779. },
  36780. back: {
  36781. height: math.unit(2, "meters"),
  36782. weight: math.unit(100, "kg"),
  36783. name: "Back",
  36784. image: {
  36785. source: "./media/characters/shiron/back.svg",
  36786. extra: 2110/2015,
  36787. bottom: 89/2199
  36788. }
  36789. },
  36790. hand: {
  36791. height: math.unit(0.96, "feet"),
  36792. name: "Hand",
  36793. image: {
  36794. source: "./media/characters/shiron/hand.svg"
  36795. }
  36796. },
  36797. foot: {
  36798. height: math.unit(1.464, "feet"),
  36799. name: "Foot",
  36800. image: {
  36801. source: "./media/characters/shiron/foot.svg"
  36802. }
  36803. },
  36804. },
  36805. [
  36806. {
  36807. name: "Normal",
  36808. height: math.unit(2, "meters")
  36809. },
  36810. {
  36811. name: "Macro",
  36812. height: math.unit(500, "meters"),
  36813. default: true
  36814. },
  36815. {
  36816. name: "Megamacro",
  36817. height: math.unit(20, "km")
  36818. },
  36819. ]
  36820. ))
  36821. characterMakers.push(() => makeCharacter(
  36822. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36823. {
  36824. front: {
  36825. height: math.unit(6, "feet"),
  36826. name: "Front",
  36827. image: {
  36828. source: "./media/characters/sam/front.svg",
  36829. extra: 849/826,
  36830. bottom: 19/868
  36831. }
  36832. },
  36833. },
  36834. [
  36835. {
  36836. name: "Normal",
  36837. height: math.unit(6, "feet"),
  36838. default: true
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36844. {
  36845. front: {
  36846. height: math.unit(8 + 4/12, "feet"),
  36847. weight: math.unit(122, "kg"),
  36848. name: "Front",
  36849. image: {
  36850. source: "./media/characters/namori-kurogawa/front.svg",
  36851. extra: 1894/1576,
  36852. bottom: 34/1928
  36853. }
  36854. },
  36855. },
  36856. [
  36857. {
  36858. name: "Normal",
  36859. height: math.unit(8 + 4/12, "feet"),
  36860. default: true
  36861. },
  36862. ]
  36863. ))
  36864. characterMakers.push(() => makeCharacter(
  36865. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36866. {
  36867. front: {
  36868. height: math.unit(9, "feet"),
  36869. weight: math.unit(621, "lb"),
  36870. name: "Front",
  36871. image: {
  36872. source: "./media/characters/unmru/front.svg",
  36873. extra: 1853/1747,
  36874. bottom: 73/1926
  36875. }
  36876. },
  36877. side: {
  36878. height: math.unit(9, "feet"),
  36879. weight: math.unit(621, "lb"),
  36880. name: "Side",
  36881. image: {
  36882. source: "./media/characters/unmru/side.svg",
  36883. extra: 1781/1671,
  36884. bottom: 127/1908
  36885. }
  36886. },
  36887. back: {
  36888. height: math.unit(9, "feet"),
  36889. weight: math.unit(621, "lb"),
  36890. name: "Back",
  36891. image: {
  36892. source: "./media/characters/unmru/back.svg",
  36893. extra: 1894/1765,
  36894. bottom: 75/1969
  36895. }
  36896. },
  36897. dick: {
  36898. height: math.unit(3, "feet"),
  36899. weight: math.unit(35, "lb"),
  36900. name: "Dick",
  36901. image: {
  36902. source: "./media/characters/unmru/dick.svg"
  36903. }
  36904. },
  36905. },
  36906. [
  36907. {
  36908. name: "Normal",
  36909. height: math.unit(9, "feet")
  36910. },
  36911. {
  36912. name: "Natural",
  36913. height: math.unit(27, "feet"),
  36914. default: true
  36915. },
  36916. {
  36917. name: "Giant",
  36918. height: math.unit(90, "feet")
  36919. },
  36920. {
  36921. name: "Kaiju",
  36922. height: math.unit(270, "feet")
  36923. },
  36924. {
  36925. name: "Macro",
  36926. height: math.unit(900, "feet")
  36927. },
  36928. {
  36929. name: "Macro+",
  36930. height: math.unit(2700, "feet")
  36931. },
  36932. {
  36933. name: "Megamacro",
  36934. height: math.unit(9000, "feet")
  36935. },
  36936. {
  36937. name: "City-Crushing",
  36938. height: math.unit(27000, "feet")
  36939. },
  36940. {
  36941. name: "Mountain-Mashing",
  36942. height: math.unit(90000, "feet")
  36943. },
  36944. {
  36945. name: "Earth-Eclipsing",
  36946. height: math.unit(2.7e8, "feet")
  36947. },
  36948. {
  36949. name: "Sol-Swallowing",
  36950. height: math.unit(9e10, "feet")
  36951. },
  36952. {
  36953. name: "Majoris-Munching",
  36954. height: math.unit(2.7e13, "feet")
  36955. },
  36956. ]
  36957. ))
  36958. characterMakers.push(() => makeCharacter(
  36959. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36960. {
  36961. front: {
  36962. height: math.unit(1, "inch"),
  36963. name: "Front",
  36964. image: {
  36965. source: "./media/characters/squeaks-mouse/front.svg",
  36966. extra: 352/308,
  36967. bottom: 25/377
  36968. }
  36969. },
  36970. },
  36971. [
  36972. {
  36973. name: "Micro",
  36974. height: math.unit(1, "inch"),
  36975. default: true
  36976. },
  36977. ]
  36978. ))
  36979. characterMakers.push(() => makeCharacter(
  36980. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36981. {
  36982. side: {
  36983. height: math.unit(35, "feet"),
  36984. name: "Side",
  36985. image: {
  36986. source: "./media/characters/sayko/side.svg",
  36987. extra: 1697/1021,
  36988. bottom: 82/1779
  36989. }
  36990. },
  36991. head: {
  36992. height: math.unit(16, "feet"),
  36993. name: "Head",
  36994. image: {
  36995. source: "./media/characters/sayko/head.svg"
  36996. }
  36997. },
  36998. forepaw: {
  36999. height: math.unit(7.85, "feet"),
  37000. name: "Forepaw",
  37001. image: {
  37002. source: "./media/characters/sayko/forepaw.svg"
  37003. }
  37004. },
  37005. hindpaw: {
  37006. height: math.unit(8.8, "feet"),
  37007. name: "Hindpaw",
  37008. image: {
  37009. source: "./media/characters/sayko/hindpaw.svg"
  37010. }
  37011. },
  37012. },
  37013. [
  37014. {
  37015. name: "Normal",
  37016. height: math.unit(35, "feet"),
  37017. default: true
  37018. },
  37019. {
  37020. name: "Colossus",
  37021. height: math.unit(100, "meters")
  37022. },
  37023. {
  37024. name: "\"Small\" Deity",
  37025. height: math.unit(1, "km")
  37026. },
  37027. {
  37028. name: "\"Large\" Deity",
  37029. height: math.unit(15, "km")
  37030. },
  37031. ]
  37032. ))
  37033. characterMakers.push(() => makeCharacter(
  37034. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37035. {
  37036. front: {
  37037. height: math.unit(6, "feet"),
  37038. weight: math.unit(250, "lb"),
  37039. name: "Front",
  37040. image: {
  37041. source: "./media/characters/mukiro/front.svg",
  37042. extra: 1368/1310,
  37043. bottom: 34/1402
  37044. }
  37045. },
  37046. },
  37047. [
  37048. {
  37049. name: "Normal",
  37050. height: math.unit(6, "feet"),
  37051. default: true
  37052. },
  37053. ]
  37054. ))
  37055. characterMakers.push(() => makeCharacter(
  37056. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37057. {
  37058. front: {
  37059. height: math.unit(12 + 4/12, "feet"),
  37060. name: "Front",
  37061. image: {
  37062. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37063. extra: 1346/1311,
  37064. bottom: 65/1411
  37065. }
  37066. },
  37067. },
  37068. [
  37069. {
  37070. name: "Base",
  37071. height: math.unit(12 + 4/12, "feet"),
  37072. default: true
  37073. },
  37074. {
  37075. name: "Macro",
  37076. height: math.unit(150, "feet")
  37077. },
  37078. {
  37079. name: "Mega",
  37080. height: math.unit(2, "miles")
  37081. },
  37082. {
  37083. name: "Demi God",
  37084. height: math.unit(4, "AU")
  37085. },
  37086. {
  37087. name: "God Size",
  37088. height: math.unit(1, "universe")
  37089. },
  37090. ]
  37091. ))
  37092. characterMakers.push(() => makeCharacter(
  37093. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37094. {
  37095. front: {
  37096. height: math.unit(3 + 3/12, "feet"),
  37097. weight: math.unit(88, "lb"),
  37098. name: "Front",
  37099. image: {
  37100. source: "./media/characters/trey/front.svg",
  37101. extra: 1815/1509,
  37102. bottom: 60/1875
  37103. }
  37104. },
  37105. },
  37106. [
  37107. {
  37108. name: "Normal",
  37109. height: math.unit(3 + 3/12, "feet"),
  37110. default: true
  37111. },
  37112. ]
  37113. ))
  37114. characterMakers.push(() => makeCharacter(
  37115. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37116. {
  37117. front: {
  37118. height: math.unit(4, "meters"),
  37119. name: "Front",
  37120. image: {
  37121. source: "./media/characters/adelonda/front.svg",
  37122. extra: 1942/1775,
  37123. bottom: 33/1975
  37124. }
  37125. },
  37126. back: {
  37127. height: math.unit(4, "meters"),
  37128. name: "Back",
  37129. image: {
  37130. source: "./media/characters/adelonda/back.svg",
  37131. extra: 1932/1780,
  37132. bottom: 42/1974
  37133. }
  37134. },
  37135. bust: {
  37136. height: math.unit(1.8, "meter"),
  37137. name: "Bust",
  37138. image: {
  37139. source: "./media/characters/adelonda/bust.svg"
  37140. }
  37141. },
  37142. },
  37143. [
  37144. {
  37145. name: "Normal",
  37146. height: math.unit(4, "meters"),
  37147. default: true
  37148. },
  37149. ]
  37150. ))
  37151. characterMakers.push(() => makeCharacter(
  37152. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37153. {
  37154. front: {
  37155. height: math.unit(8 + 4/12, "feet"),
  37156. weight: math.unit(670, "lb"),
  37157. name: "Front",
  37158. image: {
  37159. source: "./media/characters/acadiel/front.svg",
  37160. extra: 1901/1595,
  37161. bottom: 142/2043
  37162. }
  37163. },
  37164. },
  37165. [
  37166. {
  37167. name: "Normal",
  37168. height: math.unit(8 + 4/12, "feet"),
  37169. default: true
  37170. },
  37171. {
  37172. name: "Macro",
  37173. height: math.unit(200, "feet")
  37174. },
  37175. ]
  37176. ))
  37177. characterMakers.push(() => makeCharacter(
  37178. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37179. {
  37180. front: {
  37181. height: math.unit(6 + 2/12, "feet"),
  37182. weight: math.unit(185, "lb"),
  37183. name: "Front",
  37184. image: {
  37185. source: "./media/characters/kayne-ein/front.svg",
  37186. extra: 1780/1560,
  37187. bottom: 81/1861
  37188. }
  37189. },
  37190. },
  37191. [
  37192. {
  37193. name: "Normal",
  37194. height: math.unit(6 + 2/12, "feet"),
  37195. default: true
  37196. },
  37197. {
  37198. name: "Transformation Stage",
  37199. height: math.unit(15, "feet")
  37200. },
  37201. {
  37202. name: "Macro",
  37203. height: math.unit(150, "feet")
  37204. },
  37205. {
  37206. name: "Earth's Shadow",
  37207. height: math.unit(6200, "miles")
  37208. },
  37209. {
  37210. name: "Universal Demon",
  37211. height: math.unit(28e9, "parsecs")
  37212. },
  37213. {
  37214. name: "Multiverse God",
  37215. height: math.unit(3, "multiverses")
  37216. },
  37217. ]
  37218. ))
  37219. characterMakers.push(() => makeCharacter(
  37220. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37221. {
  37222. front: {
  37223. height: math.unit(5 + 5/12, "feet"),
  37224. name: "Front",
  37225. image: {
  37226. source: "./media/characters/fawn/front.svg",
  37227. extra: 1873/1731,
  37228. bottom: 95/1968
  37229. }
  37230. },
  37231. back: {
  37232. height: math.unit(5 + 5/12, "feet"),
  37233. name: "Back",
  37234. image: {
  37235. source: "./media/characters/fawn/back.svg",
  37236. extra: 1813/1700,
  37237. bottom: 14/1827
  37238. }
  37239. },
  37240. hoof: {
  37241. height: math.unit(1.45, "feet"),
  37242. name: "Hoof",
  37243. image: {
  37244. source: "./media/characters/fawn/hoof.svg"
  37245. }
  37246. },
  37247. },
  37248. [
  37249. {
  37250. name: "Normal",
  37251. height: math.unit(5 + 5/12, "feet"),
  37252. default: true
  37253. },
  37254. ]
  37255. ))
  37256. characterMakers.push(() => makeCharacter(
  37257. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37258. {
  37259. front: {
  37260. height: math.unit(2 + 5/12, "feet"),
  37261. name: "Front",
  37262. image: {
  37263. source: "./media/characters/orion/front.svg",
  37264. extra: 1366/1304,
  37265. bottom: 43/1409
  37266. }
  37267. },
  37268. paw: {
  37269. height: math.unit(0.52, "feet"),
  37270. name: "Paw",
  37271. image: {
  37272. source: "./media/characters/orion/paw.svg"
  37273. }
  37274. },
  37275. },
  37276. [
  37277. {
  37278. name: "Normal",
  37279. height: math.unit(2 + 5/12, "feet"),
  37280. default: true
  37281. },
  37282. ]
  37283. ))
  37284. characterMakers.push(() => makeCharacter(
  37285. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37286. {
  37287. front: {
  37288. height: math.unit(5 + 10/12, "feet"),
  37289. name: "Front",
  37290. image: {
  37291. source: "./media/characters/vera/front.svg",
  37292. extra: 1680/1575,
  37293. bottom: 49/1729
  37294. }
  37295. },
  37296. back: {
  37297. height: math.unit(5 + 10/12, "feet"),
  37298. name: "Back",
  37299. image: {
  37300. source: "./media/characters/vera/back.svg",
  37301. extra: 1700/1588,
  37302. bottom: 18/1718
  37303. }
  37304. },
  37305. arcanine: {
  37306. height: math.unit(6 + 8/12, "feet"),
  37307. name: "Arcanine",
  37308. image: {
  37309. source: "./media/characters/vera/arcanine.svg",
  37310. extra: 1590/1511,
  37311. bottom: 71/1661
  37312. }
  37313. },
  37314. maw: {
  37315. height: math.unit(0.82, "feet"),
  37316. name: "Maw",
  37317. image: {
  37318. source: "./media/characters/vera/maw.svg"
  37319. }
  37320. },
  37321. mawArcanine: {
  37322. height: math.unit(0.97, "feet"),
  37323. name: "Maw (Arcanine)",
  37324. image: {
  37325. source: "./media/characters/vera/maw-arcanine.svg"
  37326. }
  37327. },
  37328. paw: {
  37329. height: math.unit(0.75, "feet"),
  37330. name: "Paw",
  37331. image: {
  37332. source: "./media/characters/vera/paw.svg"
  37333. }
  37334. },
  37335. pawprint: {
  37336. height: math.unit(0.52, "feet"),
  37337. name: "Pawprint",
  37338. image: {
  37339. source: "./media/characters/vera/pawprint.svg"
  37340. }
  37341. },
  37342. },
  37343. [
  37344. {
  37345. name: "Normal",
  37346. height: math.unit(5 + 10/12, "feet"),
  37347. default: true
  37348. },
  37349. {
  37350. name: "Macro",
  37351. height: math.unit(75, "feet")
  37352. },
  37353. ]
  37354. ))
  37355. characterMakers.push(() => makeCharacter(
  37356. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37357. {
  37358. front: {
  37359. height: math.unit(4, "feet"),
  37360. weight: math.unit(40, "lb"),
  37361. name: "Front",
  37362. image: {
  37363. source: "./media/characters/orvan-rabbit/front.svg",
  37364. extra: 1896/1642,
  37365. bottom: 29/1925
  37366. }
  37367. },
  37368. },
  37369. [
  37370. {
  37371. name: "Normal",
  37372. height: math.unit(4, "feet"),
  37373. default: true
  37374. },
  37375. ]
  37376. ))
  37377. characterMakers.push(() => makeCharacter(
  37378. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37379. {
  37380. front: {
  37381. height: math.unit(6, "feet"),
  37382. weight: math.unit(168, "lb"),
  37383. name: "Front",
  37384. image: {
  37385. source: "./media/characters/lisa/front.svg",
  37386. extra: 2065/1867,
  37387. bottom: 46/2111
  37388. }
  37389. },
  37390. back: {
  37391. height: math.unit(6, "feet"),
  37392. weight: math.unit(168, "lb"),
  37393. name: "Back",
  37394. image: {
  37395. source: "./media/characters/lisa/back.svg",
  37396. extra: 1982/1838,
  37397. bottom: 29/2011
  37398. }
  37399. },
  37400. maw: {
  37401. height: math.unit(0.81, "feet"),
  37402. name: "Maw",
  37403. image: {
  37404. source: "./media/characters/lisa/maw.svg"
  37405. }
  37406. },
  37407. paw: {
  37408. height: math.unit(0.9, "feet"),
  37409. name: "Paw",
  37410. image: {
  37411. source: "./media/characters/lisa/paw.svg"
  37412. }
  37413. },
  37414. caribousune: {
  37415. height: math.unit(7 + 2/12, "feet"),
  37416. weight: math.unit(268, "lb"),
  37417. name: "Caribousune",
  37418. image: {
  37419. source: "./media/characters/lisa/caribousune.svg",
  37420. extra: 1843/1633,
  37421. bottom: 29/1872
  37422. }
  37423. },
  37424. frontCaribousune: {
  37425. height: math.unit(7 + 2/12, "feet"),
  37426. weight: math.unit(268, "lb"),
  37427. name: "Front (Caribousune)",
  37428. image: {
  37429. source: "./media/characters/lisa/front-caribousune.svg",
  37430. extra: 1818/1638,
  37431. bottom: 52/1870
  37432. }
  37433. },
  37434. sideCaribousune: {
  37435. height: math.unit(7 + 2/12, "feet"),
  37436. weight: math.unit(268, "lb"),
  37437. name: "Side (Caribousune)",
  37438. image: {
  37439. source: "./media/characters/lisa/side-caribousune.svg",
  37440. extra: 1851/1635,
  37441. bottom: 16/1867
  37442. }
  37443. },
  37444. backCaribousune: {
  37445. height: math.unit(7 + 2/12, "feet"),
  37446. weight: math.unit(268, "lb"),
  37447. name: "Back (Caribousune)",
  37448. image: {
  37449. source: "./media/characters/lisa/back-caribousune.svg",
  37450. extra: 1801/1604,
  37451. bottom: 44/1845
  37452. }
  37453. },
  37454. caribou: {
  37455. height: math.unit(7 + 2/12, "feet"),
  37456. weight: math.unit(268, "lb"),
  37457. name: "Caribou",
  37458. image: {
  37459. source: "./media/characters/lisa/caribou.svg",
  37460. extra: 1843/1633,
  37461. bottom: 29/1872
  37462. }
  37463. },
  37464. frontCaribou: {
  37465. height: math.unit(7 + 2/12, "feet"),
  37466. weight: math.unit(268, "lb"),
  37467. name: "Front (Caribou)",
  37468. image: {
  37469. source: "./media/characters/lisa/front-caribou.svg",
  37470. extra: 1818/1638,
  37471. bottom: 52/1870
  37472. }
  37473. },
  37474. sideCaribou: {
  37475. height: math.unit(7 + 2/12, "feet"),
  37476. weight: math.unit(268, "lb"),
  37477. name: "Side (Caribou)",
  37478. image: {
  37479. source: "./media/characters/lisa/side-caribou.svg",
  37480. extra: 1851/1635,
  37481. bottom: 16/1867
  37482. }
  37483. },
  37484. backCaribou: {
  37485. height: math.unit(7 + 2/12, "feet"),
  37486. weight: math.unit(268, "lb"),
  37487. name: "Back (Caribou)",
  37488. image: {
  37489. source: "./media/characters/lisa/back-caribou.svg",
  37490. extra: 1801/1604,
  37491. bottom: 44/1845
  37492. }
  37493. },
  37494. mawCaribou: {
  37495. height: math.unit(1.45, "feet"),
  37496. name: "Maw (Caribou)",
  37497. image: {
  37498. source: "./media/characters/lisa/maw-caribou.svg"
  37499. }
  37500. },
  37501. mawCaribousune: {
  37502. height: math.unit(1.45, "feet"),
  37503. name: "Maw (Caribousune)",
  37504. image: {
  37505. source: "./media/characters/lisa/maw-caribousune.svg"
  37506. }
  37507. },
  37508. pawCaribousune: {
  37509. height: math.unit(1.61, "feet"),
  37510. name: "Paw (Caribou)",
  37511. image: {
  37512. source: "./media/characters/lisa/paw-caribousune.svg"
  37513. }
  37514. },
  37515. },
  37516. [
  37517. {
  37518. name: "Normal",
  37519. height: math.unit(6, "feet")
  37520. },
  37521. {
  37522. name: "God Size",
  37523. height: math.unit(72, "feet"),
  37524. default: true
  37525. },
  37526. {
  37527. name: "Towering",
  37528. height: math.unit(288, "feet")
  37529. },
  37530. {
  37531. name: "City Size",
  37532. height: math.unit(48384, "feet")
  37533. },
  37534. {
  37535. name: "Continental",
  37536. height: math.unit(4200, "miles")
  37537. },
  37538. {
  37539. name: "Planet Eater",
  37540. height: math.unit(42, "earths")
  37541. },
  37542. {
  37543. name: "Star Swallower",
  37544. height: math.unit(42, "solarradii")
  37545. },
  37546. {
  37547. name: "System Swallower",
  37548. height: math.unit(84000, "AU")
  37549. },
  37550. {
  37551. name: "Galaxy Gobbler",
  37552. height: math.unit(42, "galaxies")
  37553. },
  37554. {
  37555. name: "Universe Devourer",
  37556. height: math.unit(42, "universes")
  37557. },
  37558. {
  37559. name: "Multiverse Muncher",
  37560. height: math.unit(42, "multiverses")
  37561. },
  37562. ]
  37563. ))
  37564. characterMakers.push(() => makeCharacter(
  37565. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37566. {
  37567. front: {
  37568. height: math.unit(36, "feet"),
  37569. name: "Front",
  37570. image: {
  37571. source: "./media/characters/shadow-rat/front.svg",
  37572. extra: 1845/1758,
  37573. bottom: 83/1928
  37574. }
  37575. },
  37576. },
  37577. [
  37578. {
  37579. name: "Macro",
  37580. height: math.unit(36, "feet"),
  37581. default: true
  37582. },
  37583. ]
  37584. ))
  37585. characterMakers.push(() => makeCharacter(
  37586. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37587. {
  37588. side: {
  37589. height: math.unit(8, "feet"),
  37590. weight: math.unit(2630, "lb"),
  37591. name: "Side",
  37592. image: {
  37593. source: "./media/characters/torallia/side.svg",
  37594. extra: 2164/2021,
  37595. bottom: 371/2535
  37596. }
  37597. },
  37598. },
  37599. [
  37600. {
  37601. name: "Mortal Interaction",
  37602. height: math.unit(8, "feet")
  37603. },
  37604. {
  37605. name: "Natural",
  37606. height: math.unit(24, "feet"),
  37607. default: true
  37608. },
  37609. {
  37610. name: "Giant",
  37611. height: math.unit(80, "feet")
  37612. },
  37613. {
  37614. name: "Kaiju",
  37615. height: math.unit(240, "feet")
  37616. },
  37617. {
  37618. name: "Macro",
  37619. height: math.unit(800, "feet")
  37620. },
  37621. {
  37622. name: "Macro+",
  37623. height: math.unit(2400, "feet")
  37624. },
  37625. {
  37626. name: "Macro++",
  37627. height: math.unit(8000, "feet")
  37628. },
  37629. {
  37630. name: "City-Crushing",
  37631. height: math.unit(24000, "feet")
  37632. },
  37633. {
  37634. name: "Mountain-Mashing",
  37635. height: math.unit(80000, "feet")
  37636. },
  37637. {
  37638. name: "District Demolisher",
  37639. height: math.unit(240000, "feet")
  37640. },
  37641. {
  37642. name: "Tri-County Terror",
  37643. height: math.unit(800000, "feet")
  37644. },
  37645. {
  37646. name: "State Smasher",
  37647. height: math.unit(2.4e6, "feet")
  37648. },
  37649. {
  37650. name: "Nation Nemesis",
  37651. height: math.unit(8e6, "feet")
  37652. },
  37653. {
  37654. name: "Continent Cracker",
  37655. height: math.unit(2.4e7, "feet")
  37656. },
  37657. {
  37658. name: "Planet-Pillaging",
  37659. height: math.unit(8e7, "feet")
  37660. },
  37661. {
  37662. name: "Earth-Eclipsing",
  37663. height: math.unit(2.4e8, "feet")
  37664. },
  37665. {
  37666. name: "Jovian-Jostling",
  37667. height: math.unit(8e8, "feet")
  37668. },
  37669. {
  37670. name: "Gas Giant Gulper",
  37671. height: math.unit(2.4e9, "feet")
  37672. },
  37673. {
  37674. name: "Astral Annihilator",
  37675. height: math.unit(8e9, "feet")
  37676. },
  37677. {
  37678. name: "Celestial Conqueror",
  37679. height: math.unit(2.4e10, "feet")
  37680. },
  37681. {
  37682. name: "Sol-Swallowing",
  37683. height: math.unit(8e10, "feet")
  37684. },
  37685. {
  37686. name: "Hunter of the Heavens",
  37687. height: math.unit(2.4e13, "feet")
  37688. },
  37689. ]
  37690. ))
  37691. characterMakers.push(() => makeCharacter(
  37692. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37693. {
  37694. front: {
  37695. height: math.unit(6 + 8/12, "feet"),
  37696. name: "Front",
  37697. image: {
  37698. source: "./media/characters/rebecca-pawlson/front.svg",
  37699. extra: 1737/1596,
  37700. bottom: 107/1844
  37701. }
  37702. },
  37703. back: {
  37704. height: math.unit(6 + 8/12, "feet"),
  37705. name: "Back",
  37706. image: {
  37707. source: "./media/characters/rebecca-pawlson/back.svg",
  37708. extra: 1702/1523,
  37709. bottom: 86/1788
  37710. }
  37711. },
  37712. },
  37713. [
  37714. {
  37715. name: "Normal",
  37716. height: math.unit(6 + 8/12, "feet")
  37717. },
  37718. {
  37719. name: "Mini Macro",
  37720. height: math.unit(10, "feet"),
  37721. default: true
  37722. },
  37723. {
  37724. name: "Macro",
  37725. height: math.unit(100, "feet")
  37726. },
  37727. {
  37728. name: "Mega Macro",
  37729. height: math.unit(2500, "feet")
  37730. },
  37731. {
  37732. name: "Giga Macro",
  37733. height: math.unit(50, "miles")
  37734. },
  37735. ]
  37736. ))
  37737. characterMakers.push(() => makeCharacter(
  37738. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37739. {
  37740. front: {
  37741. height: math.unit(7 + 6/12, "feet"),
  37742. weight: math.unit(600, "lb"),
  37743. name: "Front",
  37744. image: {
  37745. source: "./media/characters/moxie-nova/front.svg",
  37746. extra: 1734/1652,
  37747. bottom: 41/1775
  37748. }
  37749. },
  37750. },
  37751. [
  37752. {
  37753. name: "Normal",
  37754. height: math.unit(7 + 6/12, "feet"),
  37755. default: true
  37756. },
  37757. ]
  37758. ))
  37759. characterMakers.push(() => makeCharacter(
  37760. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37761. {
  37762. front: {
  37763. height: math.unit(5, "feet"),
  37764. weight: math.unit(150, "lb"),
  37765. name: "Front",
  37766. image: {
  37767. source: "./media/characters/tiffany/front.svg",
  37768. extra: 1941/1845,
  37769. bottom: 58/1999
  37770. }
  37771. },
  37772. },
  37773. [
  37774. {
  37775. name: "Normal",
  37776. height: math.unit(5, "feet"),
  37777. default: true
  37778. },
  37779. ]
  37780. ))
  37781. characterMakers.push(() => makeCharacter(
  37782. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37783. {
  37784. front: {
  37785. height: math.unit(8, "feet"),
  37786. weight: math.unit(300, "lb"),
  37787. name: "Front",
  37788. image: {
  37789. source: "./media/characters/raxinath/front.svg",
  37790. extra: 1407/1309,
  37791. bottom: 39/1446
  37792. }
  37793. },
  37794. back: {
  37795. height: math.unit(8, "feet"),
  37796. weight: math.unit(300, "lb"),
  37797. name: "Back",
  37798. image: {
  37799. source: "./media/characters/raxinath/back.svg",
  37800. extra: 1405/1315,
  37801. bottom: 9/1414
  37802. }
  37803. },
  37804. },
  37805. [
  37806. {
  37807. name: "Speck",
  37808. height: math.unit(0.5, "nm")
  37809. },
  37810. {
  37811. name: "Micro",
  37812. height: math.unit(3, "inches")
  37813. },
  37814. {
  37815. name: "Kobold",
  37816. height: math.unit(3, "feet")
  37817. },
  37818. {
  37819. name: "Normal",
  37820. height: math.unit(8, "feet"),
  37821. default: true
  37822. },
  37823. {
  37824. name: "Giant",
  37825. height: math.unit(50, "feet")
  37826. },
  37827. {
  37828. name: "Macro",
  37829. height: math.unit(1000, "feet")
  37830. },
  37831. {
  37832. name: "Megamacro",
  37833. height: math.unit(1, "mile")
  37834. },
  37835. ]
  37836. ))
  37837. characterMakers.push(() => makeCharacter(
  37838. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37839. {
  37840. front: {
  37841. height: math.unit(10, "feet"),
  37842. weight: math.unit(1442, "lb"),
  37843. name: "Front",
  37844. image: {
  37845. source: "./media/characters/mal-dragon/front.svg",
  37846. extra: 1515/1444,
  37847. bottom: 113/1628
  37848. }
  37849. },
  37850. back: {
  37851. height: math.unit(10, "feet"),
  37852. weight: math.unit(1442, "lb"),
  37853. name: "Back",
  37854. image: {
  37855. source: "./media/characters/mal-dragon/back.svg",
  37856. extra: 1527/1434,
  37857. bottom: 25/1552
  37858. }
  37859. },
  37860. },
  37861. [
  37862. {
  37863. name: "Mortal Interaction",
  37864. height: math.unit(10, "feet"),
  37865. default: true
  37866. },
  37867. {
  37868. name: "Large",
  37869. height: math.unit(30, "feet")
  37870. },
  37871. {
  37872. name: "Kaiju",
  37873. height: math.unit(300, "feet")
  37874. },
  37875. {
  37876. name: "Megamacro",
  37877. height: math.unit(10000, "feet")
  37878. },
  37879. {
  37880. name: "Continent Cracker",
  37881. height: math.unit(30000000, "feet")
  37882. },
  37883. {
  37884. name: "Sol-Swallowing",
  37885. height: math.unit(1e11, "feet")
  37886. },
  37887. {
  37888. name: "Light Universal",
  37889. height: math.unit(5, "universes")
  37890. },
  37891. {
  37892. name: "Universe Atoms",
  37893. height: math.unit(1.829e9, "universes")
  37894. },
  37895. {
  37896. name: "Light Multiversal",
  37897. height: math.unit(5, "multiverses")
  37898. },
  37899. {
  37900. name: "Multiverse Atoms",
  37901. height: math.unit(1.829e9, "multiverses")
  37902. },
  37903. {
  37904. name: "Fabric of Time",
  37905. height: math.unit(1e262, "multiverses")
  37906. },
  37907. ]
  37908. ))
  37909. characterMakers.push(() => makeCharacter(
  37910. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37911. {
  37912. front: {
  37913. height: math.unit(9, "feet"),
  37914. weight: math.unit(1050, "lb"),
  37915. name: "Front",
  37916. image: {
  37917. source: "./media/characters/tabitha/front.svg",
  37918. extra: 2083/1994,
  37919. bottom: 68/2151
  37920. }
  37921. },
  37922. },
  37923. [
  37924. {
  37925. name: "Baseline",
  37926. height: math.unit(9, "feet"),
  37927. default: true
  37928. },
  37929. {
  37930. name: "Giant",
  37931. height: math.unit(90, "feet")
  37932. },
  37933. {
  37934. name: "Macro",
  37935. height: math.unit(900, "feet")
  37936. },
  37937. {
  37938. name: "Megamacro",
  37939. height: math.unit(9000, "feet")
  37940. },
  37941. {
  37942. name: "City-Crushing",
  37943. height: math.unit(27000, "feet")
  37944. },
  37945. {
  37946. name: "Mountain-Mashing",
  37947. height: math.unit(90000, "feet")
  37948. },
  37949. {
  37950. name: "Nation Nemesis",
  37951. height: math.unit(9e6, "feet")
  37952. },
  37953. {
  37954. name: "Continent Cracker",
  37955. height: math.unit(27e6, "feet")
  37956. },
  37957. {
  37958. name: "Earth-Eclipsing",
  37959. height: math.unit(2.7e8, "feet")
  37960. },
  37961. {
  37962. name: "Gas Giant Gulper",
  37963. height: math.unit(2.7e9, "feet")
  37964. },
  37965. {
  37966. name: "Sol-Swallowing",
  37967. height: math.unit(9e10, "feet")
  37968. },
  37969. {
  37970. name: "Galaxy Gulper",
  37971. height: math.unit(9, "galaxies")
  37972. },
  37973. {
  37974. name: "Cosmos Churner",
  37975. height: math.unit(9, "universes")
  37976. },
  37977. ]
  37978. ))
  37979. characterMakers.push(() => makeCharacter(
  37980. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  37981. {
  37982. front: {
  37983. height: math.unit(160, "cm"),
  37984. weight: math.unit(55, "kg"),
  37985. name: "Front",
  37986. image: {
  37987. source: "./media/characters/tow/front.svg",
  37988. extra: 1751/1722,
  37989. bottom: 74/1825
  37990. }
  37991. },
  37992. },
  37993. [
  37994. {
  37995. name: "Norm",
  37996. height: math.unit(160, "cm")
  37997. },
  37998. {
  37999. name: "Casual",
  38000. height: math.unit(3200, "m"),
  38001. default: true
  38002. },
  38003. {
  38004. name: "Show-Off",
  38005. height: math.unit(160, "km")
  38006. },
  38007. ]
  38008. ))
  38009. characterMakers.push(() => makeCharacter(
  38010. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38011. {
  38012. front: {
  38013. height: math.unit(7 + 11/12, "feet"),
  38014. weight: math.unit(342.8, "lb"),
  38015. name: "Front",
  38016. image: {
  38017. source: "./media/characters/vivian-orca-dragon/front.svg",
  38018. extra: 1890/1865,
  38019. bottom: 28/1918
  38020. }
  38021. },
  38022. },
  38023. [
  38024. {
  38025. name: "Micro",
  38026. height: math.unit(5, "inches")
  38027. },
  38028. {
  38029. name: "Normal",
  38030. height: math.unit(7 + 11/12, "feet"),
  38031. default: true
  38032. },
  38033. {
  38034. name: "Macro",
  38035. height: math.unit(395 + 7/12, "feet")
  38036. },
  38037. ]
  38038. ))
  38039. characterMakers.push(() => makeCharacter(
  38040. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38041. {
  38042. side: {
  38043. height: math.unit(10, "feet"),
  38044. weight: math.unit(1442, "lb"),
  38045. name: "Side",
  38046. image: {
  38047. source: "./media/characters/lotherakon/side.svg",
  38048. extra: 1604/1497,
  38049. bottom: 89/1693
  38050. }
  38051. },
  38052. },
  38053. [
  38054. {
  38055. name: "Mortal Interaction",
  38056. height: math.unit(10, "feet")
  38057. },
  38058. {
  38059. name: "Large",
  38060. height: math.unit(30, "feet"),
  38061. default: true
  38062. },
  38063. {
  38064. name: "Giant",
  38065. height: math.unit(100, "feet")
  38066. },
  38067. {
  38068. name: "Kaiju",
  38069. height: math.unit(300, "feet")
  38070. },
  38071. {
  38072. name: "Macro",
  38073. height: math.unit(1000, "feet")
  38074. },
  38075. {
  38076. name: "Macro+",
  38077. height: math.unit(3000, "feet")
  38078. },
  38079. {
  38080. name: "Megamacro",
  38081. height: math.unit(10000, "feet")
  38082. },
  38083. {
  38084. name: "City-Crushing",
  38085. height: math.unit(30000, "feet")
  38086. },
  38087. {
  38088. name: "Continent Cracker",
  38089. height: math.unit(30e6, "feet")
  38090. },
  38091. {
  38092. name: "Earth Eclipsing",
  38093. height: math.unit(3e8, "feet")
  38094. },
  38095. {
  38096. name: "Gas Giant Gulper",
  38097. height: math.unit(3e9, "feet")
  38098. },
  38099. {
  38100. name: "Sol-Swallowing",
  38101. height: math.unit(1e11, "feet")
  38102. },
  38103. {
  38104. name: "System Swallower",
  38105. height: math.unit(3e14, "feet")
  38106. },
  38107. {
  38108. name: "Galaxy Gulper",
  38109. height: math.unit(10, "galaxies")
  38110. },
  38111. {
  38112. name: "Light Universal",
  38113. height: math.unit(5, "universes")
  38114. },
  38115. {
  38116. name: "Universe Palm",
  38117. height: math.unit(20, "universes")
  38118. },
  38119. {
  38120. name: "Light Multiversal",
  38121. height: math.unit(5, "multiverses")
  38122. },
  38123. {
  38124. name: "Multiverse Palm",
  38125. height: math.unit(20, "multiverses")
  38126. },
  38127. {
  38128. name: "Inferno Incarnate",
  38129. height: math.unit(1e7, "multiverses")
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38135. {
  38136. front: {
  38137. height: math.unit(8, "feet"),
  38138. weight: math.unit(1200, "lb"),
  38139. name: "Front",
  38140. image: {
  38141. source: "./media/characters/malithee/front.svg",
  38142. extra: 1675/1640,
  38143. bottom: 162/1837
  38144. }
  38145. },
  38146. },
  38147. [
  38148. {
  38149. name: "Mortal Interaction",
  38150. height: math.unit(8, "feet"),
  38151. default: true
  38152. },
  38153. {
  38154. name: "Large",
  38155. height: math.unit(24, "feet")
  38156. },
  38157. {
  38158. name: "Kaiju",
  38159. height: math.unit(240, "feet")
  38160. },
  38161. {
  38162. name: "Megamacro",
  38163. height: math.unit(8000, "feet")
  38164. },
  38165. {
  38166. name: "Continent Cracker",
  38167. height: math.unit(24e6, "feet")
  38168. },
  38169. {
  38170. name: "Earth-Eclipsing",
  38171. height: math.unit(2.4e8, "feet")
  38172. },
  38173. {
  38174. name: "Sol-Swallowing",
  38175. height: math.unit(8e10, "feet")
  38176. },
  38177. {
  38178. name: "Galaxy Gulper",
  38179. height: math.unit(8, "galaxies")
  38180. },
  38181. {
  38182. name: "Light Universal",
  38183. height: math.unit(4, "universes")
  38184. },
  38185. {
  38186. name: "Universe Atoms",
  38187. height: math.unit(1.829e9, "universes")
  38188. },
  38189. {
  38190. name: "Light Multiversal",
  38191. height: math.unit(4, "multiverses")
  38192. },
  38193. {
  38194. name: "Multiverse Atoms",
  38195. height: math.unit(1.829e9, "multiverses")
  38196. },
  38197. {
  38198. name: "Nigh-Omnipresence",
  38199. height: math.unit(8e261, "multiverses")
  38200. },
  38201. ]
  38202. ))
  38203. characterMakers.push(() => makeCharacter(
  38204. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38205. {
  38206. front: {
  38207. height: math.unit(10, "feet"),
  38208. weight: math.unit(1500, "lb"),
  38209. name: "Front",
  38210. image: {
  38211. source: "./media/characters/miles-thestia/front.svg",
  38212. extra: 1812/1727,
  38213. bottom: 86/1898
  38214. }
  38215. },
  38216. back: {
  38217. height: math.unit(10, "feet"),
  38218. weight: math.unit(1500, "lb"),
  38219. name: "Back",
  38220. image: {
  38221. source: "./media/characters/miles-thestia/back.svg",
  38222. extra: 1799/1690,
  38223. bottom: 47/1846
  38224. }
  38225. },
  38226. frontNsfw: {
  38227. height: math.unit(10, "feet"),
  38228. weight: math.unit(1500, "lb"),
  38229. name: "Front (NSFW)",
  38230. image: {
  38231. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38232. extra: 1812/1727,
  38233. bottom: 86/1898
  38234. }
  38235. },
  38236. },
  38237. [
  38238. {
  38239. name: "Mini-Macro",
  38240. height: math.unit(10, "feet"),
  38241. default: true
  38242. },
  38243. ]
  38244. ))
  38245. characterMakers.push(() => makeCharacter(
  38246. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38247. {
  38248. front: {
  38249. height: math.unit(25, "feet"),
  38250. name: "Front",
  38251. image: {
  38252. source: "./media/characters/titan-s-wulf/front.svg",
  38253. extra: 1560/1484,
  38254. bottom: 76/1636
  38255. }
  38256. },
  38257. },
  38258. [
  38259. {
  38260. name: "Smallest",
  38261. height: math.unit(25, "feet"),
  38262. default: true
  38263. },
  38264. {
  38265. name: "Normal",
  38266. height: math.unit(200, "feet")
  38267. },
  38268. {
  38269. name: "Macro",
  38270. height: math.unit(200000, "feet")
  38271. },
  38272. {
  38273. name: "Multiversal Original",
  38274. height: math.unit(10000, "multiverses")
  38275. },
  38276. ]
  38277. ))
  38278. characterMakers.push(() => makeCharacter(
  38279. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38280. {
  38281. front: {
  38282. height: math.unit(8, "feet"),
  38283. weight: math.unit(553, "lb"),
  38284. name: "Front",
  38285. image: {
  38286. source: "./media/characters/tawendeh/front.svg",
  38287. extra: 2365/2268,
  38288. bottom: 83/2448
  38289. }
  38290. },
  38291. frontClothed: {
  38292. height: math.unit(8, "feet"),
  38293. weight: math.unit(553, "lb"),
  38294. name: "Front (Clothed)",
  38295. image: {
  38296. source: "./media/characters/tawendeh/front-clothed.svg",
  38297. extra: 2365/2268,
  38298. bottom: 83/2448
  38299. }
  38300. },
  38301. back: {
  38302. height: math.unit(8, "feet"),
  38303. weight: math.unit(553, "lb"),
  38304. name: "Back",
  38305. image: {
  38306. source: "./media/characters/tawendeh/back.svg",
  38307. extra: 2397/2294,
  38308. bottom: 42/2439
  38309. }
  38310. },
  38311. },
  38312. [
  38313. {
  38314. name: "Mortal Interaction",
  38315. height: math.unit(8, "feet"),
  38316. default: true
  38317. },
  38318. {
  38319. name: "Giant",
  38320. height: math.unit(80, "feet")
  38321. },
  38322. {
  38323. name: "Macro",
  38324. height: math.unit(800, "feet")
  38325. },
  38326. {
  38327. name: "Megamacro",
  38328. height: math.unit(8000, "feet")
  38329. },
  38330. {
  38331. name: "City-Crushing",
  38332. height: math.unit(24000, "feet")
  38333. },
  38334. {
  38335. name: "Mountain-Mashing",
  38336. height: math.unit(80000, "feet")
  38337. },
  38338. {
  38339. name: "Nation Nemesis",
  38340. height: math.unit(8e6, "feet")
  38341. },
  38342. {
  38343. name: "Continent Cracker",
  38344. height: math.unit(24e6, "feet")
  38345. },
  38346. {
  38347. name: "Earth-Eclipsing",
  38348. height: math.unit(2.4e8, "feet")
  38349. },
  38350. {
  38351. name: "Gas Giant Gulper",
  38352. height: math.unit(2.4e9, "feet")
  38353. },
  38354. {
  38355. name: "Sol-Swallowing",
  38356. height: math.unit(8e10, "feet")
  38357. },
  38358. {
  38359. name: "Galaxy Gulper",
  38360. height: math.unit(8, "galaxies")
  38361. },
  38362. {
  38363. name: "Cosmos Churner",
  38364. height: math.unit(8, "universes")
  38365. },
  38366. {
  38367. name: "Omnipotent Otter",
  38368. height: math.unit(80, "universes")
  38369. },
  38370. ]
  38371. ))
  38372. characterMakers.push(() => makeCharacter(
  38373. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38374. {
  38375. front: {
  38376. height: math.unit(2.6, "meters"),
  38377. weight: math.unit(900, "kg"),
  38378. name: "Front",
  38379. image: {
  38380. source: "./media/characters/neesha/front.svg",
  38381. extra: 1803/1653,
  38382. bottom: 128/1931
  38383. }
  38384. },
  38385. },
  38386. [
  38387. {
  38388. name: "Normal",
  38389. height: math.unit(2.6, "meters"),
  38390. default: true
  38391. },
  38392. {
  38393. name: "Macro",
  38394. height: math.unit(50, "meters")
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(5, "feet"),
  38403. weight: math.unit(185, "lb"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/kyera/front.svg",
  38407. extra: 1875/1790,
  38408. bottom: 96/1971
  38409. }
  38410. },
  38411. },
  38412. [
  38413. {
  38414. name: "Normal",
  38415. height: math.unit(5, "feet"),
  38416. default: true
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(7 + 6/12, "feet"),
  38425. weight: math.unit(540, "lb"),
  38426. name: "Front",
  38427. image: {
  38428. source: "./media/characters/yuko/front.svg",
  38429. extra: 1282/1222,
  38430. bottom: 101/1383
  38431. }
  38432. },
  38433. frontClothed: {
  38434. height: math.unit(7 + 6/12, "feet"),
  38435. weight: math.unit(540, "lb"),
  38436. name: "Front (Clothed)",
  38437. image: {
  38438. source: "./media/characters/yuko/front-clothed.svg",
  38439. extra: 1282/1222,
  38440. bottom: 101/1383
  38441. }
  38442. },
  38443. },
  38444. [
  38445. {
  38446. name: "Normal",
  38447. height: math.unit(7 + 6/12, "feet"),
  38448. default: true
  38449. },
  38450. {
  38451. name: "Macro",
  38452. height: math.unit(26 + 9/12, "feet")
  38453. },
  38454. {
  38455. name: "Megamacro",
  38456. height: math.unit(300, "feet")
  38457. },
  38458. {
  38459. name: "Gigamacro",
  38460. height: math.unit(5000, "feet")
  38461. },
  38462. {
  38463. name: "Planetary",
  38464. height: math.unit(10000, "miles")
  38465. },
  38466. ]
  38467. ))
  38468. characterMakers.push(() => makeCharacter(
  38469. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38470. {
  38471. front: {
  38472. height: math.unit(8 + 2/12, "feet"),
  38473. weight: math.unit(600, "lb"),
  38474. name: "Front",
  38475. image: {
  38476. source: "./media/characters/deam-nitrel/front.svg",
  38477. extra: 1308/1234,
  38478. bottom: 125/1433
  38479. }
  38480. },
  38481. },
  38482. [
  38483. {
  38484. name: "Normal",
  38485. height: math.unit(8 + 2/12, "feet"),
  38486. default: true
  38487. },
  38488. ]
  38489. ))
  38490. characterMakers.push(() => makeCharacter(
  38491. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38492. {
  38493. front: {
  38494. height: math.unit(6.1, "feet"),
  38495. weight: math.unit(180, "lb"),
  38496. name: "Front",
  38497. image: {
  38498. source: "./media/characters/skyress/front.svg",
  38499. extra: 1045/915,
  38500. bottom: 28/1073
  38501. }
  38502. },
  38503. maw: {
  38504. height: math.unit(1, "feet"),
  38505. name: "Maw",
  38506. image: {
  38507. source: "./media/characters/skyress/maw.svg"
  38508. }
  38509. },
  38510. },
  38511. [
  38512. {
  38513. name: "Normal",
  38514. height: math.unit(6.1, "feet"),
  38515. default: true
  38516. },
  38517. {
  38518. name: "Macro",
  38519. height: math.unit(200, "feet")
  38520. },
  38521. ]
  38522. ))
  38523. characterMakers.push(() => makeCharacter(
  38524. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38525. {
  38526. front: {
  38527. height: math.unit(4 + 2/12, "feet"),
  38528. weight: math.unit(40, "kg"),
  38529. name: "Front",
  38530. image: {
  38531. source: "./media/characters/amethyst-jones/front.svg",
  38532. extra: 1220/1150,
  38533. bottom: 101/1321
  38534. }
  38535. },
  38536. },
  38537. [
  38538. {
  38539. name: "Normal",
  38540. height: math.unit(4 + 2/12, "feet"),
  38541. default: true
  38542. },
  38543. ]
  38544. ))
  38545. characterMakers.push(() => makeCharacter(
  38546. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38547. {
  38548. front: {
  38549. height: math.unit(1.7, "m"),
  38550. weight: math.unit(135, "lb"),
  38551. name: "Front",
  38552. image: {
  38553. source: "./media/characters/jade/front.svg",
  38554. extra: 1818/1767,
  38555. bottom: 32/1850
  38556. }
  38557. },
  38558. back: {
  38559. height: math.unit(1.7, "m"),
  38560. weight: math.unit(135, "lb"),
  38561. name: "Back",
  38562. image: {
  38563. source: "./media/characters/jade/back.svg",
  38564. extra: 1869/1809,
  38565. bottom: 35/1904
  38566. }
  38567. },
  38568. hand: {
  38569. height: math.unit(0.24, "m"),
  38570. name: "Hand",
  38571. image: {
  38572. source: "./media/characters/jade/hand.svg"
  38573. }
  38574. },
  38575. foot: {
  38576. height: math.unit(0.263, "m"),
  38577. name: "Foot",
  38578. image: {
  38579. source: "./media/characters/jade/foot.svg"
  38580. }
  38581. },
  38582. dick: {
  38583. height: math.unit(0.47, "m"),
  38584. name: "Dick",
  38585. image: {
  38586. source: "./media/characters/jade/dick.svg"
  38587. }
  38588. },
  38589. },
  38590. [
  38591. {
  38592. name: "Micro",
  38593. height: math.unit(22, "cm")
  38594. },
  38595. {
  38596. name: "Normal",
  38597. height: math.unit(1.7, "m"),
  38598. default: true
  38599. },
  38600. {
  38601. name: "Macro",
  38602. height: math.unit(152, "m")
  38603. },
  38604. ]
  38605. ))
  38606. characterMakers.push(() => makeCharacter(
  38607. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38608. {
  38609. front: {
  38610. height: math.unit(100, "miles"),
  38611. weight: math.unit(20000, "tons"),
  38612. name: "Front",
  38613. image: {
  38614. source: "./media/characters/cookie/front.svg",
  38615. extra: 1125/1070,
  38616. bottom: 30/1155
  38617. }
  38618. },
  38619. },
  38620. [
  38621. {
  38622. name: "Big",
  38623. height: math.unit(50, "feet")
  38624. },
  38625. {
  38626. name: "Macro",
  38627. height: math.unit(100, "miles"),
  38628. default: true
  38629. },
  38630. {
  38631. name: "Megamacro",
  38632. height: math.unit(90000, "miles")
  38633. },
  38634. ]
  38635. ))
  38636. characterMakers.push(() => makeCharacter(
  38637. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38638. {
  38639. front: {
  38640. height: math.unit(6, "feet"),
  38641. weight: math.unit(145, "lb"),
  38642. name: "Front",
  38643. image: {
  38644. source: "./media/characters/farzian/front.svg",
  38645. extra: 1902/1693,
  38646. bottom: 108/2010
  38647. }
  38648. },
  38649. },
  38650. [
  38651. {
  38652. name: "Macro",
  38653. height: math.unit(500, "feet"),
  38654. default: true
  38655. },
  38656. ]
  38657. ))
  38658. characterMakers.push(() => makeCharacter(
  38659. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38660. {
  38661. front: {
  38662. height: math.unit(3 + 6/12, "feet"),
  38663. weight: math.unit(50, "lb"),
  38664. name: "Front",
  38665. image: {
  38666. source: "./media/characters/kimberly-tilson/front.svg",
  38667. extra: 1400/1322,
  38668. bottom: 36/1436
  38669. }
  38670. },
  38671. back: {
  38672. height: math.unit(3 + 6/12, "feet"),
  38673. weight: math.unit(50, "lb"),
  38674. name: "Back",
  38675. image: {
  38676. source: "./media/characters/kimberly-tilson/back.svg",
  38677. extra: 1370/1307,
  38678. bottom: 20/1390
  38679. }
  38680. },
  38681. },
  38682. [
  38683. {
  38684. name: "Normal",
  38685. height: math.unit(3 + 6/12, "feet"),
  38686. default: true
  38687. },
  38688. ]
  38689. ))
  38690. characterMakers.push(() => makeCharacter(
  38691. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38692. {
  38693. front: {
  38694. height: math.unit(1148, "feet"),
  38695. weight: math.unit(34057, "lb"),
  38696. name: "Front",
  38697. image: {
  38698. source: "./media/characters/harthos/front.svg",
  38699. extra: 1391/1339,
  38700. bottom: 13/1404
  38701. }
  38702. },
  38703. },
  38704. [
  38705. {
  38706. name: "Macro",
  38707. height: math.unit(1148, "feet"),
  38708. default: true
  38709. },
  38710. ]
  38711. ))
  38712. characterMakers.push(() => makeCharacter(
  38713. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38714. {
  38715. front: {
  38716. height: math.unit(15, "feet"),
  38717. name: "Front",
  38718. image: {
  38719. source: "./media/characters/hypatia/front.svg",
  38720. extra: 1653/1591,
  38721. bottom: 79/1732
  38722. }
  38723. },
  38724. },
  38725. [
  38726. {
  38727. name: "Normal",
  38728. height: math.unit(15, "feet")
  38729. },
  38730. {
  38731. name: "Small",
  38732. height: math.unit(300, "feet")
  38733. },
  38734. {
  38735. name: "Macro",
  38736. height: math.unit(2500, "feet"),
  38737. default: true
  38738. },
  38739. {
  38740. name: "Mega Macro",
  38741. height: math.unit(1500, "miles")
  38742. },
  38743. {
  38744. name: "Giga Macro",
  38745. height: math.unit(1.5e6, "miles")
  38746. },
  38747. ]
  38748. ))
  38749. characterMakers.push(() => makeCharacter(
  38750. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38751. {
  38752. front: {
  38753. height: math.unit(6, "feet"),
  38754. weight: math.unit(200, "lb"),
  38755. name: "Front",
  38756. image: {
  38757. source: "./media/characters/wulver/front.svg",
  38758. extra: 1724/1632,
  38759. bottom: 130/1854
  38760. }
  38761. },
  38762. frontNsfw: {
  38763. height: math.unit(6, "feet"),
  38764. weight: math.unit(200, "lb"),
  38765. name: "Front (NSFW)",
  38766. image: {
  38767. source: "./media/characters/wulver/front-nsfw.svg",
  38768. extra: 1724/1632,
  38769. bottom: 130/1854
  38770. }
  38771. },
  38772. },
  38773. [
  38774. {
  38775. name: "Human-Sized",
  38776. height: math.unit(6, "feet")
  38777. },
  38778. {
  38779. name: "Normal",
  38780. height: math.unit(4, "meters"),
  38781. default: true
  38782. },
  38783. {
  38784. name: "Large",
  38785. height: math.unit(6, "m")
  38786. },
  38787. ]
  38788. ))
  38789. characterMakers.push(() => makeCharacter(
  38790. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38791. {
  38792. front: {
  38793. height: math.unit(7, "feet"),
  38794. name: "Front",
  38795. image: {
  38796. source: "./media/characters/maru/front.svg",
  38797. extra: 1595/1570,
  38798. bottom: 0/1595
  38799. }
  38800. },
  38801. },
  38802. [
  38803. {
  38804. name: "Normal",
  38805. height: math.unit(7, "feet"),
  38806. default: true
  38807. },
  38808. {
  38809. name: "Macro",
  38810. height: math.unit(700, "feet")
  38811. },
  38812. {
  38813. name: "Mega Macro",
  38814. height: math.unit(25, "miles")
  38815. },
  38816. ]
  38817. ))
  38818. characterMakers.push(() => makeCharacter(
  38819. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38820. {
  38821. front: {
  38822. height: math.unit(6, "feet"),
  38823. weight: math.unit(170, "lb"),
  38824. name: "Front",
  38825. image: {
  38826. source: "./media/characters/xenon/front.svg",
  38827. extra: 1376/1305,
  38828. bottom: 56/1432
  38829. }
  38830. },
  38831. back: {
  38832. height: math.unit(6, "feet"),
  38833. weight: math.unit(170, "lb"),
  38834. name: "Back",
  38835. image: {
  38836. source: "./media/characters/xenon/back.svg",
  38837. extra: 1328/1259,
  38838. bottom: 95/1423
  38839. }
  38840. },
  38841. maw: {
  38842. height: math.unit(0.52, "feet"),
  38843. name: "Maw",
  38844. image: {
  38845. source: "./media/characters/xenon/maw.svg"
  38846. }
  38847. },
  38848. hand: {
  38849. height: math.unit(0.82, "feet"),
  38850. name: "Hand",
  38851. image: {
  38852. source: "./media/characters/xenon/hand.svg"
  38853. }
  38854. },
  38855. foot: {
  38856. height: math.unit(1.13, "feet"),
  38857. name: "Foot",
  38858. image: {
  38859. source: "./media/characters/xenon/foot.svg"
  38860. }
  38861. },
  38862. },
  38863. [
  38864. {
  38865. name: "Micro",
  38866. height: math.unit(0.8, "inches")
  38867. },
  38868. {
  38869. name: "Normal",
  38870. height: math.unit(6, "feet")
  38871. },
  38872. {
  38873. name: "Macro",
  38874. height: math.unit(50, "feet"),
  38875. default: true
  38876. },
  38877. {
  38878. name: "Macro+",
  38879. height: math.unit(250, "feet")
  38880. },
  38881. {
  38882. name: "Megamacro",
  38883. height: math.unit(1500, "feet")
  38884. },
  38885. ]
  38886. ))
  38887. characterMakers.push(() => makeCharacter(
  38888. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38889. {
  38890. front: {
  38891. height: math.unit(7 + 5/12, "feet"),
  38892. name: "Front",
  38893. image: {
  38894. source: "./media/characters/zane/front.svg",
  38895. extra: 1260/1203,
  38896. bottom: 94/1354
  38897. }
  38898. },
  38899. back: {
  38900. height: math.unit(5.05, "feet"),
  38901. name: "Back",
  38902. image: {
  38903. source: "./media/characters/zane/back.svg",
  38904. extra: 893/829,
  38905. bottom: 30/923
  38906. }
  38907. },
  38908. werewolf: {
  38909. height: math.unit(11, "feet"),
  38910. name: "Werewolf",
  38911. image: {
  38912. source: "./media/characters/zane/werewolf.svg",
  38913. extra: 1383/1323,
  38914. bottom: 89/1472
  38915. }
  38916. },
  38917. foot: {
  38918. height: math.unit(1.46, "feet"),
  38919. name: "Foot",
  38920. image: {
  38921. source: "./media/characters/zane/foot.svg"
  38922. }
  38923. },
  38924. footFront: {
  38925. height: math.unit(0.784, "feet"),
  38926. name: "Foot (Front)",
  38927. image: {
  38928. source: "./media/characters/zane/foot-front.svg"
  38929. }
  38930. },
  38931. dick: {
  38932. height: math.unit(1.95, "feet"),
  38933. name: "Dick",
  38934. image: {
  38935. source: "./media/characters/zane/dick.svg"
  38936. }
  38937. },
  38938. dickWerewolf: {
  38939. height: math.unit(3.77, "feet"),
  38940. name: "Dick (Werewolf)",
  38941. image: {
  38942. source: "./media/characters/zane/dick.svg"
  38943. }
  38944. },
  38945. },
  38946. [
  38947. {
  38948. name: "Normal",
  38949. height: math.unit(7 + 5/12, "feet"),
  38950. default: true
  38951. },
  38952. ]
  38953. ))
  38954. characterMakers.push(() => makeCharacter(
  38955. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  38956. {
  38957. front: {
  38958. height: math.unit(6 + 2/12, "feet"),
  38959. weight: math.unit(284, "lb"),
  38960. name: "Front",
  38961. image: {
  38962. source: "./media/characters/benni-desparque/front.svg",
  38963. extra: 1353/1126,
  38964. bottom: 69/1422
  38965. }
  38966. },
  38967. },
  38968. [
  38969. {
  38970. name: "Civilian",
  38971. height: math.unit(6 + 2/12, "feet")
  38972. },
  38973. {
  38974. name: "Normal",
  38975. height: math.unit(98, "feet"),
  38976. default: true
  38977. },
  38978. {
  38979. name: "Kaiju Fighter",
  38980. height: math.unit(268, "feet")
  38981. },
  38982. ]
  38983. ))
  38984. characterMakers.push(() => makeCharacter(
  38985. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  38986. {
  38987. front: {
  38988. height: math.unit(5, "feet"),
  38989. weight: math.unit(105, "lb"),
  38990. name: "Front",
  38991. image: {
  38992. source: "./media/characters/maxine/front.svg",
  38993. extra: 1386/1250,
  38994. bottom: 71/1457
  38995. }
  38996. },
  38997. },
  38998. [
  38999. {
  39000. name: "Normal",
  39001. height: math.unit(5, "feet"),
  39002. default: true
  39003. },
  39004. ]
  39005. ))
  39006. characterMakers.push(() => makeCharacter(
  39007. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39008. {
  39009. front: {
  39010. height: math.unit(11 + 7/12, "feet"),
  39011. weight: math.unit(9576, "lb"),
  39012. name: "Front",
  39013. image: {
  39014. source: "./media/characters/scaly/front.svg",
  39015. extra: 888/867,
  39016. bottom: 36/924
  39017. }
  39018. },
  39019. },
  39020. [
  39021. {
  39022. name: "Normal",
  39023. height: math.unit(11 + 7/12, "feet"),
  39024. default: true
  39025. },
  39026. ]
  39027. ))
  39028. characterMakers.push(() => makeCharacter(
  39029. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39030. {
  39031. front: {
  39032. height: math.unit(9, "inches"),
  39033. name: "Front",
  39034. image: {
  39035. source: "./media/characters/saelria/front.svg",
  39036. extra: 662/621,
  39037. bottom: 12/674
  39038. }
  39039. },
  39040. },
  39041. [
  39042. {
  39043. name: "Tiny",
  39044. height: math.unit(9, "inches"),
  39045. default: true
  39046. },
  39047. ]
  39048. ))
  39049. characterMakers.push(() => makeCharacter(
  39050. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39051. {
  39052. front: {
  39053. height: math.unit(80, "meters"),
  39054. weight: math.unit(7000, "tonnes"),
  39055. name: "Front",
  39056. image: {
  39057. source: "./media/characters/tef/front.svg",
  39058. extra: 2036/1991,
  39059. bottom: 54/2090
  39060. }
  39061. },
  39062. back: {
  39063. height: math.unit(80, "meters"),
  39064. weight: math.unit(7000, "tonnes"),
  39065. name: "Back",
  39066. image: {
  39067. source: "./media/characters/tef/back.svg",
  39068. extra: 2036/1991,
  39069. bottom: 54/2090
  39070. }
  39071. },
  39072. },
  39073. [
  39074. {
  39075. name: "Macro",
  39076. height: math.unit(80, "meters"),
  39077. default: true
  39078. },
  39079. ]
  39080. ))
  39081. characterMakers.push(() => makeCharacter(
  39082. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39083. {
  39084. front: {
  39085. height: math.unit(13, "feet"),
  39086. weight: math.unit(6, "tons"),
  39087. name: "Front",
  39088. image: {
  39089. source: "./media/characters/rover/front.svg",
  39090. extra: 1233/1156,
  39091. bottom: 50/1283
  39092. }
  39093. },
  39094. back: {
  39095. height: math.unit(13, "feet"),
  39096. weight: math.unit(6, "tons"),
  39097. name: "Back",
  39098. image: {
  39099. source: "./media/characters/rover/back.svg",
  39100. extra: 1327/1258,
  39101. bottom: 39/1366
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(13, "feet"),
  39109. default: true
  39110. },
  39111. {
  39112. name: "Macro",
  39113. height: math.unit(1300, "feet")
  39114. },
  39115. {
  39116. name: "Megamacro",
  39117. height: math.unit(1300, "miles")
  39118. },
  39119. {
  39120. name: "Gigamacro",
  39121. height: math.unit(1300000, "miles")
  39122. },
  39123. ]
  39124. ))
  39125. characterMakers.push(() => makeCharacter(
  39126. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39127. {
  39128. front: {
  39129. height: math.unit(6, "feet"),
  39130. weight: math.unit(150, "lb"),
  39131. name: "Front",
  39132. image: {
  39133. source: "./media/characters/ariz/front.svg",
  39134. extra: 1401/1346,
  39135. bottom: 5/1406
  39136. }
  39137. },
  39138. },
  39139. [
  39140. {
  39141. name: "Normal",
  39142. height: math.unit(10, "feet"),
  39143. default: true
  39144. },
  39145. ]
  39146. ))
  39147. characterMakers.push(() => makeCharacter(
  39148. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39149. {
  39150. front: {
  39151. height: math.unit(6, "feet"),
  39152. weight: math.unit(140, "lb"),
  39153. name: "Front",
  39154. image: {
  39155. source: "./media/characters/sigrun/front.svg",
  39156. extra: 1418/1359,
  39157. bottom: 27/1445
  39158. }
  39159. },
  39160. },
  39161. [
  39162. {
  39163. name: "Macro",
  39164. height: math.unit(35, "feet"),
  39165. default: true
  39166. },
  39167. ]
  39168. ))
  39169. characterMakers.push(() => makeCharacter(
  39170. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39171. {
  39172. front: {
  39173. height: math.unit(6, "feet"),
  39174. weight: math.unit(150, "lb"),
  39175. name: "Front",
  39176. image: {
  39177. source: "./media/characters/numin/front.svg",
  39178. extra: 1433/1388,
  39179. bottom: 12/1445
  39180. }
  39181. },
  39182. },
  39183. [
  39184. {
  39185. name: "Macro",
  39186. height: math.unit(21.5, "km"),
  39187. default: true
  39188. },
  39189. ]
  39190. ))
  39191. characterMakers.push(() => makeCharacter(
  39192. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39193. {
  39194. front: {
  39195. height: math.unit(6, "feet"),
  39196. weight: math.unit(463, "lb"),
  39197. name: "Front",
  39198. image: {
  39199. source: "./media/characters/melwa/front.svg",
  39200. extra: 1307/1248,
  39201. bottom: 93/1400
  39202. }
  39203. },
  39204. },
  39205. [
  39206. {
  39207. name: "Macro",
  39208. height: math.unit(50, "meters"),
  39209. default: true
  39210. },
  39211. ]
  39212. ))
  39213. characterMakers.push(() => makeCharacter(
  39214. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39215. {
  39216. front: {
  39217. height: math.unit(325, "feet"),
  39218. name: "Front",
  39219. image: {
  39220. source: "./media/characters/zorkaiju/front.svg",
  39221. extra: 1955/1814,
  39222. bottom: 40/1995
  39223. }
  39224. },
  39225. frontExtended: {
  39226. height: math.unit(325, "feet"),
  39227. name: "Front (Extended)",
  39228. image: {
  39229. source: "./media/characters/zorkaiju/front-extended.svg",
  39230. extra: 1955/1814,
  39231. bottom: 40/1995
  39232. }
  39233. },
  39234. side: {
  39235. height: math.unit(325, "feet"),
  39236. name: "Side",
  39237. image: {
  39238. source: "./media/characters/zorkaiju/side.svg",
  39239. extra: 1495/1396,
  39240. bottom: 17/1512
  39241. }
  39242. },
  39243. sideExtended: {
  39244. height: math.unit(325, "feet"),
  39245. name: "Side (Extended)",
  39246. image: {
  39247. source: "./media/characters/zorkaiju/side-extended.svg",
  39248. extra: 1495/1396,
  39249. bottom: 17/1512
  39250. }
  39251. },
  39252. back: {
  39253. height: math.unit(325, "feet"),
  39254. name: "Back",
  39255. image: {
  39256. source: "./media/characters/zorkaiju/back.svg",
  39257. extra: 1959/1821,
  39258. bottom: 31/1990
  39259. }
  39260. },
  39261. backExtended: {
  39262. height: math.unit(325, "feet"),
  39263. name: "Back (Extended)",
  39264. image: {
  39265. source: "./media/characters/zorkaiju/back-extended.svg",
  39266. extra: 1959/1821,
  39267. bottom: 31/1990
  39268. }
  39269. },
  39270. hand: {
  39271. height: math.unit(58.4, "feet"),
  39272. name: "Hand",
  39273. image: {
  39274. source: "./media/characters/zorkaiju/hand.svg"
  39275. }
  39276. },
  39277. handExtended: {
  39278. height: math.unit(61.4, "feet"),
  39279. name: "Hand (Extended)",
  39280. image: {
  39281. source: "./media/characters/zorkaiju/hand-extended.svg"
  39282. }
  39283. },
  39284. foot: {
  39285. height: math.unit(95, "feet"),
  39286. name: "Foot",
  39287. image: {
  39288. source: "./media/characters/zorkaiju/foot.svg"
  39289. }
  39290. },
  39291. leftArm: {
  39292. height: math.unit(59, "feet"),
  39293. name: "Left Arm",
  39294. image: {
  39295. source: "./media/characters/zorkaiju/left-arm.svg"
  39296. }
  39297. },
  39298. rightArm: {
  39299. height: math.unit(59, "feet"),
  39300. name: "Right Arm",
  39301. image: {
  39302. source: "./media/characters/zorkaiju/right-arm.svg"
  39303. }
  39304. },
  39305. tail: {
  39306. height: math.unit(104, "feet"),
  39307. name: "Tail",
  39308. image: {
  39309. source: "./media/characters/zorkaiju/tail.svg"
  39310. }
  39311. },
  39312. tailExtended: {
  39313. height: math.unit(104, "feet"),
  39314. name: "Tail (Extended)",
  39315. image: {
  39316. source: "./media/characters/zorkaiju/tail-extended.svg"
  39317. }
  39318. },
  39319. tailBottom: {
  39320. height: math.unit(104, "feet"),
  39321. name: "Tail Bottom",
  39322. image: {
  39323. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39324. }
  39325. },
  39326. crystal: {
  39327. height: math.unit(27.54, "feet"),
  39328. name: "Crystal",
  39329. image: {
  39330. source: "./media/characters/zorkaiju/crystal.svg"
  39331. }
  39332. },
  39333. },
  39334. [
  39335. {
  39336. name: "Kaiju",
  39337. height: math.unit(325, "feet"),
  39338. default: true
  39339. },
  39340. ]
  39341. ))
  39342. characterMakers.push(() => makeCharacter(
  39343. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39344. {
  39345. front: {
  39346. height: math.unit(6 + 1/12, "feet"),
  39347. weight: math.unit(115, "lb"),
  39348. name: "Front",
  39349. image: {
  39350. source: "./media/characters/bailey-belfry/front.svg",
  39351. extra: 1240/1121,
  39352. bottom: 101/1341
  39353. }
  39354. },
  39355. },
  39356. [
  39357. {
  39358. name: "Normal",
  39359. height: math.unit(6 + 1/12, "feet"),
  39360. default: true
  39361. },
  39362. ]
  39363. ))
  39364. characterMakers.push(() => makeCharacter(
  39365. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39366. {
  39367. side: {
  39368. height: math.unit(4, "meters"),
  39369. weight: math.unit(250, "kg"),
  39370. name: "Side",
  39371. image: {
  39372. source: "./media/characters/blacky/side.svg",
  39373. extra: 1027/919,
  39374. bottom: 43/1070
  39375. }
  39376. },
  39377. maw: {
  39378. height: math.unit(1, "meters"),
  39379. name: "Maw",
  39380. image: {
  39381. source: "./media/characters/blacky/maw.svg"
  39382. }
  39383. },
  39384. paw: {
  39385. height: math.unit(1, "meters"),
  39386. name: "Paw",
  39387. image: {
  39388. source: "./media/characters/blacky/paw.svg"
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "Normal",
  39395. height: math.unit(4, "meters"),
  39396. default: true
  39397. },
  39398. ]
  39399. ))
  39400. characterMakers.push(() => makeCharacter(
  39401. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39402. {
  39403. front: {
  39404. height: math.unit(170, "cm"),
  39405. weight: math.unit(66, "kg"),
  39406. name: "Front",
  39407. image: {
  39408. source: "./media/characters/thux-ei/front.svg",
  39409. extra: 1109/1011,
  39410. bottom: 8/1117
  39411. }
  39412. },
  39413. },
  39414. [
  39415. {
  39416. name: "Normal",
  39417. height: math.unit(170, "cm"),
  39418. default: true
  39419. },
  39420. ]
  39421. ))
  39422. characterMakers.push(() => makeCharacter(
  39423. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39424. {
  39425. front: {
  39426. height: math.unit(5, "feet"),
  39427. weight: math.unit(120, "lb"),
  39428. name: "Front",
  39429. image: {
  39430. source: "./media/characters/roxanne-voltaire/front.svg",
  39431. extra: 1901/1779,
  39432. bottom: 53/1954
  39433. }
  39434. },
  39435. },
  39436. [
  39437. {
  39438. name: "Normal",
  39439. height: math.unit(5, "feet"),
  39440. default: true
  39441. },
  39442. {
  39443. name: "Giant",
  39444. height: math.unit(50, "feet")
  39445. },
  39446. {
  39447. name: "Titan",
  39448. height: math.unit(500, "feet")
  39449. },
  39450. {
  39451. name: "Macro",
  39452. height: math.unit(5000, "feet")
  39453. },
  39454. {
  39455. name: "Megamacro",
  39456. height: math.unit(50000, "feet")
  39457. },
  39458. {
  39459. name: "Gigamacro",
  39460. height: math.unit(500000, "feet")
  39461. },
  39462. {
  39463. name: "Teramacro",
  39464. height: math.unit(5e6, "feet")
  39465. },
  39466. ]
  39467. ))
  39468. characterMakers.push(() => makeCharacter(
  39469. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39470. {
  39471. front: {
  39472. height: math.unit(6 + 2/12, "feet"),
  39473. name: "Front",
  39474. image: {
  39475. source: "./media/characters/squeaks/front.svg",
  39476. extra: 1823/1768,
  39477. bottom: 138/1961
  39478. }
  39479. },
  39480. },
  39481. [
  39482. {
  39483. name: "Micro",
  39484. height: math.unit(0.5, "inches")
  39485. },
  39486. {
  39487. name: "Normal",
  39488. height: math.unit(6 + 2/12, "feet"),
  39489. default: true
  39490. },
  39491. {
  39492. name: "Macro",
  39493. height: math.unit(600, "feet")
  39494. },
  39495. ]
  39496. ))
  39497. characterMakers.push(() => makeCharacter(
  39498. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39499. {
  39500. front: {
  39501. height: math.unit(1.72, "meters"),
  39502. name: "Front",
  39503. image: {
  39504. source: "./media/characters/archinger/front.svg",
  39505. extra: 1861/1675,
  39506. bottom: 125/1986
  39507. }
  39508. },
  39509. back: {
  39510. height: math.unit(1.72, "meters"),
  39511. name: "Back",
  39512. image: {
  39513. source: "./media/characters/archinger/back.svg",
  39514. extra: 1844/1701,
  39515. bottom: 104/1948
  39516. }
  39517. },
  39518. cock: {
  39519. height: math.unit(0.59, "feet"),
  39520. name: "Cock",
  39521. image: {
  39522. source: "./media/characters/archinger/cock.svg"
  39523. }
  39524. },
  39525. },
  39526. [
  39527. {
  39528. name: "Normal",
  39529. height: math.unit(1.72, "meters"),
  39530. default: true
  39531. },
  39532. {
  39533. name: "Macro",
  39534. height: math.unit(84, "meters")
  39535. },
  39536. {
  39537. name: "Macro+",
  39538. height: math.unit(112, "meters")
  39539. },
  39540. {
  39541. name: "Macro++",
  39542. height: math.unit(960, "meters")
  39543. },
  39544. {
  39545. name: "Macro+++",
  39546. height: math.unit(4, "km")
  39547. },
  39548. {
  39549. name: "Macro++++",
  39550. height: math.unit(48, "km")
  39551. },
  39552. {
  39553. name: "Macro+++++",
  39554. height: math.unit(4500, "km")
  39555. },
  39556. ]
  39557. ))
  39558. characterMakers.push(() => makeCharacter(
  39559. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39560. {
  39561. front: {
  39562. height: math.unit(5 + 5/12, "feet"),
  39563. name: "Front",
  39564. image: {
  39565. source: "./media/characters/alsnapz/front.svg",
  39566. extra: 1157/1065,
  39567. bottom: 42/1199
  39568. }
  39569. },
  39570. },
  39571. [
  39572. {
  39573. name: "Normal",
  39574. height: math.unit(5 + 5/12, "feet"),
  39575. default: true
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39581. {
  39582. side: {
  39583. height: math.unit(3.2, "earths"),
  39584. name: "Side",
  39585. image: {
  39586. source: "./media/characters/mag/side.svg",
  39587. extra: 1331/1008,
  39588. bottom: 52/1383
  39589. }
  39590. },
  39591. wing: {
  39592. height: math.unit(1.94, "earths"),
  39593. name: "Wing",
  39594. image: {
  39595. source: "./media/characters/mag/wing.svg"
  39596. }
  39597. },
  39598. dick: {
  39599. height: math.unit(1.8, "earths"),
  39600. name: "Dick",
  39601. image: {
  39602. source: "./media/characters/mag/dick.svg"
  39603. }
  39604. },
  39605. ass: {
  39606. height: math.unit(1.33, "earths"),
  39607. name: "Ass",
  39608. image: {
  39609. source: "./media/characters/mag/ass.svg"
  39610. }
  39611. },
  39612. head: {
  39613. height: math.unit(1.1, "earths"),
  39614. name: "Head",
  39615. image: {
  39616. source: "./media/characters/mag/head.svg"
  39617. }
  39618. },
  39619. maw: {
  39620. height: math.unit(1.62, "earths"),
  39621. name: "Maw",
  39622. image: {
  39623. source: "./media/characters/mag/maw.svg"
  39624. }
  39625. },
  39626. },
  39627. [
  39628. {
  39629. name: "Small",
  39630. height: math.unit(162, "feet")
  39631. },
  39632. {
  39633. name: "Normal",
  39634. height: math.unit(3.2, "earths"),
  39635. default: true
  39636. },
  39637. ]
  39638. ))
  39639. characterMakers.push(() => makeCharacter(
  39640. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39641. {
  39642. front: {
  39643. height: math.unit(512, "feet"),
  39644. weight: math.unit(63509, "tonnes"),
  39645. name: "Front",
  39646. image: {
  39647. source: "./media/characters/vorrel-harroc/front.svg",
  39648. extra: 1075/1063,
  39649. bottom: 62/1137
  39650. }
  39651. },
  39652. },
  39653. [
  39654. {
  39655. name: "Normal",
  39656. height: math.unit(10, "feet")
  39657. },
  39658. {
  39659. name: "Macro",
  39660. height: math.unit(512, "feet"),
  39661. default: true
  39662. },
  39663. {
  39664. name: "Megamacro",
  39665. height: math.unit(256, "miles")
  39666. },
  39667. {
  39668. name: "Gigamacro",
  39669. height: math.unit(4096, "miles")
  39670. },
  39671. ]
  39672. ))
  39673. characterMakers.push(() => makeCharacter(
  39674. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39675. {
  39676. side: {
  39677. height: math.unit(50, "feet"),
  39678. name: "Side",
  39679. image: {
  39680. source: "./media/characters/froimar/side.svg",
  39681. extra: 855/638,
  39682. bottom: 99/954
  39683. }
  39684. },
  39685. },
  39686. [
  39687. {
  39688. name: "Macro",
  39689. height: math.unit(50, "feet"),
  39690. default: true
  39691. },
  39692. ]
  39693. ))
  39694. characterMakers.push(() => makeCharacter(
  39695. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39696. {
  39697. front: {
  39698. height: math.unit(210, "miles"),
  39699. name: "Front",
  39700. image: {
  39701. source: "./media/characters/timothy/front.svg",
  39702. extra: 1007/943,
  39703. bottom: 62/1069
  39704. }
  39705. },
  39706. frontSkirt: {
  39707. height: math.unit(210, "miles"),
  39708. name: "Front (Skirt)",
  39709. image: {
  39710. source: "./media/characters/timothy/front-skirt.svg",
  39711. extra: 1007/943,
  39712. bottom: 62/1069
  39713. }
  39714. },
  39715. frontCoat: {
  39716. height: math.unit(210, "miles"),
  39717. name: "Front (Coat)",
  39718. image: {
  39719. source: "./media/characters/timothy/front-coat.svg",
  39720. extra: 1007/943,
  39721. bottom: 62/1069
  39722. }
  39723. },
  39724. },
  39725. [
  39726. {
  39727. name: "Macro",
  39728. height: math.unit(210, "miles"),
  39729. default: true
  39730. },
  39731. {
  39732. name: "Megamacro",
  39733. height: math.unit(210000, "miles")
  39734. },
  39735. ]
  39736. ))
  39737. characterMakers.push(() => makeCharacter(
  39738. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39739. {
  39740. front: {
  39741. height: math.unit(188, "feet"),
  39742. name: "Front",
  39743. image: {
  39744. source: "./media/characters/pyotr/front.svg",
  39745. extra: 1912/1826,
  39746. bottom: 18/1930
  39747. }
  39748. },
  39749. },
  39750. [
  39751. {
  39752. name: "Macro",
  39753. height: math.unit(188, "feet"),
  39754. default: true
  39755. },
  39756. {
  39757. name: "Megamacro",
  39758. height: math.unit(8, "miles")
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39764. {
  39765. side: {
  39766. height: math.unit(10, "feet"),
  39767. weight: math.unit(4500, "lb"),
  39768. name: "Side",
  39769. image: {
  39770. source: "./media/characters/ackart/side.svg",
  39771. extra: 1776/1668,
  39772. bottom: 116/1892
  39773. }
  39774. },
  39775. },
  39776. [
  39777. {
  39778. name: "Normal",
  39779. height: math.unit(10, "feet"),
  39780. default: true
  39781. },
  39782. ]
  39783. ))
  39784. characterMakers.push(() => makeCharacter(
  39785. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39786. {
  39787. side: {
  39788. height: math.unit(21, "feet"),
  39789. name: "Side",
  39790. image: {
  39791. source: "./media/characters/nolow/side.svg",
  39792. extra: 1484/1434,
  39793. bottom: 85/1569
  39794. }
  39795. },
  39796. sideErect: {
  39797. height: math.unit(21, "feet"),
  39798. name: "Side-erect",
  39799. image: {
  39800. source: "./media/characters/nolow/side-erect.svg",
  39801. extra: 1484/1434,
  39802. bottom: 85/1569
  39803. }
  39804. },
  39805. },
  39806. [
  39807. {
  39808. name: "Regular",
  39809. height: math.unit(12, "feet")
  39810. },
  39811. {
  39812. name: "Big Chee",
  39813. height: math.unit(21, "feet"),
  39814. default: true
  39815. },
  39816. ]
  39817. ))
  39818. characterMakers.push(() => makeCharacter(
  39819. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39820. {
  39821. front: {
  39822. height: math.unit(7, "feet"),
  39823. weight: math.unit(250, "lb"),
  39824. name: "Front",
  39825. image: {
  39826. source: "./media/characters/nines/front.svg",
  39827. extra: 1741/1607,
  39828. bottom: 41/1782
  39829. }
  39830. },
  39831. side: {
  39832. height: math.unit(7, "feet"),
  39833. weight: math.unit(250, "lb"),
  39834. name: "Side",
  39835. image: {
  39836. source: "./media/characters/nines/side.svg",
  39837. extra: 1854/1735,
  39838. bottom: 93/1947
  39839. }
  39840. },
  39841. back: {
  39842. height: math.unit(7, "feet"),
  39843. weight: math.unit(250, "lb"),
  39844. name: "Back",
  39845. image: {
  39846. source: "./media/characters/nines/back.svg",
  39847. extra: 1748/1615,
  39848. bottom: 20/1768
  39849. }
  39850. },
  39851. },
  39852. [
  39853. {
  39854. name: "Megamacro",
  39855. height: math.unit(99, "km"),
  39856. default: true
  39857. },
  39858. ]
  39859. ))
  39860. characterMakers.push(() => makeCharacter(
  39861. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  39862. {
  39863. front: {
  39864. height: math.unit(5 + 10/12, "feet"),
  39865. weight: math.unit(210, "lb"),
  39866. name: "Front",
  39867. image: {
  39868. source: "./media/characters/zenith/front.svg",
  39869. extra: 1531/1452,
  39870. bottom: 198/1729
  39871. }
  39872. },
  39873. back: {
  39874. height: math.unit(5 + 10/12, "feet"),
  39875. weight: math.unit(210, "lb"),
  39876. name: "Back",
  39877. image: {
  39878. source: "./media/characters/zenith/back.svg",
  39879. extra: 1571/1487,
  39880. bottom: 75/1646
  39881. }
  39882. },
  39883. },
  39884. [
  39885. {
  39886. name: "Normal",
  39887. height: math.unit(5 + 10/12, "feet"),
  39888. default: true
  39889. }
  39890. ]
  39891. ))
  39892. characterMakers.push(() => makeCharacter(
  39893. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  39894. {
  39895. front: {
  39896. height: math.unit(4, "feet"),
  39897. weight: math.unit(60, "lb"),
  39898. name: "Front",
  39899. image: {
  39900. source: "./media/characters/jasper/front.svg",
  39901. extra: 1450/1379,
  39902. bottom: 19/1469
  39903. }
  39904. },
  39905. },
  39906. [
  39907. {
  39908. name: "Normal",
  39909. height: math.unit(4, "feet"),
  39910. default: true
  39911. },
  39912. ]
  39913. ))
  39914. characterMakers.push(() => makeCharacter(
  39915. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  39916. {
  39917. front: {
  39918. height: math.unit(6 + 5/12, "feet"),
  39919. weight: math.unit(290, "lb"),
  39920. name: "Front",
  39921. image: {
  39922. source: "./media/characters/tiberius-thyben/front.svg",
  39923. extra: 757/739,
  39924. bottom: 39/796
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Micro",
  39931. height: math.unit(1.5, "inches")
  39932. },
  39933. {
  39934. name: "Normal",
  39935. height: math.unit(6 + 5/12, "feet"),
  39936. default: true
  39937. },
  39938. {
  39939. name: "Macro",
  39940. height: math.unit(300, "feet")
  39941. },
  39942. ]
  39943. ))
  39944. characterMakers.push(() => makeCharacter(
  39945. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  39946. {
  39947. front: {
  39948. height: math.unit(5 + 6/12, "feet"),
  39949. weight: math.unit(60, "kg"),
  39950. name: "Front",
  39951. image: {
  39952. source: "./media/characters/sabre/front.svg",
  39953. extra: 738/671,
  39954. bottom: 27/765
  39955. }
  39956. },
  39957. },
  39958. [
  39959. {
  39960. name: "Teeny",
  39961. height: math.unit(2, "inches")
  39962. },
  39963. {
  39964. name: "Smol",
  39965. height: math.unit(8, "inches")
  39966. },
  39967. {
  39968. name: "Normal",
  39969. height: math.unit(5 + 6/12, "feet"),
  39970. default: true
  39971. },
  39972. {
  39973. name: "Mini-Macro",
  39974. height: math.unit(15, "feet")
  39975. },
  39976. {
  39977. name: "Macro",
  39978. height: math.unit(50, "feet")
  39979. },
  39980. ]
  39981. ))
  39982. characterMakers.push(() => makeCharacter(
  39983. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  39984. {
  39985. front: {
  39986. height: math.unit(6 + 4/12, "feet"),
  39987. weight: math.unit(170, "lb"),
  39988. name: "Front",
  39989. image: {
  39990. source: "./media/characters/charlie/front.svg",
  39991. extra: 1348/1228,
  39992. bottom: 15/1363
  39993. }
  39994. },
  39995. },
  39996. [
  39997. {
  39998. name: "Macro",
  39999. height: math.unit(1700, "meters"),
  40000. default: true
  40001. },
  40002. {
  40003. name: "MegaMacro",
  40004. height: math.unit(20400, "meters")
  40005. },
  40006. ]
  40007. ))
  40008. characterMakers.push(() => makeCharacter(
  40009. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40010. {
  40011. front: {
  40012. height: math.unit(6 + 3/12, "feet"),
  40013. weight: math.unit(185, "lb"),
  40014. name: "Front",
  40015. image: {
  40016. source: "./media/characters/susan-grant/front.svg",
  40017. extra: 1351/1327,
  40018. bottom: 26/1377
  40019. }
  40020. },
  40021. },
  40022. [
  40023. {
  40024. name: "Normal",
  40025. height: math.unit(6 + 3/12, "feet"),
  40026. default: true
  40027. },
  40028. {
  40029. name: "Macro",
  40030. height: math.unit(225, "feet")
  40031. },
  40032. {
  40033. name: "Macro+",
  40034. height: math.unit(900, "feet")
  40035. },
  40036. {
  40037. name: "MegaMacro",
  40038. height: math.unit(14400, "feet")
  40039. },
  40040. ]
  40041. ))
  40042. characterMakers.push(() => makeCharacter(
  40043. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40044. {
  40045. front: {
  40046. height: math.unit(5 + 4/12, "feet"),
  40047. weight: math.unit(110, "lb"),
  40048. name: "Front",
  40049. image: {
  40050. source: "./media/characters/axel-isanov/front.svg",
  40051. extra: 1096/1065,
  40052. bottom: 13/1109
  40053. }
  40054. },
  40055. },
  40056. [
  40057. {
  40058. name: "Normal",
  40059. height: math.unit(5 + 4/12, "feet"),
  40060. default: true
  40061. },
  40062. ]
  40063. ))
  40064. characterMakers.push(() => makeCharacter(
  40065. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40066. {
  40067. front: {
  40068. height: math.unit(9, "feet"),
  40069. weight: math.unit(467, "lb"),
  40070. name: "Front",
  40071. image: {
  40072. source: "./media/characters/necahual/front.svg",
  40073. extra: 920/873,
  40074. bottom: 26/946
  40075. }
  40076. },
  40077. back: {
  40078. height: math.unit(9, "feet"),
  40079. weight: math.unit(467, "lb"),
  40080. name: "Back",
  40081. image: {
  40082. source: "./media/characters/necahual/back.svg",
  40083. extra: 930/884,
  40084. bottom: 16/946
  40085. }
  40086. },
  40087. frontUnderwear: {
  40088. height: math.unit(9, "feet"),
  40089. weight: math.unit(467, "lb"),
  40090. name: "Front (Underwear)",
  40091. image: {
  40092. source: "./media/characters/necahual/front-underwear.svg",
  40093. extra: 920/873,
  40094. bottom: 26/946
  40095. }
  40096. },
  40097. frontDressed: {
  40098. height: math.unit(9, "feet"),
  40099. weight: math.unit(467, "lb"),
  40100. name: "Front (Dressed)",
  40101. image: {
  40102. source: "./media/characters/necahual/front-dressed.svg",
  40103. extra: 920/873,
  40104. bottom: 26/946
  40105. }
  40106. },
  40107. },
  40108. [
  40109. {
  40110. name: "Comprsesed",
  40111. height: math.unit(9, "feet")
  40112. },
  40113. {
  40114. name: "Natural",
  40115. height: math.unit(15, "feet"),
  40116. default: true
  40117. },
  40118. {
  40119. name: "Boosted",
  40120. height: math.unit(50, "feet")
  40121. },
  40122. {
  40123. name: "Boosted+",
  40124. height: math.unit(150, "feet")
  40125. },
  40126. {
  40127. name: "Max",
  40128. height: math.unit(500, "feet")
  40129. },
  40130. ]
  40131. ))
  40132. characterMakers.push(() => makeCharacter(
  40133. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40134. {
  40135. front: {
  40136. height: math.unit(22 + 1/12, "feet"),
  40137. weight: math.unit(3200, "lb"),
  40138. name: "Front",
  40139. image: {
  40140. source: "./media/characters/theo-acacia/front.svg",
  40141. extra: 1796/1741,
  40142. bottom: 83/1879
  40143. }
  40144. },
  40145. frontUnderwear: {
  40146. height: math.unit(22 + 1/12, "feet"),
  40147. weight: math.unit(3200, "lb"),
  40148. name: "Front (Underwear)",
  40149. image: {
  40150. source: "./media/characters/theo-acacia/front-underwear.svg",
  40151. extra: 1796/1741,
  40152. bottom: 83/1879
  40153. }
  40154. },
  40155. frontNude: {
  40156. height: math.unit(22 + 1/12, "feet"),
  40157. weight: math.unit(3200, "lb"),
  40158. name: "Front (Nude)",
  40159. image: {
  40160. source: "./media/characters/theo-acacia/front-nude.svg",
  40161. extra: 1796/1741,
  40162. bottom: 83/1879
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "Normal",
  40169. height: math.unit(22 + 1/12, "feet"),
  40170. default: true
  40171. },
  40172. ]
  40173. ))
  40174. characterMakers.push(() => makeCharacter(
  40175. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40176. {
  40177. front: {
  40178. height: math.unit(20, "feet"),
  40179. name: "Front",
  40180. image: {
  40181. source: "./media/characters/astra/front.svg",
  40182. extra: 1850/1714,
  40183. bottom: 106/1956
  40184. }
  40185. },
  40186. frontUndressed: {
  40187. height: math.unit(20, "feet"),
  40188. name: "Front (Undressed)",
  40189. image: {
  40190. source: "./media/characters/astra/front-undressed.svg",
  40191. extra: 1926/1749,
  40192. bottom: 0/1926
  40193. }
  40194. },
  40195. hand: {
  40196. height: math.unit(1.53, "feet"),
  40197. name: "Hand",
  40198. image: {
  40199. source: "./media/characters/astra/hand.svg"
  40200. }
  40201. },
  40202. paw: {
  40203. height: math.unit(1.53, "feet"),
  40204. name: "Paw",
  40205. image: {
  40206. source: "./media/characters/astra/paw.svg"
  40207. }
  40208. },
  40209. },
  40210. [
  40211. {
  40212. name: "Smallest",
  40213. height: math.unit(20, "feet")
  40214. },
  40215. {
  40216. name: "Normal",
  40217. height: math.unit(1e9, "miles"),
  40218. default: true
  40219. },
  40220. {
  40221. name: "Larger",
  40222. height: math.unit(5, "multiverses")
  40223. },
  40224. {
  40225. name: "Largest",
  40226. height: math.unit(1e9, "multiverses")
  40227. },
  40228. ]
  40229. ))
  40230. characterMakers.push(() => makeCharacter(
  40231. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40232. {
  40233. front: {
  40234. height: math.unit(8, "feet"),
  40235. name: "Front",
  40236. image: {
  40237. source: "./media/characters/breanna/front.svg",
  40238. extra: 1912/1632,
  40239. bottom: 33/1945
  40240. }
  40241. },
  40242. },
  40243. [
  40244. {
  40245. name: "Smallest",
  40246. height: math.unit(8, "feet")
  40247. },
  40248. {
  40249. name: "Normal",
  40250. height: math.unit(1, "mile"),
  40251. default: true
  40252. },
  40253. {
  40254. name: "Maximum",
  40255. height: math.unit(1500000000000, "lightyears")
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(5 + 11/12, "feet"),
  40264. weight: math.unit(155, "lb"),
  40265. name: "Front",
  40266. image: {
  40267. source: "./media/characters/cai/front.svg",
  40268. extra: 1823/1702,
  40269. bottom: 32/1855
  40270. }
  40271. },
  40272. back: {
  40273. height: math.unit(5 + 11/12, "feet"),
  40274. weight: math.unit(155, "lb"),
  40275. name: "Back",
  40276. image: {
  40277. source: "./media/characters/cai/back.svg",
  40278. extra: 1809/1708,
  40279. bottom: 31/1840
  40280. }
  40281. },
  40282. },
  40283. [
  40284. {
  40285. name: "Normal",
  40286. height: math.unit(5 + 11/12, "feet"),
  40287. default: true
  40288. },
  40289. {
  40290. name: "Big",
  40291. height: math.unit(15, "feet")
  40292. },
  40293. {
  40294. name: "Macro",
  40295. height: math.unit(200, "feet")
  40296. },
  40297. ]
  40298. ))
  40299. characterMakers.push(() => makeCharacter(
  40300. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40301. {
  40302. front: {
  40303. height: math.unit(5 + 6/12, "feet"),
  40304. weight: math.unit(160, "lb"),
  40305. name: "Front",
  40306. image: {
  40307. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40308. extra: 1227/1174,
  40309. bottom: 37/1264
  40310. }
  40311. },
  40312. },
  40313. [
  40314. {
  40315. name: "Macro",
  40316. height: math.unit(444, "meters"),
  40317. default: true
  40318. },
  40319. ]
  40320. ))
  40321. //characters
  40322. function makeCharacters() {
  40323. const results = [];
  40324. characterMakers.forEach(character => {
  40325. results.push(character());
  40326. });
  40327. return results;
  40328. }