less copy protection, more size visualization
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

41675 linhas
1.0 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "Tyrannosaurus Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. "magpie": {
  1679. name: "Magpie",
  1680. parents: ["corvid"]
  1681. },
  1682. "civet": {
  1683. name: "Civet",
  1684. parents: ["feliform"]
  1685. },
  1686. "feliform": {
  1687. name: "Feliform",
  1688. parents: ["mammal"]
  1689. },
  1690. "tiefling": {
  1691. name: "Tiefling",
  1692. parents: ["devil"]
  1693. },
  1694. "devil": {
  1695. name: "Devil",
  1696. parents: ["supernatural"]
  1697. },
  1698. "sika-deer": {
  1699. name: "Sika Deer",
  1700. parents: ["deer"]
  1701. },
  1702. "vaporeon": {
  1703. name: "Vaporeon",
  1704. parents: ["eeveelution"]
  1705. },
  1706. "leafeon": {
  1707. name: "Leafeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "jolteon": {
  1711. name: "Jolteon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. }
  1715. //species
  1716. function getSpeciesInfo(speciesList) {
  1717. let result = new Set();
  1718. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1719. result.add(entry)
  1720. });
  1721. return Array.from(result);
  1722. };
  1723. function getSpeciesInfoHelper(species) {
  1724. if (!speciesData[species]) {
  1725. console.warn(species + " doesn't exist");
  1726. return [];
  1727. }
  1728. if (speciesData[species].parents) {
  1729. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1730. } else {
  1731. return [species];
  1732. }
  1733. }
  1734. characterMakers.push(() => makeCharacter(
  1735. {
  1736. name: "Fen",
  1737. species: ["crux"],
  1738. description: {
  1739. title: "Bio",
  1740. text: "Very furry. Sheds on everything."
  1741. },
  1742. tags: [
  1743. "anthro",
  1744. "goo"
  1745. ]
  1746. },
  1747. {
  1748. back: {
  1749. height: math.unit(2.2428, "meter"),
  1750. weight: math.unit(124.738, "kg"),
  1751. name: "Back",
  1752. image: {
  1753. source: "./media/characters/fen/back.svg",
  1754. },
  1755. info: {
  1756. description: {
  1757. mode: "append",
  1758. text: "\n\nHe is not currently looking at you."
  1759. }
  1760. }
  1761. },
  1762. full: {
  1763. height: math.unit(1.34, "meter"),
  1764. weight: math.unit(225, "kg"),
  1765. name: "Full",
  1766. image: {
  1767. source: "./media/characters/fen/full.svg"
  1768. },
  1769. info: {
  1770. description: {
  1771. mode: "append",
  1772. text: "\n\nMunch."
  1773. }
  1774. }
  1775. },
  1776. kneeling: {
  1777. height: math.unit(5.4, "feet"),
  1778. weight: math.unit(124.738, "kg"),
  1779. name: "Kneeling",
  1780. image: {
  1781. source: "./media/characters/fen/kneeling.svg",
  1782. extra: 563 / 507
  1783. }
  1784. },
  1785. goo: {
  1786. height: math.unit(2.8, "feet"),
  1787. weight: math.unit(125, "kg"),
  1788. capacity: math.unit(1, "people"),
  1789. name: "Goo",
  1790. image: {
  1791. source: "./media/characters/fen/goo.svg",
  1792. bottom: 116 / 613
  1793. }
  1794. },
  1795. lounging: {
  1796. height: math.unit(6.5, "feet"),
  1797. weight: math.unit(125, "kg"),
  1798. name: "Lounging",
  1799. image: {
  1800. source: "./media/characters/fen/lounging.svg"
  1801. }
  1802. },
  1803. },
  1804. [
  1805. {
  1806. name: "Normal",
  1807. height: math.unit(2.2428, "meter")
  1808. },
  1809. {
  1810. name: "Big",
  1811. height: math.unit(12, "feet")
  1812. },
  1813. {
  1814. name: "Minimacro",
  1815. height: math.unit(40, "feet"),
  1816. default: true,
  1817. info: {
  1818. description: {
  1819. mode: "append",
  1820. text: "\n\nTOO DAMN BIG"
  1821. }
  1822. }
  1823. },
  1824. {
  1825. name: "Macro",
  1826. height: math.unit(100, "feet"),
  1827. info: {
  1828. description: {
  1829. mode: "append",
  1830. text: "\n\nTOO DAMN BIG"
  1831. }
  1832. }
  1833. },
  1834. {
  1835. name: "Macro+",
  1836. height: math.unit(300, "feet")
  1837. },
  1838. {
  1839. name: "Megamacro",
  1840. height: math.unit(2, "miles")
  1841. }
  1842. ]
  1843. ))
  1844. characterMakers.push(() => makeCharacter(
  1845. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1846. {
  1847. front: {
  1848. height: math.unit(183, "cm"),
  1849. weight: math.unit(80, "kg"),
  1850. name: "Front",
  1851. image: {
  1852. source: "./media/characters/sofia-fluttertail/front.svg",
  1853. bottom: 0.01,
  1854. extra: 2154 / 2081
  1855. }
  1856. },
  1857. frontAlt: {
  1858. height: math.unit(183, "cm"),
  1859. weight: math.unit(80, "kg"),
  1860. name: "Front (alt)",
  1861. image: {
  1862. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1863. }
  1864. },
  1865. back: {
  1866. height: math.unit(183, "cm"),
  1867. weight: math.unit(80, "kg"),
  1868. name: "Back",
  1869. image: {
  1870. source: "./media/characters/sofia-fluttertail/back.svg"
  1871. }
  1872. },
  1873. kneeling: {
  1874. height: math.unit(125, "cm"),
  1875. weight: math.unit(80, "kg"),
  1876. name: "Kneeling",
  1877. image: {
  1878. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1879. extra: 1033 / 977,
  1880. bottom: 23.7 / 1057
  1881. }
  1882. },
  1883. maw: {
  1884. height: math.unit(183 / 5, "cm"),
  1885. name: "Maw",
  1886. image: {
  1887. source: "./media/characters/sofia-fluttertail/maw.svg"
  1888. }
  1889. },
  1890. mawcloseup: {
  1891. height: math.unit(183 / 5 * 0.41, "cm"),
  1892. name: "Maw (Closeup)",
  1893. image: {
  1894. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1895. }
  1896. },
  1897. paws: {
  1898. height: math.unit(1.17, "feet"),
  1899. name: "Paws",
  1900. image: {
  1901. source: "./media/characters/sofia-fluttertail/paws.svg",
  1902. extra: 851 / 851,
  1903. bottom: 17 / 868
  1904. }
  1905. },
  1906. },
  1907. [
  1908. {
  1909. name: "Normal",
  1910. height: math.unit(1.83, "meter")
  1911. },
  1912. {
  1913. name: "Size Thief",
  1914. height: math.unit(18, "feet")
  1915. },
  1916. {
  1917. name: "50 Foot Collie",
  1918. height: math.unit(50, "feet")
  1919. },
  1920. {
  1921. name: "Macro",
  1922. height: math.unit(96, "feet"),
  1923. default: true
  1924. },
  1925. {
  1926. name: "Megamerger",
  1927. height: math.unit(650, "feet")
  1928. },
  1929. ]
  1930. ))
  1931. characterMakers.push(() => makeCharacter(
  1932. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1933. {
  1934. front: {
  1935. height: math.unit(7, "feet"),
  1936. weight: math.unit(100, "kg"),
  1937. name: "Front",
  1938. image: {
  1939. source: "./media/characters/march/front.svg",
  1940. extra: 1992/1851,
  1941. bottom: 39/2031
  1942. }
  1943. },
  1944. foot: {
  1945. height: math.unit(0.9, "feet"),
  1946. name: "Foot",
  1947. image: {
  1948. source: "./media/characters/march/foot.svg"
  1949. }
  1950. },
  1951. },
  1952. [
  1953. {
  1954. name: "Normal",
  1955. height: math.unit(7.9, "feet")
  1956. },
  1957. {
  1958. name: "Macro",
  1959. height: math.unit(220, "meters")
  1960. },
  1961. {
  1962. name: "Megamacro",
  1963. height: math.unit(2.98, "km"),
  1964. default: true
  1965. },
  1966. {
  1967. name: "Gigamacro",
  1968. height: math.unit(15963, "km")
  1969. },
  1970. {
  1971. name: "Teramacro",
  1972. height: math.unit(2980000000, "km")
  1973. },
  1974. {
  1975. name: "Examacro",
  1976. height: math.unit(250, "parsecs")
  1977. },
  1978. ]
  1979. ))
  1980. characterMakers.push(() => makeCharacter(
  1981. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1982. {
  1983. front: {
  1984. height: math.unit(6, "feet"),
  1985. weight: math.unit(60, "kg"),
  1986. name: "Front",
  1987. image: {
  1988. source: "./media/characters/noir/front.svg",
  1989. extra: 1,
  1990. bottom: 0.032
  1991. }
  1992. },
  1993. },
  1994. [
  1995. {
  1996. name: "Normal",
  1997. height: math.unit(6.6, "feet")
  1998. },
  1999. {
  2000. name: "Macro",
  2001. height: math.unit(500, "feet")
  2002. },
  2003. {
  2004. name: "Megamacro",
  2005. height: math.unit(2.5, "km"),
  2006. default: true
  2007. },
  2008. {
  2009. name: "Gigamacro",
  2010. height: math.unit(22500, "km")
  2011. },
  2012. {
  2013. name: "Teramacro",
  2014. height: math.unit(2500000000, "km")
  2015. },
  2016. {
  2017. name: "Examacro",
  2018. height: math.unit(200, "parsecs")
  2019. },
  2020. ]
  2021. ))
  2022. characterMakers.push(() => makeCharacter(
  2023. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2024. {
  2025. front: {
  2026. height: math.unit(7, "feet"),
  2027. weight: math.unit(100, "kg"),
  2028. name: "Front",
  2029. image: {
  2030. source: "./media/characters/okuri/front.svg",
  2031. extra: 1,
  2032. bottom: 0.037
  2033. }
  2034. },
  2035. back: {
  2036. height: math.unit(7, "feet"),
  2037. weight: math.unit(100, "kg"),
  2038. name: "Back",
  2039. image: {
  2040. source: "./media/characters/okuri/back.svg",
  2041. extra: 1,
  2042. bottom: 0.007
  2043. }
  2044. },
  2045. },
  2046. [
  2047. {
  2048. name: "Megamacro",
  2049. height: math.unit(100, "miles"),
  2050. default: true
  2051. },
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2056. {
  2057. front: {
  2058. height: math.unit(7, "feet"),
  2059. weight: math.unit(100, "kg"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/manny/front.svg",
  2063. extra: 1,
  2064. bottom: 0.06
  2065. }
  2066. },
  2067. back: {
  2068. height: math.unit(7, "feet"),
  2069. weight: math.unit(100, "kg"),
  2070. name: "Back",
  2071. image: {
  2072. source: "./media/characters/manny/back.svg",
  2073. extra: 1,
  2074. bottom: 0.014
  2075. }
  2076. },
  2077. },
  2078. [
  2079. {
  2080. name: "Normal",
  2081. height: math.unit(7, "feet"),
  2082. },
  2083. {
  2084. name: "Macro",
  2085. height: math.unit(78, "feet"),
  2086. default: true
  2087. },
  2088. {
  2089. name: "Macro+",
  2090. height: math.unit(300, "meters")
  2091. },
  2092. {
  2093. name: "Macro++",
  2094. height: math.unit(2400, "meters")
  2095. },
  2096. {
  2097. name: "Megamacro",
  2098. height: math.unit(5167, "meters")
  2099. },
  2100. {
  2101. name: "Gigamacro",
  2102. height: math.unit(41769, "miles")
  2103. },
  2104. ]
  2105. ))
  2106. characterMakers.push(() => makeCharacter(
  2107. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2108. {
  2109. front: {
  2110. height: math.unit(7, "feet"),
  2111. weight: math.unit(100, "kg"),
  2112. name: "Front",
  2113. image: {
  2114. source: "./media/characters/adake/front-1.svg"
  2115. }
  2116. },
  2117. frontAlt: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Front (Alt)",
  2121. image: {
  2122. source: "./media/characters/adake/front-2.svg",
  2123. extra: 1,
  2124. bottom: 0.01
  2125. }
  2126. },
  2127. back: {
  2128. height: math.unit(7, "feet"),
  2129. weight: math.unit(100, "kg"),
  2130. name: "Back",
  2131. image: {
  2132. source: "./media/characters/adake/back.svg",
  2133. }
  2134. },
  2135. kneel: {
  2136. height: math.unit(5.385, "feet"),
  2137. weight: math.unit(100, "kg"),
  2138. name: "Kneeling",
  2139. image: {
  2140. source: "./media/characters/adake/kneel.svg",
  2141. bottom: 0.052
  2142. }
  2143. },
  2144. },
  2145. [
  2146. {
  2147. name: "Normal",
  2148. height: math.unit(7, "feet"),
  2149. },
  2150. {
  2151. name: "Macro",
  2152. height: math.unit(78, "feet"),
  2153. default: true
  2154. },
  2155. {
  2156. name: "Macro+",
  2157. height: math.unit(300, "meters")
  2158. },
  2159. {
  2160. name: "Macro++",
  2161. height: math.unit(2400, "meters")
  2162. },
  2163. {
  2164. name: "Megamacro",
  2165. height: math.unit(5167, "meters")
  2166. },
  2167. {
  2168. name: "Gigamacro",
  2169. height: math.unit(41769, "miles")
  2170. },
  2171. ]
  2172. ))
  2173. characterMakers.push(() => makeCharacter(
  2174. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2175. {
  2176. front: {
  2177. height: math.unit(1.65, "meters"),
  2178. weight: math.unit(50, "kg"),
  2179. name: "Front",
  2180. image: {
  2181. source: "./media/characters/elijah/front.svg",
  2182. extra: 858 / 830,
  2183. bottom: 95.5 / 953.8559
  2184. }
  2185. },
  2186. back: {
  2187. height: math.unit(1.65, "meters"),
  2188. weight: math.unit(50, "kg"),
  2189. name: "Back",
  2190. image: {
  2191. source: "./media/characters/elijah/back.svg",
  2192. extra: 895 / 850,
  2193. bottom: 5.3 / 897.956
  2194. }
  2195. },
  2196. frontNsfw: {
  2197. height: math.unit(1.65, "meters"),
  2198. weight: math.unit(50, "kg"),
  2199. name: "Front (NSFW)",
  2200. image: {
  2201. source: "./media/characters/elijah/front-nsfw.svg",
  2202. extra: 858 / 830,
  2203. bottom: 95.5 / 953.8559
  2204. }
  2205. },
  2206. backNsfw: {
  2207. height: math.unit(1.65, "meters"),
  2208. weight: math.unit(50, "kg"),
  2209. name: "Back (NSFW)",
  2210. image: {
  2211. source: "./media/characters/elijah/back-nsfw.svg",
  2212. extra: 895 / 850,
  2213. bottom: 5.3 / 897.956
  2214. }
  2215. },
  2216. dick: {
  2217. height: math.unit(1, "feet"),
  2218. name: "Dick",
  2219. image: {
  2220. source: "./media/characters/elijah/dick.svg"
  2221. }
  2222. },
  2223. beakOpen: {
  2224. height: math.unit(1.25, "feet"),
  2225. name: "Beak (Open)",
  2226. image: {
  2227. source: "./media/characters/elijah/beak-open.svg"
  2228. }
  2229. },
  2230. beakShut: {
  2231. height: math.unit(1.25, "feet"),
  2232. name: "Beak (Shut)",
  2233. image: {
  2234. source: "./media/characters/elijah/beak-shut.svg"
  2235. }
  2236. },
  2237. footFlexing: {
  2238. height: math.unit(1.61, "feet"),
  2239. name: "Foot (Flexing)",
  2240. image: {
  2241. source: "./media/characters/elijah/foot-flexing.svg"
  2242. }
  2243. },
  2244. footStepping: {
  2245. height: math.unit(1.44, "feet"),
  2246. name: "Foot (Stepping)",
  2247. image: {
  2248. source: "./media/characters/elijah/foot-stepping.svg"
  2249. }
  2250. },
  2251. plantigradeLeg: {
  2252. height: math.unit(2.34, "feet"),
  2253. name: "Plantigrade Leg",
  2254. image: {
  2255. source: "./media/characters/elijah/plantigrade-leg.svg"
  2256. }
  2257. },
  2258. plantigradeFootLeft: {
  2259. height: math.unit(0.9, "feet"),
  2260. name: "Plantigrade Foot (Left)",
  2261. image: {
  2262. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2263. }
  2264. },
  2265. plantigradeFootRight: {
  2266. height: math.unit(0.9, "feet"),
  2267. name: "Plantigrade Foot (Right)",
  2268. image: {
  2269. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2270. }
  2271. },
  2272. },
  2273. [
  2274. {
  2275. name: "Normal",
  2276. height: math.unit(1.65, "meters")
  2277. },
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(55, "meters"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Macro+",
  2285. height: math.unit(105, "meters")
  2286. },
  2287. ]
  2288. ))
  2289. characterMakers.push(() => makeCharacter(
  2290. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2291. {
  2292. front: {
  2293. height: math.unit(11, "feet"),
  2294. weight: math.unit(320, "kg"),
  2295. name: "Front",
  2296. image: {
  2297. source: "./media/characters/rai/front.svg",
  2298. extra: 1802/1696,
  2299. bottom: 68/1870
  2300. }
  2301. },
  2302. frontDressed: {
  2303. height: math.unit(11, "feet"),
  2304. weight: math.unit(320, "kg"),
  2305. name: "Front (Dressed)",
  2306. image: {
  2307. source: "./media/characters/rai/front-dressed.svg",
  2308. extra: 1802/1696,
  2309. bottom: 68/1870
  2310. }
  2311. },
  2312. side: {
  2313. height: math.unit(11, "feet"),
  2314. weight: math.unit(320, "kg"),
  2315. name: "Side",
  2316. image: {
  2317. source: "./media/characters/rai/side.svg",
  2318. extra: 1789/1710,
  2319. bottom: 115/1904
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(11, "feet"),
  2324. weight: math.unit(320, "kg"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/rai/back.svg",
  2328. extra: 1770/1707,
  2329. bottom: 28/1798
  2330. }
  2331. },
  2332. feral: {
  2333. height: math.unit(11, "feet"),
  2334. weight: math.unit(640, "kg"),
  2335. name: "Feral",
  2336. image: {
  2337. source: "./media/characters/rai/feral.svg",
  2338. extra: 1035/642,
  2339. bottom: 86/1121
  2340. }
  2341. },
  2342. dragon: {
  2343. height: math.unit(23, "feet"),
  2344. weight: math.unit(50000, "lb"),
  2345. name: "Dragon",
  2346. image: {
  2347. source: "./media/characters/rai/dragon.svg",
  2348. extra: 2498 / 2030,
  2349. bottom: 85.2 / 2584
  2350. }
  2351. },
  2352. maw: {
  2353. height: math.unit(6 / 3.81416, "feet"),
  2354. name: "Maw",
  2355. image: {
  2356. source: "./media/characters/rai/maw.svg"
  2357. }
  2358. },
  2359. },
  2360. [
  2361. {
  2362. name: "Normal",
  2363. height: math.unit(11, "feet")
  2364. },
  2365. {
  2366. name: "Macro",
  2367. height: math.unit(302, "feet"),
  2368. default: true
  2369. },
  2370. ]
  2371. ))
  2372. characterMakers.push(() => makeCharacter(
  2373. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2374. {
  2375. frontDressed: {
  2376. height: math.unit(216, "feet"),
  2377. weight: math.unit(7000000, "lb"),
  2378. name: "Front (Dressed)",
  2379. image: {
  2380. source: "./media/characters/jazzy/front-dressed.svg",
  2381. extra: 2738 / 2651,
  2382. bottom: 41.8 / 2786
  2383. }
  2384. },
  2385. backDressed: {
  2386. height: math.unit(216, "feet"),
  2387. weight: math.unit(7000000, "lb"),
  2388. name: "Back (Dressed)",
  2389. image: {
  2390. source: "./media/characters/jazzy/back-dressed.svg",
  2391. extra: 2775 / 2673,
  2392. bottom: 36.8 / 2817
  2393. }
  2394. },
  2395. front: {
  2396. height: math.unit(216, "feet"),
  2397. weight: math.unit(7000000, "lb"),
  2398. name: "Front",
  2399. image: {
  2400. source: "./media/characters/jazzy/front.svg",
  2401. extra: 2738 / 2651,
  2402. bottom: 41.8 / 2786
  2403. }
  2404. },
  2405. back: {
  2406. height: math.unit(216, "feet"),
  2407. weight: math.unit(7000000, "lb"),
  2408. name: "Back",
  2409. image: {
  2410. source: "./media/characters/jazzy/back.svg",
  2411. extra: 2775 / 2673,
  2412. bottom: 36.8 / 2817
  2413. }
  2414. },
  2415. maw: {
  2416. height: math.unit(20, "feet"),
  2417. name: "Maw",
  2418. image: {
  2419. source: "./media/characters/jazzy/maw.svg"
  2420. }
  2421. },
  2422. paws: {
  2423. height: math.unit(27.5, "feet"),
  2424. name: "Paws",
  2425. image: {
  2426. source: "./media/characters/jazzy/paws.svg"
  2427. }
  2428. },
  2429. eye: {
  2430. height: math.unit(4.4, "feet"),
  2431. name: "Eye",
  2432. image: {
  2433. source: "./media/characters/jazzy/eye.svg"
  2434. }
  2435. },
  2436. droneOffense: {
  2437. height: math.unit(9.5, "inches"),
  2438. name: "Drone (Offense)",
  2439. image: {
  2440. source: "./media/characters/jazzy/drone-offense.svg"
  2441. }
  2442. },
  2443. droneRecon: {
  2444. height: math.unit(9.5, "inches"),
  2445. name: "Drone (Recon)",
  2446. image: {
  2447. source: "./media/characters/jazzy/drone-recon.svg"
  2448. }
  2449. },
  2450. droneDefense: {
  2451. height: math.unit(9.5, "inches"),
  2452. name: "Drone (Defense)",
  2453. image: {
  2454. source: "./media/characters/jazzy/drone-defense.svg"
  2455. }
  2456. },
  2457. },
  2458. [
  2459. {
  2460. name: "Macro",
  2461. height: math.unit(216, "feet"),
  2462. default: true
  2463. },
  2464. ]
  2465. ))
  2466. characterMakers.push(() => makeCharacter(
  2467. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2468. {
  2469. front: {
  2470. height: math.unit(9 + 6/12, "feet"),
  2471. weight: math.unit(700, "lb"),
  2472. name: "Front",
  2473. image: {
  2474. source: "./media/characters/flamm/front.svg",
  2475. extra: 1751/1632,
  2476. bottom: 46/1797
  2477. }
  2478. },
  2479. buff: {
  2480. height: math.unit(9 + 6/12, "feet"),
  2481. weight: math.unit(950, "lb"),
  2482. name: "Buff",
  2483. image: {
  2484. source: "./media/characters/flamm/buff.svg",
  2485. extra: 3018/2874,
  2486. bottom: 221/3239
  2487. }
  2488. },
  2489. },
  2490. [
  2491. {
  2492. name: "Normal",
  2493. height: math.unit(9.5, "feet")
  2494. },
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(200, "feet"),
  2498. default: true
  2499. },
  2500. ]
  2501. ))
  2502. characterMakers.push(() => makeCharacter(
  2503. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2504. {
  2505. front: {
  2506. height: math.unit(5 + 3/12, "feet"),
  2507. weight: math.unit(60, "kg"),
  2508. name: "Front",
  2509. image: {
  2510. source: "./media/characters/zephiro/front.svg",
  2511. extra: 2309 / 2162,
  2512. bottom: 0.069
  2513. }
  2514. },
  2515. side: {
  2516. height: math.unit(5 + 3/12, "feet"),
  2517. weight: math.unit(60, "kg"),
  2518. name: "Side",
  2519. image: {
  2520. source: "./media/characters/zephiro/side.svg",
  2521. extra: 2403 / 2279,
  2522. bottom: 0.015
  2523. }
  2524. },
  2525. back: {
  2526. height: math.unit(5 + 3/12, "feet"),
  2527. weight: math.unit(60, "kg"),
  2528. name: "Back",
  2529. image: {
  2530. source: "./media/characters/zephiro/back.svg",
  2531. extra: 2373 / 2244,
  2532. bottom: 0.013
  2533. }
  2534. },
  2535. hand: {
  2536. height: math.unit(0.68, "feet"),
  2537. name: "Hand",
  2538. image: {
  2539. source: "./media/characters/zephiro/hand.svg"
  2540. }
  2541. },
  2542. paw: {
  2543. height: math.unit(1, "feet"),
  2544. name: "Paw",
  2545. image: {
  2546. source: "./media/characters/zephiro/paw.svg"
  2547. }
  2548. },
  2549. beans: {
  2550. height: math.unit(0.93, "feet"),
  2551. name: "Beans",
  2552. image: {
  2553. source: "./media/characters/zephiro/beans.svg"
  2554. }
  2555. },
  2556. },
  2557. [
  2558. {
  2559. name: "Micro",
  2560. height: math.unit(3, "inches")
  2561. },
  2562. {
  2563. name: "Normal",
  2564. height: math.unit(5 + 3 / 12, "feet"),
  2565. default: true
  2566. },
  2567. {
  2568. name: "Macro",
  2569. height: math.unit(118, "feet")
  2570. },
  2571. ]
  2572. ))
  2573. characterMakers.push(() => makeCharacter(
  2574. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2575. {
  2576. front: {
  2577. height: math.unit(5, "feet"),
  2578. weight: math.unit(90, "kg"),
  2579. name: "Front",
  2580. image: {
  2581. source: "./media/characters/fory/front.svg",
  2582. extra: 2862 / 2674,
  2583. bottom: 180 / 3043.8
  2584. }
  2585. },
  2586. back: {
  2587. height: math.unit(5, "feet"),
  2588. weight: math.unit(90, "kg"),
  2589. name: "Back",
  2590. image: {
  2591. source: "./media/characters/fory/back.svg",
  2592. extra: 2962 / 2791,
  2593. bottom: 106 / 3071.8
  2594. }
  2595. },
  2596. foot: {
  2597. height: math.unit(2.14, "feet"),
  2598. name: "Foot",
  2599. image: {
  2600. source: "./media/characters/fory/foot.svg"
  2601. }
  2602. },
  2603. },
  2604. [
  2605. {
  2606. name: "Normal",
  2607. height: math.unit(5, "feet")
  2608. },
  2609. {
  2610. name: "Macro",
  2611. height: math.unit(50, "feet"),
  2612. default: true
  2613. },
  2614. {
  2615. name: "Megamacro",
  2616. height: math.unit(10, "miles")
  2617. },
  2618. {
  2619. name: "Gigamacro",
  2620. height: math.unit(5, "earths")
  2621. },
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2626. {
  2627. front: {
  2628. height: math.unit(7, "feet"),
  2629. weight: math.unit(90, "kg"),
  2630. name: "Front",
  2631. image: {
  2632. source: "./media/characters/kurrikage/front.svg",
  2633. extra: 1,
  2634. bottom: 0.035
  2635. }
  2636. },
  2637. back: {
  2638. height: math.unit(7, "feet"),
  2639. weight: math.unit(90, "lb"),
  2640. name: "Back",
  2641. image: {
  2642. source: "./media/characters/kurrikage/back.svg"
  2643. }
  2644. },
  2645. paw: {
  2646. height: math.unit(1.5, "feet"),
  2647. name: "Paw",
  2648. image: {
  2649. source: "./media/characters/kurrikage/paw.svg"
  2650. }
  2651. },
  2652. staff: {
  2653. height: math.unit(6.7, "feet"),
  2654. name: "Staff",
  2655. image: {
  2656. source: "./media/characters/kurrikage/staff.svg"
  2657. }
  2658. },
  2659. peek: {
  2660. height: math.unit(1.05, "feet"),
  2661. name: "Peeking",
  2662. image: {
  2663. source: "./media/characters/kurrikage/peek.svg",
  2664. bottom: 0.08
  2665. }
  2666. },
  2667. },
  2668. [
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(12, "feet"),
  2672. default: true
  2673. },
  2674. {
  2675. name: "Big",
  2676. height: math.unit(20, "feet")
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(500, "feet")
  2681. },
  2682. {
  2683. name: "Megamacro",
  2684. height: math.unit(20, "miles")
  2685. },
  2686. ]
  2687. ))
  2688. characterMakers.push(() => makeCharacter(
  2689. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2690. {
  2691. front: {
  2692. height: math.unit(6, "feet"),
  2693. weight: math.unit(75, "kg"),
  2694. name: "Front",
  2695. image: {
  2696. source: "./media/characters/shingo/front.svg",
  2697. extra: 706/681,
  2698. bottom: 11/717
  2699. }
  2700. },
  2701. frontAlt: {
  2702. height: math.unit(6, "feet"),
  2703. weight: math.unit(75, "kg"),
  2704. name: "Front (Alt)",
  2705. image: {
  2706. source: "./media/characters/shingo/front-alt.svg",
  2707. extra: 3511 / 3338,
  2708. bottom: 0.005
  2709. }
  2710. },
  2711. paw: {
  2712. height: math.unit(1, "feet"),
  2713. name: "Paw",
  2714. image: {
  2715. source: "./media/characters/shingo/paw.svg"
  2716. }
  2717. },
  2718. },
  2719. [
  2720. {
  2721. name: "Micro",
  2722. height: math.unit(4, "inches")
  2723. },
  2724. {
  2725. name: "Normal",
  2726. height: math.unit(6, "feet"),
  2727. default: true
  2728. },
  2729. {
  2730. name: "Macro",
  2731. height: math.unit(108, "feet")
  2732. },
  2733. {
  2734. name: "Macro+",
  2735. height: math.unit(1500, "feet")
  2736. },
  2737. ]
  2738. ))
  2739. characterMakers.push(() => makeCharacter(
  2740. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2741. {
  2742. side: {
  2743. height: math.unit(6, "feet"),
  2744. weight: math.unit(75, "kg"),
  2745. name: "Side",
  2746. image: {
  2747. source: "./media/characters/aigey/side.svg"
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(200, "feet"),
  2755. default: true
  2756. },
  2757. {
  2758. name: "Megamacro",
  2759. height: math.unit(100, "miles")
  2760. },
  2761. ]
  2762. )
  2763. )
  2764. characterMakers.push(() => makeCharacter(
  2765. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2766. {
  2767. front: {
  2768. height: math.unit(5 + 5 / 12, "feet"),
  2769. weight: math.unit(75, "kg"),
  2770. name: "Front",
  2771. image: {
  2772. source: "./media/characters/natasha/front.svg",
  2773. extra: 859 / 824,
  2774. bottom: 23 / 879.6
  2775. }
  2776. },
  2777. frontNsfw: {
  2778. height: math.unit(5 + 5 / 12, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Front (NSFW)",
  2781. image: {
  2782. source: "./media/characters/natasha/front-nsfw.svg",
  2783. extra: 859 / 824,
  2784. bottom: 23 / 879.6
  2785. }
  2786. },
  2787. frontErect: {
  2788. height: math.unit(5 + 5 / 12, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Front (Erect)",
  2791. image: {
  2792. source: "./media/characters/natasha/front-erect.svg",
  2793. extra: 859 / 824,
  2794. bottom: 23 / 879.6
  2795. }
  2796. },
  2797. back: {
  2798. height: math.unit(5 + 5 / 12, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Back",
  2801. image: {
  2802. source: "./media/characters/natasha/back.svg",
  2803. extra: 887.9 / 852.6,
  2804. bottom: 9.7 / 896.4
  2805. }
  2806. },
  2807. backAlt: {
  2808. height: math.unit(5 + 5 / 12, "feet"),
  2809. weight: math.unit(75, "kg"),
  2810. name: "Back (Alt)",
  2811. image: {
  2812. source: "./media/characters/natasha/back-alt.svg",
  2813. extra: 1236.7 / 1192,
  2814. bottom: 22.3 / 1258.2
  2815. }
  2816. },
  2817. dick: {
  2818. height: math.unit(1.772, "feet"),
  2819. name: "Dick",
  2820. image: {
  2821. source: "./media/characters/natasha/dick.svg"
  2822. }
  2823. },
  2824. paw: {
  2825. height: math.unit(0.250, "meters"),
  2826. name: "Paw",
  2827. image: {
  2828. source: "./media/characters/natasha/paw.svg"
  2829. }
  2830. },
  2831. },
  2832. [
  2833. {
  2834. name: "Normal",
  2835. height: math.unit(5 + 5 / 12, "feet")
  2836. },
  2837. {
  2838. name: "Large",
  2839. height: math.unit(12, "feet")
  2840. },
  2841. {
  2842. name: "Macro",
  2843. height: math.unit(100, "feet"),
  2844. default: true
  2845. },
  2846. {
  2847. name: "Macro+",
  2848. height: math.unit(260, "feet")
  2849. },
  2850. {
  2851. name: "Macro++",
  2852. height: math.unit(1, "mile")
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(6, "feet"),
  2861. weight: math.unit(75, "kg"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/malik/front.svg"
  2865. }
  2866. },
  2867. side: {
  2868. height: math.unit(6, "feet"),
  2869. weight: math.unit(75, "kg"),
  2870. name: "Side",
  2871. image: {
  2872. source: "./media/characters/malik/side.svg",
  2873. extra: 1.1539
  2874. }
  2875. },
  2876. back: {
  2877. height: math.unit(6, "feet"),
  2878. weight: math.unit(75, "kg"),
  2879. name: "Back",
  2880. image: {
  2881. source: "./media/characters/malik/back.svg"
  2882. }
  2883. },
  2884. },
  2885. [
  2886. {
  2887. name: "Macro",
  2888. height: math.unit(156, "feet"),
  2889. default: true
  2890. },
  2891. {
  2892. name: "Macro+",
  2893. height: math.unit(1188, "feet")
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(6, "feet"),
  2902. weight: math.unit(75, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/sefer/front.svg",
  2906. extra: 848 / 659,
  2907. bottom: 28.3 / 876.442
  2908. }
  2909. },
  2910. back: {
  2911. height: math.unit(6, "feet"),
  2912. weight: math.unit(75, "kg"),
  2913. name: "Back",
  2914. image: {
  2915. source: "./media/characters/sefer/back.svg",
  2916. extra: 864 / 695,
  2917. bottom: 10 / 871
  2918. }
  2919. },
  2920. frontDressed: {
  2921. height: math.unit(6, "feet"),
  2922. weight: math.unit(75, "kg"),
  2923. name: "Front (Dressed)",
  2924. image: {
  2925. source: "./media/characters/sefer/front-dressed.svg",
  2926. extra: 839 / 653,
  2927. bottom: 37.6 / 878
  2928. }
  2929. },
  2930. },
  2931. [
  2932. {
  2933. name: "Normal",
  2934. height: math.unit(6, "feet"),
  2935. default: true
  2936. },
  2937. ]
  2938. ))
  2939. characterMakers.push(() => makeCharacter(
  2940. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2941. {
  2942. body: {
  2943. height: math.unit(2.2428, "meter"),
  2944. weight: math.unit(124.738, "kg"),
  2945. name: "Body",
  2946. image: {
  2947. extra: 1225 / 1050,
  2948. source: "./media/characters/north/front.svg"
  2949. }
  2950. }
  2951. },
  2952. [
  2953. {
  2954. name: "Micro",
  2955. height: math.unit(4, "inches")
  2956. },
  2957. {
  2958. name: "Macro",
  2959. height: math.unit(63, "meters")
  2960. },
  2961. {
  2962. name: "Megamacro",
  2963. height: math.unit(101, "miles"),
  2964. default: true
  2965. }
  2966. ]
  2967. ))
  2968. characterMakers.push(() => makeCharacter(
  2969. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2970. {
  2971. angled: {
  2972. height: math.unit(4, "meter"),
  2973. weight: math.unit(150, "kg"),
  2974. name: "Angled",
  2975. image: {
  2976. source: "./media/characters/talan/angled-sfw.svg",
  2977. bottom: 29 / 3734
  2978. }
  2979. },
  2980. angledNsfw: {
  2981. height: math.unit(4, "meter"),
  2982. weight: math.unit(150, "kg"),
  2983. name: "Angled (NSFW)",
  2984. image: {
  2985. source: "./media/characters/talan/angled-nsfw.svg",
  2986. bottom: 29 / 3734
  2987. }
  2988. },
  2989. frontNsfw: {
  2990. height: math.unit(4, "meter"),
  2991. weight: math.unit(150, "kg"),
  2992. name: "Front (NSFW)",
  2993. image: {
  2994. source: "./media/characters/talan/front-nsfw.svg",
  2995. bottom: 29 / 3734
  2996. }
  2997. },
  2998. sideNsfw: {
  2999. height: math.unit(4, "meter"),
  3000. weight: math.unit(150, "kg"),
  3001. name: "Side (NSFW)",
  3002. image: {
  3003. source: "./media/characters/talan/side-nsfw.svg",
  3004. bottom: 29 / 3734
  3005. }
  3006. },
  3007. back: {
  3008. height: math.unit(4, "meter"),
  3009. weight: math.unit(150, "kg"),
  3010. name: "Back",
  3011. image: {
  3012. source: "./media/characters/talan/back.svg"
  3013. }
  3014. },
  3015. dickBottom: {
  3016. height: math.unit(0.621, "meter"),
  3017. name: "Dick (Bottom)",
  3018. image: {
  3019. source: "./media/characters/talan/dick-bottom.svg"
  3020. }
  3021. },
  3022. dickTop: {
  3023. height: math.unit(0.621, "meter"),
  3024. name: "Dick (Top)",
  3025. image: {
  3026. source: "./media/characters/talan/dick-top.svg"
  3027. }
  3028. },
  3029. dickSide: {
  3030. height: math.unit(0.305, "meter"),
  3031. name: "Dick (Side)",
  3032. image: {
  3033. source: "./media/characters/talan/dick-side.svg"
  3034. }
  3035. },
  3036. dickFront: {
  3037. height: math.unit(0.305, "meter"),
  3038. name: "Dick (Front)",
  3039. image: {
  3040. source: "./media/characters/talan/dick-front.svg"
  3041. }
  3042. },
  3043. },
  3044. [
  3045. {
  3046. name: "Normal",
  3047. height: math.unit(4, "meters")
  3048. },
  3049. {
  3050. name: "Macro",
  3051. height: math.unit(100, "meters")
  3052. },
  3053. {
  3054. name: "Megamacro",
  3055. height: math.unit(2, "miles"),
  3056. default: true
  3057. },
  3058. {
  3059. name: "Gigamacro",
  3060. height: math.unit(5000, "miles")
  3061. },
  3062. {
  3063. name: "Teramacro",
  3064. height: math.unit(100, "parsecs")
  3065. }
  3066. ]
  3067. ))
  3068. characterMakers.push(() => makeCharacter(
  3069. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3070. {
  3071. front: {
  3072. height: math.unit(2, "meter"),
  3073. weight: math.unit(90, "kg"),
  3074. name: "Front",
  3075. image: {
  3076. source: "./media/characters/gael'rathus/front.svg"
  3077. }
  3078. },
  3079. frontAlt: {
  3080. height: math.unit(2, "meter"),
  3081. weight: math.unit(90, "kg"),
  3082. name: "Front (alt)",
  3083. image: {
  3084. source: "./media/characters/gael'rathus/front-alt.svg"
  3085. }
  3086. },
  3087. frontAlt2: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(90, "kg"),
  3090. name: "Front (alt 2)",
  3091. image: {
  3092. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3093. }
  3094. }
  3095. },
  3096. [
  3097. {
  3098. name: "Normal",
  3099. height: math.unit(9, "feet"),
  3100. default: true
  3101. },
  3102. {
  3103. name: "Large",
  3104. height: math.unit(25, "feet")
  3105. },
  3106. {
  3107. name: "Macro",
  3108. height: math.unit(0.25, "miles")
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(10, "miles")
  3113. }
  3114. ]
  3115. ))
  3116. characterMakers.push(() => makeCharacter(
  3117. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3118. {
  3119. side: {
  3120. height: math.unit(2, "meter"),
  3121. weight: math.unit(140, "kg"),
  3122. name: "Side",
  3123. image: {
  3124. source: "./media/characters/sosha/side.svg",
  3125. bottom: 0.042
  3126. }
  3127. },
  3128. },
  3129. [
  3130. {
  3131. name: "Normal",
  3132. height: math.unit(12, "feet"),
  3133. default: true
  3134. }
  3135. ]
  3136. ))
  3137. characterMakers.push(() => makeCharacter(
  3138. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3139. {
  3140. side: {
  3141. height: math.unit(5 + 5 / 12, "feet"),
  3142. weight: math.unit(170, "kg"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/runnola/side.svg",
  3146. extra: 741 / 448,
  3147. bottom: 0.05
  3148. }
  3149. },
  3150. },
  3151. [
  3152. {
  3153. name: "Small",
  3154. height: math.unit(3, "feet")
  3155. },
  3156. {
  3157. name: "Normal",
  3158. height: math.unit(5 + 5 / 12, "feet"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Big",
  3163. height: math.unit(10, "feet")
  3164. },
  3165. ]
  3166. ))
  3167. characterMakers.push(() => makeCharacter(
  3168. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3169. {
  3170. front: {
  3171. height: math.unit(2, "meter"),
  3172. weight: math.unit(50, "kg"),
  3173. name: "Front",
  3174. image: {
  3175. source: "./media/characters/kurribird/front.svg",
  3176. bottom: 0.015
  3177. }
  3178. },
  3179. frontAlt: {
  3180. height: math.unit(1.5, "meter"),
  3181. weight: math.unit(50, "kg"),
  3182. name: "Front (Alt)",
  3183. image: {
  3184. source: "./media/characters/kurribird/front-alt.svg",
  3185. extra: 1.45
  3186. }
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Normal",
  3192. height: math.unit(7, "feet")
  3193. },
  3194. {
  3195. name: "Big",
  3196. height: math.unit(12, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro",
  3201. height: math.unit(1500, "feet")
  3202. },
  3203. {
  3204. name: "Megamacro",
  3205. height: math.unit(2, "miles")
  3206. }
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(2, "meter"),
  3214. weight: math.unit(80, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/elbial/front.svg",
  3218. extra: 1643 / 1556,
  3219. bottom: 60.2 / 1696
  3220. }
  3221. },
  3222. side: {
  3223. height: math.unit(2, "meter"),
  3224. weight: math.unit(80, "kg"),
  3225. name: "Side",
  3226. image: {
  3227. source: "./media/characters/elbial/side.svg",
  3228. extra: 1630 / 1565,
  3229. bottom: 71.5 / 1697
  3230. }
  3231. },
  3232. back: {
  3233. height: math.unit(2, "meter"),
  3234. weight: math.unit(80, "kg"),
  3235. name: "Back",
  3236. image: {
  3237. source: "./media/characters/elbial/back.svg",
  3238. extra: 1668 / 1595,
  3239. bottom: 5.6 / 1672
  3240. }
  3241. },
  3242. frontDressed: {
  3243. height: math.unit(2, "meter"),
  3244. weight: math.unit(80, "kg"),
  3245. name: "Front (Dressed)",
  3246. image: {
  3247. source: "./media/characters/elbial/front-dressed.svg",
  3248. extra: 1653 / 1584,
  3249. bottom: 57 / 1708
  3250. }
  3251. },
  3252. genitals: {
  3253. height: math.unit(2 / 3.367, "meter"),
  3254. name: "Genitals",
  3255. image: {
  3256. source: "./media/characters/elbial/genitals.svg"
  3257. }
  3258. },
  3259. },
  3260. [
  3261. {
  3262. name: "Large",
  3263. height: math.unit(100, "feet")
  3264. },
  3265. {
  3266. name: "Macro",
  3267. height: math.unit(500, "feet"),
  3268. default: true
  3269. },
  3270. {
  3271. name: "Megamacro",
  3272. height: math.unit(10, "miles")
  3273. },
  3274. {
  3275. name: "Gigamacro",
  3276. height: math.unit(25000, "miles")
  3277. },
  3278. {
  3279. name: "Full-Size",
  3280. height: math.unit(8000000, "gigaparsecs")
  3281. }
  3282. ]
  3283. ))
  3284. characterMakers.push(() => makeCharacter(
  3285. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3286. {
  3287. front: {
  3288. height: math.unit(2, "meter"),
  3289. weight: math.unit(60, "kg"),
  3290. name: "Front",
  3291. image: {
  3292. source: "./media/characters/noah/front.svg"
  3293. }
  3294. },
  3295. talons: {
  3296. height: math.unit(0.315, "meter"),
  3297. name: "Talons",
  3298. image: {
  3299. source: "./media/characters/noah/talons.svg"
  3300. }
  3301. }
  3302. },
  3303. [
  3304. {
  3305. name: "Large",
  3306. height: math.unit(50, "feet")
  3307. },
  3308. {
  3309. name: "Macro",
  3310. height: math.unit(750, "feet"),
  3311. default: true
  3312. },
  3313. {
  3314. name: "Megamacro",
  3315. height: math.unit(50, "miles")
  3316. },
  3317. {
  3318. name: "Gigamacro",
  3319. height: math.unit(100000, "miles")
  3320. },
  3321. {
  3322. name: "Full-Size",
  3323. height: math.unit(3000000000, "miles")
  3324. }
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3329. {
  3330. front: {
  3331. height: math.unit(2, "meter"),
  3332. weight: math.unit(80, "kg"),
  3333. name: "Front",
  3334. image: {
  3335. source: "./media/characters/natalya/front.svg"
  3336. }
  3337. },
  3338. back: {
  3339. height: math.unit(2, "meter"),
  3340. weight: math.unit(80, "kg"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/natalya/back.svg"
  3344. }
  3345. }
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(150, "feet"),
  3351. default: true
  3352. },
  3353. {
  3354. name: "Megamacro",
  3355. height: math.unit(5, "miles")
  3356. },
  3357. {
  3358. name: "Full-Size",
  3359. height: math.unit(600, "kiloparsecs")
  3360. }
  3361. ]
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3365. {
  3366. front: {
  3367. height: math.unit(2, "meter"),
  3368. weight: math.unit(50, "kg"),
  3369. name: "Front",
  3370. image: {
  3371. source: "./media/characters/erestrebah/front.svg",
  3372. extra: 208 / 193,
  3373. bottom: 0.055
  3374. }
  3375. },
  3376. back: {
  3377. height: math.unit(2, "meter"),
  3378. weight: math.unit(50, "kg"),
  3379. name: "Back",
  3380. image: {
  3381. source: "./media/characters/erestrebah/back.svg",
  3382. extra: 1.3
  3383. }
  3384. }
  3385. },
  3386. [
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(10, "feet")
  3390. },
  3391. {
  3392. name: "Large",
  3393. height: math.unit(50, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(300, "feet")
  3399. },
  3400. {
  3401. name: "Macro+",
  3402. height: math.unit(750, "feet")
  3403. },
  3404. {
  3405. name: "Megamacro",
  3406. height: math.unit(3, "miles")
  3407. }
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(2, "meter"),
  3415. weight: math.unit(80, "kg"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/jennifer/front.svg",
  3419. bottom: 0.11,
  3420. extra: 1.16
  3421. }
  3422. },
  3423. frontAlt: {
  3424. height: math.unit(2, "meter"),
  3425. weight: math.unit(80, "kg"),
  3426. name: "Front (Alt)",
  3427. image: {
  3428. source: "./media/characters/jennifer/front-alt.svg"
  3429. }
  3430. }
  3431. },
  3432. [
  3433. {
  3434. name: "Canon Height",
  3435. height: math.unit(120, "feet"),
  3436. default: true
  3437. },
  3438. {
  3439. name: "Macro+",
  3440. height: math.unit(300, "feet")
  3441. },
  3442. {
  3443. name: "Megamacro",
  3444. height: math.unit(20000, "feet")
  3445. }
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3450. {
  3451. front: {
  3452. height: math.unit(2, "meter"),
  3453. weight: math.unit(50, "kg"),
  3454. name: "Front",
  3455. image: {
  3456. source: "./media/characters/kalista/front.svg",
  3457. extra: 1947 / 1700,
  3458. bottom: 76.6 / 1412.98
  3459. }
  3460. },
  3461. back: {
  3462. height: math.unit(2, "meter"),
  3463. weight: math.unit(50, "kg"),
  3464. name: "Back",
  3465. image: {
  3466. source: "./media/characters/kalista/back.svg",
  3467. extra: 1366 / 1156,
  3468. bottom: 33.9 / 1362.78
  3469. }
  3470. }
  3471. },
  3472. [
  3473. {
  3474. name: "Uncomfortably Small",
  3475. height: math.unit(10, "feet")
  3476. },
  3477. {
  3478. name: "Small",
  3479. height: math.unit(30, "feet")
  3480. },
  3481. {
  3482. name: "Macro",
  3483. height: math.unit(100, "feet"),
  3484. default: true
  3485. },
  3486. {
  3487. name: "Macro+",
  3488. height: math.unit(2000, "feet")
  3489. },
  3490. {
  3491. name: "True Form",
  3492. height: math.unit(8924, "miles")
  3493. }
  3494. ]
  3495. ))
  3496. characterMakers.push(() => makeCharacter(
  3497. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3498. {
  3499. front: {
  3500. height: math.unit(2, "meter"),
  3501. weight: math.unit(120, "kg"),
  3502. name: "Front",
  3503. image: {
  3504. source: "./media/characters/ggv/front.svg"
  3505. }
  3506. },
  3507. side: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(120, "kg"),
  3510. name: "Side",
  3511. image: {
  3512. source: "./media/characters/ggv/side.svg"
  3513. }
  3514. }
  3515. },
  3516. [
  3517. {
  3518. name: "Extremely Puny",
  3519. height: math.unit(9 + 5 / 12, "feet")
  3520. },
  3521. {
  3522. name: "Horribly Small",
  3523. height: math.unit(47.7, "miles"),
  3524. default: true
  3525. },
  3526. {
  3527. name: "Reasonably Sized",
  3528. height: math.unit(25000, "parsecs")
  3529. },
  3530. {
  3531. name: "Slightly Uncompressed",
  3532. height: math.unit(7.77e31, "parsecs")
  3533. },
  3534. {
  3535. name: "Omniversal",
  3536. height: math.unit(1e300, "meters")
  3537. },
  3538. ]
  3539. ))
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(2, "meter"),
  3545. weight: math.unit(75, "lb"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/napalm/front.svg"
  3549. }
  3550. },
  3551. back: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(75, "lb"),
  3554. name: "Back",
  3555. image: {
  3556. source: "./media/characters/napalm/back.svg"
  3557. }
  3558. }
  3559. },
  3560. [
  3561. {
  3562. name: "Standard",
  3563. height: math.unit(55, "feet"),
  3564. default: true
  3565. }
  3566. ]
  3567. ))
  3568. characterMakers.push(() => makeCharacter(
  3569. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3570. {
  3571. front: {
  3572. height: math.unit(7 + 5 / 6, "feet"),
  3573. weight: math.unit(325, "lb"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/asana/front.svg",
  3577. extra: 1133 / 1060,
  3578. bottom: 15.2 / 1148.6
  3579. }
  3580. },
  3581. back: {
  3582. height: math.unit(7 + 5 / 6, "feet"),
  3583. weight: math.unit(325, "lb"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/asana/back.svg",
  3587. extra: 1114 / 1043,
  3588. bottom: 5 / 1120
  3589. }
  3590. },
  3591. dressedDark: {
  3592. height: math.unit(7 + 5 / 6, "feet"),
  3593. weight: math.unit(325, "lb"),
  3594. name: "Dressed (Dark)",
  3595. image: {
  3596. source: "./media/characters/asana/dressed-dark.svg",
  3597. extra: 1133 / 1060,
  3598. bottom: 15.2 / 1148.6
  3599. }
  3600. },
  3601. dressedLight: {
  3602. height: math.unit(7 + 5 / 6, "feet"),
  3603. weight: math.unit(325, "lb"),
  3604. name: "Dressed (Light)",
  3605. image: {
  3606. source: "./media/characters/asana/dressed-light.svg",
  3607. extra: 1133 / 1060,
  3608. bottom: 15.2 / 1148.6
  3609. }
  3610. },
  3611. },
  3612. [
  3613. {
  3614. name: "Standard",
  3615. height: math.unit(7 + 5 / 6, "feet"),
  3616. default: true
  3617. },
  3618. {
  3619. name: "Large",
  3620. height: math.unit(10, "meters")
  3621. },
  3622. {
  3623. name: "Macro",
  3624. height: math.unit(2500, "meters")
  3625. },
  3626. {
  3627. name: "Megamacro",
  3628. height: math.unit(5e6, "meters")
  3629. },
  3630. {
  3631. name: "Examacro",
  3632. height: math.unit(5e12, "lightyears")
  3633. },
  3634. {
  3635. name: "Max Size",
  3636. height: math.unit(1e31, "lightyears")
  3637. }
  3638. ]
  3639. ))
  3640. characterMakers.push(() => makeCharacter(
  3641. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3642. {
  3643. front: {
  3644. height: math.unit(2, "meter"),
  3645. weight: math.unit(60, "kg"),
  3646. name: "Front",
  3647. image: {
  3648. source: "./media/characters/ebony/front.svg",
  3649. bottom: 0.03,
  3650. extra: 1045 / 810 + 0.03
  3651. }
  3652. },
  3653. side: {
  3654. height: math.unit(2, "meter"),
  3655. weight: math.unit(60, "kg"),
  3656. name: "Side",
  3657. image: {
  3658. source: "./media/characters/ebony/side.svg",
  3659. bottom: 0.03,
  3660. extra: 1045 / 810 + 0.03
  3661. }
  3662. },
  3663. back: {
  3664. height: math.unit(2, "meter"),
  3665. weight: math.unit(60, "kg"),
  3666. name: "Back",
  3667. image: {
  3668. source: "./media/characters/ebony/back.svg",
  3669. bottom: 0.01,
  3670. extra: 1045 / 810 + 0.01
  3671. }
  3672. },
  3673. },
  3674. [
  3675. // TODO check why I did this lol
  3676. {
  3677. name: "Standard",
  3678. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3679. default: true
  3680. },
  3681. {
  3682. name: "Macro",
  3683. height: math.unit(200, "feet")
  3684. },
  3685. {
  3686. name: "Gigamacro",
  3687. height: math.unit(13000, "km")
  3688. }
  3689. ]
  3690. ))
  3691. characterMakers.push(() => makeCharacter(
  3692. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3693. {
  3694. front: {
  3695. height: math.unit(6, "feet"),
  3696. weight: math.unit(175, "lb"),
  3697. name: "Front",
  3698. image: {
  3699. source: "./media/characters/mountain/front.svg",
  3700. extra: 972 / 955,
  3701. bottom: 64 / 1036.6
  3702. }
  3703. },
  3704. back: {
  3705. height: math.unit(6, "feet"),
  3706. weight: math.unit(175, "lb"),
  3707. name: "Back",
  3708. image: {
  3709. source: "./media/characters/mountain/back.svg",
  3710. extra: 970 / 950,
  3711. bottom: 28.25 / 999
  3712. }
  3713. },
  3714. },
  3715. [
  3716. {
  3717. name: "Large",
  3718. height: math.unit(20, "meters")
  3719. },
  3720. {
  3721. name: "Macro",
  3722. height: math.unit(300, "meters")
  3723. },
  3724. {
  3725. name: "Gigamacro",
  3726. height: math.unit(10000, "km"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Examacro",
  3731. height: math.unit(10e9, "lightyears")
  3732. }
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(8, "feet"),
  3740. weight: math.unit(500, "lb"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/rick/front.svg"
  3744. }
  3745. }
  3746. },
  3747. [
  3748. {
  3749. name: "Normal",
  3750. height: math.unit(8, "feet"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Macro",
  3755. height: math.unit(5, "km")
  3756. }
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3761. {
  3762. front: {
  3763. height: math.unit(8, "feet"),
  3764. weight: math.unit(120, "lb"),
  3765. name: "Front",
  3766. image: {
  3767. source: "./media/characters/ona/front.svg"
  3768. }
  3769. },
  3770. frontAlt: {
  3771. height: math.unit(8, "feet"),
  3772. weight: math.unit(120, "lb"),
  3773. name: "Front (Alt)",
  3774. image: {
  3775. source: "./media/characters/ona/front-alt.svg"
  3776. }
  3777. },
  3778. back: {
  3779. height: math.unit(8, "feet"),
  3780. weight: math.unit(120, "lb"),
  3781. name: "Back",
  3782. image: {
  3783. source: "./media/characters/ona/back.svg"
  3784. }
  3785. },
  3786. foot: {
  3787. height: math.unit(1.1, "feet"),
  3788. name: "Foot",
  3789. image: {
  3790. source: "./media/characters/ona/foot.svg"
  3791. }
  3792. }
  3793. },
  3794. [
  3795. {
  3796. name: "Megamacro",
  3797. height: math.unit(70, "km"),
  3798. default: true
  3799. },
  3800. {
  3801. name: "Gigamacro",
  3802. height: math.unit(681818, "miles")
  3803. },
  3804. {
  3805. name: "Examacro",
  3806. height: math.unit(3800000, "lightyears")
  3807. },
  3808. ]
  3809. ))
  3810. characterMakers.push(() => makeCharacter(
  3811. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3812. {
  3813. front: {
  3814. height: math.unit(12, "feet"),
  3815. weight: math.unit(3000, "lb"),
  3816. name: "Front",
  3817. image: {
  3818. source: "./media/characters/mech/front.svg",
  3819. extra: 2900 / 2770,
  3820. bottom: 110 / 3010
  3821. }
  3822. },
  3823. back: {
  3824. height: math.unit(12, "feet"),
  3825. weight: math.unit(3000, "lb"),
  3826. name: "Back",
  3827. image: {
  3828. source: "./media/characters/mech/back.svg",
  3829. extra: 3011 / 2890,
  3830. bottom: 94 / 3105
  3831. }
  3832. },
  3833. maw: {
  3834. height: math.unit(3.07, "feet"),
  3835. name: "Maw",
  3836. image: {
  3837. source: "./media/characters/mech/maw.svg"
  3838. }
  3839. },
  3840. head: {
  3841. height: math.unit(2.82, "feet"),
  3842. name: "Head",
  3843. image: {
  3844. source: "./media/characters/mech/head.svg"
  3845. }
  3846. },
  3847. dick: {
  3848. height: math.unit(1.43, "feet"),
  3849. name: "Dick",
  3850. image: {
  3851. source: "./media/characters/mech/dick.svg"
  3852. }
  3853. },
  3854. },
  3855. [
  3856. {
  3857. name: "Normal",
  3858. height: math.unit(12, "feet")
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(300, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Macro+",
  3867. height: math.unit(1500, "feet")
  3868. },
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(1.3, "meter"),
  3876. weight: math.unit(30, "kg"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/gregory/front.svg",
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(1.3, "meter"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Macro",
  3891. height: math.unit(20, "meter")
  3892. }
  3893. ]
  3894. ))
  3895. characterMakers.push(() => makeCharacter(
  3896. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3897. {
  3898. front: {
  3899. height: math.unit(2.8, "meter"),
  3900. weight: math.unit(200, "kg"),
  3901. name: "Front",
  3902. image: {
  3903. source: "./media/characters/elory/front.svg",
  3904. }
  3905. }
  3906. },
  3907. [
  3908. {
  3909. name: "Normal",
  3910. height: math.unit(2.8, "meter"),
  3911. default: true
  3912. },
  3913. {
  3914. name: "Macro",
  3915. height: math.unit(38, "meter")
  3916. }
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3921. {
  3922. front: {
  3923. height: math.unit(470, "feet"),
  3924. weight: math.unit(924, "tons"),
  3925. name: "Front",
  3926. image: {
  3927. source: "./media/characters/angelpatamon/front.svg",
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Normal",
  3934. height: math.unit(470, "feet"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Deity Size I",
  3939. height: math.unit(28651.2, "km")
  3940. },
  3941. {
  3942. name: "Deity Size II",
  3943. height: math.unit(171907.2, "km")
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3949. {
  3950. side: {
  3951. height: math.unit(7.2, "meter"),
  3952. weight: math.unit(8.2, "tons"),
  3953. name: "Side",
  3954. image: {
  3955. source: "./media/characters/cryae/side.svg",
  3956. extra: 3500 / 1500
  3957. }
  3958. }
  3959. },
  3960. [
  3961. {
  3962. name: "Normal",
  3963. height: math.unit(7.2, "meter"),
  3964. default: true
  3965. }
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3970. {
  3971. front: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(175, "lb"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/xera/front.svg",
  3977. extra: 2377 / 1972,
  3978. bottom: 75.5 / 2452
  3979. }
  3980. },
  3981. side: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(175, "lb"),
  3984. name: "Side",
  3985. image: {
  3986. source: "./media/characters/xera/side.svg",
  3987. extra: 2345 / 2019,
  3988. bottom: 39.7 / 2384
  3989. }
  3990. },
  3991. back: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(175, "lb"),
  3994. name: "Back",
  3995. image: {
  3996. source: "./media/characters/xera/back.svg",
  3997. extra: 2095 / 1984,
  3998. bottom: 67 / 2166
  3999. }
  4000. },
  4001. },
  4002. [
  4003. {
  4004. name: "Small",
  4005. height: math.unit(10, "feet")
  4006. },
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(500, "meters"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Macro+",
  4014. height: math.unit(10, "km")
  4015. },
  4016. {
  4017. name: "Gigamacro",
  4018. height: math.unit(25000, "km")
  4019. },
  4020. {
  4021. name: "Teramacro",
  4022. height: math.unit(3e6, "km")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(175, "lb"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/nebula/front.svg",
  4035. extra: 2566 / 2362,
  4036. bottom: 81 / 2644
  4037. }
  4038. }
  4039. },
  4040. [
  4041. {
  4042. name: "Small",
  4043. height: math.unit(4.5, "meters")
  4044. },
  4045. {
  4046. name: "Macro",
  4047. height: math.unit(1500, "meters"),
  4048. default: true
  4049. },
  4050. {
  4051. name: "Megamacro",
  4052. height: math.unit(150, "km")
  4053. },
  4054. {
  4055. name: "Gigamacro",
  4056. height: math.unit(27000, "km")
  4057. }
  4058. ]
  4059. ))
  4060. characterMakers.push(() => makeCharacter(
  4061. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4062. {
  4063. front: {
  4064. height: math.unit(6, "feet"),
  4065. weight: math.unit(225, "lb"),
  4066. name: "Front",
  4067. image: {
  4068. source: "./media/characters/abysgar/front.svg"
  4069. }
  4070. }
  4071. },
  4072. [
  4073. {
  4074. name: "Small",
  4075. height: math.unit(4.5, "meters")
  4076. },
  4077. {
  4078. name: "Macro",
  4079. height: math.unit(1250, "meters"),
  4080. default: true
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(125, "km")
  4085. },
  4086. {
  4087. name: "Gigamacro",
  4088. height: math.unit(26000, "km")
  4089. }
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4094. {
  4095. front: {
  4096. height: math.unit(6, "feet"),
  4097. weight: math.unit(180, "lb"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/yakuz/front.svg"
  4101. }
  4102. }
  4103. },
  4104. [
  4105. {
  4106. name: "Small",
  4107. height: math.unit(5, "meters")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(1500, "meters"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "Megamacro",
  4116. height: math.unit(200, "km")
  4117. },
  4118. {
  4119. name: "Gigamacro",
  4120. height: math.unit(100000, "km")
  4121. }
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4126. {
  4127. front: {
  4128. height: math.unit(6, "feet"),
  4129. weight: math.unit(175, "lb"),
  4130. name: "Front",
  4131. image: {
  4132. source: "./media/characters/mirova/front.svg",
  4133. extra: 3334 / 3071,
  4134. bottom: 42 / 3375.6
  4135. }
  4136. }
  4137. },
  4138. [
  4139. {
  4140. name: "Small",
  4141. height: math.unit(5, "meters")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(900, "meters"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Megamacro",
  4150. height: math.unit(135, "km")
  4151. },
  4152. {
  4153. name: "Gigamacro",
  4154. height: math.unit(20000, "km")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4160. {
  4161. side: {
  4162. height: math.unit(28.35, "feet"),
  4163. weight: math.unit(99.75, "tons"),
  4164. name: "Side",
  4165. image: {
  4166. source: "./media/characters/asana-mech/side.svg",
  4167. extra: 923 / 699,
  4168. bottom: 50 / 975
  4169. }
  4170. },
  4171. chaingun: {
  4172. height: math.unit(7, "feet"),
  4173. weight: math.unit(2400, "lb"),
  4174. name: "Chaingun",
  4175. image: {
  4176. source: "./media/characters/asana-mech/chaingun.svg"
  4177. }
  4178. },
  4179. laser: {
  4180. height: math.unit(7.12, "feet"),
  4181. weight: math.unit(2000, "lb"),
  4182. name: "Laser",
  4183. image: {
  4184. source: "./media/characters/asana-mech/laser.svg"
  4185. }
  4186. },
  4187. },
  4188. [
  4189. {
  4190. name: "Normal",
  4191. height: math.unit(28.35, "feet"),
  4192. default: true
  4193. },
  4194. {
  4195. name: "Macro",
  4196. height: math.unit(2500, "feet")
  4197. },
  4198. {
  4199. name: "Megamacro",
  4200. height: math.unit(25, "miles")
  4201. },
  4202. {
  4203. name: "Examacro",
  4204. height: math.unit(6e8, "lightyears")
  4205. },
  4206. ]
  4207. ))
  4208. characterMakers.push(() => makeCharacter(
  4209. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4210. {
  4211. front: {
  4212. height: math.unit(5, "meters"),
  4213. weight: math.unit(1000, "kg"),
  4214. name: "Front",
  4215. image: {
  4216. source: "./media/characters/asche/front.svg",
  4217. extra: 1258 / 1190,
  4218. bottom: 47 / 1305
  4219. }
  4220. },
  4221. frontUnderwear: {
  4222. height: math.unit(5, "meters"),
  4223. weight: math.unit(1000, "kg"),
  4224. name: "Front (Underwear)",
  4225. image: {
  4226. source: "./media/characters/asche/front-underwear.svg",
  4227. extra: 1258 / 1190,
  4228. bottom: 47 / 1305
  4229. }
  4230. },
  4231. frontDressed: {
  4232. height: math.unit(5, "meters"),
  4233. weight: math.unit(1000, "kg"),
  4234. name: "Front (Dressed)",
  4235. image: {
  4236. source: "./media/characters/asche/front-dressed.svg",
  4237. extra: 1258 / 1190,
  4238. bottom: 47 / 1305
  4239. }
  4240. },
  4241. frontArmor: {
  4242. height: math.unit(5, "meters"),
  4243. weight: math.unit(1000, "kg"),
  4244. name: "Front (Armored)",
  4245. image: {
  4246. source: "./media/characters/asche/front-armored.svg",
  4247. extra: 1374 / 1308,
  4248. bottom: 23 / 1397
  4249. }
  4250. },
  4251. mp724: {
  4252. height: math.unit(0.96, "meters"),
  4253. weight: math.unit(38, "kg"),
  4254. name: "H&K MP724",
  4255. image: {
  4256. source: "./media/characters/asche/h&k-mp724.svg"
  4257. }
  4258. },
  4259. side: {
  4260. height: math.unit(5, "meters"),
  4261. weight: math.unit(1000, "kg"),
  4262. name: "Side",
  4263. image: {
  4264. source: "./media/characters/asche/side.svg",
  4265. extra: 1717 / 1609,
  4266. bottom: 0.005
  4267. }
  4268. },
  4269. back: {
  4270. height: math.unit(5, "meters"),
  4271. weight: math.unit(1000, "kg"),
  4272. name: "Back",
  4273. image: {
  4274. source: "./media/characters/asche/back.svg",
  4275. extra: 1570 / 1501
  4276. }
  4277. },
  4278. },
  4279. [
  4280. {
  4281. name: "DEFCON 5",
  4282. height: math.unit(5, "meters")
  4283. },
  4284. {
  4285. name: "DEFCON 4",
  4286. height: math.unit(500, "meters"),
  4287. default: true
  4288. },
  4289. {
  4290. name: "DEFCON 3",
  4291. height: math.unit(5, "km")
  4292. },
  4293. {
  4294. name: "DEFCON 2",
  4295. height: math.unit(500, "km")
  4296. },
  4297. {
  4298. name: "DEFCON 1",
  4299. height: math.unit(500000, "km")
  4300. },
  4301. {
  4302. name: "DEFCON 0",
  4303. height: math.unit(3, "gigaparsecs")
  4304. },
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(2, "meters"),
  4312. weight: math.unit(76, "kg"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/gale/front.svg"
  4316. }
  4317. },
  4318. frontAlt1: {
  4319. height: math.unit(2, "meters"),
  4320. weight: math.unit(76, "kg"),
  4321. name: "Front (Alt 1)",
  4322. image: {
  4323. source: "./media/characters/gale/front-alt-1.svg"
  4324. }
  4325. },
  4326. frontAlt2: {
  4327. height: math.unit(2, "meters"),
  4328. weight: math.unit(76, "kg"),
  4329. name: "Front (Alt 2)",
  4330. image: {
  4331. source: "./media/characters/gale/front-alt-2.svg"
  4332. }
  4333. },
  4334. },
  4335. [
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(7, "feet")
  4339. },
  4340. {
  4341. name: "Macro",
  4342. height: math.unit(150, "feet"),
  4343. default: true
  4344. },
  4345. {
  4346. name: "Macro+",
  4347. height: math.unit(300, "feet")
  4348. },
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4353. {
  4354. front: {
  4355. height: math.unit(2, "meters"),
  4356. weight: math.unit(76, "kg"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/draylen/front.svg"
  4360. }
  4361. }
  4362. },
  4363. [
  4364. {
  4365. name: "Macro",
  4366. height: math.unit(150, "feet"),
  4367. default: true
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(7 + 9 / 12, "feet"),
  4376. weight: math.unit(379, "lbs"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/chez/front.svg"
  4380. }
  4381. },
  4382. side: {
  4383. height: math.unit(7 + 9 / 12, "feet"),
  4384. weight: math.unit(379, "lbs"),
  4385. name: "Side",
  4386. image: {
  4387. source: "./media/characters/chez/side.svg"
  4388. }
  4389. }
  4390. },
  4391. [
  4392. {
  4393. name: "Normal",
  4394. height: math.unit(7 + 9 / 12, "feet"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "God King",
  4399. height: math.unit(9750000, "meters")
  4400. }
  4401. ]
  4402. ))
  4403. characterMakers.push(() => makeCharacter(
  4404. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4405. {
  4406. front: {
  4407. height: math.unit(6, "feet"),
  4408. weight: math.unit(275, "lbs"),
  4409. name: "Front",
  4410. image: {
  4411. source: "./media/characters/kaylum/front.svg",
  4412. bottom: 0.01,
  4413. extra: 1166 / 1031
  4414. }
  4415. },
  4416. frontWingless: {
  4417. height: math.unit(6, "feet"),
  4418. weight: math.unit(275, "lbs"),
  4419. name: "Front (Wingless)",
  4420. image: {
  4421. source: "./media/characters/kaylum/front-wingless.svg",
  4422. bottom: 0.01,
  4423. extra: 1117 / 1031
  4424. }
  4425. }
  4426. },
  4427. [
  4428. {
  4429. name: "Normal",
  4430. height: math.unit(3.05, "meters")
  4431. },
  4432. {
  4433. name: "Master",
  4434. height: math.unit(5.5, "meters")
  4435. },
  4436. {
  4437. name: "Rampage",
  4438. height: math.unit(19, "meters")
  4439. },
  4440. {
  4441. name: "Macro Lite",
  4442. height: math.unit(37, "meters")
  4443. },
  4444. {
  4445. name: "Hyper Predator",
  4446. height: math.unit(61, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(138, "meters"),
  4451. default: true
  4452. }
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4457. {
  4458. front: {
  4459. height: math.unit(6, "feet"),
  4460. weight: math.unit(150, "lbs"),
  4461. name: "Front",
  4462. image: {
  4463. source: "./media/characters/geta/front.svg"
  4464. }
  4465. }
  4466. },
  4467. [
  4468. {
  4469. name: "Micro",
  4470. height: math.unit(3, "inches"),
  4471. default: true
  4472. },
  4473. {
  4474. name: "Normal",
  4475. height: math.unit(5 + 5 / 12, "feet")
  4476. }
  4477. ]
  4478. ))
  4479. characterMakers.push(() => makeCharacter(
  4480. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4481. {
  4482. front: {
  4483. height: math.unit(6, "feet"),
  4484. weight: math.unit(300, "lbs"),
  4485. name: "Front",
  4486. image: {
  4487. source: "./media/characters/tyrnn/front.svg"
  4488. }
  4489. }
  4490. },
  4491. [
  4492. {
  4493. name: "Main Height",
  4494. height: math.unit(355, "feet"),
  4495. default: true
  4496. },
  4497. {
  4498. name: "Fave. Height",
  4499. height: math.unit(2400, "feet")
  4500. }
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(300, "lbs"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/appledectomy/front.svg"
  4512. }
  4513. }
  4514. },
  4515. [
  4516. {
  4517. name: "Macro",
  4518. height: math.unit(2500, "feet")
  4519. },
  4520. {
  4521. name: "Megamacro",
  4522. height: math.unit(50, "miles"),
  4523. default: true
  4524. },
  4525. {
  4526. name: "Gigamacro",
  4527. height: math.unit(5000, "miles")
  4528. },
  4529. {
  4530. name: "Teramacro",
  4531. height: math.unit(250000, "miles")
  4532. },
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4537. {
  4538. front: {
  4539. height: math.unit(6, "feet"),
  4540. weight: math.unit(200, "lbs"),
  4541. name: "Front",
  4542. image: {
  4543. source: "./media/characters/vulpes/front.svg",
  4544. extra: 573 / 543,
  4545. bottom: 0.033
  4546. }
  4547. },
  4548. side: {
  4549. height: math.unit(6, "feet"),
  4550. weight: math.unit(200, "lbs"),
  4551. name: "Side",
  4552. image: {
  4553. source: "./media/characters/vulpes/side.svg",
  4554. extra: 577 / 549,
  4555. bottom: 11 / 588
  4556. }
  4557. },
  4558. back: {
  4559. height: math.unit(6, "feet"),
  4560. weight: math.unit(200, "lbs"),
  4561. name: "Back",
  4562. image: {
  4563. source: "./media/characters/vulpes/back.svg",
  4564. extra: 573 / 549,
  4565. bottom: 20 / 593
  4566. }
  4567. },
  4568. feet: {
  4569. height: math.unit(1.276, "feet"),
  4570. name: "Feet",
  4571. image: {
  4572. source: "./media/characters/vulpes/feet.svg"
  4573. }
  4574. },
  4575. maw: {
  4576. height: math.unit(1.18, "feet"),
  4577. name: "Maw",
  4578. image: {
  4579. source: "./media/characters/vulpes/maw.svg"
  4580. }
  4581. },
  4582. },
  4583. [
  4584. {
  4585. name: "Micro",
  4586. height: math.unit(2, "inches")
  4587. },
  4588. {
  4589. name: "Normal",
  4590. height: math.unit(6.3, "feet")
  4591. },
  4592. {
  4593. name: "Macro",
  4594. height: math.unit(850, "feet")
  4595. },
  4596. {
  4597. name: "Megamacro",
  4598. height: math.unit(7500, "feet"),
  4599. default: true
  4600. },
  4601. {
  4602. name: "Gigamacro",
  4603. height: math.unit(570000, "miles")
  4604. }
  4605. ]
  4606. ))
  4607. characterMakers.push(() => makeCharacter(
  4608. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4609. {
  4610. front: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(210, "lbs"),
  4613. name: "Front",
  4614. image: {
  4615. source: "./media/characters/rain-fallen/front.svg"
  4616. }
  4617. },
  4618. side: {
  4619. height: math.unit(6, "feet"),
  4620. weight: math.unit(210, "lbs"),
  4621. name: "Side",
  4622. image: {
  4623. source: "./media/characters/rain-fallen/side.svg"
  4624. }
  4625. },
  4626. back: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(210, "lbs"),
  4629. name: "Back",
  4630. image: {
  4631. source: "./media/characters/rain-fallen/back.svg"
  4632. }
  4633. },
  4634. feral: {
  4635. height: math.unit(9, "feet"),
  4636. weight: math.unit(700, "lbs"),
  4637. name: "Feral",
  4638. image: {
  4639. source: "./media/characters/rain-fallen/feral.svg"
  4640. }
  4641. },
  4642. },
  4643. [
  4644. {
  4645. name: "Meddling with Mortals",
  4646. height: math.unit(8 + 8/12, "feet")
  4647. },
  4648. {
  4649. name: "Normal",
  4650. height: math.unit(5, "meter")
  4651. },
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(150, "meter"),
  4655. default: true
  4656. },
  4657. {
  4658. name: "Megamacro",
  4659. height: math.unit(278e6, "meter")
  4660. },
  4661. {
  4662. name: "Gigamacro",
  4663. height: math.unit(2e9, "meter")
  4664. },
  4665. {
  4666. name: "Teramacro",
  4667. height: math.unit(8e12, "meter")
  4668. },
  4669. {
  4670. name: "Devourer",
  4671. height: math.unit(14, "zettameters")
  4672. },
  4673. {
  4674. name: "Scarlet King",
  4675. height: math.unit(18, "yottameters")
  4676. },
  4677. {
  4678. name: "Void",
  4679. height: math.unit(1e88, "yottameters")
  4680. }
  4681. ]
  4682. ))
  4683. characterMakers.push(() => makeCharacter(
  4684. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4685. {
  4686. standing: {
  4687. height: math.unit(6, "feet"),
  4688. weight: math.unit(180, "lbs"),
  4689. name: "Standing",
  4690. image: {
  4691. source: "./media/characters/zaakira/standing.svg",
  4692. extra: 1599/1504,
  4693. bottom: 39/1638
  4694. }
  4695. },
  4696. laying: {
  4697. height: math.unit(3, "feet"),
  4698. weight: math.unit(180, "lbs"),
  4699. name: "Laying",
  4700. image: {
  4701. source: "./media/characters/zaakira/laying.svg"
  4702. }
  4703. },
  4704. },
  4705. [
  4706. {
  4707. name: "Normal",
  4708. height: math.unit(12, "feet")
  4709. },
  4710. {
  4711. name: "Macro",
  4712. height: math.unit(279, "feet"),
  4713. default: true
  4714. }
  4715. ]
  4716. ))
  4717. characterMakers.push(() => makeCharacter(
  4718. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4719. {
  4720. femSfw: {
  4721. height: math.unit(8, "feet"),
  4722. weight: math.unit(350, "lb"),
  4723. name: "Fem",
  4724. image: {
  4725. source: "./media/characters/sigvald/fem-sfw.svg",
  4726. extra: 182 / 164,
  4727. bottom: 8.7 / 190.5
  4728. }
  4729. },
  4730. femNsfw: {
  4731. height: math.unit(8, "feet"),
  4732. weight: math.unit(350, "lb"),
  4733. name: "Fem (NSFW)",
  4734. image: {
  4735. source: "./media/characters/sigvald/fem-nsfw.svg",
  4736. extra: 182 / 164,
  4737. bottom: 8.7 / 190.5
  4738. }
  4739. },
  4740. maleNsfw: {
  4741. height: math.unit(8, "feet"),
  4742. weight: math.unit(350, "lb"),
  4743. name: "Male (NSFW)",
  4744. image: {
  4745. source: "./media/characters/sigvald/male-nsfw.svg",
  4746. extra: 182 / 164,
  4747. bottom: 8.7 / 190.5
  4748. }
  4749. },
  4750. hermNsfw: {
  4751. height: math.unit(8, "feet"),
  4752. weight: math.unit(350, "lb"),
  4753. name: "Herm (NSFW)",
  4754. image: {
  4755. source: "./media/characters/sigvald/herm-nsfw.svg",
  4756. extra: 182 / 164,
  4757. bottom: 8.7 / 190.5
  4758. }
  4759. },
  4760. dick: {
  4761. height: math.unit(2.36, "feet"),
  4762. name: "Dick",
  4763. image: {
  4764. source: "./media/characters/sigvald/dick.svg"
  4765. }
  4766. },
  4767. eye: {
  4768. height: math.unit(0.31, "feet"),
  4769. name: "Eye",
  4770. image: {
  4771. source: "./media/characters/sigvald/eye.svg"
  4772. }
  4773. },
  4774. mouth: {
  4775. height: math.unit(0.92, "feet"),
  4776. name: "Mouth",
  4777. image: {
  4778. source: "./media/characters/sigvald/mouth.svg"
  4779. }
  4780. },
  4781. paws: {
  4782. height: math.unit(2.2, "feet"),
  4783. name: "Paws",
  4784. image: {
  4785. source: "./media/characters/sigvald/paws.svg"
  4786. }
  4787. }
  4788. },
  4789. [
  4790. {
  4791. name: "Normal",
  4792. height: math.unit(8, "feet")
  4793. },
  4794. {
  4795. name: "Large",
  4796. height: math.unit(12, "feet")
  4797. },
  4798. {
  4799. name: "Larger",
  4800. height: math.unit(20, "feet")
  4801. },
  4802. {
  4803. name: "Macro",
  4804. height: math.unit(150, "feet")
  4805. },
  4806. {
  4807. name: "Macro+",
  4808. height: math.unit(200, "feet"),
  4809. default: true
  4810. },
  4811. ]
  4812. ))
  4813. characterMakers.push(() => makeCharacter(
  4814. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4815. {
  4816. side: {
  4817. height: math.unit(12, "feet"),
  4818. weight: math.unit(2000, "kg"),
  4819. name: "Side",
  4820. image: {
  4821. source: "./media/characters/scott/side.svg",
  4822. extra: 754 / 724,
  4823. bottom: 0.069
  4824. }
  4825. },
  4826. upright: {
  4827. height: math.unit(12, "feet"),
  4828. weight: math.unit(2000, "kg"),
  4829. name: "Upright",
  4830. image: {
  4831. source: "./media/characters/scott/upright.svg",
  4832. extra: 3881 / 3722,
  4833. bottom: 0.05
  4834. }
  4835. },
  4836. },
  4837. [
  4838. {
  4839. name: "Normal",
  4840. height: math.unit(12, "feet"),
  4841. default: true
  4842. },
  4843. ]
  4844. ))
  4845. characterMakers.push(() => makeCharacter(
  4846. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4847. {
  4848. side: {
  4849. height: math.unit(8, "meters"),
  4850. weight: math.unit(84755, "lbs"),
  4851. name: "Side",
  4852. image: {
  4853. source: "./media/characters/tobias/side.svg",
  4854. extra: 1474 / 1096,
  4855. bottom: 38.9 / 1513.1235
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(8, "meters"),
  4863. default: true
  4864. },
  4865. ]
  4866. ))
  4867. characterMakers.push(() => makeCharacter(
  4868. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4869. {
  4870. front: {
  4871. height: math.unit(5.5, "feet"),
  4872. weight: math.unit(400, "lbs"),
  4873. name: "Front",
  4874. image: {
  4875. source: "./media/characters/kieran/front.svg",
  4876. extra: 2694 / 2364,
  4877. bottom: 217 / 2908
  4878. }
  4879. },
  4880. side: {
  4881. height: math.unit(5.5, "feet"),
  4882. weight: math.unit(400, "lbs"),
  4883. name: "Side",
  4884. image: {
  4885. source: "./media/characters/kieran/side.svg",
  4886. extra: 875 / 777,
  4887. bottom: 84.6 / 959
  4888. }
  4889. },
  4890. },
  4891. [
  4892. {
  4893. name: "Normal",
  4894. height: math.unit(5.5, "feet"),
  4895. default: true
  4896. },
  4897. ]
  4898. ))
  4899. characterMakers.push(() => makeCharacter(
  4900. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4901. {
  4902. side: {
  4903. height: math.unit(2, "meters"),
  4904. weight: math.unit(70, "kg"),
  4905. name: "Side",
  4906. image: {
  4907. source: "./media/characters/sanya/side.svg",
  4908. bottom: 0.02,
  4909. extra: 1.02
  4910. }
  4911. },
  4912. },
  4913. [
  4914. {
  4915. name: "Small",
  4916. height: math.unit(2, "meters")
  4917. },
  4918. {
  4919. name: "Normal",
  4920. height: math.unit(3, "meters")
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(16, "meters"),
  4925. default: true
  4926. },
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4931. {
  4932. front: {
  4933. height: math.unit(2, "meters"),
  4934. weight: math.unit(120, "kg"),
  4935. name: "Front",
  4936. image: {
  4937. source: "./media/characters/miranda/front.svg",
  4938. extra: 195 / 185,
  4939. bottom: 10.9 / 206.5
  4940. }
  4941. },
  4942. back: {
  4943. height: math.unit(2, "meters"),
  4944. weight: math.unit(120, "kg"),
  4945. name: "Back",
  4946. image: {
  4947. source: "./media/characters/miranda/back.svg",
  4948. extra: 201 / 193,
  4949. bottom: 2.3 / 203.7
  4950. }
  4951. },
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(10, "feet"),
  4957. default: true
  4958. }
  4959. ]
  4960. ))
  4961. characterMakers.push(() => makeCharacter(
  4962. { name: "James", species: ["deer"], tags: ["anthro"] },
  4963. {
  4964. side: {
  4965. height: math.unit(2, "meters"),
  4966. weight: math.unit(100, "kg"),
  4967. name: "Front",
  4968. image: {
  4969. source: "./media/characters/james/front.svg",
  4970. extra: 10 / 8.5
  4971. }
  4972. },
  4973. },
  4974. [
  4975. {
  4976. name: "Normal",
  4977. height: math.unit(8.5, "feet"),
  4978. default: true
  4979. }
  4980. ]
  4981. ))
  4982. characterMakers.push(() => makeCharacter(
  4983. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4984. {
  4985. side: {
  4986. height: math.unit(9.5, "feet"),
  4987. weight: math.unit(2500, "lbs"),
  4988. name: "Side",
  4989. image: {
  4990. source: "./media/characters/heather/side.svg"
  4991. }
  4992. },
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(9.5, "feet"),
  4998. default: true
  4999. }
  5000. ]
  5001. ))
  5002. characterMakers.push(() => makeCharacter(
  5003. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5004. {
  5005. side: {
  5006. height: math.unit(6.5, "feet"),
  5007. weight: math.unit(400, "lbs"),
  5008. name: "Side",
  5009. image: {
  5010. source: "./media/characters/lukas/side.svg",
  5011. extra: 7.25 / 6.5
  5012. }
  5013. },
  5014. },
  5015. [
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(6.5, "feet"),
  5019. default: true
  5020. }
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5025. {
  5026. side: {
  5027. height: math.unit(5, "feet"),
  5028. weight: math.unit(3000, "lbs"),
  5029. name: "Side",
  5030. image: {
  5031. source: "./media/characters/louise/side.svg"
  5032. }
  5033. },
  5034. },
  5035. [
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(5, "feet"),
  5039. default: true
  5040. }
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5045. {
  5046. side: {
  5047. height: math.unit(6, "feet"),
  5048. weight: math.unit(150, "lbs"),
  5049. name: "Side",
  5050. image: {
  5051. source: "./media/characters/ramona/side.svg"
  5052. }
  5053. },
  5054. },
  5055. [
  5056. {
  5057. name: "Normal",
  5058. height: math.unit(5.3, "meters"),
  5059. default: true
  5060. },
  5061. {
  5062. name: "Macro",
  5063. height: math.unit(20, "stories")
  5064. },
  5065. {
  5066. name: "Macro+",
  5067. height: math.unit(50, "stories")
  5068. },
  5069. ]
  5070. ))
  5071. characterMakers.push(() => makeCharacter(
  5072. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5073. {
  5074. standing: {
  5075. height: math.unit(5.75, "feet"),
  5076. weight: math.unit(160, "lbs"),
  5077. name: "Standing",
  5078. image: {
  5079. source: "./media/characters/deerpuff/standing.svg",
  5080. extra: 682 / 624
  5081. }
  5082. },
  5083. sitting: {
  5084. height: math.unit(5.75 / 1.79, "feet"),
  5085. weight: math.unit(160, "lbs"),
  5086. name: "Sitting",
  5087. image: {
  5088. source: "./media/characters/deerpuff/sitting.svg",
  5089. bottom: 44 / 400,
  5090. extra: 1
  5091. }
  5092. },
  5093. taurLaying: {
  5094. height: math.unit(6, "feet"),
  5095. weight: math.unit(400, "lbs"),
  5096. name: "Taur (Laying)",
  5097. image: {
  5098. source: "./media/characters/deerpuff/taur-laying.svg"
  5099. }
  5100. },
  5101. },
  5102. [
  5103. {
  5104. name: "Puffball",
  5105. height: math.unit(6, "inches")
  5106. },
  5107. {
  5108. name: "Normalpuff",
  5109. height: math.unit(5.75, "feet")
  5110. },
  5111. {
  5112. name: "Macropuff",
  5113. height: math.unit(1500, "feet"),
  5114. default: true
  5115. },
  5116. {
  5117. name: "Megapuff",
  5118. height: math.unit(500, "miles")
  5119. },
  5120. {
  5121. name: "Gigapuff",
  5122. height: math.unit(250000, "miles")
  5123. },
  5124. {
  5125. name: "Omegapuff",
  5126. height: math.unit(1000, "lightyears")
  5127. },
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5132. {
  5133. stomping: {
  5134. height: math.unit(6, "feet"),
  5135. weight: math.unit(170, "lbs"),
  5136. name: "Stomping",
  5137. image: {
  5138. source: "./media/characters/vivian/stomping.svg"
  5139. }
  5140. },
  5141. sitting: {
  5142. height: math.unit(6 / 1.75, "feet"),
  5143. weight: math.unit(170, "lbs"),
  5144. name: "Sitting",
  5145. image: {
  5146. source: "./media/characters/vivian/sitting.svg",
  5147. bottom: 1 / 6.4,
  5148. extra: 1,
  5149. }
  5150. },
  5151. },
  5152. [
  5153. {
  5154. name: "Normal",
  5155. height: math.unit(7, "feet"),
  5156. default: true
  5157. },
  5158. {
  5159. name: "Macro",
  5160. height: math.unit(10, "stories")
  5161. },
  5162. {
  5163. name: "Macro+",
  5164. height: math.unit(30, "stories")
  5165. },
  5166. {
  5167. name: "Megamacro",
  5168. height: math.unit(10, "miles")
  5169. },
  5170. {
  5171. name: "Megamacro+",
  5172. height: math.unit(2750000, "meters")
  5173. },
  5174. ]
  5175. ))
  5176. characterMakers.push(() => makeCharacter(
  5177. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5178. {
  5179. front: {
  5180. height: math.unit(6, "feet"),
  5181. weight: math.unit(160, "lbs"),
  5182. name: "Front",
  5183. image: {
  5184. source: "./media/characters/prince/front.svg",
  5185. extra: 3400 / 3000
  5186. }
  5187. },
  5188. jumping: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(160, "lbs"),
  5191. name: "Jumping",
  5192. image: {
  5193. source: "./media/characters/prince/jump.svg",
  5194. extra: 2555 / 2134
  5195. }
  5196. },
  5197. },
  5198. [
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(7.75, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Not cute",
  5206. height: math.unit(17, "feet")
  5207. },
  5208. {
  5209. name: "I said NOT",
  5210. height: math.unit(91, "feet")
  5211. },
  5212. {
  5213. name: "Please stop",
  5214. height: math.unit(560, "feet")
  5215. },
  5216. {
  5217. name: "What have you done",
  5218. height: math.unit(2200, "feet")
  5219. },
  5220. {
  5221. name: "Deer God",
  5222. height: math.unit(3.6, "miles")
  5223. },
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5228. {
  5229. standing: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(300, "lbs"),
  5232. name: "Standing",
  5233. image: {
  5234. source: "./media/characters/psymon/standing.svg",
  5235. extra: 1888 / 1810,
  5236. bottom: 0.05
  5237. }
  5238. },
  5239. slithering: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(300, "lbs"),
  5242. name: "Slithering",
  5243. image: {
  5244. source: "./media/characters/psymon/slithering.svg",
  5245. extra: 1330 / 1224
  5246. }
  5247. },
  5248. slitheringAlt: {
  5249. height: math.unit(6, "feet"),
  5250. weight: math.unit(300, "lbs"),
  5251. name: "Slithering (Alt)",
  5252. image: {
  5253. source: "./media/characters/psymon/slithering-alt.svg",
  5254. extra: 1330 / 1224
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(11.25, "feet"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Large",
  5266. height: math.unit(27, "feet")
  5267. },
  5268. {
  5269. name: "Giant",
  5270. height: math.unit(87, "feet")
  5271. },
  5272. {
  5273. name: "Macro",
  5274. height: math.unit(365, "feet")
  5275. },
  5276. {
  5277. name: "Megamacro",
  5278. height: math.unit(3, "miles")
  5279. },
  5280. {
  5281. name: "World Serpent",
  5282. height: math.unit(8000, "miles")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(180, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/daimos/front.svg",
  5295. extra: 4160 / 3897,
  5296. bottom: 0.021
  5297. }
  5298. }
  5299. },
  5300. [
  5301. {
  5302. name: "Normal",
  5303. height: math.unit(8, "feet"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Big Dog",
  5308. height: math.unit(22, "feet")
  5309. },
  5310. {
  5311. name: "Macro",
  5312. height: math.unit(127, "feet")
  5313. },
  5314. {
  5315. name: "Megamacro",
  5316. height: math.unit(3600, "feet")
  5317. },
  5318. ]
  5319. ))
  5320. characterMakers.push(() => makeCharacter(
  5321. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5322. {
  5323. side: {
  5324. height: math.unit(6, "feet"),
  5325. weight: math.unit(180, "lbs"),
  5326. name: "Side",
  5327. image: {
  5328. source: "./media/characters/blake/side.svg",
  5329. extra: 1212 / 1120,
  5330. bottom: 0.05
  5331. }
  5332. },
  5333. crouched: {
  5334. height: math.unit(6 * 0.57, "feet"),
  5335. weight: math.unit(180, "lbs"),
  5336. name: "Crouched",
  5337. image: {
  5338. source: "./media/characters/blake/crouched.svg",
  5339. extra: 840 / 587,
  5340. bottom: 0.04
  5341. }
  5342. },
  5343. bent: {
  5344. height: math.unit(6 * 0.75, "feet"),
  5345. weight: math.unit(180, "lbs"),
  5346. name: "Bent",
  5347. image: {
  5348. source: "./media/characters/blake/bent.svg",
  5349. extra: 592 / 544,
  5350. bottom: 0.035
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(8 + 1 / 6, "feet"),
  5358. default: true
  5359. },
  5360. {
  5361. name: "Big Backside",
  5362. height: math.unit(37, "feet")
  5363. },
  5364. {
  5365. name: "Subway Shredder",
  5366. height: math.unit(72, "feet")
  5367. },
  5368. {
  5369. name: "City Carver",
  5370. height: math.unit(1675, "feet")
  5371. },
  5372. {
  5373. name: "Tectonic Tweaker",
  5374. height: math.unit(2300, "miles")
  5375. },
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(6, "feet"),
  5383. weight: math.unit(180, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/guisetto/front.svg",
  5387. extra: 856 / 817,
  5388. bottom: 0.06
  5389. }
  5390. },
  5391. airborne: {
  5392. height: math.unit(6, "feet"),
  5393. weight: math.unit(180, "lbs"),
  5394. name: "Airborne",
  5395. image: {
  5396. source: "./media/characters/guisetto/airborne.svg",
  5397. extra: 584 / 525
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(10 + 11 / 12, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Large",
  5409. height: math.unit(35, "feet")
  5410. },
  5411. {
  5412. name: "Macro",
  5413. height: math.unit(475, "feet")
  5414. },
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5419. {
  5420. front: {
  5421. height: math.unit(6, "feet"),
  5422. weight: math.unit(180, "lbs"),
  5423. name: "Front",
  5424. image: {
  5425. source: "./media/characters/luxor/front.svg",
  5426. extra: 2940 / 2152
  5427. }
  5428. },
  5429. back: {
  5430. height: math.unit(6, "feet"),
  5431. weight: math.unit(180, "lbs"),
  5432. name: "Back",
  5433. image: {
  5434. source: "./media/characters/luxor/back.svg",
  5435. extra: 1083 / 960
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(5 + 5 / 6, "feet"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Lamp",
  5447. height: math.unit(50, "feet")
  5448. },
  5449. {
  5450. name: "Lämp",
  5451. height: math.unit(300, "feet")
  5452. },
  5453. {
  5454. name: "The sun is a lamp",
  5455. height: math.unit(250000, "miles")
  5456. },
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5461. {
  5462. front: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(50, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/huoyan/front.svg"
  5468. }
  5469. },
  5470. side: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(180, "lbs"),
  5473. name: "Side",
  5474. image: {
  5475. source: "./media/characters/huoyan/side.svg"
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "Chef",
  5482. height: math.unit(9, "feet")
  5483. },
  5484. {
  5485. name: "Normal",
  5486. height: math.unit(65, "feet"),
  5487. default: true
  5488. },
  5489. {
  5490. name: "Macro",
  5491. height: math.unit(780, "feet")
  5492. },
  5493. {
  5494. name: "Flaming Mountain",
  5495. height: math.unit(4.8, "miles")
  5496. },
  5497. {
  5498. name: "Celestial",
  5499. height: math.unit(765000, "miles")
  5500. },
  5501. ]
  5502. ))
  5503. characterMakers.push(() => makeCharacter(
  5504. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5505. {
  5506. front: {
  5507. height: math.unit(5 + 3 / 4, "feet"),
  5508. weight: math.unit(120, "lbs"),
  5509. name: "Front",
  5510. image: {
  5511. source: "./media/characters/tails/front.svg"
  5512. }
  5513. }
  5514. },
  5515. [
  5516. {
  5517. name: "Normal",
  5518. height: math.unit(5 + 3 / 4, "feet"),
  5519. default: true
  5520. }
  5521. ]
  5522. ))
  5523. characterMakers.push(() => makeCharacter(
  5524. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5525. {
  5526. front: {
  5527. height: math.unit(4, "feet"),
  5528. weight: math.unit(50, "lbs"),
  5529. name: "Front",
  5530. image: {
  5531. source: "./media/characters/rainy/front.svg"
  5532. }
  5533. }
  5534. },
  5535. [
  5536. {
  5537. name: "Macro",
  5538. height: math.unit(800, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(150, "lbs"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/rainier/front.svg"
  5552. }
  5553. }
  5554. },
  5555. [
  5556. {
  5557. name: "Micro",
  5558. height: math.unit(2, "mm"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(8 + 4/12, "feet"),
  5568. name: "Front",
  5569. image: {
  5570. source: "./media/characters/andy-renard/front.svg",
  5571. extra: 1839/1726,
  5572. bottom: 134/1973
  5573. }
  5574. },
  5575. back: {
  5576. height: math.unit(8 + 4/12, "feet"),
  5577. name: "Back",
  5578. image: {
  5579. source: "./media/characters/andy-renard/back.svg",
  5580. extra: 1838/1710,
  5581. bottom: 105/1943
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Tall",
  5588. height: math.unit(8 + 4/12, "feet")
  5589. },
  5590. {
  5591. name: "Mini Macro",
  5592. height: math.unit(15, "feet"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Macro",
  5597. height: math.unit(100, "feet")
  5598. },
  5599. {
  5600. name: "Mega Macro",
  5601. height: math.unit(1000, "feet")
  5602. },
  5603. {
  5604. name: "Giga Macro",
  5605. height: math.unit(10, "miles")
  5606. },
  5607. {
  5608. name: "God Macro",
  5609. height: math.unit(1, "multiverse")
  5610. },
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(210, "lbs"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/cimmaron/front-sfw.svg",
  5622. extra: 701 / 676,
  5623. bottom: 0.046
  5624. }
  5625. },
  5626. back: {
  5627. height: math.unit(6, "feet"),
  5628. weight: math.unit(210, "lbs"),
  5629. name: "Back",
  5630. image: {
  5631. source: "./media/characters/cimmaron/back-sfw.svg",
  5632. extra: 701 / 676,
  5633. bottom: 0.046
  5634. }
  5635. },
  5636. frontNsfw: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(210, "lbs"),
  5639. name: "Front (NSFW)",
  5640. image: {
  5641. source: "./media/characters/cimmaron/front-nsfw.svg",
  5642. extra: 701 / 676,
  5643. bottom: 0.046
  5644. }
  5645. },
  5646. backNsfw: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(210, "lbs"),
  5649. name: "Back (NSFW)",
  5650. image: {
  5651. source: "./media/characters/cimmaron/back-nsfw.svg",
  5652. extra: 701 / 676,
  5653. bottom: 0.046
  5654. }
  5655. },
  5656. dick: {
  5657. height: math.unit(1.714, "feet"),
  5658. name: "Dick",
  5659. image: {
  5660. source: "./media/characters/cimmaron/dick.svg"
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(6, "feet"),
  5668. default: true
  5669. },
  5670. {
  5671. name: "Macro Mayor",
  5672. height: math.unit(350, "meters")
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(200, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/akari/front.svg",
  5685. extra: 962 / 901,
  5686. bottom: 0.04
  5687. }
  5688. }
  5689. },
  5690. [
  5691. {
  5692. name: "Micro",
  5693. height: math.unit(5, "inches"),
  5694. default: true
  5695. },
  5696. {
  5697. name: "Normal",
  5698. height: math.unit(7, "feet")
  5699. },
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5704. {
  5705. front: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(140, "lbs"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/cynosura/front.svg",
  5711. extra: 896 / 847
  5712. }
  5713. },
  5714. back: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(140, "lbs"),
  5717. name: "Back",
  5718. image: {
  5719. source: "./media/characters/cynosura/back.svg",
  5720. extra: 1365 / 1250
  5721. }
  5722. },
  5723. },
  5724. [
  5725. {
  5726. name: "Micro",
  5727. height: math.unit(4, "inches")
  5728. },
  5729. {
  5730. name: "Normal",
  5731. height: math.unit(5.75, "feet"),
  5732. default: true
  5733. },
  5734. {
  5735. name: "Tall",
  5736. height: math.unit(10, "feet")
  5737. },
  5738. {
  5739. name: "Big",
  5740. height: math.unit(20, "feet")
  5741. },
  5742. {
  5743. name: "Macro",
  5744. height: math.unit(50, "feet")
  5745. },
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5750. {
  5751. front: {
  5752. height: math.unit(13 + 2/12, "feet"),
  5753. weight: math.unit(800, "kg"),
  5754. name: "Front",
  5755. image: {
  5756. source: "./media/characters/gin/front.svg",
  5757. extra: 1312/1191,
  5758. bottom: 45/1357
  5759. }
  5760. },
  5761. mouth: {
  5762. height: math.unit(2.39 * 1.8, "feet"),
  5763. name: "Mouth",
  5764. image: {
  5765. source: "./media/characters/gin/mouth.svg"
  5766. }
  5767. },
  5768. hand: {
  5769. height: math.unit(1.57 * 2.19, "feet"),
  5770. name: "Hand",
  5771. image: {
  5772. source: "./media/characters/gin/hand.svg"
  5773. }
  5774. },
  5775. foot: {
  5776. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5777. name: "Foot",
  5778. image: {
  5779. source: "./media/characters/gin/foot.svg"
  5780. }
  5781. },
  5782. sole: {
  5783. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5784. name: "Sole",
  5785. image: {
  5786. source: "./media/characters/gin/sole.svg"
  5787. }
  5788. },
  5789. },
  5790. [
  5791. {
  5792. name: "Very Small",
  5793. height: math.unit(13 + 2 / 12, "feet")
  5794. },
  5795. {
  5796. name: "Micro",
  5797. height: math.unit(600, "miles")
  5798. },
  5799. {
  5800. name: "Regular",
  5801. height: math.unit(20, "earths"),
  5802. default: true
  5803. },
  5804. {
  5805. name: "Macro",
  5806. height: math.unit(2.2, "solarradii")
  5807. },
  5808. {
  5809. name: "Teramacro",
  5810. height: math.unit(1.2, "galaxies")
  5811. },
  5812. {
  5813. name: "Omegamacro",
  5814. height: math.unit(200, "universes")
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(6 + 1 / 6, "feet"),
  5823. weight: math.unit(178, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/guy/front.svg"
  5827. }
  5828. }
  5829. },
  5830. [
  5831. {
  5832. name: "Normal",
  5833. height: math.unit(6 + 1 / 6, "feet"),
  5834. default: true
  5835. },
  5836. {
  5837. name: "Large",
  5838. height: math.unit(25 + 7 / 12, "feet")
  5839. },
  5840. {
  5841. name: "Macro",
  5842. height: math.unit(60 + 9 / 12, "feet")
  5843. },
  5844. {
  5845. name: "Macro+",
  5846. height: math.unit(246, "feet")
  5847. },
  5848. {
  5849. name: "Macro++",
  5850. height: math.unit(878, "feet")
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(9, "feet"),
  5859. weight: math.unit(800, "lbs"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/tiberius/front.svg",
  5863. extra: 2295 / 2071
  5864. }
  5865. },
  5866. back: {
  5867. height: math.unit(9, "feet"),
  5868. weight: math.unit(800, "lbs"),
  5869. name: "Back",
  5870. image: {
  5871. source: "./media/characters/tiberius/back.svg",
  5872. extra: 2373 / 2160
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Normal",
  5879. height: math.unit(9, "feet"),
  5880. default: true
  5881. }
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5886. {
  5887. front: {
  5888. height: math.unit(6, "feet"),
  5889. weight: math.unit(600, "lbs"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/surgo/front.svg",
  5893. extra: 3591 / 2227
  5894. }
  5895. },
  5896. back: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(600, "lbs"),
  5899. name: "Back",
  5900. image: {
  5901. source: "./media/characters/surgo/back.svg",
  5902. extra: 3557 / 2228
  5903. }
  5904. },
  5905. laying: {
  5906. height: math.unit(6 * 0.85, "feet"),
  5907. weight: math.unit(600, "lbs"),
  5908. name: "Laying",
  5909. image: {
  5910. source: "./media/characters/surgo/laying.svg"
  5911. }
  5912. },
  5913. },
  5914. [
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(6, "feet"),
  5918. default: true
  5919. }
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5924. {
  5925. side: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(150, "lbs"),
  5928. name: "Side",
  5929. image: {
  5930. source: "./media/characters/cibus/side.svg",
  5931. extra: 800 / 400
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(6, "feet"),
  5939. default: true
  5940. }
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5945. {
  5946. front: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(240, "lbs"),
  5949. name: "Front",
  5950. image: {
  5951. source: "./media/characters/nibbles/front.svg"
  5952. }
  5953. },
  5954. side: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(240, "lbs"),
  5957. name: "Side",
  5958. image: {
  5959. source: "./media/characters/nibbles/side.svg"
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(9, "feet"),
  5967. default: true
  5968. }
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5973. {
  5974. side: {
  5975. height: math.unit(5 + 1 / 6, "feet"),
  5976. weight: math.unit(130, "lbs"),
  5977. name: "Side",
  5978. image: {
  5979. source: "./media/characters/rikky/side.svg",
  5980. extra: 851 / 801
  5981. }
  5982. },
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(5 + 1 / 6, "feet")
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(152, "feet"),
  5992. default: true
  5993. },
  5994. {
  5995. name: "Megamacro",
  5996. height: math.unit(7, "miles")
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6002. {
  6003. side: {
  6004. height: math.unit(370, "cm"),
  6005. weight: math.unit(350, "lbs"),
  6006. name: "Side",
  6007. image: {
  6008. source: "./media/characters/malfressa/side.svg"
  6009. }
  6010. },
  6011. walking: {
  6012. height: math.unit(370, "cm"),
  6013. weight: math.unit(350, "lbs"),
  6014. name: "Walking",
  6015. image: {
  6016. source: "./media/characters/malfressa/walking.svg"
  6017. }
  6018. },
  6019. feral: {
  6020. height: math.unit(2500, "cm"),
  6021. weight: math.unit(100000, "lbs"),
  6022. name: "Feral",
  6023. image: {
  6024. source: "./media/characters/malfressa/feral.svg",
  6025. extra: 2108 / 837,
  6026. bottom: 0.02
  6027. }
  6028. },
  6029. },
  6030. [
  6031. {
  6032. name: "Normal",
  6033. height: math.unit(370, "cm")
  6034. },
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(300, "meters"),
  6038. default: true
  6039. }
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6044. {
  6045. front: {
  6046. height: math.unit(6, "feet"),
  6047. weight: math.unit(60, "kg"),
  6048. name: "Front",
  6049. image: {
  6050. source: "./media/characters/jaro/front.svg"
  6051. }
  6052. },
  6053. back: {
  6054. height: math.unit(6, "feet"),
  6055. weight: math.unit(60, "kg"),
  6056. name: "Back",
  6057. image: {
  6058. source: "./media/characters/jaro/back.svg"
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Micro",
  6065. height: math.unit(7, "inches")
  6066. },
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(5.5, "feet"),
  6070. default: true
  6071. },
  6072. {
  6073. name: "Minimacro",
  6074. height: math.unit(20, "feet")
  6075. },
  6076. {
  6077. name: "Macro",
  6078. height: math.unit(200, "meters")
  6079. }
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(195, "lb"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/rogue/front.svg"
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(90, "feet"),
  6098. default: true
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6104. {
  6105. front: {
  6106. height: math.unit(5 + 8 / 12, "feet"),
  6107. weight: math.unit(140, "lb"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/piper/front.svg",
  6111. extra: 3948/3655,
  6112. bottom: 0/3948
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Micro",
  6119. height: math.unit(2, "inches")
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5 + 8 / 12, "feet")
  6124. },
  6125. {
  6126. name: "Macro",
  6127. height: math.unit(250, "feet"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Megamacro",
  6132. height: math.unit(7, "miles")
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(6, "feet"),
  6141. weight: math.unit(220, "lb"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/gemini/front.svg"
  6145. }
  6146. },
  6147. back: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(220, "lb"),
  6150. name: "Back",
  6151. image: {
  6152. source: "./media/characters/gemini/back.svg"
  6153. }
  6154. },
  6155. kneeling: {
  6156. height: math.unit(6 / 1.5, "feet"),
  6157. weight: math.unit(220, "lb"),
  6158. name: "Kneeling",
  6159. image: {
  6160. source: "./media/characters/gemini/kneeling.svg",
  6161. bottom: 0.02
  6162. }
  6163. },
  6164. },
  6165. [
  6166. {
  6167. name: "Macro",
  6168. height: math.unit(300, "meters"),
  6169. default: true
  6170. },
  6171. {
  6172. name: "Megamacro",
  6173. height: math.unit(6900, "meters")
  6174. },
  6175. ]
  6176. ))
  6177. characterMakers.push(() => makeCharacter(
  6178. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6179. {
  6180. anthro: {
  6181. height: math.unit(2.35, "meters"),
  6182. weight: math.unit(73, "kg"),
  6183. name: "Anthro",
  6184. image: {
  6185. source: "./media/characters/alicia/anthro.svg",
  6186. extra: 2571 / 2385,
  6187. bottom: 75 / 2648
  6188. }
  6189. },
  6190. paw: {
  6191. height: math.unit(1.32, "feet"),
  6192. name: "Paw",
  6193. image: {
  6194. source: "./media/characters/alicia/paw.svg"
  6195. }
  6196. },
  6197. feral: {
  6198. height: math.unit(1.69, "meters"),
  6199. weight: math.unit(73, "kg"),
  6200. name: "Feral",
  6201. image: {
  6202. source: "./media/characters/alicia/feral.svg",
  6203. extra: 2123 / 1715,
  6204. bottom: 222 / 2349
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Normal",
  6211. height: math.unit(2.35, "meters")
  6212. },
  6213. {
  6214. name: "Macro",
  6215. height: math.unit(60, "meters"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Megamacro",
  6220. height: math.unit(10000, "kilometers")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(7, "feet"),
  6229. weight: math.unit(250, "lbs"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/archy/front.svg"
  6233. }
  6234. }
  6235. },
  6236. [
  6237. {
  6238. name: "Micro",
  6239. height: math.unit(1, "inch")
  6240. },
  6241. {
  6242. name: "Shorty",
  6243. height: math.unit(5, "feet")
  6244. },
  6245. {
  6246. name: "Normal",
  6247. height: math.unit(7, "feet")
  6248. },
  6249. {
  6250. name: "Macro",
  6251. height: math.unit(600, "meters"),
  6252. default: true
  6253. },
  6254. {
  6255. name: "Megamacro",
  6256. height: math.unit(1, "mile")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(1.65, "meters"),
  6265. weight: math.unit(74, "kg"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/berri/front.svg",
  6269. extra: 857 / 837,
  6270. bottom: 18 / 877
  6271. }
  6272. },
  6273. bum: {
  6274. height: math.unit(1.46, "feet"),
  6275. name: "Bum",
  6276. image: {
  6277. source: "./media/characters/berri/bum.svg"
  6278. }
  6279. },
  6280. mouth: {
  6281. height: math.unit(0.44, "feet"),
  6282. name: "Mouth",
  6283. image: {
  6284. source: "./media/characters/berri/mouth.svg"
  6285. }
  6286. },
  6287. paw: {
  6288. height: math.unit(0.826, "feet"),
  6289. name: "Paw",
  6290. image: {
  6291. source: "./media/characters/berri/paw.svg"
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(1.65, "meters")
  6299. },
  6300. {
  6301. name: "Macro",
  6302. height: math.unit(60, "m"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Megamacro",
  6307. height: math.unit(9.213, "km")
  6308. },
  6309. {
  6310. name: "Planet Eater",
  6311. height: math.unit(489, "megameters")
  6312. },
  6313. {
  6314. name: "Teramacro",
  6315. height: math.unit(2471635000000, "meters")
  6316. },
  6317. {
  6318. name: "Examacro",
  6319. height: math.unit(8.0624e+26, "meters")
  6320. }
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6325. {
  6326. front: {
  6327. height: math.unit(1.72, "meters"),
  6328. weight: math.unit(68, "kg"),
  6329. name: "Front",
  6330. image: {
  6331. source: "./media/characters/lexi/front.svg"
  6332. }
  6333. }
  6334. },
  6335. [
  6336. {
  6337. name: "Very Smol",
  6338. height: math.unit(10, "mm")
  6339. },
  6340. {
  6341. name: "Micro",
  6342. height: math.unit(6.8, "cm"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(1.72, "m")
  6348. }
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6353. {
  6354. front: {
  6355. height: math.unit(1.69, "meters"),
  6356. weight: math.unit(68, "kg"),
  6357. name: "Front",
  6358. image: {
  6359. source: "./media/characters/martin/front.svg",
  6360. extra: 596 / 581
  6361. }
  6362. }
  6363. },
  6364. [
  6365. {
  6366. name: "Micro",
  6367. height: math.unit(6.85, "cm"),
  6368. default: true
  6369. },
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(1.69, "m")
  6373. }
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6378. {
  6379. front: {
  6380. height: math.unit(1.69, "meters"),
  6381. weight: math.unit(68, "kg"),
  6382. name: "Front",
  6383. image: {
  6384. source: "./media/characters/juno/front.svg"
  6385. }
  6386. }
  6387. },
  6388. [
  6389. {
  6390. name: "Micro",
  6391. height: math.unit(7, "cm")
  6392. },
  6393. {
  6394. name: "Normal",
  6395. height: math.unit(1.89, "m")
  6396. },
  6397. {
  6398. name: "Macro",
  6399. height: math.unit(353, "meters"),
  6400. default: true
  6401. }
  6402. ]
  6403. ))
  6404. characterMakers.push(() => makeCharacter(
  6405. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6406. {
  6407. front: {
  6408. height: math.unit(1.93, "meters"),
  6409. weight: math.unit(83, "kg"),
  6410. name: "Front",
  6411. image: {
  6412. source: "./media/characters/samantha/front.svg"
  6413. }
  6414. },
  6415. frontClothed: {
  6416. height: math.unit(1.93, "meters"),
  6417. weight: math.unit(83, "kg"),
  6418. name: "Front (Clothed)",
  6419. image: {
  6420. source: "./media/characters/samantha/front-clothed.svg"
  6421. }
  6422. },
  6423. back: {
  6424. height: math.unit(1.93, "meters"),
  6425. weight: math.unit(83, "kg"),
  6426. name: "Back",
  6427. image: {
  6428. source: "./media/characters/samantha/back.svg"
  6429. }
  6430. },
  6431. },
  6432. [
  6433. {
  6434. name: "Normal",
  6435. height: math.unit(1.93, "m")
  6436. },
  6437. {
  6438. name: "Macro",
  6439. height: math.unit(74, "meters"),
  6440. default: true
  6441. },
  6442. {
  6443. name: "Macro+",
  6444. height: math.unit(223, "meters"),
  6445. },
  6446. {
  6447. name: "Megamacro",
  6448. height: math.unit(8381, "meters"),
  6449. },
  6450. {
  6451. name: "Megamacro+",
  6452. height: math.unit(12000, "kilometers")
  6453. },
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6458. {
  6459. front: {
  6460. height: math.unit(1.92, "meters"),
  6461. weight: math.unit(80, "kg"),
  6462. name: "Front",
  6463. image: {
  6464. source: "./media/characters/dr-clay/front.svg"
  6465. }
  6466. },
  6467. frontClothed: {
  6468. height: math.unit(1.92, "meters"),
  6469. weight: math.unit(80, "kg"),
  6470. name: "Front (Clothed)",
  6471. image: {
  6472. source: "./media/characters/dr-clay/front-clothed.svg"
  6473. }
  6474. }
  6475. },
  6476. [
  6477. {
  6478. name: "Normal",
  6479. height: math.unit(1.92, "m")
  6480. },
  6481. {
  6482. name: "Macro",
  6483. height: math.unit(214, "meters"),
  6484. default: true
  6485. },
  6486. {
  6487. name: "Macro+",
  6488. height: math.unit(12.237, "meters"),
  6489. },
  6490. {
  6491. name: "Megamacro",
  6492. height: math.unit(557, "megameters"),
  6493. },
  6494. {
  6495. name: "Unimaginable",
  6496. height: math.unit(120e9, "lightyears")
  6497. },
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6502. {
  6503. front: {
  6504. height: math.unit(2, "meters"),
  6505. weight: math.unit(80, "kg"),
  6506. name: "Front",
  6507. image: {
  6508. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6509. }
  6510. }
  6511. },
  6512. [
  6513. {
  6514. name: "Teramacro",
  6515. height: math.unit(500000, "lightyears"),
  6516. default: true
  6517. },
  6518. ]
  6519. ))
  6520. characterMakers.push(() => makeCharacter(
  6521. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6522. {
  6523. crux: {
  6524. height: math.unit(2, "meters"),
  6525. weight: math.unit(150, "kg"),
  6526. name: "Crux",
  6527. image: {
  6528. source: "./media/characters/vemus/crux.svg",
  6529. extra: 1074/936,
  6530. bottom: 23/1097
  6531. }
  6532. },
  6533. skunkTanuki: {
  6534. height: math.unit(2, "meters"),
  6535. weight: math.unit(150, "kg"),
  6536. name: "Skunk-Tanuki",
  6537. image: {
  6538. source: "./media/characters/vemus/skunk-tanuki.svg",
  6539. extra: 926/893,
  6540. bottom: 20/946
  6541. }
  6542. },
  6543. },
  6544. [
  6545. {
  6546. name: "Normal",
  6547. height: math.unit(3.75, "meters"),
  6548. default: true
  6549. },
  6550. {
  6551. name: "Big",
  6552. height: math.unit(8, "meters")
  6553. },
  6554. {
  6555. name: "Macro",
  6556. height: math.unit(100, "meters")
  6557. },
  6558. {
  6559. name: "Macro+",
  6560. height: math.unit(1500, "meters")
  6561. },
  6562. {
  6563. name: "Stellar",
  6564. height: math.unit(14e8, "meters")
  6565. },
  6566. ]
  6567. ))
  6568. characterMakers.push(() => makeCharacter(
  6569. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6570. {
  6571. front: {
  6572. height: math.unit(2, "meters"),
  6573. weight: math.unit(70, "kg"),
  6574. name: "Front",
  6575. image: {
  6576. source: "./media/characters/beherit/front.svg",
  6577. extra: 1408 / 1242
  6578. }
  6579. }
  6580. },
  6581. [
  6582. {
  6583. name: "Normal",
  6584. height: math.unit(6, "feet")
  6585. },
  6586. {
  6587. name: "Lorg",
  6588. height: math.unit(25, "feet"),
  6589. default: true
  6590. },
  6591. {
  6592. name: "Lorger",
  6593. height: math.unit(75, "feet")
  6594. },
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(200, "meters")
  6598. },
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6603. {
  6604. front: {
  6605. height: math.unit(2, "meters"),
  6606. weight: math.unit(150, "kg"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/everett/front.svg",
  6610. extra: 2038 / 1737,
  6611. bottom: 0.03
  6612. }
  6613. },
  6614. paw: {
  6615. height: math.unit(2 / 3.6, "meters"),
  6616. name: "Paw",
  6617. image: {
  6618. source: "./media/characters/everett/paw.svg"
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(15, "feet"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Lorg",
  6630. height: math.unit(70, "feet"),
  6631. default: true
  6632. },
  6633. {
  6634. name: "Lorger",
  6635. height: math.unit(250, "feet")
  6636. },
  6637. {
  6638. name: "Macro",
  6639. height: math.unit(500, "meters")
  6640. },
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(2, "meters"),
  6648. weight: math.unit(86, "kg"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/rose/front.svg",
  6652. extra: 1785/1636,
  6653. bottom: 30/1815
  6654. }
  6655. },
  6656. frontSporty: {
  6657. height: math.unit(2, "meters"),
  6658. weight: math.unit(86, "kg"),
  6659. name: "Front (Sporty)",
  6660. image: {
  6661. source: "./media/characters/rose/front-sporty.svg",
  6662. extra: 350/335,
  6663. bottom: 10/360
  6664. }
  6665. },
  6666. frontAlt: {
  6667. height: math.unit(1.6, "meters"),
  6668. weight: math.unit(86, "kg"),
  6669. name: "Front (Alt)",
  6670. image: {
  6671. source: "./media/characters/rose/front-alt.svg",
  6672. extra: 299/283,
  6673. bottom: 3/302
  6674. }
  6675. },
  6676. plush: {
  6677. height: math.unit(2, "meters"),
  6678. weight: math.unit(86/3, "kg"),
  6679. name: "Plush",
  6680. image: {
  6681. source: "./media/characters/rose/plush.svg",
  6682. extra: 361/337,
  6683. bottom: 11/372
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "True Micro",
  6690. height: math.unit(9, "cm")
  6691. },
  6692. {
  6693. name: "Micro",
  6694. height: math.unit(16, "cm")
  6695. },
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(1.85, "meters"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Mini-Macro",
  6703. height: math.unit(5, "meters")
  6704. },
  6705. {
  6706. name: "Macro",
  6707. height: math.unit(15, "meters")
  6708. },
  6709. {
  6710. name: "True Macro",
  6711. height: math.unit(40, "meters")
  6712. },
  6713. {
  6714. name: "City Scale",
  6715. height: math.unit(1, "km")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(2, "meters"),
  6724. weight: math.unit(350, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/regal/front.svg"
  6728. }
  6729. },
  6730. back: {
  6731. height: math.unit(2, "meters"),
  6732. weight: math.unit(350, "lbs"),
  6733. name: "Back",
  6734. image: {
  6735. source: "./media/characters/regal/back.svg"
  6736. }
  6737. },
  6738. },
  6739. [
  6740. {
  6741. name: "Macro",
  6742. height: math.unit(350, "feet"),
  6743. default: true
  6744. }
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(4 + 11 / 12, "feet"),
  6752. weight: math.unit(100, "lbs"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/opal/front.svg"
  6756. }
  6757. },
  6758. frontAlt: {
  6759. height: math.unit(4 + 11 / 12, "feet"),
  6760. weight: math.unit(100, "lbs"),
  6761. name: "Front (Alt)",
  6762. image: {
  6763. source: "./media/characters/opal/front-alt.svg"
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Small",
  6770. height: math.unit(4 + 11 / 12, "feet")
  6771. },
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(20, "feet"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Macro",
  6779. height: math.unit(120, "feet")
  6780. },
  6781. {
  6782. name: "Megamacro",
  6783. height: math.unit(80, "miles")
  6784. },
  6785. {
  6786. name: "True Size",
  6787. height: math.unit(100000, "lightyears")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(6, "feet"),
  6796. weight: math.unit(200, "lbs"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/vector-wuff/front.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(2.8, "meters")
  6807. },
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(450, "meters"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Megamacro",
  6815. height: math.unit(15, "kilometers")
  6816. }
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(6, "feet"),
  6824. weight: math.unit(256, "lbs"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/dannik/front.svg"
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Macro",
  6834. height: math.unit(69.57, "meters"),
  6835. default: true
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(120, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/azura-saharah/front.svg"
  6848. }
  6849. },
  6850. back: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(120, "lbs"),
  6853. name: "Back",
  6854. image: {
  6855. source: "./media/characters/azura-saharah/back.svg"
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(100, "feet"),
  6863. default: true
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6869. {
  6870. side: {
  6871. height: math.unit(5 + 4 / 12, "feet"),
  6872. weight: math.unit(163, "lbs"),
  6873. name: "Side",
  6874. image: {
  6875. source: "./media/characters/kennedy/side.svg"
  6876. }
  6877. }
  6878. },
  6879. [
  6880. {
  6881. name: "Standard Doggo",
  6882. height: math.unit(5 + 4 / 12, "feet")
  6883. },
  6884. {
  6885. name: "Big Doggo",
  6886. height: math.unit(25 + 3 / 12, "feet"),
  6887. default: true
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(90, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/odi-lunar/front.svg"
  6900. }
  6901. }
  6902. },
  6903. [
  6904. {
  6905. name: "Micro",
  6906. height: math.unit(3, "inches"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Normal",
  6911. height: math.unit(5.5, "feet")
  6912. }
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6917. {
  6918. back: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(220, "lbs"),
  6921. name: "Back",
  6922. image: {
  6923. source: "./media/characters/mandake/back.svg"
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(7, "feet"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(78, "feet")
  6936. },
  6937. {
  6938. name: "Macro+",
  6939. height: math.unit(300, "meters")
  6940. },
  6941. {
  6942. name: "Macro++",
  6943. height: math.unit(2400, "feet")
  6944. },
  6945. {
  6946. name: "Megamacro",
  6947. height: math.unit(5167, "meters")
  6948. },
  6949. {
  6950. name: "Gigamacro",
  6951. height: math.unit(41769, "miles")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(6, "feet"),
  6960. weight: math.unit(120, "lbs"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/yozey/front.svg"
  6964. }
  6965. },
  6966. frontAlt: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(120, "lbs"),
  6969. name: "Front (Alt)",
  6970. image: {
  6971. source: "./media/characters/yozey/front-alt.svg"
  6972. }
  6973. },
  6974. side: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(120, "lbs"),
  6977. name: "Side",
  6978. image: {
  6979. source: "./media/characters/yozey/side.svg"
  6980. }
  6981. },
  6982. },
  6983. [
  6984. {
  6985. name: "Micro",
  6986. height: math.unit(3, "inches"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(6, "feet")
  6992. }
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6997. {
  6998. front: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(103, "lbs"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/valeska-voss/front.svg"
  7004. }
  7005. }
  7006. },
  7007. [
  7008. {
  7009. name: "Mini-Sized Sub",
  7010. height: math.unit(3.1, "inches")
  7011. },
  7012. {
  7013. name: "Mid-Sized Sub",
  7014. height: math.unit(6.2, "inches")
  7015. },
  7016. {
  7017. name: "Full-Sized Sub",
  7018. height: math.unit(9.3, "inches")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(5 + 2 / 12, "foot"),
  7023. default: true
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(160, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/gene-zeta/front.svg",
  7036. extra: 3006 / 2826,
  7037. bottom: 182 / 3188
  7038. }
  7039. }
  7040. },
  7041. [
  7042. {
  7043. name: "Micro",
  7044. height: math.unit(6, "inches")
  7045. },
  7046. {
  7047. name: "Normal",
  7048. height: math.unit(5 + 11 / 12, "foot"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Macro",
  7053. height: math.unit(140, "feet")
  7054. },
  7055. {
  7056. name: "Supercharged",
  7057. height: math.unit(2500, "feet")
  7058. },
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(350, "lbs"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/razinox/front.svg",
  7070. extra: 1686 / 1548,
  7071. bottom: 28.2 / 1868
  7072. }
  7073. },
  7074. back: {
  7075. height: math.unit(6, "feet"),
  7076. weight: math.unit(350, "lbs"),
  7077. name: "Back",
  7078. image: {
  7079. source: "./media/characters/razinox/back.svg",
  7080. extra: 1660 / 1590,
  7081. bottom: 15 / 1665
  7082. }
  7083. },
  7084. },
  7085. [
  7086. {
  7087. name: "Normal",
  7088. height: math.unit(10 + 8 / 12, "foot")
  7089. },
  7090. {
  7091. name: "Minimacro",
  7092. height: math.unit(15, "foot")
  7093. },
  7094. {
  7095. name: "Macro",
  7096. height: math.unit(60, "foot"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Megamacro",
  7101. height: math.unit(5, "miles")
  7102. },
  7103. {
  7104. name: "Gigamacro",
  7105. height: math.unit(6000, "miles")
  7106. },
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(150, "lbs"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/cobalt/front.svg"
  7118. }
  7119. }
  7120. },
  7121. [
  7122. {
  7123. name: "Normal",
  7124. height: math.unit(8 + 1 / 12, "foot")
  7125. },
  7126. {
  7127. name: "Macro",
  7128. height: math.unit(111, "foot"),
  7129. default: true
  7130. },
  7131. {
  7132. name: "Supracosmic",
  7133. height: math.unit(1e42, "feet")
  7134. },
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(140, "lbs"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/amanda/front.svg"
  7146. }
  7147. }
  7148. },
  7149. [
  7150. {
  7151. name: "Micro",
  7152. height: math.unit(5, "inches"),
  7153. default: true
  7154. },
  7155. ]
  7156. ))
  7157. characterMakers.push(() => makeCharacter(
  7158. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7159. {
  7160. front: {
  7161. height: math.unit(2.75, "meters"),
  7162. weight: math.unit(1200, "lb"),
  7163. name: "Front",
  7164. image: {
  7165. source: "./media/characters/teal/front.svg",
  7166. extra: 2463 / 2320,
  7167. bottom: 166 / 2629
  7168. }
  7169. },
  7170. back: {
  7171. height: math.unit(2.75, "meters"),
  7172. weight: math.unit(1200, "lb"),
  7173. name: "Back",
  7174. image: {
  7175. source: "./media/characters/teal/back.svg",
  7176. extra: 2580 / 2489,
  7177. bottom: 151 / 2731
  7178. }
  7179. },
  7180. sitting: {
  7181. height: math.unit(1.9, "meters"),
  7182. weight: math.unit(1200, "lb"),
  7183. name: "Sitting",
  7184. image: {
  7185. source: "./media/characters/teal/sitting.svg",
  7186. extra: 623 / 590,
  7187. bottom: 121 / 744
  7188. }
  7189. },
  7190. standing: {
  7191. height: math.unit(2.75, "meters"),
  7192. weight: math.unit(1200, "lb"),
  7193. name: "Standing",
  7194. image: {
  7195. source: "./media/characters/teal/standing.svg",
  7196. extra: 923 / 893,
  7197. bottom: 60 / 983
  7198. }
  7199. },
  7200. stretching: {
  7201. height: math.unit(3.65, "meters"),
  7202. weight: math.unit(1200, "lb"),
  7203. name: "Stretching",
  7204. image: {
  7205. source: "./media/characters/teal/stretching.svg",
  7206. extra: 1276 / 1244,
  7207. bottom: 0 / 1276
  7208. }
  7209. },
  7210. legged: {
  7211. height: math.unit(1.3, "meters"),
  7212. weight: math.unit(100, "lb"),
  7213. name: "Legged",
  7214. image: {
  7215. source: "./media/characters/teal/legged.svg",
  7216. extra: 462 / 437,
  7217. bottom: 24 / 486
  7218. }
  7219. },
  7220. naga: {
  7221. height: math.unit(5.4, "meters"),
  7222. weight: math.unit(4000, "lb"),
  7223. name: "Naga",
  7224. image: {
  7225. source: "./media/characters/teal/naga.svg",
  7226. extra: 1902 / 1858,
  7227. bottom: 0 / 1902
  7228. }
  7229. },
  7230. hand: {
  7231. height: math.unit(0.52, "meters"),
  7232. name: "Hand",
  7233. image: {
  7234. source: "./media/characters/teal/hand.svg"
  7235. }
  7236. },
  7237. maw: {
  7238. height: math.unit(0.43, "meters"),
  7239. name: "Maw",
  7240. image: {
  7241. source: "./media/characters/teal/maw.svg"
  7242. }
  7243. },
  7244. slit: {
  7245. height: math.unit(0.25, "meters"),
  7246. name: "Slit",
  7247. image: {
  7248. source: "./media/characters/teal/slit.svg"
  7249. }
  7250. },
  7251. },
  7252. [
  7253. {
  7254. name: "Normal",
  7255. height: math.unit(2.75, "meters"),
  7256. default: true
  7257. },
  7258. {
  7259. name: "Macro",
  7260. height: math.unit(300, "feet")
  7261. },
  7262. {
  7263. name: "Macro+",
  7264. height: math.unit(2000, "feet")
  7265. },
  7266. ]
  7267. ))
  7268. characterMakers.push(() => makeCharacter(
  7269. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7270. {
  7271. frontCat: {
  7272. height: math.unit(6, "feet"),
  7273. weight: math.unit(180, "lbs"),
  7274. name: "Front (Cat)",
  7275. image: {
  7276. source: "./media/characters/ravin-amulet/front-cat.svg"
  7277. }
  7278. },
  7279. frontCatAlt: {
  7280. height: math.unit(6, "feet"),
  7281. weight: math.unit(180, "lbs"),
  7282. name: "Front (Alt, Cat)",
  7283. image: {
  7284. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7285. }
  7286. },
  7287. frontWerewolf: {
  7288. height: math.unit(6 * 1.2, "feet"),
  7289. weight: math.unit(225, "lbs"),
  7290. name: "Front (Werewolf)",
  7291. image: {
  7292. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7293. }
  7294. },
  7295. backWerewolf: {
  7296. height: math.unit(6 * 1.2, "feet"),
  7297. weight: math.unit(225, "lbs"),
  7298. name: "Back (Werewolf)",
  7299. image: {
  7300. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7301. }
  7302. },
  7303. },
  7304. [
  7305. {
  7306. name: "Nano",
  7307. height: math.unit(1, "micrometer")
  7308. },
  7309. {
  7310. name: "Micro",
  7311. height: math.unit(1, "inch")
  7312. },
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(6, "feet"),
  7316. default: true
  7317. },
  7318. {
  7319. name: "Macro",
  7320. height: math.unit(60, "feet")
  7321. }
  7322. ]
  7323. ))
  7324. characterMakers.push(() => makeCharacter(
  7325. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7326. {
  7327. front: {
  7328. height: math.unit(6, "feet"),
  7329. weight: math.unit(165, "lbs"),
  7330. name: "Front",
  7331. image: {
  7332. source: "./media/characters/fluoresce/front.svg"
  7333. }
  7334. }
  7335. },
  7336. [
  7337. {
  7338. name: "Micro",
  7339. height: math.unit(6, "cm")
  7340. },
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(5 + 7 / 12, "feet"),
  7344. default: true
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(56, "feet")
  7349. },
  7350. {
  7351. name: "Megamacro",
  7352. height: math.unit(1.9, "miles")
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(9 + 6 / 12, "feet"),
  7361. weight: math.unit(523, "lbs"),
  7362. name: "Side",
  7363. image: {
  7364. source: "./media/characters/aurora/side.svg"
  7365. }
  7366. }
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(9 + 6 / 12, "feet")
  7372. },
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(96, "feet"),
  7376. default: true
  7377. },
  7378. {
  7379. name: "Macro+",
  7380. height: math.unit(243, "feet")
  7381. },
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7386. {
  7387. front: {
  7388. height: math.unit(194, "cm"),
  7389. weight: math.unit(90, "kg"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/ranek/front.svg"
  7393. }
  7394. },
  7395. side: {
  7396. height: math.unit(194, "cm"),
  7397. weight: math.unit(90, "kg"),
  7398. name: "Side",
  7399. image: {
  7400. source: "./media/characters/ranek/side.svg"
  7401. }
  7402. },
  7403. back: {
  7404. height: math.unit(194, "cm"),
  7405. weight: math.unit(90, "kg"),
  7406. name: "Back",
  7407. image: {
  7408. source: "./media/characters/ranek/back.svg"
  7409. }
  7410. },
  7411. feral: {
  7412. height: math.unit(30, "cm"),
  7413. weight: math.unit(1.6, "lbs"),
  7414. name: "Feral",
  7415. image: {
  7416. source: "./media/characters/ranek/feral.svg"
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Normal",
  7423. height: math.unit(194, "cm"),
  7424. default: true
  7425. },
  7426. {
  7427. name: "Macro",
  7428. height: math.unit(100, "meters")
  7429. },
  7430. ]
  7431. ))
  7432. characterMakers.push(() => makeCharacter(
  7433. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7434. {
  7435. front: {
  7436. height: math.unit(5 + 6 / 12, "feet"),
  7437. weight: math.unit(153, "lbs"),
  7438. name: "Front",
  7439. image: {
  7440. source: "./media/characters/andrew-cooper/front.svg"
  7441. }
  7442. },
  7443. },
  7444. [
  7445. {
  7446. name: "Nano",
  7447. height: math.unit(1, "mm")
  7448. },
  7449. {
  7450. name: "Micro",
  7451. height: math.unit(2, "inches")
  7452. },
  7453. {
  7454. name: "Normal",
  7455. height: math.unit(5 + 6 / 12, "feet"),
  7456. default: true
  7457. }
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(6, "feet"),
  7465. weight: math.unit(180, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/akane-sato/front.svg",
  7469. extra: 1219 / 1140
  7470. }
  7471. },
  7472. back: {
  7473. height: math.unit(6, "feet"),
  7474. weight: math.unit(180, "lbs"),
  7475. name: "Back",
  7476. image: {
  7477. source: "./media/characters/akane-sato/back.svg",
  7478. extra: 1219 / 1170
  7479. }
  7480. },
  7481. },
  7482. [
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(2.5, "meters")
  7486. },
  7487. {
  7488. name: "Macro",
  7489. height: math.unit(250, "meters"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Megamacro",
  7494. height: math.unit(25, "km")
  7495. },
  7496. ]
  7497. ))
  7498. characterMakers.push(() => makeCharacter(
  7499. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7500. {
  7501. front: {
  7502. height: math.unit(6, "feet"),
  7503. weight: math.unit(65, "kg"),
  7504. name: "Front",
  7505. image: {
  7506. source: "./media/characters/rook/front.svg",
  7507. extra: 960 / 950
  7508. }
  7509. }
  7510. },
  7511. [
  7512. {
  7513. name: "Normal",
  7514. height: math.unit(8.8, "feet")
  7515. },
  7516. {
  7517. name: "Macro",
  7518. height: math.unit(88, "feet"),
  7519. default: true
  7520. },
  7521. {
  7522. name: "Megamacro",
  7523. height: math.unit(8, "miles")
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7529. {
  7530. front: {
  7531. height: math.unit(12 + 2 / 12, "feet"),
  7532. weight: math.unit(808, "lbs"),
  7533. name: "Front",
  7534. image: {
  7535. source: "./media/characters/prodigy/front.svg"
  7536. }
  7537. }
  7538. },
  7539. [
  7540. {
  7541. name: "Normal",
  7542. height: math.unit(12 + 2 / 12, "feet"),
  7543. default: true
  7544. },
  7545. {
  7546. name: "Macro",
  7547. height: math.unit(143, "feet")
  7548. },
  7549. {
  7550. name: "Macro+",
  7551. height: math.unit(400, "feet")
  7552. },
  7553. ]
  7554. ))
  7555. characterMakers.push(() => makeCharacter(
  7556. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7557. {
  7558. front: {
  7559. height: math.unit(6, "feet"),
  7560. weight: math.unit(225, "lbs"),
  7561. name: "Front",
  7562. image: {
  7563. source: "./media/characters/daniel/front.svg"
  7564. }
  7565. },
  7566. leaning: {
  7567. height: math.unit(6, "feet"),
  7568. weight: math.unit(225, "lbs"),
  7569. name: "Leaning",
  7570. image: {
  7571. source: "./media/characters/daniel/leaning.svg"
  7572. }
  7573. },
  7574. },
  7575. [
  7576. {
  7577. name: "Macro",
  7578. height: math.unit(1000, "feet"),
  7579. default: true
  7580. },
  7581. ]
  7582. ))
  7583. characterMakers.push(() => makeCharacter(
  7584. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7585. {
  7586. front: {
  7587. height: math.unit(6, "feet"),
  7588. weight: math.unit(88, "lbs"),
  7589. name: "Front",
  7590. image: {
  7591. source: "./media/characters/chiros/front.svg",
  7592. extra: 306 / 226
  7593. }
  7594. },
  7595. side: {
  7596. height: math.unit(6, "feet"),
  7597. weight: math.unit(88, "lbs"),
  7598. name: "Side",
  7599. image: {
  7600. source: "./media/characters/chiros/side.svg",
  7601. extra: 306 / 226
  7602. }
  7603. },
  7604. },
  7605. [
  7606. {
  7607. name: "Normal",
  7608. height: math.unit(6, "cm"),
  7609. default: true
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7615. {
  7616. front: {
  7617. height: math.unit(6, "feet"),
  7618. weight: math.unit(100, "lbs"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/selka/front.svg",
  7622. extra: 947 / 887
  7623. }
  7624. }
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(5, "cm"),
  7630. default: true
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(8 + 3 / 12, "feet"),
  7639. weight: math.unit(424, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/verin/front.svg",
  7643. extra: 1845 / 1550
  7644. }
  7645. },
  7646. frontArmored: {
  7647. height: math.unit(8 + 3 / 12, "feet"),
  7648. weight: math.unit(424, "lbs"),
  7649. name: "Front (Armored)",
  7650. image: {
  7651. source: "./media/characters/verin/front-armor.svg",
  7652. extra: 1845 / 1550,
  7653. bottom: 0.01
  7654. }
  7655. },
  7656. back: {
  7657. height: math.unit(8 + 3 / 12, "feet"),
  7658. weight: math.unit(424, "lbs"),
  7659. name: "Back",
  7660. image: {
  7661. source: "./media/characters/verin/back.svg",
  7662. bottom: 0.1,
  7663. extra: 1
  7664. }
  7665. },
  7666. foot: {
  7667. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7668. name: "Foot",
  7669. image: {
  7670. source: "./media/characters/verin/foot.svg"
  7671. }
  7672. },
  7673. },
  7674. [
  7675. {
  7676. name: "Normal",
  7677. height: math.unit(8 + 3 / 12, "feet")
  7678. },
  7679. {
  7680. name: "Minimacro",
  7681. height: math.unit(21, "feet"),
  7682. default: true
  7683. },
  7684. {
  7685. name: "Macro",
  7686. height: math.unit(626, "feet")
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(2.718, "meters"),
  7695. weight: math.unit(150, "lbs"),
  7696. name: "Front",
  7697. image: {
  7698. source: "./media/characters/sovrim-terraquian/front.svg"
  7699. }
  7700. },
  7701. back: {
  7702. height: math.unit(2.718, "meters"),
  7703. weight: math.unit(150, "lbs"),
  7704. name: "Back",
  7705. image: {
  7706. source: "./media/characters/sovrim-terraquian/back.svg"
  7707. }
  7708. }
  7709. },
  7710. [
  7711. {
  7712. name: "Micro",
  7713. height: math.unit(2, "inches")
  7714. },
  7715. {
  7716. name: "Small",
  7717. height: math.unit(1, "meter")
  7718. },
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(Math.E, "meters"),
  7722. default: true
  7723. },
  7724. {
  7725. name: "Macro",
  7726. height: math.unit(20, "meters")
  7727. },
  7728. {
  7729. name: "Macro+",
  7730. height: math.unit(400, "meters")
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(7, "feet"),
  7739. weight: math.unit(489, "lbs"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/reece-silvermane/front.svg",
  7743. bottom: 0.02,
  7744. extra: 1
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Macro",
  7751. height: math.unit(1.5, "miles"),
  7752. default: true
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(78, "kg"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/kane/front.svg",
  7765. extra: 978 / 899
  7766. }
  7767. },
  7768. },
  7769. [
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(2.1, "m"),
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(1, "km"),
  7777. default: true
  7778. },
  7779. ]
  7780. ))
  7781. characterMakers.push(() => makeCharacter(
  7782. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7783. {
  7784. front: {
  7785. height: math.unit(6, "feet"),
  7786. weight: math.unit(200, "kg"),
  7787. name: "Front",
  7788. image: {
  7789. source: "./media/characters/tegon/front.svg",
  7790. bottom: 0.01,
  7791. extra: 1
  7792. }
  7793. },
  7794. },
  7795. [
  7796. {
  7797. name: "Micro",
  7798. height: math.unit(1, "inch")
  7799. },
  7800. {
  7801. name: "Normal",
  7802. height: math.unit(6 + 3 / 12, "feet"),
  7803. default: true
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(300, "feet")
  7808. },
  7809. {
  7810. name: "Megamacro",
  7811. height: math.unit(69, "miles")
  7812. },
  7813. ]
  7814. ))
  7815. characterMakers.push(() => makeCharacter(
  7816. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7817. {
  7818. side: {
  7819. height: math.unit(6, "feet"),
  7820. weight: math.unit(2304, "lbs"),
  7821. name: "Side",
  7822. image: {
  7823. source: "./media/characters/arcturax/side.svg",
  7824. extra: 790 / 376,
  7825. bottom: 0.01
  7826. }
  7827. },
  7828. },
  7829. [
  7830. {
  7831. name: "Micro",
  7832. height: math.unit(2, "inch")
  7833. },
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(6, "feet")
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(39, "feet"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Megamacro",
  7845. height: math.unit(7, "miles")
  7846. },
  7847. ]
  7848. ))
  7849. characterMakers.push(() => makeCharacter(
  7850. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7851. {
  7852. front: {
  7853. height: math.unit(6, "feet"),
  7854. weight: math.unit(50, "lbs"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/sentri/front.svg",
  7858. extra: 1750 / 1570,
  7859. bottom: 0.025
  7860. }
  7861. },
  7862. frontAlt: {
  7863. height: math.unit(6, "feet"),
  7864. weight: math.unit(50, "lbs"),
  7865. name: "Front (Alt)",
  7866. image: {
  7867. source: "./media/characters/sentri/front-alt.svg",
  7868. extra: 1750 / 1570,
  7869. bottom: 0.025
  7870. }
  7871. },
  7872. },
  7873. [
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(15, "feet"),
  7877. default: true
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(2500, "feet")
  7882. }
  7883. ]
  7884. ))
  7885. characterMakers.push(() => makeCharacter(
  7886. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7887. {
  7888. front: {
  7889. height: math.unit(5 + 8 / 12, "feet"),
  7890. weight: math.unit(130, "lbs"),
  7891. name: "Front",
  7892. image: {
  7893. source: "./media/characters/corvin/front.svg",
  7894. extra: 1803 / 1629
  7895. }
  7896. },
  7897. frontShirt: {
  7898. height: math.unit(5 + 8 / 12, "feet"),
  7899. weight: math.unit(130, "lbs"),
  7900. name: "Front (Shirt)",
  7901. image: {
  7902. source: "./media/characters/corvin/front-shirt.svg",
  7903. extra: 1803 / 1629
  7904. }
  7905. },
  7906. frontPoncho: {
  7907. height: math.unit(5 + 8 / 12, "feet"),
  7908. weight: math.unit(130, "lbs"),
  7909. name: "Front (Poncho)",
  7910. image: {
  7911. source: "./media/characters/corvin/front-poncho.svg",
  7912. extra: 1803 / 1629
  7913. }
  7914. },
  7915. side: {
  7916. height: math.unit(5 + 8 / 12, "feet"),
  7917. weight: math.unit(130, "lbs"),
  7918. name: "Side",
  7919. image: {
  7920. source: "./media/characters/corvin/side.svg",
  7921. extra: 1012 / 945
  7922. }
  7923. },
  7924. back: {
  7925. height: math.unit(5 + 8 / 12, "feet"),
  7926. weight: math.unit(130, "lbs"),
  7927. name: "Back",
  7928. image: {
  7929. source: "./media/characters/corvin/back.svg",
  7930. extra: 1803 / 1629
  7931. }
  7932. },
  7933. },
  7934. [
  7935. {
  7936. name: "Micro",
  7937. height: math.unit(3, "inches")
  7938. },
  7939. {
  7940. name: "Normal",
  7941. height: math.unit(5 + 8 / 12, "feet")
  7942. },
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(300, "feet"),
  7946. default: true
  7947. },
  7948. {
  7949. name: "Megamacro",
  7950. height: math.unit(500, "miles")
  7951. }
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7956. {
  7957. front: {
  7958. height: math.unit(6, "feet"),
  7959. weight: math.unit(135, "lbs"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/q/front.svg",
  7963. extra: 854 / 752,
  7964. bottom: 0.005
  7965. }
  7966. },
  7967. back: {
  7968. height: math.unit(6, "feet"),
  7969. weight: math.unit(130, "lbs"),
  7970. name: "Back",
  7971. image: {
  7972. source: "./media/characters/q/back.svg",
  7973. extra: 854 / 752
  7974. }
  7975. },
  7976. },
  7977. [
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(90, "feet"),
  7981. default: true
  7982. },
  7983. {
  7984. name: "Extra Macro",
  7985. height: math.unit(300, "feet"),
  7986. },
  7987. {
  7988. name: "BIG WALF",
  7989. height: math.unit(750, "feet"),
  7990. },
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7995. {
  7996. front: {
  7997. height: math.unit(6, "feet"),
  7998. weight: math.unit(150, "lbs"),
  7999. name: "Front",
  8000. image: {
  8001. source: "./media/characters/carley/front.svg",
  8002. extra: 3927 / 3540,
  8003. bottom: 29.2 / 735
  8004. }
  8005. }
  8006. },
  8007. [
  8008. {
  8009. name: "Normal",
  8010. height: math.unit(6 + 3 / 12, "feet")
  8011. },
  8012. {
  8013. name: "Macro",
  8014. height: math.unit(185, "feet"),
  8015. default: true
  8016. },
  8017. {
  8018. name: "Megamacro",
  8019. height: math.unit(8, "miles"),
  8020. },
  8021. ]
  8022. ))
  8023. characterMakers.push(() => makeCharacter(
  8024. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8025. {
  8026. front: {
  8027. height: math.unit(3, "feet"),
  8028. weight: math.unit(28, "lbs"),
  8029. name: "Front",
  8030. image: {
  8031. source: "./media/characters/citrine/front.svg"
  8032. }
  8033. }
  8034. },
  8035. [
  8036. {
  8037. name: "Normal",
  8038. height: math.unit(3, "feet"),
  8039. default: true
  8040. }
  8041. ]
  8042. ))
  8043. characterMakers.push(() => makeCharacter(
  8044. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8045. {
  8046. front: {
  8047. height: math.unit(14, "feet"),
  8048. weight: math.unit(1450, "kg"),
  8049. capacity: math.unit(15, "people"),
  8050. name: "Front",
  8051. image: {
  8052. source: "./media/characters/aura-starwind/front.svg",
  8053. extra: 1455 / 1335
  8054. }
  8055. },
  8056. side: {
  8057. height: math.unit(14, "feet"),
  8058. weight: math.unit(1450, "kg"),
  8059. capacity: math.unit(15, "people"),
  8060. name: "Side",
  8061. image: {
  8062. source: "./media/characters/aura-starwind/side.svg",
  8063. extra: 1654 / 1497
  8064. }
  8065. },
  8066. taur: {
  8067. height: math.unit(18, "feet"),
  8068. weight: math.unit(5500, "kg"),
  8069. capacity: math.unit(50, "people"),
  8070. name: "Taur",
  8071. image: {
  8072. source: "./media/characters/aura-starwind/taur.svg",
  8073. extra: 1760 / 1650
  8074. }
  8075. },
  8076. feral: {
  8077. height: math.unit(46, "feet"),
  8078. weight: math.unit(25000, "kg"),
  8079. capacity: math.unit(120, "people"),
  8080. name: "Feral",
  8081. image: {
  8082. source: "./media/characters/aura-starwind/feral.svg"
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(14, "feet"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Macro",
  8094. height: math.unit(50, "meters")
  8095. },
  8096. {
  8097. name: "Megamacro",
  8098. height: math.unit(5000, "meters")
  8099. },
  8100. {
  8101. name: "Gigamacro",
  8102. height: math.unit(100000, "kilometers")
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(2 + 7 / 12, "feet"),
  8111. weight: math.unit(32, "lbs"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/rivet/front.svg",
  8115. extra: 1716 / 1658,
  8116. bottom: 0.03
  8117. }
  8118. },
  8119. foot: {
  8120. height: math.unit(0.551, "feet"),
  8121. name: "Rivet's Foot",
  8122. image: {
  8123. source: "./media/characters/rivet/foot.svg"
  8124. },
  8125. rename: true
  8126. }
  8127. },
  8128. [
  8129. {
  8130. name: "Micro",
  8131. height: math.unit(1.5, "inches"),
  8132. },
  8133. {
  8134. name: "Normal",
  8135. height: math.unit(2 + 7 / 12, "feet"),
  8136. default: true
  8137. },
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(85, "feet")
  8141. },
  8142. {
  8143. name: "Megamacro",
  8144. height: math.unit(2.2, "km")
  8145. }
  8146. ]
  8147. ))
  8148. characterMakers.push(() => makeCharacter(
  8149. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8150. {
  8151. front: {
  8152. height: math.unit(5 + 9 / 12, "feet"),
  8153. weight: math.unit(150, "lbs"),
  8154. name: "Front",
  8155. image: {
  8156. source: "./media/characters/coffee/front.svg",
  8157. extra: 3666 / 3032,
  8158. bottom: 0.04
  8159. }
  8160. },
  8161. foot: {
  8162. height: math.unit(1.29, "feet"),
  8163. name: "Foot",
  8164. image: {
  8165. source: "./media/characters/coffee/foot.svg"
  8166. }
  8167. },
  8168. },
  8169. [
  8170. {
  8171. name: "Micro",
  8172. height: math.unit(2, "inches"),
  8173. },
  8174. {
  8175. name: "Normal",
  8176. height: math.unit(5 + 9 / 12, "feet"),
  8177. default: true
  8178. },
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(800, "feet")
  8182. },
  8183. {
  8184. name: "Megamacro",
  8185. height: math.unit(25, "miles")
  8186. }
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8191. {
  8192. front: {
  8193. height: math.unit(6, "feet"),
  8194. weight: math.unit(200, "lbs"),
  8195. name: "Front",
  8196. image: {
  8197. source: "./media/characters/chari-gal/front.svg",
  8198. extra: 1568 / 1385,
  8199. bottom: 0.047
  8200. }
  8201. },
  8202. gigantamax: {
  8203. height: math.unit(6 * 16, "feet"),
  8204. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8205. name: "Gigantamax",
  8206. image: {
  8207. source: "./media/characters/chari-gal/gigantamax.svg",
  8208. extra: 1124 / 888,
  8209. bottom: 0.03
  8210. }
  8211. },
  8212. },
  8213. [
  8214. {
  8215. name: "Normal",
  8216. height: math.unit(5 + 7 / 12, "feet")
  8217. },
  8218. {
  8219. name: "Macro",
  8220. height: math.unit(200, "feet"),
  8221. default: true
  8222. }
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(150, "lbs"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/nova/front.svg",
  8234. extra: 5000 / 4722,
  8235. bottom: 0.02
  8236. }
  8237. }
  8238. },
  8239. [
  8240. {
  8241. name: "Micro-",
  8242. height: math.unit(0.8, "inches")
  8243. },
  8244. {
  8245. name: "Micro",
  8246. height: math.unit(2, "inches"),
  8247. default: true
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(3 + 1 / 12, "feet"),
  8256. weight: math.unit(21.7, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/argent/front.svg",
  8260. extra: 1471 / 1331,
  8261. bottom: 100.8 / 1575.5
  8262. }
  8263. }
  8264. },
  8265. [
  8266. {
  8267. name: "Micro",
  8268. height: math.unit(2, "inches")
  8269. },
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(3 + 1 / 12, "feet"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(120, "feet")
  8278. },
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8283. {
  8284. lamp: {
  8285. height: math.unit(7 * 1559 / 989, "feet"),
  8286. name: "Magic Lamp",
  8287. image: {
  8288. source: "./media/characters/mira-al-cul/lamp.svg",
  8289. extra: 1617 / 1559
  8290. }
  8291. },
  8292. front: {
  8293. height: math.unit(7, "feet"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/mira-al-cul/front.svg",
  8297. extra: 1044 / 990
  8298. }
  8299. },
  8300. },
  8301. [
  8302. {
  8303. name: "Heavily Restricted",
  8304. height: math.unit(7 * 1559 / 989, "feet")
  8305. },
  8306. {
  8307. name: "Freshly Freed",
  8308. height: math.unit(50 * 1559 / 989, "feet")
  8309. },
  8310. {
  8311. name: "World Encompassing",
  8312. height: math.unit(10000 * 1559 / 989, "miles")
  8313. },
  8314. {
  8315. name: "Galactic",
  8316. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8317. },
  8318. {
  8319. name: "Palmed Universe",
  8320. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8321. default: true
  8322. },
  8323. {
  8324. name: "Multiversal Matriarch",
  8325. height: math.unit(8.87e10, "yottameters")
  8326. },
  8327. {
  8328. name: "Void Mother",
  8329. height: math.unit(3.14e110, "yottaparsecs")
  8330. },
  8331. {
  8332. name: "Toying with Transcendence",
  8333. height: math.unit(1e307, "meters")
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8339. {
  8340. front: {
  8341. height: math.unit(17 + 1 / 12, "feet"),
  8342. weight: math.unit(476.2 * 5, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/kuro-shi-uchū/front.svg",
  8346. extra: 2329 / 1835,
  8347. bottom: 0.02
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Micro",
  8354. height: math.unit(2, "inches")
  8355. },
  8356. {
  8357. name: "Normal",
  8358. height: math.unit(12, "meters")
  8359. },
  8360. {
  8361. name: "Planetary",
  8362. height: math.unit(0.00929, "AU"),
  8363. default: true
  8364. },
  8365. {
  8366. name: "Universal",
  8367. height: math.unit(20, "gigaparsecs")
  8368. },
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8373. {
  8374. front: {
  8375. height: math.unit(5 + 2 / 12, "feet"),
  8376. weight: math.unit(120, "lbs"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/katherine/front.svg",
  8380. extra: 2075 / 1969
  8381. }
  8382. },
  8383. dress: {
  8384. height: math.unit(5 + 2 / 12, "feet"),
  8385. weight: math.unit(120, "lbs"),
  8386. name: "Dress",
  8387. image: {
  8388. source: "./media/characters/katherine/dress.svg",
  8389. extra: 2258 / 2064
  8390. }
  8391. },
  8392. },
  8393. [
  8394. {
  8395. name: "Micro",
  8396. height: math.unit(1, "inches"),
  8397. default: true
  8398. },
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(5 + 2 / 12, "feet")
  8402. },
  8403. {
  8404. name: "Macro",
  8405. height: math.unit(100, "meters")
  8406. },
  8407. {
  8408. name: "Megamacro",
  8409. height: math.unit(80, "miles")
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(7 + 8 / 12, "feet"),
  8418. weight: math.unit(250, "lbs"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/yevis/front.svg",
  8422. extra: 1938 / 1755
  8423. }
  8424. }
  8425. },
  8426. [
  8427. {
  8428. name: "Mortal",
  8429. height: math.unit(7 + 8 / 12, "feet")
  8430. },
  8431. {
  8432. name: "Battle",
  8433. height: math.unit(25 + 11 / 12, "feet")
  8434. },
  8435. {
  8436. name: "Wrath",
  8437. height: math.unit(1654 + 11 / 12, "feet")
  8438. },
  8439. {
  8440. name: "Planet Destroyer",
  8441. height: math.unit(12000, "miles")
  8442. },
  8443. {
  8444. name: "Galaxy Conqueror",
  8445. height: math.unit(1.45, "zettameters"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Universal War",
  8450. height: math.unit(184, "gigaparsecs")
  8451. },
  8452. {
  8453. name: "Eternity War",
  8454. height: math.unit(1.98e55, "yottaparsecs")
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8460. {
  8461. front: {
  8462. height: math.unit(5 + 8 / 12, "feet"),
  8463. weight: math.unit(63, "kg"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/xavier/front.svg",
  8467. extra: 944 / 883
  8468. }
  8469. },
  8470. frontStretch: {
  8471. height: math.unit(5 + 8 / 12, "feet"),
  8472. weight: math.unit(63, "kg"),
  8473. name: "Stretching",
  8474. image: {
  8475. source: "./media/characters/xavier/front-stretch.svg",
  8476. extra: 962 / 820
  8477. }
  8478. },
  8479. },
  8480. [
  8481. {
  8482. name: "Normal",
  8483. height: math.unit(5 + 8 / 12, "feet")
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(100, "meters"),
  8488. default: true
  8489. },
  8490. {
  8491. name: "McLargeHuge",
  8492. height: math.unit(10, "miles")
  8493. },
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8498. {
  8499. front: {
  8500. height: math.unit(5 + 5 / 12, "feet"),
  8501. weight: math.unit(150, "lb"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/joshii/front.svg",
  8505. extra: 765 / 653,
  8506. bottom: 51 / 816
  8507. }
  8508. },
  8509. foot: {
  8510. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8511. name: "Foot",
  8512. image: {
  8513. source: "./media/characters/joshii/foot.svg"
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Micro",
  8520. height: math.unit(2, "inches"),
  8521. default: true
  8522. },
  8523. {
  8524. name: "Normal",
  8525. height: math.unit(5 + 5 / 12, "feet")
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(785, "feet")
  8530. },
  8531. {
  8532. name: "Megamacro",
  8533. height: math.unit(24.5, "miles")
  8534. },
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8539. {
  8540. front: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(150, "lb"),
  8543. name: "Front",
  8544. image: {
  8545. source: "./media/characters/goddess-elizabeth/front.svg",
  8546. extra: 1800 / 1525,
  8547. bottom: 0.005
  8548. }
  8549. },
  8550. foot: {
  8551. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8552. name: "Foot",
  8553. image: {
  8554. source: "./media/characters/goddess-elizabeth/foot.svg"
  8555. }
  8556. },
  8557. mouth: {
  8558. height: math.unit(6, "feet"),
  8559. name: "Mouth",
  8560. image: {
  8561. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8562. }
  8563. },
  8564. },
  8565. [
  8566. {
  8567. name: "Micro",
  8568. height: math.unit(12, "feet")
  8569. },
  8570. {
  8571. name: "Normal",
  8572. height: math.unit(80, "miles"),
  8573. default: true
  8574. },
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(15000, "parsecs")
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(5 + 9 / 12, "feet"),
  8586. weight: math.unit(144, "lb"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/kara/front.svg"
  8590. }
  8591. },
  8592. feet: {
  8593. height: math.unit(6 / 6.765, "feet"),
  8594. name: "Kara's Feet",
  8595. rename: true,
  8596. image: {
  8597. source: "./media/characters/kara/feet.svg"
  8598. }
  8599. },
  8600. },
  8601. [
  8602. {
  8603. name: "Normal",
  8604. height: math.unit(5 + 9 / 12, "feet")
  8605. },
  8606. {
  8607. name: "Macro",
  8608. height: math.unit(174, "feet"),
  8609. default: true
  8610. },
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8615. {
  8616. front: {
  8617. height: math.unit(18, "feet"),
  8618. weight: math.unit(4050, "lb"),
  8619. name: "Front",
  8620. image: {
  8621. source: "./media/characters/tyrone/front.svg",
  8622. extra: 2405 / 2270,
  8623. bottom: 182 / 2587
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(18, "feet"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(300, "feet")
  8636. },
  8637. {
  8638. name: "Megamacro",
  8639. height: math.unit(15, "km")
  8640. },
  8641. {
  8642. name: "Gigamacro",
  8643. height: math.unit(500, "km")
  8644. },
  8645. {
  8646. name: "Teramacro",
  8647. height: math.unit(0.5, "gigameters")
  8648. },
  8649. {
  8650. name: "Omnimacro",
  8651. height: math.unit(1e252, "yottauniverse")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(7 + 8 / 12, "feet"),
  8660. weight: math.unit(120, "lb"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/danny/front.svg",
  8664. extra: 1490 / 1350
  8665. }
  8666. },
  8667. back: {
  8668. height: math.unit(7 + 8 / 12, "feet"),
  8669. weight: math.unit(120, "lb"),
  8670. name: "Back",
  8671. image: {
  8672. source: "./media/characters/danny/back.svg",
  8673. extra: 1490 / 1350
  8674. }
  8675. },
  8676. },
  8677. [
  8678. {
  8679. name: "Normal",
  8680. height: math.unit(7 + 8 / 12, "feet"),
  8681. default: true
  8682. },
  8683. ]
  8684. ))
  8685. characterMakers.push(() => makeCharacter(
  8686. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8687. {
  8688. front: {
  8689. height: math.unit(3.5, "inches"),
  8690. weight: math.unit(19, "grams"),
  8691. name: "Front",
  8692. image: {
  8693. source: "./media/characters/mallow/front.svg",
  8694. extra: 471 / 431
  8695. }
  8696. },
  8697. back: {
  8698. height: math.unit(3.5, "inches"),
  8699. weight: math.unit(19, "grams"),
  8700. name: "Back",
  8701. image: {
  8702. source: "./media/characters/mallow/back.svg",
  8703. extra: 471 / 431
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(3.5, "inches"),
  8711. default: true
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(9, "feet"),
  8720. weight: math.unit(230, "kg"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/starry-aqua/front.svg"
  8724. }
  8725. },
  8726. back: {
  8727. height: math.unit(9, "feet"),
  8728. weight: math.unit(230, "kg"),
  8729. name: "Back",
  8730. image: {
  8731. source: "./media/characters/starry-aqua/back.svg"
  8732. }
  8733. },
  8734. hand: {
  8735. height: math.unit(9 * 0.1168, "feet"),
  8736. name: "Hand",
  8737. image: {
  8738. source: "./media/characters/starry-aqua/hand.svg"
  8739. }
  8740. },
  8741. foot: {
  8742. height: math.unit(9 * 0.18, "feet"),
  8743. name: "Foot",
  8744. image: {
  8745. source: "./media/characters/starry-aqua/foot.svg"
  8746. }
  8747. }
  8748. },
  8749. [
  8750. {
  8751. name: "Micro",
  8752. height: math.unit(3, "inches")
  8753. },
  8754. {
  8755. name: "Normal",
  8756. height: math.unit(9, "feet")
  8757. },
  8758. {
  8759. name: "Macro",
  8760. height: math.unit(300, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Megamacro",
  8765. height: math.unit(3200, "feet")
  8766. }
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8771. {
  8772. front: {
  8773. height: math.unit(6, "feet"),
  8774. weight: math.unit(230, "lb"),
  8775. name: "Front",
  8776. image: {
  8777. source: "./media/characters/luka/front.svg",
  8778. extra: 1,
  8779. bottom: 0.025
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(12 + 8 / 12, "feet"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Minimacro",
  8791. height: math.unit(20, "feet")
  8792. },
  8793. {
  8794. name: "Macro",
  8795. height: math.unit(250, "feet")
  8796. },
  8797. {
  8798. name: "Megamacro",
  8799. height: math.unit(5, "miles")
  8800. },
  8801. {
  8802. name: "Gigamacro",
  8803. height: math.unit(8000, "miles")
  8804. },
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8809. {
  8810. front: {
  8811. height: math.unit(6, "feet"),
  8812. weight: math.unit(150, "lb"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/natalie-nightring/front.svg",
  8816. extra: 1,
  8817. bottom: 0.06
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Uh Oh",
  8824. height: math.unit(0.1, "mm")
  8825. },
  8826. {
  8827. name: "Small",
  8828. height: math.unit(3, "inches")
  8829. },
  8830. {
  8831. name: "Human Scale",
  8832. height: math.unit(6, "feet")
  8833. },
  8834. {
  8835. name: "Librarian",
  8836. height: math.unit(50, "feet"),
  8837. default: true
  8838. },
  8839. {
  8840. name: "Immense",
  8841. height: math.unit(200, "miles")
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8847. {
  8848. front: {
  8849. height: math.unit(6, "feet"),
  8850. weight: math.unit(180, "lbs"),
  8851. name: "Front",
  8852. image: {
  8853. source: "./media/characters/danni-rosie/front.svg",
  8854. extra: 1260 / 1128,
  8855. bottom: 0.022
  8856. }
  8857. },
  8858. },
  8859. [
  8860. {
  8861. name: "Micro",
  8862. height: math.unit(2, "inches"),
  8863. default: true
  8864. },
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8869. {
  8870. front: {
  8871. height: math.unit(5 + 9 / 12, "feet"),
  8872. weight: math.unit(220, "lb"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/samantha-kruse/front.svg",
  8876. extra: (985 / 935),
  8877. bottom: 0.03
  8878. }
  8879. },
  8880. frontUndressed: {
  8881. height: math.unit(5 + 9 / 12, "feet"),
  8882. weight: math.unit(220, "lb"),
  8883. name: "Front (Undressed)",
  8884. image: {
  8885. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8886. extra: (973 / 923),
  8887. bottom: 0.025
  8888. }
  8889. },
  8890. fat: {
  8891. height: math.unit(5 + 9 / 12, "feet"),
  8892. weight: math.unit(900, "lb"),
  8893. name: "Front (Fat)",
  8894. image: {
  8895. source: "./media/characters/samantha-kruse/fat.svg",
  8896. extra: 2688 / 2561
  8897. }
  8898. },
  8899. },
  8900. [
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(5 + 9 / 12, "feet"),
  8904. default: true
  8905. }
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8910. {
  8911. back: {
  8912. height: math.unit(5 + 4 / 12, "feet"),
  8913. weight: math.unit(4963, "lb"),
  8914. name: "Back",
  8915. image: {
  8916. source: "./media/characters/amelia-rosie/back.svg",
  8917. extra: 1113 / 963,
  8918. bottom: 0.01
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Level 0",
  8925. height: math.unit(5 + 4 / 12, "feet")
  8926. },
  8927. {
  8928. name: "Level 1",
  8929. height: math.unit(164597, "feet"),
  8930. default: true
  8931. },
  8932. {
  8933. name: "Level 2",
  8934. height: math.unit(956243, "miles")
  8935. },
  8936. {
  8937. name: "Level 3",
  8938. height: math.unit(29421709423, "miles")
  8939. },
  8940. {
  8941. name: "Level 4",
  8942. height: math.unit(154, "lightyears")
  8943. },
  8944. {
  8945. name: "Level 5",
  8946. height: math.unit(4738272, "lightyears")
  8947. },
  8948. {
  8949. name: "Level 6",
  8950. height: math.unit(145787152896, "lightyears")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(5 + 11 / 12, "feet"),
  8959. weight: math.unit(65, "kg"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/rook-kitara/front.svg",
  8963. extra: 1347 / 1274,
  8964. bottom: 0.005
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Totally Unfair",
  8971. height: math.unit(1.8, "mm")
  8972. },
  8973. {
  8974. name: "Lap Rookie",
  8975. height: math.unit(1.4, "feet")
  8976. },
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(5 + 11 / 12, "feet"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "How Did This Happen",
  8984. height: math.unit(80, "miles")
  8985. }
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(7, "feet"),
  8993. weight: math.unit(300, "lb"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/pisces/front.svg",
  8997. extra: 2255 / 2115,
  8998. bottom: 0.03
  8999. }
  9000. },
  9001. back: {
  9002. height: math.unit(7, "feet"),
  9003. weight: math.unit(300, "lb"),
  9004. name: "Back",
  9005. image: {
  9006. source: "./media/characters/pisces/back.svg",
  9007. extra: 2146 / 2055,
  9008. bottom: 0.04
  9009. }
  9010. },
  9011. },
  9012. [
  9013. {
  9014. name: "Normal",
  9015. height: math.unit(7, "feet"),
  9016. default: true
  9017. },
  9018. {
  9019. name: "Swimming Pool",
  9020. height: math.unit(12.2, "meters")
  9021. },
  9022. {
  9023. name: "Olympic Swimming Pool",
  9024. height: math.unit(56.3, "meters")
  9025. },
  9026. {
  9027. name: "Lake Superior",
  9028. height: math.unit(93900, "meters")
  9029. },
  9030. {
  9031. name: "Mediterranean Sea",
  9032. height: math.unit(644457, "meters")
  9033. },
  9034. {
  9035. name: "World's Oceans",
  9036. height: math.unit(4567491, "meters")
  9037. },
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9042. {
  9043. front: {
  9044. height: math.unit(2.3, "meters"),
  9045. weight: math.unit(120, "kg"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/zelas/front.svg"
  9049. }
  9050. },
  9051. side: {
  9052. height: math.unit(2.3, "meters"),
  9053. weight: math.unit(120, "kg"),
  9054. name: "Side",
  9055. image: {
  9056. source: "./media/characters/zelas/side.svg"
  9057. }
  9058. },
  9059. back: {
  9060. height: math.unit(2.3, "meters"),
  9061. weight: math.unit(120, "kg"),
  9062. name: "Back",
  9063. image: {
  9064. source: "./media/characters/zelas/back.svg"
  9065. }
  9066. },
  9067. foot: {
  9068. height: math.unit(1.116, "feet"),
  9069. name: "Foot",
  9070. image: {
  9071. source: "./media/characters/zelas/foot.svg"
  9072. }
  9073. },
  9074. },
  9075. [
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(2.3, "meters")
  9079. },
  9080. {
  9081. name: "Macro",
  9082. height: math.unit(30, "meters"),
  9083. default: true
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(1, "inch"),
  9092. weight: math.unit(0.21, "grams"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/talbot/front.svg",
  9096. extra: 594 / 544
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Micro",
  9103. height: math.unit(1, "inch"),
  9104. default: true
  9105. },
  9106. ]
  9107. ))
  9108. characterMakers.push(() => makeCharacter(
  9109. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9110. {
  9111. front: {
  9112. height: math.unit(3 + 3 / 12, "feet"),
  9113. weight: math.unit(51.8, "lb"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/fliss/front.svg",
  9117. extra: 840 / 640
  9118. }
  9119. },
  9120. },
  9121. [
  9122. {
  9123. name: "Teeny Tiny",
  9124. height: math.unit(1, "mm")
  9125. },
  9126. {
  9127. name: "Small",
  9128. height: math.unit(1, "inch"),
  9129. default: true
  9130. },
  9131. {
  9132. name: "Standard Sylveon",
  9133. height: math.unit(3 + 3 / 12, "feet")
  9134. },
  9135. {
  9136. name: "Large Nuisance",
  9137. height: math.unit(33, "feet")
  9138. },
  9139. {
  9140. name: "City Filler",
  9141. height: math.unit(3000, "feet")
  9142. },
  9143. {
  9144. name: "New Horizon",
  9145. height: math.unit(6000, "miles")
  9146. },
  9147. ]
  9148. ))
  9149. characterMakers.push(() => makeCharacter(
  9150. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9151. {
  9152. front: {
  9153. height: math.unit(5, "cm"),
  9154. weight: math.unit(1.94, "g"),
  9155. name: "Front",
  9156. image: {
  9157. source: "./media/characters/fleta/front.svg",
  9158. extra: 835 / 803
  9159. }
  9160. },
  9161. back: {
  9162. height: math.unit(5, "cm"),
  9163. weight: math.unit(1.94, "g"),
  9164. name: "Back",
  9165. image: {
  9166. source: "./media/characters/fleta/back.svg",
  9167. extra: 835 / 803
  9168. }
  9169. },
  9170. },
  9171. [
  9172. {
  9173. name: "Micro",
  9174. height: math.unit(5, "cm"),
  9175. default: true
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(6, "feet"),
  9184. weight: math.unit(225, "lb"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/dominic/front.svg",
  9188. extra: 1770 / 1620,
  9189. bottom: 0.025
  9190. }
  9191. },
  9192. back: {
  9193. height: math.unit(6, "feet"),
  9194. weight: math.unit(225, "lb"),
  9195. name: "Back",
  9196. image: {
  9197. source: "./media/characters/dominic/back.svg",
  9198. extra: 1745 / 1620,
  9199. bottom: 0.065
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Nano",
  9206. height: math.unit(0.1, "mm")
  9207. },
  9208. {
  9209. name: "Micro-",
  9210. height: math.unit(1, "mm")
  9211. },
  9212. {
  9213. name: "Micro",
  9214. height: math.unit(4, "inches")
  9215. },
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(6 + 4 / 12, "feet"),
  9219. default: true
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(115, "feet")
  9224. },
  9225. {
  9226. name: "Macro+",
  9227. height: math.unit(955, "feet")
  9228. },
  9229. {
  9230. name: "Megamacro",
  9231. height: math.unit(8990, "feet")
  9232. },
  9233. {
  9234. name: "Gigmacro",
  9235. height: math.unit(9310, "miles")
  9236. },
  9237. {
  9238. name: "Teramacro",
  9239. height: math.unit(1567005010, "miles")
  9240. },
  9241. {
  9242. name: "Examacro",
  9243. height: math.unit(1425, "parsecs")
  9244. },
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9249. {
  9250. front: {
  9251. height: math.unit(400, "feet"),
  9252. weight: math.unit(44444444, "lb"),
  9253. name: "Front",
  9254. image: {
  9255. source: "./media/characters/major-colonel/front.svg"
  9256. }
  9257. },
  9258. back: {
  9259. height: math.unit(400, "feet"),
  9260. weight: math.unit(44444444, "lb"),
  9261. name: "Back",
  9262. image: {
  9263. source: "./media/characters/major-colonel/back.svg"
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(400, "feet"),
  9271. default: true
  9272. },
  9273. ]
  9274. ))
  9275. characterMakers.push(() => makeCharacter(
  9276. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9277. {
  9278. catFront: {
  9279. height: math.unit(6, "feet"),
  9280. weight: math.unit(120, "lb"),
  9281. name: "Front (Cat Side)",
  9282. image: {
  9283. source: "./media/characters/axel-lycan/cat-front.svg",
  9284. extra: 430 / 402,
  9285. bottom: 43 / 472.35
  9286. }
  9287. },
  9288. catBack: {
  9289. height: math.unit(6, "feet"),
  9290. weight: math.unit(120, "lb"),
  9291. name: "Back (Cat Side)",
  9292. image: {
  9293. source: "./media/characters/axel-lycan/cat-back.svg",
  9294. extra: 447 / 419,
  9295. bottom: 23.3 / 469
  9296. }
  9297. },
  9298. wolfFront: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(120, "lb"),
  9301. name: "Front (Wolf Side)",
  9302. image: {
  9303. source: "./media/characters/axel-lycan/wolf-front.svg",
  9304. extra: 485 / 456,
  9305. bottom: 19 / 504
  9306. }
  9307. },
  9308. wolfBack: {
  9309. height: math.unit(6, "feet"),
  9310. weight: math.unit(120, "lb"),
  9311. name: "Back (Wolf Side)",
  9312. image: {
  9313. source: "./media/characters/axel-lycan/wolf-back.svg",
  9314. extra: 475 / 438,
  9315. bottom: 39.2 / 514
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Macro",
  9322. height: math.unit(1, "km"),
  9323. default: true
  9324. },
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9329. {
  9330. front: {
  9331. height: math.unit(5 + 9 / 12, "feet"),
  9332. weight: math.unit(175, "lb"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/vanrel-hyena/front.svg",
  9336. extra: 1086 / 1010,
  9337. bottom: 0.04
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Normal",
  9344. height: math.unit(5 + 9 / 12, "feet"),
  9345. default: true
  9346. },
  9347. ]
  9348. ))
  9349. characterMakers.push(() => makeCharacter(
  9350. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9351. {
  9352. front: {
  9353. height: math.unit(6, "feet"),
  9354. weight: math.unit(103, "lb"),
  9355. name: "Front",
  9356. image: {
  9357. source: "./media/characters/abbott-absol/front.svg",
  9358. extra: 2010 / 1842
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Megamicro",
  9365. height: math.unit(0.1, "mm")
  9366. },
  9367. {
  9368. name: "Micro",
  9369. height: math.unit(1, "inch")
  9370. },
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(6, "feet"),
  9374. default: true
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(6, "feet"),
  9383. weight: math.unit(264, "lb"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/hector/front.svg",
  9387. extra: 2280 / 2130,
  9388. bottom: 0.07
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(12.25, "foot"),
  9396. default: true
  9397. },
  9398. {
  9399. name: "Macro",
  9400. height: math.unit(160, "feet")
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9406. {
  9407. front: {
  9408. height: math.unit(6, "feet"),
  9409. weight: math.unit(150, "lb"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/sal/front.svg",
  9413. extra: 1846 / 1699,
  9414. bottom: 0.04
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Megamacro",
  9421. height: math.unit(10, "miles"),
  9422. default: true
  9423. },
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9428. {
  9429. front: {
  9430. height: math.unit(3, "meters"),
  9431. weight: math.unit(450, "kg"),
  9432. name: "front",
  9433. image: {
  9434. source: "./media/characters/ranger/front.svg",
  9435. extra: 2401 / 2243,
  9436. bottom: 0.05
  9437. }
  9438. },
  9439. },
  9440. [
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(3, "meters"),
  9444. default: true
  9445. },
  9446. ]
  9447. ))
  9448. characterMakers.push(() => makeCharacter(
  9449. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9450. {
  9451. front: {
  9452. height: math.unit(14, "feet"),
  9453. weight: math.unit(800, "kg"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/theresa/front.svg",
  9457. extra: 3575 / 3346,
  9458. bottom: 0.03
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(14, "feet"),
  9466. default: true
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9472. {
  9473. front: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(3, "kg"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/ine/front.svg",
  9479. extra: 678 / 539,
  9480. bottom: 0.023
  9481. }
  9482. },
  9483. },
  9484. [
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(2.265, "feet"),
  9488. default: true
  9489. },
  9490. ]
  9491. ))
  9492. characterMakers.push(() => makeCharacter(
  9493. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9494. {
  9495. front: {
  9496. height: math.unit(5, "feet"),
  9497. weight: math.unit(30, "kg"),
  9498. name: "Front",
  9499. image: {
  9500. source: "./media/characters/vial/front.svg",
  9501. extra: 1365 / 1277,
  9502. bottom: 0.04
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(5, "feet"),
  9510. default: true
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9516. {
  9517. side: {
  9518. height: math.unit(3.4, "meters"),
  9519. weight: math.unit(1000, "lb"),
  9520. name: "Side",
  9521. image: {
  9522. source: "./media/characters/rovoska/side.svg",
  9523. extra: 4403 / 1515
  9524. }
  9525. },
  9526. },
  9527. [
  9528. {
  9529. name: "Normal",
  9530. height: math.unit(3.4, "meters"),
  9531. default: true
  9532. },
  9533. ]
  9534. ))
  9535. characterMakers.push(() => makeCharacter(
  9536. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9537. {
  9538. front: {
  9539. height: math.unit(8, "feet"),
  9540. weight: math.unit(315, "lb"),
  9541. name: "Front",
  9542. image: {
  9543. source: "./media/characters/gunner-rotthbauer/front.svg"
  9544. }
  9545. },
  9546. back: {
  9547. height: math.unit(8, "feet"),
  9548. weight: math.unit(315, "lb"),
  9549. name: "Back",
  9550. image: {
  9551. source: "./media/characters/gunner-rotthbauer/back.svg"
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Micro",
  9558. height: math.unit(3.5, "inches")
  9559. },
  9560. {
  9561. name: "Normal",
  9562. height: math.unit(8, "feet"),
  9563. default: true
  9564. },
  9565. {
  9566. name: "Macro",
  9567. height: math.unit(250, "feet")
  9568. },
  9569. {
  9570. name: "Megamacro",
  9571. height: math.unit(1, "AU")
  9572. },
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(5 + 5 / 12, "feet"),
  9580. weight: math.unit(140, "lb"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/allatia/front.svg",
  9584. extra: 1227 / 1180,
  9585. bottom: 0.027
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(5 + 5 / 12, "feet")
  9593. },
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(250, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Megamacro",
  9601. height: math.unit(8, "miles")
  9602. }
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(6, "feet"),
  9610. weight: math.unit(120, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/tene/front.svg",
  9614. extra: 1728 / 1578,
  9615. bottom: 0.022
  9616. }
  9617. },
  9618. stomping: {
  9619. height: math.unit(2.025, "meters"),
  9620. weight: math.unit(120, "lb"),
  9621. name: "Stomping",
  9622. image: {
  9623. source: "./media/characters/tene/stomping.svg",
  9624. extra: 938 / 873,
  9625. bottom: 0.01
  9626. }
  9627. },
  9628. sitting: {
  9629. height: math.unit(1, "meter"),
  9630. weight: math.unit(120, "lb"),
  9631. name: "Sitting",
  9632. image: {
  9633. source: "./media/characters/tene/sitting.svg",
  9634. extra: 437 / 415,
  9635. bottom: 0.1
  9636. }
  9637. },
  9638. feral: {
  9639. height: math.unit(3.9, "feet"),
  9640. weight: math.unit(250, "lb"),
  9641. name: "Feral",
  9642. image: {
  9643. source: "./media/characters/tene/feral.svg",
  9644. extra: 717 / 458,
  9645. bottom: 0.179
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Normal",
  9652. height: math.unit(6, "feet")
  9653. },
  9654. {
  9655. name: "Macro",
  9656. height: math.unit(300, "feet"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Megamacro",
  9661. height: math.unit(5, "miles")
  9662. },
  9663. ]
  9664. ))
  9665. characterMakers.push(() => makeCharacter(
  9666. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9667. {
  9668. side: {
  9669. height: math.unit(6, "feet"),
  9670. name: "Side",
  9671. image: {
  9672. source: "./media/characters/evander/side.svg",
  9673. extra: 877 / 477
  9674. }
  9675. },
  9676. },
  9677. [
  9678. {
  9679. name: "Normal",
  9680. height: math.unit(0.83, "meters"),
  9681. default: true
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(12, "feet"),
  9690. weight: math.unit(1000, "lb"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9694. extra: 1762 / 1611
  9695. }
  9696. },
  9697. back: {
  9698. height: math.unit(12, "feet"),
  9699. weight: math.unit(1000, "lb"),
  9700. name: "Back",
  9701. image: {
  9702. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9703. extra: 1762 / 1611
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(12, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Kaiju",
  9715. height: math.unit(150, "feet")
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9721. {
  9722. front: {
  9723. height: math.unit(6, "feet"),
  9724. weight: math.unit(150, "lb"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/zero-alurus/front.svg"
  9728. }
  9729. },
  9730. back: {
  9731. height: math.unit(6, "feet"),
  9732. weight: math.unit(150, "lb"),
  9733. name: "Back",
  9734. image: {
  9735. source: "./media/characters/zero-alurus/back.svg"
  9736. }
  9737. },
  9738. },
  9739. [
  9740. {
  9741. name: "Normal",
  9742. height: math.unit(5 + 10 / 12, "feet")
  9743. },
  9744. {
  9745. name: "Macro",
  9746. height: math.unit(60, "feet"),
  9747. default: true
  9748. },
  9749. {
  9750. name: "Macro+",
  9751. height: math.unit(450, "feet")
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9757. {
  9758. front: {
  9759. height: math.unit(6, "feet"),
  9760. weight: math.unit(200, "lb"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/mega-shi/front.svg",
  9764. extra: 1279 / 1250,
  9765. bottom: 0.02
  9766. }
  9767. },
  9768. back: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(200, "lb"),
  9771. name: "Back",
  9772. image: {
  9773. source: "./media/characters/mega-shi/back.svg",
  9774. extra: 1279 / 1250,
  9775. bottom: 0.02
  9776. }
  9777. },
  9778. },
  9779. [
  9780. {
  9781. name: "Micro",
  9782. height: math.unit(16 + 6 / 12, "feet")
  9783. },
  9784. {
  9785. name: "Third Dimension",
  9786. height: math.unit(40, "meters")
  9787. },
  9788. {
  9789. name: "Normal",
  9790. height: math.unit(660, "feet"),
  9791. default: true
  9792. },
  9793. {
  9794. name: "Megamacro",
  9795. height: math.unit(10, "miles")
  9796. },
  9797. {
  9798. name: "Planetary Launch",
  9799. height: math.unit(500, "miles")
  9800. },
  9801. {
  9802. name: "Interstellar",
  9803. height: math.unit(1e9, "miles")
  9804. },
  9805. {
  9806. name: "Leaving the Universe",
  9807. height: math.unit(1, "gigaparsec")
  9808. },
  9809. {
  9810. name: "Travelling Universes",
  9811. height: math.unit(30e15, "parsecs")
  9812. },
  9813. ]
  9814. ))
  9815. characterMakers.push(() => makeCharacter(
  9816. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9817. {
  9818. front: {
  9819. height: math.unit(6, "feet"),
  9820. weight: math.unit(150, "lb"),
  9821. name: "Front",
  9822. image: {
  9823. source: "./media/characters/odyssey/front.svg",
  9824. extra: 1782 / 1582,
  9825. bottom: 0.01
  9826. }
  9827. },
  9828. side: {
  9829. height: math.unit(5.7, "feet"),
  9830. weight: math.unit(140, "lb"),
  9831. name: "Side",
  9832. image: {
  9833. source: "./media/characters/odyssey/side.svg",
  9834. extra: 6462 / 5700
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Normal",
  9841. height: math.unit(5 + 4 / 12, "feet")
  9842. },
  9843. {
  9844. name: "Macro",
  9845. height: math.unit(1, "km")
  9846. },
  9847. {
  9848. name: "Megamacro",
  9849. height: math.unit(3000, "km")
  9850. },
  9851. {
  9852. name: "Gigamacro",
  9853. height: math.unit(1, "AU"),
  9854. default: true
  9855. },
  9856. {
  9857. name: "Omniversal",
  9858. height: math.unit(100e14, "lightyears")
  9859. },
  9860. ]
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9864. {
  9865. front: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(300, "lb"),
  9868. name: "Front",
  9869. image: {
  9870. source: "./media/characters/mekuto/front.svg",
  9871. extra: 921 / 832,
  9872. bottom: 0.03
  9873. }
  9874. },
  9875. hand: {
  9876. height: math.unit(6 / 10.24, "feet"),
  9877. name: "Hand",
  9878. image: {
  9879. source: "./media/characters/mekuto/hand.svg"
  9880. }
  9881. },
  9882. foot: {
  9883. height: math.unit(6 / 5.05, "feet"),
  9884. name: "Foot",
  9885. image: {
  9886. source: "./media/characters/mekuto/foot.svg"
  9887. }
  9888. },
  9889. },
  9890. [
  9891. {
  9892. name: "Minimicro",
  9893. height: math.unit(0.2, "inches")
  9894. },
  9895. {
  9896. name: "Micro",
  9897. height: math.unit(1.5, "inches")
  9898. },
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(5 + 11 / 12, "feet"),
  9902. default: true
  9903. },
  9904. {
  9905. name: "Minimacro",
  9906. height: math.unit(17 + 9 / 12, "feet")
  9907. },
  9908. {
  9909. name: "Macro",
  9910. height: math.unit(177.5, "feet")
  9911. },
  9912. {
  9913. name: "Megamacro",
  9914. height: math.unit(152, "miles")
  9915. },
  9916. ]
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9920. {
  9921. front: {
  9922. height: math.unit(6.5, "inches"),
  9923. weight: math.unit(13, "oz"),
  9924. name: "Front",
  9925. image: {
  9926. source: "./media/characters/dafydd-tomos/front.svg",
  9927. extra: 2990 / 2603,
  9928. bottom: 0.03
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Micro",
  9935. height: math.unit(6.5, "inches"),
  9936. default: true
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(6, "feet"),
  9945. weight: math.unit(150, "lb"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/splinter/front.svg",
  9949. extra: 2990 / 2882,
  9950. bottom: 0.04
  9951. }
  9952. },
  9953. back: {
  9954. height: math.unit(6, "feet"),
  9955. weight: math.unit(150, "lb"),
  9956. name: "Back",
  9957. image: {
  9958. source: "./media/characters/splinter/back.svg",
  9959. extra: 2990 / 2882,
  9960. bottom: 0.04
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Normal",
  9967. height: math.unit(6, "feet")
  9968. },
  9969. {
  9970. name: "Macro",
  9971. height: math.unit(230, "meters"),
  9972. default: true
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(4 + 10 / 12, "feet"),
  9981. weight: math.unit(480, "lb"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/snow-gabumon/front.svg",
  9985. extra: 1140 / 963,
  9986. bottom: 0.058
  9987. }
  9988. },
  9989. back: {
  9990. height: math.unit(4 + 10 / 12, "feet"),
  9991. weight: math.unit(480, "lb"),
  9992. name: "Back",
  9993. image: {
  9994. source: "./media/characters/snow-gabumon/back.svg",
  9995. extra: 1115 / 962,
  9996. bottom: 0.041
  9997. }
  9998. },
  9999. frontUndresed: {
  10000. height: math.unit(4 + 10 / 12, "feet"),
  10001. weight: math.unit(480, "lb"),
  10002. name: "Front (Undressed)",
  10003. image: {
  10004. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10005. extra: 1061 / 960,
  10006. bottom: 0.045
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Micro",
  10013. height: math.unit(1, "inch")
  10014. },
  10015. {
  10016. name: "Normal",
  10017. height: math.unit(4 + 10 / 12, "feet"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Macro",
  10022. height: math.unit(200, "feet")
  10023. },
  10024. {
  10025. name: "Megamacro",
  10026. height: math.unit(120, "miles")
  10027. },
  10028. {
  10029. name: "Gigamacro",
  10030. height: math.unit(9800, "miles")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10036. {
  10037. front: {
  10038. height: math.unit(1.7, "meters"),
  10039. weight: math.unit(140, "lb"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/moody/front.svg",
  10043. extra: 3226 / 3007,
  10044. bottom: 0.087
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Micro",
  10051. height: math.unit(1, "mm")
  10052. },
  10053. {
  10054. name: "Normal",
  10055. height: math.unit(1.7, "meters"),
  10056. default: true
  10057. },
  10058. {
  10059. name: "Macro",
  10060. height: math.unit(80, "meters")
  10061. },
  10062. {
  10063. name: "Macro+",
  10064. height: math.unit(500, "meters")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10070. {
  10071. front: {
  10072. height: math.unit(6, "feet"),
  10073. weight: math.unit(150, "lb"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/zyas/front.svg",
  10077. extra: 1180 / 1120,
  10078. bottom: 0.045
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(10, "feet"),
  10086. default: true
  10087. },
  10088. {
  10089. name: "Macro",
  10090. height: math.unit(500, "feet")
  10091. },
  10092. {
  10093. name: "Megamacro",
  10094. height: math.unit(5, "miles")
  10095. },
  10096. {
  10097. name: "Teramacro",
  10098. height: math.unit(150000, "miles")
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(150, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/cuon/front.svg",
  10111. extra: 1390 / 1320,
  10112. bottom: 0.008
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Micro",
  10119. height: math.unit(3, "inches")
  10120. },
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(18 + 9 / 12, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(360, "feet")
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(360, "miles")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(2.4, "meters"),
  10141. weight: math.unit(70, "kg"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/nyanuxk/front.svg",
  10145. extra: 1172 / 1084,
  10146. bottom: 0.065
  10147. }
  10148. },
  10149. side: {
  10150. height: math.unit(2.4, "meters"),
  10151. weight: math.unit(70, "kg"),
  10152. name: "Side",
  10153. image: {
  10154. source: "./media/characters/nyanuxk/side.svg",
  10155. extra: 1190 / 1132,
  10156. bottom: 0.007
  10157. }
  10158. },
  10159. back: {
  10160. height: math.unit(2.4, "meters"),
  10161. weight: math.unit(70, "kg"),
  10162. name: "Back",
  10163. image: {
  10164. source: "./media/characters/nyanuxk/back.svg",
  10165. extra: 1200 / 1141,
  10166. bottom: 0.015
  10167. }
  10168. },
  10169. foot: {
  10170. height: math.unit(0.52, "meters"),
  10171. name: "Foot",
  10172. image: {
  10173. source: "./media/characters/nyanuxk/foot.svg"
  10174. }
  10175. },
  10176. },
  10177. [
  10178. {
  10179. name: "Micro",
  10180. height: math.unit(2, "cm")
  10181. },
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(2.4, "meters"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Smaller Macro",
  10189. height: math.unit(120, "meters")
  10190. },
  10191. {
  10192. name: "Bigger Macro",
  10193. height: math.unit(1.2, "km")
  10194. },
  10195. {
  10196. name: "Megamacro",
  10197. height: math.unit(15, "kilometers")
  10198. },
  10199. {
  10200. name: "Gigamacro",
  10201. height: math.unit(2000, "km")
  10202. },
  10203. {
  10204. name: "Teramacro",
  10205. height: math.unit(500000, "km")
  10206. },
  10207. ]
  10208. ))
  10209. characterMakers.push(() => makeCharacter(
  10210. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10211. {
  10212. side: {
  10213. height: math.unit(6, "feet"),
  10214. name: "Side",
  10215. image: {
  10216. source: "./media/characters/ailbhe/side.svg",
  10217. extra: 757 / 464,
  10218. bottom: 0.041
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(1.07, "meters"),
  10226. default: true
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(6, "feet"),
  10235. weight: math.unit(120, "kg"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/zevulfius/front.svg",
  10239. extra: 965 / 903
  10240. }
  10241. },
  10242. side: {
  10243. height: math.unit(6, "feet"),
  10244. weight: math.unit(120, "kg"),
  10245. name: "Side",
  10246. image: {
  10247. source: "./media/characters/zevulfius/side.svg",
  10248. extra: 939 / 900
  10249. }
  10250. },
  10251. back: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(120, "kg"),
  10254. name: "Back",
  10255. image: {
  10256. source: "./media/characters/zevulfius/back.svg",
  10257. extra: 918 / 854,
  10258. bottom: 0.005
  10259. }
  10260. },
  10261. foot: {
  10262. height: math.unit(6 / 3.72, "feet"),
  10263. name: "Foot",
  10264. image: {
  10265. source: "./media/characters/zevulfius/foot.svg"
  10266. }
  10267. },
  10268. },
  10269. [
  10270. {
  10271. name: "Macro",
  10272. height: math.unit(750, "meters")
  10273. },
  10274. {
  10275. name: "Megamacro",
  10276. height: math.unit(20, "km"),
  10277. default: true
  10278. },
  10279. {
  10280. name: "Gigamacro",
  10281. height: math.unit(2000, "km")
  10282. },
  10283. {
  10284. name: "Teramacro",
  10285. height: math.unit(250000, "km")
  10286. },
  10287. ]
  10288. ))
  10289. characterMakers.push(() => makeCharacter(
  10290. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10291. {
  10292. front: {
  10293. height: math.unit(100, "feet"),
  10294. weight: math.unit(350, "kg"),
  10295. name: "Front",
  10296. image: {
  10297. source: "./media/characters/rikes/front.svg",
  10298. extra: 1565 / 1483,
  10299. bottom: 0.017
  10300. }
  10301. },
  10302. },
  10303. [
  10304. {
  10305. name: "Macro",
  10306. height: math.unit(100, "feet"),
  10307. default: true
  10308. },
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10313. {
  10314. anthro: {
  10315. height: math.unit(8, "feet"),
  10316. weight: math.unit(120, "kg"),
  10317. name: "Anthro",
  10318. image: {
  10319. source: "./media/characters/adam-silver-mane/anthro.svg",
  10320. extra: 5743 / 5339,
  10321. bottom: 0.07
  10322. }
  10323. },
  10324. taur: {
  10325. height: math.unit(16, "feet"),
  10326. weight: math.unit(1500, "kg"),
  10327. name: "Taur",
  10328. image: {
  10329. source: "./media/characters/adam-silver-mane/taur.svg",
  10330. extra: 1713 / 1571,
  10331. bottom: 0.01
  10332. }
  10333. },
  10334. },
  10335. [
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(8, "feet")
  10339. },
  10340. {
  10341. name: "Minimacro",
  10342. height: math.unit(80, "feet")
  10343. },
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(800, "feet"),
  10347. default: true
  10348. },
  10349. {
  10350. name: "Megamacro",
  10351. height: math.unit(8000, "feet")
  10352. },
  10353. {
  10354. name: "Gigamacro",
  10355. height: math.unit(800, "miles")
  10356. },
  10357. {
  10358. name: "Teramacro",
  10359. height: math.unit(80000, "miles")
  10360. },
  10361. {
  10362. name: "Celestial",
  10363. height: math.unit(8e6, "miles")
  10364. },
  10365. {
  10366. name: "Star Dragon",
  10367. height: math.unit(800000, "parsecs")
  10368. },
  10369. {
  10370. name: "Godly",
  10371. height: math.unit(800, "teraparsecs")
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10377. {
  10378. front: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(150, "lb"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/ky'owin/front.svg",
  10384. extra: 3888 / 3068,
  10385. bottom: 0.015
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Normal",
  10392. height: math.unit(6 + 8 / 12, "feet")
  10393. },
  10394. {
  10395. name: "Large",
  10396. height: math.unit(68, "feet")
  10397. },
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(132, "feet")
  10401. },
  10402. {
  10403. name: "Macro+",
  10404. height: math.unit(340, "feet")
  10405. },
  10406. {
  10407. name: "Macro++",
  10408. height: math.unit(680, "feet"),
  10409. default: true
  10410. },
  10411. {
  10412. name: "Megamacro",
  10413. height: math.unit(1, "mile")
  10414. },
  10415. {
  10416. name: "Megamacro+",
  10417. height: math.unit(10, "miles")
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10423. {
  10424. front: {
  10425. height: math.unit(4, "feet"),
  10426. weight: math.unit(50, "lb"),
  10427. name: "Front",
  10428. image: {
  10429. source: "./media/characters/mal/front.svg",
  10430. extra: 785 / 724,
  10431. bottom: 0.07
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Micro",
  10438. height: math.unit(4, "inches")
  10439. },
  10440. {
  10441. name: "Normal",
  10442. height: math.unit(4, "feet"),
  10443. default: true
  10444. },
  10445. {
  10446. name: "Macro",
  10447. height: math.unit(200, "feet")
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(6, "feet"),
  10456. weight: math.unit(150, "lb"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/jordan-deware/front.svg",
  10460. extra: 1191 / 1012
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Nano",
  10467. height: math.unit(0.01, "mm")
  10468. },
  10469. {
  10470. name: "Minimicro",
  10471. height: math.unit(1, "mm")
  10472. },
  10473. {
  10474. name: "Micro",
  10475. height: math.unit(0.5, "inches")
  10476. },
  10477. {
  10478. name: "Normal",
  10479. height: math.unit(4, "feet"),
  10480. default: true
  10481. },
  10482. {
  10483. name: "Minimacro",
  10484. height: math.unit(40, "meters")
  10485. },
  10486. {
  10487. name: "Small Macro",
  10488. height: math.unit(400, "meters")
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(4, "miles")
  10493. },
  10494. {
  10495. name: "Megamacro",
  10496. height: math.unit(40, "miles")
  10497. },
  10498. {
  10499. name: "Megamacro+",
  10500. height: math.unit(400, "miles")
  10501. },
  10502. {
  10503. name: "Gigamacro",
  10504. height: math.unit(400000, "miles")
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10510. {
  10511. side: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(150, "lb"),
  10514. name: "Side",
  10515. image: {
  10516. source: "./media/characters/kimiko/side.svg",
  10517. extra: 600 / 358
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(15, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(220, "feet")
  10530. },
  10531. {
  10532. name: "Macro+",
  10533. height: math.unit(1450, "feet")
  10534. },
  10535. {
  10536. name: "Megamacro",
  10537. height: math.unit(11500, "feet")
  10538. },
  10539. {
  10540. name: "Gigamacro",
  10541. height: math.unit(9500, "miles")
  10542. },
  10543. {
  10544. name: "Teramacro",
  10545. height: math.unit(2208005005, "miles")
  10546. },
  10547. {
  10548. name: "Examacro",
  10549. height: math.unit(2750, "parsecs")
  10550. },
  10551. {
  10552. name: "Zettamacro",
  10553. height: math.unit(101500, "parsecs")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(70, "kg"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/andrew-sleepy/front.svg"
  10566. }
  10567. },
  10568. side: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(70, "kg"),
  10571. name: "Side",
  10572. image: {
  10573. source: "./media/characters/andrew-sleepy/side.svg"
  10574. }
  10575. },
  10576. },
  10577. [
  10578. {
  10579. name: "Micro",
  10580. height: math.unit(1, "mm"),
  10581. default: true
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10587. {
  10588. front: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(150, "lb"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/judio/front.svg",
  10594. extra: 1258 / 1110
  10595. }
  10596. },
  10597. },
  10598. [
  10599. {
  10600. name: "Normal",
  10601. height: math.unit(5 + 6 / 12, "feet")
  10602. },
  10603. {
  10604. name: "Macro",
  10605. height: math.unit(1000, "feet"),
  10606. default: true
  10607. },
  10608. {
  10609. name: "Megamacro",
  10610. height: math.unit(10, "miles")
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(68, "kg"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/nomaxice/front.svg",
  10623. extra: 1498 / 1073,
  10624. bottom: 0.075
  10625. }
  10626. },
  10627. foot: {
  10628. height: math.unit(1.1, "feet"),
  10629. name: "Foot",
  10630. image: {
  10631. source: "./media/characters/nomaxice/foot.svg"
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Micro",
  10638. height: math.unit(8, "cm")
  10639. },
  10640. {
  10641. name: "Norm",
  10642. height: math.unit(1.82, "m")
  10643. },
  10644. {
  10645. name: "Norm+",
  10646. height: math.unit(8.8, "feet")
  10647. },
  10648. {
  10649. name: "Big",
  10650. height: math.unit(8, "meters"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Macro",
  10655. height: math.unit(18, "meters")
  10656. },
  10657. {
  10658. name: "Macro+",
  10659. height: math.unit(88, "meters")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10665. {
  10666. front: {
  10667. height: math.unit(12, "feet"),
  10668. weight: math.unit(1.5, "tons"),
  10669. name: "Front",
  10670. image: {
  10671. source: "./media/characters/dydros/front.svg",
  10672. extra: 863 / 800,
  10673. bottom: 0.015
  10674. }
  10675. },
  10676. back: {
  10677. height: math.unit(12, "feet"),
  10678. weight: math.unit(1.5, "tons"),
  10679. name: "Back",
  10680. image: {
  10681. source: "./media/characters/dydros/back.svg",
  10682. extra: 900 / 843,
  10683. bottom: 0.005
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Normal",
  10690. height: math.unit(12, "feet"),
  10691. default: true
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(100, "kg"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/riggi/front.svg",
  10704. extra: 5787 / 5303
  10705. }
  10706. },
  10707. hyper: {
  10708. height: math.unit(6 * 5 / 3, "feet"),
  10709. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10710. name: "Hyper",
  10711. image: {
  10712. source: "./media/characters/riggi/hyper.svg",
  10713. extra: 3595 / 3485
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Small Macro",
  10720. height: math.unit(50, "feet")
  10721. },
  10722. {
  10723. name: "Default",
  10724. height: math.unit(200, "feet"),
  10725. default: true
  10726. },
  10727. {
  10728. name: "Loom",
  10729. height: math.unit(10000, "feet")
  10730. },
  10731. {
  10732. name: "Cruising Altitude",
  10733. height: math.unit(30000, "feet")
  10734. },
  10735. {
  10736. name: "Megamacro",
  10737. height: math.unit(100, "miles")
  10738. },
  10739. {
  10740. name: "Continent Sized",
  10741. height: math.unit(2800, "miles")
  10742. },
  10743. {
  10744. name: "Earth Sized",
  10745. height: math.unit(8000, "miles")
  10746. },
  10747. ]
  10748. ))
  10749. characterMakers.push(() => makeCharacter(
  10750. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10751. {
  10752. front: {
  10753. height: math.unit(6, "feet"),
  10754. weight: math.unit(250, "lb"),
  10755. name: "Front",
  10756. image: {
  10757. source: "./media/characters/alexi/front.svg",
  10758. extra: 3483 / 3291,
  10759. bottom: 0.04
  10760. }
  10761. },
  10762. back: {
  10763. height: math.unit(6, "feet"),
  10764. weight: math.unit(250, "lb"),
  10765. name: "Back",
  10766. image: {
  10767. source: "./media/characters/alexi/back.svg",
  10768. extra: 3533 / 3356,
  10769. bottom: 0.021
  10770. }
  10771. },
  10772. frontTransforming: {
  10773. height: math.unit(8.58, "feet"),
  10774. weight: math.unit(1300, "lb"),
  10775. name: "Transforming",
  10776. image: {
  10777. source: "./media/characters/alexi/front-transforming.svg",
  10778. extra: 437 / 409,
  10779. bottom: 19 / 458.66
  10780. }
  10781. },
  10782. frontTransformed: {
  10783. height: math.unit(12.5, "feet"),
  10784. weight: math.unit(4000, "lb"),
  10785. name: "Transformed",
  10786. image: {
  10787. source: "./media/characters/alexi/front-transformed.svg",
  10788. extra: 639 / 614,
  10789. bottom: 30.55 / 671
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(14, "feet"),
  10797. default: true
  10798. },
  10799. {
  10800. name: "Minimacro",
  10801. height: math.unit(30, "meters")
  10802. },
  10803. {
  10804. name: "Macro",
  10805. height: math.unit(500, "meters")
  10806. },
  10807. {
  10808. name: "Megamacro",
  10809. height: math.unit(9000, "km")
  10810. },
  10811. {
  10812. name: "Teramacro",
  10813. height: math.unit(384000, "km")
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10819. {
  10820. front: {
  10821. height: math.unit(6, "feet"),
  10822. weight: math.unit(150, "lb"),
  10823. name: "Front",
  10824. image: {
  10825. source: "./media/characters/kayroo/front.svg",
  10826. extra: 1153 / 1038,
  10827. bottom: 0.06
  10828. }
  10829. },
  10830. foot: {
  10831. height: math.unit(6, "feet"),
  10832. weight: math.unit(150, "lb"),
  10833. name: "Foot",
  10834. image: {
  10835. source: "./media/characters/kayroo/foot.svg"
  10836. }
  10837. },
  10838. },
  10839. [
  10840. {
  10841. name: "Normal",
  10842. height: math.unit(8, "feet"),
  10843. default: true
  10844. },
  10845. {
  10846. name: "Minimacro",
  10847. height: math.unit(250, "feet")
  10848. },
  10849. {
  10850. name: "Macro",
  10851. height: math.unit(2800, "feet")
  10852. },
  10853. {
  10854. name: "Megamacro",
  10855. height: math.unit(5200, "feet")
  10856. },
  10857. {
  10858. name: "Gigamacro",
  10859. height: math.unit(27000, "feet")
  10860. },
  10861. {
  10862. name: "Omega",
  10863. height: math.unit(45000, "feet")
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10869. {
  10870. front: {
  10871. height: math.unit(18, "feet"),
  10872. weight: math.unit(5800, "lb"),
  10873. name: "Front",
  10874. image: {
  10875. source: "./media/characters/rhys/front.svg",
  10876. extra: 3386 / 3090,
  10877. bottom: 0.07
  10878. }
  10879. },
  10880. },
  10881. [
  10882. {
  10883. name: "Normal",
  10884. height: math.unit(18, "feet"),
  10885. default: true
  10886. },
  10887. {
  10888. name: "Working Size",
  10889. height: math.unit(200, "feet")
  10890. },
  10891. {
  10892. name: "Demolition Size",
  10893. height: math.unit(2000, "feet")
  10894. },
  10895. {
  10896. name: "Maximum Licensed Size",
  10897. height: math.unit(5, "miles")
  10898. },
  10899. {
  10900. name: "Maximum Observed Size",
  10901. height: math.unit(10, "yottameters")
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10907. {
  10908. front: {
  10909. height: math.unit(6, "feet"),
  10910. weight: math.unit(250, "lb"),
  10911. name: "Front",
  10912. image: {
  10913. source: "./media/characters/toto/front.svg",
  10914. extra: 527 / 479,
  10915. bottom: 0.05
  10916. }
  10917. },
  10918. },
  10919. [
  10920. {
  10921. name: "Micro",
  10922. height: math.unit(3, "feet")
  10923. },
  10924. {
  10925. name: "Normal",
  10926. height: math.unit(10, "feet")
  10927. },
  10928. {
  10929. name: "Macro",
  10930. height: math.unit(150, "feet"),
  10931. default: true
  10932. },
  10933. {
  10934. name: "Megamacro",
  10935. height: math.unit(1200, "feet")
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "King", species: ["lion"], tags: ["anthro"] },
  10941. {
  10942. back: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(150, "lb"),
  10945. name: "Back",
  10946. image: {
  10947. source: "./media/characters/king/back.svg"
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Micro",
  10954. height: math.unit(2, "inches")
  10955. },
  10956. {
  10957. name: "Normal",
  10958. height: math.unit(8, "feet")
  10959. },
  10960. {
  10961. name: "Macro",
  10962. height: math.unit(200, "feet"),
  10963. default: true
  10964. },
  10965. {
  10966. name: "Megamacro",
  10967. height: math.unit(50, "miles")
  10968. },
  10969. ]
  10970. ))
  10971. characterMakers.push(() => makeCharacter(
  10972. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10973. {
  10974. anthro: {
  10975. height: math.unit(6 + 5 / 12, "feet"),
  10976. weight: math.unit(280, "lb"),
  10977. name: "Anthro",
  10978. image: {
  10979. source: "./media/characters/cordite/anthro.svg",
  10980. extra: 1986 / 1905,
  10981. bottom: 0.025
  10982. }
  10983. },
  10984. feral: {
  10985. height: math.unit(2, "feet"),
  10986. weight: math.unit(90, "lb"),
  10987. name: "Feral",
  10988. image: {
  10989. source: "./media/characters/cordite/feral.svg",
  10990. extra: 1260 / 755,
  10991. bottom: 0.05
  10992. }
  10993. },
  10994. },
  10995. [
  10996. {
  10997. name: "Normal",
  10998. height: math.unit(6 + 5 / 12, "feet"),
  10999. default: true
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11005. {
  11006. front: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(150, "lb"),
  11009. name: "Front",
  11010. image: {
  11011. source: "./media/characters/pianostrong/front.svg",
  11012. extra: 6577 / 6254,
  11013. bottom: 0.02
  11014. }
  11015. },
  11016. side: {
  11017. height: math.unit(6, "feet"),
  11018. weight: math.unit(150, "lb"),
  11019. name: "Side",
  11020. image: {
  11021. source: "./media/characters/pianostrong/side.svg",
  11022. extra: 6106 / 5730
  11023. }
  11024. },
  11025. back: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(150, "lb"),
  11028. name: "Back",
  11029. image: {
  11030. source: "./media/characters/pianostrong/back.svg",
  11031. extra: 6085 / 5733,
  11032. bottom: 0.01
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Macro",
  11039. height: math.unit(100, "feet")
  11040. },
  11041. {
  11042. name: "Macro+",
  11043. height: math.unit(300, "feet"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Macro++",
  11048. height: math.unit(1000, "feet")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11054. {
  11055. front: {
  11056. height: math.unit(6, "feet"),
  11057. weight: math.unit(150, "lb"),
  11058. name: "Front",
  11059. image: {
  11060. source: "./media/characters/kona/front.svg",
  11061. extra: 2960 / 2629,
  11062. bottom: 0.005
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(11 + 8 / 12, "feet")
  11070. },
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(850, "feet"),
  11074. default: true
  11075. },
  11076. {
  11077. name: "Macro+",
  11078. height: math.unit(1.5, "km"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Megamacro",
  11083. height: math.unit(80, "miles")
  11084. },
  11085. {
  11086. name: "Gigamacro",
  11087. height: math.unit(3500, "miles")
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11093. {
  11094. side: {
  11095. height: math.unit(1.9, "meters"),
  11096. weight: math.unit(326, "kg"),
  11097. name: "Side",
  11098. image: {
  11099. source: "./media/characters/levi/side.svg",
  11100. extra: 1704 / 1334,
  11101. bottom: 0.02
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Normal",
  11108. height: math.unit(1.9, "meters"),
  11109. default: true
  11110. },
  11111. {
  11112. name: "Macro",
  11113. height: math.unit(20, "meters")
  11114. },
  11115. {
  11116. name: "Macro+",
  11117. height: math.unit(200, "meters")
  11118. },
  11119. {
  11120. name: "Megamacro",
  11121. height: math.unit(2, "km")
  11122. },
  11123. {
  11124. name: "Megamacro+",
  11125. height: math.unit(20, "km")
  11126. },
  11127. {
  11128. name: "Gigamacro",
  11129. height: math.unit(2500, "km")
  11130. },
  11131. {
  11132. name: "Gigamacro+",
  11133. height: math.unit(120000, "km")
  11134. },
  11135. {
  11136. name: "Teramacro",
  11137. height: math.unit(7.77e6, "km")
  11138. },
  11139. ]
  11140. ))
  11141. characterMakers.push(() => makeCharacter(
  11142. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11143. {
  11144. front: {
  11145. height: math.unit(6 + 4 / 12, "feet"),
  11146. weight: math.unit(188, "lb"),
  11147. name: "Front",
  11148. image: {
  11149. source: "./media/characters/bmc/front.svg",
  11150. extra: 1067 / 1022,
  11151. bottom: 0.047
  11152. }
  11153. },
  11154. },
  11155. [
  11156. {
  11157. name: "Human-sized",
  11158. height: math.unit(6 + 4 / 12, "feet")
  11159. },
  11160. {
  11161. name: "Small",
  11162. height: math.unit(250, "feet")
  11163. },
  11164. {
  11165. name: "Normal",
  11166. height: math.unit(1250, "feet"),
  11167. default: true
  11168. },
  11169. {
  11170. name: "Good Day",
  11171. height: math.unit(88, "miles")
  11172. },
  11173. {
  11174. name: "Largest Measured Size",
  11175. height: math.unit(11.2e6, "lightyears")
  11176. },
  11177. ]
  11178. ))
  11179. characterMakers.push(() => makeCharacter(
  11180. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11181. {
  11182. front: {
  11183. height: math.unit(20, "feet"),
  11184. weight: math.unit(2016, "kg"),
  11185. name: "Front",
  11186. image: {
  11187. source: "./media/characters/sven-the-kaiju/front.svg",
  11188. extra: 1277/1250,
  11189. bottom: 35/1312
  11190. }
  11191. },
  11192. mouth: {
  11193. height: math.unit(1.85, "feet"),
  11194. name: "Mouth",
  11195. image: {
  11196. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Fairy",
  11203. height: math.unit(6, "inches")
  11204. },
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(20, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Rampage",
  11212. height: math.unit(200, "feet")
  11213. },
  11214. {
  11215. name: "Archfey Forest Guardian",
  11216. height: math.unit(1, "mile")
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(4, "meters"),
  11225. weight: math.unit(2, "tons"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/marik/front.svg",
  11229. extra: 1057 / 1003,
  11230. bottom: 0.08
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(4, "meters"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Macro",
  11242. height: math.unit(20, "meters")
  11243. },
  11244. {
  11245. name: "Megamacro",
  11246. height: math.unit(50, "km")
  11247. },
  11248. {
  11249. name: "Gigamacro",
  11250. height: math.unit(100, "km")
  11251. },
  11252. {
  11253. name: "Alpha Macro",
  11254. height: math.unit(7.88e7, "yottameters")
  11255. },
  11256. ]
  11257. ))
  11258. characterMakers.push(() => makeCharacter(
  11259. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11260. {
  11261. front: {
  11262. height: math.unit(6, "feet"),
  11263. weight: math.unit(110, "lb"),
  11264. name: "Front",
  11265. image: {
  11266. source: "./media/characters/mel/front.svg",
  11267. extra: 736 / 617,
  11268. bottom: 0.017
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Pico",
  11275. height: math.unit(3, "pm")
  11276. },
  11277. {
  11278. name: "Nano",
  11279. height: math.unit(3, "nm")
  11280. },
  11281. {
  11282. name: "Micro",
  11283. height: math.unit(0.3, "mm"),
  11284. default: true
  11285. },
  11286. {
  11287. name: "Micro+",
  11288. height: math.unit(3, "mm")
  11289. },
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(5 + 10.5 / 12, "feet")
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11298. {
  11299. kaiju: {
  11300. height: math.unit(1.75, "meters"),
  11301. weight: math.unit(55, "kg"),
  11302. name: "Kaiju",
  11303. image: {
  11304. source: "./media/characters/lykonous/kaiju.svg",
  11305. extra: 1055 / 946,
  11306. bottom: 0.135
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(2.5, "meters"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Kaiju Dragon",
  11318. height: math.unit(60, "meters")
  11319. },
  11320. {
  11321. name: "Mega Kaiju",
  11322. height: math.unit(120, "km")
  11323. },
  11324. {
  11325. name: "Giga Kaiju",
  11326. height: math.unit(200, "megameters")
  11327. },
  11328. {
  11329. name: "Terra Kaiju",
  11330. height: math.unit(400, "gigameters")
  11331. },
  11332. {
  11333. name: "Kaiju Dragon God",
  11334. height: math.unit(13000, "exaparsecs")
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(150, "lb"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/blü/front.svg",
  11347. extra: 1883 / 1564,
  11348. bottom: 0.031
  11349. }
  11350. },
  11351. },
  11352. [
  11353. {
  11354. name: "Normal",
  11355. height: math.unit(13, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Big Boi",
  11360. height: math.unit(150, "meters")
  11361. },
  11362. {
  11363. name: "Mini Stomper",
  11364. height: math.unit(300, "meters")
  11365. },
  11366. {
  11367. name: "Macro",
  11368. height: math.unit(1000, "meters")
  11369. },
  11370. {
  11371. name: "Megamacro",
  11372. height: math.unit(11000, "meters")
  11373. },
  11374. {
  11375. name: "Gigamacro",
  11376. height: math.unit(11000, "km")
  11377. },
  11378. {
  11379. name: "Teramacro",
  11380. height: math.unit(420000, "km")
  11381. },
  11382. {
  11383. name: "Examacro",
  11384. height: math.unit(120, "parsecs")
  11385. },
  11386. {
  11387. name: "God Tho",
  11388. height: math.unit(98000000000, "parsecs")
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11394. {
  11395. taurFront: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(200, "lb"),
  11398. name: "Taur (Front)",
  11399. image: {
  11400. source: "./media/characters/scales/taur-front.svg",
  11401. extra: 1,
  11402. bottom: 0.05
  11403. }
  11404. },
  11405. taurBack: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(200, "lb"),
  11408. name: "Taur (Back)",
  11409. image: {
  11410. source: "./media/characters/scales/taur-back.svg",
  11411. extra: 1,
  11412. bottom: 0.08
  11413. }
  11414. },
  11415. anthro: {
  11416. height: math.unit(6 * 7 / 12, "feet"),
  11417. weight: math.unit(100, "lb"),
  11418. name: "Anthro",
  11419. image: {
  11420. source: "./media/characters/scales/anthro.svg",
  11421. extra: 1,
  11422. bottom: 0.06
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(12, "feet"),
  11430. default: true
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(150, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/koragos/front.svg",
  11443. extra: 841 / 794,
  11444. bottom: 0.035
  11445. }
  11446. },
  11447. back: {
  11448. height: math.unit(6, "feet"),
  11449. weight: math.unit(150, "lb"),
  11450. name: "Back",
  11451. image: {
  11452. source: "./media/characters/koragos/back.svg",
  11453. extra: 841 / 810,
  11454. bottom: 0.022
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Normal",
  11461. height: math.unit(6 + 11 / 12, "feet"),
  11462. default: true
  11463. },
  11464. {
  11465. name: "Macro",
  11466. height: math.unit(490, "feet")
  11467. },
  11468. {
  11469. name: "Megamacro",
  11470. height: math.unit(10, "miles")
  11471. },
  11472. {
  11473. name: "Gigamacro",
  11474. height: math.unit(50, "miles")
  11475. },
  11476. ]
  11477. ))
  11478. characterMakers.push(() => makeCharacter(
  11479. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11480. {
  11481. front: {
  11482. height: math.unit(6, "feet"),
  11483. weight: math.unit(250, "lb"),
  11484. name: "Front",
  11485. image: {
  11486. source: "./media/characters/xylrem/front.svg",
  11487. extra: 3323 / 3050,
  11488. bottom: 0.065
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Micro",
  11495. height: math.unit(4, "feet")
  11496. },
  11497. {
  11498. name: "Normal",
  11499. height: math.unit(16, "feet"),
  11500. default: true
  11501. },
  11502. {
  11503. name: "Macro",
  11504. height: math.unit(2720, "feet")
  11505. },
  11506. {
  11507. name: "Megamacro",
  11508. height: math.unit(25000, "miles")
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11514. {
  11515. front: {
  11516. height: math.unit(8, "feet"),
  11517. weight: math.unit(250, "kg"),
  11518. name: "Front",
  11519. image: {
  11520. source: "./media/characters/ikideru/front.svg",
  11521. extra: 930 / 870,
  11522. bottom: 0.087
  11523. }
  11524. },
  11525. back: {
  11526. height: math.unit(8, "feet"),
  11527. weight: math.unit(250, "kg"),
  11528. name: "Back",
  11529. image: {
  11530. source: "./media/characters/ikideru/back.svg",
  11531. extra: 919 / 852,
  11532. bottom: 0.055
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Rare",
  11539. height: math.unit(8, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Playful Loom",
  11544. height: math.unit(80, "feet")
  11545. },
  11546. {
  11547. name: "City Leaner",
  11548. height: math.unit(230, "feet")
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(2500, "feet")
  11553. },
  11554. {
  11555. name: "Gigamacro",
  11556. height: math.unit(26400, "feet")
  11557. },
  11558. {
  11559. name: "Tectonic Shifter",
  11560. height: math.unit(1.7, "megameters")
  11561. },
  11562. {
  11563. name: "Planet Carer",
  11564. height: math.unit(21, "megameters")
  11565. },
  11566. {
  11567. name: "God",
  11568. height: math.unit(11157.22, "parsecs")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(6, "feet"),
  11577. weight: math.unit(120, "lb"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/neo/front.svg"
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Micro",
  11587. height: math.unit(2, "inches"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Human Size",
  11592. height: math.unit(5 + 8 / 12, "feet")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(13 + 10 / 12, "feet"),
  11601. weight: math.unit(5320, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/chauncey-chantz/front.svg",
  11605. extra: 1587 / 1435,
  11606. bottom: 0.02
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Normal",
  11613. height: math.unit(13 + 10 / 12, "feet"),
  11614. default: true
  11615. },
  11616. {
  11617. name: "Macro",
  11618. height: math.unit(45, "feet")
  11619. },
  11620. {
  11621. name: "Megamacro",
  11622. height: math.unit(250, "miles")
  11623. },
  11624. {
  11625. name: "Planetary",
  11626. height: math.unit(10000, "miles")
  11627. },
  11628. {
  11629. name: "Galactic",
  11630. height: math.unit(40000, "parsecs")
  11631. },
  11632. {
  11633. name: "Universal",
  11634. height: math.unit(1, "yottameter")
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11640. {
  11641. front: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(150, "lb"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/epifox/front.svg",
  11647. extra: 1,
  11648. bottom: 0.075
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Micro",
  11655. height: math.unit(6, "inches")
  11656. },
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(12, "feet"),
  11660. default: true
  11661. },
  11662. {
  11663. name: "Macro",
  11664. height: math.unit(3810, "feet")
  11665. },
  11666. {
  11667. name: "Megamacro",
  11668. height: math.unit(500, "miles")
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11674. {
  11675. front: {
  11676. height: math.unit(1.8796, "m"),
  11677. weight: math.unit(230, "lb"),
  11678. name: "Front",
  11679. image: {
  11680. source: "./media/characters/colin-t/front.svg",
  11681. extra: 1272 / 1193,
  11682. bottom: 0.07
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Micro",
  11689. height: math.unit(0.571, "meters")
  11690. },
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(1.8796, "meters"),
  11694. default: true
  11695. },
  11696. {
  11697. name: "Tall",
  11698. height: math.unit(4, "meters")
  11699. },
  11700. {
  11701. name: "Macro",
  11702. height: math.unit(67.241, "meters")
  11703. },
  11704. {
  11705. name: "Megamacro",
  11706. height: math.unit(371.856, "meters")
  11707. },
  11708. {
  11709. name: "Planetary",
  11710. height: math.unit(12631.5689, "km")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(1.85, "meters"),
  11719. weight: math.unit(80, "kg"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/matvei/front.svg",
  11723. extra: 614 / 594,
  11724. bottom: 0.01
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(1.85, "meters"),
  11732. default: true
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11738. {
  11739. front: {
  11740. height: math.unit(5 + 9 / 12, "feet"),
  11741. weight: math.unit(70, "lb"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/quincy/front.svg",
  11745. extra: 3041 / 2751
  11746. }
  11747. },
  11748. back: {
  11749. height: math.unit(5 + 9 / 12, "feet"),
  11750. weight: math.unit(70, "lb"),
  11751. name: "Back",
  11752. image: {
  11753. source: "./media/characters/quincy/back.svg",
  11754. extra: 3041 / 2751
  11755. }
  11756. },
  11757. flying: {
  11758. height: math.unit(5 + 4 / 12, "feet"),
  11759. weight: math.unit(70, "lb"),
  11760. name: "Flying",
  11761. image: {
  11762. source: "./media/characters/quincy/flying.svg",
  11763. extra: 1044 / 930
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Micro",
  11770. height: math.unit(3, "cm")
  11771. },
  11772. {
  11773. name: "Normal",
  11774. height: math.unit(5 + 9 / 12, "feet")
  11775. },
  11776. {
  11777. name: "Macro",
  11778. height: math.unit(200, "meters"),
  11779. default: true
  11780. },
  11781. {
  11782. name: "Megamacro",
  11783. height: math.unit(1000, "meters")
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11789. {
  11790. front: {
  11791. height: math.unit(3 + 11/12, "feet"),
  11792. weight: math.unit(50, "lb"),
  11793. name: "Front",
  11794. image: {
  11795. source: "./media/characters/vanrel/front.svg",
  11796. extra: 1104/949,
  11797. bottom: 52/1156
  11798. }
  11799. },
  11800. back: {
  11801. height: math.unit(3 + 11/12, "feet"),
  11802. weight: math.unit(50, "lb"),
  11803. name: "Back",
  11804. image: {
  11805. source: "./media/characters/vanrel/back.svg",
  11806. extra: 1119/976,
  11807. bottom: 37/1156
  11808. }
  11809. },
  11810. tome: {
  11811. height: math.unit(1.35, "feet"),
  11812. weight: math.unit(10, "lb"),
  11813. name: "Vanrel's Tome",
  11814. rename: true,
  11815. image: {
  11816. source: "./media/characters/vanrel/tome.svg"
  11817. }
  11818. },
  11819. beans: {
  11820. height: math.unit(0.89, "feet"),
  11821. name: "Beans",
  11822. image: {
  11823. source: "./media/characters/vanrel/beans.svg"
  11824. }
  11825. },
  11826. },
  11827. [
  11828. {
  11829. name: "Normal",
  11830. height: math.unit(3 + 11/12, "feet"),
  11831. default: true
  11832. },
  11833. ]
  11834. ))
  11835. characterMakers.push(() => makeCharacter(
  11836. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11837. {
  11838. front: {
  11839. height: math.unit(7 + 5 / 12, "feet"),
  11840. name: "Front",
  11841. image: {
  11842. source: "./media/characters/kuiper-vanrel/front.svg",
  11843. extra: 1219/1169,
  11844. bottom: 69/1288
  11845. }
  11846. },
  11847. back: {
  11848. height: math.unit(7 + 5 / 12, "feet"),
  11849. name: "Back",
  11850. image: {
  11851. source: "./media/characters/kuiper-vanrel/back.svg",
  11852. extra: 1236/1193,
  11853. bottom: 27/1263
  11854. }
  11855. },
  11856. foot: {
  11857. height: math.unit(0.55, "meters"),
  11858. name: "Foot",
  11859. image: {
  11860. source: "./media/characters/kuiper-vanrel/foot.svg",
  11861. }
  11862. },
  11863. battle: {
  11864. height: math.unit(6.824, "feet"),
  11865. name: "Battle",
  11866. image: {
  11867. source: "./media/characters/kuiper-vanrel/battle.svg",
  11868. extra: 1466 / 1327,
  11869. bottom: 29 / 1492.5
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Normal",
  11876. height: math.unit(7 + 5 / 12, "feet"),
  11877. default: true
  11878. },
  11879. ]
  11880. ))
  11881. characterMakers.push(() => makeCharacter(
  11882. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11883. {
  11884. front: {
  11885. height: math.unit(8 + 5 / 12, "feet"),
  11886. name: "Front",
  11887. image: {
  11888. source: "./media/characters/keset-vanrel/front.svg",
  11889. extra: 1231/1148,
  11890. bottom: 82/1313
  11891. }
  11892. },
  11893. back: {
  11894. height: math.unit(8 + 5 / 12, "feet"),
  11895. name: "Back",
  11896. image: {
  11897. source: "./media/characters/keset-vanrel/back.svg",
  11898. extra: 1240/1174,
  11899. bottom: 33/1273
  11900. }
  11901. },
  11902. hand: {
  11903. height: math.unit(0.6, "meters"),
  11904. name: "Hand",
  11905. image: {
  11906. source: "./media/characters/keset-vanrel/hand.svg"
  11907. }
  11908. },
  11909. foot: {
  11910. height: math.unit(0.94978, "meters"),
  11911. name: "Foot",
  11912. image: {
  11913. source: "./media/characters/keset-vanrel/foot.svg"
  11914. }
  11915. },
  11916. battle: {
  11917. height: math.unit(7.408, "feet"),
  11918. name: "Battle",
  11919. image: {
  11920. source: "./media/characters/keset-vanrel/battle.svg",
  11921. extra: 1890 / 1386,
  11922. bottom: 73.28 / 1970
  11923. }
  11924. },
  11925. },
  11926. [
  11927. {
  11928. name: "Normal",
  11929. height: math.unit(8 + 5 / 12, "feet"),
  11930. default: true
  11931. },
  11932. ]
  11933. ))
  11934. characterMakers.push(() => makeCharacter(
  11935. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11936. {
  11937. front: {
  11938. height: math.unit(6, "feet"),
  11939. weight: math.unit(150, "lb"),
  11940. name: "Front",
  11941. image: {
  11942. source: "./media/characters/neos/front.svg",
  11943. extra: 1696 / 992,
  11944. bottom: 0.14
  11945. }
  11946. },
  11947. },
  11948. [
  11949. {
  11950. name: "Normal",
  11951. height: math.unit(54, "cm"),
  11952. default: true
  11953. },
  11954. {
  11955. name: "Macro",
  11956. height: math.unit(100, "m")
  11957. },
  11958. {
  11959. name: "Megamacro",
  11960. height: math.unit(10, "km")
  11961. },
  11962. {
  11963. name: "Megamacro+",
  11964. height: math.unit(100, "km")
  11965. },
  11966. {
  11967. name: "Gigamacro",
  11968. height: math.unit(100, "Mm")
  11969. },
  11970. {
  11971. name: "Teramacro",
  11972. height: math.unit(100, "Gm")
  11973. },
  11974. {
  11975. name: "Examacro",
  11976. height: math.unit(100, "Em")
  11977. },
  11978. {
  11979. name: "Godly",
  11980. height: math.unit(10000, "Ym")
  11981. },
  11982. {
  11983. name: "Beyond Godly",
  11984. height: math.unit(25, "multiverses")
  11985. },
  11986. ]
  11987. ))
  11988. characterMakers.push(() => makeCharacter(
  11989. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11990. {
  11991. feminine: {
  11992. height: math.unit(5, "feet"),
  11993. weight: math.unit(100, "lb"),
  11994. name: "Feminine",
  11995. image: {
  11996. source: "./media/characters/sammy-mouse/feminine.svg",
  11997. extra: 2526 / 2425,
  11998. bottom: 0.123
  11999. }
  12000. },
  12001. masculine: {
  12002. height: math.unit(5, "feet"),
  12003. weight: math.unit(100, "lb"),
  12004. name: "Masculine",
  12005. image: {
  12006. source: "./media/characters/sammy-mouse/masculine.svg",
  12007. extra: 2526 / 2425,
  12008. bottom: 0.123
  12009. }
  12010. },
  12011. },
  12012. [
  12013. {
  12014. name: "Micro",
  12015. height: math.unit(5, "inches")
  12016. },
  12017. {
  12018. name: "Normal",
  12019. height: math.unit(5, "feet"),
  12020. default: true
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(60, "feet")
  12025. },
  12026. ]
  12027. ))
  12028. characterMakers.push(() => makeCharacter(
  12029. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12030. {
  12031. front: {
  12032. height: math.unit(4, "feet"),
  12033. weight: math.unit(50, "lb"),
  12034. name: "Front",
  12035. image: {
  12036. source: "./media/characters/kole/front.svg",
  12037. extra: 1423 / 1303,
  12038. bottom: 0.025
  12039. }
  12040. },
  12041. back: {
  12042. height: math.unit(4, "feet"),
  12043. weight: math.unit(50, "lb"),
  12044. name: "Back",
  12045. image: {
  12046. source: "./media/characters/kole/back.svg",
  12047. extra: 1426 / 1280,
  12048. bottom: 0.02
  12049. }
  12050. },
  12051. },
  12052. [
  12053. {
  12054. name: "Normal",
  12055. height: math.unit(4, "feet"),
  12056. default: true
  12057. },
  12058. ]
  12059. ))
  12060. characterMakers.push(() => makeCharacter(
  12061. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12062. {
  12063. front: {
  12064. height: math.unit(2 + 6 / 12, "feet"),
  12065. weight: math.unit(20, "lb"),
  12066. name: "Front",
  12067. image: {
  12068. source: "./media/characters/rufran/front.svg",
  12069. extra: 2041 / 1839,
  12070. bottom: 0.055
  12071. }
  12072. },
  12073. back: {
  12074. height: math.unit(2 + 6 / 12, "feet"),
  12075. weight: math.unit(20, "lb"),
  12076. name: "Back",
  12077. image: {
  12078. source: "./media/characters/rufran/back.svg",
  12079. extra: 2054 / 1839,
  12080. bottom: 0.01
  12081. }
  12082. },
  12083. hand: {
  12084. height: math.unit(0.2166, "meters"),
  12085. name: "Hand",
  12086. image: {
  12087. source: "./media/characters/rufran/hand.svg"
  12088. }
  12089. },
  12090. foot: {
  12091. height: math.unit(0.185, "meters"),
  12092. name: "Foot",
  12093. image: {
  12094. source: "./media/characters/rufran/foot.svg"
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Micro",
  12101. height: math.unit(1, "inch")
  12102. },
  12103. {
  12104. name: "Normal",
  12105. height: math.unit(2 + 6 / 12, "feet"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Big",
  12110. height: math.unit(60, "feet")
  12111. },
  12112. {
  12113. name: "Macro",
  12114. height: math.unit(325, "feet")
  12115. },
  12116. ]
  12117. ))
  12118. characterMakers.push(() => makeCharacter(
  12119. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12120. {
  12121. front: {
  12122. height: math.unit(0.3, "meters"),
  12123. weight: math.unit(3.5, "kg"),
  12124. name: "Front",
  12125. image: {
  12126. source: "./media/characters/chip/front.svg",
  12127. extra: 748 / 674
  12128. }
  12129. },
  12130. },
  12131. [
  12132. {
  12133. name: "Micro",
  12134. height: math.unit(1, "inch"),
  12135. default: true
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12141. {
  12142. side: {
  12143. height: math.unit(2.3, "meters"),
  12144. weight: math.unit(3500, "lb"),
  12145. name: "Side",
  12146. image: {
  12147. source: "./media/characters/torvid/side.svg",
  12148. extra: 1972 / 722,
  12149. bottom: 0.035
  12150. }
  12151. },
  12152. },
  12153. [
  12154. {
  12155. name: "Normal",
  12156. height: math.unit(2.3, "meters"),
  12157. default: true
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12163. {
  12164. front: {
  12165. height: math.unit(2, "meters"),
  12166. weight: math.unit(150.5, "kg"),
  12167. name: "Front",
  12168. image: {
  12169. source: "./media/characters/susan/front.svg",
  12170. extra: 693 / 635,
  12171. bottom: 0.05
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Megamacro",
  12178. height: math.unit(505, "miles"),
  12179. default: true
  12180. },
  12181. ]
  12182. ))
  12183. characterMakers.push(() => makeCharacter(
  12184. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12185. {
  12186. front: {
  12187. height: math.unit(6, "feet"),
  12188. weight: math.unit(150, "lb"),
  12189. name: "Front",
  12190. image: {
  12191. source: "./media/characters/raindrops/front.svg",
  12192. extra: 2655 / 2461,
  12193. bottom: 49 / 2705
  12194. }
  12195. },
  12196. back: {
  12197. height: math.unit(6, "feet"),
  12198. weight: math.unit(150, "lb"),
  12199. name: "Back",
  12200. image: {
  12201. source: "./media/characters/raindrops/back.svg",
  12202. extra: 2574 / 2400,
  12203. bottom: 65 / 2634
  12204. }
  12205. },
  12206. },
  12207. [
  12208. {
  12209. name: "Micro",
  12210. height: math.unit(6, "inches")
  12211. },
  12212. {
  12213. name: "Normal",
  12214. height: math.unit(6 + 2 / 12, "feet")
  12215. },
  12216. {
  12217. name: "Macro",
  12218. height: math.unit(131, "feet"),
  12219. default: true
  12220. },
  12221. {
  12222. name: "Megamacro",
  12223. height: math.unit(15, "miles")
  12224. },
  12225. {
  12226. name: "Gigamacro",
  12227. height: math.unit(4000, "miles")
  12228. },
  12229. {
  12230. name: "Teramacro",
  12231. height: math.unit(315000, "miles")
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12237. {
  12238. front: {
  12239. height: math.unit(2.794, "meters"),
  12240. weight: math.unit(325, "kg"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/tezwa/front.svg",
  12244. extra: 2083 / 1906,
  12245. bottom: 0.031
  12246. }
  12247. },
  12248. foot: {
  12249. height: math.unit(0.687, "meters"),
  12250. name: "Foot",
  12251. image: {
  12252. source: "./media/characters/tezwa/foot.svg"
  12253. }
  12254. },
  12255. },
  12256. [
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(9 + 2 / 12, "feet"),
  12260. default: true
  12261. },
  12262. ]
  12263. ))
  12264. characterMakers.push(() => makeCharacter(
  12265. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12266. {
  12267. front: {
  12268. height: math.unit(58, "feet"),
  12269. weight: math.unit(89000, "lb"),
  12270. name: "Front",
  12271. image: {
  12272. source: "./media/characters/typhus/front.svg",
  12273. extra: 816 / 800,
  12274. bottom: 0.065
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Macro",
  12281. height: math.unit(58, "feet"),
  12282. default: true
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12288. {
  12289. front: {
  12290. height: math.unit(12, "feet"),
  12291. weight: math.unit(6, "tonnes"),
  12292. name: "Front",
  12293. image: {
  12294. source: "./media/characters/lyra-von-wulf/front.svg",
  12295. extra: 1,
  12296. bottom: 0.10
  12297. }
  12298. },
  12299. frontMecha: {
  12300. height: math.unit(12, "feet"),
  12301. weight: math.unit(12, "tonnes"),
  12302. name: "Front (Mecha)",
  12303. image: {
  12304. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12305. extra: 1,
  12306. bottom: 0.042
  12307. }
  12308. },
  12309. maw: {
  12310. height: math.unit(2.2, "feet"),
  12311. name: "Maw",
  12312. image: {
  12313. source: "./media/characters/lyra-von-wulf/maw.svg"
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(12, "feet"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Classic",
  12325. height: math.unit(50, "feet")
  12326. },
  12327. {
  12328. name: "Macro",
  12329. height: math.unit(500, "feet")
  12330. },
  12331. {
  12332. name: "Megamacro",
  12333. height: math.unit(1, "mile")
  12334. },
  12335. {
  12336. name: "Gigamacro",
  12337. height: math.unit(400, "miles")
  12338. },
  12339. {
  12340. name: "Teramacro",
  12341. height: math.unit(22000, "miles")
  12342. },
  12343. {
  12344. name: "Solarmacro",
  12345. height: math.unit(8600000, "miles")
  12346. },
  12347. {
  12348. name: "Galactic",
  12349. height: math.unit(1057000, "lightyears")
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(6 + 10 / 12, "feet"),
  12358. weight: math.unit(150, "lb"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/dixon/front.svg",
  12362. extra: 3361 / 3209,
  12363. bottom: 0.01
  12364. }
  12365. },
  12366. },
  12367. [
  12368. {
  12369. name: "Normal",
  12370. height: math.unit(6 + 10 / 12, "feet"),
  12371. default: true
  12372. },
  12373. {
  12374. name: "Big",
  12375. height: math.unit(12, "meters")
  12376. },
  12377. {
  12378. name: "Macro",
  12379. height: math.unit(500, "meters")
  12380. },
  12381. {
  12382. name: "Megamacro",
  12383. height: math.unit(2, "km")
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12389. {
  12390. front: {
  12391. height: math.unit(185, "cm"),
  12392. weight: math.unit(68, "kg"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/kauko/front.svg",
  12396. extra: 1455 / 1421,
  12397. bottom: 0.03
  12398. }
  12399. },
  12400. back: {
  12401. height: math.unit(185, "cm"),
  12402. weight: math.unit(68, "kg"),
  12403. name: "Back",
  12404. image: {
  12405. source: "./media/characters/kauko/back.svg",
  12406. extra: 1455 / 1421,
  12407. bottom: 0.004
  12408. }
  12409. },
  12410. },
  12411. [
  12412. {
  12413. name: "Normal",
  12414. height: math.unit(185, "cm"),
  12415. default: true
  12416. },
  12417. ]
  12418. ))
  12419. characterMakers.push(() => makeCharacter(
  12420. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12421. {
  12422. front: {
  12423. height: math.unit(6, "feet"),
  12424. weight: math.unit(150, "kg"),
  12425. name: "Front",
  12426. image: {
  12427. source: "./media/characters/varg/front.svg",
  12428. extra: 1108 / 1018,
  12429. bottom: 0.0375
  12430. }
  12431. },
  12432. },
  12433. [
  12434. {
  12435. name: "Normal",
  12436. height: math.unit(5, "meters")
  12437. },
  12438. {
  12439. name: "Macro",
  12440. height: math.unit(200, "meters")
  12441. },
  12442. {
  12443. name: "Megamacro",
  12444. height: math.unit(20, "kilometers")
  12445. },
  12446. {
  12447. name: "True Size",
  12448. height: math.unit(211, "km"),
  12449. default: true
  12450. },
  12451. {
  12452. name: "Gigamacro",
  12453. height: math.unit(1000, "km")
  12454. },
  12455. {
  12456. name: "Gigamacro+",
  12457. height: math.unit(8000, "km")
  12458. },
  12459. {
  12460. name: "Teramacro",
  12461. height: math.unit(1000000, "km")
  12462. },
  12463. ]
  12464. ))
  12465. characterMakers.push(() => makeCharacter(
  12466. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12467. {
  12468. front: {
  12469. height: math.unit(7 + 7 / 12, "feet"),
  12470. weight: math.unit(267, "lb"),
  12471. name: "Front",
  12472. image: {
  12473. source: "./media/characters/dayza/front.svg",
  12474. extra: 1262 / 1200,
  12475. bottom: 0.035
  12476. }
  12477. },
  12478. side: {
  12479. height: math.unit(7 + 7 / 12, "feet"),
  12480. weight: math.unit(267, "lb"),
  12481. name: "Side",
  12482. image: {
  12483. source: "./media/characters/dayza/side.svg",
  12484. extra: 1295 / 1245,
  12485. bottom: 0.05
  12486. }
  12487. },
  12488. back: {
  12489. height: math.unit(7 + 7 / 12, "feet"),
  12490. weight: math.unit(267, "lb"),
  12491. name: "Back",
  12492. image: {
  12493. source: "./media/characters/dayza/back.svg",
  12494. extra: 1241 / 1170
  12495. }
  12496. },
  12497. },
  12498. [
  12499. {
  12500. name: "Normal",
  12501. height: math.unit(7 + 7 / 12, "feet"),
  12502. default: true
  12503. },
  12504. {
  12505. name: "Macro",
  12506. height: math.unit(155, "feet")
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12512. {
  12513. front: {
  12514. height: math.unit(6 + 5 / 12, "feet"),
  12515. weight: math.unit(160, "lb"),
  12516. name: "Front",
  12517. image: {
  12518. source: "./media/characters/xanthos/front.svg",
  12519. extra: 1,
  12520. bottom: 0.04
  12521. }
  12522. },
  12523. back: {
  12524. height: math.unit(6 + 5 / 12, "feet"),
  12525. weight: math.unit(160, "lb"),
  12526. name: "Back",
  12527. image: {
  12528. source: "./media/characters/xanthos/back.svg",
  12529. extra: 1,
  12530. bottom: 0.03
  12531. }
  12532. },
  12533. hand: {
  12534. height: math.unit(0.928, "feet"),
  12535. name: "Hand",
  12536. image: {
  12537. source: "./media/characters/xanthos/hand.svg"
  12538. }
  12539. },
  12540. foot: {
  12541. height: math.unit(1.286, "feet"),
  12542. name: "Foot",
  12543. image: {
  12544. source: "./media/characters/xanthos/foot.svg"
  12545. }
  12546. },
  12547. },
  12548. [
  12549. {
  12550. name: "Normal",
  12551. height: math.unit(6 + 5 / 12, "feet"),
  12552. default: true
  12553. },
  12554. {
  12555. name: "Normal+",
  12556. height: math.unit(6, "meters")
  12557. },
  12558. {
  12559. name: "Macro",
  12560. height: math.unit(40, "feet")
  12561. },
  12562. {
  12563. name: "Macro+",
  12564. height: math.unit(200, "meters")
  12565. },
  12566. {
  12567. name: "Megamacro",
  12568. height: math.unit(20, "km")
  12569. },
  12570. {
  12571. name: "Megamacro+",
  12572. height: math.unit(100, "km")
  12573. },
  12574. ]
  12575. ))
  12576. characterMakers.push(() => makeCharacter(
  12577. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12578. {
  12579. front: {
  12580. height: math.unit(6 + 3 / 12, "feet"),
  12581. weight: math.unit(215, "lb"),
  12582. name: "Front",
  12583. image: {
  12584. source: "./media/characters/grynn/front.svg",
  12585. extra: 4627 / 4209,
  12586. bottom: 0.047
  12587. }
  12588. },
  12589. },
  12590. [
  12591. {
  12592. name: "Micro",
  12593. height: math.unit(6, "inches")
  12594. },
  12595. {
  12596. name: "Normal",
  12597. height: math.unit(6 + 3 / 12, "feet"),
  12598. default: true
  12599. },
  12600. {
  12601. name: "Big",
  12602. height: math.unit(104, "feet")
  12603. },
  12604. {
  12605. name: "Macro",
  12606. height: math.unit(944, "feet")
  12607. },
  12608. {
  12609. name: "Macro+",
  12610. height: math.unit(9480, "feet")
  12611. },
  12612. {
  12613. name: "Megamacro",
  12614. height: math.unit(78752, "feet")
  12615. },
  12616. {
  12617. name: "Megamacro+",
  12618. height: math.unit(630128, "feet")
  12619. },
  12620. {
  12621. name: "Megamacro++",
  12622. height: math.unit(3150695, "feet")
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(7 + 5 / 12, "feet"),
  12631. weight: math.unit(450, "lb"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/mocha-aura/front.svg",
  12635. extra: 1907 / 1817,
  12636. bottom: 0.04
  12637. }
  12638. },
  12639. back: {
  12640. height: math.unit(7 + 5 / 12, "feet"),
  12641. weight: math.unit(450, "lb"),
  12642. name: "Back",
  12643. image: {
  12644. source: "./media/characters/mocha-aura/back.svg",
  12645. extra: 1900 / 1825,
  12646. bottom: 0.045
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Nano",
  12653. height: math.unit(1, "nm")
  12654. },
  12655. {
  12656. name: "Megamicro",
  12657. height: math.unit(1, "mm")
  12658. },
  12659. {
  12660. name: "Micro",
  12661. height: math.unit(3, "inches")
  12662. },
  12663. {
  12664. name: "Normal",
  12665. height: math.unit(7 + 5 / 12, "feet"),
  12666. default: true
  12667. },
  12668. {
  12669. name: "Macro",
  12670. height: math.unit(30, "feet")
  12671. },
  12672. {
  12673. name: "Megamacro",
  12674. height: math.unit(3500, "feet")
  12675. },
  12676. {
  12677. name: "Teramacro",
  12678. height: math.unit(500000, "miles")
  12679. },
  12680. {
  12681. name: "Petamacro",
  12682. height: math.unit(50000000000000000, "parsecs")
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(150, "lb"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/ilisha-devya/front.svg",
  12695. extra: 1,
  12696. bottom: 0.175
  12697. }
  12698. },
  12699. back: {
  12700. height: math.unit(6, "feet"),
  12701. weight: math.unit(150, "lb"),
  12702. name: "Back",
  12703. image: {
  12704. source: "./media/characters/ilisha-devya/back.svg",
  12705. extra: 1,
  12706. bottom: 0.015
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Macro",
  12713. height: math.unit(500, "feet"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Megamacro",
  12718. height: math.unit(10, "miles")
  12719. },
  12720. {
  12721. name: "Gigamacro",
  12722. height: math.unit(100000, "miles")
  12723. },
  12724. {
  12725. name: "Examacro",
  12726. height: math.unit(1e9, "lightyears")
  12727. },
  12728. {
  12729. name: "Omniversal",
  12730. height: math.unit(1e33, "lightyears")
  12731. },
  12732. {
  12733. name: "Beyond Infinite",
  12734. height: math.unit(1e100, "lightyears")
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12740. {
  12741. Side: {
  12742. height: math.unit(6, "feet"),
  12743. weight: math.unit(150, "lb"),
  12744. name: "Side",
  12745. image: {
  12746. source: "./media/characters/mira/side.svg",
  12747. extra: 900 / 799,
  12748. bottom: 0.02
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Human Size",
  12755. height: math.unit(6, "feet")
  12756. },
  12757. {
  12758. name: "Macro",
  12759. height: math.unit(100, "feet"),
  12760. default: true
  12761. },
  12762. {
  12763. name: "Megamacro",
  12764. height: math.unit(10, "miles")
  12765. },
  12766. {
  12767. name: "Gigamacro",
  12768. height: math.unit(25000, "miles")
  12769. },
  12770. {
  12771. name: "Teramacro",
  12772. height: math.unit(300, "AU")
  12773. },
  12774. {
  12775. name: "Full Size",
  12776. height: math.unit(4.5e10, "lightyears")
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(6, "feet"),
  12785. weight: math.unit(150, "lb"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/holly/front.svg",
  12789. extra: 639 / 606
  12790. }
  12791. },
  12792. back: {
  12793. height: math.unit(6, "feet"),
  12794. weight: math.unit(150, "lb"),
  12795. name: "Back",
  12796. image: {
  12797. source: "./media/characters/holly/back.svg",
  12798. extra: 623 / 598
  12799. }
  12800. },
  12801. frontWorking: {
  12802. height: math.unit(6, "feet"),
  12803. weight: math.unit(150, "lb"),
  12804. name: "Front (Working)",
  12805. image: {
  12806. source: "./media/characters/holly/front-working.svg",
  12807. extra: 607 / 577,
  12808. bottom: 0.048
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(12 + 3 / 12, "feet"),
  12816. default: true
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12822. {
  12823. front: {
  12824. height: math.unit(6, "feet"),
  12825. weight: math.unit(150, "lb"),
  12826. name: "Front",
  12827. image: {
  12828. source: "./media/characters/porter/front.svg",
  12829. extra: 1,
  12830. bottom: 0.01
  12831. }
  12832. },
  12833. frontRobes: {
  12834. height: math.unit(6, "feet"),
  12835. weight: math.unit(150, "lb"),
  12836. name: "Front (Robes)",
  12837. image: {
  12838. source: "./media/characters/porter/front-robes.svg",
  12839. extra: 1.01,
  12840. bottom: 0.01
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Normal",
  12847. height: math.unit(11 + 9 / 12, "feet"),
  12848. default: true
  12849. },
  12850. ]
  12851. ))
  12852. characterMakers.push(() => makeCharacter(
  12853. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12854. {
  12855. legendary: {
  12856. height: math.unit(6, "feet"),
  12857. weight: math.unit(150, "lb"),
  12858. name: "Legendary",
  12859. image: {
  12860. source: "./media/characters/lucy/legendary.svg",
  12861. extra: 1355 / 1100,
  12862. bottom: 0.045
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Legendary",
  12869. height: math.unit(86882 * 2, "miles"),
  12870. default: true
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(150, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/drusilla/front.svg",
  12883. extra: 678 / 635,
  12884. bottom: 0.03
  12885. }
  12886. },
  12887. back: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Back",
  12891. image: {
  12892. source: "./media/characters/drusilla/back.svg",
  12893. extra: 678 / 635,
  12894. bottom: 0.005
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Macro",
  12901. height: math.unit(100, "feet")
  12902. },
  12903. {
  12904. name: "Canon Height",
  12905. height: math.unit(2000, "feet"),
  12906. default: true
  12907. },
  12908. ]
  12909. ))
  12910. characterMakers.push(() => makeCharacter(
  12911. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12912. {
  12913. front: {
  12914. height: math.unit(6, "feet"),
  12915. weight: math.unit(180, "lb"),
  12916. name: "Front",
  12917. image: {
  12918. source: "./media/characters/renard-thatch/front.svg",
  12919. extra: 2411 / 2275,
  12920. bottom: 0.01
  12921. }
  12922. },
  12923. frontPosing: {
  12924. height: math.unit(6, "feet"),
  12925. weight: math.unit(180, "lb"),
  12926. name: "Front (Posing)",
  12927. image: {
  12928. source: "./media/characters/renard-thatch/front-posing.svg",
  12929. extra: 2381 / 2261,
  12930. bottom: 0.01
  12931. }
  12932. },
  12933. back: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(180, "lb"),
  12936. name: "Back",
  12937. image: {
  12938. source: "./media/characters/renard-thatch/back.svg",
  12939. extra: 2428 / 2288
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Micro",
  12946. height: math.unit(3, "inches")
  12947. },
  12948. {
  12949. name: "Default",
  12950. height: math.unit(6, "feet"),
  12951. default: true
  12952. },
  12953. {
  12954. name: "Macro",
  12955. height: math.unit(75, "feet")
  12956. },
  12957. ]
  12958. ))
  12959. characterMakers.push(() => makeCharacter(
  12960. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12961. {
  12962. front: {
  12963. height: math.unit(1450, "feet"),
  12964. weight: math.unit(1.21e6, "tons"),
  12965. name: "Front",
  12966. image: {
  12967. source: "./media/characters/sekvra/front.svg",
  12968. extra: 1,
  12969. bottom: 0.03
  12970. }
  12971. },
  12972. frontClothed: {
  12973. height: math.unit(1450, "feet"),
  12974. weight: math.unit(1.21e6, "tons"),
  12975. name: "Front (Clothed)",
  12976. image: {
  12977. source: "./media/characters/sekvra/front-clothed.svg",
  12978. extra: 1,
  12979. bottom: 0.03
  12980. }
  12981. },
  12982. side: {
  12983. height: math.unit(1450, "feet"),
  12984. weight: math.unit(1.21e6, "tons"),
  12985. name: "Side",
  12986. image: {
  12987. source: "./media/characters/sekvra/side.svg",
  12988. extra: 1,
  12989. bottom: 0.025
  12990. }
  12991. },
  12992. back: {
  12993. height: math.unit(1450, "feet"),
  12994. weight: math.unit(1.21e6, "tons"),
  12995. name: "Back",
  12996. image: {
  12997. source: "./media/characters/sekvra/back.svg",
  12998. extra: 1,
  12999. bottom: 0.005
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Macro",
  13006. height: math.unit(1450, "feet"),
  13007. default: true
  13008. },
  13009. {
  13010. name: "Megamacro",
  13011. height: math.unit(15000, "feet")
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(6, "feet"),
  13020. weight: math.unit(150, "lb"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/carmine/front.svg",
  13024. extra: 1,
  13025. bottom: 0.035
  13026. }
  13027. },
  13028. frontArmor: {
  13029. height: math.unit(6, "feet"),
  13030. weight: math.unit(150, "lb"),
  13031. name: "Front (Armor)",
  13032. image: {
  13033. source: "./media/characters/carmine/front-armor.svg",
  13034. extra: 1,
  13035. bottom: 0.035
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Large",
  13042. height: math.unit(1, "mile")
  13043. },
  13044. {
  13045. name: "Huge",
  13046. height: math.unit(40, "miles"),
  13047. default: true
  13048. },
  13049. {
  13050. name: "Colossal",
  13051. height: math.unit(2500, "miles")
  13052. },
  13053. ]
  13054. ))
  13055. characterMakers.push(() => makeCharacter(
  13056. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13057. {
  13058. front: {
  13059. height: math.unit(6, "feet"),
  13060. weight: math.unit(150, "lb"),
  13061. name: "Front",
  13062. image: {
  13063. source: "./media/characters/elyssia/front.svg",
  13064. extra: 2201 / 2035,
  13065. bottom: 0.05
  13066. }
  13067. },
  13068. frontClothed: {
  13069. height: math.unit(6, "feet"),
  13070. weight: math.unit(150, "lb"),
  13071. name: "Front (Clothed)",
  13072. image: {
  13073. source: "./media/characters/elyssia/front-clothed.svg",
  13074. extra: 2201 / 2035,
  13075. bottom: 0.05
  13076. }
  13077. },
  13078. back: {
  13079. height: math.unit(6, "feet"),
  13080. weight: math.unit(150, "lb"),
  13081. name: "Back",
  13082. image: {
  13083. source: "./media/characters/elyssia/back.svg",
  13084. extra: 2201 / 2035,
  13085. bottom: 0.013
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Smaller",
  13092. height: math.unit(150, "feet")
  13093. },
  13094. {
  13095. name: "Standard",
  13096. height: math.unit(1400, "feet"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Distracted",
  13101. height: math.unit(15000, "feet")
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(7 + 4 / 12, "feet"),
  13110. weight: math.unit(500, "lb"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/geno-maxwell/front.svg",
  13114. extra: 2207 / 2040,
  13115. bottom: 0.015
  13116. }
  13117. },
  13118. },
  13119. [
  13120. {
  13121. name: "Micro",
  13122. height: math.unit(3, "inches")
  13123. },
  13124. {
  13125. name: "Normal",
  13126. height: math.unit(7 + 4 / 12, "feet"),
  13127. default: true
  13128. },
  13129. {
  13130. name: "Macro",
  13131. height: math.unit(220, "feet")
  13132. },
  13133. {
  13134. name: "Megamacro",
  13135. height: math.unit(11, "miles")
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13141. {
  13142. front: {
  13143. height: math.unit(7 + 4 / 12, "feet"),
  13144. weight: math.unit(500, "lb"),
  13145. name: "Front",
  13146. image: {
  13147. source: "./media/characters/regena-maxwell/front.svg",
  13148. extra: 3115 / 2770,
  13149. bottom: 0.02
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Normal",
  13156. height: math.unit(7 + 4 / 12, "feet"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Macro",
  13161. height: math.unit(220, "feet")
  13162. },
  13163. {
  13164. name: "Megamacro",
  13165. height: math.unit(11, "miles")
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13171. {
  13172. front: {
  13173. height: math.unit(6, "feet"),
  13174. weight: math.unit(150, "lb"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13178. extra: 860 / 690,
  13179. bottom: 0.03
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(1.7, "meters"),
  13187. default: true
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(6, "feet"),
  13196. weight: math.unit(150, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/quilly/front.svg",
  13200. extra: 890 / 776
  13201. }
  13202. },
  13203. },
  13204. [
  13205. {
  13206. name: "Gigamacro",
  13207. height: math.unit(404090, "miles"),
  13208. default: true
  13209. },
  13210. ]
  13211. ))
  13212. characterMakers.push(() => makeCharacter(
  13213. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13214. {
  13215. front: {
  13216. height: math.unit(7 + 8 / 12, "feet"),
  13217. weight: math.unit(350, "lb"),
  13218. name: "Front",
  13219. image: {
  13220. source: "./media/characters/tempest/front.svg",
  13221. extra: 1175 / 1086,
  13222. bottom: 0.02
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Normal",
  13229. height: math.unit(7 + 8 / 12, "feet"),
  13230. default: true
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13236. {
  13237. side: {
  13238. height: math.unit(4 + 5 / 12, "feet"),
  13239. weight: math.unit(80, "lb"),
  13240. name: "Side",
  13241. image: {
  13242. source: "./media/characters/rodger/side.svg",
  13243. extra: 1235 / 1118
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Micro",
  13250. height: math.unit(1, "inch")
  13251. },
  13252. {
  13253. name: "Normal",
  13254. height: math.unit(4 + 5 / 12, "feet"),
  13255. default: true
  13256. },
  13257. {
  13258. name: "Macro",
  13259. height: math.unit(120, "feet")
  13260. },
  13261. ]
  13262. ))
  13263. characterMakers.push(() => makeCharacter(
  13264. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13265. {
  13266. front: {
  13267. height: math.unit(6, "feet"),
  13268. weight: math.unit(150, "lb"),
  13269. name: "Front",
  13270. image: {
  13271. source: "./media/characters/danyel/front.svg",
  13272. extra: 1185 / 1123,
  13273. bottom: 0.05
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Shrunken",
  13280. height: math.unit(0.5, "mm")
  13281. },
  13282. {
  13283. name: "Micro",
  13284. height: math.unit(1, "mm"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Upsized",
  13289. height: math.unit(5 + 5 / 12, "feet")
  13290. },
  13291. ]
  13292. ))
  13293. characterMakers.push(() => makeCharacter(
  13294. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13295. {
  13296. front: {
  13297. height: math.unit(5 + 6 / 12, "feet"),
  13298. weight: math.unit(200, "lb"),
  13299. name: "Front",
  13300. image: {
  13301. source: "./media/characters/vivian-bijoux/front.svg",
  13302. extra: 1,
  13303. bottom: 0.072
  13304. }
  13305. },
  13306. },
  13307. [
  13308. {
  13309. name: "Normal",
  13310. height: math.unit(5 + 6 / 12, "feet"),
  13311. default: true
  13312. },
  13313. {
  13314. name: "Bad Dream",
  13315. height: math.unit(500, "feet")
  13316. },
  13317. {
  13318. name: "Nightmare",
  13319. height: math.unit(500, "miles")
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13325. {
  13326. front: {
  13327. height: math.unit(6 + 1 / 12, "feet"),
  13328. weight: math.unit(260, "lb"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/zeta/front.svg",
  13332. extra: 1968 / 1889,
  13333. bottom: 0.06
  13334. }
  13335. },
  13336. back: {
  13337. height: math.unit(6 + 1 / 12, "feet"),
  13338. weight: math.unit(260, "lb"),
  13339. name: "Back",
  13340. image: {
  13341. source: "./media/characters/zeta/back.svg",
  13342. extra: 1944 / 1858,
  13343. bottom: 0.03
  13344. }
  13345. },
  13346. hand: {
  13347. height: math.unit(1.112, "feet"),
  13348. name: "Hand",
  13349. image: {
  13350. source: "./media/characters/zeta/hand.svg"
  13351. }
  13352. },
  13353. foot: {
  13354. height: math.unit(1.48, "feet"),
  13355. name: "Foot",
  13356. image: {
  13357. source: "./media/characters/zeta/foot.svg"
  13358. }
  13359. },
  13360. },
  13361. [
  13362. {
  13363. name: "Micro",
  13364. height: math.unit(6, "inches")
  13365. },
  13366. {
  13367. name: "Normal",
  13368. height: math.unit(6 + 1 / 12, "feet"),
  13369. default: true
  13370. },
  13371. {
  13372. name: "Macro",
  13373. height: math.unit(20, "feet")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13379. {
  13380. front: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/jamie-larsen/front.svg",
  13386. extra: 962 / 933,
  13387. bottom: 0.02
  13388. }
  13389. },
  13390. back: {
  13391. height: math.unit(6, "feet"),
  13392. weight: math.unit(150, "lb"),
  13393. name: "Back",
  13394. image: {
  13395. source: "./media/characters/jamie-larsen/back.svg",
  13396. extra: 997 / 946
  13397. }
  13398. },
  13399. },
  13400. [
  13401. {
  13402. name: "Macro",
  13403. height: math.unit(28 + 7 / 12, "feet"),
  13404. default: true
  13405. },
  13406. {
  13407. name: "Macro+",
  13408. height: math.unit(180, "feet")
  13409. },
  13410. {
  13411. name: "Megamacro",
  13412. height: math.unit(10, "miles")
  13413. },
  13414. {
  13415. name: "Gigamacro",
  13416. height: math.unit(200000, "miles")
  13417. },
  13418. ]
  13419. ))
  13420. characterMakers.push(() => makeCharacter(
  13421. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13422. {
  13423. front: {
  13424. height: math.unit(6, "feet"),
  13425. weight: math.unit(120, "lb"),
  13426. name: "Front",
  13427. image: {
  13428. source: "./media/characters/vance/front.svg",
  13429. extra: 1980 / 1890,
  13430. bottom: 0.09
  13431. }
  13432. },
  13433. back: {
  13434. height: math.unit(6, "feet"),
  13435. weight: math.unit(120, "lb"),
  13436. name: "Back",
  13437. image: {
  13438. source: "./media/characters/vance/back.svg",
  13439. extra: 2081 / 1994,
  13440. bottom: 0.014
  13441. }
  13442. },
  13443. hand: {
  13444. height: math.unit(0.88, "feet"),
  13445. name: "Hand",
  13446. image: {
  13447. source: "./media/characters/vance/hand.svg"
  13448. }
  13449. },
  13450. foot: {
  13451. height: math.unit(0.64, "feet"),
  13452. name: "Foot",
  13453. image: {
  13454. source: "./media/characters/vance/foot.svg"
  13455. }
  13456. },
  13457. },
  13458. [
  13459. {
  13460. name: "Small",
  13461. height: math.unit(90, "feet"),
  13462. default: true
  13463. },
  13464. {
  13465. name: "Macro",
  13466. height: math.unit(100, "meters")
  13467. },
  13468. {
  13469. name: "Megamacro",
  13470. height: math.unit(15, "miles")
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13476. {
  13477. front: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(180, "lb"),
  13480. name: "Front",
  13481. image: {
  13482. source: "./media/characters/xochitl/front.svg",
  13483. extra: 2297 / 2261,
  13484. bottom: 0.065
  13485. }
  13486. },
  13487. back: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(180, "lb"),
  13490. name: "Back",
  13491. image: {
  13492. source: "./media/characters/xochitl/back.svg",
  13493. extra: 2386 / 2354,
  13494. bottom: 0.01
  13495. }
  13496. },
  13497. foot: {
  13498. height: math.unit(6 / 5 * 1.15, "feet"),
  13499. weight: math.unit(150, "lb"),
  13500. name: "Foot",
  13501. image: {
  13502. source: "./media/characters/xochitl/foot.svg"
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Macro",
  13509. height: math.unit(80, "feet")
  13510. },
  13511. {
  13512. name: "Macro+",
  13513. height: math.unit(400, "feet"),
  13514. default: true
  13515. },
  13516. {
  13517. name: "Gigamacro",
  13518. height: math.unit(80000, "miles")
  13519. },
  13520. {
  13521. name: "Gigamacro+",
  13522. height: math.unit(400000, "miles")
  13523. },
  13524. {
  13525. name: "Teramacro",
  13526. height: math.unit(300, "AU")
  13527. },
  13528. ]
  13529. ))
  13530. characterMakers.push(() => makeCharacter(
  13531. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13532. {
  13533. front: {
  13534. height: math.unit(6, "feet"),
  13535. weight: math.unit(150, "lb"),
  13536. name: "Front",
  13537. image: {
  13538. source: "./media/characters/vincent/front.svg",
  13539. extra: 1130 / 1080,
  13540. bottom: 0.055
  13541. }
  13542. },
  13543. beak: {
  13544. height: math.unit(6 * 0.1, "feet"),
  13545. name: "Beak",
  13546. image: {
  13547. source: "./media/characters/vincent/beak.svg"
  13548. }
  13549. },
  13550. hand: {
  13551. height: math.unit(6 * 0.85, "feet"),
  13552. weight: math.unit(150, "lb"),
  13553. name: "Hand",
  13554. image: {
  13555. source: "./media/characters/vincent/hand.svg"
  13556. }
  13557. },
  13558. foot: {
  13559. height: math.unit(6 * 0.19, "feet"),
  13560. weight: math.unit(150, "lb"),
  13561. name: "Foot",
  13562. image: {
  13563. source: "./media/characters/vincent/foot.svg"
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Base",
  13570. height: math.unit(6 + 5 / 12, "feet"),
  13571. default: true
  13572. },
  13573. {
  13574. name: "Macro",
  13575. height: math.unit(300, "feet")
  13576. },
  13577. {
  13578. name: "Megamacro",
  13579. height: math.unit(2, "miles")
  13580. },
  13581. {
  13582. name: "Gigamacro",
  13583. height: math.unit(1000, "miles")
  13584. },
  13585. ]
  13586. ))
  13587. characterMakers.push(() => makeCharacter(
  13588. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13589. {
  13590. front: {
  13591. height: math.unit(2, "meters"),
  13592. weight: math.unit(500, "kg"),
  13593. name: "Front",
  13594. image: {
  13595. source: "./media/characters/coatl/front.svg",
  13596. extra: 3948 / 3500,
  13597. bottom: 0.082
  13598. }
  13599. },
  13600. },
  13601. [
  13602. {
  13603. name: "Normal",
  13604. height: math.unit(4, "meters")
  13605. },
  13606. {
  13607. name: "Macro",
  13608. height: math.unit(100, "meters"),
  13609. default: true
  13610. },
  13611. {
  13612. name: "Macro+",
  13613. height: math.unit(300, "meters")
  13614. },
  13615. {
  13616. name: "Megamacro",
  13617. height: math.unit(3, "gigameters")
  13618. },
  13619. {
  13620. name: "Megamacro+",
  13621. height: math.unit(300, "terameters")
  13622. },
  13623. {
  13624. name: "Megamacro++",
  13625. height: math.unit(3, "lightyears")
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(6, "feet"),
  13634. weight: math.unit(50, "kg"),
  13635. name: "front",
  13636. image: {
  13637. source: "./media/characters/shiroryu/front.svg",
  13638. extra: 1990 / 1935
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Mortal Mingling",
  13645. height: math.unit(3, "meters")
  13646. },
  13647. {
  13648. name: "Kaiju-ish",
  13649. height: math.unit(250, "meters")
  13650. },
  13651. {
  13652. name: "Somewhat Godly",
  13653. height: math.unit(400, "km"),
  13654. default: true
  13655. },
  13656. {
  13657. name: "Planetary",
  13658. height: math.unit(300, "megameters")
  13659. },
  13660. {
  13661. name: "Galaxy-dwarfing",
  13662. height: math.unit(450, "kiloparsecs")
  13663. },
  13664. {
  13665. name: "Universe Eater",
  13666. height: math.unit(150, "gigaparsecs")
  13667. },
  13668. {
  13669. name: "Almost Immeasurable",
  13670. height: math.unit(1.3e266, "yottaparsecs")
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13676. {
  13677. front: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(150, "lb"),
  13680. name: "Front",
  13681. image: {
  13682. source: "./media/characters/umeko/front.svg",
  13683. extra: 1,
  13684. bottom: 0.019
  13685. }
  13686. },
  13687. frontArmored: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(150, "lb"),
  13690. name: "Front (Armored)",
  13691. image: {
  13692. source: "./media/characters/umeko/front-armored.svg",
  13693. extra: 1,
  13694. bottom: 0.021
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Macro",
  13701. height: math.unit(220, "feet"),
  13702. default: true
  13703. },
  13704. {
  13705. name: "Guardian Dragon",
  13706. height: math.unit(50, "miles")
  13707. },
  13708. {
  13709. name: "Cosmic",
  13710. height: math.unit(800000, "miles")
  13711. },
  13712. ]
  13713. ))
  13714. characterMakers.push(() => makeCharacter(
  13715. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13716. {
  13717. front: {
  13718. height: math.unit(6, "feet"),
  13719. weight: math.unit(150, "lb"),
  13720. name: "Front",
  13721. image: {
  13722. source: "./media/characters/cassidy/front.svg",
  13723. extra: 1,
  13724. bottom: 0.043
  13725. }
  13726. },
  13727. },
  13728. [
  13729. {
  13730. name: "Canon Height",
  13731. height: math.unit(120, "feet"),
  13732. default: true
  13733. },
  13734. {
  13735. name: "Macro+",
  13736. height: math.unit(400, "feet")
  13737. },
  13738. {
  13739. name: "Macro++",
  13740. height: math.unit(4000, "feet")
  13741. },
  13742. {
  13743. name: "Megamacro",
  13744. height: math.unit(3, "miles")
  13745. },
  13746. ]
  13747. ))
  13748. characterMakers.push(() => makeCharacter(
  13749. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13750. {
  13751. front: {
  13752. height: math.unit(6, "feet"),
  13753. weight: math.unit(150, "lb"),
  13754. name: "Front",
  13755. image: {
  13756. source: "./media/characters/isaac/front.svg",
  13757. extra: 896 / 815,
  13758. bottom: 0.11
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Human Size",
  13765. height: math.unit(8, "feet"),
  13766. default: true
  13767. },
  13768. {
  13769. name: "Macro",
  13770. height: math.unit(400, "feet")
  13771. },
  13772. {
  13773. name: "Megamacro",
  13774. height: math.unit(50, "miles")
  13775. },
  13776. {
  13777. name: "Canon Height",
  13778. height: math.unit(200, "AU")
  13779. },
  13780. ]
  13781. ))
  13782. characterMakers.push(() => makeCharacter(
  13783. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13784. {
  13785. front: {
  13786. height: math.unit(6, "feet"),
  13787. weight: math.unit(72, "kg"),
  13788. name: "Front",
  13789. image: {
  13790. source: "./media/characters/sleekit/front.svg",
  13791. extra: 4693 / 4487,
  13792. bottom: 0.012
  13793. }
  13794. },
  13795. },
  13796. [
  13797. {
  13798. name: "Minimum Height",
  13799. height: math.unit(10, "meters")
  13800. },
  13801. {
  13802. name: "Smaller",
  13803. height: math.unit(25, "meters")
  13804. },
  13805. {
  13806. name: "Larger",
  13807. height: math.unit(38, "meters"),
  13808. default: true
  13809. },
  13810. {
  13811. name: "Maximum height",
  13812. height: math.unit(100, "meters")
  13813. },
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13818. {
  13819. front: {
  13820. height: math.unit(6, "feet"),
  13821. weight: math.unit(150, "lb"),
  13822. name: "Front",
  13823. image: {
  13824. source: "./media/characters/nillia/front.svg",
  13825. extra: 2195 / 2037,
  13826. bottom: 0.005
  13827. }
  13828. },
  13829. back: {
  13830. height: math.unit(6, "feet"),
  13831. weight: math.unit(150, "lb"),
  13832. name: "Back",
  13833. image: {
  13834. source: "./media/characters/nillia/back.svg",
  13835. extra: 2195 / 2037,
  13836. bottom: 0.005
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Canon Height",
  13843. height: math.unit(489, "feet"),
  13844. default: true
  13845. }
  13846. ]
  13847. ))
  13848. characterMakers.push(() => makeCharacter(
  13849. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13850. {
  13851. front: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Front",
  13855. image: {
  13856. source: "./media/characters/mesmyriza/front.svg",
  13857. extra: 2067 / 1784,
  13858. bottom: 0.035
  13859. }
  13860. },
  13861. foot: {
  13862. height: math.unit(6 / (250 / 35), "feet"),
  13863. name: "Foot",
  13864. image: {
  13865. source: "./media/characters/mesmyriza/foot.svg"
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Macro",
  13872. height: math.unit(457, "meters"),
  13873. default: true
  13874. },
  13875. {
  13876. name: "Megamacro",
  13877. height: math.unit(8, "megameters")
  13878. },
  13879. ]
  13880. ))
  13881. characterMakers.push(() => makeCharacter(
  13882. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13883. {
  13884. front: {
  13885. height: math.unit(6, "feet"),
  13886. weight: math.unit(250, "lb"),
  13887. name: "Front",
  13888. image: {
  13889. source: "./media/characters/saudade/front.svg",
  13890. extra: 1172 / 1139,
  13891. bottom: 0.035
  13892. }
  13893. },
  13894. },
  13895. [
  13896. {
  13897. name: "Micro",
  13898. height: math.unit(3, "inches")
  13899. },
  13900. {
  13901. name: "Normal",
  13902. height: math.unit(6, "feet"),
  13903. default: true
  13904. },
  13905. {
  13906. name: "Macro",
  13907. height: math.unit(50, "feet")
  13908. },
  13909. {
  13910. name: "Megamacro",
  13911. height: math.unit(2800, "feet")
  13912. },
  13913. ]
  13914. ))
  13915. characterMakers.push(() => makeCharacter(
  13916. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13917. {
  13918. front: {
  13919. height: math.unit(5 + 4 / 12, "feet"),
  13920. weight: math.unit(100, "lb"),
  13921. name: "Front",
  13922. image: {
  13923. source: "./media/characters/keireer/front.svg",
  13924. extra: 716 / 666,
  13925. bottom: 0.05
  13926. }
  13927. },
  13928. },
  13929. [
  13930. {
  13931. name: "Normal",
  13932. height: math.unit(5 + 4 / 12, "feet"),
  13933. default: true
  13934. },
  13935. ]
  13936. ))
  13937. characterMakers.push(() => makeCharacter(
  13938. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13939. {
  13940. front: {
  13941. height: math.unit(6, "feet"),
  13942. weight: math.unit(90, "kg"),
  13943. name: "Front",
  13944. image: {
  13945. source: "./media/characters/mirja/front.svg",
  13946. extra: 1789 / 1683,
  13947. bottom: 0.05
  13948. }
  13949. },
  13950. frontDressed: {
  13951. height: math.unit(6, "feet"),
  13952. weight: math.unit(90, "lb"),
  13953. name: "Front (Dressed)",
  13954. image: {
  13955. source: "./media/characters/mirja/front-dressed.svg",
  13956. extra: 1789 / 1683,
  13957. bottom: 0.05
  13958. }
  13959. },
  13960. back: {
  13961. height: math.unit(6, "feet"),
  13962. weight: math.unit(90, "lb"),
  13963. name: "Back",
  13964. image: {
  13965. source: "./media/characters/mirja/back.svg",
  13966. extra: 953 / 917,
  13967. bottom: 0.017
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "\"Incognito\"",
  13974. height: math.unit(3, "meters")
  13975. },
  13976. {
  13977. name: "Strolling Size",
  13978. height: math.unit(15, "km")
  13979. },
  13980. {
  13981. name: "Larger Strolling Size",
  13982. height: math.unit(400, "km")
  13983. },
  13984. {
  13985. name: "Preferred Size",
  13986. height: math.unit(5000, "km")
  13987. },
  13988. {
  13989. name: "True Size",
  13990. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13991. default: true
  13992. },
  13993. ]
  13994. ))
  13995. characterMakers.push(() => makeCharacter(
  13996. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13997. {
  13998. front: {
  13999. height: math.unit(15, "feet"),
  14000. weight: math.unit(880, "kg"),
  14001. name: "Front",
  14002. image: {
  14003. source: "./media/characters/nightraver/front.svg",
  14004. extra: 2444 / 2160,
  14005. bottom: 0.027
  14006. }
  14007. },
  14008. back: {
  14009. height: math.unit(15, "feet"),
  14010. weight: math.unit(880, "kg"),
  14011. name: "Back",
  14012. image: {
  14013. source: "./media/characters/nightraver/back.svg",
  14014. extra: 2309 / 2180,
  14015. bottom: 0.005
  14016. }
  14017. },
  14018. sole: {
  14019. height: math.unit(2.878, "feet"),
  14020. name: "Sole",
  14021. image: {
  14022. source: "./media/characters/nightraver/sole.svg"
  14023. }
  14024. },
  14025. foot: {
  14026. height: math.unit(2.285, "feet"),
  14027. name: "Foot",
  14028. image: {
  14029. source: "./media/characters/nightraver/foot.svg"
  14030. }
  14031. },
  14032. maw: {
  14033. height: math.unit(2.67, "feet"),
  14034. name: "Maw",
  14035. image: {
  14036. source: "./media/characters/nightraver/maw.svg"
  14037. }
  14038. },
  14039. },
  14040. [
  14041. {
  14042. name: "Micro",
  14043. height: math.unit(1, "cm")
  14044. },
  14045. {
  14046. name: "Normal",
  14047. height: math.unit(15, "feet"),
  14048. default: true
  14049. },
  14050. {
  14051. name: "Macro",
  14052. height: math.unit(300, "feet")
  14053. },
  14054. {
  14055. name: "Megamacro",
  14056. height: math.unit(300, "miles")
  14057. },
  14058. {
  14059. name: "Gigamacro",
  14060. height: math.unit(10000, "miles")
  14061. },
  14062. ]
  14063. ))
  14064. characterMakers.push(() => makeCharacter(
  14065. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14066. {
  14067. side: {
  14068. height: math.unit(2, "inches"),
  14069. weight: math.unit(5, "grams"),
  14070. name: "Side",
  14071. image: {
  14072. source: "./media/characters/arc/side.svg"
  14073. }
  14074. },
  14075. },
  14076. [
  14077. {
  14078. name: "Micro",
  14079. height: math.unit(2, "inches"),
  14080. default: true
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14086. {
  14087. front: {
  14088. height: math.unit(1.1938, "meters"),
  14089. weight: math.unit(54, "kg"),
  14090. name: "Front",
  14091. image: {
  14092. source: "./media/characters/nebula-shahar/front.svg",
  14093. extra: 1642 / 1436,
  14094. bottom: 0.06
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Megamicro",
  14101. height: math.unit(0.3, "mm")
  14102. },
  14103. {
  14104. name: "Micro",
  14105. height: math.unit(3, "cm")
  14106. },
  14107. {
  14108. name: "Normal",
  14109. height: math.unit(138, "cm"),
  14110. default: true
  14111. },
  14112. {
  14113. name: "Macro",
  14114. height: math.unit(30, "m")
  14115. },
  14116. ]
  14117. ))
  14118. characterMakers.push(() => makeCharacter(
  14119. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14120. {
  14121. front: {
  14122. height: math.unit(5.24, "feet"),
  14123. weight: math.unit(150, "lb"),
  14124. name: "Front",
  14125. image: {
  14126. source: "./media/characters/shayla/front.svg",
  14127. extra: 1512 / 1414,
  14128. bottom: 0.01
  14129. }
  14130. },
  14131. back: {
  14132. height: math.unit(5.24, "feet"),
  14133. weight: math.unit(150, "lb"),
  14134. name: "Back",
  14135. image: {
  14136. source: "./media/characters/shayla/back.svg",
  14137. extra: 1512 / 1414
  14138. }
  14139. },
  14140. hand: {
  14141. height: math.unit(0.7781496062992126, "feet"),
  14142. name: "Hand",
  14143. image: {
  14144. source: "./media/characters/shayla/hand.svg"
  14145. }
  14146. },
  14147. foot: {
  14148. height: math.unit(1.4206036745406823, "feet"),
  14149. name: "Foot",
  14150. image: {
  14151. source: "./media/characters/shayla/foot.svg"
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Micro",
  14158. height: math.unit(0.32, "feet")
  14159. },
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(5.24, "feet"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Macro",
  14167. height: math.unit(492.12, "feet")
  14168. },
  14169. {
  14170. name: "Megamacro",
  14171. height: math.unit(186.41, "miles")
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(2.2, "m"),
  14180. weight: math.unit(120, "kg"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/pia-jr/front.svg",
  14184. extra: 1000 / 970,
  14185. bottom: 0.035
  14186. }
  14187. },
  14188. hand: {
  14189. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14190. name: "Hand",
  14191. image: {
  14192. source: "./media/characters/pia-jr/hand.svg"
  14193. }
  14194. },
  14195. paw: {
  14196. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14197. name: "Paw",
  14198. image: {
  14199. source: "./media/characters/pia-jr/paw.svg"
  14200. }
  14201. },
  14202. },
  14203. [
  14204. {
  14205. name: "Micro",
  14206. height: math.unit(1.2, "cm")
  14207. },
  14208. {
  14209. name: "Normal",
  14210. height: math.unit(2.2, "m"),
  14211. default: true
  14212. },
  14213. {
  14214. name: "Macro",
  14215. height: math.unit(180, "m")
  14216. },
  14217. {
  14218. name: "Megamacro",
  14219. height: math.unit(420, "km")
  14220. },
  14221. ]
  14222. ))
  14223. characterMakers.push(() => makeCharacter(
  14224. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14225. {
  14226. front: {
  14227. height: math.unit(2, "m"),
  14228. weight: math.unit(115, "kg"),
  14229. name: "Front",
  14230. image: {
  14231. source: "./media/characters/pia-sr/front.svg",
  14232. extra: 760 / 730,
  14233. bottom: 0.015
  14234. }
  14235. },
  14236. back: {
  14237. height: math.unit(2, "m"),
  14238. weight: math.unit(115, "kg"),
  14239. name: "Back",
  14240. image: {
  14241. source: "./media/characters/pia-sr/back.svg",
  14242. extra: 760 / 730,
  14243. bottom: 0.01
  14244. }
  14245. },
  14246. hand: {
  14247. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14248. name: "Hand",
  14249. image: {
  14250. source: "./media/characters/pia-sr/hand.svg"
  14251. }
  14252. },
  14253. foot: {
  14254. height: math.unit(1.83, "feet"),
  14255. name: "Foot",
  14256. image: {
  14257. source: "./media/characters/pia-sr/foot.svg"
  14258. }
  14259. },
  14260. },
  14261. [
  14262. {
  14263. name: "Micro",
  14264. height: math.unit(88, "mm")
  14265. },
  14266. {
  14267. name: "Normal",
  14268. height: math.unit(2, "m"),
  14269. default: true
  14270. },
  14271. {
  14272. name: "Macro",
  14273. height: math.unit(200, "m")
  14274. },
  14275. {
  14276. name: "Megamacro",
  14277. height: math.unit(420, "km")
  14278. },
  14279. ]
  14280. ))
  14281. characterMakers.push(() => makeCharacter(
  14282. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14283. {
  14284. front: {
  14285. height: math.unit(8 + 2 / 12, "feet"),
  14286. weight: math.unit(300, "lb"),
  14287. name: "Front",
  14288. image: {
  14289. source: "./media/characters/kibibyte/front.svg",
  14290. extra: 2221 / 2098,
  14291. bottom: 0.04
  14292. }
  14293. },
  14294. },
  14295. [
  14296. {
  14297. name: "Normal",
  14298. height: math.unit(8 + 2 / 12, "feet"),
  14299. default: true
  14300. },
  14301. {
  14302. name: "Socialable Macro",
  14303. height: math.unit(50, "feet")
  14304. },
  14305. {
  14306. name: "Macro",
  14307. height: math.unit(300, "feet")
  14308. },
  14309. {
  14310. name: "Megamacro",
  14311. height: math.unit(500, "miles")
  14312. },
  14313. ]
  14314. ))
  14315. characterMakers.push(() => makeCharacter(
  14316. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14317. {
  14318. front: {
  14319. height: math.unit(6, "feet"),
  14320. weight: math.unit(150, "lb"),
  14321. name: "Front",
  14322. image: {
  14323. source: "./media/characters/felix/front.svg",
  14324. extra: 762 / 722,
  14325. bottom: 0.02
  14326. }
  14327. },
  14328. frontClothed: {
  14329. height: math.unit(6, "feet"),
  14330. weight: math.unit(150, "lb"),
  14331. name: "Front (Clothed)",
  14332. image: {
  14333. source: "./media/characters/felix/front-clothed.svg",
  14334. extra: 762 / 722,
  14335. bottom: 0.02
  14336. }
  14337. },
  14338. },
  14339. [
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(6 + 8 / 12, "feet"),
  14343. default: true
  14344. },
  14345. {
  14346. name: "Macro",
  14347. height: math.unit(2600, "feet")
  14348. },
  14349. {
  14350. name: "Megamacro",
  14351. height: math.unit(450, "miles")
  14352. },
  14353. ]
  14354. ))
  14355. characterMakers.push(() => makeCharacter(
  14356. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14357. {
  14358. front: {
  14359. height: math.unit(6 + 1 / 12, "feet"),
  14360. weight: math.unit(250, "lb"),
  14361. name: "Front",
  14362. image: {
  14363. source: "./media/characters/tobo/front.svg",
  14364. extra: 608 / 586,
  14365. bottom: 0.023
  14366. }
  14367. },
  14368. back: {
  14369. height: math.unit(6 + 1 / 12, "feet"),
  14370. weight: math.unit(250, "lb"),
  14371. name: "Back",
  14372. image: {
  14373. source: "./media/characters/tobo/back.svg",
  14374. extra: 608 / 586
  14375. }
  14376. },
  14377. },
  14378. [
  14379. {
  14380. name: "Nano",
  14381. height: math.unit(2, "nm")
  14382. },
  14383. {
  14384. name: "Megamicro",
  14385. height: math.unit(0.1, "mm")
  14386. },
  14387. {
  14388. name: "Micro",
  14389. height: math.unit(1, "inch"),
  14390. default: true
  14391. },
  14392. {
  14393. name: "Human-sized",
  14394. height: math.unit(6 + 1 / 12, "feet")
  14395. },
  14396. {
  14397. name: "Macro",
  14398. height: math.unit(250, "feet")
  14399. },
  14400. {
  14401. name: "Megamacro",
  14402. height: math.unit(75, "miles")
  14403. },
  14404. {
  14405. name: "Texas-sized",
  14406. height: math.unit(750, "miles")
  14407. },
  14408. {
  14409. name: "Teramacro",
  14410. height: math.unit(50000, "miles")
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14416. {
  14417. front: {
  14418. height: math.unit(6, "feet"),
  14419. weight: math.unit(269, "lb"),
  14420. name: "Front",
  14421. image: {
  14422. source: "./media/characters/danny-kapowsky/front.svg",
  14423. extra: 766 / 736,
  14424. bottom: 0.044
  14425. }
  14426. },
  14427. back: {
  14428. height: math.unit(6, "feet"),
  14429. weight: math.unit(269, "lb"),
  14430. name: "Back",
  14431. image: {
  14432. source: "./media/characters/danny-kapowsky/back.svg",
  14433. extra: 797 / 760,
  14434. bottom: 0.025
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Macro",
  14441. height: math.unit(150, "feet"),
  14442. default: true
  14443. },
  14444. {
  14445. name: "Macro+",
  14446. height: math.unit(200, "feet")
  14447. },
  14448. {
  14449. name: "Macro++",
  14450. height: math.unit(300, "feet")
  14451. },
  14452. {
  14453. name: "Macro+++",
  14454. height: math.unit(400, "feet")
  14455. },
  14456. ]
  14457. ))
  14458. characterMakers.push(() => makeCharacter(
  14459. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14460. {
  14461. side: {
  14462. height: math.unit(6, "feet"),
  14463. weight: math.unit(170, "lb"),
  14464. name: "Side",
  14465. image: {
  14466. source: "./media/characters/finn/side.svg",
  14467. extra: 1953 / 1807,
  14468. bottom: 0.057
  14469. }
  14470. },
  14471. },
  14472. [
  14473. {
  14474. name: "Megamacro",
  14475. height: math.unit(14445, "feet"),
  14476. default: true
  14477. },
  14478. ]
  14479. ))
  14480. characterMakers.push(() => makeCharacter(
  14481. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14482. {
  14483. front: {
  14484. height: math.unit(5 + 6 / 12, "feet"),
  14485. weight: math.unit(125, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/roy/front.svg",
  14489. extra: 1,
  14490. bottom: 0.11
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Micro",
  14497. height: math.unit(3, "inches"),
  14498. default: true
  14499. },
  14500. {
  14501. name: "Normal",
  14502. height: math.unit(5 + 6 / 12, "feet")
  14503. },
  14504. {
  14505. name: "Lesser Macro",
  14506. height: math.unit(60, "feet")
  14507. },
  14508. {
  14509. name: "Greater Macro",
  14510. height: math.unit(120, "feet")
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14516. {
  14517. front: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(100, "lb"),
  14520. name: "Front",
  14521. image: {
  14522. source: "./media/characters/aevsivs/front.svg",
  14523. extra: 1,
  14524. bottom: 0.03
  14525. }
  14526. },
  14527. back: {
  14528. height: math.unit(6, "feet"),
  14529. weight: math.unit(100, "lb"),
  14530. name: "Back",
  14531. image: {
  14532. source: "./media/characters/aevsivs/back.svg"
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Micro",
  14539. height: math.unit(2, "inches"),
  14540. default: true
  14541. },
  14542. {
  14543. name: "Normal",
  14544. height: math.unit(5, "feet")
  14545. },
  14546. ]
  14547. ))
  14548. characterMakers.push(() => makeCharacter(
  14549. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14550. {
  14551. front: {
  14552. height: math.unit(5 + 7 / 12, "feet"),
  14553. weight: math.unit(159, "lb"),
  14554. name: "Front",
  14555. image: {
  14556. source: "./media/characters/hildegard/front.svg",
  14557. extra: 289 / 269,
  14558. bottom: 7.63 / 297.8
  14559. }
  14560. },
  14561. back: {
  14562. height: math.unit(5 + 7 / 12, "feet"),
  14563. weight: math.unit(159, "lb"),
  14564. name: "Back",
  14565. image: {
  14566. source: "./media/characters/hildegard/back.svg",
  14567. extra: 280 / 260,
  14568. bottom: 2.3 / 282
  14569. }
  14570. },
  14571. },
  14572. [
  14573. {
  14574. name: "Normal",
  14575. height: math.unit(5 + 7 / 12, "feet"),
  14576. default: true
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14582. {
  14583. bernard: {
  14584. height: math.unit(2 + 7 / 12, "feet"),
  14585. weight: math.unit(66, "lb"),
  14586. name: "Bernard",
  14587. rename: true,
  14588. image: {
  14589. source: "./media/characters/bernard-wilder/bernard.svg",
  14590. extra: 192 / 128,
  14591. bottom: 0.05
  14592. }
  14593. },
  14594. wilder: {
  14595. height: math.unit(5 + 8 / 12, "feet"),
  14596. weight: math.unit(143, "lb"),
  14597. name: "Wilder",
  14598. rename: true,
  14599. image: {
  14600. source: "./media/characters/bernard-wilder/wilder.svg",
  14601. extra: 361 / 312,
  14602. bottom: 0.02
  14603. }
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(2 + 7 / 12, "feet"),
  14610. default: true
  14611. },
  14612. ]
  14613. ))
  14614. characterMakers.push(() => makeCharacter(
  14615. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14616. {
  14617. anthro: {
  14618. height: math.unit(6 + 1 / 12, "feet"),
  14619. weight: math.unit(155, "lb"),
  14620. name: "Anthro",
  14621. image: {
  14622. source: "./media/characters/hearth/anthro.svg",
  14623. extra: 260 / 250,
  14624. bottom: 0.02
  14625. }
  14626. },
  14627. feral: {
  14628. height: math.unit(3.78, "feet"),
  14629. weight: math.unit(35, "kg"),
  14630. name: "Feral",
  14631. image: {
  14632. source: "./media/characters/hearth/feral.svg",
  14633. extra: 153 / 135,
  14634. bottom: 0.03
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Normal",
  14641. height: math.unit(6 + 1 / 12, "feet"),
  14642. default: true
  14643. },
  14644. ]
  14645. ))
  14646. characterMakers.push(() => makeCharacter(
  14647. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14648. {
  14649. front: {
  14650. height: math.unit(6, "feet"),
  14651. weight: math.unit(182, "lb"),
  14652. name: "Front",
  14653. image: {
  14654. source: "./media/characters/ingrid/front.svg",
  14655. extra: 294 / 268,
  14656. bottom: 0.027
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(6, "feet"),
  14664. default: true
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14670. {
  14671. eevee: {
  14672. height: math.unit(2 + 10 / 12, "feet"),
  14673. weight: math.unit(86, "lb"),
  14674. name: "Malgam",
  14675. image: {
  14676. source: "./media/characters/malgam/eevee.svg",
  14677. extra: 218 / 180,
  14678. bottom: 0.2
  14679. }
  14680. },
  14681. sylveon: {
  14682. height: math.unit(4, "feet"),
  14683. weight: math.unit(101, "lb"),
  14684. name: "Future Malgam",
  14685. rename: true,
  14686. image: {
  14687. source: "./media/characters/malgam/sylveon.svg",
  14688. extra: 371 / 325,
  14689. bottom: 0.015
  14690. }
  14691. },
  14692. gigantamax: {
  14693. height: math.unit(50, "feet"),
  14694. name: "Gigantamax Malgam",
  14695. rename: true,
  14696. image: {
  14697. source: "./media/characters/malgam/gigantamax.svg"
  14698. }
  14699. },
  14700. },
  14701. [
  14702. {
  14703. name: "Normal",
  14704. height: math.unit(2 + 10 / 12, "feet"),
  14705. default: true
  14706. },
  14707. ]
  14708. ))
  14709. characterMakers.push(() => makeCharacter(
  14710. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14711. {
  14712. front: {
  14713. height: math.unit(5 + 11 / 12, "feet"),
  14714. weight: math.unit(188, "lb"),
  14715. name: "Front",
  14716. image: {
  14717. source: "./media/characters/fleur/front.svg",
  14718. extra: 309 / 283,
  14719. bottom: 0.007
  14720. }
  14721. },
  14722. },
  14723. [
  14724. {
  14725. name: "Normal",
  14726. height: math.unit(5 + 11 / 12, "feet"),
  14727. default: true
  14728. },
  14729. ]
  14730. ))
  14731. characterMakers.push(() => makeCharacter(
  14732. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14733. {
  14734. front: {
  14735. height: math.unit(5 + 4 / 12, "feet"),
  14736. weight: math.unit(122, "lb"),
  14737. name: "Front",
  14738. image: {
  14739. source: "./media/characters/jude/front.svg",
  14740. extra: 288 / 273,
  14741. bottom: 0.03
  14742. }
  14743. },
  14744. },
  14745. [
  14746. {
  14747. name: "Normal",
  14748. height: math.unit(5 + 4 / 12, "feet"),
  14749. default: true
  14750. },
  14751. ]
  14752. ))
  14753. characterMakers.push(() => makeCharacter(
  14754. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14755. {
  14756. front: {
  14757. height: math.unit(5 + 11 / 12, "feet"),
  14758. weight: math.unit(190, "lb"),
  14759. name: "Front",
  14760. image: {
  14761. source: "./media/characters/seara/front.svg",
  14762. extra: 1,
  14763. bottom: 0.05
  14764. }
  14765. },
  14766. },
  14767. [
  14768. {
  14769. name: "Normal",
  14770. height: math.unit(5 + 11 / 12, "feet"),
  14771. default: true
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14777. {
  14778. front: {
  14779. height: math.unit(16 + 5 / 12, "feet"),
  14780. weight: math.unit(524, "lb"),
  14781. name: "Front",
  14782. image: {
  14783. source: "./media/characters/caspian/front.svg",
  14784. extra: 1,
  14785. bottom: 0.04
  14786. }
  14787. },
  14788. },
  14789. [
  14790. {
  14791. name: "Normal",
  14792. height: math.unit(16 + 5 / 12, "feet"),
  14793. default: true
  14794. },
  14795. ]
  14796. ))
  14797. characterMakers.push(() => makeCharacter(
  14798. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14799. {
  14800. front: {
  14801. height: math.unit(5 + 7 / 12, "feet"),
  14802. weight: math.unit(170, "lb"),
  14803. name: "Front",
  14804. image: {
  14805. source: "./media/characters/mika/front.svg",
  14806. extra: 1,
  14807. bottom: 0.016
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(5 + 7 / 12, "feet"),
  14815. default: true
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14821. {
  14822. front: {
  14823. height: math.unit(6 + 2 / 12, "feet"),
  14824. weight: math.unit(268, "lb"),
  14825. name: "Front",
  14826. image: {
  14827. source: "./media/characters/sol/front.svg",
  14828. extra: 247 / 231,
  14829. bottom: 0.05
  14830. }
  14831. },
  14832. },
  14833. [
  14834. {
  14835. name: "Normal",
  14836. height: math.unit(6 + 2 / 12, "feet"),
  14837. default: true
  14838. },
  14839. ]
  14840. ))
  14841. characterMakers.push(() => makeCharacter(
  14842. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14843. {
  14844. buizel: {
  14845. height: math.unit(2 + 5 / 12, "feet"),
  14846. weight: math.unit(87, "lb"),
  14847. name: "Buizel",
  14848. image: {
  14849. source: "./media/characters/umiko/buizel.svg",
  14850. extra: 172 / 157,
  14851. bottom: 0.01
  14852. }
  14853. },
  14854. floatzel: {
  14855. height: math.unit(5 + 9 / 12, "feet"),
  14856. weight: math.unit(250, "lb"),
  14857. name: "Floatzel",
  14858. image: {
  14859. source: "./media/characters/umiko/floatzel.svg",
  14860. extra: 262 / 248
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(2 + 5 / 12, "feet"),
  14868. default: true
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(6 + 2 / 12, "feet"),
  14877. weight: math.unit(146, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/iliac/front.svg",
  14881. extra: 389 / 365,
  14882. bottom: 0.035
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(6 + 2 / 12, "feet"),
  14890. default: true
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(6, "feet"),
  14899. weight: math.unit(170, "lb"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/topaz/front.svg",
  14903. extra: 317 / 303,
  14904. bottom: 0.055
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "Normal",
  14911. height: math.unit(6, "feet"),
  14912. default: true
  14913. },
  14914. ]
  14915. ))
  14916. characterMakers.push(() => makeCharacter(
  14917. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14918. {
  14919. front: {
  14920. height: math.unit(5 + 11 / 12, "feet"),
  14921. weight: math.unit(144, "lb"),
  14922. name: "Front",
  14923. image: {
  14924. source: "./media/characters/gabriel/front.svg",
  14925. extra: 285 / 262,
  14926. bottom: 0.004
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(5 + 11 / 12, "feet"),
  14934. default: true
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14940. {
  14941. side: {
  14942. height: math.unit(6 + 5 / 12, "feet"),
  14943. weight: math.unit(300, "lb"),
  14944. name: "Side",
  14945. image: {
  14946. source: "./media/characters/tempest-suicune/side.svg",
  14947. extra: 195 / 154,
  14948. bottom: 0.04
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Normal",
  14955. height: math.unit(6 + 5 / 12, "feet"),
  14956. default: true
  14957. },
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14962. {
  14963. front: {
  14964. height: math.unit(7 + 2 / 12, "feet"),
  14965. weight: math.unit(322, "lb"),
  14966. name: "Front",
  14967. image: {
  14968. source: "./media/characters/vulcan/front.svg",
  14969. extra: 154 / 147,
  14970. bottom: 0.04
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(7 + 2 / 12, "feet"),
  14978. default: true
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14984. {
  14985. front: {
  14986. height: math.unit(5 + 10 / 12, "feet"),
  14987. weight: math.unit(264, "lb"),
  14988. name: "Front",
  14989. image: {
  14990. source: "./media/characters/gault/front.svg",
  14991. extra: 161 / 140,
  14992. bottom: 0.028
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Normal",
  14999. height: math.unit(5 + 10 / 12, "feet"),
  15000. default: true
  15001. },
  15002. ]
  15003. ))
  15004. characterMakers.push(() => makeCharacter(
  15005. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15006. {
  15007. front: {
  15008. height: math.unit(6, "feet"),
  15009. weight: math.unit(150, "lb"),
  15010. name: "Front",
  15011. image: {
  15012. source: "./media/characters/shard/front.svg",
  15013. extra: 273 / 238,
  15014. bottom: 0.02
  15015. }
  15016. },
  15017. },
  15018. [
  15019. {
  15020. name: "Normal",
  15021. height: math.unit(3 + 6 / 12, "feet"),
  15022. default: true
  15023. },
  15024. ]
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15028. {
  15029. front: {
  15030. height: math.unit(5 + 11 / 12, "feet"),
  15031. weight: math.unit(146, "lb"),
  15032. name: "Front",
  15033. image: {
  15034. source: "./media/characters/ashe/front.svg",
  15035. extra: 400 / 373,
  15036. bottom: 0.01
  15037. }
  15038. },
  15039. },
  15040. [
  15041. {
  15042. name: "Normal",
  15043. height: math.unit(5 + 11 / 12, "feet"),
  15044. default: true
  15045. },
  15046. ]
  15047. ))
  15048. characterMakers.push(() => makeCharacter(
  15049. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15050. {
  15051. front: {
  15052. height: math.unit(5 + 5 / 12, "feet"),
  15053. weight: math.unit(135, "lb"),
  15054. name: "Front",
  15055. image: {
  15056. source: "./media/characters/beatrix/front.svg",
  15057. extra: 392 / 379,
  15058. bottom: 0.01
  15059. }
  15060. },
  15061. },
  15062. [
  15063. {
  15064. name: "Normal",
  15065. height: math.unit(6, "feet"),
  15066. default: true
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15072. {
  15073. front: {
  15074. height: math.unit(6, "feet"),
  15075. weight: math.unit(150, "lb"),
  15076. name: "Front",
  15077. image: {
  15078. source: "./media/characters/ignatius/front.svg",
  15079. extra: 245 / 222,
  15080. bottom: 0.01
  15081. }
  15082. },
  15083. },
  15084. [
  15085. {
  15086. name: "Normal",
  15087. height: math.unit(5 + 5 / 12, "feet"),
  15088. default: true
  15089. },
  15090. ]
  15091. ))
  15092. characterMakers.push(() => makeCharacter(
  15093. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15094. {
  15095. front: {
  15096. height: math.unit(6 + 2 / 12, "feet"),
  15097. weight: math.unit(138, "lb"),
  15098. name: "Front",
  15099. image: {
  15100. source: "./media/characters/mei-li/front.svg",
  15101. extra: 237 / 229,
  15102. bottom: 0.03
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Normal",
  15109. height: math.unit(6 + 2 / 12, "feet"),
  15110. default: true
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15116. {
  15117. front: {
  15118. height: math.unit(2 + 4 / 12, "feet"),
  15119. weight: math.unit(62, "lb"),
  15120. name: "Front",
  15121. image: {
  15122. source: "./media/characters/puru/front.svg",
  15123. extra: 206 / 149,
  15124. bottom: 0.06
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Normal",
  15131. height: math.unit(2 + 4 / 12, "feet"),
  15132. default: true
  15133. },
  15134. ]
  15135. ))
  15136. characterMakers.push(() => makeCharacter(
  15137. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15138. {
  15139. anthro: {
  15140. height: math.unit(5 + 8/12, "feet"),
  15141. weight: math.unit(200, "lb"),
  15142. energyNeed: math.unit(2000, "kcal"),
  15143. name: "Anthro",
  15144. image: {
  15145. source: "./media/characters/kee/anthro.svg",
  15146. extra: 3251/3184,
  15147. bottom: 250/3501
  15148. }
  15149. },
  15150. taur: {
  15151. height: math.unit(11, "feet"),
  15152. weight: math.unit(500, "lb"),
  15153. energyNeed: math.unit(5000, "kcal"),
  15154. name: "Taur",
  15155. image: {
  15156. source: "./media/characters/kee/taur.svg",
  15157. extra: 1362/1320,
  15158. bottom: 83/1445
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Normal",
  15165. height: math.unit(5 + 8/12, "feet"),
  15166. default: true
  15167. },
  15168. {
  15169. name: "Macro",
  15170. height: math.unit(35, "feet")
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15176. {
  15177. anthro: {
  15178. height: math.unit(7, "feet"),
  15179. weight: math.unit(190, "lb"),
  15180. name: "Anthro",
  15181. image: {
  15182. source: "./media/characters/cobalt-dracha/anthro.svg",
  15183. extra: 231 / 225,
  15184. bottom: 0.04
  15185. }
  15186. },
  15187. feral: {
  15188. height: math.unit(9 + 7 / 12, "feet"),
  15189. weight: math.unit(294, "lb"),
  15190. name: "Feral",
  15191. image: {
  15192. source: "./media/characters/cobalt-dracha/feral.svg",
  15193. extra: 692 / 633,
  15194. bottom: 0.05
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Normal",
  15201. height: math.unit(7, "feet"),
  15202. default: true
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15208. {
  15209. fallen: {
  15210. height: math.unit(11 + 8 / 12, "feet"),
  15211. weight: math.unit(485, "lb"),
  15212. name: "Java (Fallen)",
  15213. rename: true,
  15214. image: {
  15215. source: "./media/characters/java/fallen.svg",
  15216. extra: 226 / 208,
  15217. bottom: 0.005
  15218. }
  15219. },
  15220. godkin: {
  15221. height: math.unit(10 + 6 / 12, "feet"),
  15222. weight: math.unit(328, "lb"),
  15223. name: "Java (Godkin)",
  15224. rename: true,
  15225. image: {
  15226. source: "./media/characters/java/godkin.svg",
  15227. extra: 270 / 262,
  15228. bottom: 0.02
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Normal",
  15235. height: math.unit(11 + 8 / 12, "feet"),
  15236. default: true
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15242. {
  15243. front: {
  15244. height: math.unit(7 + 8 / 12, "feet"),
  15245. weight: math.unit(320, "lb"),
  15246. name: "Front",
  15247. image: {
  15248. source: "./media/characters/skoll/front.svg",
  15249. extra: 232 / 220,
  15250. bottom: 0.02
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(7 + 8 / 12, "feet"),
  15258. default: true
  15259. },
  15260. ]
  15261. ))
  15262. characterMakers.push(() => makeCharacter(
  15263. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15264. {
  15265. front: {
  15266. height: math.unit(5 + 9 / 12, "feet"),
  15267. weight: math.unit(170, "lb"),
  15268. name: "Front",
  15269. image: {
  15270. source: "./media/characters/purna/front.svg",
  15271. extra: 239 / 229,
  15272. bottom: 0.01
  15273. }
  15274. },
  15275. },
  15276. [
  15277. {
  15278. name: "Normal",
  15279. height: math.unit(5 + 9 / 12, "feet"),
  15280. default: true
  15281. },
  15282. ]
  15283. ))
  15284. characterMakers.push(() => makeCharacter(
  15285. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15286. {
  15287. front: {
  15288. height: math.unit(5 + 9 / 12, "feet"),
  15289. weight: math.unit(142, "lb"),
  15290. name: "Front",
  15291. image: {
  15292. source: "./media/characters/kuva/front.svg",
  15293. extra: 281 / 271,
  15294. bottom: 0.006
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Normal",
  15301. height: math.unit(5 + 9 / 12, "feet"),
  15302. default: true
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15308. {
  15309. anthro: {
  15310. height: math.unit(9 + 2 / 12, "feet"),
  15311. weight: math.unit(270, "lb"),
  15312. name: "Anthro",
  15313. image: {
  15314. source: "./media/characters/embra/anthro.svg",
  15315. extra: 200 / 187,
  15316. bottom: 0.02
  15317. }
  15318. },
  15319. feral: {
  15320. height: math.unit(18 + 8 / 12, "feet"),
  15321. weight: math.unit(576, "lb"),
  15322. name: "Feral",
  15323. image: {
  15324. source: "./media/characters/embra/feral.svg",
  15325. extra: 152 / 137,
  15326. bottom: 0.037
  15327. }
  15328. },
  15329. },
  15330. [
  15331. {
  15332. name: "Normal",
  15333. height: math.unit(9 + 2 / 12, "feet"),
  15334. default: true
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15340. {
  15341. anthro: {
  15342. height: math.unit(10 + 9 / 12, "feet"),
  15343. weight: math.unit(224, "lb"),
  15344. name: "Anthro",
  15345. image: {
  15346. source: "./media/characters/grottos/anthro.svg",
  15347. extra: 350 / 332,
  15348. bottom: 0.045
  15349. }
  15350. },
  15351. feral: {
  15352. height: math.unit(20 + 7 / 12, "feet"),
  15353. weight: math.unit(629, "lb"),
  15354. name: "Feral",
  15355. image: {
  15356. source: "./media/characters/grottos/feral.svg",
  15357. extra: 207 / 190,
  15358. bottom: 0.05
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(10 + 9 / 12, "feet"),
  15366. default: true
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15372. {
  15373. anthro: {
  15374. height: math.unit(9 + 6 / 12, "feet"),
  15375. weight: math.unit(298, "lb"),
  15376. name: "Anthro",
  15377. image: {
  15378. source: "./media/characters/frifna/anthro.svg",
  15379. extra: 282 / 269,
  15380. bottom: 0.015
  15381. }
  15382. },
  15383. feral: {
  15384. height: math.unit(16 + 2 / 12, "feet"),
  15385. weight: math.unit(624, "lb"),
  15386. name: "Feral",
  15387. image: {
  15388. source: "./media/characters/frifna/feral.svg"
  15389. }
  15390. },
  15391. },
  15392. [
  15393. {
  15394. name: "Normal",
  15395. height: math.unit(9 + 6 / 12, "feet"),
  15396. default: true
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(6 + 2 / 12, "feet"),
  15405. weight: math.unit(168, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/elise/front.svg",
  15409. extra: 276 / 271
  15410. }
  15411. },
  15412. },
  15413. [
  15414. {
  15415. name: "Normal",
  15416. height: math.unit(6 + 2 / 12, "feet"),
  15417. default: true
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15423. {
  15424. front: {
  15425. height: math.unit(5 + 10 / 12, "feet"),
  15426. weight: math.unit(210, "lb"),
  15427. name: "Front",
  15428. image: {
  15429. source: "./media/characters/glade/front.svg",
  15430. extra: 258 / 247,
  15431. bottom: 0.008
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Normal",
  15438. height: math.unit(5 + 10 / 12, "feet"),
  15439. default: true
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15445. {
  15446. front: {
  15447. height: math.unit(5 + 10 / 12, "feet"),
  15448. weight: math.unit(129, "lb"),
  15449. name: "Front",
  15450. image: {
  15451. source: "./media/characters/rina/front.svg",
  15452. extra: 266 / 255,
  15453. bottom: 0.005
  15454. }
  15455. },
  15456. },
  15457. [
  15458. {
  15459. name: "Normal",
  15460. height: math.unit(5 + 10 / 12, "feet"),
  15461. default: true
  15462. },
  15463. ]
  15464. ))
  15465. characterMakers.push(() => makeCharacter(
  15466. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15467. {
  15468. front: {
  15469. height: math.unit(6 + 1 / 12, "feet"),
  15470. weight: math.unit(192, "lb"),
  15471. name: "Front",
  15472. image: {
  15473. source: "./media/characters/veronica/front.svg",
  15474. extra: 319 / 309,
  15475. bottom: 0.005
  15476. }
  15477. },
  15478. },
  15479. [
  15480. {
  15481. name: "Normal",
  15482. height: math.unit(6 + 1 / 12, "feet"),
  15483. default: true
  15484. },
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15489. {
  15490. front: {
  15491. height: math.unit(9 + 3 / 12, "feet"),
  15492. weight: math.unit(1100, "lb"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/braxton/front.svg",
  15496. extra: 1057 / 984,
  15497. bottom: 0.05
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Normal",
  15504. height: math.unit(9 + 3 / 12, "feet")
  15505. },
  15506. {
  15507. name: "Giant",
  15508. height: math.unit(300, "feet"),
  15509. default: true
  15510. },
  15511. {
  15512. name: "Macro",
  15513. height: math.unit(700, "feet")
  15514. },
  15515. {
  15516. name: "Megamacro",
  15517. height: math.unit(6000, "feet")
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15523. {
  15524. front: {
  15525. height: math.unit(6 + 7 / 12, "feet"),
  15526. weight: math.unit(150, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/blue-feyonics/front.svg",
  15530. extra: 1403 / 1306,
  15531. bottom: 0.047
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(6 + 7 / 12, "feet"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(1.8, "meters"),
  15548. weight: math.unit(60, "kg"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/maxwell/front.svg",
  15552. extra: 2060 / 1873
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Micro",
  15559. height: math.unit(1, "mm")
  15560. },
  15561. {
  15562. name: "Normal",
  15563. height: math.unit(1.8, "meter"),
  15564. default: true
  15565. },
  15566. {
  15567. name: "Macro",
  15568. height: math.unit(30, "meters")
  15569. },
  15570. {
  15571. name: "Megamacro",
  15572. height: math.unit(10, "km")
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(6, "feet"),
  15581. weight: math.unit(150, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/jack/front.svg",
  15585. extra: 1754 / 1640,
  15586. bottom: 0.01
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Normal",
  15593. height: math.unit(80000, "feet"),
  15594. default: true
  15595. },
  15596. {
  15597. name: "Max size",
  15598. height: math.unit(10, "lightyears")
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15604. {
  15605. urban: {
  15606. height: math.unit(5, "feet"),
  15607. weight: math.unit(240, "lb"),
  15608. name: "Urban",
  15609. image: {
  15610. source: "./media/characters/cafat/urban.svg",
  15611. extra: 1223/1126,
  15612. bottom: 205/1428
  15613. }
  15614. },
  15615. summer: {
  15616. height: math.unit(5, "feet"),
  15617. weight: math.unit(240, "lb"),
  15618. name: "Summer",
  15619. image: {
  15620. source: "./media/characters/cafat/summer.svg",
  15621. extra: 1223/1126,
  15622. bottom: 205/1428
  15623. }
  15624. },
  15625. winter: {
  15626. height: math.unit(5, "feet"),
  15627. weight: math.unit(240, "lb"),
  15628. name: "Winter",
  15629. image: {
  15630. source: "./media/characters/cafat/winter.svg",
  15631. extra: 1223/1126,
  15632. bottom: 205/1428
  15633. }
  15634. },
  15635. lingerie: {
  15636. height: math.unit(5, "feet"),
  15637. weight: math.unit(240, "lb"),
  15638. name: "Lingerie",
  15639. image: {
  15640. source: "./media/characters/cafat/lingerie.svg",
  15641. extra: 1223/1126,
  15642. bottom: 205/1428
  15643. }
  15644. },
  15645. upright: {
  15646. height: math.unit(6.3, "feet"),
  15647. weight: math.unit(240, "lb"),
  15648. name: "Upright",
  15649. image: {
  15650. source: "./media/characters/cafat/upright.svg",
  15651. bottom: 0.01
  15652. }
  15653. },
  15654. uprightFull: {
  15655. height: math.unit(6.3, "feet"),
  15656. weight: math.unit(240, "lb"),
  15657. name: "Upright (Full)",
  15658. image: {
  15659. source: "./media/characters/cafat/upright-full.svg",
  15660. bottom: 0.01
  15661. }
  15662. },
  15663. },
  15664. [
  15665. {
  15666. name: "Small",
  15667. height: math.unit(5, "feet"),
  15668. default: true
  15669. },
  15670. {
  15671. name: "Large",
  15672. height: math.unit(13, "feet")
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15678. {
  15679. front: {
  15680. height: math.unit(6, "feet"),
  15681. weight: math.unit(150, "lb"),
  15682. name: "Front",
  15683. image: {
  15684. source: "./media/characters/verin-raharra/front.svg",
  15685. extra: 5019 / 4835,
  15686. bottom: 0.023
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Normal",
  15693. height: math.unit(7 + 5 / 12, "feet"),
  15694. default: true
  15695. },
  15696. {
  15697. name: "Upsized",
  15698. height: math.unit(20, "feet")
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15704. {
  15705. front: {
  15706. height: math.unit(7, "feet"),
  15707. weight: math.unit(230, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/nakata/front.svg",
  15711. extra: 1.005,
  15712. bottom: 0.01
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Normal",
  15719. height: math.unit(7, "feet"),
  15720. default: true
  15721. },
  15722. {
  15723. name: "Big",
  15724. height: math.unit(14, "feet")
  15725. },
  15726. {
  15727. name: "Macro",
  15728. height: math.unit(400, "feet")
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(4.91, "feet"),
  15737. weight: math.unit(100, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/lily/front.svg",
  15741. extra: 1585 / 1415,
  15742. bottom: 0.02
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(4.91, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15756. {
  15757. laying: {
  15758. height: math.unit(4 + 4 / 12, "feet"),
  15759. weight: math.unit(600, "lb"),
  15760. name: "Laying",
  15761. image: {
  15762. source: "./media/characters/sheila/laying.svg",
  15763. extra: 1333 / 1265,
  15764. bottom: 0.16
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(4 + 4 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(6, "feet"),
  15781. weight: math.unit(190, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/sax/front.svg",
  15785. extra: 1187 / 973,
  15786. bottom: 0.042
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Micro",
  15793. height: math.unit(4, "inches"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(6, "feet"),
  15803. weight: math.unit(150, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/pandora/front.svg",
  15807. extra: 2720 / 2556,
  15808. bottom: 0.015
  15809. }
  15810. },
  15811. back: {
  15812. height: math.unit(6, "feet"),
  15813. weight: math.unit(150, "lb"),
  15814. name: "Back",
  15815. image: {
  15816. source: "./media/characters/pandora/back.svg",
  15817. extra: 2720 / 2556,
  15818. bottom: 0.01
  15819. }
  15820. },
  15821. beans: {
  15822. height: math.unit(6 / 8, "feet"),
  15823. name: "Beans",
  15824. image: {
  15825. source: "./media/characters/pandora/beans.svg"
  15826. }
  15827. },
  15828. collar: {
  15829. height: math.unit(0.31, "feet"),
  15830. name: "Collar",
  15831. image: {
  15832. source: "./media/characters/pandora/collar.svg"
  15833. }
  15834. },
  15835. skirt: {
  15836. height: math.unit(6, "feet"),
  15837. weight: math.unit(150, "lb"),
  15838. name: "Skirt",
  15839. image: {
  15840. source: "./media/characters/pandora/skirt.svg",
  15841. extra: 1622 / 1525,
  15842. bottom: 0.015
  15843. }
  15844. },
  15845. hoodie: {
  15846. height: math.unit(6, "feet"),
  15847. weight: math.unit(150, "lb"),
  15848. name: "Hoodie",
  15849. image: {
  15850. source: "./media/characters/pandora/hoodie.svg",
  15851. extra: 1622 / 1525,
  15852. bottom: 0.015
  15853. }
  15854. },
  15855. casual: {
  15856. height: math.unit(6, "feet"),
  15857. weight: math.unit(150, "lb"),
  15858. name: "Casual",
  15859. image: {
  15860. source: "./media/characters/pandora/casual.svg",
  15861. extra: 1622 / 1525,
  15862. bottom: 0.015
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(6, "feet")
  15870. },
  15871. {
  15872. name: "Big Steppy",
  15873. height: math.unit(1, "km"),
  15874. default: true
  15875. },
  15876. {
  15877. name: "Galactic Steppy",
  15878. height: math.unit(2, "gigameters")
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15884. {
  15885. side: {
  15886. height: math.unit(10, "feet"),
  15887. weight: math.unit(800, "kg"),
  15888. name: "Side",
  15889. image: {
  15890. source: "./media/characters/venio-darcony/side.svg",
  15891. extra: 1373 / 1003,
  15892. bottom: 0.037
  15893. }
  15894. },
  15895. front: {
  15896. height: math.unit(19, "feet"),
  15897. weight: math.unit(800, "kg"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/venio-darcony/front.svg"
  15901. }
  15902. },
  15903. back: {
  15904. height: math.unit(19, "feet"),
  15905. weight: math.unit(800, "kg"),
  15906. name: "Back",
  15907. image: {
  15908. source: "./media/characters/venio-darcony/back.svg"
  15909. }
  15910. },
  15911. sideNsfw: {
  15912. height: math.unit(10, "feet"),
  15913. weight: math.unit(800, "kg"),
  15914. name: "Side (NSFW)",
  15915. image: {
  15916. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15917. extra: 1373 / 1003,
  15918. bottom: 0.037
  15919. }
  15920. },
  15921. frontNsfw: {
  15922. height: math.unit(19, "feet"),
  15923. weight: math.unit(800, "kg"),
  15924. name: "Front (NSFW)",
  15925. image: {
  15926. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15927. }
  15928. },
  15929. backNsfw: {
  15930. height: math.unit(19, "feet"),
  15931. weight: math.unit(800, "kg"),
  15932. name: "Back (NSFW)",
  15933. image: {
  15934. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15935. }
  15936. },
  15937. sideArmored: {
  15938. height: math.unit(10, "feet"),
  15939. weight: math.unit(800, "kg"),
  15940. name: "Side (Armored)",
  15941. image: {
  15942. source: "./media/characters/venio-darcony/side-armored.svg",
  15943. extra: 1373 / 1003,
  15944. bottom: 0.037
  15945. }
  15946. },
  15947. frontArmored: {
  15948. height: math.unit(19, "feet"),
  15949. weight: math.unit(900, "kg"),
  15950. name: "Front (Armored)",
  15951. image: {
  15952. source: "./media/characters/venio-darcony/front-armored.svg"
  15953. }
  15954. },
  15955. backArmored: {
  15956. height: math.unit(19, "feet"),
  15957. weight: math.unit(900, "kg"),
  15958. name: "Back (Armored)",
  15959. image: {
  15960. source: "./media/characters/venio-darcony/back-armored.svg"
  15961. }
  15962. },
  15963. sword: {
  15964. height: math.unit(10, "feet"),
  15965. weight: math.unit(50, "lb"),
  15966. name: "Sword",
  15967. image: {
  15968. source: "./media/characters/venio-darcony/sword.svg"
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Normal",
  15975. height: math.unit(10, "feet")
  15976. },
  15977. {
  15978. name: "Macro",
  15979. height: math.unit(130, "feet"),
  15980. default: true
  15981. },
  15982. {
  15983. name: "Macro+",
  15984. height: math.unit(240, "feet")
  15985. },
  15986. ]
  15987. ))
  15988. characterMakers.push(() => makeCharacter(
  15989. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15990. {
  15991. front: {
  15992. height: math.unit(6, "feet"),
  15993. weight: math.unit(150, "lb"),
  15994. name: "Front",
  15995. image: {
  15996. source: "./media/characters/veski/front.svg",
  15997. extra: 1299 / 1225,
  15998. bottom: 0.04
  15999. }
  16000. },
  16001. back: {
  16002. height: math.unit(6, "feet"),
  16003. weight: math.unit(150, "lb"),
  16004. name: "Back",
  16005. image: {
  16006. source: "./media/characters/veski/back.svg",
  16007. extra: 1299 / 1225,
  16008. bottom: 0.008
  16009. }
  16010. },
  16011. maw: {
  16012. height: math.unit(1.5 * 1.21, "feet"),
  16013. name: "Maw",
  16014. image: {
  16015. source: "./media/characters/veski/maw.svg"
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Macro",
  16022. height: math.unit(2, "km"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16029. {
  16030. front: {
  16031. height: math.unit(5 + 7 / 12, "feet"),
  16032. name: "Front",
  16033. image: {
  16034. source: "./media/characters/isabelle/front.svg",
  16035. extra: 2130 / 1976,
  16036. bottom: 0.05
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Supermicro",
  16043. height: math.unit(10, "micrometers")
  16044. },
  16045. {
  16046. name: "Micro",
  16047. height: math.unit(1, "inch")
  16048. },
  16049. {
  16050. name: "Tiny",
  16051. height: math.unit(5, "inches")
  16052. },
  16053. {
  16054. name: "Standard",
  16055. height: math.unit(5 + 7 / 12, "inches")
  16056. },
  16057. {
  16058. name: "Macro",
  16059. height: math.unit(80, "meters"),
  16060. default: true
  16061. },
  16062. {
  16063. name: "Megamacro",
  16064. height: math.unit(250, "meters")
  16065. },
  16066. {
  16067. name: "Gigamacro",
  16068. height: math.unit(5, "km")
  16069. },
  16070. {
  16071. name: "Cosmic",
  16072. height: math.unit(2.5e6, "miles")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(6, "feet"),
  16081. weight: math.unit(150, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/hanzo/front.svg",
  16085. extra: 374 / 344,
  16086. bottom: 0.02
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(8, "feet"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(7, "feet"),
  16103. weight: math.unit(130, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/anna/front.svg",
  16107. extra: 169 / 145,
  16108. bottom: 0.06
  16109. }
  16110. },
  16111. full: {
  16112. height: math.unit(4.96, "feet"),
  16113. weight: math.unit(220, "lb"),
  16114. name: "Full",
  16115. image: {
  16116. source: "./media/characters/anna/full.svg",
  16117. extra: 138 / 114,
  16118. bottom: 0.15
  16119. }
  16120. },
  16121. tongue: {
  16122. height: math.unit(2.53, "feet"),
  16123. name: "Tongue",
  16124. image: {
  16125. source: "./media/characters/anna/tongue.svg"
  16126. }
  16127. },
  16128. },
  16129. [
  16130. {
  16131. name: "Normal",
  16132. height: math.unit(7, "feet"),
  16133. default: true
  16134. },
  16135. ]
  16136. ))
  16137. characterMakers.push(() => makeCharacter(
  16138. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16139. {
  16140. front: {
  16141. height: math.unit(7, "feet"),
  16142. weight: math.unit(150, "lb"),
  16143. name: "Front",
  16144. image: {
  16145. source: "./media/characters/ian-corvid/front.svg",
  16146. extra: 150 / 142,
  16147. bottom: 0.02
  16148. }
  16149. },
  16150. back: {
  16151. height: math.unit(7, "feet"),
  16152. weight: math.unit(150, "lb"),
  16153. name: "Back",
  16154. image: {
  16155. source: "./media/characters/ian-corvid/back.svg",
  16156. extra: 150 / 143,
  16157. bottom: 0.01
  16158. }
  16159. },
  16160. stomping: {
  16161. height: math.unit(7, "feet"),
  16162. weight: math.unit(150, "lb"),
  16163. name: "Stomping",
  16164. image: {
  16165. source: "./media/characters/ian-corvid/stomping.svg",
  16166. extra: 76 / 72
  16167. }
  16168. },
  16169. sitting: {
  16170. height: math.unit(7 / 1.8, "feet"),
  16171. weight: math.unit(150, "lb"),
  16172. name: "Sitting",
  16173. image: {
  16174. source: "./media/characters/ian-corvid/sitting.svg",
  16175. extra: 1400 / 1269,
  16176. bottom: 0.15
  16177. }
  16178. },
  16179. },
  16180. [
  16181. {
  16182. name: "Tiny Microw",
  16183. height: math.unit(1, "inch")
  16184. },
  16185. {
  16186. name: "Microw",
  16187. height: math.unit(6, "inches")
  16188. },
  16189. {
  16190. name: "Crow",
  16191. height: math.unit(7 + 1 / 12, "feet"),
  16192. default: true
  16193. },
  16194. {
  16195. name: "Macrow",
  16196. height: math.unit(176, "feet")
  16197. },
  16198. ]
  16199. ))
  16200. characterMakers.push(() => makeCharacter(
  16201. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16202. {
  16203. front: {
  16204. height: math.unit(5 + 7 / 12, "feet"),
  16205. weight: math.unit(147, "lb"),
  16206. name: "Front",
  16207. image: {
  16208. source: "./media/characters/natalie-kellon/front.svg",
  16209. extra: 1214 / 1141,
  16210. bottom: 0.02
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Micro",
  16217. height: math.unit(1 / 16, "inch")
  16218. },
  16219. {
  16220. name: "Tiny",
  16221. height: math.unit(4, "inches")
  16222. },
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(5 + 7 / 12, "feet"),
  16226. default: true
  16227. },
  16228. {
  16229. name: "Amazon",
  16230. height: math.unit(12, "feet")
  16231. },
  16232. {
  16233. name: "Giantess",
  16234. height: math.unit(160, "meters")
  16235. },
  16236. {
  16237. name: "Titaness",
  16238. height: math.unit(800, "meters")
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16244. {
  16245. front: {
  16246. height: math.unit(6, "feet"),
  16247. weight: math.unit(150, "lb"),
  16248. name: "Front",
  16249. image: {
  16250. source: "./media/characters/alluria/front.svg",
  16251. extra: 806 / 738,
  16252. bottom: 0.01
  16253. }
  16254. },
  16255. side: {
  16256. height: math.unit(6, "feet"),
  16257. weight: math.unit(150, "lb"),
  16258. name: "Side",
  16259. image: {
  16260. source: "./media/characters/alluria/side.svg",
  16261. extra: 800 / 750,
  16262. }
  16263. },
  16264. back: {
  16265. height: math.unit(6, "feet"),
  16266. weight: math.unit(150, "lb"),
  16267. name: "Back",
  16268. image: {
  16269. source: "./media/characters/alluria/back.svg",
  16270. extra: 806 / 738,
  16271. }
  16272. },
  16273. frontMaid: {
  16274. height: math.unit(6, "feet"),
  16275. weight: math.unit(150, "lb"),
  16276. name: "Front (Maid)",
  16277. image: {
  16278. source: "./media/characters/alluria/front-maid.svg",
  16279. extra: 806 / 738,
  16280. bottom: 0.01
  16281. }
  16282. },
  16283. sideMaid: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(150, "lb"),
  16286. name: "Side (Maid)",
  16287. image: {
  16288. source: "./media/characters/alluria/side-maid.svg",
  16289. extra: 800 / 750,
  16290. bottom: 0.005
  16291. }
  16292. },
  16293. backMaid: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(150, "lb"),
  16296. name: "Back (Maid)",
  16297. image: {
  16298. source: "./media/characters/alluria/back-maid.svg",
  16299. extra: 806 / 738,
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Micro",
  16306. height: math.unit(6, "inches"),
  16307. default: true
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16313. {
  16314. front: {
  16315. height: math.unit(6, "feet"),
  16316. weight: math.unit(150, "lb"),
  16317. name: "Front",
  16318. image: {
  16319. source: "./media/characters/kyle/front.svg",
  16320. extra: 1069 / 962,
  16321. bottom: 77.228 / 1727.45
  16322. }
  16323. },
  16324. },
  16325. [
  16326. {
  16327. name: "Macro",
  16328. height: math.unit(150, "feet"),
  16329. default: true
  16330. },
  16331. ]
  16332. ))
  16333. characterMakers.push(() => makeCharacter(
  16334. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16335. {
  16336. front: {
  16337. height: math.unit(6, "feet"),
  16338. weight: math.unit(300, "lb"),
  16339. name: "Front",
  16340. image: {
  16341. source: "./media/characters/duncan/front.svg",
  16342. extra: 1650 / 1482,
  16343. bottom: 0.05
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Macro",
  16350. height: math.unit(100, "feet"),
  16351. default: true
  16352. },
  16353. ]
  16354. ))
  16355. characterMakers.push(() => makeCharacter(
  16356. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16357. {
  16358. front: {
  16359. height: math.unit(5 + 4 / 12, "feet"),
  16360. weight: math.unit(220, "lb"),
  16361. name: "Front",
  16362. image: {
  16363. source: "./media/characters/memory/front.svg",
  16364. extra: 3641 / 3545,
  16365. bottom: 0.03
  16366. }
  16367. },
  16368. back: {
  16369. height: math.unit(5 + 4 / 12, "feet"),
  16370. weight: math.unit(220, "lb"),
  16371. name: "Back",
  16372. image: {
  16373. source: "./media/characters/memory/back.svg",
  16374. extra: 3641 / 3545,
  16375. bottom: 0.025
  16376. }
  16377. },
  16378. frontSkirt: {
  16379. height: math.unit(5 + 4 / 12, "feet"),
  16380. weight: math.unit(220, "lb"),
  16381. name: "Front (Skirt)",
  16382. image: {
  16383. source: "./media/characters/memory/front-skirt.svg",
  16384. extra: 3641 / 3545,
  16385. bottom: 0.03
  16386. }
  16387. },
  16388. frontDress: {
  16389. height: math.unit(5 + 4 / 12, "feet"),
  16390. weight: math.unit(220, "lb"),
  16391. name: "Front (Dress)",
  16392. image: {
  16393. source: "./media/characters/memory/front-dress.svg",
  16394. extra: 3641 / 3545,
  16395. bottom: 0.03
  16396. }
  16397. },
  16398. },
  16399. [
  16400. {
  16401. name: "Micro",
  16402. height: math.unit(6, "inches"),
  16403. default: true
  16404. },
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(5 + 4 / 12, "feet")
  16408. },
  16409. ]
  16410. ))
  16411. characterMakers.push(() => makeCharacter(
  16412. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16413. {
  16414. front: {
  16415. height: math.unit(4 + 11 / 12, "feet"),
  16416. weight: math.unit(100, "lb"),
  16417. name: "Front",
  16418. image: {
  16419. source: "./media/characters/luno/front.svg",
  16420. extra: 1535 / 1487,
  16421. bottom: 0.03
  16422. }
  16423. },
  16424. },
  16425. [
  16426. {
  16427. name: "Micro",
  16428. height: math.unit(3, "inches")
  16429. },
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(4 + 11 / 12, "feet"),
  16433. default: true
  16434. },
  16435. {
  16436. name: "Macro",
  16437. height: math.unit(300, "feet")
  16438. },
  16439. {
  16440. name: "Megamacro",
  16441. height: math.unit(700, "miles")
  16442. },
  16443. ]
  16444. ))
  16445. characterMakers.push(() => makeCharacter(
  16446. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16447. {
  16448. front: {
  16449. height: math.unit(6 + 2 / 12, "feet"),
  16450. weight: math.unit(170, "lb"),
  16451. name: "Front",
  16452. image: {
  16453. source: "./media/characters/jamesy/front.svg",
  16454. extra: 440 / 382,
  16455. bottom: 0.005
  16456. }
  16457. },
  16458. },
  16459. [
  16460. {
  16461. name: "Micro",
  16462. height: math.unit(3, "inches")
  16463. },
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(6 + 2 / 12, "feet"),
  16467. default: true
  16468. },
  16469. {
  16470. name: "Macro",
  16471. height: math.unit(300, "feet")
  16472. },
  16473. {
  16474. name: "Megamacro",
  16475. height: math.unit(700, "miles")
  16476. },
  16477. ]
  16478. ))
  16479. characterMakers.push(() => makeCharacter(
  16480. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16481. {
  16482. front: {
  16483. height: math.unit(6, "feet"),
  16484. weight: math.unit(160, "lb"),
  16485. name: "Front",
  16486. image: {
  16487. source: "./media/characters/mark/front.svg",
  16488. extra: 3300 / 3100,
  16489. bottom: 136.42 / 3440.47
  16490. }
  16491. },
  16492. },
  16493. [
  16494. {
  16495. name: "Macro",
  16496. height: math.unit(120, "meters")
  16497. },
  16498. {
  16499. name: "Bigger Macro",
  16500. height: math.unit(350, "meters")
  16501. },
  16502. {
  16503. name: "Megamacro",
  16504. height: math.unit(8, "km"),
  16505. default: true
  16506. },
  16507. {
  16508. name: "Continental",
  16509. height: math.unit(4550, "km")
  16510. },
  16511. {
  16512. name: "Planetary",
  16513. height: math.unit(65000, "km")
  16514. },
  16515. ]
  16516. ))
  16517. characterMakers.push(() => makeCharacter(
  16518. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16519. {
  16520. front: {
  16521. height: math.unit(6, "feet"),
  16522. weight: math.unit(400, "lb"),
  16523. name: "Front",
  16524. image: {
  16525. source: "./media/characters/mac/front.svg",
  16526. extra: 1048 / 987.7,
  16527. bottom: 60 / 1107.6,
  16528. }
  16529. },
  16530. },
  16531. [
  16532. {
  16533. name: "Macro",
  16534. height: math.unit(500, "feet"),
  16535. default: true
  16536. },
  16537. ]
  16538. ))
  16539. characterMakers.push(() => makeCharacter(
  16540. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16541. {
  16542. front: {
  16543. height: math.unit(5 + 2 / 12, "feet"),
  16544. weight: math.unit(190, "lb"),
  16545. name: "Front",
  16546. image: {
  16547. source: "./media/characters/bari/front.svg",
  16548. extra: 3156 / 2880,
  16549. bottom: 0.03
  16550. }
  16551. },
  16552. back: {
  16553. height: math.unit(5 + 2 / 12, "feet"),
  16554. weight: math.unit(190, "lb"),
  16555. name: "Back",
  16556. image: {
  16557. source: "./media/characters/bari/back.svg",
  16558. extra: 3260 / 2834,
  16559. bottom: 0.025
  16560. }
  16561. },
  16562. frontPlush: {
  16563. height: math.unit(5 + 2 / 12, "feet"),
  16564. weight: math.unit(190, "lb"),
  16565. name: "Front (Plush)",
  16566. image: {
  16567. source: "./media/characters/bari/front-plush.svg",
  16568. extra: 1112 / 1061,
  16569. bottom: 0.002
  16570. }
  16571. },
  16572. },
  16573. [
  16574. {
  16575. name: "Micro",
  16576. height: math.unit(3, "inches")
  16577. },
  16578. {
  16579. name: "Normal",
  16580. height: math.unit(5 + 2 / 12, "feet"),
  16581. default: true
  16582. },
  16583. {
  16584. name: "Macro",
  16585. height: math.unit(20, "feet")
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16591. {
  16592. front: {
  16593. height: math.unit(6 + 1 / 12, "feet"),
  16594. weight: math.unit(275, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/hunter-misha-raven/front.svg"
  16598. }
  16599. },
  16600. },
  16601. [
  16602. {
  16603. name: "Mortal",
  16604. height: math.unit(6 + 1 / 12, "feet")
  16605. },
  16606. {
  16607. name: "Divine",
  16608. height: math.unit(1.12134e34, "parsecs"),
  16609. default: true
  16610. },
  16611. ]
  16612. ))
  16613. characterMakers.push(() => makeCharacter(
  16614. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16615. {
  16616. front: {
  16617. height: math.unit(6 + 3 / 12, "feet"),
  16618. weight: math.unit(220, "lb"),
  16619. name: "Front",
  16620. image: {
  16621. source: "./media/characters/max-calore/front.svg",
  16622. extra: 1700 / 1648,
  16623. bottom: 0.01
  16624. }
  16625. },
  16626. back: {
  16627. height: math.unit(6 + 3 / 12, "feet"),
  16628. weight: math.unit(220, "lb"),
  16629. name: "Back",
  16630. image: {
  16631. source: "./media/characters/max-calore/back.svg",
  16632. extra: 1700 / 1648,
  16633. bottom: 0.01
  16634. }
  16635. },
  16636. },
  16637. [
  16638. {
  16639. name: "Normal",
  16640. height: math.unit(6 + 3 / 12, "feet"),
  16641. default: true
  16642. },
  16643. ]
  16644. ))
  16645. characterMakers.push(() => makeCharacter(
  16646. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16647. {
  16648. side: {
  16649. height: math.unit(2 + 8 / 12, "feet"),
  16650. weight: math.unit(99, "lb"),
  16651. name: "Side",
  16652. image: {
  16653. source: "./media/characters/aspen/side.svg",
  16654. extra: 152 / 138,
  16655. bottom: 0.032
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Normal",
  16662. height: math.unit(2 + 8 / 12, "feet"),
  16663. default: true
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16669. {
  16670. side: {
  16671. height: math.unit(3 + 2 / 12, "feet"),
  16672. weight: math.unit(224, "lb"),
  16673. name: "Side",
  16674. image: {
  16675. source: "./media/characters/sheila-feral-wolf/side.svg",
  16676. extra: 179 / 166,
  16677. bottom: 0.03
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(3 + 2 / 12, "feet"),
  16685. default: true
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16691. {
  16692. side: {
  16693. height: math.unit(1 + 9 / 12, "feet"),
  16694. weight: math.unit(38, "lb"),
  16695. name: "Side",
  16696. image: {
  16697. source: "./media/characters/michelle/side.svg",
  16698. extra: 147 / 136.7,
  16699. bottom: 0.03
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(1 + 9 / 12, "feet"),
  16707. default: true
  16708. },
  16709. ]
  16710. ))
  16711. characterMakers.push(() => makeCharacter(
  16712. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16713. {
  16714. front: {
  16715. height: math.unit(1 + 1 / 12, "feet"),
  16716. weight: math.unit(18, "lb"),
  16717. name: "Front",
  16718. image: {
  16719. source: "./media/characters/nino/front.svg"
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(1 + 1 / 12, "feet"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16733. {
  16734. front: {
  16735. height: math.unit(1, "feet"),
  16736. weight: math.unit(16, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/viola/front.svg"
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(1, "feet"),
  16747. default: true
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(6 + 5 / 12, "feet"),
  16756. weight: math.unit(580, "lb"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/atlas/front.svg",
  16760. extra: 298.5 / 290,
  16761. bottom: 0.015
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(6 + 5 / 12, "feet"),
  16769. default: true
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16775. {
  16776. side: {
  16777. height: math.unit(1 + 10 / 12, "feet"),
  16778. weight: math.unit(25, "lb"),
  16779. name: "Side",
  16780. image: {
  16781. source: "./media/characters/davy/side.svg",
  16782. extra: 200 / 170,
  16783. bottom: 0.01
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(1 + 10 / 12, "feet"),
  16791. default: true
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16797. {
  16798. side: {
  16799. height: math.unit(4 + 8 / 12, "feet"),
  16800. weight: math.unit(166, "lb"),
  16801. name: "Side",
  16802. image: {
  16803. source: "./media/characters/fiona/side.svg",
  16804. extra: 232 / 220,
  16805. bottom: 0.03
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Normal",
  16812. height: math.unit(4 + 8 / 12, "feet"),
  16813. default: true
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16819. {
  16820. front: {
  16821. height: math.unit(2, "feet"),
  16822. weight: math.unit(62, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/lyla/front.svg",
  16826. bottom: 0.1
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Normal",
  16833. height: math.unit(2, "feet"),
  16834. default: true
  16835. },
  16836. ]
  16837. ))
  16838. characterMakers.push(() => makeCharacter(
  16839. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16840. {
  16841. side: {
  16842. height: math.unit(1.8, "feet"),
  16843. weight: math.unit(44, "lb"),
  16844. name: "Side",
  16845. image: {
  16846. source: "./media/characters/perseus/side.svg",
  16847. bottom: 0.21
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(1.8, "feet"),
  16855. default: true
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16861. {
  16862. side: {
  16863. height: math.unit(4 + 2 / 12, "feet"),
  16864. weight: math.unit(20, "lb"),
  16865. name: "Side",
  16866. image: {
  16867. source: "./media/characters/remus/side.svg"
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(4 + 2 / 12, "feet"),
  16875. default: true
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16881. {
  16882. front: {
  16883. height: math.unit(4 + 11 / 12, "feet"),
  16884. weight: math.unit(114, "lb"),
  16885. name: "Front",
  16886. image: {
  16887. source: "./media/characters/raf/front.svg",
  16888. bottom: 20.5 / 1863
  16889. }
  16890. },
  16891. side: {
  16892. height: math.unit(4 + 11 / 12, "feet"),
  16893. weight: math.unit(114, "lb"),
  16894. name: "Side",
  16895. image: {
  16896. source: "./media/characters/raf/side.svg",
  16897. bottom: 22 / 1822
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Micro",
  16904. height: math.unit(2, "inches")
  16905. },
  16906. {
  16907. name: "Normal",
  16908. height: math.unit(4 + 11 / 12, "feet"),
  16909. default: true
  16910. },
  16911. {
  16912. name: "Macro",
  16913. height: math.unit(70, "feet")
  16914. },
  16915. ]
  16916. ))
  16917. characterMakers.push(() => makeCharacter(
  16918. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16919. {
  16920. front: {
  16921. height: math.unit(1.5, "meters"),
  16922. weight: math.unit(68, "kg"),
  16923. name: "Front",
  16924. image: {
  16925. source: "./media/characters/liam-einarr/front.svg",
  16926. extra: 2822 / 2666
  16927. }
  16928. },
  16929. back: {
  16930. height: math.unit(1.5, "meters"),
  16931. weight: math.unit(68, "kg"),
  16932. name: "Back",
  16933. image: {
  16934. source: "./media/characters/liam-einarr/back.svg",
  16935. extra: 2822 / 2666,
  16936. bottom: 0.015
  16937. }
  16938. },
  16939. },
  16940. [
  16941. {
  16942. name: "Normal",
  16943. height: math.unit(1.5, "meters"),
  16944. default: true
  16945. },
  16946. {
  16947. name: "Macro",
  16948. height: math.unit(150, "meters")
  16949. },
  16950. {
  16951. name: "Megamacro",
  16952. height: math.unit(35, "km")
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16958. {
  16959. front: {
  16960. height: math.unit(6, "feet"),
  16961. weight: math.unit(75, "kg"),
  16962. name: "Front",
  16963. image: {
  16964. source: "./media/characters/linda/front.svg",
  16965. extra: 930 / 874,
  16966. bottom: 0.004
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Normal",
  16973. height: math.unit(6, "feet"),
  16974. default: true
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16980. {
  16981. front: {
  16982. height: math.unit(6 + 8 / 12, "feet"),
  16983. weight: math.unit(220, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/caylex/front.svg",
  16987. extra: 821 / 772,
  16988. bottom: 0.07
  16989. }
  16990. },
  16991. back: {
  16992. height: math.unit(6 + 8 / 12, "feet"),
  16993. weight: math.unit(220, "lb"),
  16994. name: "Back",
  16995. image: {
  16996. source: "./media/characters/caylex/back.svg",
  16997. extra: 821 / 772,
  16998. bottom: 0.022
  16999. }
  17000. },
  17001. hand: {
  17002. height: math.unit(1.25, "feet"),
  17003. name: "Hand",
  17004. image: {
  17005. source: "./media/characters/caylex/hand.svg"
  17006. }
  17007. },
  17008. foot: {
  17009. height: math.unit(1.6, "feet"),
  17010. name: "Foot",
  17011. image: {
  17012. source: "./media/characters/caylex/foot.svg"
  17013. }
  17014. },
  17015. armored: {
  17016. height: math.unit(6 + 8 / 12, "feet"),
  17017. weight: math.unit(250, "lb"),
  17018. name: "Armored",
  17019. image: {
  17020. source: "./media/characters/caylex/armored.svg",
  17021. extra: 1420 / 1310,
  17022. bottom: 0.045
  17023. }
  17024. },
  17025. },
  17026. [
  17027. {
  17028. name: "Normal",
  17029. height: math.unit(6 + 8 / 12, "feet"),
  17030. default: true
  17031. },
  17032. {
  17033. name: "Normal+",
  17034. height: math.unit(12, "feet")
  17035. },
  17036. ]
  17037. ))
  17038. characterMakers.push(() => makeCharacter(
  17039. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17040. {
  17041. front: {
  17042. height: math.unit(7 + 6 / 12, "feet"),
  17043. weight: math.unit(288, "lb"),
  17044. name: "Front",
  17045. image: {
  17046. source: "./media/characters/alana/front.svg",
  17047. extra: 679 / 653,
  17048. bottom: 22.5 / 701
  17049. }
  17050. },
  17051. },
  17052. [
  17053. {
  17054. name: "Normal",
  17055. height: math.unit(7 + 6 / 12, "feet")
  17056. },
  17057. {
  17058. name: "Large",
  17059. height: math.unit(50, "feet")
  17060. },
  17061. {
  17062. name: "Macro",
  17063. height: math.unit(100, "feet"),
  17064. default: true
  17065. },
  17066. {
  17067. name: "Macro+",
  17068. height: math.unit(200, "feet")
  17069. },
  17070. ]
  17071. ))
  17072. characterMakers.push(() => makeCharacter(
  17073. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17074. {
  17075. front: {
  17076. height: math.unit(6 + 1 / 12, "feet"),
  17077. weight: math.unit(210, "lb"),
  17078. name: "Front",
  17079. image: {
  17080. source: "./media/characters/hasani/front.svg",
  17081. extra: 244 / 232,
  17082. bottom: 0.01
  17083. }
  17084. },
  17085. back: {
  17086. height: math.unit(6 + 1 / 12, "feet"),
  17087. weight: math.unit(210, "lb"),
  17088. name: "Back",
  17089. image: {
  17090. source: "./media/characters/hasani/back.svg",
  17091. extra: 244 / 232,
  17092. bottom: 0.01
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(6 + 1 / 12, "feet")
  17100. },
  17101. {
  17102. name: "Macro",
  17103. height: math.unit(175, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(1.82, "meters"),
  17113. weight: math.unit(140, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/nita/front.svg",
  17117. extra: 2473 / 2363,
  17118. bottom: 0.01
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(1.82, "m")
  17126. },
  17127. {
  17128. name: "Macro",
  17129. height: math.unit(300, "m")
  17130. },
  17131. {
  17132. name: "Mistake Canon",
  17133. height: math.unit(0.5, "miles"),
  17134. default: true
  17135. },
  17136. {
  17137. name: "Big Mistake",
  17138. height: math.unit(13, "miles")
  17139. },
  17140. {
  17141. name: "Playing God",
  17142. height: math.unit(2450, "miles")
  17143. },
  17144. ]
  17145. ))
  17146. characterMakers.push(() => makeCharacter(
  17147. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17148. {
  17149. front: {
  17150. height: math.unit(4, "feet"),
  17151. weight: math.unit(120, "lb"),
  17152. name: "Front",
  17153. image: {
  17154. source: "./media/characters/shiriko/front.svg",
  17155. extra: 195 / 188
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Normal",
  17162. height: math.unit(4, "feet"),
  17163. default: true
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17169. {
  17170. front: {
  17171. height: math.unit(6, "feet"),
  17172. name: "front",
  17173. image: {
  17174. source: "./media/characters/deja/front.svg",
  17175. extra: 926 / 840,
  17176. bottom: 0.07
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Planck Length",
  17183. height: math.unit(1.6e-35, "meters")
  17184. },
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(30.48, "meters"),
  17188. default: true
  17189. },
  17190. {
  17191. name: "Universal",
  17192. height: math.unit(8.8e26, "meters")
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17198. {
  17199. side: {
  17200. height: math.unit(8, "feet"),
  17201. weight: math.unit(6300, "lb"),
  17202. name: "Side",
  17203. image: {
  17204. source: "./media/characters/anima/side.svg",
  17205. bottom: 0.035
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(8, "feet"),
  17213. default: true
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17219. {
  17220. front: {
  17221. height: math.unit(8, "feet"),
  17222. weight: math.unit(350, "lb"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/bianca/front.svg",
  17226. extra: 234 / 225,
  17227. bottom: 0.03
  17228. }
  17229. },
  17230. },
  17231. [
  17232. {
  17233. name: "Normal",
  17234. height: math.unit(8, "feet"),
  17235. default: true
  17236. },
  17237. ]
  17238. ))
  17239. characterMakers.push(() => makeCharacter(
  17240. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17241. {
  17242. front: {
  17243. height: math.unit(6, "feet"),
  17244. weight: math.unit(150, "lb"),
  17245. name: "Front",
  17246. image: {
  17247. source: "./media/characters/adinia/front.svg",
  17248. extra: 1845 / 1672,
  17249. bottom: 0.02
  17250. }
  17251. },
  17252. back: {
  17253. height: math.unit(6, "feet"),
  17254. weight: math.unit(150, "lb"),
  17255. name: "Back",
  17256. image: {
  17257. source: "./media/characters/adinia/back.svg",
  17258. extra: 1845 / 1672,
  17259. bottom: 0.002
  17260. }
  17261. },
  17262. },
  17263. [
  17264. {
  17265. name: "Normal",
  17266. height: math.unit(11 + 5 / 12, "feet"),
  17267. default: true
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17273. {
  17274. front: {
  17275. height: math.unit(3, "meters"),
  17276. weight: math.unit(200, "kg"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/lykasa/front.svg",
  17280. extra: 1076 / 976,
  17281. bottom: 0.06
  17282. }
  17283. },
  17284. },
  17285. [
  17286. {
  17287. name: "Normal",
  17288. height: math.unit(3, "meters")
  17289. },
  17290. {
  17291. name: "Kaiju",
  17292. height: math.unit(120, "meters"),
  17293. default: true
  17294. },
  17295. {
  17296. name: "Mega Kaiju",
  17297. height: math.unit(240, "km")
  17298. },
  17299. {
  17300. name: "Giga Kaiju",
  17301. height: math.unit(400, "megameters")
  17302. },
  17303. {
  17304. name: "Tera Kaiju",
  17305. height: math.unit(800, "gigameters")
  17306. },
  17307. {
  17308. name: "Kaiju Dragon Goddess",
  17309. height: math.unit(26, "zettaparsecs")
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17315. {
  17316. side: {
  17317. height: math.unit(283 / 124 * 6, "feet"),
  17318. weight: math.unit(35000, "lb"),
  17319. name: "Side",
  17320. image: {
  17321. source: "./media/characters/malfaren/side.svg",
  17322. extra: 2500 / 1010,
  17323. bottom: 0.01
  17324. }
  17325. },
  17326. front: {
  17327. height: math.unit(22.36, "feet"),
  17328. weight: math.unit(35000, "lb"),
  17329. name: "Front",
  17330. image: {
  17331. source: "./media/characters/malfaren/front.svg",
  17332. extra: 1631 / 1476,
  17333. bottom: 0.01
  17334. }
  17335. },
  17336. maw: {
  17337. height: math.unit(6.9, "feet"),
  17338. name: "Maw",
  17339. image: {
  17340. source: "./media/characters/malfaren/maw.svg"
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Big",
  17347. height: math.unit(283 / 162 * 6, "feet"),
  17348. },
  17349. {
  17350. name: "Bigger",
  17351. height: math.unit(283 / 124 * 6, "feet")
  17352. },
  17353. {
  17354. name: "Massive",
  17355. height: math.unit(283 / 92 * 6, "feet"),
  17356. default: true
  17357. },
  17358. {
  17359. name: "👀💦",
  17360. height: math.unit(283 / 73 * 6, "feet"),
  17361. },
  17362. ]
  17363. ))
  17364. characterMakers.push(() => makeCharacter(
  17365. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17366. {
  17367. front: {
  17368. height: math.unit(1.7, "m"),
  17369. weight: math.unit(70, "kg"),
  17370. name: "Front",
  17371. image: {
  17372. source: "./media/characters/kernel/front.svg",
  17373. extra: 222 / 210,
  17374. bottom: 0.007
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Nano",
  17381. height: math.unit(17, "micrometers")
  17382. },
  17383. {
  17384. name: "Micro",
  17385. height: math.unit(1.7, "mm")
  17386. },
  17387. {
  17388. name: "Small",
  17389. height: math.unit(1.7, "cm")
  17390. },
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(1.7, "m"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17400. {
  17401. front: {
  17402. height: math.unit(1.75, "meters"),
  17403. weight: math.unit(65, "kg"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/jayne-folest/front.svg",
  17407. extra: 2115 / 2007,
  17408. bottom: 0.02
  17409. }
  17410. },
  17411. back: {
  17412. height: math.unit(1.75, "meters"),
  17413. weight: math.unit(65, "kg"),
  17414. name: "Back",
  17415. image: {
  17416. source: "./media/characters/jayne-folest/back.svg",
  17417. extra: 2115 / 2007,
  17418. bottom: 0.005
  17419. }
  17420. },
  17421. frontClothed: {
  17422. height: math.unit(1.75, "meters"),
  17423. weight: math.unit(65, "kg"),
  17424. name: "Front (Clothed)",
  17425. image: {
  17426. source: "./media/characters/jayne-folest/front-clothed.svg",
  17427. extra: 2115 / 2007,
  17428. bottom: 0.035
  17429. }
  17430. },
  17431. hand: {
  17432. height: math.unit(1 / 1.260, "feet"),
  17433. name: "Hand",
  17434. image: {
  17435. source: "./media/characters/jayne-folest/hand.svg"
  17436. }
  17437. },
  17438. foot: {
  17439. height: math.unit(1 / 0.918, "feet"),
  17440. name: "Foot",
  17441. image: {
  17442. source: "./media/characters/jayne-folest/foot.svg"
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Micro",
  17449. height: math.unit(4, "cm")
  17450. },
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(1.75, "meters")
  17454. },
  17455. {
  17456. name: "Macro",
  17457. height: math.unit(47.5, "meters"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(180, "cm"),
  17467. weight: math.unit(70, "kg"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/algier/front.svg",
  17471. extra: 596 / 572,
  17472. bottom: 0.04
  17473. }
  17474. },
  17475. back: {
  17476. height: math.unit(180, "cm"),
  17477. weight: math.unit(70, "kg"),
  17478. name: "Back",
  17479. image: {
  17480. source: "./media/characters/algier/back.svg",
  17481. extra: 596 / 572,
  17482. bottom: 0.025
  17483. }
  17484. },
  17485. frontdressed: {
  17486. height: math.unit(180, "cm"),
  17487. weight: math.unit(150, "kg"),
  17488. name: "Front-dressed",
  17489. image: {
  17490. source: "./media/characters/algier/front-dressed.svg",
  17491. extra: 596 / 572,
  17492. bottom: 0.038
  17493. }
  17494. },
  17495. },
  17496. [
  17497. {
  17498. name: "Micro",
  17499. height: math.unit(5, "cm")
  17500. },
  17501. {
  17502. name: "Normal",
  17503. height: math.unit(180, "cm"),
  17504. default: true
  17505. },
  17506. {
  17507. name: "Macro",
  17508. height: math.unit(64, "m")
  17509. },
  17510. ]
  17511. ))
  17512. characterMakers.push(() => makeCharacter(
  17513. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17514. {
  17515. upright: {
  17516. height: math.unit(7, "feet"),
  17517. weight: math.unit(300, "lb"),
  17518. name: "Upright",
  17519. image: {
  17520. source: "./media/characters/pretzel/upright.svg",
  17521. extra: 534 / 522,
  17522. bottom: 0.065
  17523. }
  17524. },
  17525. sprawling: {
  17526. height: math.unit(3.75, "feet"),
  17527. weight: math.unit(300, "lb"),
  17528. name: "Sprawling",
  17529. image: {
  17530. source: "./media/characters/pretzel/sprawling.svg",
  17531. extra: 314 / 281,
  17532. bottom: 0.1
  17533. }
  17534. },
  17535. tongue: {
  17536. height: math.unit(2, "feet"),
  17537. name: "Tongue",
  17538. image: {
  17539. source: "./media/characters/pretzel/tongue.svg"
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(7, "feet"),
  17547. default: true
  17548. },
  17549. {
  17550. name: "Oversized",
  17551. height: math.unit(15, "feet")
  17552. },
  17553. {
  17554. name: "Huge",
  17555. height: math.unit(30, "feet")
  17556. },
  17557. {
  17558. name: "Macro",
  17559. height: math.unit(250, "feet")
  17560. },
  17561. ]
  17562. ))
  17563. characterMakers.push(() => makeCharacter(
  17564. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17565. {
  17566. sideFront: {
  17567. height: math.unit(5 + 2 / 12, "feet"),
  17568. weight: math.unit(120, "lb"),
  17569. name: "Front Side",
  17570. image: {
  17571. source: "./media/characters/roxi/side-front.svg",
  17572. extra: 2924 / 2717,
  17573. bottom: 0.08
  17574. }
  17575. },
  17576. sideBack: {
  17577. height: math.unit(5 + 2 / 12, "feet"),
  17578. weight: math.unit(120, "lb"),
  17579. name: "Back Side",
  17580. image: {
  17581. source: "./media/characters/roxi/side-back.svg",
  17582. extra: 2904 / 2693,
  17583. bottom: 0.06
  17584. }
  17585. },
  17586. front: {
  17587. height: math.unit(5 + 2 / 12, "feet"),
  17588. weight: math.unit(120, "lb"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/roxi/front.svg",
  17592. extra: 2028 / 1907,
  17593. bottom: 0.01
  17594. }
  17595. },
  17596. frontAlt: {
  17597. height: math.unit(5 + 2 / 12, "feet"),
  17598. weight: math.unit(120, "lb"),
  17599. name: "Front (Alt)",
  17600. image: {
  17601. source: "./media/characters/roxi/front-alt.svg",
  17602. extra: 1828 / 1798,
  17603. bottom: 0.01
  17604. }
  17605. },
  17606. sitting: {
  17607. height: math.unit(2.8, "feet"),
  17608. weight: math.unit(120, "lb"),
  17609. name: "Sitting",
  17610. image: {
  17611. source: "./media/characters/roxi/sitting.svg",
  17612. extra: 2660 / 2462,
  17613. bottom: 0.1
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Normal",
  17620. height: math.unit(5 + 2 / 12, "feet"),
  17621. default: true
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17627. {
  17628. side: {
  17629. height: math.unit(55, "feet"),
  17630. weight: math.unit(153, "tons"),
  17631. name: "Side",
  17632. image: {
  17633. source: "./media/characters/shadow/side.svg",
  17634. extra: 701 / 628,
  17635. bottom: 0.02
  17636. }
  17637. },
  17638. flying: {
  17639. height: math.unit(145, "feet"),
  17640. weight: math.unit(153, "tons"),
  17641. name: "Flying",
  17642. image: {
  17643. source: "./media/characters/shadow/flying.svg"
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(55, "feet"),
  17651. default: true
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17657. {
  17658. front: {
  17659. height: math.unit(6, "feet"),
  17660. weight: math.unit(200, "lb"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/marcie/front.svg",
  17664. extra: 960 / 876,
  17665. bottom: 58 / 1017.87
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Macro",
  17672. height: math.unit(1, "mile"),
  17673. default: true
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17679. {
  17680. front: {
  17681. height: math.unit(7, "feet"),
  17682. weight: math.unit(200, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/kachina/front.svg",
  17686. extra: 1290.68 / 1119,
  17687. bottom: 36.5 / 1327.18
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Normal",
  17694. height: math.unit(7, "feet"),
  17695. default: true
  17696. },
  17697. ]
  17698. ))
  17699. characterMakers.push(() => makeCharacter(
  17700. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17701. {
  17702. looking: {
  17703. height: math.unit(2, "meters"),
  17704. weight: math.unit(300, "kg"),
  17705. name: "Looking",
  17706. image: {
  17707. source: "./media/characters/kash/looking.svg",
  17708. extra: 474 / 344,
  17709. bottom: 0.03
  17710. }
  17711. },
  17712. side: {
  17713. height: math.unit(2, "meters"),
  17714. weight: math.unit(300, "kg"),
  17715. name: "Side",
  17716. image: {
  17717. source: "./media/characters/kash/side.svg",
  17718. extra: 302 / 251,
  17719. bottom: 0.03
  17720. }
  17721. },
  17722. front: {
  17723. height: math.unit(2, "meters"),
  17724. weight: math.unit(300, "kg"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/kash/front.svg",
  17728. extra: 495 / 360,
  17729. bottom: 0.015
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(2, "meters"),
  17737. default: true
  17738. },
  17739. {
  17740. name: "Big",
  17741. height: math.unit(3, "meters")
  17742. },
  17743. {
  17744. name: "Large",
  17745. height: math.unit(5, "meters")
  17746. },
  17747. ]
  17748. ))
  17749. characterMakers.push(() => makeCharacter(
  17750. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17751. {
  17752. feeding: {
  17753. height: math.unit(6.7, "feet"),
  17754. weight: math.unit(350, "lb"),
  17755. name: "Feeding",
  17756. image: {
  17757. source: "./media/characters/lalim/feeding.svg",
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Normal",
  17764. height: math.unit(6.7, "feet"),
  17765. default: true
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17771. {
  17772. front: {
  17773. height: math.unit(9.5, "feet"),
  17774. weight: math.unit(600, "lb"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/de'vout/front.svg",
  17778. extra: 1443 / 1328,
  17779. bottom: 0.025
  17780. }
  17781. },
  17782. back: {
  17783. height: math.unit(9.5, "feet"),
  17784. weight: math.unit(600, "lb"),
  17785. name: "Back",
  17786. image: {
  17787. source: "./media/characters/de'vout/back.svg",
  17788. extra: 1443 / 1328
  17789. }
  17790. },
  17791. frontDressed: {
  17792. height: math.unit(9.5, "feet"),
  17793. weight: math.unit(600, "lb"),
  17794. name: "Front (Dressed",
  17795. image: {
  17796. source: "./media/characters/de'vout/front-dressed.svg",
  17797. extra: 1443 / 1328,
  17798. bottom: 0.025
  17799. }
  17800. },
  17801. backDressed: {
  17802. height: math.unit(9.5, "feet"),
  17803. weight: math.unit(600, "lb"),
  17804. name: "Back (Dressed",
  17805. image: {
  17806. source: "./media/characters/de'vout/back-dressed.svg",
  17807. extra: 1443 / 1328
  17808. }
  17809. },
  17810. },
  17811. [
  17812. {
  17813. name: "Normal",
  17814. height: math.unit(9.5, "feet"),
  17815. default: true
  17816. },
  17817. ]
  17818. ))
  17819. characterMakers.push(() => makeCharacter(
  17820. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17821. {
  17822. front: {
  17823. height: math.unit(8, "feet"),
  17824. weight: math.unit(225, "lb"),
  17825. name: "Front",
  17826. image: {
  17827. source: "./media/characters/talana/front.svg",
  17828. extra: 1410 / 1300,
  17829. bottom: 0.015
  17830. }
  17831. },
  17832. frontDressed: {
  17833. height: math.unit(8, "feet"),
  17834. weight: math.unit(225, "lb"),
  17835. name: "Front (Dressed",
  17836. image: {
  17837. source: "./media/characters/talana/front-dressed.svg",
  17838. extra: 1410 / 1300,
  17839. bottom: 0.015
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(8, "feet"),
  17847. default: true
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17853. {
  17854. side: {
  17855. height: math.unit(7.2, "feet"),
  17856. weight: math.unit(150, "lb"),
  17857. name: "Side",
  17858. image: {
  17859. source: "./media/characters/xeauvok/side.svg",
  17860. extra: 1975 / 1523,
  17861. bottom: 0.07
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Normal",
  17868. height: math.unit(7.2, "feet"),
  17869. default: true
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17875. {
  17876. side: {
  17877. height: math.unit(10, "feet"),
  17878. weight: math.unit(900, "kg"),
  17879. name: "Side",
  17880. image: {
  17881. source: "./media/characters/zara/side.svg",
  17882. extra: 504 / 498
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(10, "feet"),
  17890. default: true
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17896. {
  17897. side: {
  17898. height: math.unit(6, "feet"),
  17899. weight: math.unit(150, "lb"),
  17900. name: "Side",
  17901. image: {
  17902. source: "./media/characters/richard-dragon/side.svg",
  17903. extra: 845 / 340,
  17904. bottom: 0.017
  17905. }
  17906. },
  17907. maw: {
  17908. height: math.unit(2.97, "feet"),
  17909. name: "Maw",
  17910. image: {
  17911. source: "./media/characters/richard-dragon/maw.svg"
  17912. }
  17913. },
  17914. },
  17915. [
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17920. {
  17921. front: {
  17922. height: math.unit(4, "feet"),
  17923. weight: math.unit(100, "lb"),
  17924. name: "Front",
  17925. image: {
  17926. source: "./media/characters/richard-smeargle/front.svg",
  17927. extra: 2952 / 2820,
  17928. bottom: 0.028
  17929. }
  17930. },
  17931. },
  17932. [
  17933. {
  17934. name: "Normal",
  17935. height: math.unit(4, "feet"),
  17936. default: true
  17937. },
  17938. {
  17939. name: "Dynamax",
  17940. height: math.unit(20, "meters")
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17946. {
  17947. front: {
  17948. height: math.unit(6, "feet"),
  17949. weight: math.unit(110, "lb"),
  17950. name: "Front",
  17951. image: {
  17952. source: "./media/characters/klay/front.svg",
  17953. extra: 962 / 883,
  17954. bottom: 0.04
  17955. }
  17956. },
  17957. back: {
  17958. height: math.unit(6, "feet"),
  17959. weight: math.unit(110, "lb"),
  17960. name: "Back",
  17961. image: {
  17962. source: "./media/characters/klay/back.svg",
  17963. extra: 962 / 883
  17964. }
  17965. },
  17966. beans: {
  17967. height: math.unit(1.15, "feet"),
  17968. name: "Beans",
  17969. image: {
  17970. source: "./media/characters/klay/beans.svg"
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Micro",
  17977. height: math.unit(6, "inches")
  17978. },
  17979. {
  17980. name: "Mini",
  17981. height: math.unit(3, "feet")
  17982. },
  17983. {
  17984. name: "Normal",
  17985. height: math.unit(6, "feet"),
  17986. default: true
  17987. },
  17988. {
  17989. name: "Big",
  17990. height: math.unit(25, "feet")
  17991. },
  17992. {
  17993. name: "Macro",
  17994. height: math.unit(100, "feet")
  17995. },
  17996. {
  17997. name: "Megamacro",
  17998. height: math.unit(400, "feet")
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18004. {
  18005. front: {
  18006. height: math.unit(6, "feet"),
  18007. weight: math.unit(160, "lb"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/marcus/front.svg",
  18011. extra: 734 / 676,
  18012. bottom: 0.03
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Little",
  18019. height: math.unit(6, "feet")
  18020. },
  18021. {
  18022. name: "Normal",
  18023. height: math.unit(110, "feet"),
  18024. default: true
  18025. },
  18026. {
  18027. name: "Macro",
  18028. height: math.unit(250, "feet")
  18029. },
  18030. {
  18031. name: "Megamacro",
  18032. height: math.unit(1000, "feet")
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18038. {
  18039. front: {
  18040. height: math.unit(7, "feet"),
  18041. weight: math.unit(275, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/claude-delroute/front.svg",
  18045. extra: 230 / 214,
  18046. bottom: 0.007
  18047. }
  18048. },
  18049. side: {
  18050. height: math.unit(7, "feet"),
  18051. weight: math.unit(275, "lb"),
  18052. name: "Side",
  18053. image: {
  18054. source: "./media/characters/claude-delroute/side.svg",
  18055. extra: 222 / 214,
  18056. bottom: 0.01
  18057. }
  18058. },
  18059. back: {
  18060. height: math.unit(7, "feet"),
  18061. weight: math.unit(275, "lb"),
  18062. name: "Back",
  18063. image: {
  18064. source: "./media/characters/claude-delroute/back.svg",
  18065. extra: 230 / 214,
  18066. bottom: 0.015
  18067. }
  18068. },
  18069. maw: {
  18070. height: math.unit(0.6407, "meters"),
  18071. name: "Maw",
  18072. image: {
  18073. source: "./media/characters/claude-delroute/maw.svg"
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(7, "feet"),
  18081. default: true
  18082. },
  18083. {
  18084. name: "Lorge",
  18085. height: math.unit(20, "feet")
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(8 + 4 / 12, "feet"),
  18094. weight: math.unit(600, "lb"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/dragonien/front.svg",
  18098. extra: 100 / 94,
  18099. bottom: 3.3 / 103.3445
  18100. }
  18101. },
  18102. back: {
  18103. height: math.unit(8 + 4 / 12, "feet"),
  18104. weight: math.unit(600, "lb"),
  18105. name: "Back",
  18106. image: {
  18107. source: "./media/characters/dragonien/back.svg",
  18108. extra: 776 / 746,
  18109. bottom: 6.4 / 782.0616
  18110. }
  18111. },
  18112. foot: {
  18113. height: math.unit(1.54, "feet"),
  18114. name: "Foot",
  18115. image: {
  18116. source: "./media/characters/dragonien/foot.svg",
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(8 + 4 / 12, "feet"),
  18124. default: true
  18125. },
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(200, "feet")
  18129. },
  18130. {
  18131. name: "Megamacro",
  18132. height: math.unit(1, "mile")
  18133. },
  18134. {
  18135. name: "Gigamacro",
  18136. height: math.unit(1000, "miles")
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(5 + 2 / 12, "feet"),
  18145. weight: math.unit(110, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/desta/front.svg",
  18149. extra: 767 / 726,
  18150. bottom: 11.7 / 779
  18151. }
  18152. },
  18153. back: {
  18154. height: math.unit(5 + 2 / 12, "feet"),
  18155. weight: math.unit(110, "lb"),
  18156. name: "Back",
  18157. image: {
  18158. source: "./media/characters/desta/back.svg",
  18159. extra: 777 / 728,
  18160. bottom: 6 / 784
  18161. }
  18162. },
  18163. frontAlt: {
  18164. height: math.unit(5 + 2 / 12, "feet"),
  18165. weight: math.unit(110, "lb"),
  18166. name: "Front",
  18167. image: {
  18168. source: "./media/characters/desta/front-alt.svg",
  18169. extra: 1482 / 1417
  18170. }
  18171. },
  18172. side: {
  18173. height: math.unit(5 + 2 / 12, "feet"),
  18174. weight: math.unit(110, "lb"),
  18175. name: "Side",
  18176. image: {
  18177. source: "./media/characters/desta/side.svg",
  18178. extra: 2579 / 2491,
  18179. bottom: 0.053
  18180. }
  18181. },
  18182. },
  18183. [
  18184. {
  18185. name: "Micro",
  18186. height: math.unit(6, "inches")
  18187. },
  18188. {
  18189. name: "Normal",
  18190. height: math.unit(5 + 2 / 12, "feet"),
  18191. default: true
  18192. },
  18193. {
  18194. name: "Macro",
  18195. height: math.unit(62, "feet")
  18196. },
  18197. {
  18198. name: "Megamacro",
  18199. height: math.unit(1800, "feet")
  18200. },
  18201. ]
  18202. ))
  18203. characterMakers.push(() => makeCharacter(
  18204. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18205. {
  18206. front: {
  18207. height: math.unit(10, "feet"),
  18208. weight: math.unit(700, "lb"),
  18209. name: "Front",
  18210. image: {
  18211. source: "./media/characters/storm-alystar/front.svg",
  18212. extra: 2112 / 1898,
  18213. bottom: 0.034
  18214. }
  18215. },
  18216. },
  18217. [
  18218. {
  18219. name: "Micro",
  18220. height: math.unit(3.5, "inches")
  18221. },
  18222. {
  18223. name: "Normal",
  18224. height: math.unit(10, "feet"),
  18225. default: true
  18226. },
  18227. {
  18228. name: "Macro",
  18229. height: math.unit(400, "feet")
  18230. },
  18231. {
  18232. name: "Deific",
  18233. height: math.unit(60, "miles")
  18234. },
  18235. ]
  18236. ))
  18237. characterMakers.push(() => makeCharacter(
  18238. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18239. {
  18240. front: {
  18241. height: math.unit(2.35, "meters"),
  18242. weight: math.unit(119, "kg"),
  18243. name: "Front",
  18244. image: {
  18245. source: "./media/characters/ilia/front.svg",
  18246. extra: 1285 / 1255,
  18247. bottom: 0.06
  18248. }
  18249. },
  18250. },
  18251. [
  18252. {
  18253. name: "Normal",
  18254. height: math.unit(2.35, "meters")
  18255. },
  18256. {
  18257. name: "Macro",
  18258. height: math.unit(140, "meters"),
  18259. default: true
  18260. },
  18261. {
  18262. name: "Megamacro",
  18263. height: math.unit(100, "miles")
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18269. {
  18270. front: {
  18271. height: math.unit(6 + 5 / 12, "feet"),
  18272. weight: math.unit(190, "lb"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/kingdead/front.svg",
  18276. extra: 1228 / 1177
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Micro",
  18283. height: math.unit(7, "inches")
  18284. },
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(6 + 5 / 12, "feet")
  18288. },
  18289. {
  18290. name: "Macro",
  18291. height: math.unit(150, "feet"),
  18292. default: true
  18293. },
  18294. {
  18295. name: "Megamacro",
  18296. height: math.unit(200, "miles")
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(8, "feet"),
  18305. weight: math.unit(600, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/kyrehx/front.svg",
  18309. extra: 1195 / 1095,
  18310. bottom: 0.034
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Micro",
  18317. height: math.unit(2, "inches")
  18318. },
  18319. {
  18320. name: "Normal",
  18321. height: math.unit(8, "feet"),
  18322. default: true
  18323. },
  18324. {
  18325. name: "Macro",
  18326. height: math.unit(255, "feet")
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18332. {
  18333. front: {
  18334. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18335. weight: math.unit(184, "lb"),
  18336. name: "Front",
  18337. image: {
  18338. source: "./media/characters/xang/front.svg",
  18339. extra: 845 / 755
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Normal",
  18346. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18347. default: true
  18348. },
  18349. {
  18350. name: "Macro",
  18351. height: math.unit(0.935 * 146, "feet")
  18352. },
  18353. {
  18354. name: "Megamacro",
  18355. height: math.unit(0.935 * 3, "miles")
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18361. {
  18362. frontDressed: {
  18363. height: math.unit(5 + 7 / 12, "feet"),
  18364. weight: math.unit(140, "lb"),
  18365. name: "Front (Dressed)",
  18366. image: {
  18367. source: "./media/characters/doc-weardno/front-dressed.svg",
  18368. extra: 263 / 234
  18369. }
  18370. },
  18371. backDressed: {
  18372. height: math.unit(5 + 7 / 12, "feet"),
  18373. weight: math.unit(140, "lb"),
  18374. name: "Back (Dressed)",
  18375. image: {
  18376. source: "./media/characters/doc-weardno/back-dressed.svg",
  18377. extra: 266 / 238
  18378. }
  18379. },
  18380. front: {
  18381. height: math.unit(5 + 7 / 12, "feet"),
  18382. weight: math.unit(140, "lb"),
  18383. name: "Front",
  18384. image: {
  18385. source: "./media/characters/doc-weardno/front.svg",
  18386. extra: 254 / 233
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Micro",
  18393. height: math.unit(3, "inches")
  18394. },
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(5 + 7 / 12, "feet"),
  18398. default: true
  18399. },
  18400. {
  18401. name: "Macro",
  18402. height: math.unit(25, "feet")
  18403. },
  18404. {
  18405. name: "Megamacro",
  18406. height: math.unit(2, "miles")
  18407. },
  18408. ]
  18409. ))
  18410. characterMakers.push(() => makeCharacter(
  18411. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18412. {
  18413. front: {
  18414. height: math.unit(6 + 2 / 12, "feet"),
  18415. weight: math.unit(153, "lb"),
  18416. name: "Front",
  18417. image: {
  18418. source: "./media/characters/seth-whilst/front.svg",
  18419. bottom: 0.07
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Micro",
  18426. height: math.unit(5, "inches")
  18427. },
  18428. {
  18429. name: "Normal",
  18430. height: math.unit(6 + 2 / 12, "feet"),
  18431. default: true
  18432. },
  18433. ]
  18434. ))
  18435. characterMakers.push(() => makeCharacter(
  18436. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18437. {
  18438. front: {
  18439. height: math.unit(3, "inches"),
  18440. weight: math.unit(8, "grams"),
  18441. name: "Front",
  18442. image: {
  18443. source: "./media/characters/pocket-jabari/front.svg",
  18444. extra: 1024 / 974,
  18445. bottom: 0.039
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Minimicro",
  18452. height: math.unit(8, "mm")
  18453. },
  18454. {
  18455. name: "Micro",
  18456. height: math.unit(3, "inches"),
  18457. default: true
  18458. },
  18459. {
  18460. name: "Normal",
  18461. height: math.unit(3, "feet")
  18462. },
  18463. ]
  18464. ))
  18465. characterMakers.push(() => makeCharacter(
  18466. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18467. {
  18468. front: {
  18469. height: math.unit(15, "feet"),
  18470. weight: math.unit(3280, "lb"),
  18471. name: "Front",
  18472. image: {
  18473. source: "./media/characters/sapphy/front.svg",
  18474. extra: 671 / 577,
  18475. bottom: 0.085
  18476. }
  18477. },
  18478. back: {
  18479. height: math.unit(15, "feet"),
  18480. weight: math.unit(3280, "lb"),
  18481. name: "Back",
  18482. image: {
  18483. source: "./media/characters/sapphy/back.svg",
  18484. extra: 631 / 607,
  18485. bottom: 0.045
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Normal",
  18492. height: math.unit(15, "feet")
  18493. },
  18494. {
  18495. name: "Casual Macro",
  18496. height: math.unit(120, "feet")
  18497. },
  18498. {
  18499. name: "Macro",
  18500. height: math.unit(2150, "feet"),
  18501. default: true
  18502. },
  18503. {
  18504. name: "Megamacro",
  18505. height: math.unit(8, "miles")
  18506. },
  18507. {
  18508. name: "Galaxy Mom",
  18509. height: math.unit(6, "megalightyears")
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18515. {
  18516. front: {
  18517. height: math.unit(6, "feet"),
  18518. weight: math.unit(170, "lb"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/kiro/front.svg",
  18522. extra: 1064 / 1012,
  18523. bottom: 0.052
  18524. }
  18525. },
  18526. },
  18527. [
  18528. {
  18529. name: "Micro",
  18530. height: math.unit(6, "inches")
  18531. },
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(6, "feet"),
  18535. default: true
  18536. },
  18537. {
  18538. name: "Macro",
  18539. height: math.unit(72, "feet")
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(5 + 9 / 12, "feet"),
  18548. weight: math.unit(175, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/irishfox/front.svg",
  18552. extra: 1912 / 1680,
  18553. bottom: 0.02
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Nano",
  18560. height: math.unit(1, "mm")
  18561. },
  18562. {
  18563. name: "Micro",
  18564. height: math.unit(2, "inches")
  18565. },
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(5 + 9 / 12, "feet"),
  18569. default: true
  18570. },
  18571. {
  18572. name: "Macro",
  18573. height: math.unit(45, "feet")
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18579. {
  18580. front: {
  18581. height: math.unit(6 + 1 / 12, "feet"),
  18582. weight: math.unit(75, "lb"),
  18583. name: "Front",
  18584. image: {
  18585. source: "./media/characters/aronai-sieyes/front.svg",
  18586. extra: 1556 / 1480,
  18587. bottom: 0.015
  18588. }
  18589. },
  18590. side: {
  18591. height: math.unit(6 + 1 / 12, "feet"),
  18592. weight: math.unit(75, "lb"),
  18593. name: "Side",
  18594. image: {
  18595. source: "./media/characters/aronai-sieyes/side.svg",
  18596. extra: 1433 / 1390,
  18597. bottom: 0.0393
  18598. }
  18599. },
  18600. back: {
  18601. height: math.unit(6 + 1 / 12, "feet"),
  18602. weight: math.unit(75, "lb"),
  18603. name: "Back",
  18604. image: {
  18605. source: "./media/characters/aronai-sieyes/back.svg",
  18606. extra: 1544 / 1494,
  18607. bottom: 0.02
  18608. }
  18609. },
  18610. frontClothed: {
  18611. height: math.unit(6 + 1 / 12, "feet"),
  18612. weight: math.unit(75, "lb"),
  18613. name: "Front (Clothed)",
  18614. image: {
  18615. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18616. extra: 1582 / 1527
  18617. }
  18618. },
  18619. feral: {
  18620. height: math.unit(18, "feet"),
  18621. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18622. name: "Feral",
  18623. image: {
  18624. source: "./media/characters/aronai-sieyes/feral.svg",
  18625. extra: 1530 / 1240,
  18626. bottom: 0.035
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Micro",
  18633. height: math.unit(2, "inches")
  18634. },
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(6 + 1 / 12, "feet"),
  18638. default: true
  18639. }
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18644. {
  18645. front: {
  18646. height: math.unit(12, "feet"),
  18647. weight: math.unit(410, "kg"),
  18648. name: "Front",
  18649. image: {
  18650. source: "./media/characters/xuna/front.svg",
  18651. extra: 2184 / 1980
  18652. }
  18653. },
  18654. side: {
  18655. height: math.unit(12, "feet"),
  18656. weight: math.unit(410, "kg"),
  18657. name: "Side",
  18658. image: {
  18659. source: "./media/characters/xuna/side.svg",
  18660. extra: 2184 / 1980
  18661. }
  18662. },
  18663. back: {
  18664. height: math.unit(12, "feet"),
  18665. weight: math.unit(410, "kg"),
  18666. name: "Back",
  18667. image: {
  18668. source: "./media/characters/xuna/back.svg",
  18669. extra: 2184 / 1980
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Nano glow",
  18676. height: math.unit(10, "nm")
  18677. },
  18678. {
  18679. name: "Micro floof",
  18680. height: math.unit(0.3, "m")
  18681. },
  18682. {
  18683. name: "Huggable softy boi",
  18684. height: math.unit(3.6576, "m"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Admirable floof",
  18689. height: math.unit(80, "meters")
  18690. },
  18691. {
  18692. name: "Gentle macro",
  18693. height: math.unit(300, "meters")
  18694. },
  18695. {
  18696. name: "Very careful floof",
  18697. height: math.unit(3200, "meters")
  18698. },
  18699. {
  18700. name: "The mega floof",
  18701. height: math.unit(36000, "meters")
  18702. },
  18703. {
  18704. name: "Giga-fur-Wicker",
  18705. height: math.unit(4800000, "meters")
  18706. },
  18707. {
  18708. name: "Licky world",
  18709. height: math.unit(20000000, "meters")
  18710. },
  18711. {
  18712. name: "Floofy cyan sun",
  18713. height: math.unit(1500000000, "meters")
  18714. },
  18715. {
  18716. name: "Milky Wicker",
  18717. height: math.unit(1000000000000000000000, "meters")
  18718. },
  18719. {
  18720. name: "The observing Wicker",
  18721. height: math.unit(999999999999999999999999999, "meters")
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(5 + 9 / 12, "feet"),
  18730. weight: math.unit(150, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/arokha-sieyes/front.svg",
  18734. extra: 1425 / 1284,
  18735. bottom: 0.05
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(5 + 9 / 12, "feet")
  18743. },
  18744. {
  18745. name: "Macro",
  18746. height: math.unit(30, "meters"),
  18747. default: true
  18748. },
  18749. ]
  18750. ))
  18751. characterMakers.push(() => makeCharacter(
  18752. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18753. {
  18754. front: {
  18755. height: math.unit(6, "feet"),
  18756. weight: math.unit(180, "lb"),
  18757. name: "Front",
  18758. image: {
  18759. source: "./media/characters/arokh-sieyes/front.svg",
  18760. extra: 1830 / 1769,
  18761. bottom: 0.01
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(6, "feet")
  18769. },
  18770. {
  18771. name: "Macro",
  18772. height: math.unit(30, "meters"),
  18773. default: true
  18774. },
  18775. ]
  18776. ))
  18777. characterMakers.push(() => makeCharacter(
  18778. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18779. {
  18780. side: {
  18781. height: math.unit(13 + 1 / 12, "feet"),
  18782. weight: math.unit(8.5, "tonnes"),
  18783. name: "Side",
  18784. image: {
  18785. source: "./media/characters/goldeneye/side.svg",
  18786. extra: 1182 / 778,
  18787. bottom: 0.067
  18788. }
  18789. },
  18790. paw: {
  18791. height: math.unit(3.4, "feet"),
  18792. name: "Paw",
  18793. image: {
  18794. source: "./media/characters/goldeneye/paw.svg"
  18795. }
  18796. },
  18797. },
  18798. [
  18799. {
  18800. name: "Normal",
  18801. height: math.unit(13 + 1 / 12, "feet"),
  18802. default: true
  18803. },
  18804. ]
  18805. ))
  18806. characterMakers.push(() => makeCharacter(
  18807. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18808. {
  18809. front: {
  18810. height: math.unit(6 + 1 / 12, "feet"),
  18811. weight: math.unit(210, "lb"),
  18812. name: "Front",
  18813. image: {
  18814. source: "./media/characters/leonardo-lycheborne/front.svg",
  18815. extra: 390 / 365,
  18816. bottom: 0.032
  18817. }
  18818. },
  18819. side: {
  18820. height: math.unit(6 + 1 / 12, "feet"),
  18821. weight: math.unit(210, "lb"),
  18822. name: "Side",
  18823. image: {
  18824. source: "./media/characters/leonardo-lycheborne/side.svg",
  18825. extra: 390 / 365,
  18826. bottom: 0.005
  18827. }
  18828. },
  18829. back: {
  18830. height: math.unit(6 + 1 / 12, "feet"),
  18831. weight: math.unit(210, "lb"),
  18832. name: "Back",
  18833. image: {
  18834. source: "./media/characters/leonardo-lycheborne/back.svg",
  18835. extra: 392 / 366,
  18836. bottom: 0.01
  18837. }
  18838. },
  18839. hand: {
  18840. height: math.unit(1.08, "feet"),
  18841. name: "Hand",
  18842. image: {
  18843. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18844. }
  18845. },
  18846. foot: {
  18847. height: math.unit(1.32, "feet"),
  18848. name: "Foot",
  18849. image: {
  18850. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18851. }
  18852. },
  18853. were: {
  18854. height: math.unit(20, "feet"),
  18855. weight: math.unit(7800, "lb"),
  18856. name: "Were",
  18857. image: {
  18858. source: "./media/characters/leonardo-lycheborne/were.svg",
  18859. extra: 308 / 294,
  18860. bottom: 0.048
  18861. }
  18862. },
  18863. feral: {
  18864. height: math.unit(7.5, "feet"),
  18865. weight: math.unit(600, "lb"),
  18866. name: "Feral",
  18867. image: {
  18868. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18869. extra: 210 / 186,
  18870. bottom: 0.108
  18871. }
  18872. },
  18873. taur: {
  18874. height: math.unit(11, "feet"),
  18875. weight: math.unit(3300, "lb"),
  18876. name: "Taur",
  18877. image: {
  18878. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18879. extra: 320 / 303,
  18880. bottom: 0.025
  18881. }
  18882. },
  18883. barghest: {
  18884. height: math.unit(11, "feet"),
  18885. weight: math.unit(1300, "lb"),
  18886. name: "Barghest",
  18887. image: {
  18888. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18889. extra: 323 / 302,
  18890. bottom: 0.027
  18891. }
  18892. },
  18893. dick: {
  18894. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18895. name: "Dick",
  18896. image: {
  18897. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18898. }
  18899. },
  18900. dickWere: {
  18901. height: math.unit((20) / 3.8, "feet"),
  18902. name: "Dick (Were)",
  18903. image: {
  18904. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(6 + 1 / 12, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18918. {
  18919. front: {
  18920. height: math.unit(10, "feet"),
  18921. weight: math.unit(350, "lb"),
  18922. name: "Front",
  18923. image: {
  18924. source: "./media/characters/jet/front.svg",
  18925. extra: 2050 / 1980,
  18926. bottom: 0.013
  18927. }
  18928. },
  18929. back: {
  18930. height: math.unit(10, "feet"),
  18931. weight: math.unit(350, "lb"),
  18932. name: "Back",
  18933. image: {
  18934. source: "./media/characters/jet/back.svg",
  18935. extra: 2050 / 1980,
  18936. bottom: 0.013
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Micro",
  18943. height: math.unit(6, "inches")
  18944. },
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(10, "feet"),
  18948. default: true
  18949. },
  18950. {
  18951. name: "Macro",
  18952. height: math.unit(100, "feet")
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(15, "feet"),
  18961. weight: math.unit(2800, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/tanarath/front.svg",
  18965. extra: 2392 / 2220,
  18966. bottom: 0.03
  18967. }
  18968. },
  18969. back: {
  18970. height: math.unit(15, "feet"),
  18971. weight: math.unit(2800, "lb"),
  18972. name: "Back",
  18973. image: {
  18974. source: "./media/characters/tanarath/back.svg",
  18975. extra: 2392 / 2220,
  18976. bottom: 0.03
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(15, "feet"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18990. {
  18991. front: {
  18992. height: math.unit(7 + 1 / 12, "feet"),
  18993. weight: math.unit(175, "lb"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/patty-cattybatty/front.svg",
  18997. extra: 908 / 874,
  18998. bottom: 0.025
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Micro",
  19005. height: math.unit(1, "inch")
  19006. },
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(7 + 1 / 12, "feet")
  19010. },
  19011. {
  19012. name: "Mini Macro",
  19013. height: math.unit(155, "feet")
  19014. },
  19015. {
  19016. name: "Macro",
  19017. height: math.unit(1077, "feet")
  19018. },
  19019. {
  19020. name: "Mega Macro",
  19021. height: math.unit(47650, "feet"),
  19022. default: true
  19023. },
  19024. {
  19025. name: "Giga Macro",
  19026. height: math.unit(440, "miles")
  19027. },
  19028. {
  19029. name: "Tera Macro",
  19030. height: math.unit(8700, "miles")
  19031. },
  19032. {
  19033. name: "Planetary Macro",
  19034. height: math.unit(32700, "miles")
  19035. },
  19036. {
  19037. name: "Solar Macro",
  19038. height: math.unit(550000, "miles")
  19039. },
  19040. {
  19041. name: "Celestial Macro",
  19042. height: math.unit(2.5, "AU")
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19048. {
  19049. front: {
  19050. height: math.unit(4 + 5 / 12, "feet"),
  19051. weight: math.unit(90, "lb"),
  19052. name: "Front",
  19053. image: {
  19054. source: "./media/characters/cappu/front.svg",
  19055. extra: 1247 / 1152,
  19056. bottom: 0.012
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(4 + 5 / 12, "feet"),
  19064. default: true
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19070. {
  19071. frontDressed: {
  19072. height: math.unit(70, "cm"),
  19073. weight: math.unit(6, "kg"),
  19074. name: "Front (Dressed)",
  19075. image: {
  19076. source: "./media/characters/sebi/front-dressed.svg",
  19077. extra: 713.5 / 686.5,
  19078. bottom: 0.003
  19079. }
  19080. },
  19081. front: {
  19082. height: math.unit(70, "cm"),
  19083. weight: math.unit(5, "kg"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/sebi/front.svg",
  19087. extra: 713.5 / 686.5,
  19088. bottom: 0.003
  19089. }
  19090. }
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(70, "cm"),
  19096. default: true
  19097. },
  19098. {
  19099. name: "Macro",
  19100. height: math.unit(8, "meters")
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(6, "feet"),
  19109. weight: math.unit(150, "lb"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/typhek/front.svg",
  19113. extra: 1948 / 1929,
  19114. bottom: 0.025
  19115. }
  19116. },
  19117. side: {
  19118. height: math.unit(6, "feet"),
  19119. weight: math.unit(150, "lb"),
  19120. name: "Side",
  19121. image: {
  19122. source: "./media/characters/typhek/side.svg",
  19123. extra: 2034 / 2010,
  19124. bottom: 0.003
  19125. }
  19126. },
  19127. back: {
  19128. height: math.unit(6, "feet"),
  19129. weight: math.unit(150, "lb"),
  19130. name: "Back",
  19131. image: {
  19132. source: "./media/characters/typhek/back.svg",
  19133. extra: 2005 / 1978,
  19134. bottom: 0.004
  19135. }
  19136. },
  19137. palm: {
  19138. height: math.unit(1.2, "feet"),
  19139. name: "Palm",
  19140. image: {
  19141. source: "./media/characters/typhek/palm.svg"
  19142. }
  19143. },
  19144. fist: {
  19145. height: math.unit(1.1, "feet"),
  19146. name: "Fist",
  19147. image: {
  19148. source: "./media/characters/typhek/fist.svg"
  19149. }
  19150. },
  19151. foot: {
  19152. height: math.unit(1.57, "feet"),
  19153. name: "Foot",
  19154. image: {
  19155. source: "./media/characters/typhek/foot.svg"
  19156. }
  19157. },
  19158. sole: {
  19159. height: math.unit(2.05, "feet"),
  19160. name: "Sole",
  19161. image: {
  19162. source: "./media/characters/typhek/sole.svg"
  19163. }
  19164. },
  19165. },
  19166. [
  19167. {
  19168. name: "Macro",
  19169. height: math.unit(40, "stories"),
  19170. default: true
  19171. },
  19172. {
  19173. name: "Megamacro",
  19174. height: math.unit(1, "mile")
  19175. },
  19176. {
  19177. name: "Gigamacro",
  19178. height: math.unit(4000, "solarradii")
  19179. },
  19180. {
  19181. name: "Universal",
  19182. height: math.unit(1.1, "universes")
  19183. }
  19184. ]
  19185. ))
  19186. characterMakers.push(() => makeCharacter(
  19187. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19188. {
  19189. side: {
  19190. height: math.unit(5 + 7 / 12, "feet"),
  19191. weight: math.unit(150, "lb"),
  19192. name: "Side",
  19193. image: {
  19194. source: "./media/characters/kassy/side.svg",
  19195. extra: 1280 / 1225,
  19196. bottom: 0.002
  19197. }
  19198. },
  19199. front: {
  19200. height: math.unit(5 + 7 / 12, "feet"),
  19201. weight: math.unit(150, "lb"),
  19202. name: "Front",
  19203. image: {
  19204. source: "./media/characters/kassy/front.svg",
  19205. extra: 1280 / 1225,
  19206. bottom: 0.025
  19207. }
  19208. },
  19209. back: {
  19210. height: math.unit(5 + 7 / 12, "feet"),
  19211. weight: math.unit(150, "lb"),
  19212. name: "Back",
  19213. image: {
  19214. source: "./media/characters/kassy/back.svg",
  19215. extra: 1280 / 1225,
  19216. bottom: 0.002
  19217. }
  19218. },
  19219. foot: {
  19220. height: math.unit(1.266, "feet"),
  19221. name: "Foot",
  19222. image: {
  19223. source: "./media/characters/kassy/foot.svg"
  19224. }
  19225. },
  19226. },
  19227. [
  19228. {
  19229. name: "Normal",
  19230. height: math.unit(5 + 7 / 12, "feet")
  19231. },
  19232. {
  19233. name: "Macro",
  19234. height: math.unit(137, "feet"),
  19235. default: true
  19236. },
  19237. {
  19238. name: "Megamacro",
  19239. height: math.unit(1, "mile")
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19245. {
  19246. front: {
  19247. height: math.unit(6 + 1 / 12, "feet"),
  19248. weight: math.unit(200, "lb"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/neil/front.svg",
  19252. extra: 1326 / 1250,
  19253. bottom: 0.023
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(6 + 1 / 12, "feet"),
  19261. default: true
  19262. },
  19263. {
  19264. name: "Macro",
  19265. height: math.unit(200, "feet")
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(5 + 9 / 12, "feet"),
  19274. weight: math.unit(190, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/atticus/front.svg",
  19278. extra: 2934 / 2785,
  19279. bottom: 0.025
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(5 + 9 / 12, "feet"),
  19287. default: true
  19288. },
  19289. {
  19290. name: "Macro",
  19291. height: math.unit(180, "feet")
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19297. {
  19298. side: {
  19299. height: math.unit(9, "feet"),
  19300. weight: math.unit(650, "lb"),
  19301. name: "Side",
  19302. image: {
  19303. source: "./media/characters/milo/side.svg",
  19304. extra: 2644 / 2310,
  19305. bottom: 0.032
  19306. }
  19307. },
  19308. },
  19309. [
  19310. {
  19311. name: "Normal",
  19312. height: math.unit(9, "feet"),
  19313. default: true
  19314. },
  19315. {
  19316. name: "Macro",
  19317. height: math.unit(300, "feet")
  19318. },
  19319. ]
  19320. ))
  19321. characterMakers.push(() => makeCharacter(
  19322. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19323. {
  19324. side: {
  19325. height: math.unit(8, "meters"),
  19326. weight: math.unit(90000, "kg"),
  19327. name: "Side",
  19328. image: {
  19329. source: "./media/characters/ijzer/side.svg",
  19330. extra: 2756 / 1600,
  19331. bottom: 0.01
  19332. }
  19333. },
  19334. },
  19335. [
  19336. {
  19337. name: "Small",
  19338. height: math.unit(3, "meters")
  19339. },
  19340. {
  19341. name: "Normal",
  19342. height: math.unit(8, "meters"),
  19343. default: true
  19344. },
  19345. {
  19346. name: "Normal+",
  19347. height: math.unit(10, "meters")
  19348. },
  19349. {
  19350. name: "Bigger",
  19351. height: math.unit(24, "meters")
  19352. },
  19353. {
  19354. name: "Huge",
  19355. height: math.unit(80, "meters")
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19361. {
  19362. front: {
  19363. height: math.unit(6 + 2 / 12, "feet"),
  19364. weight: math.unit(153, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/luca-cervicum/front.svg",
  19368. extra: 370 / 327,
  19369. bottom: 0.015
  19370. }
  19371. },
  19372. back: {
  19373. height: math.unit(6 + 2 / 12, "feet"),
  19374. weight: math.unit(153, "lb"),
  19375. name: "Back",
  19376. image: {
  19377. source: "./media/characters/luca-cervicum/back.svg",
  19378. extra: 367 / 333,
  19379. bottom: 0.005
  19380. }
  19381. },
  19382. frontGear: {
  19383. height: math.unit(6 + 2 / 12, "feet"),
  19384. weight: math.unit(173, "lb"),
  19385. name: "Front (Gear)",
  19386. image: {
  19387. source: "./media/characters/luca-cervicum/front-gear.svg",
  19388. extra: 377 / 333,
  19389. bottom: 0.006
  19390. }
  19391. },
  19392. },
  19393. [
  19394. {
  19395. name: "Normal",
  19396. height: math.unit(6 + 2 / 12, "feet"),
  19397. default: true
  19398. },
  19399. ]
  19400. ))
  19401. characterMakers.push(() => makeCharacter(
  19402. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19403. {
  19404. front: {
  19405. height: math.unit(6 + 1 / 12, "feet"),
  19406. weight: math.unit(304, "lb"),
  19407. name: "Front",
  19408. image: {
  19409. source: "./media/characters/oliver/front.svg",
  19410. extra: 157 / 143,
  19411. bottom: 0.08
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Normal",
  19418. height: math.unit(6 + 1 / 12, "feet"),
  19419. default: true
  19420. },
  19421. ]
  19422. ))
  19423. characterMakers.push(() => makeCharacter(
  19424. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19425. {
  19426. front: {
  19427. height: math.unit(5 + 7 / 12, "feet"),
  19428. weight: math.unit(140, "lb"),
  19429. name: "Front",
  19430. image: {
  19431. source: "./media/characters/shane/front.svg",
  19432. extra: 304 / 289,
  19433. bottom: 0.005
  19434. }
  19435. },
  19436. },
  19437. [
  19438. {
  19439. name: "Normal",
  19440. height: math.unit(5 + 7 / 12, "feet"),
  19441. default: true
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19447. {
  19448. front: {
  19449. height: math.unit(5 + 9 / 12, "feet"),
  19450. weight: math.unit(178, "lb"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/shin/front.svg",
  19454. extra: 159 / 151,
  19455. bottom: 0.015
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Normal",
  19462. height: math.unit(5 + 9 / 12, "feet"),
  19463. default: true
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(5 + 10 / 12, "feet"),
  19472. weight: math.unit(168, "lb"),
  19473. name: "Front",
  19474. image: {
  19475. source: "./media/characters/xerxes/front.svg",
  19476. extra: 282 / 260,
  19477. bottom: 0.045
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(5 + 10 / 12, "feet"),
  19485. default: true
  19486. },
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19491. {
  19492. front: {
  19493. height: math.unit(6 + 7 / 12, "feet"),
  19494. weight: math.unit(208, "lb"),
  19495. name: "Front",
  19496. image: {
  19497. source: "./media/characters/chaska/front.svg",
  19498. extra: 332 / 319,
  19499. bottom: 0.015
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Normal",
  19506. height: math.unit(6 + 7 / 12, "feet"),
  19507. default: true
  19508. },
  19509. ]
  19510. ))
  19511. characterMakers.push(() => makeCharacter(
  19512. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19513. {
  19514. front: {
  19515. height: math.unit(5 + 8 / 12, "feet"),
  19516. weight: math.unit(208, "lb"),
  19517. name: "Front",
  19518. image: {
  19519. source: "./media/characters/enuk/front.svg",
  19520. extra: 437 / 406,
  19521. bottom: 0.02
  19522. }
  19523. },
  19524. },
  19525. [
  19526. {
  19527. name: "Normal",
  19528. height: math.unit(5 + 8 / 12, "feet"),
  19529. default: true
  19530. },
  19531. ]
  19532. ))
  19533. characterMakers.push(() => makeCharacter(
  19534. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19535. {
  19536. front: {
  19537. height: math.unit(5 + 10 / 12, "feet"),
  19538. weight: math.unit(252, "lb"),
  19539. name: "Front",
  19540. image: {
  19541. source: "./media/characters/bruun/front.svg",
  19542. extra: 197 / 187,
  19543. bottom: 0.012
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(5 + 10 / 12, "feet"),
  19551. default: true
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19557. {
  19558. front: {
  19559. height: math.unit(6 + 10 / 12, "feet"),
  19560. weight: math.unit(255, "lb"),
  19561. name: "Front",
  19562. image: {
  19563. source: "./media/characters/alexeev/front.svg",
  19564. extra: 213 / 200,
  19565. bottom: 0.05
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(6 + 10 / 12, "feet"),
  19573. default: true
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19579. {
  19580. front: {
  19581. height: math.unit(2 + 8 / 12, "feet"),
  19582. weight: math.unit(22, "lb"),
  19583. name: "Front",
  19584. image: {
  19585. source: "./media/characters/evelyn/front.svg",
  19586. extra: 208 / 180
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Normal",
  19593. height: math.unit(2 + 8 / 12, "feet"),
  19594. default: true
  19595. },
  19596. ]
  19597. ))
  19598. characterMakers.push(() => makeCharacter(
  19599. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19600. {
  19601. front: {
  19602. height: math.unit(5 + 9 / 12, "feet"),
  19603. weight: math.unit(139, "lb"),
  19604. name: "Front",
  19605. image: {
  19606. source: "./media/characters/inca/front.svg",
  19607. extra: 294 / 291,
  19608. bottom: 0.03
  19609. }
  19610. },
  19611. },
  19612. [
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(5 + 9 / 12, "feet"),
  19616. default: true
  19617. },
  19618. ]
  19619. ))
  19620. characterMakers.push(() => makeCharacter(
  19621. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19622. {
  19623. front: {
  19624. height: math.unit(5 + 1 / 12, "feet"),
  19625. weight: math.unit(84, "lb"),
  19626. name: "Front",
  19627. image: {
  19628. source: "./media/characters/magdalene/front.svg",
  19629. extra: 293 / 273
  19630. }
  19631. },
  19632. },
  19633. [
  19634. {
  19635. name: "Normal",
  19636. height: math.unit(5 + 1 / 12, "feet"),
  19637. default: true
  19638. },
  19639. ]
  19640. ))
  19641. characterMakers.push(() => makeCharacter(
  19642. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19643. {
  19644. front: {
  19645. height: math.unit(6 + 3 / 12, "feet"),
  19646. weight: math.unit(185, "lb"),
  19647. name: "Front",
  19648. image: {
  19649. source: "./media/characters/mera/front.svg",
  19650. extra: 291 / 277,
  19651. bottom: 0.03
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Normal",
  19658. height: math.unit(6 + 3 / 12, "feet"),
  19659. default: true
  19660. },
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19665. {
  19666. front: {
  19667. height: math.unit(6 + 7 / 12, "feet"),
  19668. weight: math.unit(160, "lb"),
  19669. name: "Front",
  19670. image: {
  19671. source: "./media/characters/ceres/front.svg",
  19672. extra: 1023 / 950,
  19673. bottom: 0.027
  19674. }
  19675. },
  19676. back: {
  19677. height: math.unit(6 + 7 / 12, "feet"),
  19678. weight: math.unit(160, "lb"),
  19679. name: "Back",
  19680. image: {
  19681. source: "./media/characters/ceres/back.svg",
  19682. extra: 1023 / 950
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(6 + 7 / 12, "feet"),
  19690. default: true
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19696. {
  19697. front: {
  19698. height: math.unit(5 + 10 / 12, "feet"),
  19699. weight: math.unit(150, "lb"),
  19700. name: "Front",
  19701. image: {
  19702. source: "./media/characters/kris/front.svg",
  19703. extra: 885 / 803,
  19704. bottom: 0.03
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(5 + 10 / 12, "feet"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19718. {
  19719. front: {
  19720. height: math.unit(7, "feet"),
  19721. weight: math.unit(120, "kg"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/taluthus/front.svg",
  19725. extra: 903 / 833,
  19726. bottom: 0.015
  19727. }
  19728. },
  19729. },
  19730. [
  19731. {
  19732. name: "Normal",
  19733. height: math.unit(7, "feet"),
  19734. default: true
  19735. },
  19736. {
  19737. name: "Macro",
  19738. height: math.unit(300, "feet")
  19739. },
  19740. ]
  19741. ))
  19742. characterMakers.push(() => makeCharacter(
  19743. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19744. {
  19745. front: {
  19746. height: math.unit(5 + 9 / 12, "feet"),
  19747. weight: math.unit(145, "lb"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/dawn/front.svg",
  19751. extra: 2094 / 2016,
  19752. bottom: 0.025
  19753. }
  19754. },
  19755. back: {
  19756. height: math.unit(5 + 9 / 12, "feet"),
  19757. weight: math.unit(160, "lb"),
  19758. name: "Back",
  19759. image: {
  19760. source: "./media/characters/dawn/back.svg",
  19761. extra: 2112 / 2080,
  19762. bottom: 0.005
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Normal",
  19769. height: math.unit(6 + 7 / 12, "feet"),
  19770. default: true
  19771. },
  19772. ]
  19773. ))
  19774. characterMakers.push(() => makeCharacter(
  19775. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19776. {
  19777. anthro: {
  19778. height: math.unit(8 + 3 / 12, "feet"),
  19779. weight: math.unit(450, "lb"),
  19780. name: "Anthro",
  19781. image: {
  19782. source: "./media/characters/arador/anthro.svg",
  19783. extra: 1835 / 1718,
  19784. bottom: 0.025
  19785. }
  19786. },
  19787. feral: {
  19788. height: math.unit(4, "feet"),
  19789. weight: math.unit(200, "lb"),
  19790. name: "Feral",
  19791. image: {
  19792. source: "./media/characters/arador/feral.svg",
  19793. extra: 1683 / 1514,
  19794. bottom: 0.07
  19795. }
  19796. },
  19797. },
  19798. [
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(8 + 3 / 12, "feet")
  19802. },
  19803. {
  19804. name: "Macro",
  19805. height: math.unit(82.5, "feet"),
  19806. default: true
  19807. },
  19808. ]
  19809. ))
  19810. characterMakers.push(() => makeCharacter(
  19811. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19812. {
  19813. front: {
  19814. height: math.unit(5 + 10 / 12, "feet"),
  19815. weight: math.unit(125, "lb"),
  19816. name: "Front",
  19817. image: {
  19818. source: "./media/characters/dharsi/front.svg",
  19819. extra: 716 / 630,
  19820. bottom: 0.035
  19821. }
  19822. },
  19823. },
  19824. [
  19825. {
  19826. name: "Nano",
  19827. height: math.unit(100, "nm")
  19828. },
  19829. {
  19830. name: "Micro",
  19831. height: math.unit(2, "inches")
  19832. },
  19833. {
  19834. name: "Normal",
  19835. height: math.unit(5 + 10 / 12, "feet"),
  19836. default: true
  19837. },
  19838. {
  19839. name: "Macro",
  19840. height: math.unit(1000, "feet")
  19841. },
  19842. {
  19843. name: "Megamacro",
  19844. height: math.unit(10, "miles")
  19845. },
  19846. {
  19847. name: "Gigamacro",
  19848. height: math.unit(3000, "miles")
  19849. },
  19850. {
  19851. name: "Teramacro",
  19852. height: math.unit(500000, "miles")
  19853. },
  19854. {
  19855. name: "Teramacro+",
  19856. height: math.unit(30, "galaxies")
  19857. },
  19858. ]
  19859. ))
  19860. characterMakers.push(() => makeCharacter(
  19861. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19862. {
  19863. front: {
  19864. height: math.unit(6, "feet"),
  19865. weight: math.unit(150, "lb"),
  19866. name: "Front",
  19867. image: {
  19868. source: "./media/characters/deathy/front.svg",
  19869. extra: 1552 / 1463,
  19870. bottom: 0.025
  19871. }
  19872. },
  19873. side: {
  19874. height: math.unit(6, "feet"),
  19875. weight: math.unit(150, "lb"),
  19876. name: "Side",
  19877. image: {
  19878. source: "./media/characters/deathy/side.svg",
  19879. extra: 1604 / 1455,
  19880. bottom: 0.025
  19881. }
  19882. },
  19883. back: {
  19884. height: math.unit(6, "feet"),
  19885. weight: math.unit(150, "lb"),
  19886. name: "Back",
  19887. image: {
  19888. source: "./media/characters/deathy/back.svg",
  19889. extra: 1580 / 1463,
  19890. bottom: 0.005
  19891. }
  19892. },
  19893. },
  19894. [
  19895. {
  19896. name: "Micro",
  19897. height: math.unit(5, "millimeters")
  19898. },
  19899. {
  19900. name: "Normal",
  19901. height: math.unit(6 + 5 / 12, "feet"),
  19902. default: true
  19903. },
  19904. ]
  19905. ))
  19906. characterMakers.push(() => makeCharacter(
  19907. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19908. {
  19909. front: {
  19910. height: math.unit(16, "feet"),
  19911. weight: math.unit(4000, "lb"),
  19912. name: "Front",
  19913. image: {
  19914. source: "./media/characters/juniper/front.svg",
  19915. bottom: 0.04
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(16, "feet"),
  19923. default: true
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(6, "feet"),
  19932. weight: math.unit(150, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/hipster/front.svg",
  19936. extra: 1312 / 1209,
  19937. bottom: 0.025
  19938. }
  19939. },
  19940. back: {
  19941. height: math.unit(6, "feet"),
  19942. weight: math.unit(150, "lb"),
  19943. name: "Back",
  19944. image: {
  19945. source: "./media/characters/hipster/back.svg",
  19946. extra: 1281 / 1196,
  19947. bottom: 0.01
  19948. }
  19949. },
  19950. },
  19951. [
  19952. {
  19953. name: "Micro",
  19954. height: math.unit(1, "mm")
  19955. },
  19956. {
  19957. name: "Normal",
  19958. height: math.unit(4, "inches"),
  19959. default: true
  19960. },
  19961. {
  19962. name: "Macro",
  19963. height: math.unit(500, "feet")
  19964. },
  19965. {
  19966. name: "Megamacro",
  19967. height: math.unit(1000, "miles")
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(6, "feet"),
  19976. weight: math.unit(150, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/tendirmuldr/front.svg",
  19980. extra: 1878 / 1772,
  19981. bottom: 0.015
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Megamacro",
  19988. height: math.unit(1500, "miles"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19995. {
  19996. front: {
  19997. height: math.unit(14, "feet"),
  19998. weight: math.unit(12000, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/mort/front.svg",
  20002. extra: 365 / 318,
  20003. bottom: 0.01
  20004. }
  20005. },
  20006. side: {
  20007. height: math.unit(14, "feet"),
  20008. weight: math.unit(12000, "lb"),
  20009. name: "Side",
  20010. image: {
  20011. source: "./media/characters/mort/side.svg",
  20012. extra: 365 / 318,
  20013. bottom: 0.052
  20014. },
  20015. default: true
  20016. },
  20017. back: {
  20018. height: math.unit(14, "feet"),
  20019. weight: math.unit(12000, "lb"),
  20020. name: "Back",
  20021. image: {
  20022. source: "./media/characters/mort/back.svg",
  20023. extra: 371 / 332,
  20024. bottom: 0.18
  20025. }
  20026. },
  20027. },
  20028. [
  20029. {
  20030. name: "Normal",
  20031. height: math.unit(14, "feet"),
  20032. default: true
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20038. {
  20039. front: {
  20040. height: math.unit(8, "feet"),
  20041. weight: math.unit(1, "ton"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/lycoa/front.svg",
  20045. extra: 1875 / 1789,
  20046. bottom: 0.022
  20047. }
  20048. },
  20049. back: {
  20050. height: math.unit(8, "feet"),
  20051. weight: math.unit(1, "ton"),
  20052. name: "Back",
  20053. image: {
  20054. source: "./media/characters/lycoa/back.svg",
  20055. extra: 1835 / 1781,
  20056. bottom: 0.03
  20057. }
  20058. },
  20059. head: {
  20060. height: math.unit(2.1, "feet"),
  20061. name: "Head",
  20062. image: {
  20063. source: "./media/characters/lycoa/head.svg"
  20064. }
  20065. },
  20066. tailmaw: {
  20067. height: math.unit(1.9, "feet"),
  20068. name: "Tailmaw",
  20069. image: {
  20070. source: "./media/characters/lycoa/tailmaw.svg"
  20071. }
  20072. },
  20073. tentacles: {
  20074. height: math.unit(2.1, "feet"),
  20075. name: "Tentacles",
  20076. image: {
  20077. source: "./media/characters/lycoa/tentacles.svg"
  20078. }
  20079. },
  20080. dick: {
  20081. height: math.unit(1.73, "feet"),
  20082. name: "Dick",
  20083. image: {
  20084. source: "./media/characters/lycoa/dick.svg"
  20085. }
  20086. },
  20087. },
  20088. [
  20089. {
  20090. name: "Normal",
  20091. height: math.unit(8, "feet"),
  20092. default: true
  20093. },
  20094. {
  20095. name: "Macro",
  20096. height: math.unit(30, "feet")
  20097. },
  20098. ]
  20099. ))
  20100. characterMakers.push(() => makeCharacter(
  20101. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20102. {
  20103. front: {
  20104. height: math.unit(4 + 2 / 12, "feet"),
  20105. weight: math.unit(70, "lb"),
  20106. name: "Front",
  20107. image: {
  20108. source: "./media/characters/naldara/front.svg",
  20109. extra: 841 / 720,
  20110. bottom: 0.04
  20111. }
  20112. },
  20113. naga: {
  20114. height: math.unit(23, "feet"),
  20115. weight: math.unit(15000, "kg"),
  20116. name: "Naga",
  20117. image: {
  20118. source: "./media/characters/naldara/naga.svg",
  20119. extra: 3290 / 2959,
  20120. bottom: 124 / 3432
  20121. }
  20122. },
  20123. },
  20124. [
  20125. {
  20126. name: "Normal",
  20127. height: math.unit(4 + 2 / 12, "feet"),
  20128. default: true
  20129. },
  20130. ]
  20131. ))
  20132. characterMakers.push(() => makeCharacter(
  20133. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20134. {
  20135. front: {
  20136. height: math.unit(13 + 7 / 12, "feet"),
  20137. weight: math.unit(1500, "lb"),
  20138. name: "Front",
  20139. image: {
  20140. source: "./media/characters/briar/front.svg",
  20141. extra: 626 / 596,
  20142. bottom: 0.08
  20143. }
  20144. },
  20145. },
  20146. [
  20147. {
  20148. name: "Normal",
  20149. height: math.unit(13 + 7 / 12, "feet"),
  20150. default: true
  20151. },
  20152. ]
  20153. ))
  20154. characterMakers.push(() => makeCharacter(
  20155. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20156. {
  20157. side: {
  20158. height: math.unit(10, "feet"),
  20159. weight: math.unit(500, "lb"),
  20160. name: "Side",
  20161. image: {
  20162. source: "./media/characters/vanguard/side.svg",
  20163. extra: 502 / 425,
  20164. bottom: 0.087
  20165. }
  20166. },
  20167. },
  20168. [
  20169. {
  20170. name: "Normal",
  20171. height: math.unit(10, "feet"),
  20172. default: true
  20173. },
  20174. ]
  20175. ))
  20176. characterMakers.push(() => makeCharacter(
  20177. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20178. {
  20179. front: {
  20180. height: math.unit(7.5, "feet"),
  20181. weight: math.unit(2, "lb"),
  20182. name: "Front",
  20183. image: {
  20184. source: "./media/characters/artemis/front.svg",
  20185. extra: 1192 / 1075,
  20186. bottom: 0.07
  20187. }
  20188. },
  20189. frontNsfw: {
  20190. height: math.unit(7.5, "feet"),
  20191. weight: math.unit(2, "lb"),
  20192. name: "Front (NSFW)",
  20193. image: {
  20194. source: "./media/characters/artemis/front-nsfw.svg",
  20195. extra: 1192 / 1075,
  20196. bottom: 0.07
  20197. }
  20198. },
  20199. frontNsfwer: {
  20200. height: math.unit(7.5, "feet"),
  20201. weight: math.unit(2, "lb"),
  20202. name: "Front (NSFW-er)",
  20203. image: {
  20204. source: "./media/characters/artemis/front-nsfwer.svg",
  20205. extra: 1192 / 1075,
  20206. bottom: 0.07
  20207. }
  20208. },
  20209. side: {
  20210. height: math.unit(7.5, "feet"),
  20211. weight: math.unit(2, "lb"),
  20212. name: "Side",
  20213. image: {
  20214. source: "./media/characters/artemis/side.svg",
  20215. extra: 1192 / 1075,
  20216. bottom: 0.07
  20217. }
  20218. },
  20219. sideNsfw: {
  20220. height: math.unit(7.5, "feet"),
  20221. weight: math.unit(2, "lb"),
  20222. name: "Side (NSFW)",
  20223. image: {
  20224. source: "./media/characters/artemis/side-nsfw.svg",
  20225. extra: 1192 / 1075,
  20226. bottom: 0.07
  20227. }
  20228. },
  20229. sideNsfwer: {
  20230. height: math.unit(7.5, "feet"),
  20231. weight: math.unit(2, "lb"),
  20232. name: "Side (NSFW-er)",
  20233. image: {
  20234. source: "./media/characters/artemis/side-nsfwer.svg",
  20235. extra: 1192 / 1075,
  20236. bottom: 0.07
  20237. }
  20238. },
  20239. maw: {
  20240. height: math.unit(1.1, "feet"),
  20241. name: "Maw",
  20242. image: {
  20243. source: "./media/characters/artemis/maw.svg"
  20244. }
  20245. },
  20246. stomach: {
  20247. height: math.unit(0.95, "feet"),
  20248. name: "Stomach",
  20249. image: {
  20250. source: "./media/characters/artemis/stomach.svg"
  20251. }
  20252. },
  20253. dickCanine: {
  20254. height: math.unit(1, "feet"),
  20255. name: "Dick (Canine)",
  20256. image: {
  20257. source: "./media/characters/artemis/dick-canine.svg"
  20258. }
  20259. },
  20260. dickEquine: {
  20261. height: math.unit(0.85, "feet"),
  20262. name: "Dick (Equine)",
  20263. image: {
  20264. source: "./media/characters/artemis/dick-equine.svg"
  20265. }
  20266. },
  20267. dickExotic: {
  20268. height: math.unit(0.85, "feet"),
  20269. name: "Dick (Exotic)",
  20270. image: {
  20271. source: "./media/characters/artemis/dick-exotic.svg"
  20272. }
  20273. },
  20274. },
  20275. [
  20276. {
  20277. name: "Normal",
  20278. height: math.unit(7.5, "feet"),
  20279. default: true
  20280. },
  20281. {
  20282. name: "Enlarged",
  20283. height: math.unit(12, "feet")
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(5 + 3 / 12, "feet"),
  20292. weight: math.unit(160, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/kira/front.svg",
  20296. extra: 906 / 786,
  20297. bottom: 0.01
  20298. }
  20299. },
  20300. back: {
  20301. height: math.unit(5 + 3 / 12, "feet"),
  20302. weight: math.unit(160, "lb"),
  20303. name: "Back",
  20304. image: {
  20305. source: "./media/characters/kira/back.svg",
  20306. extra: 882 / 757,
  20307. bottom: 0.005
  20308. }
  20309. },
  20310. frontDressed: {
  20311. height: math.unit(5 + 3 / 12, "feet"),
  20312. weight: math.unit(160, "lb"),
  20313. name: "Front (Dressed)",
  20314. image: {
  20315. source: "./media/characters/kira/front-dressed.svg",
  20316. extra: 906 / 786,
  20317. bottom: 0.01
  20318. }
  20319. },
  20320. beans: {
  20321. height: math.unit(0.92, "feet"),
  20322. name: "Beans",
  20323. image: {
  20324. source: "./media/characters/kira/beans.svg"
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(5 + 3 / 12, "feet"),
  20332. default: true
  20333. },
  20334. ]
  20335. ))
  20336. characterMakers.push(() => makeCharacter(
  20337. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20338. {
  20339. front: {
  20340. height: math.unit(5 + 4 / 12, "feet"),
  20341. weight: math.unit(145, "lb"),
  20342. name: "Front",
  20343. image: {
  20344. source: "./media/characters/scramble/front.svg",
  20345. extra: 763 / 727,
  20346. bottom: 0.05
  20347. }
  20348. },
  20349. back: {
  20350. height: math.unit(5 + 4 / 12, "feet"),
  20351. weight: math.unit(145, "lb"),
  20352. name: "Back",
  20353. image: {
  20354. source: "./media/characters/scramble/back.svg",
  20355. extra: 826 / 737,
  20356. bottom: 0.002
  20357. }
  20358. },
  20359. },
  20360. [
  20361. {
  20362. name: "Normal",
  20363. height: math.unit(5 + 4 / 12, "feet"),
  20364. default: true
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20370. {
  20371. side: {
  20372. height: math.unit(6 + 2 / 12, "feet"),
  20373. weight: math.unit(190, "lb"),
  20374. name: "Side",
  20375. image: {
  20376. source: "./media/characters/biscuit/side.svg",
  20377. extra: 858 / 791,
  20378. bottom: 0.044
  20379. }
  20380. },
  20381. },
  20382. [
  20383. {
  20384. name: "Normal",
  20385. height: math.unit(6 + 2 / 12, "feet"),
  20386. default: true
  20387. },
  20388. ]
  20389. ))
  20390. characterMakers.push(() => makeCharacter(
  20391. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20392. {
  20393. front: {
  20394. height: math.unit(5 + 2 / 12, "feet"),
  20395. weight: math.unit(120, "lb"),
  20396. name: "Front",
  20397. image: {
  20398. source: "./media/characters/poffin/front.svg",
  20399. extra: 786 / 680,
  20400. bottom: 0.005
  20401. }
  20402. },
  20403. },
  20404. [
  20405. {
  20406. name: "Normal",
  20407. height: math.unit(5 + 2 / 12, "feet"),
  20408. default: true
  20409. },
  20410. ]
  20411. ))
  20412. characterMakers.push(() => makeCharacter(
  20413. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20414. {
  20415. front: {
  20416. height: math.unit(6 + 3 / 12, "feet"),
  20417. weight: math.unit(519, "lb"),
  20418. name: "Front",
  20419. image: {
  20420. source: "./media/characters/dhari/front.svg",
  20421. extra: 1048 / 946,
  20422. bottom: 0.015
  20423. }
  20424. },
  20425. back: {
  20426. height: math.unit(6 + 3 / 12, "feet"),
  20427. weight: math.unit(519, "lb"),
  20428. name: "Back",
  20429. image: {
  20430. source: "./media/characters/dhari/back.svg",
  20431. extra: 1048 / 931,
  20432. bottom: 0.005
  20433. }
  20434. },
  20435. frontDressed: {
  20436. height: math.unit(6 + 3 / 12, "feet"),
  20437. weight: math.unit(519, "lb"),
  20438. name: "Front (Dressed)",
  20439. image: {
  20440. source: "./media/characters/dhari/front-dressed.svg",
  20441. extra: 1713 / 1546,
  20442. bottom: 0.02
  20443. }
  20444. },
  20445. backDressed: {
  20446. height: math.unit(6 + 3 / 12, "feet"),
  20447. weight: math.unit(519, "lb"),
  20448. name: "Back (Dressed)",
  20449. image: {
  20450. source: "./media/characters/dhari/back-dressed.svg",
  20451. extra: 1699 / 1537,
  20452. bottom: 0.01
  20453. }
  20454. },
  20455. maw: {
  20456. height: math.unit(0.95, "feet"),
  20457. name: "Maw",
  20458. image: {
  20459. source: "./media/characters/dhari/maw.svg"
  20460. }
  20461. },
  20462. wereFront: {
  20463. height: math.unit(12 + 8 / 12, "feet"),
  20464. weight: math.unit(4000, "lb"),
  20465. name: "Front (Were)",
  20466. image: {
  20467. source: "./media/characters/dhari/were-front.svg",
  20468. extra: 1065 / 969,
  20469. bottom: 0.015
  20470. }
  20471. },
  20472. wereBack: {
  20473. height: math.unit(12 + 8 / 12, "feet"),
  20474. weight: math.unit(4000, "lb"),
  20475. name: "Back (Were)",
  20476. image: {
  20477. source: "./media/characters/dhari/were-back.svg",
  20478. extra: 1065 / 969,
  20479. bottom: 0.012
  20480. }
  20481. },
  20482. wereMaw: {
  20483. height: math.unit(0.625, "meters"),
  20484. name: "Maw (Were)",
  20485. image: {
  20486. source: "./media/characters/dhari/were-maw.svg"
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Normal",
  20493. height: math.unit(6 + 3 / 12, "feet"),
  20494. default: true
  20495. },
  20496. ]
  20497. ))
  20498. characterMakers.push(() => makeCharacter(
  20499. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20500. {
  20501. anthro: {
  20502. height: math.unit(5 + 7 / 12, "feet"),
  20503. weight: math.unit(175, "lb"),
  20504. name: "Anthro",
  20505. image: {
  20506. source: "./media/characters/rena-dyne/anthro.svg",
  20507. extra: 1849 / 1785,
  20508. bottom: 0.005
  20509. }
  20510. },
  20511. taur: {
  20512. height: math.unit(15 + 6 / 12, "feet"),
  20513. weight: math.unit(8000, "lb"),
  20514. name: "Taur",
  20515. image: {
  20516. source: "./media/characters/rena-dyne/taur.svg",
  20517. extra: 2315 / 2234,
  20518. bottom: 0.033
  20519. }
  20520. },
  20521. },
  20522. [
  20523. {
  20524. name: "Normal",
  20525. height: math.unit(5 + 7 / 12, "feet"),
  20526. default: true
  20527. },
  20528. ]
  20529. ))
  20530. characterMakers.push(() => makeCharacter(
  20531. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20532. {
  20533. front: {
  20534. height: math.unit(8, "feet"),
  20535. weight: math.unit(600, "lb"),
  20536. name: "Front",
  20537. image: {
  20538. source: "./media/characters/weremeep/front.svg",
  20539. extra: 967 / 862,
  20540. bottom: 0.01
  20541. }
  20542. },
  20543. },
  20544. [
  20545. {
  20546. name: "Normal",
  20547. height: math.unit(8, "feet"),
  20548. default: true
  20549. },
  20550. {
  20551. name: "Lorg",
  20552. height: math.unit(12, "feet")
  20553. },
  20554. {
  20555. name: "Oh Lawd She Comin'",
  20556. height: math.unit(20, "feet")
  20557. },
  20558. ]
  20559. ))
  20560. characterMakers.push(() => makeCharacter(
  20561. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20562. {
  20563. front: {
  20564. height: math.unit(4, "feet"),
  20565. weight: math.unit(90, "lb"),
  20566. name: "Front",
  20567. image: {
  20568. source: "./media/characters/reza/front.svg",
  20569. extra: 1183 / 1111,
  20570. bottom: 0.017
  20571. }
  20572. },
  20573. back: {
  20574. height: math.unit(4, "feet"),
  20575. weight: math.unit(90, "lb"),
  20576. name: "Back",
  20577. image: {
  20578. source: "./media/characters/reza/back.svg",
  20579. extra: 1183 / 1111,
  20580. bottom: 0.01
  20581. }
  20582. },
  20583. drake: {
  20584. height: math.unit(30, "feet"),
  20585. weight: math.unit(246960, "lb"),
  20586. name: "Drake",
  20587. image: {
  20588. source: "./media/characters/reza/drake.svg",
  20589. extra: 2350 / 2024,
  20590. bottom: 60.7 / 2403
  20591. }
  20592. },
  20593. },
  20594. [
  20595. {
  20596. name: "Normal",
  20597. height: math.unit(4, "feet"),
  20598. default: true
  20599. },
  20600. ]
  20601. ))
  20602. characterMakers.push(() => makeCharacter(
  20603. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20604. {
  20605. side: {
  20606. height: math.unit(15, "feet"),
  20607. weight: math.unit(14, "tons"),
  20608. name: "Side",
  20609. image: {
  20610. source: "./media/characters/athea/side.svg",
  20611. extra: 960 / 540,
  20612. bottom: 0.003
  20613. }
  20614. },
  20615. sitting: {
  20616. height: math.unit(6 * 2.85, "feet"),
  20617. weight: math.unit(14, "tons"),
  20618. name: "Sitting",
  20619. image: {
  20620. source: "./media/characters/athea/sitting.svg",
  20621. extra: 621 / 581,
  20622. bottom: 0.075
  20623. }
  20624. },
  20625. maw: {
  20626. height: math.unit(7.59498031496063, "feet"),
  20627. name: "Maw",
  20628. image: {
  20629. source: "./media/characters/athea/maw.svg"
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Lap Cat",
  20636. height: math.unit(2.5, "feet")
  20637. },
  20638. {
  20639. name: "Minimacro",
  20640. height: math.unit(15, "feet"),
  20641. default: true
  20642. },
  20643. {
  20644. name: "Macro",
  20645. height: math.unit(120, "feet")
  20646. },
  20647. {
  20648. name: "Macro+",
  20649. height: math.unit(640, "feet")
  20650. },
  20651. {
  20652. name: "Colossus",
  20653. height: math.unit(2.2, "miles")
  20654. },
  20655. ]
  20656. ))
  20657. characterMakers.push(() => makeCharacter(
  20658. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20659. {
  20660. front: {
  20661. height: math.unit(8 + 8 / 12, "feet"),
  20662. weight: math.unit(130, "kg"),
  20663. name: "Front",
  20664. image: {
  20665. source: "./media/characters/seroko/front.svg",
  20666. extra: 1385 / 1280,
  20667. bottom: 0.025
  20668. }
  20669. },
  20670. back: {
  20671. height: math.unit(8 + 8 / 12, "feet"),
  20672. weight: math.unit(130, "kg"),
  20673. name: "Back",
  20674. image: {
  20675. source: "./media/characters/seroko/back.svg",
  20676. extra: 1369 / 1238,
  20677. bottom: 0.018
  20678. }
  20679. },
  20680. frontDressed: {
  20681. height: math.unit(8 + 8 / 12, "feet"),
  20682. weight: math.unit(130, "kg"),
  20683. name: "Front (Dressed)",
  20684. image: {
  20685. source: "./media/characters/seroko/front-dressed.svg",
  20686. extra: 1366 / 1275,
  20687. bottom: 0.03
  20688. }
  20689. },
  20690. },
  20691. [
  20692. {
  20693. name: "Normal",
  20694. height: math.unit(8 + 8 / 12, "feet"),
  20695. default: true
  20696. },
  20697. ]
  20698. ))
  20699. characterMakers.push(() => makeCharacter(
  20700. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20701. {
  20702. front: {
  20703. height: math.unit(5.5, "feet"),
  20704. weight: math.unit(160, "lb"),
  20705. name: "Front",
  20706. image: {
  20707. source: "./media/characters/quatzi/front.svg",
  20708. extra: 2346 / 2242,
  20709. bottom: 0.015
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(5.5, "feet"),
  20717. default: true
  20718. },
  20719. {
  20720. name: "Big",
  20721. height: math.unit(7.7, "feet")
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(5 + 11 / 12, "feet"),
  20730. weight: math.unit(180, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/sen/front.svg",
  20734. extra: 1321 / 1254,
  20735. bottom: 0.015
  20736. }
  20737. },
  20738. side: {
  20739. height: math.unit(5 + 11 / 12, "feet"),
  20740. weight: math.unit(180, "lb"),
  20741. name: "Side",
  20742. image: {
  20743. source: "./media/characters/sen/side.svg",
  20744. extra: 1321 / 1254,
  20745. bottom: 0.007
  20746. }
  20747. },
  20748. back: {
  20749. height: math.unit(5 + 11 / 12, "feet"),
  20750. weight: math.unit(180, "lb"),
  20751. name: "Back",
  20752. image: {
  20753. source: "./media/characters/sen/back.svg",
  20754. extra: 1321 / 1254
  20755. }
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Normal",
  20761. height: math.unit(5 + 11 / 12, "feet"),
  20762. default: true
  20763. },
  20764. ]
  20765. ))
  20766. characterMakers.push(() => makeCharacter(
  20767. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20768. {
  20769. front: {
  20770. height: math.unit(166.6, "cm"),
  20771. weight: math.unit(66.6, "kg"),
  20772. name: "Front",
  20773. image: {
  20774. source: "./media/characters/fruity/front.svg",
  20775. extra: 1510 / 1386,
  20776. bottom: 0.04
  20777. }
  20778. },
  20779. back: {
  20780. height: math.unit(166.6, "cm"),
  20781. weight: math.unit(66.6, "lb"),
  20782. name: "Back",
  20783. image: {
  20784. source: "./media/characters/fruity/back.svg",
  20785. extra: 1563 / 1435,
  20786. bottom: 0.005
  20787. }
  20788. },
  20789. },
  20790. [
  20791. {
  20792. name: "Normal",
  20793. height: math.unit(166.6, "cm"),
  20794. default: true
  20795. },
  20796. {
  20797. name: "Demonic",
  20798. height: math.unit(166.6, "feet")
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20804. {
  20805. side: {
  20806. height: math.unit(10, "feet"),
  20807. weight: math.unit(500, "lb"),
  20808. name: "Side",
  20809. image: {
  20810. source: "./media/characters/zost/side.svg",
  20811. extra: 966 / 880,
  20812. bottom: 0.075
  20813. }
  20814. },
  20815. mawFront: {
  20816. height: math.unit(1.08, "meters"),
  20817. name: "Maw (Front)",
  20818. image: {
  20819. source: "./media/characters/zost/maw-front.svg"
  20820. }
  20821. },
  20822. mawSide: {
  20823. height: math.unit(2.66, "feet"),
  20824. name: "Maw (Side)",
  20825. image: {
  20826. source: "./media/characters/zost/maw-side.svg"
  20827. }
  20828. },
  20829. },
  20830. [
  20831. {
  20832. name: "Normal",
  20833. height: math.unit(10, "feet"),
  20834. default: true
  20835. },
  20836. ]
  20837. ))
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20840. {
  20841. front: {
  20842. height: math.unit(5 + 4 / 12, "feet"),
  20843. weight: math.unit(120, "lb"),
  20844. name: "Front",
  20845. image: {
  20846. source: "./media/characters/luci/front.svg",
  20847. extra: 1985 / 1884,
  20848. bottom: 0.04
  20849. }
  20850. },
  20851. back: {
  20852. height: math.unit(5 + 4 / 12, "feet"),
  20853. weight: math.unit(120, "lb"),
  20854. name: "Back",
  20855. image: {
  20856. source: "./media/characters/luci/back.svg",
  20857. extra: 1892 / 1791,
  20858. bottom: 0.002
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Normal",
  20865. height: math.unit(5 + 4 / 12, "feet"),
  20866. default: true
  20867. },
  20868. ]
  20869. ))
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20872. {
  20873. front: {
  20874. height: math.unit(1500, "feet"),
  20875. weight: math.unit(3.8e6, "tons"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/2th/front.svg",
  20879. extra: 3489 / 3350,
  20880. bottom: 0.1
  20881. }
  20882. },
  20883. foot: {
  20884. height: math.unit(461, "feet"),
  20885. name: "Foot",
  20886. image: {
  20887. source: "./media/characters/2th/foot.svg"
  20888. }
  20889. },
  20890. },
  20891. [
  20892. {
  20893. name: "\"Micro\"",
  20894. height: math.unit(15 + 7 / 12, "feet")
  20895. },
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(1500, "feet"),
  20899. default: true
  20900. },
  20901. {
  20902. name: "Macro",
  20903. height: math.unit(5000, "feet")
  20904. },
  20905. {
  20906. name: "Megamacro",
  20907. height: math.unit(15, "miles")
  20908. },
  20909. {
  20910. name: "Gigamacro",
  20911. height: math.unit(4000, "miles")
  20912. },
  20913. {
  20914. name: "Galactic",
  20915. height: math.unit(50, "AU")
  20916. },
  20917. ]
  20918. ))
  20919. characterMakers.push(() => makeCharacter(
  20920. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20921. {
  20922. front: {
  20923. height: math.unit(5 + 6 / 12, "feet"),
  20924. weight: math.unit(220, "lb"),
  20925. name: "Front",
  20926. image: {
  20927. source: "./media/characters/amethyst/front.svg",
  20928. extra: 2078 / 2040,
  20929. bottom: 0.045
  20930. }
  20931. },
  20932. back: {
  20933. height: math.unit(5 + 6 / 12, "feet"),
  20934. weight: math.unit(220, "lb"),
  20935. name: "Back",
  20936. image: {
  20937. source: "./media/characters/amethyst/back.svg",
  20938. extra: 2021 / 1989,
  20939. bottom: 0.02
  20940. }
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Normal",
  20946. height: math.unit(5 + 6 / 12, "feet"),
  20947. default: true
  20948. },
  20949. ]
  20950. ))
  20951. characterMakers.push(() => makeCharacter(
  20952. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20953. {
  20954. front: {
  20955. height: math.unit(4 + 11 / 12, "feet"),
  20956. weight: math.unit(120, "lb"),
  20957. name: "Front",
  20958. image: {
  20959. source: "./media/characters/yumi-akiyama/front.svg",
  20960. extra: 1327 / 1235,
  20961. bottom: 0.02
  20962. }
  20963. },
  20964. back: {
  20965. height: math.unit(4 + 11 / 12, "feet"),
  20966. weight: math.unit(120, "lb"),
  20967. name: "Back",
  20968. image: {
  20969. source: "./media/characters/yumi-akiyama/back.svg",
  20970. extra: 1287 / 1245,
  20971. bottom: 0.002
  20972. }
  20973. },
  20974. },
  20975. [
  20976. {
  20977. name: "Galactic",
  20978. height: math.unit(50, "galaxies"),
  20979. default: true
  20980. },
  20981. {
  20982. name: "Universal",
  20983. height: math.unit(100, "universes")
  20984. },
  20985. ]
  20986. ))
  20987. characterMakers.push(() => makeCharacter(
  20988. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20989. {
  20990. front: {
  20991. height: math.unit(8, "feet"),
  20992. weight: math.unit(500, "lb"),
  20993. name: "Front",
  20994. image: {
  20995. source: "./media/characters/rifter-yrmori/front.svg",
  20996. extra: 1180 / 1125,
  20997. bottom: 0.02
  20998. }
  20999. },
  21000. back: {
  21001. height: math.unit(8, "feet"),
  21002. weight: math.unit(500, "lb"),
  21003. name: "Back",
  21004. image: {
  21005. source: "./media/characters/rifter-yrmori/back.svg",
  21006. extra: 1190 / 1145,
  21007. bottom: 0.001
  21008. }
  21009. },
  21010. wings: {
  21011. height: math.unit(7.75, "feet"),
  21012. weight: math.unit(500, "lb"),
  21013. name: "Wings",
  21014. image: {
  21015. source: "./media/characters/rifter-yrmori/wings.svg",
  21016. extra: 1357 / 1285
  21017. }
  21018. },
  21019. maw: {
  21020. height: math.unit(0.8, "feet"),
  21021. name: "Maw",
  21022. image: {
  21023. source: "./media/characters/rifter-yrmori/maw.svg"
  21024. }
  21025. },
  21026. mawfront: {
  21027. height: math.unit(1.45, "feet"),
  21028. name: "Maw (Front)",
  21029. image: {
  21030. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21031. }
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "Normal",
  21037. height: math.unit(8, "feet"),
  21038. default: true
  21039. },
  21040. {
  21041. name: "Macro",
  21042. height: math.unit(42, "meters")
  21043. },
  21044. ]
  21045. ))
  21046. characterMakers.push(() => makeCharacter(
  21047. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21048. {
  21049. were: {
  21050. height: math.unit(25 + 6 / 12, "feet"),
  21051. weight: math.unit(10000, "lb"),
  21052. name: "Were",
  21053. image: {
  21054. source: "./media/characters/tahajin/were.svg",
  21055. extra: 801 / 770,
  21056. bottom: 0.042
  21057. }
  21058. },
  21059. aquatic: {
  21060. height: math.unit(6 + 4 / 12, "feet"),
  21061. weight: math.unit(160, "lb"),
  21062. name: "Aquatic",
  21063. image: {
  21064. source: "./media/characters/tahajin/aquatic.svg",
  21065. extra: 572 / 542,
  21066. bottom: 0.04
  21067. }
  21068. },
  21069. chow: {
  21070. height: math.unit(8 + 11 / 12, "feet"),
  21071. weight: math.unit(450, "lb"),
  21072. name: "Chow",
  21073. image: {
  21074. source: "./media/characters/tahajin/chow.svg",
  21075. extra: 660 / 640,
  21076. bottom: 0.015
  21077. }
  21078. },
  21079. demiNaga: {
  21080. height: math.unit(6 + 8 / 12, "feet"),
  21081. weight: math.unit(300, "lb"),
  21082. name: "Demi Naga",
  21083. image: {
  21084. source: "./media/characters/tahajin/demi-naga.svg",
  21085. extra: 643 / 615,
  21086. bottom: 0.1
  21087. }
  21088. },
  21089. data: {
  21090. height: math.unit(5, "inches"),
  21091. weight: math.unit(0.1, "lb"),
  21092. name: "Data",
  21093. image: {
  21094. source: "./media/characters/tahajin/data.svg"
  21095. }
  21096. },
  21097. fluu: {
  21098. height: math.unit(5 + 7 / 12, "feet"),
  21099. weight: math.unit(140, "lb"),
  21100. name: "Fluu",
  21101. image: {
  21102. source: "./media/characters/tahajin/fluu.svg",
  21103. extra: 628 / 592,
  21104. bottom: 0.02
  21105. }
  21106. },
  21107. starWarrior: {
  21108. height: math.unit(4 + 5 / 12, "feet"),
  21109. weight: math.unit(50, "lb"),
  21110. name: "Star Warrior",
  21111. image: {
  21112. source: "./media/characters/tahajin/star-warrior.svg"
  21113. }
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Normal",
  21119. height: math.unit(25 + 6 / 12, "feet"),
  21120. default: true
  21121. },
  21122. ]
  21123. ))
  21124. characterMakers.push(() => makeCharacter(
  21125. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21126. {
  21127. front: {
  21128. height: math.unit(8, "feet"),
  21129. weight: math.unit(350, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/gabira/front.svg",
  21133. extra: 608 / 580,
  21134. bottom: 0.03
  21135. }
  21136. },
  21137. back: {
  21138. height: math.unit(8, "feet"),
  21139. weight: math.unit(350, "lb"),
  21140. name: "Back",
  21141. image: {
  21142. source: "./media/characters/gabira/back.svg",
  21143. extra: 608 / 580,
  21144. bottom: 0.03
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(8, "feet"),
  21152. default: true
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21158. {
  21159. front: {
  21160. height: math.unit(5 + 3 / 12, "feet"),
  21161. weight: math.unit(137, "lb"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/sasha-katraine/front.svg",
  21165. bottom: 0.045
  21166. }
  21167. },
  21168. },
  21169. [
  21170. {
  21171. name: "Micro",
  21172. height: math.unit(5, "inches")
  21173. },
  21174. {
  21175. name: "Normal",
  21176. height: math.unit(5 + 3 / 12, "feet"),
  21177. default: true
  21178. },
  21179. ]
  21180. ))
  21181. characterMakers.push(() => makeCharacter(
  21182. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21183. {
  21184. side: {
  21185. height: math.unit(4, "inches"),
  21186. weight: math.unit(200, "grams"),
  21187. name: "Side",
  21188. image: {
  21189. source: "./media/characters/der/side.svg",
  21190. extra: 719 / 400,
  21191. bottom: 30.6 / 749.9187
  21192. }
  21193. },
  21194. },
  21195. [
  21196. {
  21197. name: "Micro",
  21198. height: math.unit(4, "inches"),
  21199. default: true
  21200. },
  21201. ]
  21202. ))
  21203. characterMakers.push(() => makeCharacter(
  21204. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21205. {
  21206. side: {
  21207. height: math.unit(30, "meters"),
  21208. weight: math.unit(700, "tonnes"),
  21209. name: "Side",
  21210. image: {
  21211. source: "./media/characters/fixerdragon/side.svg",
  21212. extra: (1293.0514 - 116.03) / 1106.86,
  21213. bottom: 116.03 / 1293.0514
  21214. }
  21215. },
  21216. },
  21217. [
  21218. {
  21219. name: "Planck",
  21220. height: math.unit(1.6e-35, "meters")
  21221. },
  21222. {
  21223. name: "Micro",
  21224. height: math.unit(0.4, "meters")
  21225. },
  21226. {
  21227. name: "Normal",
  21228. height: math.unit(30, "meters"),
  21229. default: true
  21230. },
  21231. {
  21232. name: "Megamacro",
  21233. height: math.unit(1.2, "megameters")
  21234. },
  21235. {
  21236. name: "Teramacro",
  21237. height: math.unit(130, "terameters")
  21238. },
  21239. {
  21240. name: "Yottamacro",
  21241. height: math.unit(6200, "yottameters")
  21242. },
  21243. ]
  21244. ));
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21247. {
  21248. front: {
  21249. height: math.unit(8, "feet"),
  21250. weight: math.unit(250, "lb"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/kite/front.svg",
  21254. extra: 2796 / 2659,
  21255. bottom: 0.002
  21256. }
  21257. },
  21258. },
  21259. [
  21260. {
  21261. name: "Normal",
  21262. height: math.unit(8, "feet"),
  21263. default: true
  21264. },
  21265. {
  21266. name: "Macro",
  21267. height: math.unit(360, "feet")
  21268. },
  21269. {
  21270. name: "Megamacro",
  21271. height: math.unit(1500, "feet")
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(5 + 10 / 12, "feet"),
  21280. weight: math.unit(150, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/poojawa-vynar/front.svg",
  21284. extra: (1506.1547 - 55) / 1356.6,
  21285. bottom: 55 / 1506.1547
  21286. }
  21287. },
  21288. frontTailless: {
  21289. height: math.unit(5 + 10 / 12, "feet"),
  21290. weight: math.unit(150, "lb"),
  21291. name: "Front (Tailless)",
  21292. image: {
  21293. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21294. extra: (1506.1547 - 55) / 1356.6,
  21295. bottom: 55 / 1506.1547
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(5 + 10 / 12, "feet"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21309. {
  21310. front: {
  21311. height: math.unit(293, "meters"),
  21312. weight: math.unit(70400, "tons"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/violette/front.svg",
  21316. extra: 1227 / 1180,
  21317. bottom: 0.005
  21318. }
  21319. },
  21320. back: {
  21321. height: math.unit(293, "meters"),
  21322. weight: math.unit(70400, "tons"),
  21323. name: "Back",
  21324. image: {
  21325. source: "./media/characters/violette/back.svg",
  21326. extra: 1227 / 1180,
  21327. bottom: 0.005
  21328. }
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Macro",
  21334. height: math.unit(293, "meters"),
  21335. default: true
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21341. {
  21342. front: {
  21343. height: math.unit(1050, "feet"),
  21344. weight: math.unit(200000, "tons"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/alessandra/front.svg",
  21348. extra: 960 / 912,
  21349. bottom: 0.06
  21350. }
  21351. },
  21352. },
  21353. [
  21354. {
  21355. name: "Macro",
  21356. height: math.unit(1050, "feet")
  21357. },
  21358. {
  21359. name: "Macro+",
  21360. height: math.unit(900, "meters"),
  21361. default: true
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21367. {
  21368. front: {
  21369. height: math.unit(5, "feet"),
  21370. weight: math.unit(187, "lb"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/person/front.svg",
  21374. extra: 3087 / 2945,
  21375. bottom: 91 / 3181
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Micro",
  21382. height: math.unit(3, "inches")
  21383. },
  21384. {
  21385. name: "Normal",
  21386. height: math.unit(5, "feet"),
  21387. default: true
  21388. },
  21389. {
  21390. name: "Macro",
  21391. height: math.unit(90, "feet")
  21392. },
  21393. {
  21394. name: "Max Size",
  21395. height: math.unit(280, "feet")
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21401. {
  21402. front: {
  21403. height: math.unit(4.5, "meters"),
  21404. weight: math.unit(3200, "lb"),
  21405. name: "Front",
  21406. image: {
  21407. source: "./media/characters/ty/front.svg",
  21408. extra: 1038 / 960,
  21409. bottom: 31.156 / 1068
  21410. }
  21411. },
  21412. back: {
  21413. height: math.unit(4.5, "meters"),
  21414. weight: math.unit(3200, "lb"),
  21415. name: "Back",
  21416. image: {
  21417. source: "./media/characters/ty/back.svg",
  21418. extra: 1044 / 966,
  21419. bottom: 7.48 / 1049
  21420. }
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Normal",
  21426. height: math.unit(4.5, "meters"),
  21427. default: true
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21433. {
  21434. front: {
  21435. height: math.unit(5 + 4 / 12, "feet"),
  21436. weight: math.unit(115, "lb"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/rocky/front.svg",
  21440. extra: 1012 / 975,
  21441. bottom: 54 / 1066
  21442. }
  21443. },
  21444. },
  21445. [
  21446. {
  21447. name: "Normal",
  21448. height: math.unit(5 + 4 / 12, "feet"),
  21449. default: true
  21450. },
  21451. ]
  21452. ))
  21453. characterMakers.push(() => makeCharacter(
  21454. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21455. {
  21456. upright: {
  21457. height: math.unit(6, "meters"),
  21458. weight: math.unit(4000, "kg"),
  21459. name: "Upright",
  21460. image: {
  21461. source: "./media/characters/ruin/upright.svg",
  21462. extra: 668 / 661,
  21463. bottom: 42 / 799.8396
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(6, "meters"),
  21471. default: true
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21477. {
  21478. front: {
  21479. height: math.unit(5, "feet"),
  21480. weight: math.unit(106, "lb"),
  21481. name: "Front",
  21482. image: {
  21483. source: "./media/characters/robin/front.svg",
  21484. extra: 862 / 799,
  21485. bottom: 42.4 / 914.8856
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(5, "feet"),
  21493. default: true
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21499. {
  21500. side: {
  21501. height: math.unit(3, "feet"),
  21502. weight: math.unit(225, "lb"),
  21503. name: "Side",
  21504. image: {
  21505. source: "./media/characters/saian/side.svg",
  21506. extra: 566 / 356,
  21507. bottom: 79.7 / 643
  21508. }
  21509. },
  21510. maw: {
  21511. height: math.unit(2.85, "feet"),
  21512. name: "Maw",
  21513. image: {
  21514. source: "./media/characters/saian/maw.svg"
  21515. }
  21516. },
  21517. },
  21518. [
  21519. {
  21520. name: "Normal",
  21521. height: math.unit(3, "feet"),
  21522. default: true
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21528. {
  21529. side: {
  21530. height: math.unit(8, "feet"),
  21531. weight: math.unit(300, "lb"),
  21532. name: "Side",
  21533. image: {
  21534. source: "./media/characters/equus-silvermane/side.svg",
  21535. extra: 2176 / 2050,
  21536. bottom: 65.7 / 2245
  21537. }
  21538. },
  21539. front: {
  21540. height: math.unit(8, "feet"),
  21541. weight: math.unit(300, "lb"),
  21542. name: "Front",
  21543. image: {
  21544. source: "./media/characters/equus-silvermane/front.svg",
  21545. extra: 4633 / 4400,
  21546. bottom: 71.3 / 4706.915
  21547. }
  21548. },
  21549. sideStepping: {
  21550. height: math.unit(8, "feet"),
  21551. weight: math.unit(300, "lb"),
  21552. name: "Side (Stepping)",
  21553. image: {
  21554. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21555. extra: 1968 / 1860,
  21556. bottom: 16.4 / 1989
  21557. }
  21558. },
  21559. },
  21560. [
  21561. {
  21562. name: "Normal",
  21563. height: math.unit(8, "feet")
  21564. },
  21565. {
  21566. name: "Minimacro",
  21567. height: math.unit(75, "feet"),
  21568. default: true
  21569. },
  21570. {
  21571. name: "Macro",
  21572. height: math.unit(150, "feet")
  21573. },
  21574. {
  21575. name: "Macro+",
  21576. height: math.unit(1000, "feet")
  21577. },
  21578. {
  21579. name: "Megamacro",
  21580. height: math.unit(1, "mile")
  21581. },
  21582. ]
  21583. ))
  21584. characterMakers.push(() => makeCharacter(
  21585. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21586. {
  21587. side: {
  21588. height: math.unit(20, "feet"),
  21589. weight: math.unit(30000, "kg"),
  21590. name: "Side",
  21591. image: {
  21592. source: "./media/characters/windar/side.svg",
  21593. extra: 1491 / 1248,
  21594. bottom: 82.56 / 1568
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(20, "feet"),
  21602. default: true
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21608. {
  21609. side: {
  21610. height: math.unit(15.66, "feet"),
  21611. weight: math.unit(150, "lb"),
  21612. name: "Side",
  21613. image: {
  21614. source: "./media/characters/melody/side.svg",
  21615. extra: 1097 / 944,
  21616. bottom: 11.8 / 1109
  21617. }
  21618. },
  21619. sideOutfit: {
  21620. height: math.unit(15.66, "feet"),
  21621. weight: math.unit(150, "lb"),
  21622. name: "Side (Outfit)",
  21623. image: {
  21624. source: "./media/characters/melody/side-outfit.svg",
  21625. extra: 1097 / 944,
  21626. bottom: 11.8 / 1109
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(15.66, "feet"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21640. {
  21641. front: {
  21642. height: math.unit(8, "feet"),
  21643. weight: math.unit(325, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/windera/front.svg",
  21647. extra: 3180 / 2845,
  21648. bottom: 178 / 3365
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(8, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21662. {
  21663. front: {
  21664. height: math.unit(28.75, "feet"),
  21665. weight: math.unit(2000, "kg"),
  21666. name: "Front",
  21667. image: {
  21668. source: "./media/characters/sonear/front.svg",
  21669. extra: 1041.1 / 964.9,
  21670. bottom: 53.7 / 1096.6
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(28.75, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21684. {
  21685. side: {
  21686. height: math.unit(25.5, "feet"),
  21687. weight: math.unit(23000, "kg"),
  21688. name: "Side",
  21689. image: {
  21690. source: "./media/characters/kanara/side.svg"
  21691. }
  21692. },
  21693. },
  21694. [
  21695. {
  21696. name: "Normal",
  21697. height: math.unit(25.5, "feet"),
  21698. default: true
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21704. {
  21705. side: {
  21706. height: math.unit(10, "feet"),
  21707. weight: math.unit(1000, "kg"),
  21708. name: "Side",
  21709. image: {
  21710. source: "./media/characters/ereus/side.svg",
  21711. extra: 1157 / 959,
  21712. bottom: 153 / 1312.5
  21713. }
  21714. },
  21715. },
  21716. [
  21717. {
  21718. name: "Normal",
  21719. height: math.unit(10, "feet"),
  21720. default: true
  21721. },
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21726. {
  21727. side: {
  21728. height: math.unit(4.5, "feet"),
  21729. weight: math.unit(500, "lb"),
  21730. name: "Side",
  21731. image: {
  21732. source: "./media/characters/e-ter/side.svg",
  21733. extra: 1550 / 1248,
  21734. bottom: 146 / 1694
  21735. }
  21736. },
  21737. },
  21738. [
  21739. {
  21740. name: "Normal",
  21741. height: math.unit(4.5, "feet"),
  21742. default: true
  21743. },
  21744. ]
  21745. ))
  21746. characterMakers.push(() => makeCharacter(
  21747. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21748. {
  21749. side: {
  21750. height: math.unit(9.7, "feet"),
  21751. weight: math.unit(4000, "kg"),
  21752. name: "Side",
  21753. image: {
  21754. source: "./media/characters/yamie/side.svg"
  21755. }
  21756. },
  21757. },
  21758. [
  21759. {
  21760. name: "Normal",
  21761. height: math.unit(9.7, "feet"),
  21762. default: true
  21763. },
  21764. ]
  21765. ))
  21766. characterMakers.push(() => makeCharacter(
  21767. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21768. {
  21769. front: {
  21770. height: math.unit(50, "feet"),
  21771. weight: math.unit(50000, "kg"),
  21772. name: "Front",
  21773. image: {
  21774. source: "./media/characters/anders/front.svg",
  21775. extra: 570 / 539,
  21776. bottom: 14.7 / 586.7
  21777. }
  21778. },
  21779. },
  21780. [
  21781. {
  21782. name: "Large",
  21783. height: math.unit(50, "feet")
  21784. },
  21785. {
  21786. name: "Macro",
  21787. height: math.unit(2000, "feet"),
  21788. default: true
  21789. },
  21790. {
  21791. name: "Megamacro",
  21792. height: math.unit(12, "miles")
  21793. },
  21794. ]
  21795. ))
  21796. characterMakers.push(() => makeCharacter(
  21797. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21798. {
  21799. front: {
  21800. height: math.unit(7 + 2 / 12, "feet"),
  21801. weight: math.unit(300, "lb"),
  21802. name: "Front",
  21803. image: {
  21804. source: "./media/characters/reban/front.svg",
  21805. extra: 516 / 487,
  21806. bottom: 42.82 / 558.356
  21807. }
  21808. },
  21809. dick: {
  21810. height: math.unit(7 / 5, "feet"),
  21811. name: "Dick",
  21812. image: {
  21813. source: "./media/characters/reban/dick.svg"
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Natural Height",
  21820. height: math.unit(7 + 2 / 12, "feet")
  21821. },
  21822. {
  21823. name: "Macro",
  21824. height: math.unit(500, "feet"),
  21825. default: true
  21826. },
  21827. {
  21828. name: "Canon Height",
  21829. height: math.unit(50, "AU")
  21830. },
  21831. ]
  21832. ))
  21833. characterMakers.push(() => makeCharacter(
  21834. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21835. {
  21836. front: {
  21837. height: math.unit(6, "feet"),
  21838. weight: math.unit(150, "lb"),
  21839. name: "Front",
  21840. image: {
  21841. source: "./media/characters/terrance-keayes/front.svg",
  21842. extra: 1.005,
  21843. bottom: 151 / 1615
  21844. }
  21845. },
  21846. side: {
  21847. height: math.unit(6, "feet"),
  21848. weight: math.unit(150, "lb"),
  21849. name: "Side",
  21850. image: {
  21851. source: "./media/characters/terrance-keayes/side.svg",
  21852. extra: 1.005,
  21853. bottom: 129.4 / 1544
  21854. }
  21855. },
  21856. back: {
  21857. height: math.unit(6, "feet"),
  21858. weight: math.unit(150, "lb"),
  21859. name: "Back",
  21860. image: {
  21861. source: "./media/characters/terrance-keayes/back.svg",
  21862. extra: 1.005,
  21863. bottom: 58.4 / 1557.3
  21864. }
  21865. },
  21866. dick: {
  21867. height: math.unit(6 * 0.208, "feet"),
  21868. name: "Dick",
  21869. image: {
  21870. source: "./media/characters/terrance-keayes/dick.svg"
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Canon Height",
  21877. height: math.unit(35, "miles"),
  21878. default: true
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21884. {
  21885. front: {
  21886. height: math.unit(6, "feet"),
  21887. weight: math.unit(150, "lb"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/ofelia/front.svg",
  21891. extra: 546 / 541,
  21892. bottom: 39 / 583
  21893. }
  21894. },
  21895. back: {
  21896. height: math.unit(6, "feet"),
  21897. weight: math.unit(150, "lb"),
  21898. name: "Back",
  21899. image: {
  21900. source: "./media/characters/ofelia/back.svg",
  21901. extra: 564 / 559.5,
  21902. bottom: 8.69 / 573.02
  21903. }
  21904. },
  21905. maw: {
  21906. height: math.unit(1, "feet"),
  21907. name: "Maw",
  21908. image: {
  21909. source: "./media/characters/ofelia/maw.svg"
  21910. }
  21911. },
  21912. foot: {
  21913. height: math.unit(1.949, "feet"),
  21914. name: "Foot",
  21915. image: {
  21916. source: "./media/characters/ofelia/foot.svg"
  21917. }
  21918. },
  21919. },
  21920. [
  21921. {
  21922. name: "Canon Height",
  21923. height: math.unit(2000, "miles"),
  21924. default: true
  21925. },
  21926. ]
  21927. ))
  21928. characterMakers.push(() => makeCharacter(
  21929. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21930. {
  21931. front: {
  21932. height: math.unit(6, "feet"),
  21933. weight: math.unit(150, "lb"),
  21934. name: "Front",
  21935. image: {
  21936. source: "./media/characters/samuel/front.svg",
  21937. extra: 265 / 258,
  21938. bottom: 2 / 266.1566
  21939. }
  21940. },
  21941. },
  21942. [
  21943. {
  21944. name: "Macro",
  21945. height: math.unit(100, "feet"),
  21946. default: true
  21947. },
  21948. {
  21949. name: "Full Size",
  21950. height: math.unit(1000, "miles")
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21956. {
  21957. front: {
  21958. height: math.unit(6, "feet"),
  21959. weight: math.unit(300, "lb"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/beishir-kiel/front.svg",
  21963. extra: 569 / 547,
  21964. bottom: 41.9 / 609
  21965. }
  21966. },
  21967. maw: {
  21968. height: math.unit(6 * 0.202, "feet"),
  21969. name: "Maw",
  21970. image: {
  21971. source: "./media/characters/beishir-kiel/maw.svg"
  21972. }
  21973. },
  21974. },
  21975. [
  21976. {
  21977. name: "Macro",
  21978. height: math.unit(300, "feet"),
  21979. default: true
  21980. },
  21981. ]
  21982. ))
  21983. characterMakers.push(() => makeCharacter(
  21984. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21985. {
  21986. front: {
  21987. height: math.unit(5 + 7/12, "feet"),
  21988. weight: math.unit(120, "lb"),
  21989. name: "Front",
  21990. image: {
  21991. source: "./media/characters/logan-grey/front.svg",
  21992. extra: 1836/1738,
  21993. bottom: 108/1944
  21994. }
  21995. },
  21996. back: {
  21997. height: math.unit(5 + 7/12, "feet"),
  21998. weight: math.unit(120, "lb"),
  21999. name: "Back",
  22000. image: {
  22001. source: "./media/characters/logan-grey/back.svg",
  22002. extra: 1880/1794,
  22003. bottom: 24/1904
  22004. }
  22005. },
  22006. frontSfw: {
  22007. height: math.unit(5 + 7/12, "feet"),
  22008. weight: math.unit(120, "lb"),
  22009. name: "Front (SFW)",
  22010. image: {
  22011. source: "./media/characters/logan-grey/front-sfw.svg",
  22012. extra: 1836/1738,
  22013. bottom: 108/1944
  22014. }
  22015. },
  22016. backSfw: {
  22017. height: math.unit(5 + 7/12, "feet"),
  22018. weight: math.unit(120, "lb"),
  22019. name: "Back (SFW)",
  22020. image: {
  22021. source: "./media/characters/logan-grey/back-sfw.svg",
  22022. extra: 1880/1794,
  22023. bottom: 24/1904
  22024. }
  22025. },
  22026. hands: {
  22027. height: math.unit(0.84, "feet"),
  22028. name: "Hands",
  22029. image: {
  22030. source: "./media/characters/logan-grey/hands.svg"
  22031. }
  22032. },
  22033. paws: {
  22034. height: math.unit(0.72, "feet"),
  22035. name: "Paws",
  22036. image: {
  22037. source: "./media/characters/logan-grey/paws.svg"
  22038. }
  22039. },
  22040. cock: {
  22041. height: math.unit(1.45, "feet"),
  22042. name: "Cock",
  22043. image: {
  22044. source: "./media/characters/logan-grey/cock.svg"
  22045. }
  22046. },
  22047. cockAlt: {
  22048. height: math.unit(1.437, "feet"),
  22049. name: "Cock (alt)",
  22050. image: {
  22051. source: "./media/characters/logan-grey/cock-alt.svg"
  22052. }
  22053. },
  22054. },
  22055. [
  22056. {
  22057. name: "Normal",
  22058. height: math.unit(5 + 8 / 12, "feet")
  22059. },
  22060. {
  22061. name: "The 500 Foot Femboy",
  22062. height: math.unit(500, "feet"),
  22063. default: true
  22064. },
  22065. {
  22066. name: "Megmacro",
  22067. height: math.unit(20, "miles")
  22068. },
  22069. ]
  22070. ))
  22071. characterMakers.push(() => makeCharacter(
  22072. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22073. {
  22074. front: {
  22075. height: math.unit(8 + 2 / 12, "feet"),
  22076. weight: math.unit(275, "lb"),
  22077. name: "Front",
  22078. image: {
  22079. source: "./media/characters/draganta/front.svg",
  22080. extra: 1177 / 1135,
  22081. bottom: 33.46 / 1212.1
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Normal",
  22088. height: math.unit(8 + 6 / 12, "feet"),
  22089. default: true
  22090. },
  22091. {
  22092. name: "Macro",
  22093. height: math.unit(150, "feet")
  22094. },
  22095. {
  22096. name: "Megamacro",
  22097. height: math.unit(1000, "miles")
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22103. {
  22104. front: {
  22105. height: math.unit(1.72, "m"),
  22106. weight: math.unit(80, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/voski/front.svg",
  22110. extra: 2076.22 / 2022.4,
  22111. bottom: 102.7 / 2177.3866
  22112. }
  22113. },
  22114. frontNsfw: {
  22115. height: math.unit(1.72, "m"),
  22116. weight: math.unit(80, "lb"),
  22117. name: "Front (NSFW)",
  22118. image: {
  22119. source: "./media/characters/voski/front-nsfw.svg",
  22120. extra: 2076.22 / 2022.4,
  22121. bottom: 102.7 / 2177.3866
  22122. }
  22123. },
  22124. back: {
  22125. height: math.unit(1.72, "m"),
  22126. weight: math.unit(80, "lb"),
  22127. name: "Back",
  22128. image: {
  22129. source: "./media/characters/voski/back.svg",
  22130. extra: 2104 / 2051,
  22131. bottom: 10.45 / 2113.63
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(1.72, "m")
  22139. },
  22140. {
  22141. name: "Macro",
  22142. height: math.unit(55, "m"),
  22143. default: true
  22144. },
  22145. {
  22146. name: "Macro+",
  22147. height: math.unit(300, "m")
  22148. },
  22149. {
  22150. name: "Macro++",
  22151. height: math.unit(700, "m")
  22152. },
  22153. {
  22154. name: "Macro+++",
  22155. height: math.unit(4500, "m")
  22156. },
  22157. {
  22158. name: "Macro++++",
  22159. height: math.unit(45, "km")
  22160. },
  22161. {
  22162. name: "Macro+++++",
  22163. height: math.unit(1220, "km")
  22164. },
  22165. ]
  22166. ))
  22167. characterMakers.push(() => makeCharacter(
  22168. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22169. {
  22170. front: {
  22171. height: math.unit(2.3, "m"),
  22172. weight: math.unit(304, "kg"),
  22173. name: "Front",
  22174. image: {
  22175. source: "./media/characters/icowom-lee/front.svg",
  22176. extra: 985 / 955,
  22177. bottom: 25.4 / 1012
  22178. }
  22179. },
  22180. fronttentacles: {
  22181. height: math.unit(2.3, "m"),
  22182. weight: math.unit(304, "kg"),
  22183. name: "Front-tentacles",
  22184. image: {
  22185. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22186. extra: 985 / 955,
  22187. bottom: 25.4 / 1012
  22188. }
  22189. },
  22190. back: {
  22191. height: math.unit(2.3, "m"),
  22192. weight: math.unit(304, "kg"),
  22193. name: "Back",
  22194. image: {
  22195. source: "./media/characters/icowom-lee/back.svg",
  22196. extra: 975 / 954,
  22197. bottom: 9.5 / 985
  22198. }
  22199. },
  22200. backtentacles: {
  22201. height: math.unit(2.3, "m"),
  22202. weight: math.unit(304, "kg"),
  22203. name: "Back-tentacles",
  22204. image: {
  22205. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22206. extra: 975 / 954,
  22207. bottom: 9.5 / 985
  22208. }
  22209. },
  22210. frontDressed: {
  22211. height: math.unit(2.3, "m"),
  22212. weight: math.unit(304, "kg"),
  22213. name: "Front (Dressed)",
  22214. image: {
  22215. source: "./media/characters/icowom-lee/front-dressed.svg",
  22216. extra: 3076 / 2933,
  22217. bottom: 51.4 / 3125.1889
  22218. }
  22219. },
  22220. rump: {
  22221. height: math.unit(0.776, "meters"),
  22222. name: "Rump",
  22223. image: {
  22224. source: "./media/characters/icowom-lee/rump.svg"
  22225. }
  22226. },
  22227. genitals: {
  22228. height: math.unit(0.78, "meters"),
  22229. name: "Genitals",
  22230. image: {
  22231. source: "./media/characters/icowom-lee/genitals.svg"
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(2.3, "meters"),
  22239. default: true
  22240. },
  22241. {
  22242. name: "Macro",
  22243. height: math.unit(94, "meters"),
  22244. default: true
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22250. {
  22251. front: {
  22252. height: math.unit(22, "meters"),
  22253. weight: math.unit(21000, "kg"),
  22254. name: "Front",
  22255. image: {
  22256. source: "./media/characters/shock-diamond/front.svg",
  22257. extra: 2204 / 2053,
  22258. bottom: 65 / 2239.47
  22259. }
  22260. },
  22261. frontNude: {
  22262. height: math.unit(22, "meters"),
  22263. weight: math.unit(21000, "kg"),
  22264. name: "Front (Nude)",
  22265. image: {
  22266. source: "./media/characters/shock-diamond/front-nude.svg",
  22267. extra: 2514 / 2285,
  22268. bottom: 13 / 2527.56
  22269. }
  22270. },
  22271. },
  22272. [
  22273. {
  22274. name: "Normal",
  22275. height: math.unit(3, "meters")
  22276. },
  22277. {
  22278. name: "Macro",
  22279. height: math.unit(22, "meters"),
  22280. default: true
  22281. },
  22282. ]
  22283. ))
  22284. characterMakers.push(() => makeCharacter(
  22285. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22286. {
  22287. front: {
  22288. height: math.unit(5 + 4 / 12, "feet"),
  22289. weight: math.unit(120, "lb"),
  22290. name: "Front",
  22291. image: {
  22292. source: "./media/characters/rory/front.svg",
  22293. extra: 1318/1241,
  22294. bottom: 42/1360
  22295. }
  22296. },
  22297. back: {
  22298. height: math.unit(5 + 4 / 12, "feet"),
  22299. weight: math.unit(120, "lb"),
  22300. name: "Back",
  22301. image: {
  22302. source: "./media/characters/rory/back.svg",
  22303. extra: 1318/1241,
  22304. bottom: 42/1360
  22305. }
  22306. },
  22307. butt: {
  22308. height: math.unit(1.74, "feet"),
  22309. name: "Butt",
  22310. image: {
  22311. source: "./media/characters/rory/butt.svg"
  22312. }
  22313. },
  22314. dick: {
  22315. height: math.unit(1.02, "feet"),
  22316. name: "Dick",
  22317. image: {
  22318. source: "./media/characters/rory/dick.svg"
  22319. }
  22320. },
  22321. paws: {
  22322. height: math.unit(1, "feet"),
  22323. name: "Paws",
  22324. image: {
  22325. source: "./media/characters/rory/paws.svg"
  22326. }
  22327. },
  22328. frontAlt: {
  22329. height: math.unit(5 + 4 / 12, "feet"),
  22330. weight: math.unit(120, "lb"),
  22331. name: "Front (Alt)",
  22332. image: {
  22333. source: "./media/characters/rory/front-alt.svg",
  22334. extra: 589 / 556,
  22335. bottom: 45.7 / 635.76
  22336. }
  22337. },
  22338. frontAltNude: {
  22339. height: math.unit(5 + 4 / 12, "feet"),
  22340. weight: math.unit(120, "lb"),
  22341. name: "Front (Alt, Nude)",
  22342. image: {
  22343. source: "./media/characters/rory/front-alt-nude.svg",
  22344. extra: 589 / 556,
  22345. bottom: 45.7 / 635.76
  22346. }
  22347. },
  22348. side: {
  22349. height: math.unit(5 + 4 / 12, "feet"),
  22350. weight: math.unit(120, "lb"),
  22351. name: "Side",
  22352. image: {
  22353. source: "./media/characters/rory/side.svg",
  22354. extra: 597 / 564,
  22355. bottom: 55 / 653
  22356. }
  22357. },
  22358. backAlt: {
  22359. height: math.unit(5 + 4 / 12, "feet"),
  22360. weight: math.unit(120, "lb"),
  22361. name: "Back (Alt)",
  22362. image: {
  22363. source: "./media/characters/rory/back-alt.svg",
  22364. extra: 620 / 585,
  22365. bottom: 8.86 / 630.43
  22366. }
  22367. },
  22368. dickAlt: {
  22369. height: math.unit(0.86, "feet"),
  22370. name: "Dick (Alt)",
  22371. image: {
  22372. source: "./media/characters/rory/dick-alt.svg"
  22373. }
  22374. },
  22375. },
  22376. [
  22377. {
  22378. name: "Normal",
  22379. height: math.unit(5 + 4 / 12, "feet"),
  22380. default: true
  22381. },
  22382. {
  22383. name: "Macro",
  22384. height: math.unit(100, "feet")
  22385. },
  22386. {
  22387. name: "Macro+",
  22388. height: math.unit(140, "feet")
  22389. },
  22390. {
  22391. name: "Macro++",
  22392. height: math.unit(300, "feet")
  22393. },
  22394. ]
  22395. ))
  22396. characterMakers.push(() => makeCharacter(
  22397. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22398. {
  22399. front: {
  22400. height: math.unit(5 + 9 / 12, "feet"),
  22401. weight: math.unit(190, "lb"),
  22402. name: "Front",
  22403. image: {
  22404. source: "./media/characters/sprisk/front.svg",
  22405. extra: 1225 / 1180,
  22406. bottom: 42.7 / 1266.4
  22407. }
  22408. },
  22409. frontNsfw: {
  22410. height: math.unit(5 + 9 / 12, "feet"),
  22411. weight: math.unit(190, "lb"),
  22412. name: "Front (NSFW)",
  22413. image: {
  22414. source: "./media/characters/sprisk/front-nsfw.svg",
  22415. extra: 1225 / 1180,
  22416. bottom: 42.7 / 1266.4
  22417. }
  22418. },
  22419. back: {
  22420. height: math.unit(5 + 9 / 12, "feet"),
  22421. weight: math.unit(190, "lb"),
  22422. name: "Back",
  22423. image: {
  22424. source: "./media/characters/sprisk/back.svg",
  22425. extra: 1247 / 1200,
  22426. bottom: 5.6 / 1253.04
  22427. }
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Tiny",
  22433. height: math.unit(2, "inches")
  22434. },
  22435. {
  22436. name: "Normal",
  22437. height: math.unit(5 + 9 / 12, "feet"),
  22438. default: true
  22439. },
  22440. {
  22441. name: "Mini Macro",
  22442. height: math.unit(18, "feet")
  22443. },
  22444. {
  22445. name: "Macro",
  22446. height: math.unit(100, "feet")
  22447. },
  22448. {
  22449. name: "MACRO",
  22450. height: math.unit(50, "miles")
  22451. },
  22452. {
  22453. name: "M A C R O",
  22454. height: math.unit(300, "miles")
  22455. },
  22456. ]
  22457. ))
  22458. characterMakers.push(() => makeCharacter(
  22459. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22460. {
  22461. side: {
  22462. height: math.unit(15.6, "meters"),
  22463. weight: math.unit(700000, "kg"),
  22464. name: "Side",
  22465. image: {
  22466. source: "./media/characters/bunsen/side.svg",
  22467. extra: 1644 / 358
  22468. }
  22469. },
  22470. foot: {
  22471. height: math.unit(1.611 * 1644 / 358, "meter"),
  22472. name: "Foot",
  22473. image: {
  22474. source: "./media/characters/bunsen/foot.svg"
  22475. }
  22476. },
  22477. },
  22478. [
  22479. {
  22480. name: "Small",
  22481. height: math.unit(10, "feet")
  22482. },
  22483. {
  22484. name: "Normal",
  22485. height: math.unit(15.6, "meters"),
  22486. default: true
  22487. },
  22488. ]
  22489. ))
  22490. characterMakers.push(() => makeCharacter(
  22491. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22492. {
  22493. front: {
  22494. height: math.unit(4 + 11 / 12, "feet"),
  22495. weight: math.unit(140, "lb"),
  22496. name: "Front",
  22497. image: {
  22498. source: "./media/characters/sesh/front.svg",
  22499. extra: 3420 / 3231,
  22500. bottom: 72 / 3949.5
  22501. }
  22502. },
  22503. },
  22504. [
  22505. {
  22506. name: "Normal",
  22507. height: math.unit(4 + 11 / 12, "feet")
  22508. },
  22509. {
  22510. name: "Grown",
  22511. height: math.unit(15, "feet"),
  22512. default: true
  22513. },
  22514. {
  22515. name: "Macro",
  22516. height: math.unit(1500, "feet")
  22517. },
  22518. {
  22519. name: "Megamacro",
  22520. height: math.unit(30, "miles")
  22521. },
  22522. {
  22523. name: "Continental",
  22524. height: math.unit(3000, "miles")
  22525. },
  22526. {
  22527. name: "Gravity Mass",
  22528. height: math.unit(300000, "miles")
  22529. },
  22530. {
  22531. name: "Planet Buster",
  22532. height: math.unit(30000000, "miles")
  22533. },
  22534. {
  22535. name: "Big",
  22536. height: math.unit(3000000000, "miles")
  22537. },
  22538. ]
  22539. ))
  22540. characterMakers.push(() => makeCharacter(
  22541. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22542. {
  22543. front: {
  22544. height: math.unit(9, "feet"),
  22545. weight: math.unit(350, "lb"),
  22546. name: "Front",
  22547. image: {
  22548. source: "./media/characters/pepper/front.svg",
  22549. extra: 1448 / 1312,
  22550. bottom: 9.4 / 1457.88
  22551. }
  22552. },
  22553. back: {
  22554. height: math.unit(9, "feet"),
  22555. weight: math.unit(350, "lb"),
  22556. name: "Back",
  22557. image: {
  22558. source: "./media/characters/pepper/back.svg",
  22559. extra: 1423 / 1300,
  22560. bottom: 4.6 / 1429
  22561. }
  22562. },
  22563. maw: {
  22564. height: math.unit(0.932, "feet"),
  22565. name: "Maw",
  22566. image: {
  22567. source: "./media/characters/pepper/maw.svg"
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Normal",
  22574. height: math.unit(9, "feet"),
  22575. default: true
  22576. },
  22577. ]
  22578. ))
  22579. characterMakers.push(() => makeCharacter(
  22580. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22581. {
  22582. front: {
  22583. height: math.unit(6, "feet"),
  22584. weight: math.unit(150, "lb"),
  22585. name: "Front",
  22586. image: {
  22587. source: "./media/characters/maelstrom/front.svg",
  22588. extra: 2100 / 1883,
  22589. bottom: 94 / 2196.7
  22590. }
  22591. },
  22592. },
  22593. [
  22594. {
  22595. name: "Less Kaiju",
  22596. height: math.unit(200, "feet")
  22597. },
  22598. {
  22599. name: "Kaiju",
  22600. height: math.unit(400, "feet"),
  22601. default: true
  22602. },
  22603. {
  22604. name: "Kaiju-er",
  22605. height: math.unit(600, "feet")
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22611. {
  22612. front: {
  22613. height: math.unit(6 + 5 / 12, "feet"),
  22614. weight: math.unit(180, "lb"),
  22615. name: "Front",
  22616. image: {
  22617. source: "./media/characters/lexir/front.svg",
  22618. extra: 180 / 172,
  22619. bottom: 12 / 192
  22620. }
  22621. },
  22622. back: {
  22623. height: math.unit(6 + 5 / 12, "feet"),
  22624. weight: math.unit(180, "lb"),
  22625. name: "Back",
  22626. image: {
  22627. source: "./media/characters/lexir/back.svg",
  22628. extra: 183.84 / 175.5,
  22629. bottom: 3.1 / 187
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Very Smal",
  22636. height: math.unit(1, "nm")
  22637. },
  22638. {
  22639. name: "Normal",
  22640. height: math.unit(6 + 5 / 12, "feet"),
  22641. default: true
  22642. },
  22643. {
  22644. name: "Macro",
  22645. height: math.unit(1, "mile")
  22646. },
  22647. {
  22648. name: "Megamacro",
  22649. height: math.unit(50, "miles")
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22655. {
  22656. front: {
  22657. height: math.unit(1.5, "meters"),
  22658. weight: math.unit(100, "lb"),
  22659. name: "Front",
  22660. image: {
  22661. source: "./media/characters/maksio/front.svg",
  22662. extra: 1549 / 1531,
  22663. bottom: 123.7 / 1674.5429
  22664. }
  22665. },
  22666. back: {
  22667. height: math.unit(1.5, "meters"),
  22668. weight: math.unit(100, "lb"),
  22669. name: "Back",
  22670. image: {
  22671. source: "./media/characters/maksio/back.svg",
  22672. extra: 1541 / 1509,
  22673. bottom: 97 / 1639
  22674. }
  22675. },
  22676. hand: {
  22677. height: math.unit(0.621, "feet"),
  22678. name: "Hand",
  22679. image: {
  22680. source: "./media/characters/maksio/hand.svg"
  22681. }
  22682. },
  22683. foot: {
  22684. height: math.unit(1.611, "feet"),
  22685. name: "Foot",
  22686. image: {
  22687. source: "./media/characters/maksio/foot.svg"
  22688. }
  22689. },
  22690. },
  22691. [
  22692. {
  22693. name: "Shrunken",
  22694. height: math.unit(10, "cm")
  22695. },
  22696. {
  22697. name: "Normal",
  22698. height: math.unit(150, "cm"),
  22699. default: true
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22705. {
  22706. front: {
  22707. height: math.unit(100, "feet"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/erza-bear/front.svg",
  22711. extra: 2449 / 2390,
  22712. bottom: 46 / 2494
  22713. }
  22714. },
  22715. back: {
  22716. height: math.unit(100, "feet"),
  22717. name: "Back",
  22718. image: {
  22719. source: "./media/characters/erza-bear/back.svg",
  22720. extra: 2489 / 2430,
  22721. bottom: 85.4 / 2480
  22722. }
  22723. },
  22724. tail: {
  22725. height: math.unit(42, "feet"),
  22726. name: "Tail",
  22727. image: {
  22728. source: "./media/characters/erza-bear/tail.svg"
  22729. }
  22730. },
  22731. tongue: {
  22732. height: math.unit(8, "feet"),
  22733. name: "Tongue",
  22734. image: {
  22735. source: "./media/characters/erza-bear/tongue.svg"
  22736. }
  22737. },
  22738. dick: {
  22739. height: math.unit(10.5, "feet"),
  22740. name: "Dick",
  22741. image: {
  22742. source: "./media/characters/erza-bear/dick.svg"
  22743. }
  22744. },
  22745. dickVertical: {
  22746. height: math.unit(16.9, "feet"),
  22747. name: "Dick (Vertical)",
  22748. image: {
  22749. source: "./media/characters/erza-bear/dick-vertical.svg"
  22750. }
  22751. },
  22752. },
  22753. [
  22754. {
  22755. name: "Macro",
  22756. height: math.unit(100, "feet"),
  22757. default: true
  22758. },
  22759. ]
  22760. ))
  22761. characterMakers.push(() => makeCharacter(
  22762. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22763. {
  22764. front: {
  22765. height: math.unit(172, "cm"),
  22766. weight: math.unit(73, "kg"),
  22767. name: "Front",
  22768. image: {
  22769. source: "./media/characters/violet-flor/front.svg",
  22770. extra: 1530 / 1442,
  22771. bottom: 61.9 / 1588.8
  22772. }
  22773. },
  22774. back: {
  22775. height: math.unit(180, "cm"),
  22776. weight: math.unit(73, "kg"),
  22777. name: "Back",
  22778. image: {
  22779. source: "./media/characters/violet-flor/back.svg",
  22780. extra: 1692 / 1630,
  22781. bottom: 20 / 1712
  22782. }
  22783. },
  22784. },
  22785. [
  22786. {
  22787. name: "Normal",
  22788. height: math.unit(172, "cm"),
  22789. default: true
  22790. },
  22791. ]
  22792. ))
  22793. characterMakers.push(() => makeCharacter(
  22794. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22795. {
  22796. front: {
  22797. height: math.unit(6, "feet"),
  22798. weight: math.unit(220, "lb"),
  22799. name: "Front",
  22800. image: {
  22801. source: "./media/characters/lynn-rhea/front.svg",
  22802. extra: 310 / 273
  22803. }
  22804. },
  22805. back: {
  22806. height: math.unit(6, "feet"),
  22807. weight: math.unit(220, "lb"),
  22808. name: "Back",
  22809. image: {
  22810. source: "./media/characters/lynn-rhea/back.svg",
  22811. extra: 310 / 273
  22812. }
  22813. },
  22814. dicks: {
  22815. height: math.unit(0.9, "feet"),
  22816. name: "Dicks",
  22817. image: {
  22818. source: "./media/characters/lynn-rhea/dicks.svg"
  22819. }
  22820. },
  22821. slit: {
  22822. height: math.unit(0.4, "feet"),
  22823. name: "Slit",
  22824. image: {
  22825. source: "./media/characters/lynn-rhea/slit.svg"
  22826. }
  22827. },
  22828. },
  22829. [
  22830. {
  22831. name: "Micro",
  22832. height: math.unit(1, "inch")
  22833. },
  22834. {
  22835. name: "Macro",
  22836. height: math.unit(60, "feet"),
  22837. default: true
  22838. },
  22839. {
  22840. name: "Megamacro",
  22841. height: math.unit(2, "miles")
  22842. },
  22843. {
  22844. name: "Gigamacro",
  22845. height: math.unit(3, "earths")
  22846. },
  22847. {
  22848. name: "Galactic",
  22849. height: math.unit(0.8, "galaxies")
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22855. {
  22856. front: {
  22857. height: math.unit(1600, "feet"),
  22858. weight: math.unit(85758785169, "kg"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/valathos/front.svg",
  22862. extra: 1451 / 1339
  22863. }
  22864. },
  22865. },
  22866. [
  22867. {
  22868. name: "Macro",
  22869. height: math.unit(1600, "feet"),
  22870. default: true
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22876. {
  22877. front: {
  22878. height: math.unit(7 + 5 / 12, "feet"),
  22879. weight: math.unit(300, "lb"),
  22880. name: "Front",
  22881. image: {
  22882. source: "./media/characters/azula/front.svg",
  22883. extra: 3208 / 2880,
  22884. bottom: 80.2 / 3277
  22885. }
  22886. },
  22887. back: {
  22888. height: math.unit(7 + 5 / 12, "feet"),
  22889. weight: math.unit(300, "lb"),
  22890. name: "Back",
  22891. image: {
  22892. source: "./media/characters/azula/back.svg",
  22893. extra: 3169 / 2822,
  22894. bottom: 150.6 / 3321
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(7 + 5 / 12, "feet"),
  22902. default: true
  22903. },
  22904. {
  22905. name: "Big",
  22906. height: math.unit(20, "feet")
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(5 + 1 / 12, "feet"),
  22915. weight: math.unit(110, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/rupert/front.svg",
  22919. extra: 1549 / 1495,
  22920. bottom: 54.2 / 1604.4
  22921. }
  22922. },
  22923. },
  22924. [
  22925. {
  22926. name: "Normal",
  22927. height: math.unit(5 + 1 / 12, "feet"),
  22928. default: true
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22934. {
  22935. front: {
  22936. height: math.unit(8 + 4 / 12, "feet"),
  22937. weight: math.unit(350, "lb"),
  22938. name: "Front",
  22939. image: {
  22940. source: "./media/characters/sheera-castellar/front.svg",
  22941. extra: 1957 / 1894,
  22942. bottom: 26.97 / 1975.017
  22943. }
  22944. },
  22945. side: {
  22946. height: math.unit(8 + 4 / 12, "feet"),
  22947. weight: math.unit(350, "lb"),
  22948. name: "Side",
  22949. image: {
  22950. source: "./media/characters/sheera-castellar/side.svg",
  22951. extra: 1957 / 1894
  22952. }
  22953. },
  22954. back: {
  22955. height: math.unit(8 + 4 / 12, "feet"),
  22956. weight: math.unit(350, "lb"),
  22957. name: "Back",
  22958. image: {
  22959. source: "./media/characters/sheera-castellar/back.svg",
  22960. extra: 1957 / 1894
  22961. }
  22962. },
  22963. angled: {
  22964. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22965. weight: math.unit(350, "lb"),
  22966. name: "Angled",
  22967. image: {
  22968. source: "./media/characters/sheera-castellar/angled.svg",
  22969. extra: 1807 / 1707,
  22970. bottom: 68 / 1875
  22971. }
  22972. },
  22973. genitals: {
  22974. height: math.unit(2.2, "feet"),
  22975. name: "Genitals",
  22976. image: {
  22977. source: "./media/characters/sheera-castellar/genitals.svg"
  22978. }
  22979. },
  22980. taur: {
  22981. height: math.unit(10 + 6/12, "feet"),
  22982. name: "Taur",
  22983. image: {
  22984. source: "./media/characters/sheera-castellar/taur.svg",
  22985. extra: 2017/1909,
  22986. bottom: 185/2202
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(8 + 4 / 12, "feet")
  22994. },
  22995. {
  22996. name: "Macro",
  22997. height: math.unit(150, "feet"),
  22998. default: true
  22999. },
  23000. {
  23001. name: "Macro+",
  23002. height: math.unit(800, "feet")
  23003. },
  23004. ]
  23005. ))
  23006. characterMakers.push(() => makeCharacter(
  23007. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23008. {
  23009. front: {
  23010. height: math.unit(6, "feet"),
  23011. weight: math.unit(150, "lb"),
  23012. name: "Front",
  23013. image: {
  23014. source: "./media/characters/jaipur/front.svg",
  23015. extra: 3860 / 3731,
  23016. bottom: 287 / 4140
  23017. }
  23018. },
  23019. back: {
  23020. height: math.unit(6, "feet"),
  23021. weight: math.unit(150, "lb"),
  23022. name: "Back",
  23023. image: {
  23024. source: "./media/characters/jaipur/back.svg",
  23025. extra: 4060 / 3930,
  23026. bottom: 151 / 4200
  23027. }
  23028. },
  23029. },
  23030. [
  23031. {
  23032. name: "Normal",
  23033. height: math.unit(1.85, "meters"),
  23034. default: true
  23035. },
  23036. {
  23037. name: "Macro",
  23038. height: math.unit(150, "meters")
  23039. },
  23040. {
  23041. name: "Macro+",
  23042. height: math.unit(0.5, "miles")
  23043. },
  23044. {
  23045. name: "Macro++",
  23046. height: math.unit(2.5, "miles")
  23047. },
  23048. {
  23049. name: "Macro+++",
  23050. height: math.unit(12, "miles")
  23051. },
  23052. {
  23053. name: "Macro++++",
  23054. height: math.unit(120, "miles")
  23055. },
  23056. {
  23057. name: "Macro+++++",
  23058. height: math.unit(1200, "miles")
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23064. {
  23065. front: {
  23066. height: math.unit(6, "feet"),
  23067. weight: math.unit(150, "lb"),
  23068. name: "Front",
  23069. image: {
  23070. source: "./media/characters/sheila-wolf/front.svg",
  23071. extra: 1931 / 1808,
  23072. bottom: 29.5 / 1960
  23073. }
  23074. },
  23075. dick: {
  23076. height: math.unit(1.464, "feet"),
  23077. name: "Dick",
  23078. image: {
  23079. source: "./media/characters/sheila-wolf/dick.svg"
  23080. }
  23081. },
  23082. muzzle: {
  23083. height: math.unit(0.513, "feet"),
  23084. name: "Muzzle",
  23085. image: {
  23086. source: "./media/characters/sheila-wolf/muzzle.svg"
  23087. }
  23088. },
  23089. },
  23090. [
  23091. {
  23092. name: "Macro",
  23093. height: math.unit(70, "feet"),
  23094. default: true
  23095. },
  23096. ]
  23097. ))
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23100. {
  23101. front: {
  23102. height: math.unit(32, "meters"),
  23103. weight: math.unit(300000, "kg"),
  23104. name: "Front",
  23105. image: {
  23106. source: "./media/characters/almor/front.svg",
  23107. extra: 1408 / 1322,
  23108. bottom: 94.6 / 1506.5
  23109. }
  23110. },
  23111. },
  23112. [
  23113. {
  23114. name: "Macro",
  23115. height: math.unit(32, "meters"),
  23116. default: true
  23117. },
  23118. ]
  23119. ))
  23120. characterMakers.push(() => makeCharacter(
  23121. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23122. {
  23123. front: {
  23124. height: math.unit(7, "feet"),
  23125. weight: math.unit(200, "lb"),
  23126. name: "Front",
  23127. image: {
  23128. source: "./media/characters/silver/front.svg",
  23129. extra: 472.1 / 450.5,
  23130. bottom: 26.5 / 499.424
  23131. }
  23132. },
  23133. },
  23134. [
  23135. {
  23136. name: "Normal",
  23137. height: math.unit(7, "feet"),
  23138. default: true
  23139. },
  23140. {
  23141. name: "Macro",
  23142. height: math.unit(800, "feet")
  23143. },
  23144. {
  23145. name: "Megamacro",
  23146. height: math.unit(250, "miles")
  23147. },
  23148. ]
  23149. ))
  23150. characterMakers.push(() => makeCharacter(
  23151. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23152. {
  23153. front: {
  23154. height: math.unit(6, "feet"),
  23155. weight: math.unit(150, "lb"),
  23156. name: "Front",
  23157. image: {
  23158. source: "./media/characters/pliskin/front.svg",
  23159. extra: 1469 / 1359,
  23160. bottom: 70 / 1540
  23161. }
  23162. },
  23163. },
  23164. [
  23165. {
  23166. name: "Micro",
  23167. height: math.unit(3, "inches")
  23168. },
  23169. {
  23170. name: "Normal",
  23171. height: math.unit(5 + 11 / 12, "feet"),
  23172. default: true
  23173. },
  23174. {
  23175. name: "Macro",
  23176. height: math.unit(120, "feet")
  23177. },
  23178. ]
  23179. ))
  23180. characterMakers.push(() => makeCharacter(
  23181. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23182. {
  23183. front: {
  23184. height: math.unit(6, "feet"),
  23185. weight: math.unit(150, "lb"),
  23186. name: "Front",
  23187. image: {
  23188. source: "./media/characters/sammy/front.svg",
  23189. extra: 1193 / 1089,
  23190. bottom: 30.5 / 1226
  23191. }
  23192. },
  23193. },
  23194. [
  23195. {
  23196. name: "Macro",
  23197. height: math.unit(1700, "feet"),
  23198. default: true
  23199. },
  23200. {
  23201. name: "Examacro",
  23202. height: math.unit(2.5e9, "lightyears")
  23203. },
  23204. ]
  23205. ))
  23206. characterMakers.push(() => makeCharacter(
  23207. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23208. {
  23209. front: {
  23210. height: math.unit(21, "meters"),
  23211. weight: math.unit(12, "tonnes"),
  23212. name: "Front",
  23213. image: {
  23214. source: "./media/characters/kuru/front.svg",
  23215. extra: 4301 / 3785,
  23216. bottom: 371.3 / 4691
  23217. }
  23218. },
  23219. },
  23220. [
  23221. {
  23222. name: "Macro",
  23223. height: math.unit(21, "meters"),
  23224. default: true
  23225. },
  23226. ]
  23227. ))
  23228. characterMakers.push(() => makeCharacter(
  23229. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23230. {
  23231. front: {
  23232. height: math.unit(23, "meters"),
  23233. weight: math.unit(12.2, "tonnes"),
  23234. name: "Front",
  23235. image: {
  23236. source: "./media/characters/rakka/front.svg",
  23237. extra: 4670 / 4169,
  23238. bottom: 301 / 4968.7
  23239. }
  23240. },
  23241. },
  23242. [
  23243. {
  23244. name: "Macro",
  23245. height: math.unit(23, "meters"),
  23246. default: true
  23247. },
  23248. ]
  23249. ))
  23250. characterMakers.push(() => makeCharacter(
  23251. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23252. {
  23253. front: {
  23254. height: math.unit(6, "feet"),
  23255. weight: math.unit(150, "lb"),
  23256. name: "Front",
  23257. image: {
  23258. source: "./media/characters/rhys-feline/front.svg",
  23259. extra: 2488 / 2308,
  23260. bottom: 35.67 / 2519.19
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Really Small",
  23267. height: math.unit(1, "nm")
  23268. },
  23269. {
  23270. name: "Micro",
  23271. height: math.unit(4, "inches")
  23272. },
  23273. {
  23274. name: "Normal",
  23275. height: math.unit(4 + 10 / 12, "feet"),
  23276. default: true
  23277. },
  23278. {
  23279. name: "Macro",
  23280. height: math.unit(100, "feet")
  23281. },
  23282. {
  23283. name: "Megamacto",
  23284. height: math.unit(50, "miles")
  23285. },
  23286. ]
  23287. ))
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23290. {
  23291. side: {
  23292. height: math.unit(30, "feet"),
  23293. weight: math.unit(35000, "kg"),
  23294. name: "Side",
  23295. image: {
  23296. source: "./media/characters/alydar/side.svg",
  23297. extra: 234 / 222,
  23298. bottom: 6.5 / 241
  23299. }
  23300. },
  23301. front: {
  23302. height: math.unit(30, "feet"),
  23303. weight: math.unit(35000, "kg"),
  23304. name: "Front",
  23305. image: {
  23306. source: "./media/characters/alydar/front.svg",
  23307. extra: 223.37 / 210.2,
  23308. bottom: 22.3 / 246.76
  23309. }
  23310. },
  23311. top: {
  23312. height: math.unit(64.54, "feet"),
  23313. weight: math.unit(35000, "kg"),
  23314. name: "Top",
  23315. image: {
  23316. source: "./media/characters/alydar/top.svg"
  23317. }
  23318. },
  23319. anthro: {
  23320. height: math.unit(30, "feet"),
  23321. weight: math.unit(9000, "kg"),
  23322. name: "Anthro",
  23323. image: {
  23324. source: "./media/characters/alydar/anthro.svg",
  23325. extra: 432 / 421,
  23326. bottom: 7.18 / 440
  23327. }
  23328. },
  23329. maw: {
  23330. height: math.unit(11.693, "feet"),
  23331. name: "Maw",
  23332. image: {
  23333. source: "./media/characters/alydar/maw.svg"
  23334. }
  23335. },
  23336. head: {
  23337. height: math.unit(11.693, "feet"),
  23338. name: "Head",
  23339. image: {
  23340. source: "./media/characters/alydar/head.svg"
  23341. }
  23342. },
  23343. headAlt: {
  23344. height: math.unit(12.861, "feet"),
  23345. name: "Head (Alt)",
  23346. image: {
  23347. source: "./media/characters/alydar/head-alt.svg"
  23348. }
  23349. },
  23350. wing: {
  23351. height: math.unit(20.712, "feet"),
  23352. name: "Wing",
  23353. image: {
  23354. source: "./media/characters/alydar/wing.svg"
  23355. }
  23356. },
  23357. wingFeather: {
  23358. height: math.unit(9.662, "feet"),
  23359. name: "Wing Feather",
  23360. image: {
  23361. source: "./media/characters/alydar/wing-feather.svg"
  23362. }
  23363. },
  23364. countourFeather: {
  23365. height: math.unit(4.154, "feet"),
  23366. name: "Contour Feather",
  23367. image: {
  23368. source: "./media/characters/alydar/contour-feather.svg"
  23369. }
  23370. },
  23371. },
  23372. [
  23373. {
  23374. name: "Diplomatic",
  23375. height: math.unit(13, "feet"),
  23376. default: true
  23377. },
  23378. {
  23379. name: "Small",
  23380. height: math.unit(30, "feet")
  23381. },
  23382. {
  23383. name: "Normal",
  23384. height: math.unit(95, "feet"),
  23385. default: true
  23386. },
  23387. {
  23388. name: "Large",
  23389. height: math.unit(285, "feet")
  23390. },
  23391. {
  23392. name: "Incomprehensible",
  23393. height: math.unit(450, "megameters")
  23394. },
  23395. ]
  23396. ))
  23397. characterMakers.push(() => makeCharacter(
  23398. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23399. {
  23400. side: {
  23401. height: math.unit(11, "feet"),
  23402. weight: math.unit(1750, "kg"),
  23403. name: "Side",
  23404. image: {
  23405. source: "./media/characters/selicia/side.svg",
  23406. extra: 440 / 396,
  23407. bottom: 24.8 / 465.979
  23408. }
  23409. },
  23410. maw: {
  23411. height: math.unit(4.665, "feet"),
  23412. name: "Maw",
  23413. image: {
  23414. source: "./media/characters/selicia/maw.svg"
  23415. }
  23416. },
  23417. },
  23418. [
  23419. {
  23420. name: "Normal",
  23421. height: math.unit(11, "feet"),
  23422. default: true
  23423. },
  23424. ]
  23425. ))
  23426. characterMakers.push(() => makeCharacter(
  23427. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23428. {
  23429. side: {
  23430. height: math.unit(2 + 6 / 12, "feet"),
  23431. weight: math.unit(30, "lb"),
  23432. name: "Side",
  23433. image: {
  23434. source: "./media/characters/layla/side.svg",
  23435. extra: 244 / 188,
  23436. bottom: 18.2 / 262.1
  23437. }
  23438. },
  23439. back: {
  23440. height: math.unit(2 + 6 / 12, "feet"),
  23441. weight: math.unit(30, "lb"),
  23442. name: "Back",
  23443. image: {
  23444. source: "./media/characters/layla/back.svg",
  23445. extra: 308 / 241.5,
  23446. bottom: 8.9 / 316.8
  23447. }
  23448. },
  23449. cumming: {
  23450. height: math.unit(2 + 6 / 12, "feet"),
  23451. weight: math.unit(30, "lb"),
  23452. name: "Cumming",
  23453. image: {
  23454. source: "./media/characters/layla/cumming.svg",
  23455. extra: 342 / 279,
  23456. bottom: 595 / 938
  23457. }
  23458. },
  23459. dickFlaccid: {
  23460. height: math.unit(2.595, "feet"),
  23461. name: "Flaccid Genitals",
  23462. image: {
  23463. source: "./media/characters/layla/dick-flaccid.svg"
  23464. }
  23465. },
  23466. dickErect: {
  23467. height: math.unit(2.359, "feet"),
  23468. name: "Erect Genitals",
  23469. image: {
  23470. source: "./media/characters/layla/dick-erect.svg"
  23471. }
  23472. },
  23473. dragon: {
  23474. height: math.unit(40, "feet"),
  23475. name: "Dragon",
  23476. image: {
  23477. source: "./media/characters/layla/dragon.svg",
  23478. extra: 610/535,
  23479. bottom: 367/977
  23480. }
  23481. },
  23482. taur: {
  23483. height: math.unit(30, "feet"),
  23484. name: "Taur",
  23485. image: {
  23486. source: "./media/characters/layla/taur.svg",
  23487. extra: 1268/1199,
  23488. bottom: 112/1380
  23489. }
  23490. },
  23491. },
  23492. [
  23493. {
  23494. name: "Micro",
  23495. height: math.unit(1, "inch")
  23496. },
  23497. {
  23498. name: "Small",
  23499. height: math.unit(1, "foot")
  23500. },
  23501. {
  23502. name: "Normal",
  23503. height: math.unit(2 + 6 / 12, "feet"),
  23504. default: true
  23505. },
  23506. {
  23507. name: "Macro",
  23508. height: math.unit(200, "feet")
  23509. },
  23510. {
  23511. name: "Megamacro",
  23512. height: math.unit(1000, "miles")
  23513. },
  23514. {
  23515. name: "Planetary",
  23516. height: math.unit(8000, "miles")
  23517. },
  23518. {
  23519. name: "True Layla",
  23520. height: math.unit(200000 * 7, "multiverses")
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23526. {
  23527. back: {
  23528. height: math.unit(10.5, "feet"),
  23529. weight: math.unit(800, "lb"),
  23530. name: "Back",
  23531. image: {
  23532. source: "./media/characters/knox/back.svg",
  23533. extra: 1486 / 1089,
  23534. bottom: 107 / 1601.4
  23535. }
  23536. },
  23537. side: {
  23538. height: math.unit(10.5, "feet"),
  23539. weight: math.unit(800, "lb"),
  23540. name: "Side",
  23541. image: {
  23542. source: "./media/characters/knox/side.svg",
  23543. extra: 244 / 218,
  23544. bottom: 14 / 260
  23545. }
  23546. },
  23547. },
  23548. [
  23549. {
  23550. name: "Compact",
  23551. height: math.unit(10.5, "feet"),
  23552. default: true
  23553. },
  23554. {
  23555. name: "Dynamax",
  23556. height: math.unit(210, "feet")
  23557. },
  23558. {
  23559. name: "Full Macro",
  23560. height: math.unit(850, "feet")
  23561. },
  23562. ]
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23566. {
  23567. front: {
  23568. height: math.unit(6, "feet"),
  23569. weight: math.unit(152, "lb"),
  23570. name: "Front",
  23571. image: {
  23572. source: "./media/characters/shin-pikachu/front.svg",
  23573. extra: 1854/1602,
  23574. bottom: 166/2020
  23575. }
  23576. },
  23577. hand: {
  23578. height: math.unit(1.055, "feet"),
  23579. name: "Hand",
  23580. image: {
  23581. source: "./media/characters/shin-pikachu/hand.svg"
  23582. }
  23583. },
  23584. foot: {
  23585. height: math.unit(1.1, "feet"),
  23586. name: "Foot",
  23587. image: {
  23588. source: "./media/characters/shin-pikachu/foot.svg"
  23589. }
  23590. },
  23591. collar: {
  23592. height: math.unit(0.386, "feet"),
  23593. name: "Collar",
  23594. image: {
  23595. source: "./media/characters/shin-pikachu/collar.svg"
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Smallest",
  23602. height: math.unit(0.5, "inches")
  23603. },
  23604. {
  23605. name: "Micro",
  23606. height: math.unit(6, "inches")
  23607. },
  23608. {
  23609. name: "Normal",
  23610. height: math.unit(6, "feet"),
  23611. default: true
  23612. },
  23613. {
  23614. name: "Macro",
  23615. height: math.unit(150, "feet")
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(28, "feet"),
  23624. weight: math.unit(10500, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/kayda/front.svg",
  23628. extra: 1536 / 1428,
  23629. bottom: 68.7 / 1603
  23630. }
  23631. },
  23632. back: {
  23633. height: math.unit(28, "feet"),
  23634. weight: math.unit(10500, "lb"),
  23635. name: "Back",
  23636. image: {
  23637. source: "./media/characters/kayda/back.svg",
  23638. extra: 1557 / 1464,
  23639. bottom: 39.5 / 1597.49
  23640. }
  23641. },
  23642. dick: {
  23643. height: math.unit(3.858, "feet"),
  23644. name: "Dick",
  23645. image: {
  23646. source: "./media/characters/kayda/dick.svg"
  23647. }
  23648. },
  23649. },
  23650. [
  23651. {
  23652. name: "Macro",
  23653. height: math.unit(28, "feet"),
  23654. default: true
  23655. },
  23656. ]
  23657. ))
  23658. characterMakers.push(() => makeCharacter(
  23659. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23660. {
  23661. front: {
  23662. height: math.unit(10 + 11 / 12, "feet"),
  23663. weight: math.unit(1400, "lb"),
  23664. name: "Front",
  23665. image: {
  23666. source: "./media/characters/brian/front.svg",
  23667. extra: 737 / 692,
  23668. bottom: 55.4 / 785
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Normal",
  23675. height: math.unit(10 + 11 / 12, "feet"),
  23676. default: true
  23677. },
  23678. ]
  23679. ))
  23680. characterMakers.push(() => makeCharacter(
  23681. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23682. {
  23683. front: {
  23684. height: math.unit(5 + 8 / 12, "feet"),
  23685. weight: math.unit(140, "lb"),
  23686. name: "Front",
  23687. image: {
  23688. source: "./media/characters/khemri/front.svg",
  23689. extra: 4780 / 4059,
  23690. bottom: 80.1 / 4859.25
  23691. }
  23692. },
  23693. },
  23694. [
  23695. {
  23696. name: "Micro",
  23697. height: math.unit(6, "inches")
  23698. },
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(5 + 8 / 12, "feet"),
  23702. default: true
  23703. },
  23704. ]
  23705. ))
  23706. characterMakers.push(() => makeCharacter(
  23707. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23708. {
  23709. front: {
  23710. height: math.unit(13, "feet"),
  23711. weight: math.unit(1700, "lb"),
  23712. name: "Front",
  23713. image: {
  23714. source: "./media/characters/felix-braveheart/front.svg",
  23715. extra: 1222 / 1157,
  23716. bottom: 53.2 / 1280
  23717. }
  23718. },
  23719. back: {
  23720. height: math.unit(13, "feet"),
  23721. weight: math.unit(1700, "lb"),
  23722. name: "Back",
  23723. image: {
  23724. source: "./media/characters/felix-braveheart/back.svg",
  23725. extra: 1277 / 1203,
  23726. bottom: 50.2 / 1327
  23727. }
  23728. },
  23729. feral: {
  23730. height: math.unit(6, "feet"),
  23731. weight: math.unit(400, "lb"),
  23732. name: "Feral",
  23733. image: {
  23734. source: "./media/characters/felix-braveheart/feral.svg",
  23735. extra: 682 / 625,
  23736. bottom: 6.9 / 688
  23737. }
  23738. },
  23739. },
  23740. [
  23741. {
  23742. name: "Normal",
  23743. height: math.unit(13, "feet"),
  23744. default: true
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23750. {
  23751. side: {
  23752. height: math.unit(5 + 11 / 12, "feet"),
  23753. weight: math.unit(1400, "lb"),
  23754. name: "Side",
  23755. image: {
  23756. source: "./media/characters/shadow-blade/side.svg",
  23757. extra: 1726 / 1267,
  23758. bottom: 58.4 / 1785
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(5 + 11 / 12, "feet"),
  23766. default: true
  23767. },
  23768. ]
  23769. ))
  23770. characterMakers.push(() => makeCharacter(
  23771. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23772. {
  23773. front: {
  23774. height: math.unit(1 + 6 / 12, "feet"),
  23775. weight: math.unit(25, "lb"),
  23776. name: "Front",
  23777. image: {
  23778. source: "./media/characters/karla-halldor/front.svg",
  23779. extra: 1459 / 1383,
  23780. bottom: 12 / 1472
  23781. }
  23782. },
  23783. },
  23784. [
  23785. {
  23786. name: "Normal",
  23787. height: math.unit(1 + 6 / 12, "feet"),
  23788. default: true
  23789. },
  23790. ]
  23791. ))
  23792. characterMakers.push(() => makeCharacter(
  23793. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23794. {
  23795. front: {
  23796. height: math.unit(6 + 2 / 12, "feet"),
  23797. weight: math.unit(160, "lb"),
  23798. name: "Front",
  23799. image: {
  23800. source: "./media/characters/ariam/front.svg",
  23801. extra: 714 / 617,
  23802. bottom: 23.4 / 737,
  23803. }
  23804. },
  23805. squatting: {
  23806. height: math.unit(4.1, "feet"),
  23807. weight: math.unit(160, "lb"),
  23808. name: "Squatting",
  23809. image: {
  23810. source: "./media/characters/ariam/squatting.svg",
  23811. extra: 2617 / 2112,
  23812. bottom: 61.2 / 2681,
  23813. }
  23814. },
  23815. },
  23816. [
  23817. {
  23818. name: "Normal",
  23819. height: math.unit(6 + 2 / 12, "feet"),
  23820. default: true
  23821. },
  23822. {
  23823. name: "Normal+",
  23824. height: math.unit(4, "meters")
  23825. },
  23826. {
  23827. name: "Macro",
  23828. height: math.unit(50, "meters")
  23829. },
  23830. {
  23831. name: "Macro+",
  23832. height: math.unit(100, "meters")
  23833. },
  23834. {
  23835. name: "Megamacro",
  23836. height: math.unit(20, "km")
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23842. {
  23843. front: {
  23844. height: math.unit(1.67, "meters"),
  23845. weight: math.unit(140, "lb"),
  23846. name: "Front",
  23847. image: {
  23848. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23849. extra: 438 / 410,
  23850. bottom: 0.75 / 439
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Shrunken",
  23857. height: math.unit(7.6, "cm")
  23858. },
  23859. {
  23860. name: "Human Scale",
  23861. height: math.unit(1.67, "meters")
  23862. },
  23863. {
  23864. name: "Wolxi Scale",
  23865. height: math.unit(36.7, "meters"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23872. {
  23873. front: {
  23874. height: math.unit(1.73, "meters"),
  23875. weight: math.unit(240, "lb"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/izue-two-mothers/front.svg",
  23879. extra: 469 / 437,
  23880. bottom: 1.24 / 470.6
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Shrunken",
  23887. height: math.unit(7.86, "cm")
  23888. },
  23889. {
  23890. name: "Human Scale",
  23891. height: math.unit(1.73, "meters")
  23892. },
  23893. {
  23894. name: "Wolxi Scale",
  23895. height: math.unit(38, "meters"),
  23896. default: true
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23902. {
  23903. front: {
  23904. height: math.unit(1.55, "meters"),
  23905. weight: math.unit(120, "lb"),
  23906. name: "Front",
  23907. image: {
  23908. source: "./media/characters/teeku-love-shack/front.svg",
  23909. extra: 387 / 362,
  23910. bottom: 1.51 / 388
  23911. }
  23912. },
  23913. },
  23914. [
  23915. {
  23916. name: "Shrunken",
  23917. height: math.unit(7, "cm")
  23918. },
  23919. {
  23920. name: "Human Scale",
  23921. height: math.unit(1.55, "meters")
  23922. },
  23923. {
  23924. name: "Wolxi Scale",
  23925. height: math.unit(34.1, "meters"),
  23926. default: true
  23927. },
  23928. ]
  23929. ))
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23932. {
  23933. front: {
  23934. height: math.unit(1.83, "meters"),
  23935. weight: math.unit(135, "lb"),
  23936. name: "Front",
  23937. image: {
  23938. source: "./media/characters/dejma-the-red/front.svg",
  23939. extra: 480 / 458,
  23940. bottom: 1.8 / 482
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Shrunken",
  23947. height: math.unit(8.3, "cm")
  23948. },
  23949. {
  23950. name: "Human Scale",
  23951. height: math.unit(1.83, "meters")
  23952. },
  23953. {
  23954. name: "Wolxi Scale",
  23955. height: math.unit(40, "meters"),
  23956. default: true
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23962. {
  23963. front: {
  23964. height: math.unit(1.78, "meters"),
  23965. weight: math.unit(65, "kg"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/aki/front.svg",
  23969. extra: 452 / 415
  23970. }
  23971. },
  23972. frontNsfw: {
  23973. height: math.unit(1.78, "meters"),
  23974. weight: math.unit(65, "kg"),
  23975. name: "Front (NSFW)",
  23976. image: {
  23977. source: "./media/characters/aki/front-nsfw.svg",
  23978. extra: 452 / 415
  23979. }
  23980. },
  23981. back: {
  23982. height: math.unit(1.78, "meters"),
  23983. weight: math.unit(65, "kg"),
  23984. name: "Back",
  23985. image: {
  23986. source: "./media/characters/aki/back.svg",
  23987. extra: 452 / 415
  23988. }
  23989. },
  23990. rump: {
  23991. height: math.unit(2.05, "feet"),
  23992. name: "Rump",
  23993. image: {
  23994. source: "./media/characters/aki/rump.svg"
  23995. }
  23996. },
  23997. dick: {
  23998. height: math.unit(0.95, "feet"),
  23999. name: "Dick",
  24000. image: {
  24001. source: "./media/characters/aki/dick.svg"
  24002. }
  24003. },
  24004. },
  24005. [
  24006. {
  24007. name: "Micro",
  24008. height: math.unit(15, "cm")
  24009. },
  24010. {
  24011. name: "Normal",
  24012. height: math.unit(178, "cm"),
  24013. default: true
  24014. },
  24015. {
  24016. name: "Macro",
  24017. height: math.unit(214, "m")
  24018. },
  24019. {
  24020. name: "Macro+",
  24021. height: math.unit(534, "m")
  24022. },
  24023. ]
  24024. ))
  24025. characterMakers.push(() => makeCharacter(
  24026. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24027. {
  24028. front: {
  24029. height: math.unit(5 + 5 / 12, "feet"),
  24030. weight: math.unit(120, "lb"),
  24031. name: "Front",
  24032. image: {
  24033. source: "./media/characters/ari/front.svg",
  24034. extra: 714.5 / 682,
  24035. bottom: 8 / 722.5
  24036. }
  24037. },
  24038. },
  24039. [
  24040. {
  24041. name: "Normal",
  24042. height: math.unit(5 + 5 / 12, "feet")
  24043. },
  24044. {
  24045. name: "Macro",
  24046. height: math.unit(100, "feet"),
  24047. default: true
  24048. },
  24049. {
  24050. name: "Megamacro",
  24051. height: math.unit(100, "miles")
  24052. },
  24053. {
  24054. name: "Gigamacro",
  24055. height: math.unit(80000, "miles")
  24056. },
  24057. ]
  24058. ))
  24059. characterMakers.push(() => makeCharacter(
  24060. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24061. {
  24062. side: {
  24063. height: math.unit(9, "feet"),
  24064. weight: math.unit(400, "kg"),
  24065. name: "Side",
  24066. image: {
  24067. source: "./media/characters/bolt/side.svg",
  24068. extra: 1126 / 896,
  24069. bottom: 60 / 1187.3,
  24070. }
  24071. },
  24072. },
  24073. [
  24074. {
  24075. name: "Micro",
  24076. height: math.unit(5, "inches")
  24077. },
  24078. {
  24079. name: "Normal",
  24080. height: math.unit(9, "feet"),
  24081. default: true
  24082. },
  24083. {
  24084. name: "Macro",
  24085. height: math.unit(700, "feet")
  24086. },
  24087. {
  24088. name: "Max Size",
  24089. height: math.unit(1.52e22, "yottameters")
  24090. },
  24091. ]
  24092. ))
  24093. characterMakers.push(() => makeCharacter(
  24094. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24095. {
  24096. front: {
  24097. height: math.unit(4.53, "meters"),
  24098. weight: math.unit(3, "tons"),
  24099. name: "Front",
  24100. image: {
  24101. source: "./media/characters/draekon-sylviar/front.svg",
  24102. extra: 1228 / 1068,
  24103. bottom: 41 / 1270
  24104. }
  24105. },
  24106. tail: {
  24107. height: math.unit(1.772, "meter"),
  24108. name: "Tail",
  24109. image: {
  24110. source: "./media/characters/draekon-sylviar/tail.svg"
  24111. }
  24112. },
  24113. head: {
  24114. height: math.unit(1.331, "meter"),
  24115. name: "Head",
  24116. image: {
  24117. source: "./media/characters/draekon-sylviar/head.svg"
  24118. }
  24119. },
  24120. hand: {
  24121. height: math.unit(0.564, "meter"),
  24122. name: "Hand",
  24123. image: {
  24124. source: "./media/characters/draekon-sylviar/hand.svg"
  24125. }
  24126. },
  24127. foot: {
  24128. height: math.unit(0.621, "meter"),
  24129. name: "Foot",
  24130. image: {
  24131. source: "./media/characters/draekon-sylviar/foot.svg",
  24132. bottom: 32 / 324
  24133. }
  24134. },
  24135. dick: {
  24136. height: math.unit(61, "cm"),
  24137. name: "Dick",
  24138. image: {
  24139. source: "./media/characters/draekon-sylviar/dick.svg"
  24140. }
  24141. },
  24142. dickseparated: {
  24143. height: math.unit(61, "cm"),
  24144. name: "Dick-separated",
  24145. image: {
  24146. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24147. }
  24148. },
  24149. },
  24150. [
  24151. {
  24152. name: "Small",
  24153. height: math.unit(4.53 / 2, "meters"),
  24154. default: true
  24155. },
  24156. {
  24157. name: "Normal",
  24158. height: math.unit(4.53, "meters"),
  24159. default: true
  24160. },
  24161. {
  24162. name: "Large",
  24163. height: math.unit(4.53 * 2, "meters"),
  24164. },
  24165. ]
  24166. ))
  24167. characterMakers.push(() => makeCharacter(
  24168. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24169. {
  24170. front: {
  24171. height: math.unit(6 + 2 / 12, "feet"),
  24172. weight: math.unit(180, "lb"),
  24173. name: "Front",
  24174. image: {
  24175. source: "./media/characters/brawler/front.svg",
  24176. extra: 3301 / 3027,
  24177. bottom: 138 / 3439
  24178. }
  24179. },
  24180. },
  24181. [
  24182. {
  24183. name: "Normal",
  24184. height: math.unit(6 + 2 / 12, "feet"),
  24185. default: true
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(11, "feet"),
  24194. weight: math.unit(1000, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/alex/front.svg",
  24198. bottom: 44.5 / 620
  24199. }
  24200. },
  24201. },
  24202. [
  24203. {
  24204. name: "Micro",
  24205. height: math.unit(5, "inches")
  24206. },
  24207. {
  24208. name: "Normal",
  24209. height: math.unit(11, "feet"),
  24210. default: true
  24211. },
  24212. {
  24213. name: "Macro",
  24214. height: math.unit(9.5e9, "feet")
  24215. },
  24216. {
  24217. name: "Max Size",
  24218. height: math.unit(1.4e283, "yottameters")
  24219. },
  24220. ]
  24221. ))
  24222. characterMakers.push(() => makeCharacter(
  24223. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24224. {
  24225. female: {
  24226. height: math.unit(29.9, "m"),
  24227. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24228. name: "Female",
  24229. image: {
  24230. source: "./media/characters/zenari/female.svg",
  24231. extra: 3281.6 / 3217,
  24232. bottom: 72.2 / 3353
  24233. }
  24234. },
  24235. male: {
  24236. height: math.unit(27.7, "m"),
  24237. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24238. name: "Male",
  24239. image: {
  24240. source: "./media/characters/zenari/male.svg",
  24241. extra: 3008 / 2991,
  24242. bottom: 54.6 / 3069
  24243. }
  24244. },
  24245. },
  24246. [
  24247. {
  24248. name: "Macro",
  24249. height: math.unit(29.7, "meters"),
  24250. default: true
  24251. },
  24252. ]
  24253. ))
  24254. characterMakers.push(() => makeCharacter(
  24255. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24256. {
  24257. female: {
  24258. height: math.unit(23.8, "m"),
  24259. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24260. name: "Female",
  24261. image: {
  24262. source: "./media/characters/mactarian/female.svg",
  24263. extra: 2662 / 2569,
  24264. bottom: 73 / 2736
  24265. }
  24266. },
  24267. male: {
  24268. height: math.unit(23.8, "m"),
  24269. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24270. name: "Male",
  24271. image: {
  24272. source: "./media/characters/mactarian/male.svg",
  24273. extra: 2673 / 2600,
  24274. bottom: 76 / 2750
  24275. }
  24276. },
  24277. },
  24278. [
  24279. {
  24280. name: "Macro",
  24281. height: math.unit(23.8, "meters"),
  24282. default: true
  24283. },
  24284. ]
  24285. ))
  24286. characterMakers.push(() => makeCharacter(
  24287. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24288. {
  24289. female: {
  24290. height: math.unit(19.3, "m"),
  24291. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24292. name: "Female",
  24293. image: {
  24294. source: "./media/characters/umok/female.svg",
  24295. extra: 2186 / 2078,
  24296. bottom: 87 / 2277
  24297. }
  24298. },
  24299. male: {
  24300. height: math.unit(19.5, "m"),
  24301. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24302. name: "Male",
  24303. image: {
  24304. source: "./media/characters/umok/male.svg",
  24305. extra: 2233 / 2140,
  24306. bottom: 24.4 / 2258
  24307. }
  24308. },
  24309. },
  24310. [
  24311. {
  24312. name: "Macro",
  24313. height: math.unit(19.3, "meters"),
  24314. default: true
  24315. },
  24316. ]
  24317. ))
  24318. characterMakers.push(() => makeCharacter(
  24319. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24320. {
  24321. female: {
  24322. height: math.unit(26.15, "m"),
  24323. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24324. name: "Female",
  24325. image: {
  24326. source: "./media/characters/joraxian/female.svg",
  24327. extra: 2912 / 2824,
  24328. bottom: 36 / 2956
  24329. }
  24330. },
  24331. male: {
  24332. height: math.unit(25.4, "m"),
  24333. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24334. name: "Male",
  24335. image: {
  24336. source: "./media/characters/joraxian/male.svg",
  24337. extra: 2877 / 2721,
  24338. bottom: 82 / 2967
  24339. }
  24340. },
  24341. },
  24342. [
  24343. {
  24344. name: "Macro",
  24345. height: math.unit(26.15, "meters"),
  24346. default: true
  24347. },
  24348. ]
  24349. ))
  24350. characterMakers.push(() => makeCharacter(
  24351. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24352. {
  24353. female: {
  24354. height: math.unit(21.6, "m"),
  24355. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24356. name: "Female",
  24357. image: {
  24358. source: "./media/characters/sthara/female.svg",
  24359. extra: 2516 / 2347,
  24360. bottom: 21.5 / 2537
  24361. }
  24362. },
  24363. male: {
  24364. height: math.unit(24, "m"),
  24365. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24366. name: "Male",
  24367. image: {
  24368. source: "./media/characters/sthara/male.svg",
  24369. extra: 2732 / 2607,
  24370. bottom: 23 / 2732
  24371. }
  24372. },
  24373. },
  24374. [
  24375. {
  24376. name: "Macro",
  24377. height: math.unit(21.6, "meters"),
  24378. default: true
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24384. {
  24385. front: {
  24386. height: math.unit(6 + 4 / 12, "feet"),
  24387. weight: math.unit(175, "lb"),
  24388. name: "Front",
  24389. image: {
  24390. source: "./media/characters/luka-bryzant/front.svg",
  24391. extra: 311 / 289,
  24392. bottom: 4 / 315
  24393. }
  24394. },
  24395. back: {
  24396. height: math.unit(6 + 4 / 12, "feet"),
  24397. weight: math.unit(175, "lb"),
  24398. name: "Back",
  24399. image: {
  24400. source: "./media/characters/luka-bryzant/back.svg",
  24401. extra: 311 / 289,
  24402. bottom: 3.8 / 313.7
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Micro",
  24409. height: math.unit(10, "inches")
  24410. },
  24411. {
  24412. name: "Normal",
  24413. height: math.unit(6 + 4 / 12, "feet"),
  24414. default: true
  24415. },
  24416. {
  24417. name: "Large",
  24418. height: math.unit(12, "feet")
  24419. },
  24420. ]
  24421. ))
  24422. characterMakers.push(() => makeCharacter(
  24423. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24424. {
  24425. front: {
  24426. height: math.unit(5 + 7 / 12, "feet"),
  24427. weight: math.unit(185, "lb"),
  24428. name: "Front",
  24429. image: {
  24430. source: "./media/characters/aman-aquila/front.svg",
  24431. extra: 1013 / 976,
  24432. bottom: 45.6 / 1057
  24433. }
  24434. },
  24435. side: {
  24436. height: math.unit(5 + 7 / 12, "feet"),
  24437. weight: math.unit(185, "lb"),
  24438. name: "Side",
  24439. image: {
  24440. source: "./media/characters/aman-aquila/side.svg",
  24441. extra: 1054 / 1011,
  24442. bottom: 15 / 1070
  24443. }
  24444. },
  24445. back: {
  24446. height: math.unit(5 + 7 / 12, "feet"),
  24447. weight: math.unit(185, "lb"),
  24448. name: "Back",
  24449. image: {
  24450. source: "./media/characters/aman-aquila/back.svg",
  24451. extra: 1026 / 970,
  24452. bottom: 12 / 1039
  24453. }
  24454. },
  24455. head: {
  24456. height: math.unit(1.211, "feet"),
  24457. name: "Head",
  24458. image: {
  24459. source: "./media/characters/aman-aquila/head.svg",
  24460. }
  24461. },
  24462. },
  24463. [
  24464. {
  24465. name: "Minimicro",
  24466. height: math.unit(0.057, "inches")
  24467. },
  24468. {
  24469. name: "Micro",
  24470. height: math.unit(7, "inches")
  24471. },
  24472. {
  24473. name: "Mini",
  24474. height: math.unit(3 + 7 / 12, "feet")
  24475. },
  24476. {
  24477. name: "Normal",
  24478. height: math.unit(5 + 7 / 12, "feet"),
  24479. default: true
  24480. },
  24481. {
  24482. name: "Macro",
  24483. height: math.unit(157 + 7 / 12, "feet")
  24484. },
  24485. {
  24486. name: "Megamacro",
  24487. height: math.unit(1557 + 7 / 12, "feet")
  24488. },
  24489. {
  24490. name: "Gigamacro",
  24491. height: math.unit(15557 + 7 / 12, "feet")
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24497. {
  24498. front: {
  24499. height: math.unit(3 + 2 / 12, "inches"),
  24500. weight: math.unit(0.3, "ounces"),
  24501. name: "Front",
  24502. image: {
  24503. source: "./media/characters/hiphae/front.svg",
  24504. extra: 1931 / 1683,
  24505. bottom: 24 / 1955
  24506. }
  24507. },
  24508. },
  24509. [
  24510. {
  24511. name: "Normal",
  24512. height: math.unit(3 + 1 / 2, "inches"),
  24513. default: true
  24514. },
  24515. ]
  24516. ))
  24517. characterMakers.push(() => makeCharacter(
  24518. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24519. {
  24520. front: {
  24521. height: math.unit(5 + 10 / 12, "feet"),
  24522. weight: math.unit(165, "lb"),
  24523. name: "Front",
  24524. image: {
  24525. source: "./media/characters/nicky/front.svg",
  24526. extra: 3144 / 2886,
  24527. bottom: 45.6 / 3192
  24528. }
  24529. },
  24530. back: {
  24531. height: math.unit(5 + 10 / 12, "feet"),
  24532. weight: math.unit(165, "lb"),
  24533. name: "Back",
  24534. image: {
  24535. source: "./media/characters/nicky/back.svg",
  24536. extra: 3055 / 2804,
  24537. bottom: 28.4 / 3087
  24538. }
  24539. },
  24540. frontclothed: {
  24541. height: math.unit(5 + 10 / 12, "feet"),
  24542. weight: math.unit(165, "lb"),
  24543. name: "Front-clothed",
  24544. image: {
  24545. source: "./media/characters/nicky/front-clothed.svg",
  24546. extra: 3184.9 / 2926.9,
  24547. bottom: 86.5 / 3239.9
  24548. }
  24549. },
  24550. foot: {
  24551. height: math.unit(1.16, "feet"),
  24552. name: "Foot",
  24553. image: {
  24554. source: "./media/characters/nicky/foot.svg"
  24555. }
  24556. },
  24557. feet: {
  24558. height: math.unit(1.34, "feet"),
  24559. name: "Feet",
  24560. image: {
  24561. source: "./media/characters/nicky/feet.svg"
  24562. }
  24563. },
  24564. maw: {
  24565. height: math.unit(0.9, "feet"),
  24566. name: "Maw",
  24567. image: {
  24568. source: "./media/characters/nicky/maw.svg"
  24569. }
  24570. },
  24571. },
  24572. [
  24573. {
  24574. name: "Normal",
  24575. height: math.unit(5 + 10 / 12, "feet"),
  24576. default: true
  24577. },
  24578. {
  24579. name: "Macro",
  24580. height: math.unit(60, "feet")
  24581. },
  24582. {
  24583. name: "Megamacro",
  24584. height: math.unit(1, "mile")
  24585. },
  24586. ]
  24587. ))
  24588. characterMakers.push(() => makeCharacter(
  24589. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24590. {
  24591. side: {
  24592. height: math.unit(10, "feet"),
  24593. weight: math.unit(600, "lb"),
  24594. name: "Side",
  24595. image: {
  24596. source: "./media/characters/blair/side.svg",
  24597. bottom: 16.6 / 475,
  24598. extra: 458 / 431
  24599. }
  24600. },
  24601. },
  24602. [
  24603. {
  24604. name: "Micro",
  24605. height: math.unit(8, "inches")
  24606. },
  24607. {
  24608. name: "Normal",
  24609. height: math.unit(10, "feet"),
  24610. default: true
  24611. },
  24612. {
  24613. name: "Macro",
  24614. height: math.unit(180, "feet")
  24615. },
  24616. ]
  24617. ))
  24618. characterMakers.push(() => makeCharacter(
  24619. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24620. {
  24621. front: {
  24622. height: math.unit(5 + 4 / 12, "feet"),
  24623. weight: math.unit(125, "lb"),
  24624. name: "Front",
  24625. image: {
  24626. source: "./media/characters/fisher/front.svg",
  24627. extra: 444 / 390,
  24628. bottom: 2 / 444.8
  24629. }
  24630. },
  24631. },
  24632. [
  24633. {
  24634. name: "Micro",
  24635. height: math.unit(4, "inches")
  24636. },
  24637. {
  24638. name: "Normal",
  24639. height: math.unit(5 + 4 / 12, "feet"),
  24640. default: true
  24641. },
  24642. {
  24643. name: "Macro",
  24644. height: math.unit(100, "feet")
  24645. },
  24646. ]
  24647. ))
  24648. characterMakers.push(() => makeCharacter(
  24649. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24650. {
  24651. front: {
  24652. height: math.unit(6.71, "feet"),
  24653. weight: math.unit(200, "lb"),
  24654. capacity: math.unit(1000000, "people"),
  24655. name: "Front",
  24656. image: {
  24657. source: "./media/characters/gliss/front.svg",
  24658. extra: 2347 / 2231,
  24659. bottom: 113 / 2462
  24660. }
  24661. },
  24662. hammerspaceSize: {
  24663. height: math.unit(6.71 * 717, "feet"),
  24664. weight: math.unit(200, "lb"),
  24665. capacity: math.unit(1000000, "people"),
  24666. name: "Hammerspace Size",
  24667. image: {
  24668. source: "./media/characters/gliss/front.svg",
  24669. extra: 2347 / 2231,
  24670. bottom: 113 / 2462
  24671. }
  24672. },
  24673. },
  24674. [
  24675. {
  24676. name: "Normal",
  24677. height: math.unit(6.71, "feet"),
  24678. default: true
  24679. },
  24680. ]
  24681. ))
  24682. characterMakers.push(() => makeCharacter(
  24683. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24684. {
  24685. side: {
  24686. height: math.unit(1.44, "m"),
  24687. weight: math.unit(80, "kg"),
  24688. name: "Side",
  24689. image: {
  24690. source: "./media/characters/dune-anderson/side.svg",
  24691. bottom: 49 / 1426
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Wolf-sized",
  24698. height: math.unit(1.44, "meters")
  24699. },
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(5.05, "meters"),
  24703. default: true
  24704. },
  24705. {
  24706. name: "Big",
  24707. height: math.unit(14.4, "meters")
  24708. },
  24709. {
  24710. name: "Huge",
  24711. height: math.unit(144, "meters")
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24717. {
  24718. front: {
  24719. height: math.unit(7, "feet"),
  24720. weight: math.unit(425, "lb"),
  24721. name: "Front",
  24722. image: {
  24723. source: "./media/characters/hind/front.svg",
  24724. extra: 2091 / 1860,
  24725. bottom: 129 / 2220
  24726. }
  24727. },
  24728. back: {
  24729. height: math.unit(7, "feet"),
  24730. weight: math.unit(425, "lb"),
  24731. name: "Back",
  24732. image: {
  24733. source: "./media/characters/hind/back.svg",
  24734. extra: 2091 / 1860,
  24735. bottom: 24.6 / 2309
  24736. }
  24737. },
  24738. tail: {
  24739. height: math.unit(2.8, "feet"),
  24740. name: "Tail",
  24741. image: {
  24742. source: "./media/characters/hind/tail.svg"
  24743. }
  24744. },
  24745. head: {
  24746. height: math.unit(2.55, "feet"),
  24747. name: "Head",
  24748. image: {
  24749. source: "./media/characters/hind/head.svg"
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "XS",
  24756. height: math.unit(0.7, "feet")
  24757. },
  24758. {
  24759. name: "Normal",
  24760. height: math.unit(7, "feet"),
  24761. default: true
  24762. },
  24763. {
  24764. name: "XL",
  24765. height: math.unit(70, "feet")
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(6, "feet"),
  24774. weight: math.unit(150, "lb"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/dylan-skaven/front.svg",
  24778. extra: 2318 / 2063,
  24779. bottom: 93.4 / 2410
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Nano",
  24786. height: math.unit(1, "mm")
  24787. },
  24788. {
  24789. name: "Micro",
  24790. height: math.unit(1, "cm")
  24791. },
  24792. {
  24793. name: "Normal",
  24794. height: math.unit(2.1, "meters"),
  24795. default: true
  24796. },
  24797. ]
  24798. ))
  24799. characterMakers.push(() => makeCharacter(
  24800. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24801. {
  24802. front: {
  24803. height: math.unit(7 + 5 / 12, "feet"),
  24804. weight: math.unit(357, "lb"),
  24805. name: "Front",
  24806. image: {
  24807. source: "./media/characters/solex-draconov/front.svg",
  24808. extra: 1993 / 1865,
  24809. bottom: 117 / 2111
  24810. }
  24811. },
  24812. },
  24813. [
  24814. {
  24815. name: "Natural Height",
  24816. height: math.unit(7 + 5 / 12, "feet"),
  24817. default: true
  24818. },
  24819. {
  24820. name: "Macro",
  24821. height: math.unit(350, "feet")
  24822. },
  24823. {
  24824. name: "Macro+",
  24825. height: math.unit(1000, "feet")
  24826. },
  24827. {
  24828. name: "Megamacro",
  24829. height: math.unit(20, "km")
  24830. },
  24831. {
  24832. name: "Megamacro+",
  24833. height: math.unit(1000, "km")
  24834. },
  24835. {
  24836. name: "Gigamacro",
  24837. height: math.unit(2.5, "Gm")
  24838. },
  24839. {
  24840. name: "Teramacro",
  24841. height: math.unit(15, "Tm")
  24842. },
  24843. {
  24844. name: "Galactic",
  24845. height: math.unit(30, "Zm")
  24846. },
  24847. {
  24848. name: "Universal",
  24849. height: math.unit(21000, "Ym")
  24850. },
  24851. {
  24852. name: "Omniversal",
  24853. height: math.unit(9.861e50, "Ym")
  24854. },
  24855. {
  24856. name: "Existential",
  24857. height: math.unit(1e300, "meters")
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24863. {
  24864. side: {
  24865. height: math.unit(25, "feet"),
  24866. weight: math.unit(90000, "lb"),
  24867. name: "Side",
  24868. image: {
  24869. source: "./media/characters/mandarax/side.svg",
  24870. extra: 614 / 332,
  24871. bottom: 55 / 630
  24872. }
  24873. },
  24874. head: {
  24875. height: math.unit(11.4, "feet"),
  24876. name: "Head",
  24877. image: {
  24878. source: "./media/characters/mandarax/head.svg"
  24879. }
  24880. },
  24881. belly: {
  24882. height: math.unit(33, "feet"),
  24883. name: "Belly",
  24884. capacity: math.unit(500, "people"),
  24885. image: {
  24886. source: "./media/characters/mandarax/belly.svg"
  24887. }
  24888. },
  24889. dick: {
  24890. height: math.unit(8.46, "feet"),
  24891. name: "Dick",
  24892. image: {
  24893. source: "./media/characters/mandarax/dick.svg"
  24894. }
  24895. },
  24896. top: {
  24897. height: math.unit(28, "meters"),
  24898. name: "Top",
  24899. image: {
  24900. source: "./media/characters/mandarax/top.svg"
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Normal",
  24907. height: math.unit(25, "feet"),
  24908. default: true
  24909. },
  24910. ]
  24911. ))
  24912. characterMakers.push(() => makeCharacter(
  24913. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24914. {
  24915. front: {
  24916. height: math.unit(5, "feet"),
  24917. weight: math.unit(90, "lb"),
  24918. name: "Front",
  24919. image: {
  24920. source: "./media/characters/pixil/front.svg",
  24921. extra: 2000 / 1618,
  24922. bottom: 12.3 / 2011
  24923. }
  24924. },
  24925. },
  24926. [
  24927. {
  24928. name: "Normal",
  24929. height: math.unit(5, "feet"),
  24930. default: true
  24931. },
  24932. {
  24933. name: "Megamacro",
  24934. height: math.unit(10, "miles"),
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24940. {
  24941. front: {
  24942. height: math.unit(7 + 2 / 12, "feet"),
  24943. weight: math.unit(200, "lb"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/angel/front.svg",
  24947. extra: 1830 / 1737,
  24948. bottom: 22.6 / 1854,
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Normal",
  24955. height: math.unit(7 + 2 / 12, "feet"),
  24956. default: true
  24957. },
  24958. {
  24959. name: "Macro",
  24960. height: math.unit(1000, "feet")
  24961. },
  24962. {
  24963. name: "Megamacro",
  24964. height: math.unit(2, "miles")
  24965. },
  24966. {
  24967. name: "Gigamacro",
  24968. height: math.unit(20, "earths")
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24974. {
  24975. front: {
  24976. height: math.unit(5, "feet"),
  24977. weight: math.unit(180, "lb"),
  24978. name: "Front",
  24979. image: {
  24980. source: "./media/characters/mekana/front.svg",
  24981. extra: 1671 / 1605,
  24982. bottom: 3.5 / 1691
  24983. }
  24984. },
  24985. side: {
  24986. height: math.unit(5, "feet"),
  24987. weight: math.unit(180, "lb"),
  24988. name: "Side",
  24989. image: {
  24990. source: "./media/characters/mekana/side.svg",
  24991. extra: 1671 / 1605,
  24992. bottom: 3.5 / 1691
  24993. }
  24994. },
  24995. back: {
  24996. height: math.unit(5, "feet"),
  24997. weight: math.unit(180, "lb"),
  24998. name: "Back",
  24999. image: {
  25000. source: "./media/characters/mekana/back.svg",
  25001. extra: 1671 / 1605,
  25002. bottom: 3.5 / 1691
  25003. }
  25004. },
  25005. },
  25006. [
  25007. {
  25008. name: "Normal",
  25009. height: math.unit(5, "feet"),
  25010. default: true
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25016. {
  25017. front: {
  25018. height: math.unit(4 + 6 / 12, "feet"),
  25019. weight: math.unit(80, "lb"),
  25020. name: "Front",
  25021. image: {
  25022. source: "./media/characters/pixie/front.svg",
  25023. extra: 1924 / 1825,
  25024. bottom: 22.4 / 1946
  25025. }
  25026. },
  25027. },
  25028. [
  25029. {
  25030. name: "Normal",
  25031. height: math.unit(4 + 6 / 12, "feet"),
  25032. default: true
  25033. },
  25034. {
  25035. name: "Macro",
  25036. height: math.unit(40, "feet")
  25037. },
  25038. ]
  25039. ))
  25040. characterMakers.push(() => makeCharacter(
  25041. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25042. {
  25043. front: {
  25044. height: math.unit(2.1, "meters"),
  25045. weight: math.unit(200, "lb"),
  25046. name: "Front",
  25047. image: {
  25048. source: "./media/characters/the-lascivious/front.svg",
  25049. extra: 1 / 0.893,
  25050. bottom: 3.5 / 573.7
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Human Scale",
  25057. height: math.unit(2.1, "meters")
  25058. },
  25059. {
  25060. name: "Wolxi Scale",
  25061. height: math.unit(46.2, "m"),
  25062. default: true
  25063. },
  25064. {
  25065. name: "Boinker of Buildings",
  25066. height: math.unit(10, "km")
  25067. },
  25068. {
  25069. name: "Shagger of Skyscrapers",
  25070. height: math.unit(40, "km")
  25071. },
  25072. {
  25073. name: "Banger of Boroughs",
  25074. height: math.unit(4000, "km")
  25075. },
  25076. {
  25077. name: "Screwer of States",
  25078. height: math.unit(100000, "km")
  25079. },
  25080. {
  25081. name: "Pounder of Planets",
  25082. height: math.unit(2000000, "km")
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25088. {
  25089. front: {
  25090. height: math.unit(6, "feet"),
  25091. weight: math.unit(150, "lb"),
  25092. name: "Front",
  25093. image: {
  25094. source: "./media/characters/aj/front.svg",
  25095. extra: 2039 / 1562,
  25096. bottom: 40 / 2079
  25097. }
  25098. },
  25099. },
  25100. [
  25101. {
  25102. name: "Normal",
  25103. height: math.unit(11 + 6 / 12, "feet"),
  25104. default: true
  25105. },
  25106. {
  25107. name: "Megamacro",
  25108. height: math.unit(60, "megameters")
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25114. {
  25115. side: {
  25116. height: math.unit(31 + 8 / 12, "feet"),
  25117. weight: math.unit(75000, "kg"),
  25118. name: "Side",
  25119. image: {
  25120. source: "./media/characters/koros/side.svg",
  25121. extra: 1442 / 1297,
  25122. bottom: 122.7 / 1562
  25123. }
  25124. },
  25125. dicksKingsCrown: {
  25126. height: math.unit(6, "feet"),
  25127. name: "Dicks (King's Crown)",
  25128. image: {
  25129. source: "./media/characters/koros/dicks-kings-crown.svg"
  25130. }
  25131. },
  25132. dicksTailSet: {
  25133. height: math.unit(3, "feet"),
  25134. name: "Dicks (Tail Set)",
  25135. image: {
  25136. source: "./media/characters/koros/dicks-tail-set.svg"
  25137. }
  25138. },
  25139. dickCumming: {
  25140. height: math.unit(7.98, "feet"),
  25141. name: "Dick (Cumming)",
  25142. image: {
  25143. source: "./media/characters/koros/dick-cumming.svg"
  25144. }
  25145. },
  25146. dicksBack: {
  25147. height: math.unit(5.9, "feet"),
  25148. name: "Dicks (Back)",
  25149. image: {
  25150. source: "./media/characters/koros/dicks-back.svg"
  25151. }
  25152. },
  25153. dicksFront: {
  25154. height: math.unit(3.72, "feet"),
  25155. name: "Dicks (Front)",
  25156. image: {
  25157. source: "./media/characters/koros/dicks-front.svg"
  25158. }
  25159. },
  25160. dicksPeeking: {
  25161. height: math.unit(3.0, "feet"),
  25162. name: "Dicks (Peeking)",
  25163. image: {
  25164. source: "./media/characters/koros/dicks-peeking.svg"
  25165. }
  25166. },
  25167. eye: {
  25168. height: math.unit(1.7, "feet"),
  25169. name: "Eye",
  25170. image: {
  25171. source: "./media/characters/koros/eye.svg"
  25172. }
  25173. },
  25174. headFront: {
  25175. height: math.unit(11.69, "feet"),
  25176. name: "Head (Front)",
  25177. image: {
  25178. source: "./media/characters/koros/head-front.svg"
  25179. }
  25180. },
  25181. headSide: {
  25182. height: math.unit(14, "feet"),
  25183. name: "Head (Side)",
  25184. image: {
  25185. source: "./media/characters/koros/head-side.svg"
  25186. }
  25187. },
  25188. leg: {
  25189. height: math.unit(17, "feet"),
  25190. name: "Leg",
  25191. image: {
  25192. source: "./media/characters/koros/leg.svg"
  25193. }
  25194. },
  25195. mawSide: {
  25196. height: math.unit(12.8, "feet"),
  25197. name: "Maw (Side)",
  25198. image: {
  25199. source: "./media/characters/koros/maw-side.svg"
  25200. }
  25201. },
  25202. mawSpitting: {
  25203. height: math.unit(17, "feet"),
  25204. name: "Maw (Spitting)",
  25205. image: {
  25206. source: "./media/characters/koros/maw-spitting.svg"
  25207. }
  25208. },
  25209. slit: {
  25210. height: math.unit(2.8, "feet"),
  25211. name: "Slit",
  25212. image: {
  25213. source: "./media/characters/koros/slit.svg"
  25214. }
  25215. },
  25216. stomach: {
  25217. height: math.unit(6.8, "feet"),
  25218. capacity: math.unit(20, "people"),
  25219. name: "Stomach",
  25220. image: {
  25221. source: "./media/characters/koros/stomach.svg"
  25222. }
  25223. },
  25224. wingspanBottom: {
  25225. height: math.unit(114, "feet"),
  25226. name: "Wingspan (Bottom)",
  25227. image: {
  25228. source: "./media/characters/koros/wingspan-bottom.svg"
  25229. }
  25230. },
  25231. wingspanTop: {
  25232. height: math.unit(104, "feet"),
  25233. name: "Wingspan (Top)",
  25234. image: {
  25235. source: "./media/characters/koros/wingspan-top.svg"
  25236. }
  25237. },
  25238. },
  25239. [
  25240. {
  25241. name: "Normal",
  25242. height: math.unit(31 + 8 / 12, "feet"),
  25243. default: true
  25244. },
  25245. ]
  25246. ))
  25247. characterMakers.push(() => makeCharacter(
  25248. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25249. {
  25250. front: {
  25251. height: math.unit(18 + 5 / 12, "feet"),
  25252. weight: math.unit(3750, "kg"),
  25253. name: "Front",
  25254. image: {
  25255. source: "./media/characters/vexx/front.svg",
  25256. extra: 426 / 396,
  25257. bottom: 31.5 / 458
  25258. }
  25259. },
  25260. maw: {
  25261. height: math.unit(6, "feet"),
  25262. name: "Maw",
  25263. image: {
  25264. source: "./media/characters/vexx/maw.svg"
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Normal",
  25271. height: math.unit(18 + 5 / 12, "feet"),
  25272. default: true
  25273. },
  25274. ]
  25275. ))
  25276. characterMakers.push(() => makeCharacter(
  25277. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25278. {
  25279. front: {
  25280. height: math.unit(17 + 6 / 12, "feet"),
  25281. weight: math.unit(150, "lb"),
  25282. name: "Front",
  25283. image: {
  25284. source: "./media/characters/baadra/front.svg",
  25285. extra: 3137 / 2890,
  25286. bottom: 168.4 / 3305
  25287. }
  25288. },
  25289. back: {
  25290. height: math.unit(17 + 6 / 12, "feet"),
  25291. weight: math.unit(150, "lb"),
  25292. name: "Back",
  25293. image: {
  25294. source: "./media/characters/baadra/back.svg",
  25295. extra: 3142 / 2890,
  25296. bottom: 220 / 3371
  25297. }
  25298. },
  25299. head: {
  25300. height: math.unit(5.45, "feet"),
  25301. name: "Head",
  25302. image: {
  25303. source: "./media/characters/baadra/head.svg"
  25304. }
  25305. },
  25306. headAngry: {
  25307. height: math.unit(4.95, "feet"),
  25308. name: "Head (Angry)",
  25309. image: {
  25310. source: "./media/characters/baadra/head-angry.svg"
  25311. }
  25312. },
  25313. headOpen: {
  25314. height: math.unit(6, "feet"),
  25315. name: "Head (Open)",
  25316. image: {
  25317. source: "./media/characters/baadra/head-open.svg"
  25318. }
  25319. },
  25320. },
  25321. [
  25322. {
  25323. name: "Normal",
  25324. height: math.unit(17 + 6 / 12, "feet"),
  25325. default: true
  25326. },
  25327. ]
  25328. ))
  25329. characterMakers.push(() => makeCharacter(
  25330. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25331. {
  25332. front: {
  25333. height: math.unit(7 + 3 / 12, "feet"),
  25334. weight: math.unit(180, "lb"),
  25335. name: "Front",
  25336. image: {
  25337. source: "./media/characters/juri/front.svg",
  25338. extra: 1401 / 1237,
  25339. bottom: 18.5 / 1418
  25340. }
  25341. },
  25342. side: {
  25343. height: math.unit(7 + 3 / 12, "feet"),
  25344. weight: math.unit(180, "lb"),
  25345. name: "Side",
  25346. image: {
  25347. source: "./media/characters/juri/side.svg",
  25348. extra: 1424 / 1242,
  25349. bottom: 18.5 / 1447
  25350. }
  25351. },
  25352. sitting: {
  25353. height: math.unit(6, "feet"),
  25354. weight: math.unit(180, "lb"),
  25355. name: "Sitting",
  25356. image: {
  25357. source: "./media/characters/juri/sitting.svg",
  25358. extra: 1270 / 1143,
  25359. bottom: 100 / 1343
  25360. }
  25361. },
  25362. back: {
  25363. height: math.unit(7 + 3 / 12, "feet"),
  25364. weight: math.unit(180, "lb"),
  25365. name: "Back",
  25366. image: {
  25367. source: "./media/characters/juri/back.svg",
  25368. extra: 1377 / 1240,
  25369. bottom: 23.7 / 1405
  25370. }
  25371. },
  25372. maw: {
  25373. height: math.unit(2.8, "feet"),
  25374. name: "Maw",
  25375. image: {
  25376. source: "./media/characters/juri/maw.svg"
  25377. }
  25378. },
  25379. stomach: {
  25380. height: math.unit(0.89, "feet"),
  25381. capacity: math.unit(4, "liters"),
  25382. name: "Stomach",
  25383. image: {
  25384. source: "./media/characters/juri/stomach.svg"
  25385. }
  25386. },
  25387. },
  25388. [
  25389. {
  25390. name: "Normal",
  25391. height: math.unit(7 + 3 / 12, "feet"),
  25392. default: true
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25398. {
  25399. fox: {
  25400. height: math.unit(5 + 6 / 12, "feet"),
  25401. weight: math.unit(140, "lb"),
  25402. name: "Fox",
  25403. image: {
  25404. source: "./media/characters/maxene-sita/fox.svg",
  25405. extra: 146 / 138,
  25406. bottom: 2.1 / 148.19
  25407. }
  25408. },
  25409. foxLaying: {
  25410. height: math.unit(1.70, "feet"),
  25411. weight: math.unit(140, "lb"),
  25412. name: "Fox (Laying)",
  25413. image: {
  25414. source: "./media/characters/maxene-sita/fox-laying.svg",
  25415. extra: 910 / 572,
  25416. bottom: 71 / 981
  25417. }
  25418. },
  25419. kitsune: {
  25420. height: math.unit(10, "feet"),
  25421. weight: math.unit(800, "lb"),
  25422. name: "Kitsune",
  25423. image: {
  25424. source: "./media/characters/maxene-sita/kitsune.svg",
  25425. extra: 185 / 176,
  25426. bottom: 4.7 / 189.9
  25427. }
  25428. },
  25429. hellhound: {
  25430. height: math.unit(10, "feet"),
  25431. weight: math.unit(700, "lb"),
  25432. name: "Hellhound",
  25433. image: {
  25434. source: "./media/characters/maxene-sita/hellhound.svg",
  25435. extra: 1600 / 1545,
  25436. bottom: 81 / 1681
  25437. }
  25438. },
  25439. },
  25440. [
  25441. {
  25442. name: "Normal",
  25443. height: math.unit(5 + 6 / 12, "feet"),
  25444. default: true
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25450. {
  25451. front: {
  25452. height: math.unit(3 + 4 / 12, "feet"),
  25453. weight: math.unit(70, "lb"),
  25454. name: "Front",
  25455. image: {
  25456. source: "./media/characters/maia/front.svg",
  25457. extra: 227 / 219.5,
  25458. bottom: 40 / 267
  25459. }
  25460. },
  25461. back: {
  25462. height: math.unit(3 + 4 / 12, "feet"),
  25463. weight: math.unit(70, "lb"),
  25464. name: "Back",
  25465. image: {
  25466. source: "./media/characters/maia/back.svg",
  25467. extra: 237 / 225
  25468. }
  25469. },
  25470. },
  25471. [
  25472. {
  25473. name: "Normal",
  25474. height: math.unit(3 + 4 / 12, "feet"),
  25475. default: true
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(5 + 10 / 12, "feet"),
  25484. weight: math.unit(197, "lb"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/jabaro/front.svg",
  25488. extra: 225 / 216,
  25489. bottom: 5.06 / 230
  25490. }
  25491. },
  25492. back: {
  25493. height: math.unit(5 + 10 / 12, "feet"),
  25494. weight: math.unit(197, "lb"),
  25495. name: "Back",
  25496. image: {
  25497. source: "./media/characters/jabaro/back.svg",
  25498. extra: 225 / 219,
  25499. bottom: 1.9 / 227
  25500. }
  25501. },
  25502. },
  25503. [
  25504. {
  25505. name: "Normal",
  25506. height: math.unit(5 + 10 / 12, "feet"),
  25507. default: true
  25508. },
  25509. ]
  25510. ))
  25511. characterMakers.push(() => makeCharacter(
  25512. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25513. {
  25514. front: {
  25515. height: math.unit(5 + 8 / 12, "feet"),
  25516. weight: math.unit(139, "lb"),
  25517. name: "Front",
  25518. image: {
  25519. source: "./media/characters/risa/front.svg",
  25520. extra: 270 / 260,
  25521. bottom: 11.2 / 282
  25522. }
  25523. },
  25524. back: {
  25525. height: math.unit(5 + 8 / 12, "feet"),
  25526. weight: math.unit(139, "lb"),
  25527. name: "Back",
  25528. image: {
  25529. source: "./media/characters/risa/back.svg",
  25530. extra: 264 / 255,
  25531. bottom: 4 / 268
  25532. }
  25533. },
  25534. },
  25535. [
  25536. {
  25537. name: "Normal",
  25538. height: math.unit(5 + 8 / 12, "feet"),
  25539. default: true
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(2 + 11 / 12, "feet"),
  25548. weight: math.unit(30, "lb"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/weatley/front.svg",
  25552. bottom: 10.7 / 414,
  25553. extra: 403.5 / 362
  25554. }
  25555. },
  25556. back: {
  25557. height: math.unit(2 + 11 / 12, "feet"),
  25558. weight: math.unit(30, "lb"),
  25559. name: "Back",
  25560. image: {
  25561. source: "./media/characters/weatley/back.svg",
  25562. bottom: 10.7 / 414,
  25563. extra: 403.5 / 362
  25564. }
  25565. },
  25566. },
  25567. [
  25568. {
  25569. name: "Normal",
  25570. height: math.unit(2 + 11 / 12, "feet"),
  25571. default: true
  25572. },
  25573. ]
  25574. ))
  25575. characterMakers.push(() => makeCharacter(
  25576. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25577. {
  25578. front: {
  25579. height: math.unit(5 + 2 / 12, "feet"),
  25580. weight: math.unit(50, "kg"),
  25581. name: "Front",
  25582. image: {
  25583. source: "./media/characters/mercury-crescent/front.svg",
  25584. extra: 1088 / 1033,
  25585. bottom: 18.9 / 1109
  25586. }
  25587. },
  25588. },
  25589. [
  25590. {
  25591. name: "Normal",
  25592. height: math.unit(5 + 2 / 12, "feet"),
  25593. default: true
  25594. },
  25595. ]
  25596. ))
  25597. characterMakers.push(() => makeCharacter(
  25598. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25599. {
  25600. front: {
  25601. height: math.unit(2, "feet"),
  25602. weight: math.unit(15, "kg"),
  25603. name: "Front",
  25604. image: {
  25605. source: "./media/characters/diamond-jones/front.svg",
  25606. extra: 727/723,
  25607. bottom: 46/773
  25608. }
  25609. },
  25610. },
  25611. [
  25612. {
  25613. name: "Normal",
  25614. height: math.unit(2, "feet"),
  25615. default: true
  25616. },
  25617. ]
  25618. ))
  25619. characterMakers.push(() => makeCharacter(
  25620. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25621. {
  25622. front: {
  25623. height: math.unit(3, "feet"),
  25624. weight: math.unit(30, "kg"),
  25625. name: "Front",
  25626. image: {
  25627. source: "./media/characters/sweet-bit/front.svg",
  25628. extra: 675 / 567,
  25629. bottom: 27.7 / 703
  25630. }
  25631. },
  25632. },
  25633. [
  25634. {
  25635. name: "Normal",
  25636. height: math.unit(3, "feet"),
  25637. default: true
  25638. },
  25639. ]
  25640. ))
  25641. characterMakers.push(() => makeCharacter(
  25642. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25643. {
  25644. side: {
  25645. height: math.unit(9.178, "feet"),
  25646. weight: math.unit(500, "lb"),
  25647. name: "Side",
  25648. image: {
  25649. source: "./media/characters/umbrazen/side.svg",
  25650. extra: 1730 / 1473,
  25651. bottom: 34.6 / 1765
  25652. }
  25653. },
  25654. },
  25655. [
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(9.178, "feet"),
  25659. default: true
  25660. },
  25661. ]
  25662. ))
  25663. characterMakers.push(() => makeCharacter(
  25664. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25665. {
  25666. front: {
  25667. height: math.unit(10, "feet"),
  25668. weight: math.unit(750, "lb"),
  25669. name: "Front",
  25670. image: {
  25671. source: "./media/characters/arlist/front.svg",
  25672. extra: 961 / 778,
  25673. bottom: 6.2 / 986
  25674. }
  25675. },
  25676. },
  25677. [
  25678. {
  25679. name: "Normal",
  25680. height: math.unit(10, "feet"),
  25681. default: true
  25682. },
  25683. ]
  25684. ))
  25685. characterMakers.push(() => makeCharacter(
  25686. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25687. {
  25688. front: {
  25689. height: math.unit(5 + 1 / 12, "feet"),
  25690. weight: math.unit(110, "lb"),
  25691. name: "Front",
  25692. image: {
  25693. source: "./media/characters/aradel/front.svg",
  25694. extra: 324 / 303,
  25695. bottom: 3.6 / 329.4
  25696. }
  25697. },
  25698. },
  25699. [
  25700. {
  25701. name: "Normal",
  25702. height: math.unit(5 + 1 / 12, "feet"),
  25703. default: true
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25709. {
  25710. front: {
  25711. height: math.unit(3 + 8 / 12, "feet"),
  25712. weight: math.unit(50, "lb"),
  25713. name: "Front",
  25714. image: {
  25715. source: "./media/characters/serryn/front.svg",
  25716. extra: 1792 / 1656,
  25717. bottom: 43.5 / 1840
  25718. }
  25719. },
  25720. },
  25721. [
  25722. {
  25723. name: "Normal",
  25724. height: math.unit(3 + 8 / 12, "feet"),
  25725. default: true
  25726. },
  25727. ]
  25728. ))
  25729. characterMakers.push(() => makeCharacter(
  25730. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25731. {
  25732. front: {
  25733. height: math.unit(7 + 10 / 12, "feet"),
  25734. weight: math.unit(255, "lb"),
  25735. name: "Front",
  25736. image: {
  25737. source: "./media/characters/xavier-thyme/front.svg",
  25738. extra: 3733 / 3642,
  25739. bottom: 131 / 3869
  25740. }
  25741. },
  25742. frontRaven: {
  25743. height: math.unit(7 + 10 / 12, "feet"),
  25744. weight: math.unit(255, "lb"),
  25745. name: "Front (Raven)",
  25746. image: {
  25747. source: "./media/characters/xavier-thyme/front-raven.svg",
  25748. extra: 4385 / 3642,
  25749. bottom: 131 / 4517
  25750. }
  25751. },
  25752. },
  25753. [
  25754. {
  25755. name: "Normal",
  25756. height: math.unit(7 + 10 / 12, "feet"),
  25757. default: true
  25758. },
  25759. ]
  25760. ))
  25761. characterMakers.push(() => makeCharacter(
  25762. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25763. {
  25764. front: {
  25765. height: math.unit(1.6, "m"),
  25766. weight: math.unit(50, "kg"),
  25767. name: "Front",
  25768. image: {
  25769. source: "./media/characters/kiki/front.svg",
  25770. extra: 4682 / 3610,
  25771. bottom: 115 / 4777
  25772. }
  25773. },
  25774. },
  25775. [
  25776. {
  25777. name: "Normal",
  25778. height: math.unit(1.6, "meters"),
  25779. default: true
  25780. },
  25781. ]
  25782. ))
  25783. characterMakers.push(() => makeCharacter(
  25784. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25785. {
  25786. front: {
  25787. height: math.unit(50, "m"),
  25788. weight: math.unit(500, "tonnes"),
  25789. name: "Front",
  25790. image: {
  25791. source: "./media/characters/ryoko/front.svg",
  25792. extra: 4632 / 3926,
  25793. bottom: 193 / 4823
  25794. }
  25795. },
  25796. },
  25797. [
  25798. {
  25799. name: "Normal",
  25800. height: math.unit(50, "meters"),
  25801. default: true
  25802. },
  25803. ]
  25804. ))
  25805. characterMakers.push(() => makeCharacter(
  25806. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25807. {
  25808. front: {
  25809. height: math.unit(30, "m"),
  25810. weight: math.unit(22, "tonnes"),
  25811. name: "Front",
  25812. image: {
  25813. source: "./media/characters/elio/front.svg",
  25814. extra: 4582 / 3720,
  25815. bottom: 236 / 4828
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Normal",
  25822. height: math.unit(30, "meters"),
  25823. default: true
  25824. },
  25825. ]
  25826. ))
  25827. characterMakers.push(() => makeCharacter(
  25828. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25829. {
  25830. front: {
  25831. height: math.unit(6 + 3 / 12, "feet"),
  25832. weight: math.unit(120, "lb"),
  25833. name: "Front",
  25834. image: {
  25835. source: "./media/characters/azura/front.svg",
  25836. extra: 1149 / 1135,
  25837. bottom: 45 / 1194
  25838. }
  25839. },
  25840. frontClothed: {
  25841. height: math.unit(6 + 3 / 12, "feet"),
  25842. weight: math.unit(120, "lb"),
  25843. name: "Front (Clothed)",
  25844. image: {
  25845. source: "./media/characters/azura/front-clothed.svg",
  25846. extra: 1149 / 1135,
  25847. bottom: 45 / 1194
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Normal",
  25854. height: math.unit(6 + 3 / 12, "feet"),
  25855. default: true
  25856. },
  25857. {
  25858. name: "Macro",
  25859. height: math.unit(20 + 6 / 12, "feet")
  25860. },
  25861. {
  25862. name: "Megamacro",
  25863. height: math.unit(12, "miles")
  25864. },
  25865. {
  25866. name: "Gigamacro",
  25867. height: math.unit(10000, "miles")
  25868. },
  25869. {
  25870. name: "Teramacro",
  25871. height: math.unit(900000, "miles")
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25877. {
  25878. front: {
  25879. height: math.unit(12, "feet"),
  25880. weight: math.unit(1, "ton"),
  25881. capacity: math.unit(660000, "gallons"),
  25882. name: "Front",
  25883. image: {
  25884. source: "./media/characters/zeus/front.svg",
  25885. extra: 5005 / 4717,
  25886. bottom: 363 / 5388
  25887. }
  25888. },
  25889. },
  25890. [
  25891. {
  25892. name: "Normal",
  25893. height: math.unit(12, "feet")
  25894. },
  25895. {
  25896. name: "Preferred Size",
  25897. height: math.unit(0.5, "miles"),
  25898. default: true
  25899. },
  25900. {
  25901. name: "Giga Horse",
  25902. height: math.unit(300, "miles")
  25903. },
  25904. {
  25905. name: "Riding Planets",
  25906. height: math.unit(30, "megameters")
  25907. },
  25908. {
  25909. name: "Cosmic Giant",
  25910. height: math.unit(3, "zettameters")
  25911. },
  25912. {
  25913. name: "Breeding God",
  25914. height: math.unit(9.92e22, "yottameters")
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25920. {
  25921. side: {
  25922. height: math.unit(9, "feet"),
  25923. weight: math.unit(1500, "kg"),
  25924. name: "Side",
  25925. image: {
  25926. source: "./media/characters/fang/side.svg",
  25927. extra: 924 / 866,
  25928. bottom: 47.5 / 972.3
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(9, "feet"),
  25936. default: true
  25937. },
  25938. {
  25939. name: "Macro",
  25940. height: math.unit(75 + 6 / 12, "feet")
  25941. },
  25942. {
  25943. name: "Teramacro",
  25944. height: math.unit(50000, "miles")
  25945. },
  25946. ]
  25947. ))
  25948. characterMakers.push(() => makeCharacter(
  25949. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25950. {
  25951. front: {
  25952. height: math.unit(10, "feet"),
  25953. weight: math.unit(2, "tons"),
  25954. name: "Front",
  25955. image: {
  25956. source: "./media/characters/rekhit/front.svg",
  25957. extra: 2796 / 2590,
  25958. bottom: 225 / 3022
  25959. }
  25960. },
  25961. },
  25962. [
  25963. {
  25964. name: "Normal",
  25965. height: math.unit(10, "feet"),
  25966. default: true
  25967. },
  25968. {
  25969. name: "Macro",
  25970. height: math.unit(500, "feet")
  25971. },
  25972. ]
  25973. ))
  25974. characterMakers.push(() => makeCharacter(
  25975. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25976. {
  25977. front: {
  25978. height: math.unit(7 + 6.451 / 12, "feet"),
  25979. weight: math.unit(310, "lb"),
  25980. name: "Front",
  25981. image: {
  25982. source: "./media/characters/dahlia-verrick/front.svg",
  25983. extra: 1488 / 1365,
  25984. bottom: 6.2 / 1495
  25985. }
  25986. },
  25987. back: {
  25988. height: math.unit(7 + 6.451 / 12, "feet"),
  25989. weight: math.unit(310, "lb"),
  25990. name: "Back",
  25991. image: {
  25992. source: "./media/characters/dahlia-verrick/back.svg",
  25993. extra: 1472 / 1351,
  25994. bottom: 5.28 / 1477
  25995. }
  25996. },
  25997. frontBusiness: {
  25998. height: math.unit(7 + 6.451 / 12, "feet"),
  25999. weight: math.unit(200, "lb"),
  26000. name: "Front (Business)",
  26001. image: {
  26002. source: "./media/characters/dahlia-verrick/front-business.svg",
  26003. extra: 1478 / 1381,
  26004. bottom: 5.5 / 1484
  26005. }
  26006. },
  26007. frontCasual: {
  26008. height: math.unit(7 + 6.451 / 12, "feet"),
  26009. weight: math.unit(200, "lb"),
  26010. name: "Front (Casual)",
  26011. image: {
  26012. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26013. extra: 1478 / 1381,
  26014. bottom: 5.5 / 1484
  26015. }
  26016. },
  26017. },
  26018. [
  26019. {
  26020. name: "Travel-Sized",
  26021. height: math.unit(7.45, "inches")
  26022. },
  26023. {
  26024. name: "Normal",
  26025. height: math.unit(7 + 6.451 / 12, "feet"),
  26026. default: true
  26027. },
  26028. {
  26029. name: "Hitting the Town",
  26030. height: math.unit(37 + 8 / 12, "feet")
  26031. },
  26032. {
  26033. name: "Stomp in the Suburbs",
  26034. height: math.unit(964 + 9.728 / 12, "feet")
  26035. },
  26036. {
  26037. name: "Sit on the City",
  26038. height: math.unit(61747 + 10.592 / 12, "feet")
  26039. },
  26040. {
  26041. name: "Glomp the Globe",
  26042. height: math.unit(252919327 + 4.832 / 12, "feet")
  26043. },
  26044. ]
  26045. ))
  26046. characterMakers.push(() => makeCharacter(
  26047. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26048. {
  26049. front: {
  26050. height: math.unit(6 + 4 / 12, "feet"),
  26051. weight: math.unit(320, "lb"),
  26052. name: "Front",
  26053. image: {
  26054. source: "./media/characters/balina-mahigan/front.svg",
  26055. extra: 447 / 428,
  26056. bottom: 18 / 466
  26057. }
  26058. },
  26059. back: {
  26060. height: math.unit(6 + 4 / 12, "feet"),
  26061. weight: math.unit(320, "lb"),
  26062. name: "Back",
  26063. image: {
  26064. source: "./media/characters/balina-mahigan/back.svg",
  26065. extra: 445 / 428,
  26066. bottom: 4.07 / 448
  26067. }
  26068. },
  26069. arm: {
  26070. height: math.unit(1.88, "feet"),
  26071. name: "Arm",
  26072. image: {
  26073. source: "./media/characters/balina-mahigan/arm.svg"
  26074. }
  26075. },
  26076. backPort: {
  26077. height: math.unit(0.685, "feet"),
  26078. name: "Back Port",
  26079. image: {
  26080. source: "./media/characters/balina-mahigan/back-port.svg"
  26081. }
  26082. },
  26083. hoofpaw: {
  26084. height: math.unit(1.41, "feet"),
  26085. name: "Hoofpaw",
  26086. image: {
  26087. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26088. }
  26089. },
  26090. leftHandBack: {
  26091. height: math.unit(0.938, "feet"),
  26092. name: "Left Hand (Back)",
  26093. image: {
  26094. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26095. }
  26096. },
  26097. leftHandFront: {
  26098. height: math.unit(0.938, "feet"),
  26099. name: "Left Hand (Front)",
  26100. image: {
  26101. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26102. }
  26103. },
  26104. rightHandBack: {
  26105. height: math.unit(0.95, "feet"),
  26106. name: "Right Hand (Back)",
  26107. image: {
  26108. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26109. }
  26110. },
  26111. rightHandFront: {
  26112. height: math.unit(0.95, "feet"),
  26113. name: "Right Hand (Front)",
  26114. image: {
  26115. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Normal",
  26122. height: math.unit(6 + 4 / 12, "feet"),
  26123. default: true
  26124. },
  26125. ]
  26126. ))
  26127. characterMakers.push(() => makeCharacter(
  26128. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26129. {
  26130. front: {
  26131. height: math.unit(6, "feet"),
  26132. weight: math.unit(320, "lb"),
  26133. name: "Front",
  26134. image: {
  26135. source: "./media/characters/balina-mejeri/front.svg",
  26136. extra: 517 / 488,
  26137. bottom: 44.2 / 561
  26138. }
  26139. },
  26140. },
  26141. [
  26142. {
  26143. name: "Normal",
  26144. height: math.unit(6 + 4 / 12, "feet")
  26145. },
  26146. {
  26147. name: "Business",
  26148. height: math.unit(155, "feet"),
  26149. default: true
  26150. },
  26151. ]
  26152. ))
  26153. characterMakers.push(() => makeCharacter(
  26154. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26155. {
  26156. kneeling: {
  26157. height: math.unit(6 + 4 / 12, "feet"),
  26158. weight: math.unit(300 * 20, "lb"),
  26159. name: "Kneeling",
  26160. image: {
  26161. source: "./media/characters/balbarian/kneeling.svg",
  26162. extra: 922 / 862,
  26163. bottom: 42.4 / 965
  26164. }
  26165. },
  26166. },
  26167. [
  26168. {
  26169. name: "Normal",
  26170. height: math.unit(6 + 4 / 12, "feet")
  26171. },
  26172. {
  26173. name: "Treasured",
  26174. height: math.unit(18 + 9 / 12, "feet"),
  26175. default: true
  26176. },
  26177. {
  26178. name: "Macro",
  26179. height: math.unit(900, "feet")
  26180. },
  26181. ]
  26182. ))
  26183. characterMakers.push(() => makeCharacter(
  26184. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26185. {
  26186. front: {
  26187. height: math.unit(6 + 4 / 12, "feet"),
  26188. weight: math.unit(325, "lb"),
  26189. name: "Front",
  26190. image: {
  26191. source: "./media/characters/balina-amarini/front.svg",
  26192. extra: 415 / 403,
  26193. bottom: 19 / 433.4
  26194. }
  26195. },
  26196. back: {
  26197. height: math.unit(6 + 4 / 12, "feet"),
  26198. weight: math.unit(325, "lb"),
  26199. name: "Back",
  26200. image: {
  26201. source: "./media/characters/balina-amarini/back.svg",
  26202. extra: 415 / 403,
  26203. bottom: 13.5 / 432
  26204. }
  26205. },
  26206. overdrive: {
  26207. height: math.unit(6 + 4 / 12, "feet"),
  26208. weight: math.unit(400, "lb"),
  26209. name: "Overdrive",
  26210. image: {
  26211. source: "./media/characters/balina-amarini/overdrive.svg",
  26212. extra: 269 / 259,
  26213. bottom: 12 / 282
  26214. }
  26215. },
  26216. },
  26217. [
  26218. {
  26219. name: "Boom",
  26220. height: math.unit(9 + 10 / 12, "feet"),
  26221. default: true
  26222. },
  26223. {
  26224. name: "Macro",
  26225. height: math.unit(280, "feet")
  26226. },
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26231. {
  26232. goddess: {
  26233. height: math.unit(600, "feet"),
  26234. weight: math.unit(2000000, "tons"),
  26235. name: "Goddess",
  26236. image: {
  26237. source: "./media/characters/lady-kubwa/goddess.svg",
  26238. extra: 1240.5 / 1223,
  26239. bottom: 22 / 1263
  26240. }
  26241. },
  26242. goddesser: {
  26243. height: math.unit(900, "feet"),
  26244. weight: math.unit(20000000, "lb"),
  26245. name: "Goddess-er",
  26246. image: {
  26247. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26248. extra: 899 / 888,
  26249. bottom: 12.6 / 912
  26250. }
  26251. },
  26252. },
  26253. [
  26254. {
  26255. name: "Macro",
  26256. height: math.unit(600, "feet"),
  26257. default: true
  26258. },
  26259. {
  26260. name: "Megamacro",
  26261. height: math.unit(250, "miles")
  26262. },
  26263. ]
  26264. ))
  26265. characterMakers.push(() => makeCharacter(
  26266. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26267. {
  26268. front: {
  26269. height: math.unit(7 + 7 / 12, "feet"),
  26270. weight: math.unit(250, "lb"),
  26271. name: "Front",
  26272. image: {
  26273. source: "./media/characters/tala-grovehorn/front.svg",
  26274. extra: 2636 / 2525,
  26275. bottom: 147 / 2781
  26276. }
  26277. },
  26278. back: {
  26279. height: math.unit(7 + 7 / 12, "feet"),
  26280. weight: math.unit(250, "lb"),
  26281. name: "Back",
  26282. image: {
  26283. source: "./media/characters/tala-grovehorn/back.svg",
  26284. extra: 2635 / 2539,
  26285. bottom: 100 / 2732.8
  26286. }
  26287. },
  26288. mouth: {
  26289. height: math.unit(1.15, "feet"),
  26290. name: "Mouth",
  26291. image: {
  26292. source: "./media/characters/tala-grovehorn/mouth.svg"
  26293. }
  26294. },
  26295. dick: {
  26296. height: math.unit(2.36, "feet"),
  26297. name: "Dick",
  26298. image: {
  26299. source: "./media/characters/tala-grovehorn/dick.svg"
  26300. }
  26301. },
  26302. slit: {
  26303. height: math.unit(0.61, "feet"),
  26304. name: "Slit",
  26305. image: {
  26306. source: "./media/characters/tala-grovehorn/slit.svg"
  26307. }
  26308. },
  26309. },
  26310. [
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26315. {
  26316. front: {
  26317. height: math.unit(7 + 7 / 12, "feet"),
  26318. weight: math.unit(225, "lb"),
  26319. name: "Front",
  26320. image: {
  26321. source: "./media/characters/epona/front.svg",
  26322. extra: 2445 / 2290,
  26323. bottom: 251 / 2696
  26324. }
  26325. },
  26326. back: {
  26327. height: math.unit(7 + 7 / 12, "feet"),
  26328. weight: math.unit(225, "lb"),
  26329. name: "Back",
  26330. image: {
  26331. source: "./media/characters/epona/back.svg",
  26332. extra: 2546 / 2408,
  26333. bottom: 44 / 2589
  26334. }
  26335. },
  26336. genitals: {
  26337. height: math.unit(1.5, "feet"),
  26338. name: "Genitals",
  26339. image: {
  26340. source: "./media/characters/epona/genitals.svg"
  26341. }
  26342. },
  26343. },
  26344. [
  26345. {
  26346. name: "Normal",
  26347. height: math.unit(7 + 7 / 12, "feet"),
  26348. default: true
  26349. },
  26350. ]
  26351. ))
  26352. characterMakers.push(() => makeCharacter(
  26353. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26354. {
  26355. front: {
  26356. height: math.unit(7, "feet"),
  26357. weight: math.unit(518, "lb"),
  26358. name: "Front",
  26359. image: {
  26360. source: "./media/characters/avia-bloodbourn/front.svg",
  26361. extra: 1466 / 1350,
  26362. bottom: 65 / 1527
  26363. }
  26364. },
  26365. },
  26366. [
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26371. {
  26372. front: {
  26373. height: math.unit(9.35, "feet"),
  26374. weight: math.unit(600, "lb"),
  26375. name: "Front",
  26376. image: {
  26377. source: "./media/characters/amera/front.svg",
  26378. extra: 891 / 818,
  26379. bottom: 30 / 922.7
  26380. }
  26381. },
  26382. back: {
  26383. height: math.unit(9.35, "feet"),
  26384. weight: math.unit(600, "lb"),
  26385. name: "Back",
  26386. image: {
  26387. source: "./media/characters/amera/back.svg",
  26388. extra: 876 / 824,
  26389. bottom: 6.8 / 884
  26390. }
  26391. },
  26392. dick: {
  26393. height: math.unit(2.14, "feet"),
  26394. name: "Dick",
  26395. image: {
  26396. source: "./media/characters/amera/dick.svg"
  26397. }
  26398. },
  26399. },
  26400. [
  26401. {
  26402. name: "Normal",
  26403. height: math.unit(9.35, "feet"),
  26404. default: true
  26405. },
  26406. ]
  26407. ))
  26408. characterMakers.push(() => makeCharacter(
  26409. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26410. {
  26411. kneeling: {
  26412. height: math.unit(3 + 4 / 12, "feet"),
  26413. weight: math.unit(90, "lb"),
  26414. name: "Kneeling",
  26415. image: {
  26416. source: "./media/characters/rosewen/kneeling.svg",
  26417. extra: 1835 / 1571,
  26418. bottom: 27.7 / 1862
  26419. }
  26420. },
  26421. },
  26422. [
  26423. {
  26424. name: "Normal",
  26425. height: math.unit(3 + 4 / 12, "feet"),
  26426. default: true
  26427. },
  26428. ]
  26429. ))
  26430. characterMakers.push(() => makeCharacter(
  26431. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26432. {
  26433. front: {
  26434. height: math.unit(5 + 10 / 12, "feet"),
  26435. weight: math.unit(200, "lb"),
  26436. name: "Front",
  26437. image: {
  26438. source: "./media/characters/sabah/front.svg",
  26439. extra: 849 / 763,
  26440. bottom: 33.9 / 881
  26441. }
  26442. },
  26443. },
  26444. [
  26445. {
  26446. name: "Normal",
  26447. height: math.unit(5 + 10 / 12, "feet"),
  26448. default: true
  26449. },
  26450. ]
  26451. ))
  26452. characterMakers.push(() => makeCharacter(
  26453. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26454. {
  26455. front: {
  26456. height: math.unit(3 + 5 / 12, "feet"),
  26457. weight: math.unit(40, "kg"),
  26458. name: "Front",
  26459. image: {
  26460. source: "./media/characters/purple-flame/front.svg",
  26461. extra: 1577 / 1412,
  26462. bottom: 97 / 1694
  26463. }
  26464. },
  26465. frontDressed: {
  26466. height: math.unit(3 + 5 / 12, "feet"),
  26467. weight: math.unit(40, "kg"),
  26468. name: "Front (Dressed)",
  26469. image: {
  26470. source: "./media/characters/purple-flame/front-dressed.svg",
  26471. extra: 1577 / 1412,
  26472. bottom: 97 / 1694
  26473. }
  26474. },
  26475. headphones: {
  26476. height: math.unit(0.85, "feet"),
  26477. name: "Headphones",
  26478. image: {
  26479. source: "./media/characters/purple-flame/headphones.svg"
  26480. }
  26481. },
  26482. },
  26483. [
  26484. {
  26485. name: "Really Small",
  26486. height: math.unit(5, "cm")
  26487. },
  26488. {
  26489. name: "Micro",
  26490. height: math.unit(1 + 5 / 12, "feet")
  26491. },
  26492. {
  26493. name: "Normal",
  26494. height: math.unit(3 + 5 / 12, "feet"),
  26495. default: true
  26496. },
  26497. {
  26498. name: "Minimacro",
  26499. height: math.unit(125, "feet")
  26500. },
  26501. {
  26502. name: "Macro",
  26503. height: math.unit(0.5, "miles")
  26504. },
  26505. {
  26506. name: "Megamacro",
  26507. height: math.unit(50, "miles")
  26508. },
  26509. {
  26510. name: "Gigantic",
  26511. height: math.unit(750, "miles")
  26512. },
  26513. {
  26514. name: "Planetary",
  26515. height: math.unit(15000, "miles")
  26516. },
  26517. ]
  26518. ))
  26519. characterMakers.push(() => makeCharacter(
  26520. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26521. {
  26522. front: {
  26523. height: math.unit(14, "feet"),
  26524. weight: math.unit(959, "lb"),
  26525. name: "Front",
  26526. image: {
  26527. source: "./media/characters/arsenal/front.svg",
  26528. extra: 2357 / 2157,
  26529. bottom: 93 / 2458
  26530. }
  26531. },
  26532. },
  26533. [
  26534. {
  26535. name: "Normal",
  26536. height: math.unit(14, "feet"),
  26537. default: true
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(6, "feet"),
  26546. weight: math.unit(150, "lb"),
  26547. name: "Front",
  26548. image: {
  26549. source: "./media/characters/adira/front.svg",
  26550. extra: 1078 / 1029,
  26551. bottom: 87 / 1166
  26552. }
  26553. },
  26554. },
  26555. [
  26556. {
  26557. name: "Micro",
  26558. height: math.unit(4, "inches"),
  26559. default: true
  26560. },
  26561. {
  26562. name: "Macro",
  26563. height: math.unit(50, "feet")
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26569. {
  26570. front: {
  26571. height: math.unit(16, "feet"),
  26572. weight: math.unit(1000, "lb"),
  26573. name: "Front",
  26574. image: {
  26575. source: "./media/characters/grim/front.svg",
  26576. extra: 622 / 614,
  26577. bottom: 18.1 / 642
  26578. }
  26579. },
  26580. back: {
  26581. height: math.unit(16, "feet"),
  26582. weight: math.unit(1000, "lb"),
  26583. name: "Back",
  26584. image: {
  26585. source: "./media/characters/grim/back.svg",
  26586. extra: 610.6 / 602,
  26587. bottom: 40.8 / 652
  26588. }
  26589. },
  26590. hunched: {
  26591. height: math.unit(9.75, "feet"),
  26592. weight: math.unit(1000, "lb"),
  26593. name: "Hunched",
  26594. image: {
  26595. source: "./media/characters/grim/hunched.svg",
  26596. extra: 304 / 297,
  26597. bottom: 35.4 / 394
  26598. }
  26599. },
  26600. },
  26601. [
  26602. {
  26603. name: "Normal",
  26604. height: math.unit(16, "feet"),
  26605. default: true
  26606. },
  26607. ]
  26608. ))
  26609. characterMakers.push(() => makeCharacter(
  26610. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26611. {
  26612. front: {
  26613. height: math.unit(2.3, "meters"),
  26614. weight: math.unit(300, "lb"),
  26615. name: "Front",
  26616. image: {
  26617. source: "./media/characters/sinja/front-sfw.svg",
  26618. extra: 1393 / 1294,
  26619. bottom: 70 / 1463
  26620. }
  26621. },
  26622. frontNsfw: {
  26623. height: math.unit(2.3, "meters"),
  26624. weight: math.unit(300, "lb"),
  26625. name: "Front (NSFW)",
  26626. image: {
  26627. source: "./media/characters/sinja/front-nsfw.svg",
  26628. extra: 1393 / 1294,
  26629. bottom: 70 / 1463
  26630. }
  26631. },
  26632. back: {
  26633. height: math.unit(2.3, "meters"),
  26634. weight: math.unit(300, "lb"),
  26635. name: "Back",
  26636. image: {
  26637. source: "./media/characters/sinja/back.svg",
  26638. extra: 1393 / 1294,
  26639. bottom: 70 / 1463
  26640. }
  26641. },
  26642. head: {
  26643. height: math.unit(1.771, "feet"),
  26644. name: "Head",
  26645. image: {
  26646. source: "./media/characters/sinja/head.svg"
  26647. }
  26648. },
  26649. slit: {
  26650. height: math.unit(0.8, "feet"),
  26651. name: "Slit",
  26652. image: {
  26653. source: "./media/characters/sinja/slit.svg"
  26654. }
  26655. },
  26656. },
  26657. [
  26658. {
  26659. name: "Normal",
  26660. height: math.unit(2.3, "meters")
  26661. },
  26662. {
  26663. name: "Macro",
  26664. height: math.unit(91, "meters"),
  26665. default: true
  26666. },
  26667. {
  26668. name: "Megamacro",
  26669. height: math.unit(91440, "meters")
  26670. },
  26671. {
  26672. name: "Gigamacro",
  26673. height: math.unit(60960000, "meters")
  26674. },
  26675. {
  26676. name: "Teramacro",
  26677. height: math.unit(9144000000, "meters")
  26678. },
  26679. ]
  26680. ))
  26681. characterMakers.push(() => makeCharacter(
  26682. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26683. {
  26684. front: {
  26685. height: math.unit(1.7, "meters"),
  26686. weight: math.unit(130, "lb"),
  26687. name: "Front",
  26688. image: {
  26689. source: "./media/characters/kyu/front.svg",
  26690. extra: 415 / 395,
  26691. bottom: 5 / 420
  26692. }
  26693. },
  26694. head: {
  26695. height: math.unit(1.75, "feet"),
  26696. name: "Head",
  26697. image: {
  26698. source: "./media/characters/kyu/head.svg"
  26699. }
  26700. },
  26701. foot: {
  26702. height: math.unit(0.81, "feet"),
  26703. name: "Foot",
  26704. image: {
  26705. source: "./media/characters/kyu/foot.svg"
  26706. }
  26707. },
  26708. },
  26709. [
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(1.7, "meters")
  26713. },
  26714. {
  26715. name: "Macro",
  26716. height: math.unit(131, "feet"),
  26717. default: true
  26718. },
  26719. {
  26720. name: "Megamacro",
  26721. height: math.unit(91440, "meters")
  26722. },
  26723. {
  26724. name: "Gigamacro",
  26725. height: math.unit(60960000, "meters")
  26726. },
  26727. {
  26728. name: "Teramacro",
  26729. height: math.unit(9144000000, "meters")
  26730. },
  26731. ]
  26732. ))
  26733. characterMakers.push(() => makeCharacter(
  26734. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26735. {
  26736. front: {
  26737. height: math.unit(7 + 1 / 12, "feet"),
  26738. weight: math.unit(250, "lb"),
  26739. name: "Front",
  26740. image: {
  26741. source: "./media/characters/joey/front.svg",
  26742. extra: 1791 / 1537,
  26743. bottom: 28 / 1816
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Micro",
  26750. height: math.unit(3, "inches")
  26751. },
  26752. {
  26753. name: "Normal",
  26754. height: math.unit(7 + 1 / 12, "feet"),
  26755. default: true
  26756. },
  26757. ]
  26758. ))
  26759. characterMakers.push(() => makeCharacter(
  26760. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26761. {
  26762. front: {
  26763. height: math.unit(165, "cm"),
  26764. weight: math.unit(140, "lb"),
  26765. name: "Front",
  26766. image: {
  26767. source: "./media/characters/sam-evans/front.svg",
  26768. extra: 3417 / 3230,
  26769. bottom: 41.3 / 3417
  26770. }
  26771. },
  26772. frontSixTails: {
  26773. height: math.unit(165, "cm"),
  26774. weight: math.unit(140, "lb"),
  26775. name: "Front-six-tails",
  26776. image: {
  26777. source: "./media/characters/sam-evans/front-six-tails.svg",
  26778. extra: 3417 / 3230,
  26779. bottom: 41.3 / 3417
  26780. }
  26781. },
  26782. back: {
  26783. height: math.unit(165, "cm"),
  26784. weight: math.unit(140, "lb"),
  26785. name: "Back",
  26786. image: {
  26787. source: "./media/characters/sam-evans/back.svg",
  26788. extra: 3227 / 3032,
  26789. bottom: 6.8 / 3234
  26790. }
  26791. },
  26792. face: {
  26793. height: math.unit(0.68, "feet"),
  26794. name: "Face",
  26795. image: {
  26796. source: "./media/characters/sam-evans/face.svg"
  26797. }
  26798. },
  26799. },
  26800. [
  26801. {
  26802. name: "Normal",
  26803. height: math.unit(165, "cm"),
  26804. default: true
  26805. },
  26806. {
  26807. name: "Macro",
  26808. height: math.unit(100, "meters")
  26809. },
  26810. {
  26811. name: "Macro+",
  26812. height: math.unit(800, "meters")
  26813. },
  26814. {
  26815. name: "Macro++",
  26816. height: math.unit(3, "km")
  26817. },
  26818. {
  26819. name: "Macro+++",
  26820. height: math.unit(30, "km")
  26821. },
  26822. ]
  26823. ))
  26824. characterMakers.push(() => makeCharacter(
  26825. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26826. {
  26827. front: {
  26828. height: math.unit(10, "feet"),
  26829. weight: math.unit(750, "lb"),
  26830. name: "Front",
  26831. image: {
  26832. source: "./media/characters/juliet-a/front.svg",
  26833. extra: 1766 / 1720,
  26834. bottom: 43 / 1809
  26835. }
  26836. },
  26837. back: {
  26838. height: math.unit(10, "feet"),
  26839. weight: math.unit(750, "lb"),
  26840. name: "Back",
  26841. image: {
  26842. source: "./media/characters/juliet-a/back.svg",
  26843. extra: 1781 / 1734,
  26844. bottom: 35 / 1810,
  26845. }
  26846. },
  26847. },
  26848. [
  26849. {
  26850. name: "Normal",
  26851. height: math.unit(10, "feet"),
  26852. default: true
  26853. },
  26854. {
  26855. name: "Dragon Form",
  26856. height: math.unit(250, "feet")
  26857. },
  26858. {
  26859. name: "Macro",
  26860. height: math.unit(1000, "feet")
  26861. },
  26862. {
  26863. name: "Megamacro",
  26864. height: math.unit(10000, "feet")
  26865. }
  26866. ]
  26867. ))
  26868. characterMakers.push(() => makeCharacter(
  26869. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26870. {
  26871. regular: {
  26872. height: math.unit(7 + 3 / 12, "feet"),
  26873. weight: math.unit(260, "lb"),
  26874. name: "Regular",
  26875. image: {
  26876. source: "./media/characters/wild/regular.svg",
  26877. extra: 97.45 / 92,
  26878. bottom: 6.8 / 104.3
  26879. }
  26880. },
  26881. biggums: {
  26882. height: math.unit(8 + 6 / 12, "feet"),
  26883. weight: math.unit(425, "lb"),
  26884. name: "Biggums",
  26885. image: {
  26886. source: "./media/characters/wild/biggums.svg",
  26887. extra: 97.45 / 92,
  26888. bottom: 7.5 / 132.34
  26889. }
  26890. },
  26891. mawRegular: {
  26892. height: math.unit(1.24, "feet"),
  26893. name: "Maw (Regular)",
  26894. image: {
  26895. source: "./media/characters/wild/maw.svg"
  26896. }
  26897. },
  26898. mawBiggums: {
  26899. height: math.unit(1.47, "feet"),
  26900. name: "Maw (Biggums)",
  26901. image: {
  26902. source: "./media/characters/wild/maw.svg"
  26903. }
  26904. },
  26905. },
  26906. [
  26907. {
  26908. name: "Normal",
  26909. height: math.unit(7 + 3 / 12, "feet"),
  26910. default: true
  26911. },
  26912. ]
  26913. ))
  26914. characterMakers.push(() => makeCharacter(
  26915. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26916. {
  26917. front: {
  26918. height: math.unit(2.5, "meters"),
  26919. weight: math.unit(200, "kg"),
  26920. name: "Front",
  26921. image: {
  26922. source: "./media/characters/vidar/front.svg",
  26923. extra: 2994 / 2795,
  26924. bottom: 56 / 3061
  26925. }
  26926. },
  26927. back: {
  26928. height: math.unit(2.5, "meters"),
  26929. weight: math.unit(200, "kg"),
  26930. name: "Back",
  26931. image: {
  26932. source: "./media/characters/vidar/back.svg",
  26933. extra: 3131 / 2928,
  26934. bottom: 13.5 / 3141.5
  26935. }
  26936. },
  26937. feral: {
  26938. height: math.unit(2.5, "meters"),
  26939. weight: math.unit(2000, "kg"),
  26940. name: "Feral",
  26941. image: {
  26942. source: "./media/characters/vidar/feral.svg",
  26943. extra: 2790 / 1765,
  26944. bottom: 6 / 2796
  26945. }
  26946. },
  26947. },
  26948. [
  26949. {
  26950. name: "Normal",
  26951. height: math.unit(2.5, "meters"),
  26952. default: true
  26953. },
  26954. {
  26955. name: "Macro",
  26956. height: math.unit(100, "meters")
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26962. {
  26963. front: {
  26964. height: math.unit(5 + 9 / 12, "feet"),
  26965. weight: math.unit(120, "lb"),
  26966. name: "Front",
  26967. image: {
  26968. source: "./media/characters/ash/front.svg",
  26969. extra: 2189 / 1961,
  26970. bottom: 5.2 / 2194
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(5 + 9 / 12, "feet"),
  26978. default: true
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(9, "feet"),
  26987. weight: math.unit(10000, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/gygabite/front.svg",
  26991. bottom: 31.7 / 537.8,
  26992. extra: 505 / 370
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Normal",
  26999. height: math.unit(9, "feet"),
  27000. default: true
  27001. },
  27002. ]
  27003. ))
  27004. characterMakers.push(() => makeCharacter(
  27005. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27006. {
  27007. front: {
  27008. height: math.unit(12, "feet"),
  27009. weight: math.unit(35000, "lb"),
  27010. name: "Front",
  27011. image: {
  27012. source: "./media/characters/p0tat0/front.svg",
  27013. extra: 1065 / 921,
  27014. bottom: 55.7 / 1121.25
  27015. }
  27016. },
  27017. },
  27018. [
  27019. {
  27020. name: "Normal",
  27021. height: math.unit(12, "feet"),
  27022. default: true
  27023. },
  27024. ]
  27025. ))
  27026. characterMakers.push(() => makeCharacter(
  27027. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27028. {
  27029. side: {
  27030. height: math.unit(6.5, "feet"),
  27031. weight: math.unit(800, "lb"),
  27032. name: "Side",
  27033. image: {
  27034. source: "./media/characters/dusk/side.svg",
  27035. extra: 615 / 373,
  27036. bottom: 53 / 664
  27037. }
  27038. },
  27039. sitting: {
  27040. height: math.unit(7, "feet"),
  27041. weight: math.unit(800, "lb"),
  27042. name: "Sitting",
  27043. image: {
  27044. source: "./media/characters/dusk/sitting.svg",
  27045. extra: 753 / 425,
  27046. bottom: 33 / 774
  27047. }
  27048. },
  27049. head: {
  27050. height: math.unit(6.1, "feet"),
  27051. name: "Head",
  27052. image: {
  27053. source: "./media/characters/dusk/head.svg"
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Normal",
  27060. height: math.unit(7, "feet"),
  27061. default: true
  27062. },
  27063. ]
  27064. ))
  27065. characterMakers.push(() => makeCharacter(
  27066. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27067. {
  27068. front: {
  27069. height: math.unit(15, "feet"),
  27070. weight: math.unit(7000, "lb"),
  27071. name: "Front",
  27072. image: {
  27073. source: "./media/characters/jay-direwolf/front.svg",
  27074. extra: 1810 / 1732,
  27075. bottom: 66 / 1892
  27076. }
  27077. },
  27078. },
  27079. [
  27080. {
  27081. name: "Normal",
  27082. height: math.unit(15, "feet"),
  27083. default: true
  27084. },
  27085. ]
  27086. ))
  27087. characterMakers.push(() => makeCharacter(
  27088. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27089. {
  27090. front: {
  27091. height: math.unit(4 + 9 / 12, "feet"),
  27092. weight: math.unit(130, "lb"),
  27093. name: "Front",
  27094. image: {
  27095. source: "./media/characters/anchovie/front.svg",
  27096. extra: 382 / 350,
  27097. bottom: 25 / 409
  27098. }
  27099. },
  27100. back: {
  27101. height: math.unit(4 + 9 / 12, "feet"),
  27102. weight: math.unit(130, "lb"),
  27103. name: "Back",
  27104. image: {
  27105. source: "./media/characters/anchovie/back.svg",
  27106. extra: 385 / 352,
  27107. bottom: 16.6 / 402
  27108. }
  27109. },
  27110. frontDressed: {
  27111. height: math.unit(4 + 9 / 12, "feet"),
  27112. weight: math.unit(130, "lb"),
  27113. name: "Front (Dressed)",
  27114. image: {
  27115. source: "./media/characters/anchovie/front-dressed.svg",
  27116. extra: 382 / 350,
  27117. bottom: 25 / 409
  27118. }
  27119. },
  27120. backDressed: {
  27121. height: math.unit(4 + 9 / 12, "feet"),
  27122. weight: math.unit(130, "lb"),
  27123. name: "Back (Dressed)",
  27124. image: {
  27125. source: "./media/characters/anchovie/back-dressed.svg",
  27126. extra: 385 / 352,
  27127. bottom: 16.6 / 402
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Micro",
  27134. height: math.unit(6.4, "inches")
  27135. },
  27136. {
  27137. name: "Normal",
  27138. height: math.unit(4 + 9 / 12, "feet"),
  27139. default: true
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27145. {
  27146. front: {
  27147. height: math.unit(2, "meters"),
  27148. weight: math.unit(180, "lb"),
  27149. name: "Front",
  27150. image: {
  27151. source: "./media/characters/acidrenamon/front.svg",
  27152. extra: 987 / 890,
  27153. bottom: 22.8 / 1009
  27154. }
  27155. },
  27156. back: {
  27157. height: math.unit(2, "meters"),
  27158. weight: math.unit(180, "lb"),
  27159. name: "Back",
  27160. image: {
  27161. source: "./media/characters/acidrenamon/back.svg",
  27162. extra: 983 / 891,
  27163. bottom: 8.4 / 992
  27164. }
  27165. },
  27166. head: {
  27167. height: math.unit(1.92, "feet"),
  27168. name: "Head",
  27169. image: {
  27170. source: "./media/characters/acidrenamon/head.svg"
  27171. }
  27172. },
  27173. rump: {
  27174. height: math.unit(1.72, "feet"),
  27175. name: "Rump",
  27176. image: {
  27177. source: "./media/characters/acidrenamon/rump.svg"
  27178. }
  27179. },
  27180. tail: {
  27181. height: math.unit(4.2, "feet"),
  27182. name: "Tail",
  27183. image: {
  27184. source: "./media/characters/acidrenamon/tail.svg"
  27185. }
  27186. },
  27187. },
  27188. [
  27189. {
  27190. name: "Normal",
  27191. height: math.unit(2, "meters"),
  27192. default: true
  27193. },
  27194. {
  27195. name: "Minimacro",
  27196. height: math.unit(7, "meters")
  27197. },
  27198. {
  27199. name: "Macro",
  27200. height: math.unit(200, "meters")
  27201. },
  27202. {
  27203. name: "Gigamacro",
  27204. height: math.unit(0.2, "earths")
  27205. },
  27206. ]
  27207. ))
  27208. characterMakers.push(() => makeCharacter(
  27209. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27210. {
  27211. front: {
  27212. height: math.unit(6, "feet"),
  27213. weight: math.unit(150, "lb"),
  27214. name: "Front",
  27215. image: {
  27216. source: "./media/characters/kenzie-lee/front.svg",
  27217. extra: 1525 / 1465,
  27218. bottom: 45 / 1570
  27219. }
  27220. },
  27221. side: {
  27222. height: math.unit(6, "feet"),
  27223. weight: math.unit(150, "lb"),
  27224. name: "Side",
  27225. image: {
  27226. source: "./media/characters/kenzie-lee/side.svg",
  27227. extra: 5505 / 5383,
  27228. bottom: 60 / 5573
  27229. }
  27230. },
  27231. paw: {
  27232. height: math.unit(0.57, "feet"),
  27233. name: "Paw",
  27234. image: {
  27235. source: "./media/characters/kenzie-lee/paw.svg"
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Normal",
  27242. height: math.unit(152, "feet"),
  27243. default: true
  27244. },
  27245. {
  27246. name: "Megamacro",
  27247. height: math.unit(7, "miles")
  27248. },
  27249. {
  27250. name: "Gigamacro",
  27251. height: math.unit(8000, "miles")
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27257. {
  27258. side: {
  27259. height: math.unit(6, "feet"),
  27260. weight: math.unit(150, "lb"),
  27261. name: "Side",
  27262. image: {
  27263. source: "./media/characters/withers/side.svg",
  27264. extra: 1830 / 1728,
  27265. bottom: 96 / 1927
  27266. }
  27267. },
  27268. front: {
  27269. height: math.unit(6, "feet"),
  27270. weight: math.unit(150, "lb"),
  27271. name: "Front",
  27272. image: {
  27273. source: "./media/characters/withers/front.svg",
  27274. extra: 1514 / 1438,
  27275. bottom: 118 / 1632
  27276. }
  27277. },
  27278. },
  27279. [
  27280. {
  27281. name: "Macro",
  27282. height: math.unit(168, "feet"),
  27283. default: true
  27284. },
  27285. {
  27286. name: "Megamacro",
  27287. height: math.unit(15, "miles")
  27288. }
  27289. ]
  27290. ))
  27291. characterMakers.push(() => makeCharacter(
  27292. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27293. {
  27294. front: {
  27295. height: math.unit(6 + 7 / 12, "feet"),
  27296. weight: math.unit(250, "lb"),
  27297. name: "Front",
  27298. image: {
  27299. source: "./media/characters/nemoskii/front.svg",
  27300. extra: 2270 / 1734,
  27301. bottom: 86 / 2354
  27302. }
  27303. },
  27304. back: {
  27305. height: math.unit(6 + 7 / 12, "feet"),
  27306. weight: math.unit(250, "lb"),
  27307. name: "Back",
  27308. image: {
  27309. source: "./media/characters/nemoskii/back.svg",
  27310. extra: 1845 / 1788,
  27311. bottom: 10.5 / 1852
  27312. }
  27313. },
  27314. head: {
  27315. height: math.unit(1.31, "feet"),
  27316. name: "Head",
  27317. image: {
  27318. source: "./media/characters/nemoskii/head.svg"
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Micro",
  27325. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27326. },
  27327. {
  27328. name: "Normal",
  27329. height: math.unit(6 + 7 / 12, "feet"),
  27330. default: true
  27331. },
  27332. {
  27333. name: "Macro",
  27334. height: math.unit((6 + 7 / 12) * 150, "feet")
  27335. },
  27336. {
  27337. name: "Macro+",
  27338. height: math.unit((6 + 7 / 12) * 500, "feet")
  27339. },
  27340. {
  27341. name: "Megamacro",
  27342. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27343. },
  27344. ]
  27345. ))
  27346. characterMakers.push(() => makeCharacter(
  27347. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27348. {
  27349. front: {
  27350. height: math.unit(1, "mile"),
  27351. weight: math.unit(265261.9, "lb"),
  27352. name: "Front",
  27353. image: {
  27354. source: "./media/characters/shui/front.svg",
  27355. extra: 1633 / 1564,
  27356. bottom: 91.5 / 1726
  27357. }
  27358. },
  27359. },
  27360. [
  27361. {
  27362. name: "Macro",
  27363. height: math.unit(1, "mile"),
  27364. default: true
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(12 + 6 / 12, "feet"),
  27373. weight: math.unit(1342, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/arokh-takakura/front.svg",
  27377. extra: 1089 / 1043,
  27378. bottom: 77.4 / 1176.7
  27379. }
  27380. },
  27381. back: {
  27382. height: math.unit(12 + 6 / 12, "feet"),
  27383. weight: math.unit(1342, "lb"),
  27384. name: "Back",
  27385. image: {
  27386. source: "./media/characters/arokh-takakura/back.svg",
  27387. extra: 1046 / 1019,
  27388. bottom: 102 / 1150
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Big",
  27395. height: math.unit(12 + 6 / 12, "feet"),
  27396. default: true
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(5 + 6 / 12, "feet"),
  27405. weight: math.unit(150, "lb"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/theo/front.svg",
  27409. extra: 1184 / 1131,
  27410. bottom: 7.4 / 1191
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Micro",
  27417. height: math.unit(5, "inches")
  27418. },
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(5 + 6 / 12, "feet"),
  27422. default: true
  27423. },
  27424. ]
  27425. ))
  27426. characterMakers.push(() => makeCharacter(
  27427. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27428. {
  27429. front: {
  27430. height: math.unit(5 + 9 / 12, "feet"),
  27431. weight: math.unit(130, "lb"),
  27432. name: "Front",
  27433. image: {
  27434. source: "./media/characters/cecelia-swift/front.svg",
  27435. extra: 502 / 484,
  27436. bottom: 23 / 523
  27437. }
  27438. },
  27439. back: {
  27440. height: math.unit(5 + 9 / 12, "feet"),
  27441. weight: math.unit(130, "lb"),
  27442. name: "Back",
  27443. image: {
  27444. source: "./media/characters/cecelia-swift/back.svg",
  27445. extra: 499 / 485,
  27446. bottom: 12 / 511
  27447. }
  27448. },
  27449. head: {
  27450. height: math.unit(0.90, "feet"),
  27451. name: "Head",
  27452. image: {
  27453. source: "./media/characters/cecelia-swift/head.svg"
  27454. }
  27455. },
  27456. rump: {
  27457. height: math.unit(1.75, "feet"),
  27458. name: "Rump",
  27459. image: {
  27460. source: "./media/characters/cecelia-swift/rump.svg"
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Normal",
  27467. height: math.unit(5 + 9 / 12, "feet"),
  27468. default: true
  27469. },
  27470. {
  27471. name: "Big",
  27472. height: math.unit(50, "feet")
  27473. },
  27474. {
  27475. name: "Macro",
  27476. height: math.unit(100, "feet")
  27477. },
  27478. {
  27479. name: "Macro+",
  27480. height: math.unit(500, "feet")
  27481. },
  27482. {
  27483. name: "Macro++",
  27484. height: math.unit(1000, "feet")
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27490. {
  27491. front: {
  27492. height: math.unit(6, "feet"),
  27493. weight: math.unit(150, "lb"),
  27494. name: "Front",
  27495. image: {
  27496. source: "./media/characters/kaunan/front.svg",
  27497. extra: 2890 / 2523,
  27498. bottom: 49 / 2939
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Macro",
  27505. height: math.unit(150, "feet"),
  27506. default: true
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(175, "cm"),
  27515. weight: math.unit(60, "kg"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/fei/front.svg",
  27519. extra: 1873/1723,
  27520. bottom: 53/1926
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Mortal",
  27527. height: math.unit(175, "cm")
  27528. },
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(3500, "m"),
  27532. default: true
  27533. },
  27534. {
  27535. name: "Stroll",
  27536. height: math.unit(17.5, "km")
  27537. },
  27538. {
  27539. name: "Showoff",
  27540. height: math.unit(175, "km")
  27541. },
  27542. ]
  27543. ))
  27544. characterMakers.push(() => makeCharacter(
  27545. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27546. {
  27547. front: {
  27548. height: math.unit(7, "feet"),
  27549. weight: math.unit(1000, "kg"),
  27550. name: "Front",
  27551. image: {
  27552. source: "./media/characters/edrax/front.svg",
  27553. extra: 2838 / 2550,
  27554. bottom: 130 / 2968
  27555. }
  27556. },
  27557. },
  27558. [
  27559. {
  27560. name: "Small",
  27561. height: math.unit(7, "feet")
  27562. },
  27563. {
  27564. name: "Normal",
  27565. height: math.unit(1500, "meters")
  27566. },
  27567. {
  27568. name: "Mega",
  27569. height: math.unit(12000000, "km"),
  27570. default: true
  27571. },
  27572. {
  27573. name: "Megamacro",
  27574. height: math.unit(10600000, "lightyears")
  27575. },
  27576. {
  27577. name: "Hypermacro",
  27578. height: math.unit(256, "yottameters")
  27579. },
  27580. ]
  27581. ))
  27582. characterMakers.push(() => makeCharacter(
  27583. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27584. {
  27585. front: {
  27586. height: math.unit(10, "feet"),
  27587. weight: math.unit(750, "lb"),
  27588. name: "Front",
  27589. image: {
  27590. source: "./media/characters/clove/front.svg",
  27591. extra: 2031 / 1860,
  27592. bottom: 47.8 / 2080
  27593. }
  27594. },
  27595. back: {
  27596. height: math.unit(10, "feet"),
  27597. weight: math.unit(750, "lb"),
  27598. name: "Back",
  27599. image: {
  27600. source: "./media/characters/clove/back.svg",
  27601. extra: 2025 / 1859,
  27602. bottom: 46 / 2071
  27603. }
  27604. },
  27605. },
  27606. [
  27607. {
  27608. name: "Normal",
  27609. height: math.unit(10, "feet"),
  27610. default: true
  27611. },
  27612. ]
  27613. ))
  27614. characterMakers.push(() => makeCharacter(
  27615. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27616. {
  27617. front: {
  27618. height: math.unit(4, "feet"),
  27619. weight: math.unit(50, "lb"),
  27620. name: "Front",
  27621. image: {
  27622. source: "./media/characters/alex-rabbit/front.svg",
  27623. extra: 507 / 458,
  27624. bottom: 18.5 / 527
  27625. }
  27626. },
  27627. back: {
  27628. height: math.unit(4, "feet"),
  27629. weight: math.unit(50, "lb"),
  27630. name: "Back",
  27631. image: {
  27632. source: "./media/characters/alex-rabbit/back.svg",
  27633. extra: 502 / 460,
  27634. bottom: 18.9 / 521
  27635. }
  27636. },
  27637. },
  27638. [
  27639. {
  27640. name: "Normal",
  27641. height: math.unit(4, "feet"),
  27642. default: true
  27643. },
  27644. ]
  27645. ))
  27646. characterMakers.push(() => makeCharacter(
  27647. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27648. {
  27649. front: {
  27650. height: math.unit(1 + 3 / 12, "feet"),
  27651. weight: math.unit(80, "lb"),
  27652. name: "Front",
  27653. image: {
  27654. source: "./media/characters/zander-rose/front.svg",
  27655. extra: 916 / 797,
  27656. bottom: 17 / 933
  27657. }
  27658. },
  27659. back: {
  27660. height: math.unit(1 + 3 / 12, "feet"),
  27661. weight: math.unit(80, "lb"),
  27662. name: "Back",
  27663. image: {
  27664. source: "./media/characters/zander-rose/back.svg",
  27665. extra: 903 / 779,
  27666. bottom: 31 / 934
  27667. }
  27668. },
  27669. },
  27670. [
  27671. {
  27672. name: "Normal",
  27673. height: math.unit(1 + 3 / 12, "feet"),
  27674. default: true
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27680. {
  27681. anthro: {
  27682. height: math.unit(6, "feet"),
  27683. weight: math.unit(150, "lb"),
  27684. name: "Anthro",
  27685. image: {
  27686. source: "./media/characters/razz/anthro.svg",
  27687. extra: 1437 / 1343,
  27688. bottom: 48 / 1485
  27689. }
  27690. },
  27691. feral: {
  27692. height: math.unit(6, "feet"),
  27693. weight: math.unit(150, "lb"),
  27694. name: "Feral",
  27695. image: {
  27696. source: "./media/characters/razz/feral.svg",
  27697. extra: 2569 / 1385,
  27698. bottom: 95 / 2664
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Normal",
  27705. height: math.unit(6, "feet"),
  27706. default: true
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27712. {
  27713. front: {
  27714. height: math.unit(9 + 4 / 12, "feet"),
  27715. weight: math.unit(500, "lb"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/morrigan/front.svg",
  27719. extra: 2707 / 2579,
  27720. bottom: 156 / 2863
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Normal",
  27727. height: math.unit(9 + 4 / 12, "feet"),
  27728. default: true
  27729. },
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27734. {
  27735. front: {
  27736. height: math.unit(5, "stories"),
  27737. weight: math.unit(4000, "lb"),
  27738. name: "Front",
  27739. image: {
  27740. source: "./media/characters/jenene/front.svg",
  27741. extra: 1780 / 1710,
  27742. bottom: 57 / 1837
  27743. }
  27744. },
  27745. },
  27746. [
  27747. {
  27748. name: "Normal",
  27749. height: math.unit(5, "stories"),
  27750. default: true
  27751. },
  27752. ]
  27753. ))
  27754. characterMakers.push(() => makeCharacter(
  27755. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27756. {
  27757. taurSfw: {
  27758. height: math.unit(10, "meters"),
  27759. weight: math.unit(17500, "kg"),
  27760. name: "Taur",
  27761. image: {
  27762. source: "./media/characters/faey/taur-sfw.svg",
  27763. extra: 1200 / 968,
  27764. bottom: 41 / 1241
  27765. }
  27766. },
  27767. chestmaw: {
  27768. height: math.unit(2.01, "meters"),
  27769. name: "Chestmaw",
  27770. image: {
  27771. source: "./media/characters/faey/chestmaw.svg"
  27772. }
  27773. },
  27774. foot: {
  27775. height: math.unit(2.43, "meters"),
  27776. name: "Foot",
  27777. image: {
  27778. source: "./media/characters/faey/foot.svg"
  27779. }
  27780. },
  27781. jaws: {
  27782. height: math.unit(1.66, "meters"),
  27783. name: "Jaws",
  27784. image: {
  27785. source: "./media/characters/faey/jaws.svg"
  27786. }
  27787. },
  27788. tongues: {
  27789. height: math.unit(2.01, "meters"),
  27790. name: "Tongues",
  27791. image: {
  27792. source: "./media/characters/faey/tongues.svg"
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Small",
  27799. height: math.unit(10, "meters"),
  27800. default: true
  27801. },
  27802. {
  27803. name: "Big",
  27804. height: math.unit(500000, "km")
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27810. {
  27811. front: {
  27812. height: math.unit(7, "feet"),
  27813. weight: math.unit(275, "lb"),
  27814. name: "Front",
  27815. image: {
  27816. source: "./media/characters/roku/front.svg",
  27817. extra: 903 / 878,
  27818. bottom: 37 / 940
  27819. }
  27820. },
  27821. },
  27822. [
  27823. {
  27824. name: "Normal",
  27825. height: math.unit(7, "feet"),
  27826. default: true
  27827. },
  27828. {
  27829. name: "Macro",
  27830. height: math.unit(500, "feet")
  27831. },
  27832. {
  27833. name: "Megamacro",
  27834. height: math.unit(200, "miles")
  27835. },
  27836. ]
  27837. ))
  27838. characterMakers.push(() => makeCharacter(
  27839. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27840. {
  27841. front: {
  27842. height: math.unit(6 + 2 / 12, "feet"),
  27843. weight: math.unit(150, "lb"),
  27844. name: "Front",
  27845. image: {
  27846. source: "./media/characters/lira/front.svg",
  27847. extra: 1727 / 1605,
  27848. bottom: 26 / 1753
  27849. }
  27850. },
  27851. back: {
  27852. height: math.unit(6 + 2 / 12, "feet"),
  27853. weight: math.unit(150, "lb"),
  27854. name: "Back",
  27855. image: {
  27856. source: "./media/characters/lira/back.svg",
  27857. extra: 1713/1621,
  27858. bottom: 20/1733
  27859. }
  27860. },
  27861. hand: {
  27862. height: math.unit(0.75, "feet"),
  27863. name: "Hand",
  27864. image: {
  27865. source: "./media/characters/lira/hand.svg"
  27866. }
  27867. },
  27868. maw: {
  27869. height: math.unit(0.65, "feet"),
  27870. name: "Maw",
  27871. image: {
  27872. source: "./media/characters/lira/maw.svg"
  27873. }
  27874. },
  27875. pawDigi: {
  27876. height: math.unit(1.6, "feet"),
  27877. name: "Paw Digi",
  27878. image: {
  27879. source: "./media/characters/lira/paw-digi.svg"
  27880. }
  27881. },
  27882. pawPlanti: {
  27883. height: math.unit(1.4, "feet"),
  27884. name: "Paw Planti",
  27885. image: {
  27886. source: "./media/characters/lira/paw-planti.svg"
  27887. }
  27888. },
  27889. },
  27890. [
  27891. {
  27892. name: "Normal",
  27893. height: math.unit(6 + 2 / 12, "feet"),
  27894. default: true
  27895. },
  27896. {
  27897. name: "Macro",
  27898. height: math.unit(100, "feet")
  27899. },
  27900. {
  27901. name: "Macro²",
  27902. height: math.unit(1600, "feet")
  27903. },
  27904. {
  27905. name: "Planetary",
  27906. height: math.unit(20, "earths")
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(6, "feet"),
  27915. weight: math.unit(150, "lb"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/hadjet/front.svg",
  27919. extra: 1480 / 1346,
  27920. bottom: 26 / 1506
  27921. }
  27922. },
  27923. frontNsfw: {
  27924. height: math.unit(6, "feet"),
  27925. weight: math.unit(150, "lb"),
  27926. name: "Front (NSFW)",
  27927. image: {
  27928. source: "./media/characters/hadjet/front-nsfw.svg",
  27929. extra: 1440 / 1358,
  27930. bottom: 52 / 1492
  27931. }
  27932. },
  27933. },
  27934. [
  27935. {
  27936. name: "Macro",
  27937. height: math.unit(10, "stories"),
  27938. default: true
  27939. },
  27940. {
  27941. name: "Megamacro",
  27942. height: math.unit(1.5, "miles")
  27943. },
  27944. {
  27945. name: "Megamacro+",
  27946. height: math.unit(5, "miles")
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27952. {
  27953. side: {
  27954. height: math.unit(106, "feet"),
  27955. weight: math.unit(500, "tonnes"),
  27956. name: "Side",
  27957. image: {
  27958. source: "./media/characters/kodran/side.svg",
  27959. extra: 553 / 480,
  27960. bottom: 33 / 586
  27961. }
  27962. },
  27963. front: {
  27964. height: math.unit(132, "feet"),
  27965. weight: math.unit(500, "tonnes"),
  27966. name: "Front",
  27967. image: {
  27968. source: "./media/characters/kodran/front.svg",
  27969. extra: 667 / 643,
  27970. bottom: 42 / 709
  27971. }
  27972. },
  27973. flying: {
  27974. height: math.unit(350, "feet"),
  27975. weight: math.unit(500, "tonnes"),
  27976. name: "Flying",
  27977. image: {
  27978. source: "./media/characters/kodran/flying.svg"
  27979. }
  27980. },
  27981. foot: {
  27982. height: math.unit(33, "feet"),
  27983. name: "Foot",
  27984. image: {
  27985. source: "./media/characters/kodran/foot.svg"
  27986. }
  27987. },
  27988. footFront: {
  27989. height: math.unit(19, "feet"),
  27990. name: "Foot (Front)",
  27991. image: {
  27992. source: "./media/characters/kodran/foot-front.svg",
  27993. extra: 261 / 261,
  27994. bottom: 91 / 352
  27995. }
  27996. },
  27997. headFront: {
  27998. height: math.unit(53, "feet"),
  27999. name: "Head (Front)",
  28000. image: {
  28001. source: "./media/characters/kodran/head-front.svg"
  28002. }
  28003. },
  28004. headSide: {
  28005. height: math.unit(65, "feet"),
  28006. name: "Head (Side)",
  28007. image: {
  28008. source: "./media/characters/kodran/head-side.svg"
  28009. }
  28010. },
  28011. throat: {
  28012. height: math.unit(79, "feet"),
  28013. name: "Throat",
  28014. image: {
  28015. source: "./media/characters/kodran/throat.svg"
  28016. }
  28017. },
  28018. },
  28019. [
  28020. {
  28021. name: "Large",
  28022. height: math.unit(106, "feet"),
  28023. default: true
  28024. },
  28025. ]
  28026. ))
  28027. characterMakers.push(() => makeCharacter(
  28028. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28029. {
  28030. side: {
  28031. height: math.unit(11, "feet"),
  28032. weight: math.unit(150, "lb"),
  28033. name: "Side",
  28034. image: {
  28035. source: "./media/characters/pyxaron/side.svg",
  28036. extra: 305 / 195,
  28037. bottom: 17 / 322
  28038. }
  28039. },
  28040. },
  28041. [
  28042. {
  28043. name: "Normal",
  28044. height: math.unit(11, "feet"),
  28045. default: true
  28046. },
  28047. ]
  28048. ))
  28049. characterMakers.push(() => makeCharacter(
  28050. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28051. {
  28052. front: {
  28053. height: math.unit(6, "feet"),
  28054. weight: math.unit(150, "lb"),
  28055. name: "Front",
  28056. image: {
  28057. source: "./media/characters/meep/front.svg",
  28058. extra: 88 / 80,
  28059. bottom: 6 / 94
  28060. }
  28061. },
  28062. },
  28063. [
  28064. {
  28065. name: "Fun Sized",
  28066. height: math.unit(2, "inches"),
  28067. default: true
  28068. },
  28069. {
  28070. name: "Friend Sized",
  28071. height: math.unit(8, "inches")
  28072. },
  28073. ]
  28074. ))
  28075. characterMakers.push(() => makeCharacter(
  28076. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28077. {
  28078. front: {
  28079. height: math.unit(15, "feet"),
  28080. weight: math.unit(2500, "lb"),
  28081. name: "Front",
  28082. image: {
  28083. source: "./media/characters/holly-rabbit/front.svg",
  28084. extra: 1433 / 1233,
  28085. bottom: 125 / 1558
  28086. }
  28087. },
  28088. dick: {
  28089. height: math.unit(4.6, "feet"),
  28090. name: "Dick",
  28091. image: {
  28092. source: "./media/characters/holly-rabbit/dick.svg"
  28093. }
  28094. },
  28095. },
  28096. [
  28097. {
  28098. name: "Normal",
  28099. height: math.unit(15, "feet"),
  28100. default: true
  28101. },
  28102. {
  28103. name: "Macro",
  28104. height: math.unit(250, "feet")
  28105. },
  28106. {
  28107. name: "Macro+",
  28108. height: math.unit(2500, "feet")
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28114. {
  28115. front: {
  28116. height: math.unit(3.02, "meters"),
  28117. weight: math.unit(500, "kg"),
  28118. name: "Front",
  28119. image: {
  28120. source: "./media/characters/drena/front.svg",
  28121. extra: 282 / 243,
  28122. bottom: 8 / 290
  28123. }
  28124. },
  28125. side: {
  28126. height: math.unit(3.02, "meters"),
  28127. weight: math.unit(500, "kg"),
  28128. name: "Side",
  28129. image: {
  28130. source: "./media/characters/drena/side.svg",
  28131. extra: 280 / 245,
  28132. bottom: 10 / 290
  28133. }
  28134. },
  28135. back: {
  28136. height: math.unit(3.02, "meters"),
  28137. weight: math.unit(500, "kg"),
  28138. name: "Back",
  28139. image: {
  28140. source: "./media/characters/drena/back.svg",
  28141. extra: 278 / 243,
  28142. bottom: 2 / 280
  28143. }
  28144. },
  28145. foot: {
  28146. height: math.unit(0.75, "meters"),
  28147. name: "Foot",
  28148. image: {
  28149. source: "./media/characters/drena/foot.svg"
  28150. }
  28151. },
  28152. maw: {
  28153. height: math.unit(0.82, "meters"),
  28154. name: "Maw",
  28155. image: {
  28156. source: "./media/characters/drena/maw.svg"
  28157. }
  28158. },
  28159. rump: {
  28160. height: math.unit(0.93, "meters"),
  28161. name: "Rump",
  28162. image: {
  28163. source: "./media/characters/drena/rump.svg"
  28164. }
  28165. },
  28166. },
  28167. [
  28168. {
  28169. name: "Normal",
  28170. height: math.unit(3.02, "meters"),
  28171. default: true
  28172. },
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28177. {
  28178. front: {
  28179. height: math.unit(6 + 4 / 12, "feet"),
  28180. weight: math.unit(250, "lb"),
  28181. name: "Front",
  28182. image: {
  28183. source: "./media/characters/remmyzilla/front.svg",
  28184. extra: 4033 / 3588,
  28185. bottom: 123 / 4156
  28186. }
  28187. },
  28188. back: {
  28189. height: math.unit(6 + 4 / 12, "feet"),
  28190. weight: math.unit(250, "lb"),
  28191. name: "Back",
  28192. image: {
  28193. source: "./media/characters/remmyzilla/back.svg",
  28194. extra: 2687 / 2555,
  28195. bottom: 48 / 2735
  28196. }
  28197. },
  28198. paw: {
  28199. height: math.unit(1.73, "feet"),
  28200. name: "Paw",
  28201. image: {
  28202. source: "./media/characters/remmyzilla/paw.svg"
  28203. }
  28204. },
  28205. maw: {
  28206. height: math.unit(1.73, "feet"),
  28207. name: "Maw",
  28208. image: {
  28209. source: "./media/characters/remmyzilla/maw.svg"
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(6 + 4 / 12, "feet")
  28217. },
  28218. {
  28219. name: "Minimacro",
  28220. height: math.unit(12 + 8 / 12, "feet")
  28221. },
  28222. {
  28223. name: "Normal",
  28224. height: math.unit(640, "feet"),
  28225. default: true
  28226. },
  28227. {
  28228. name: "Megamacro",
  28229. height: math.unit(6400, "feet")
  28230. },
  28231. {
  28232. name: "Gigamacro",
  28233. height: math.unit(64000, "miles")
  28234. },
  28235. ]
  28236. ))
  28237. characterMakers.push(() => makeCharacter(
  28238. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28239. {
  28240. front: {
  28241. height: math.unit(2.5, "meters"),
  28242. weight: math.unit(300, "lb"),
  28243. name: "Front",
  28244. image: {
  28245. source: "./media/characters/lawrence/front.svg",
  28246. extra: 357 / 335,
  28247. bottom: 30 / 387
  28248. }
  28249. },
  28250. back: {
  28251. height: math.unit(2.5, "meters"),
  28252. weight: math.unit(300, "lb"),
  28253. name: "Back",
  28254. image: {
  28255. source: "./media/characters/lawrence/back.svg",
  28256. extra: 357 / 338,
  28257. bottom: 16 / 373
  28258. }
  28259. },
  28260. head: {
  28261. height: math.unit(0.9, "meter"),
  28262. name: "Head",
  28263. image: {
  28264. source: "./media/characters/lawrence/head.svg"
  28265. }
  28266. },
  28267. maw: {
  28268. height: math.unit(0.7, "meter"),
  28269. name: "Maw",
  28270. image: {
  28271. source: "./media/characters/lawrence/maw.svg"
  28272. }
  28273. },
  28274. footBottom: {
  28275. height: math.unit(0.5, "meter"),
  28276. name: "Foot (Bottom)",
  28277. image: {
  28278. source: "./media/characters/lawrence/foot-bottom.svg"
  28279. }
  28280. },
  28281. footTop: {
  28282. height: math.unit(0.5, "meter"),
  28283. name: "Foot (Top)",
  28284. image: {
  28285. source: "./media/characters/lawrence/foot-top.svg"
  28286. }
  28287. },
  28288. },
  28289. [
  28290. {
  28291. name: "Normal",
  28292. height: math.unit(2.5, "meters"),
  28293. default: true
  28294. },
  28295. {
  28296. name: "Macro",
  28297. height: math.unit(95, "meters")
  28298. },
  28299. {
  28300. name: "Megamacro",
  28301. height: math.unit(150, "km")
  28302. },
  28303. ]
  28304. ))
  28305. characterMakers.push(() => makeCharacter(
  28306. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28307. {
  28308. front: {
  28309. height: math.unit(4.2, "meters"),
  28310. name: "Front",
  28311. image: {
  28312. source: "./media/characters/sydney/front.svg",
  28313. extra: 1323 / 1277,
  28314. bottom: 111 / 1434
  28315. }
  28316. },
  28317. },
  28318. [
  28319. {
  28320. name: "Normal",
  28321. height: math.unit(4.2, "meters"),
  28322. default: true
  28323. },
  28324. ]
  28325. ))
  28326. characterMakers.push(() => makeCharacter(
  28327. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28328. {
  28329. back: {
  28330. height: math.unit(201, "feet"),
  28331. name: "Back",
  28332. image: {
  28333. source: "./media/characters/jessica/back.svg",
  28334. extra: 273 / 259,
  28335. bottom: 7 / 280
  28336. }
  28337. },
  28338. },
  28339. [
  28340. {
  28341. name: "Normal",
  28342. height: math.unit(201, "feet"),
  28343. default: true
  28344. },
  28345. {
  28346. name: "Megamacro",
  28347. height: math.unit(8, "miles")
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28353. {
  28354. side: {
  28355. height: math.unit(320, "cm"),
  28356. name: "Side",
  28357. image: {
  28358. source: "./media/characters/victoria/side.svg",
  28359. extra: 778 / 346,
  28360. bottom: 56 / 834
  28361. }
  28362. },
  28363. maw: {
  28364. height: math.unit(5.9, "feet"),
  28365. name: "Maw",
  28366. image: {
  28367. source: "./media/characters/victoria/maw.svg"
  28368. }
  28369. },
  28370. },
  28371. [
  28372. {
  28373. name: "Normal",
  28374. height: math.unit(320, "cm"),
  28375. default: true
  28376. },
  28377. ]
  28378. ))
  28379. characterMakers.push(() => makeCharacter(
  28380. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28381. {
  28382. front: {
  28383. height: math.unit(5 + 6 / 12, "feet"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/cat/front.svg",
  28387. extra: 1449/1295,
  28388. bottom: 34/1483
  28389. }
  28390. },
  28391. back: {
  28392. height: math.unit(5 + 6 / 12, "feet"),
  28393. name: "Back",
  28394. image: {
  28395. source: "./media/characters/cat/back.svg",
  28396. extra: 1466/1301,
  28397. bottom: 19/1485
  28398. }
  28399. },
  28400. taur: {
  28401. height: math.unit(7, "feet"),
  28402. name: "Taur",
  28403. image: {
  28404. source: "./media/characters/cat/taur.svg",
  28405. extra: 1389/1233,
  28406. bottom: 83/1472
  28407. }
  28408. },
  28409. lucarioFront: {
  28410. height: math.unit(4, "feet"),
  28411. name: "Lucario (Front)",
  28412. image: {
  28413. source: "./media/characters/cat/lucario-front.svg",
  28414. extra: 1149/1019,
  28415. bottom: 84/1233
  28416. }
  28417. },
  28418. lucarioBack: {
  28419. height: math.unit(4, "feet"),
  28420. name: "Lucario (Back)",
  28421. image: {
  28422. source: "./media/characters/cat/lucario-back.svg",
  28423. extra: 1190/1059,
  28424. bottom: 33/1223
  28425. }
  28426. },
  28427. megaLucario: {
  28428. height: math.unit(4, "feet"),
  28429. name: "Mega Lucario",
  28430. image: {
  28431. source: "./media/characters/cat/mega-lucario.svg",
  28432. extra: 1515 / 1319,
  28433. bottom: 63 / 1578
  28434. }
  28435. },
  28436. nickit: {
  28437. height: math.unit(2, "feet"),
  28438. name: "Nickit",
  28439. image: {
  28440. source: "./media/characters/cat/nickit.svg",
  28441. extra: 1980 / 1585,
  28442. bottom: 102 / 2082
  28443. }
  28444. },
  28445. lopunnyFront: {
  28446. height: math.unit(5, "feet"),
  28447. name: "Lopunny (Front)",
  28448. image: {
  28449. source: "./media/characters/cat/lopunny-front.svg",
  28450. extra: 1782 / 1469,
  28451. bottom: 38 / 1820
  28452. }
  28453. },
  28454. lopunnyBack: {
  28455. height: math.unit(5, "feet"),
  28456. name: "Lopunny (Back)",
  28457. image: {
  28458. source: "./media/characters/cat/lopunny-back.svg",
  28459. extra: 1660 / 1490,
  28460. bottom: 25 / 1685
  28461. }
  28462. },
  28463. },
  28464. [
  28465. {
  28466. name: "Really small",
  28467. height: math.unit(1, "nm")
  28468. },
  28469. {
  28470. name: "Micro",
  28471. height: math.unit(5, "inches")
  28472. },
  28473. {
  28474. name: "Normal",
  28475. height: math.unit(5 + 6 / 12, "feet"),
  28476. default: true
  28477. },
  28478. {
  28479. name: "Macro",
  28480. height: math.unit(50, "feet")
  28481. },
  28482. {
  28483. name: "Macro+",
  28484. height: math.unit(150, "feet")
  28485. },
  28486. {
  28487. name: "Megamacro",
  28488. height: math.unit(100, "miles")
  28489. },
  28490. ]
  28491. ))
  28492. characterMakers.push(() => makeCharacter(
  28493. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28494. {
  28495. front: {
  28496. height: math.unit(63.4, "meters"),
  28497. weight: math.unit(3.28349e+6, "kilograms"),
  28498. name: "Front",
  28499. image: {
  28500. source: "./media/characters/kirina-violet/front.svg",
  28501. extra: 2812 / 2725,
  28502. bottom: 0 / 2812
  28503. }
  28504. },
  28505. back: {
  28506. height: math.unit(63.4, "meters"),
  28507. weight: math.unit(3.28349e+6, "kilograms"),
  28508. name: "Back",
  28509. image: {
  28510. source: "./media/characters/kirina-violet/back.svg",
  28511. extra: 2812 / 2725,
  28512. bottom: 0 / 2812
  28513. }
  28514. },
  28515. mouth: {
  28516. height: math.unit(4.35, "meters"),
  28517. name: "Mouth",
  28518. image: {
  28519. source: "./media/characters/kirina-violet/mouth.svg"
  28520. }
  28521. },
  28522. paw: {
  28523. height: math.unit(5.6, "meters"),
  28524. name: "Paw",
  28525. image: {
  28526. source: "./media/characters/kirina-violet/paw.svg"
  28527. }
  28528. },
  28529. tail: {
  28530. height: math.unit(18, "meters"),
  28531. name: "Tail",
  28532. image: {
  28533. source: "./media/characters/kirina-violet/tail.svg"
  28534. }
  28535. },
  28536. },
  28537. [
  28538. {
  28539. name: "Macro",
  28540. height: math.unit(63.4, "meters"),
  28541. default: true
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28547. {
  28548. front: {
  28549. height: math.unit(75, "feet"),
  28550. name: "Front",
  28551. image: {
  28552. source: "./media/characters/cat-gigachu/front.svg",
  28553. extra: 1239/1027,
  28554. bottom: 32/1271
  28555. }
  28556. },
  28557. back: {
  28558. height: math.unit(75, "feet"),
  28559. name: "Back",
  28560. image: {
  28561. source: "./media/characters/cat-gigachu/back.svg",
  28562. extra: 1229/1030,
  28563. bottom: 9/1238
  28564. }
  28565. },
  28566. },
  28567. [
  28568. {
  28569. name: "Dynamax",
  28570. height: math.unit(75, "feet"),
  28571. default: true
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28577. {
  28578. front: {
  28579. height: math.unit(6, "feet"),
  28580. weight: math.unit(150, "lb"),
  28581. name: "Front",
  28582. image: {
  28583. source: "./media/characters/sfaiyan/front.svg",
  28584. extra: 999 / 978,
  28585. bottom: 5 / 1004
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(1.82, "meters")
  28593. },
  28594. {
  28595. name: "Giant",
  28596. height: math.unit(2.27, "km"),
  28597. default: true
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28603. {
  28604. front: {
  28605. height: math.unit(179, "cm"),
  28606. weight: math.unit(100, "kg"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/raunehkeli/front.svg",
  28610. extra: 1934 / 1926,
  28611. bottom: 0 / 1934
  28612. }
  28613. },
  28614. },
  28615. [
  28616. {
  28617. name: "Normal",
  28618. height: math.unit(179, "cm")
  28619. },
  28620. {
  28621. name: "Maximum",
  28622. height: math.unit(575, "meters"),
  28623. default: true
  28624. },
  28625. ]
  28626. ))
  28627. characterMakers.push(() => makeCharacter(
  28628. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28629. {
  28630. front: {
  28631. height: math.unit(6, "feet"),
  28632. weight: math.unit(150, "lb"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28636. extra: 2625 / 2518,
  28637. bottom: 60 / 2685
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Normal",
  28644. height: math.unit(6 + 2 / 12, "feet")
  28645. },
  28646. {
  28647. name: "Macro",
  28648. height: math.unit(1180, "feet"),
  28649. default: true
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28655. {
  28656. front: {
  28657. height: math.unit(5 + 6 / 12, "feet"),
  28658. weight: math.unit(108, "lb"),
  28659. name: "Front",
  28660. image: {
  28661. source: "./media/characters/lilith-zott/front.svg",
  28662. extra: 2510 / 2238,
  28663. bottom: 100 / 2610
  28664. }
  28665. },
  28666. frontDressed: {
  28667. height: math.unit(5 + 6 / 12, "feet"),
  28668. weight: math.unit(108, "lb"),
  28669. name: "Front (Dressed)",
  28670. image: {
  28671. source: "./media/characters/lilith-zott/front-dressed.svg",
  28672. extra: 2510 / 2238,
  28673. bottom: 100 / 2610
  28674. }
  28675. },
  28676. },
  28677. [
  28678. {
  28679. name: "Normal",
  28680. height: math.unit(5 + 6 / 12, "feet")
  28681. },
  28682. {
  28683. name: "Macro",
  28684. height: math.unit(1030, "feet"),
  28685. default: true
  28686. },
  28687. ]
  28688. ))
  28689. characterMakers.push(() => makeCharacter(
  28690. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28691. {
  28692. front: {
  28693. height: math.unit(6, "feet"),
  28694. weight: math.unit(150, "lb"),
  28695. name: "Front",
  28696. image: {
  28697. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28698. extra: 2567 / 2435,
  28699. bottom: 39 / 2606
  28700. }
  28701. },
  28702. frontSuper: {
  28703. height: math.unit(6, "feet"),
  28704. name: "Front (Super)",
  28705. image: {
  28706. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28707. extra: 2567 / 2435,
  28708. bottom: 39 / 2606
  28709. }
  28710. },
  28711. },
  28712. [
  28713. {
  28714. name: "Normal",
  28715. height: math.unit(5 + 10 / 12, "feet")
  28716. },
  28717. {
  28718. name: "Macro",
  28719. height: math.unit(1100, "feet"),
  28720. default: true
  28721. },
  28722. ]
  28723. ))
  28724. characterMakers.push(() => makeCharacter(
  28725. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28726. {
  28727. front: {
  28728. height: math.unit(100, "miles"),
  28729. name: "Front",
  28730. image: {
  28731. source: "./media/characters/sona/front.svg",
  28732. extra: 2433 / 2201,
  28733. bottom: 53 / 2486
  28734. }
  28735. },
  28736. foot: {
  28737. height: math.unit(16.1, "miles"),
  28738. name: "Foot",
  28739. image: {
  28740. source: "./media/characters/sona/foot.svg"
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Macro",
  28747. height: math.unit(100, "miles"),
  28748. default: true
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(6, "feet"),
  28757. weight: math.unit(150, "lb"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/bailey/front.svg",
  28761. extra: 1778 / 1724,
  28762. bottom: 30 / 1808
  28763. }
  28764. },
  28765. },
  28766. [
  28767. {
  28768. name: "Micro",
  28769. height: math.unit(4, "inches")
  28770. },
  28771. {
  28772. name: "Normal",
  28773. height: math.unit(5 + 5 / 12, "feet"),
  28774. default: true
  28775. },
  28776. {
  28777. name: "Macro",
  28778. height: math.unit(250, "feet")
  28779. },
  28780. {
  28781. name: "Megamacro",
  28782. height: math.unit(100, "miles")
  28783. },
  28784. ]
  28785. ))
  28786. characterMakers.push(() => makeCharacter(
  28787. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28788. {
  28789. front: {
  28790. height: math.unit(5 + 2 / 12, "feet"),
  28791. weight: math.unit(120, "lb"),
  28792. name: "Front",
  28793. image: {
  28794. source: "./media/characters/snaps/front.svg",
  28795. extra: 2370 / 2177,
  28796. bottom: 48 / 2418
  28797. }
  28798. },
  28799. back: {
  28800. height: math.unit(5 + 2 / 12, "feet"),
  28801. weight: math.unit(120, "lb"),
  28802. name: "Back",
  28803. image: {
  28804. source: "./media/characters/snaps/back.svg",
  28805. extra: 2408 / 2258,
  28806. bottom: 15 / 2423
  28807. }
  28808. },
  28809. },
  28810. [
  28811. {
  28812. name: "Micro",
  28813. height: math.unit(9, "inches")
  28814. },
  28815. {
  28816. name: "Normal",
  28817. height: math.unit(5 + 2 / 12, "feet"),
  28818. default: true
  28819. },
  28820. {
  28821. name: "Mini Macro",
  28822. height: math.unit(10, "feet")
  28823. },
  28824. ]
  28825. ))
  28826. characterMakers.push(() => makeCharacter(
  28827. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28828. {
  28829. front: {
  28830. height: math.unit(1.8, "meters"),
  28831. weight: math.unit(85, "kg"),
  28832. name: "Front",
  28833. image: {
  28834. source: "./media/characters/azteck/front.svg",
  28835. extra: 2815 / 2625,
  28836. bottom: 89 / 2904
  28837. }
  28838. },
  28839. back: {
  28840. height: math.unit(1.8, "meters"),
  28841. weight: math.unit(85, "kg"),
  28842. name: "Back",
  28843. image: {
  28844. source: "./media/characters/azteck/back.svg",
  28845. extra: 2856 / 2648,
  28846. bottom: 85 / 2941
  28847. }
  28848. },
  28849. frontDressed: {
  28850. height: math.unit(1.8, "meters"),
  28851. weight: math.unit(85, "kg"),
  28852. name: "Front (Dressed)",
  28853. image: {
  28854. source: "./media/characters/azteck/front-dressed.svg",
  28855. extra: 2147 / 2003,
  28856. bottom: 68 / 2215
  28857. }
  28858. },
  28859. head: {
  28860. height: math.unit(0.47, "meters"),
  28861. weight: math.unit(85, "kg"),
  28862. name: "Head",
  28863. image: {
  28864. source: "./media/characters/azteck/head.svg"
  28865. }
  28866. },
  28867. },
  28868. [
  28869. {
  28870. name: "Bite sized",
  28871. height: math.unit(16, "cm")
  28872. },
  28873. {
  28874. name: "Normal",
  28875. height: math.unit(1.8, "meters"),
  28876. default: true
  28877. },
  28878. ]
  28879. ))
  28880. characterMakers.push(() => makeCharacter(
  28881. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28882. {
  28883. front: {
  28884. height: math.unit(6, "feet"),
  28885. weight: math.unit(150, "lb"),
  28886. name: "Front",
  28887. image: {
  28888. source: "./media/characters/pidge/front.svg",
  28889. extra: 620 / 588,
  28890. bottom: 9 / 629
  28891. }
  28892. },
  28893. back: {
  28894. height: math.unit(6, "feet"),
  28895. weight: math.unit(150, "lb"),
  28896. name: "Back",
  28897. image: {
  28898. source: "./media/characters/pidge/back.svg",
  28899. extra: 620 / 588,
  28900. bottom: 9 / 629
  28901. }
  28902. },
  28903. },
  28904. [
  28905. {
  28906. name: "Macro",
  28907. height: math.unit(1, "mile"),
  28908. default: true
  28909. },
  28910. ]
  28911. ))
  28912. characterMakers.push(() => makeCharacter(
  28913. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28914. {
  28915. front: {
  28916. height: math.unit(6, "feet"),
  28917. weight: math.unit(150, "lb"),
  28918. name: "Front",
  28919. image: {
  28920. source: "./media/characters/en/front.svg",
  28921. extra: 1697 / 1563,
  28922. bottom: 103 / 1800
  28923. }
  28924. },
  28925. back: {
  28926. height: math.unit(6, "feet"),
  28927. weight: math.unit(150, "lb"),
  28928. name: "Back",
  28929. image: {
  28930. source: "./media/characters/en/back.svg",
  28931. extra: 1700 / 1570,
  28932. bottom: 51 / 1751
  28933. }
  28934. },
  28935. frontDressed: {
  28936. height: math.unit(6, "feet"),
  28937. weight: math.unit(150, "lb"),
  28938. name: "Front (Dressed)",
  28939. image: {
  28940. source: "./media/characters/en/front-dressed.svg",
  28941. extra: 1697 / 1563,
  28942. bottom: 103 / 1800
  28943. }
  28944. },
  28945. backDressed: {
  28946. height: math.unit(6, "feet"),
  28947. weight: math.unit(150, "lb"),
  28948. name: "Back (Dressed)",
  28949. image: {
  28950. source: "./media/characters/en/back-dressed.svg",
  28951. extra: 1700 / 1570,
  28952. bottom: 51 / 1751
  28953. }
  28954. },
  28955. },
  28956. [
  28957. {
  28958. name: "Macro",
  28959. height: math.unit(210, "feet"),
  28960. default: true
  28961. },
  28962. ]
  28963. ))
  28964. characterMakers.push(() => makeCharacter(
  28965. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28966. {
  28967. front: {
  28968. height: math.unit(6, "feet"),
  28969. weight: math.unit(150, "lb"),
  28970. name: "Front",
  28971. image: {
  28972. source: "./media/characters/haze-orris/front.svg",
  28973. extra: 3975 / 3525,
  28974. bottom: 137 / 4112
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Micro",
  28981. height: math.unit(150, "mm"),
  28982. default: true
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(6, "feet"),
  28991. weight: math.unit(150, "lb"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/casselene-yaro/front.svg",
  28995. extra: 4721 / 4541,
  28996. bottom: 82 / 4803
  28997. }
  28998. },
  28999. back: {
  29000. height: math.unit(6, "feet"),
  29001. weight: math.unit(150, "lb"),
  29002. name: "Back",
  29003. image: {
  29004. source: "./media/characters/casselene-yaro/back.svg",
  29005. extra: 4569 / 4377,
  29006. bottom: 69 / 4638
  29007. }
  29008. },
  29009. frontDressed: {
  29010. height: math.unit(6, "feet"),
  29011. weight: math.unit(150, "lb"),
  29012. name: "Front-dressed",
  29013. image: {
  29014. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29015. extra: 4721 / 4541,
  29016. bottom: 82 / 4803
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Macro",
  29023. height: math.unit(190, "feet"),
  29024. default: true
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29030. {
  29031. front: {
  29032. height: math.unit(6, "feet"),
  29033. weight: math.unit(150, "lb"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/myra-rue-delore/front.svg",
  29037. extra: 1340 / 1308,
  29038. bottom: 67 / 1407
  29039. }
  29040. },
  29041. back: {
  29042. height: math.unit(6, "feet"),
  29043. weight: math.unit(150, "lb"),
  29044. name: "Back",
  29045. image: {
  29046. source: "./media/characters/myra-rue-delore/back.svg",
  29047. extra: 1341 / 1310,
  29048. bottom: 40 / 1381
  29049. }
  29050. },
  29051. frontDressed: {
  29052. height: math.unit(6, "feet"),
  29053. weight: math.unit(150, "lb"),
  29054. name: "Front (Dressed)",
  29055. image: {
  29056. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29057. extra: 1340 / 1308,
  29058. bottom: 67 / 1407
  29059. }
  29060. },
  29061. },
  29062. [
  29063. {
  29064. name: "Macro",
  29065. height: math.unit(150, "feet"),
  29066. default: true
  29067. },
  29068. ]
  29069. ))
  29070. characterMakers.push(() => makeCharacter(
  29071. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29072. {
  29073. front: {
  29074. height: math.unit(10, "feet"),
  29075. weight: math.unit(15015, "lb"),
  29076. name: "Front",
  29077. image: {
  29078. source: "./media/characters/fem!plat/front.svg",
  29079. extra: 2799 / 2604,
  29080. bottom: 149 / 2948
  29081. }
  29082. },
  29083. },
  29084. [
  29085. {
  29086. name: "Normal",
  29087. height: math.unit(10, "feet"),
  29088. default: true
  29089. },
  29090. {
  29091. name: "Macro",
  29092. height: math.unit(100, "feet")
  29093. },
  29094. {
  29095. name: "Megamacro",
  29096. height: math.unit(1000, "feet")
  29097. },
  29098. ]
  29099. ))
  29100. characterMakers.push(() => makeCharacter(
  29101. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29102. {
  29103. front: {
  29104. height: math.unit(15 + 5 / 12, "feet"),
  29105. weight: math.unit(4600, "lb"),
  29106. name: "Front",
  29107. image: {
  29108. source: "./media/characters/neapolitan-ananassa/front.svg",
  29109. extra: 2903 / 2736,
  29110. bottom: 0 / 2903
  29111. }
  29112. },
  29113. side: {
  29114. height: math.unit(15 + 5 / 12, "feet"),
  29115. weight: math.unit(4600, "lb"),
  29116. name: "Side",
  29117. image: {
  29118. source: "./media/characters/neapolitan-ananassa/side.svg",
  29119. extra: 2925 / 2719,
  29120. bottom: 0 / 2925
  29121. }
  29122. },
  29123. back: {
  29124. height: math.unit(15 + 5 / 12, "feet"),
  29125. weight: math.unit(4600, "lb"),
  29126. name: "Back",
  29127. image: {
  29128. source: "./media/characters/neapolitan-ananassa/back.svg",
  29129. extra: 2903 / 2736,
  29130. bottom: 0 / 2903
  29131. }
  29132. },
  29133. },
  29134. [
  29135. {
  29136. name: "Normal",
  29137. height: math.unit(15 + 5 / 12, "feet"),
  29138. default: true
  29139. },
  29140. {
  29141. name: "Post-Millenium",
  29142. height: math.unit(35 + 5 / 12, "feet")
  29143. },
  29144. {
  29145. name: "Post-Era",
  29146. height: math.unit(450 + 5 / 12, "feet")
  29147. },
  29148. ]
  29149. ))
  29150. characterMakers.push(() => makeCharacter(
  29151. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29152. {
  29153. front: {
  29154. height: math.unit(300, "meters"),
  29155. weight: math.unit(125000, "tonnes"),
  29156. name: "Front",
  29157. image: {
  29158. source: "./media/characters/pazuzu/front.svg",
  29159. extra: 877 / 794,
  29160. bottom: 47 / 924
  29161. }
  29162. },
  29163. },
  29164. [
  29165. {
  29166. name: "Macro",
  29167. height: math.unit(300, "meters"),
  29168. default: true
  29169. },
  29170. ]
  29171. ))
  29172. characterMakers.push(() => makeCharacter(
  29173. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29174. {
  29175. side: {
  29176. height: math.unit(10 + 7 / 12, "feet"),
  29177. weight: math.unit(2.5, "tons"),
  29178. name: "Side",
  29179. image: {
  29180. source: "./media/characters/aasha/side.svg",
  29181. extra: 1345 / 1245,
  29182. bottom: 111 / 1456
  29183. }
  29184. },
  29185. back: {
  29186. height: math.unit(10 + 7 / 12, "feet"),
  29187. weight: math.unit(2.5, "tons"),
  29188. name: "Back",
  29189. image: {
  29190. source: "./media/characters/aasha/back.svg",
  29191. extra: 1133 / 1057,
  29192. bottom: 257 / 1390
  29193. }
  29194. },
  29195. },
  29196. [
  29197. {
  29198. name: "Normal",
  29199. height: math.unit(10 + 7 / 12, "feet"),
  29200. default: true
  29201. },
  29202. ]
  29203. ))
  29204. characterMakers.push(() => makeCharacter(
  29205. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29206. {
  29207. front: {
  29208. height: math.unit(6 + 3 / 12, "feet"),
  29209. name: "Front",
  29210. image: {
  29211. source: "./media/characters/nevan/front.svg",
  29212. extra: 704 / 704,
  29213. bottom: 28 / 732
  29214. }
  29215. },
  29216. back: {
  29217. height: math.unit(6 + 3 / 12, "feet"),
  29218. name: "Back",
  29219. image: {
  29220. source: "./media/characters/nevan/back.svg",
  29221. extra: 714 / 714,
  29222. bottom: 21 / 735
  29223. }
  29224. },
  29225. frontFlaccid: {
  29226. height: math.unit(6 + 3 / 12, "feet"),
  29227. name: "Front (Flaccid)",
  29228. image: {
  29229. source: "./media/characters/nevan/front-flaccid.svg",
  29230. extra: 704 / 704,
  29231. bottom: 28 / 732
  29232. }
  29233. },
  29234. frontErect: {
  29235. height: math.unit(6 + 3 / 12, "feet"),
  29236. name: "Front (Erect)",
  29237. image: {
  29238. source: "./media/characters/nevan/front-erect.svg",
  29239. extra: 704 / 704,
  29240. bottom: 28 / 732
  29241. }
  29242. },
  29243. backFlaccid: {
  29244. height: math.unit(6 + 3 / 12, "feet"),
  29245. name: "Back (Flaccid)",
  29246. image: {
  29247. source: "./media/characters/nevan/back-flaccid.svg",
  29248. extra: 714 / 714,
  29249. bottom: 21 / 735
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(6 + 3 / 12, "feet"),
  29257. default: true
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(4, "feet"),
  29266. name: "Front",
  29267. image: {
  29268. source: "./media/characters/arhan/front.svg",
  29269. extra: 3368 / 3133,
  29270. bottom: 0 / 3368
  29271. }
  29272. },
  29273. side: {
  29274. height: math.unit(4, "feet"),
  29275. name: "Side",
  29276. image: {
  29277. source: "./media/characters/arhan/side.svg",
  29278. extra: 3347 / 3105,
  29279. bottom: 0 / 3347
  29280. }
  29281. },
  29282. tongue: {
  29283. height: math.unit(1.42, "feet"),
  29284. name: "Tongue",
  29285. image: {
  29286. source: "./media/characters/arhan/tongue.svg"
  29287. }
  29288. },
  29289. head: {
  29290. height: math.unit(0.85, "feet"),
  29291. name: "Head",
  29292. image: {
  29293. source: "./media/characters/arhan/head.svg"
  29294. }
  29295. },
  29296. },
  29297. [
  29298. {
  29299. name: "Normal",
  29300. height: math.unit(4, "feet"),
  29301. default: true
  29302. },
  29303. ]
  29304. ))
  29305. characterMakers.push(() => makeCharacter(
  29306. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29307. {
  29308. front: {
  29309. height: math.unit(5 + 7.5 / 12, "feet"),
  29310. weight: math.unit(120, "lb"),
  29311. name: "Front",
  29312. image: {
  29313. source: "./media/characters/digi-duncan/front.svg",
  29314. extra: 330 / 326,
  29315. bottom: 16 / 346
  29316. }
  29317. },
  29318. side: {
  29319. height: math.unit(5 + 7.5 / 12, "feet"),
  29320. weight: math.unit(120, "lb"),
  29321. name: "Side",
  29322. image: {
  29323. source: "./media/characters/digi-duncan/side.svg",
  29324. extra: 341 / 337,
  29325. bottom: 1 / 342
  29326. }
  29327. },
  29328. back: {
  29329. height: math.unit(5 + 7.5 / 12, "feet"),
  29330. weight: math.unit(120, "lb"),
  29331. name: "Back",
  29332. image: {
  29333. source: "./media/characters/digi-duncan/back.svg",
  29334. extra: 330 / 326,
  29335. bottom: 12 / 342
  29336. }
  29337. },
  29338. },
  29339. [
  29340. {
  29341. name: "Speck",
  29342. height: math.unit(0.25, "mm")
  29343. },
  29344. {
  29345. name: "Micro",
  29346. height: math.unit(5, "mm")
  29347. },
  29348. {
  29349. name: "Tiny",
  29350. height: math.unit(0.5, "inches"),
  29351. default: true
  29352. },
  29353. {
  29354. name: "Human",
  29355. height: math.unit(5 + 7.5 / 12, "feet")
  29356. },
  29357. {
  29358. name: "Minigiant",
  29359. height: math.unit(8 + 5.25, "feet")
  29360. },
  29361. {
  29362. name: "Giant",
  29363. height: math.unit(2000, "feet")
  29364. },
  29365. {
  29366. name: "Mega",
  29367. height: math.unit(371.1, "miles")
  29368. },
  29369. ]
  29370. ))
  29371. characterMakers.push(() => makeCharacter(
  29372. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29373. {
  29374. front: {
  29375. height: math.unit(2, "meters"),
  29376. weight: math.unit(350, "kg"),
  29377. name: "Front",
  29378. image: {
  29379. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29380. extra: 898 / 838,
  29381. bottom: 9 / 907
  29382. }
  29383. },
  29384. },
  29385. [
  29386. {
  29387. name: "Micro",
  29388. height: math.unit(8, "meters")
  29389. },
  29390. {
  29391. name: "Normal",
  29392. height: math.unit(50, "meters"),
  29393. default: true
  29394. },
  29395. {
  29396. name: "Macro",
  29397. height: math.unit(500, "meters")
  29398. },
  29399. ]
  29400. ))
  29401. characterMakers.push(() => makeCharacter(
  29402. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29403. {
  29404. front: {
  29405. height: math.unit(6 + 6 / 12, "feet"),
  29406. name: "Front",
  29407. image: {
  29408. source: "./media/characters/khardesh/front.svg",
  29409. extra: 888 / 797,
  29410. bottom: 25 / 913
  29411. }
  29412. },
  29413. },
  29414. [
  29415. {
  29416. name: "Normal",
  29417. height: math.unit(6 + 6 / 12, "feet"),
  29418. default: true
  29419. },
  29420. {
  29421. name: "Normal+",
  29422. height: math.unit(4, "meters")
  29423. },
  29424. {
  29425. name: "Macro",
  29426. height: math.unit(50, "meters")
  29427. },
  29428. {
  29429. name: "Macro+",
  29430. height: math.unit(100, "meters")
  29431. },
  29432. {
  29433. name: "Megamacro",
  29434. height: math.unit(20, "km")
  29435. },
  29436. ]
  29437. ))
  29438. characterMakers.push(() => makeCharacter(
  29439. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29440. {
  29441. front: {
  29442. height: math.unit(6, "feet"),
  29443. weight: math.unit(150, "lb"),
  29444. name: "Front",
  29445. image: {
  29446. source: "./media/characters/kosho/front.svg",
  29447. extra: 1847 / 1847,
  29448. bottom: 86 / 1933
  29449. }
  29450. },
  29451. },
  29452. [
  29453. {
  29454. name: "Second-stage micro",
  29455. height: math.unit(0.5, "inches")
  29456. },
  29457. {
  29458. name: "First-stage micro",
  29459. height: math.unit(6, "inches")
  29460. },
  29461. {
  29462. name: "Normal",
  29463. height: math.unit(6, "feet"),
  29464. default: true
  29465. },
  29466. {
  29467. name: "First-stage macro",
  29468. height: math.unit(72, "feet")
  29469. },
  29470. {
  29471. name: "Second-stage macro",
  29472. height: math.unit(864, "feet")
  29473. },
  29474. ]
  29475. ))
  29476. characterMakers.push(() => makeCharacter(
  29477. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29478. {
  29479. normal: {
  29480. height: math.unit(4 + 6 / 12, "feet"),
  29481. name: "Normal",
  29482. image: {
  29483. source: "./media/characters/hydra/normal.svg",
  29484. extra: 2833 / 2634,
  29485. bottom: 68 / 2901
  29486. }
  29487. },
  29488. smol: {
  29489. height: math.unit(0.705, "inches"),
  29490. name: "Smol",
  29491. image: {
  29492. source: "./media/characters/hydra/smol.svg",
  29493. extra: 2715 / 2540,
  29494. bottom: 0 / 2715
  29495. }
  29496. },
  29497. },
  29498. [
  29499. {
  29500. name: "Normal",
  29501. height: math.unit(4 + 6 / 12, "feet"),
  29502. default: true
  29503. }
  29504. ]
  29505. ))
  29506. characterMakers.push(() => makeCharacter(
  29507. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29508. {
  29509. front: {
  29510. height: math.unit(0.6, "cm"),
  29511. name: "Front",
  29512. image: {
  29513. source: "./media/characters/daz/front.svg",
  29514. extra: 1682 / 1164,
  29515. bottom: 42 / 1724
  29516. }
  29517. },
  29518. },
  29519. [
  29520. {
  29521. name: "Normal",
  29522. height: math.unit(0.6, "cm"),
  29523. default: true
  29524. },
  29525. ]
  29526. ))
  29527. characterMakers.push(() => makeCharacter(
  29528. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29529. {
  29530. front: {
  29531. height: math.unit(6, "feet"),
  29532. weight: math.unit(235, "lb"),
  29533. name: "Front",
  29534. image: {
  29535. source: "./media/characters/theo-pangolin/front.svg",
  29536. extra: 1996 / 1969,
  29537. bottom: 115 / 2111
  29538. }
  29539. },
  29540. back: {
  29541. height: math.unit(6, "feet"),
  29542. weight: math.unit(235, "lb"),
  29543. name: "Back",
  29544. image: {
  29545. source: "./media/characters/theo-pangolin/back.svg",
  29546. extra: 1979 / 1979,
  29547. bottom: 40 / 2019
  29548. }
  29549. },
  29550. feral: {
  29551. height: math.unit(2, "feet"),
  29552. weight: math.unit(30, "lb"),
  29553. name: "Feral",
  29554. image: {
  29555. source: "./media/characters/theo-pangolin/feral.svg",
  29556. extra: 803 / 791,
  29557. bottom: 181 / 984
  29558. }
  29559. },
  29560. footFive: {
  29561. height: math.unit(1.43, "feet"),
  29562. name: "Foot (Five Toes)",
  29563. image: {
  29564. source: "./media/characters/theo-pangolin/foot-five.svg"
  29565. }
  29566. },
  29567. footFour: {
  29568. height: math.unit(1.43, "feet"),
  29569. name: "Foot (Four Toes)",
  29570. image: {
  29571. source: "./media/characters/theo-pangolin/foot-four.svg"
  29572. }
  29573. },
  29574. handFour: {
  29575. height: math.unit(0.81, "feet"),
  29576. name: "Hand (Four Fingers)",
  29577. image: {
  29578. source: "./media/characters/theo-pangolin/hand-four.svg"
  29579. }
  29580. },
  29581. handThree: {
  29582. height: math.unit(0.81, "feet"),
  29583. name: "Hand (Three Fingers)",
  29584. image: {
  29585. source: "./media/characters/theo-pangolin/hand-three.svg"
  29586. }
  29587. },
  29588. headFront: {
  29589. height: math.unit(1.37, "feet"),
  29590. name: "Head (Front)",
  29591. image: {
  29592. source: "./media/characters/theo-pangolin/head-front.svg"
  29593. }
  29594. },
  29595. headSide: {
  29596. height: math.unit(1.43, "feet"),
  29597. name: "Head (Side)",
  29598. image: {
  29599. source: "./media/characters/theo-pangolin/head-side.svg"
  29600. }
  29601. },
  29602. tongue: {
  29603. height: math.unit(2.29, "feet"),
  29604. name: "Tongue",
  29605. image: {
  29606. source: "./media/characters/theo-pangolin/tongue.svg"
  29607. }
  29608. },
  29609. },
  29610. [
  29611. {
  29612. name: "Normal",
  29613. height: math.unit(6, "feet")
  29614. },
  29615. {
  29616. name: "Macro",
  29617. height: math.unit(400, "feet"),
  29618. default: true
  29619. },
  29620. ]
  29621. ))
  29622. characterMakers.push(() => makeCharacter(
  29623. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29624. {
  29625. front: {
  29626. height: math.unit(6, "inches"),
  29627. weight: math.unit(0.036, "kg"),
  29628. name: "Front",
  29629. image: {
  29630. source: "./media/characters/renée/front.svg",
  29631. extra: 900 / 886,
  29632. bottom: 8 / 908
  29633. }
  29634. },
  29635. },
  29636. [
  29637. {
  29638. name: "Nano",
  29639. height: math.unit(1, "nm")
  29640. },
  29641. {
  29642. name: "Micro",
  29643. height: math.unit(1, "mm")
  29644. },
  29645. {
  29646. name: "Normal",
  29647. height: math.unit(6, "inches")
  29648. },
  29649. {
  29650. name: "Macro",
  29651. height: math.unit(2000, "feet"),
  29652. default: true
  29653. },
  29654. {
  29655. name: "Megamacro",
  29656. height: math.unit(2, "km")
  29657. },
  29658. {
  29659. name: "Gigamacro",
  29660. height: math.unit(2000, "km")
  29661. },
  29662. {
  29663. name: "Teramacro",
  29664. height: math.unit(250000, "km")
  29665. },
  29666. ]
  29667. ))
  29668. characterMakers.push(() => makeCharacter(
  29669. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29670. {
  29671. front: {
  29672. height: math.unit(4, "meters"),
  29673. weight: math.unit(150, "kg"),
  29674. name: "Front",
  29675. image: {
  29676. source: "./media/characters/caledvwlch/front.svg",
  29677. extra: 1760 / 1551,
  29678. bottom: 28 / 1788
  29679. }
  29680. },
  29681. side: {
  29682. height: math.unit(4, "meters"),
  29683. weight: math.unit(150, "kg"),
  29684. name: "Side",
  29685. image: {
  29686. source: "./media/characters/caledvwlch/side.svg",
  29687. extra: 1605 / 1536,
  29688. bottom: 31 / 1636
  29689. }
  29690. },
  29691. back: {
  29692. height: math.unit(4, "meters"),
  29693. weight: math.unit(150, "kg"),
  29694. name: "Back",
  29695. image: {
  29696. source: "./media/characters/caledvwlch/back.svg",
  29697. extra: 1635 / 1565,
  29698. bottom: 27 / 1662
  29699. }
  29700. },
  29701. },
  29702. [
  29703. {
  29704. name: "\"Incognito\"",
  29705. height: math.unit(4, "meters")
  29706. },
  29707. {
  29708. name: "Small rampage",
  29709. height: math.unit(600, "meters")
  29710. },
  29711. {
  29712. name: "Mega",
  29713. height: math.unit(30, "km")
  29714. },
  29715. {
  29716. name: "Home-size",
  29717. height: math.unit(50, "km"),
  29718. default: true
  29719. },
  29720. {
  29721. name: "Giga",
  29722. height: math.unit(300, "km")
  29723. },
  29724. {
  29725. name: "Lounging",
  29726. height: math.unit(11000, "km")
  29727. },
  29728. {
  29729. name: "Planet snacking",
  29730. height: math.unit(2000000, "km")
  29731. },
  29732. ]
  29733. ))
  29734. characterMakers.push(() => makeCharacter(
  29735. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29736. {
  29737. front: {
  29738. height: math.unit(6, "feet"),
  29739. weight: math.unit(215, "lb"),
  29740. name: "Front",
  29741. image: {
  29742. source: "./media/characters/sapphire-svell/front.svg",
  29743. extra: 495 / 455,
  29744. bottom: 20 / 515
  29745. }
  29746. },
  29747. back: {
  29748. height: math.unit(6, "feet"),
  29749. weight: math.unit(216, "lb"),
  29750. name: "Back",
  29751. image: {
  29752. source: "./media/characters/sapphire-svell/back.svg",
  29753. extra: 497 / 477,
  29754. bottom: 7 / 504
  29755. }
  29756. },
  29757. maw: {
  29758. height: math.unit(1.57, "feet"),
  29759. name: "Maw",
  29760. image: {
  29761. source: "./media/characters/sapphire-svell/maw.svg"
  29762. }
  29763. },
  29764. foot: {
  29765. height: math.unit(1.07, "feet"),
  29766. name: "Foot",
  29767. image: {
  29768. source: "./media/characters/sapphire-svell/foot.svg"
  29769. }
  29770. },
  29771. toering: {
  29772. height: math.unit(1.7, "inch"),
  29773. name: "Toering",
  29774. image: {
  29775. source: "./media/characters/sapphire-svell/toering.svg"
  29776. }
  29777. },
  29778. },
  29779. [
  29780. {
  29781. name: "Normal",
  29782. height: math.unit(300, "feet"),
  29783. default: true
  29784. },
  29785. {
  29786. name: "Augmented",
  29787. height: math.unit(1250, "feet")
  29788. },
  29789. {
  29790. name: "Unleashed",
  29791. height: math.unit(3000, "feet")
  29792. },
  29793. ]
  29794. ))
  29795. characterMakers.push(() => makeCharacter(
  29796. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29797. {
  29798. side: {
  29799. height: math.unit(2 + 3 / 12, "feet"),
  29800. weight: math.unit(110, "lb"),
  29801. name: "Side",
  29802. image: {
  29803. source: "./media/characters/glitch-flux/side.svg",
  29804. extra: 997 / 805,
  29805. bottom: 20 / 1017
  29806. }
  29807. },
  29808. },
  29809. [
  29810. {
  29811. name: "Normal",
  29812. height: math.unit(2 + 3 / 12, "feet"),
  29813. default: true
  29814. },
  29815. ]
  29816. ))
  29817. characterMakers.push(() => makeCharacter(
  29818. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29819. {
  29820. front: {
  29821. height: math.unit(4, "meters"),
  29822. name: "Front",
  29823. image: {
  29824. source: "./media/characters/mid/front.svg",
  29825. extra: 507 / 476,
  29826. bottom: 17 / 524
  29827. }
  29828. },
  29829. back: {
  29830. height: math.unit(4, "meters"),
  29831. name: "Back",
  29832. image: {
  29833. source: "./media/characters/mid/back.svg",
  29834. extra: 519 / 487,
  29835. bottom: 7 / 526
  29836. }
  29837. },
  29838. stuck: {
  29839. height: math.unit(2.2, "meters"),
  29840. name: "Stuck",
  29841. image: {
  29842. source: "./media/characters/mid/stuck.svg",
  29843. extra: 1951 / 1869,
  29844. bottom: 88 / 2039
  29845. }
  29846. }
  29847. },
  29848. [
  29849. {
  29850. name: "Normal",
  29851. height: math.unit(4, "meters"),
  29852. default: true
  29853. },
  29854. {
  29855. name: "Big",
  29856. height: math.unit(10, "meters")
  29857. },
  29858. {
  29859. name: "Macro",
  29860. height: math.unit(800, "meters")
  29861. },
  29862. {
  29863. name: "Megamacro",
  29864. height: math.unit(100, "km")
  29865. },
  29866. {
  29867. name: "Overgrown",
  29868. height: math.unit(1, "parsec")
  29869. },
  29870. ]
  29871. ))
  29872. characterMakers.push(() => makeCharacter(
  29873. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29874. {
  29875. front: {
  29876. height: math.unit(2.5, "meters"),
  29877. weight: math.unit(225, "kg"),
  29878. name: "Front",
  29879. image: {
  29880. source: "./media/characters/iris/front.svg",
  29881. extra: 3348 / 3251,
  29882. bottom: 205 / 3553
  29883. }
  29884. },
  29885. maw: {
  29886. height: math.unit(0.56, "meter"),
  29887. name: "Maw",
  29888. image: {
  29889. source: "./media/characters/iris/maw.svg"
  29890. }
  29891. },
  29892. },
  29893. [
  29894. {
  29895. name: "Mewter cat",
  29896. height: math.unit(1.2, "meters")
  29897. },
  29898. {
  29899. name: "Minimacro",
  29900. height: math.unit(2.5, "meters"),
  29901. default: true
  29902. },
  29903. {
  29904. name: "Macro",
  29905. height: math.unit(180, "meters")
  29906. },
  29907. {
  29908. name: "Megamacro",
  29909. height: math.unit(2746, "meters")
  29910. },
  29911. ]
  29912. ))
  29913. characterMakers.push(() => makeCharacter(
  29914. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29915. {
  29916. front: {
  29917. height: math.unit(6, "feet"),
  29918. weight: math.unit(135, "lb"),
  29919. name: "Front",
  29920. image: {
  29921. source: "./media/characters/axel/front.svg",
  29922. extra: 908 / 908,
  29923. bottom: 58 / 966
  29924. }
  29925. },
  29926. side: {
  29927. height: math.unit(6, "feet"),
  29928. weight: math.unit(135, "lb"),
  29929. name: "Side",
  29930. image: {
  29931. source: "./media/characters/axel/side.svg",
  29932. extra: 958 / 958,
  29933. bottom: 11 / 969
  29934. }
  29935. },
  29936. back: {
  29937. height: math.unit(6, "feet"),
  29938. weight: math.unit(135, "lb"),
  29939. name: "Back",
  29940. image: {
  29941. source: "./media/characters/axel/back.svg",
  29942. extra: 887 / 887,
  29943. bottom: 34 / 921
  29944. }
  29945. },
  29946. head: {
  29947. height: math.unit(1.07, "feet"),
  29948. name: "Head",
  29949. image: {
  29950. source: "./media/characters/axel/head.svg"
  29951. }
  29952. },
  29953. beak: {
  29954. height: math.unit(1.4, "feet"),
  29955. name: "Beak",
  29956. image: {
  29957. source: "./media/characters/axel/beak.svg"
  29958. }
  29959. },
  29960. beakSide: {
  29961. height: math.unit(1.4, "feet"),
  29962. name: "Beak Side",
  29963. image: {
  29964. source: "./media/characters/axel/beak-side.svg"
  29965. }
  29966. },
  29967. sheath: {
  29968. height: math.unit(0.5, "feet"),
  29969. name: "Sheath",
  29970. image: {
  29971. source: "./media/characters/axel/sheath.svg"
  29972. }
  29973. },
  29974. dick: {
  29975. height: math.unit(0.98, "feet"),
  29976. name: "Dick",
  29977. image: {
  29978. source: "./media/characters/axel/dick.svg"
  29979. }
  29980. },
  29981. },
  29982. [
  29983. {
  29984. name: "Macro",
  29985. height: math.unit(68, "meters"),
  29986. default: true
  29987. },
  29988. ]
  29989. ))
  29990. characterMakers.push(() => makeCharacter(
  29991. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29992. {
  29993. front: {
  29994. height: math.unit(3.5, "meters"),
  29995. weight: math.unit(1200, "kg"),
  29996. name: "Front",
  29997. image: {
  29998. source: "./media/characters/joanna/front.svg",
  29999. extra: 1596 / 1488,
  30000. bottom: 29 / 1625
  30001. }
  30002. },
  30003. back: {
  30004. height: math.unit(3.5, "meters"),
  30005. weight: math.unit(1200, "kg"),
  30006. name: "Back",
  30007. image: {
  30008. source: "./media/characters/joanna/back.svg",
  30009. extra: 1594 / 1495,
  30010. bottom: 26 / 1620
  30011. }
  30012. },
  30013. frontShorts: {
  30014. height: math.unit(3.5, "meters"),
  30015. weight: math.unit(1200, "kg"),
  30016. name: "Front (Shorts)",
  30017. image: {
  30018. source: "./media/characters/joanna/front-shorts.svg",
  30019. extra: 1596 / 1488,
  30020. bottom: 29 / 1625
  30021. }
  30022. },
  30023. frontBiker: {
  30024. height: math.unit(3.5, "meters"),
  30025. weight: math.unit(1200, "kg"),
  30026. name: "Front (Biker)",
  30027. image: {
  30028. source: "./media/characters/joanna/front-biker.svg",
  30029. extra: 1596 / 1488,
  30030. bottom: 29 / 1625
  30031. }
  30032. },
  30033. backBiker: {
  30034. height: math.unit(3.5, "meters"),
  30035. weight: math.unit(1200, "kg"),
  30036. name: "Back (Biker)",
  30037. image: {
  30038. source: "./media/characters/joanna/back-biker.svg",
  30039. extra: 1594 / 1495,
  30040. bottom: 88 / 1682
  30041. }
  30042. },
  30043. bikeLeft: {
  30044. height: math.unit(2.4, "meters"),
  30045. weight: math.unit(1600, "kg"),
  30046. name: "Bike (Left)",
  30047. image: {
  30048. source: "./media/characters/joanna/bike-left.svg",
  30049. extra: 720 / 720,
  30050. bottom: 8 / 728
  30051. }
  30052. },
  30053. bikeRight: {
  30054. height: math.unit(2.4, "meters"),
  30055. weight: math.unit(1600, "kg"),
  30056. name: "Bike (Right)",
  30057. image: {
  30058. source: "./media/characters/joanna/bike-right.svg",
  30059. extra: 720 / 720,
  30060. bottom: 8 / 728
  30061. }
  30062. },
  30063. },
  30064. [
  30065. {
  30066. name: "Incognito",
  30067. height: math.unit(3.5, "meters")
  30068. },
  30069. {
  30070. name: "Casual Big",
  30071. height: math.unit(200, "meters")
  30072. },
  30073. {
  30074. name: "Macro",
  30075. height: math.unit(600, "meters")
  30076. },
  30077. {
  30078. name: "Original",
  30079. height: math.unit(20, "km"),
  30080. default: true
  30081. },
  30082. {
  30083. name: "Giga",
  30084. height: math.unit(400, "km")
  30085. },
  30086. {
  30087. name: "Lounging",
  30088. height: math.unit(1500, "km")
  30089. },
  30090. {
  30091. name: "Planetary",
  30092. height: math.unit(200000, "km")
  30093. },
  30094. ]
  30095. ))
  30096. characterMakers.push(() => makeCharacter(
  30097. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30098. {
  30099. front: {
  30100. height: math.unit(6, "feet"),
  30101. weight: math.unit(150, "lb"),
  30102. name: "Front",
  30103. image: {
  30104. source: "./media/characters/hugo-sigil/front.svg",
  30105. extra: 522 / 500,
  30106. bottom: 2 / 524
  30107. }
  30108. },
  30109. back: {
  30110. height: math.unit(6, "feet"),
  30111. weight: math.unit(150, "lb"),
  30112. name: "Back",
  30113. image: {
  30114. source: "./media/characters/hugo-sigil/back.svg",
  30115. extra: 519 / 495,
  30116. bottom: 5 / 524
  30117. }
  30118. },
  30119. maw: {
  30120. height: math.unit(1.4, "feet"),
  30121. weight: math.unit(150, "lb"),
  30122. name: "Maw",
  30123. image: {
  30124. source: "./media/characters/hugo-sigil/maw.svg"
  30125. }
  30126. },
  30127. feet: {
  30128. height: math.unit(1.56, "feet"),
  30129. weight: math.unit(150, "lb"),
  30130. name: "Feet",
  30131. image: {
  30132. source: "./media/characters/hugo-sigil/feet.svg",
  30133. extra: 177 / 177,
  30134. bottom: 12 / 189
  30135. }
  30136. },
  30137. },
  30138. [
  30139. {
  30140. name: "Normal",
  30141. height: math.unit(6, "feet")
  30142. },
  30143. {
  30144. name: "Macro",
  30145. height: math.unit(200, "feet"),
  30146. default: true
  30147. },
  30148. ]
  30149. ))
  30150. characterMakers.push(() => makeCharacter(
  30151. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30152. {
  30153. front: {
  30154. height: math.unit(6, "feet"),
  30155. weight: math.unit(150, "lb"),
  30156. name: "Front",
  30157. image: {
  30158. source: "./media/characters/peri/front.svg",
  30159. extra: 2354 / 2233,
  30160. bottom: 49 / 2403
  30161. }
  30162. },
  30163. },
  30164. [
  30165. {
  30166. name: "Really Small",
  30167. height: math.unit(1, "nm")
  30168. },
  30169. {
  30170. name: "Micro",
  30171. height: math.unit(4, "inches")
  30172. },
  30173. {
  30174. name: "Normal",
  30175. height: math.unit(7, "inches"),
  30176. default: true
  30177. },
  30178. {
  30179. name: "Macro",
  30180. height: math.unit(400, "feet")
  30181. },
  30182. {
  30183. name: "Megamacro",
  30184. height: math.unit(100, "miles")
  30185. },
  30186. ]
  30187. ))
  30188. characterMakers.push(() => makeCharacter(
  30189. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30190. {
  30191. frontSlim: {
  30192. height: math.unit(7, "feet"),
  30193. name: "Front (Slim)",
  30194. image: {
  30195. source: "./media/characters/issilora/front-slim.svg",
  30196. extra: 529 / 449,
  30197. bottom: 53 / 582
  30198. }
  30199. },
  30200. sideSlim: {
  30201. height: math.unit(7, "feet"),
  30202. name: "Side (Slim)",
  30203. image: {
  30204. source: "./media/characters/issilora/side-slim.svg",
  30205. extra: 570 / 480,
  30206. bottom: 30 / 600
  30207. }
  30208. },
  30209. backSlim: {
  30210. height: math.unit(7, "feet"),
  30211. name: "Back (Slim)",
  30212. image: {
  30213. source: "./media/characters/issilora/back-slim.svg",
  30214. extra: 537 / 455,
  30215. bottom: 46 / 583
  30216. }
  30217. },
  30218. frontBuff: {
  30219. height: math.unit(7, "feet"),
  30220. name: "Front (Buff)",
  30221. image: {
  30222. source: "./media/characters/issilora/front-buff.svg",
  30223. extra: 2310 / 2035,
  30224. bottom: 335 / 2645
  30225. }
  30226. },
  30227. head: {
  30228. height: math.unit(1.94, "feet"),
  30229. name: "Head",
  30230. image: {
  30231. source: "./media/characters/issilora/head.svg"
  30232. }
  30233. },
  30234. },
  30235. [
  30236. {
  30237. name: "Minimum",
  30238. height: math.unit(7, "feet")
  30239. },
  30240. {
  30241. name: "Comfortable",
  30242. height: math.unit(17, "feet")
  30243. },
  30244. {
  30245. name: "Fun Size",
  30246. height: math.unit(47, "feet")
  30247. },
  30248. {
  30249. name: "Natural Macro",
  30250. height: math.unit(137, "feet"),
  30251. default: true
  30252. },
  30253. {
  30254. name: "Maximum Kaiju",
  30255. height: math.unit(397, "feet")
  30256. },
  30257. ]
  30258. ))
  30259. characterMakers.push(() => makeCharacter(
  30260. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30261. {
  30262. front: {
  30263. height: math.unit(50 + 9/12, "feet"),
  30264. weight: math.unit(32.8, "tons"),
  30265. name: "Front",
  30266. image: {
  30267. source: "./media/characters/irb'iiritaahn/front.svg",
  30268. extra: 1878/1826,
  30269. bottom: 326/2204
  30270. }
  30271. },
  30272. back: {
  30273. height: math.unit(50 + 9/12, "feet"),
  30274. weight: math.unit(32.8, "tons"),
  30275. name: "Back",
  30276. image: {
  30277. source: "./media/characters/irb'iiritaahn/back.svg",
  30278. extra: 2052/2018,
  30279. bottom: 152/2204
  30280. }
  30281. },
  30282. head: {
  30283. height: math.unit(12.86, "feet"),
  30284. name: "Head",
  30285. image: {
  30286. source: "./media/characters/irb'iiritaahn/head.svg"
  30287. }
  30288. },
  30289. maw: {
  30290. height: math.unit(9.66, "feet"),
  30291. name: "Maw",
  30292. image: {
  30293. source: "./media/characters/irb'iiritaahn/maw.svg"
  30294. }
  30295. },
  30296. frontDick: {
  30297. height: math.unit(8.78461, "feet"),
  30298. name: "Front Dick",
  30299. image: {
  30300. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30301. }
  30302. },
  30303. rearDick: {
  30304. height: math.unit(8.78461, "feet"),
  30305. name: "Rear Dick",
  30306. image: {
  30307. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30308. }
  30309. },
  30310. rearDickUnfolded: {
  30311. height: math.unit(8.78, "feet"),
  30312. name: "Rear Dick (Unfolded)",
  30313. image: {
  30314. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30315. }
  30316. },
  30317. wings: {
  30318. height: math.unit(43, "feet"),
  30319. name: "Wings",
  30320. image: {
  30321. source: "./media/characters/irb'iiritaahn/wings.svg"
  30322. }
  30323. },
  30324. },
  30325. [
  30326. {
  30327. name: "Macro",
  30328. height: math.unit(50 + 9/12, "feet"),
  30329. default: true
  30330. },
  30331. ]
  30332. ))
  30333. characterMakers.push(() => makeCharacter(
  30334. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30335. {
  30336. front: {
  30337. height: math.unit(205, "cm"),
  30338. weight: math.unit(102, "kg"),
  30339. name: "Front",
  30340. image: {
  30341. source: "./media/characters/irbisgreif/front.svg",
  30342. extra: 785/706,
  30343. bottom: 13/798
  30344. }
  30345. },
  30346. back: {
  30347. height: math.unit(205, "cm"),
  30348. weight: math.unit(102, "kg"),
  30349. name: "Back",
  30350. image: {
  30351. source: "./media/characters/irbisgreif/back.svg",
  30352. extra: 713/701,
  30353. bottom: 26/739
  30354. }
  30355. },
  30356. frontDressed: {
  30357. height: math.unit(216, "cm"),
  30358. weight: math.unit(102, "kg"),
  30359. name: "Front-dressed",
  30360. image: {
  30361. source: "./media/characters/irbisgreif/front-dressed.svg",
  30362. extra: 902/776,
  30363. bottom: 14/916
  30364. }
  30365. },
  30366. sideDressed: {
  30367. height: math.unit(195, "cm"),
  30368. weight: math.unit(102, "kg"),
  30369. name: "Side-dressed",
  30370. image: {
  30371. source: "./media/characters/irbisgreif/side-dressed.svg",
  30372. extra: 788/688,
  30373. bottom: 21/809
  30374. }
  30375. },
  30376. backDressed: {
  30377. height: math.unit(216, "cm"),
  30378. weight: math.unit(102, "kg"),
  30379. name: "Back-dressed",
  30380. image: {
  30381. source: "./media/characters/irbisgreif/back-dressed.svg",
  30382. extra: 901/783,
  30383. bottom: 10/911
  30384. }
  30385. },
  30386. dick: {
  30387. height: math.unit(0.49, "feet"),
  30388. name: "Dick",
  30389. image: {
  30390. source: "./media/characters/irbisgreif/dick.svg"
  30391. }
  30392. },
  30393. wingTop: {
  30394. height: math.unit(1.93 , "feet"),
  30395. name: "Wing-top",
  30396. image: {
  30397. source: "./media/characters/irbisgreif/wing-top.svg"
  30398. }
  30399. },
  30400. wingBottom: {
  30401. height: math.unit(1.93 , "feet"),
  30402. name: "Wing-bottom",
  30403. image: {
  30404. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Normal",
  30411. height: math.unit(216, "cm"),
  30412. default: true
  30413. },
  30414. ]
  30415. ))
  30416. characterMakers.push(() => makeCharacter(
  30417. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30418. {
  30419. front: {
  30420. height: math.unit(6, "feet"),
  30421. weight: math.unit(150, "lb"),
  30422. name: "Front",
  30423. image: {
  30424. source: "./media/characters/pride/front.svg",
  30425. extra: 1299/1230,
  30426. bottom: 18/1317
  30427. }
  30428. },
  30429. },
  30430. [
  30431. {
  30432. name: "Normal",
  30433. height: math.unit(7, "feet")
  30434. },
  30435. {
  30436. name: "Mini-macro",
  30437. height: math.unit(11, "feet")
  30438. },
  30439. {
  30440. name: "Macro",
  30441. height: math.unit(15, "meters"),
  30442. default: true
  30443. },
  30444. {
  30445. name: "Macro+",
  30446. height: math.unit(40, "meters")
  30447. },
  30448. ]
  30449. ))
  30450. characterMakers.push(() => makeCharacter(
  30451. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30452. {
  30453. front: {
  30454. height: math.unit(4 + 2 / 12, "feet"),
  30455. weight: math.unit(95, "lb"),
  30456. name: "Front",
  30457. image: {
  30458. source: "./media/characters/vaelophis-nyx/front.svg",
  30459. extra: 2532/2330,
  30460. bottom: 0/2532
  30461. }
  30462. },
  30463. back: {
  30464. height: math.unit(4 + 2 / 12, "feet"),
  30465. weight: math.unit(95, "lb"),
  30466. name: "Back",
  30467. image: {
  30468. source: "./media/characters/vaelophis-nyx/back.svg",
  30469. extra: 2484/2361,
  30470. bottom: 0/2484
  30471. }
  30472. },
  30473. feralSide: {
  30474. height: math.unit(2 + 1/12, "feet"),
  30475. weight: math.unit(20, "lb"),
  30476. name: "Feral (Side)",
  30477. image: {
  30478. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30479. extra: 1721/1581,
  30480. bottom: 70/1791
  30481. }
  30482. },
  30483. feralLazing: {
  30484. height: math.unit(1.08, "feet"),
  30485. weight: math.unit(20, "lb"),
  30486. name: "Feral (Lazing)",
  30487. image: {
  30488. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30489. extra: 822/822,
  30490. bottom: 248/1070
  30491. }
  30492. },
  30493. ear: {
  30494. height: math.unit(0.416, "feet"),
  30495. name: "Ear",
  30496. image: {
  30497. source: "./media/characters/vaelophis-nyx/ear.svg"
  30498. }
  30499. },
  30500. eye: {
  30501. height: math.unit(0.0748, "feet"),
  30502. name: "Eye",
  30503. image: {
  30504. source: "./media/characters/vaelophis-nyx/eye.svg"
  30505. }
  30506. },
  30507. mouth: {
  30508. height: math.unit(0.378, "feet"),
  30509. name: "Mouth",
  30510. image: {
  30511. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30512. }
  30513. },
  30514. spade: {
  30515. height: math.unit(0.55, "feet"),
  30516. name: "Spade",
  30517. image: {
  30518. source: "./media/characters/vaelophis-nyx/spade.svg"
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(4 + 2/12, "feet"),
  30526. default: true
  30527. },
  30528. ]
  30529. ))
  30530. characterMakers.push(() => makeCharacter(
  30531. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30532. {
  30533. front: {
  30534. height: math.unit(7, "feet"),
  30535. weight: math.unit(231, "lb"),
  30536. name: "Front",
  30537. image: {
  30538. source: "./media/characters/flux/front.svg",
  30539. extra: 919/871,
  30540. bottom: 0/919
  30541. }
  30542. },
  30543. back: {
  30544. height: math.unit(7, "feet"),
  30545. weight: math.unit(231, "lb"),
  30546. name: "Back",
  30547. image: {
  30548. source: "./media/characters/flux/back.svg",
  30549. extra: 1040/992,
  30550. bottom: 0/1040
  30551. }
  30552. },
  30553. frontDressed: {
  30554. height: math.unit(7, "feet"),
  30555. weight: math.unit(231, "lb"),
  30556. name: "Front (Dressed)",
  30557. image: {
  30558. source: "./media/characters/flux/front-dressed.svg",
  30559. extra: 919/871,
  30560. bottom: 0/919
  30561. }
  30562. },
  30563. feralSide: {
  30564. height: math.unit(5, "feet"),
  30565. weight: math.unit(150, "lb"),
  30566. name: "Feral (Side)",
  30567. image: {
  30568. source: "./media/characters/flux/feral-side.svg",
  30569. extra: 598/528,
  30570. bottom: 28/626
  30571. }
  30572. },
  30573. head: {
  30574. height: math.unit(1.585, "feet"),
  30575. name: "Head",
  30576. image: {
  30577. source: "./media/characters/flux/head.svg"
  30578. }
  30579. },
  30580. headSide: {
  30581. height: math.unit(1.74, "feet"),
  30582. name: "Head (Side)",
  30583. image: {
  30584. source: "./media/characters/flux/head-side.svg"
  30585. }
  30586. },
  30587. headSideFire: {
  30588. height: math.unit(1.76, "feet"),
  30589. name: "Head (Side, Fire)",
  30590. image: {
  30591. source: "./media/characters/flux/head-side-fire.svg"
  30592. }
  30593. },
  30594. },
  30595. [
  30596. {
  30597. name: "Normal",
  30598. height: math.unit(7, "feet"),
  30599. default: true
  30600. },
  30601. ]
  30602. ))
  30603. characterMakers.push(() => makeCharacter(
  30604. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30605. {
  30606. front: {
  30607. height: math.unit(9, "feet"),
  30608. weight: math.unit(1012, "lb"),
  30609. name: "Front",
  30610. image: {
  30611. source: "./media/characters/ulfra-lupae/front.svg",
  30612. extra: 1083/1011,
  30613. bottom: 67/1150
  30614. }
  30615. },
  30616. },
  30617. [
  30618. {
  30619. name: "Micro",
  30620. height: math.unit(6, "inches")
  30621. },
  30622. {
  30623. name: "Socializing",
  30624. height: math.unit(6 + 5/12, "feet")
  30625. },
  30626. {
  30627. name: "Normal",
  30628. height: math.unit(9, "feet"),
  30629. default: true
  30630. },
  30631. {
  30632. name: "Macro",
  30633. height: math.unit(150, "feet")
  30634. },
  30635. ]
  30636. ))
  30637. characterMakers.push(() => makeCharacter(
  30638. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30639. {
  30640. front: {
  30641. height: math.unit(5 + 2/12, "feet"),
  30642. weight: math.unit(120, "lb"),
  30643. name: "Front",
  30644. image: {
  30645. source: "./media/characters/timber/front.svg",
  30646. extra: 2814/2705,
  30647. bottom: 181/2995
  30648. }
  30649. },
  30650. },
  30651. [
  30652. {
  30653. name: "Normal",
  30654. height: math.unit(5 + 2/12, "feet"),
  30655. default: true
  30656. },
  30657. ]
  30658. ))
  30659. characterMakers.push(() => makeCharacter(
  30660. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30661. {
  30662. front: {
  30663. height: math.unit(5 + 7/12, "feet"),
  30664. weight: math.unit(220, "lb"),
  30665. name: "Front",
  30666. image: {
  30667. source: "./media/characters/nicki/front.svg",
  30668. extra: 453/419,
  30669. bottom: 7/460
  30670. }
  30671. },
  30672. frontAlt: {
  30673. height: math.unit(5 + 7/12, "feet"),
  30674. weight: math.unit(220, "lb"),
  30675. name: "Front-alt",
  30676. image: {
  30677. source: "./media/characters/nicki/front-alt.svg",
  30678. extra: 435/411,
  30679. bottom: 12/447
  30680. }
  30681. },
  30682. back: {
  30683. height: math.unit(5 + 7/12, "feet"),
  30684. weight: math.unit(220, "lb"),
  30685. name: "Back",
  30686. image: {
  30687. source: "./media/characters/nicki/back.svg",
  30688. extra: 440/413,
  30689. bottom: 19/459
  30690. }
  30691. },
  30692. taur: {
  30693. height: math.unit(7 + 6/12, "feet"),
  30694. weight: math.unit(700, "lb"),
  30695. name: "Taur",
  30696. image: {
  30697. source: "./media/characters/nicki/taur.svg",
  30698. extra: 975/773,
  30699. bottom: 0/975
  30700. }
  30701. },
  30702. frontNsfw: {
  30703. height: math.unit(5 + 7/12, "feet"),
  30704. weight: math.unit(220, "lb"),
  30705. name: "Front (NSFW)",
  30706. image: {
  30707. source: "./media/characters/nicki/front-nsfw.svg",
  30708. extra: 453/419,
  30709. bottom: 7/460
  30710. }
  30711. },
  30712. frontNsfwAlt: {
  30713. height: math.unit(5 + 7/12, "feet"),
  30714. weight: math.unit(220, "lb"),
  30715. name: "Front (Alt, NSFW)",
  30716. image: {
  30717. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30718. extra: 435/411,
  30719. bottom: 12/447
  30720. }
  30721. },
  30722. backNsfw: {
  30723. height: math.unit(5 + 7/12, "feet"),
  30724. weight: math.unit(220, "lb"),
  30725. name: "Back (NSFW)",
  30726. image: {
  30727. source: "./media/characters/nicki/back-nsfw.svg",
  30728. extra: 440/413,
  30729. bottom: 19/459
  30730. }
  30731. },
  30732. head: {
  30733. height: math.unit(2.1, "feet"),
  30734. name: "Head",
  30735. image: {
  30736. source: "./media/characters/nicki/head.svg"
  30737. }
  30738. },
  30739. paw: {
  30740. height: math.unit(1.88, "feet"),
  30741. name: "Paw",
  30742. image: {
  30743. source: "./media/characters/nicki/paw.svg"
  30744. }
  30745. },
  30746. },
  30747. [
  30748. {
  30749. name: "Normal",
  30750. height: math.unit(5 + 7/12, "feet"),
  30751. default: true
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30757. {
  30758. front: {
  30759. height: math.unit(7 + 10/12, "feet"),
  30760. weight: math.unit(3.5, "tons"),
  30761. name: "Front",
  30762. image: {
  30763. source: "./media/characters/lee/front.svg",
  30764. extra: 1773/1615,
  30765. bottom: 86/1859
  30766. }
  30767. },
  30768. hand: {
  30769. height: math.unit(1.78, "feet"),
  30770. name: "Hand",
  30771. image: {
  30772. source: "./media/characters/lee/hand.svg"
  30773. }
  30774. },
  30775. maw: {
  30776. height: math.unit(1.18, "feet"),
  30777. name: "Maw",
  30778. image: {
  30779. source: "./media/characters/lee/maw.svg"
  30780. }
  30781. },
  30782. },
  30783. [
  30784. {
  30785. name: "Normal",
  30786. height: math.unit(7 + 10/12, "feet"),
  30787. default: true
  30788. },
  30789. ]
  30790. ))
  30791. characterMakers.push(() => makeCharacter(
  30792. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30793. {
  30794. front: {
  30795. height: math.unit(9, "feet"),
  30796. name: "Front",
  30797. image: {
  30798. source: "./media/characters/guti/front.svg",
  30799. extra: 4551/4355,
  30800. bottom: 123/4674
  30801. }
  30802. },
  30803. tongue: {
  30804. height: math.unit(1, "feet"),
  30805. name: "Tongue",
  30806. image: {
  30807. source: "./media/characters/guti/tongue.svg"
  30808. }
  30809. },
  30810. paw: {
  30811. height: math.unit(1.18, "feet"),
  30812. name: "Paw",
  30813. image: {
  30814. source: "./media/characters/guti/paw.svg"
  30815. }
  30816. },
  30817. },
  30818. [
  30819. {
  30820. name: "Normal",
  30821. height: math.unit(9, "feet"),
  30822. default: true
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30828. {
  30829. side: {
  30830. height: math.unit(5, "meters"),
  30831. name: "Side",
  30832. image: {
  30833. source: "./media/characters/vesper/side.svg",
  30834. extra: 1605/1518,
  30835. bottom: 0/1605
  30836. }
  30837. },
  30838. },
  30839. [
  30840. {
  30841. name: "Small",
  30842. height: math.unit(5, "meters")
  30843. },
  30844. {
  30845. name: "Sage",
  30846. height: math.unit(100, "meters"),
  30847. default: true
  30848. },
  30849. {
  30850. name: "Fun Size",
  30851. height: math.unit(600, "meters")
  30852. },
  30853. {
  30854. name: "Goddess",
  30855. height: math.unit(20000, "km")
  30856. },
  30857. {
  30858. name: "Maximum",
  30859. height: math.unit(5, "galaxies")
  30860. },
  30861. ]
  30862. ))
  30863. characterMakers.push(() => makeCharacter(
  30864. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30865. {
  30866. front: {
  30867. height: math.unit(6 + 3/12, "feet"),
  30868. weight: math.unit(190, "lb"),
  30869. name: "Front",
  30870. image: {
  30871. source: "./media/characters/gawain/front.svg",
  30872. extra: 2222/2139,
  30873. bottom: 90/2312
  30874. }
  30875. },
  30876. back: {
  30877. height: math.unit(6 + 3/12, "feet"),
  30878. weight: math.unit(190, "lb"),
  30879. name: "Back",
  30880. image: {
  30881. source: "./media/characters/gawain/back.svg",
  30882. extra: 2199/2111,
  30883. bottom: 73/2272
  30884. }
  30885. },
  30886. },
  30887. [
  30888. {
  30889. name: "Normal",
  30890. height: math.unit(6 + 3/12, "feet"),
  30891. default: true
  30892. },
  30893. ]
  30894. ))
  30895. characterMakers.push(() => makeCharacter(
  30896. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30897. {
  30898. side: {
  30899. height: math.unit(3.5, "meters"),
  30900. weight: math.unit(16000, "lb"),
  30901. name: "Side",
  30902. image: {
  30903. source: "./media/characters/dascalti/side.svg",
  30904. extra: 392/273,
  30905. bottom: 47/439
  30906. }
  30907. },
  30908. breath: {
  30909. height: math.unit(7.4, "feet"),
  30910. name: "Breath",
  30911. image: {
  30912. source: "./media/characters/dascalti/breath.svg"
  30913. }
  30914. },
  30915. fed: {
  30916. height: math.unit(3.6, "meters"),
  30917. weight: math.unit(16000, "lb"),
  30918. name: "Fed",
  30919. image: {
  30920. source: "./media/characters/dascalti/fed.svg",
  30921. extra: 1419/820,
  30922. bottom: 95/1514
  30923. }
  30924. },
  30925. },
  30926. [
  30927. {
  30928. name: "Normal",
  30929. height: math.unit(3.5, "meters"),
  30930. default: true
  30931. },
  30932. ]
  30933. ))
  30934. characterMakers.push(() => makeCharacter(
  30935. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30936. {
  30937. front: {
  30938. height: math.unit(3 + 5/12, "feet"),
  30939. name: "Front",
  30940. image: {
  30941. source: "./media/characters/mauve/front.svg",
  30942. extra: 1126/1033,
  30943. bottom: 65/1191
  30944. }
  30945. },
  30946. side: {
  30947. height: math.unit(3 + 5/12, "feet"),
  30948. name: "Side",
  30949. image: {
  30950. source: "./media/characters/mauve/side.svg",
  30951. extra: 1089/1001,
  30952. bottom: 29/1118
  30953. }
  30954. },
  30955. back: {
  30956. height: math.unit(3 + 5/12, "feet"),
  30957. name: "Back",
  30958. image: {
  30959. source: "./media/characters/mauve/back.svg",
  30960. extra: 1173/1053,
  30961. bottom: 109/1282
  30962. }
  30963. },
  30964. },
  30965. [
  30966. {
  30967. name: "Normal",
  30968. height: math.unit(3 + 5/12, "feet"),
  30969. default: true
  30970. },
  30971. ]
  30972. ))
  30973. characterMakers.push(() => makeCharacter(
  30974. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30975. {
  30976. front: {
  30977. height: math.unit(6 + 3/12, "feet"),
  30978. weight: math.unit(430, "lb"),
  30979. name: "Front",
  30980. image: {
  30981. source: "./media/characters/carlos/front.svg",
  30982. extra: 1964/1913,
  30983. bottom: 70/2034
  30984. }
  30985. },
  30986. },
  30987. [
  30988. {
  30989. name: "Normal",
  30990. height: math.unit(6 + 3/12, "feet"),
  30991. default: true
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30997. {
  30998. back: {
  30999. height: math.unit(5 + 10/12, "feet"),
  31000. weight: math.unit(200, "lb"),
  31001. name: "Back",
  31002. image: {
  31003. source: "./media/characters/jax/back.svg",
  31004. extra: 764/739,
  31005. bottom: 25/789
  31006. }
  31007. },
  31008. },
  31009. [
  31010. {
  31011. name: "Normal",
  31012. height: math.unit(5 + 10/12, "feet"),
  31013. default: true
  31014. },
  31015. ]
  31016. ))
  31017. characterMakers.push(() => makeCharacter(
  31018. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31019. {
  31020. front: {
  31021. height: math.unit(8, "feet"),
  31022. weight: math.unit(250, "lb"),
  31023. name: "Front",
  31024. image: {
  31025. source: "./media/characters/eikthynir/front.svg",
  31026. extra: 1332/1166,
  31027. bottom: 82/1414
  31028. }
  31029. },
  31030. back: {
  31031. height: math.unit(8, "feet"),
  31032. weight: math.unit(250, "lb"),
  31033. name: "Back",
  31034. image: {
  31035. source: "./media/characters/eikthynir/back.svg",
  31036. extra: 1342/1190,
  31037. bottom: 19/1361
  31038. }
  31039. },
  31040. dick: {
  31041. height: math.unit(2.35, "feet"),
  31042. name: "Dick",
  31043. image: {
  31044. source: "./media/characters/eikthynir/dick.svg"
  31045. }
  31046. },
  31047. },
  31048. [
  31049. {
  31050. name: "Normal",
  31051. height: math.unit(8, "feet"),
  31052. default: true
  31053. },
  31054. ]
  31055. ))
  31056. characterMakers.push(() => makeCharacter(
  31057. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31058. {
  31059. front: {
  31060. height: math.unit(99, "meters"),
  31061. weight: math.unit(13000, "tons"),
  31062. name: "Front",
  31063. image: {
  31064. source: "./media/characters/zlmos/front.svg",
  31065. extra: 2202/1992,
  31066. bottom: 315/2517
  31067. }
  31068. },
  31069. },
  31070. [
  31071. {
  31072. name: "Macro",
  31073. height: math.unit(99, "meters"),
  31074. default: true
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31080. {
  31081. front: {
  31082. height: math.unit(6 + 5/12, "feet"),
  31083. name: "Front",
  31084. image: {
  31085. source: "./media/characters/purri/front.svg",
  31086. extra: 1698/1610,
  31087. bottom: 32/1730
  31088. }
  31089. },
  31090. frontAlt: {
  31091. height: math.unit(6 + 5/12, "feet"),
  31092. name: "Front (Alt)",
  31093. image: {
  31094. source: "./media/characters/purri/front-alt.svg",
  31095. extra: 450/420,
  31096. bottom: 26/476
  31097. }
  31098. },
  31099. boots: {
  31100. height: math.unit(5.5, "feet"),
  31101. name: "Boots",
  31102. image: {
  31103. source: "./media/characters/purri/boots.svg",
  31104. extra: 905/853,
  31105. bottom: 18/923
  31106. }
  31107. },
  31108. lying: {
  31109. height: math.unit(2, "feet"),
  31110. name: "Lying",
  31111. image: {
  31112. source: "./media/characters/purri/lying.svg",
  31113. extra: 940/843,
  31114. bottom: 146/1086
  31115. }
  31116. },
  31117. devious: {
  31118. height: math.unit(1.77, "feet"),
  31119. name: "Devious",
  31120. image: {
  31121. source: "./media/characters/purri/devious.svg",
  31122. extra: 1440/1155,
  31123. bottom: 147/1587
  31124. }
  31125. },
  31126. bean: {
  31127. height: math.unit(1.94, "feet"),
  31128. name: "Bean",
  31129. image: {
  31130. source: "./media/characters/purri/bean.svg"
  31131. }
  31132. },
  31133. },
  31134. [
  31135. {
  31136. name: "Micro",
  31137. height: math.unit(1, "mm")
  31138. },
  31139. {
  31140. name: "Normal",
  31141. height: math.unit(6 + 5/12, "feet"),
  31142. default: true
  31143. },
  31144. {
  31145. name: "Macro :3c",
  31146. height: math.unit(2, "miles")
  31147. },
  31148. ]
  31149. ))
  31150. characterMakers.push(() => makeCharacter(
  31151. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31152. {
  31153. front: {
  31154. height: math.unit(6 + 2/12, "feet"),
  31155. weight: math.unit(250, "lb"),
  31156. name: "Front",
  31157. image: {
  31158. source: "./media/characters/moonlight/front.svg",
  31159. extra: 1044/908,
  31160. bottom: 56/1100
  31161. }
  31162. },
  31163. feral: {
  31164. height: math.unit(3 + 1/12, "feet"),
  31165. weight: math.unit(50, "kg"),
  31166. name: "Feral",
  31167. image: {
  31168. source: "./media/characters/moonlight/feral.svg",
  31169. extra: 3705/2791,
  31170. bottom: 145/3850
  31171. }
  31172. },
  31173. paw: {
  31174. height: math.unit(1, "feet"),
  31175. name: "Paw",
  31176. image: {
  31177. source: "./media/characters/moonlight/paw.svg"
  31178. }
  31179. },
  31180. paws: {
  31181. height: math.unit(0.98, "feet"),
  31182. name: "Paws",
  31183. image: {
  31184. source: "./media/characters/moonlight/paws.svg",
  31185. extra: 939/939,
  31186. bottom: 50/989
  31187. }
  31188. },
  31189. mouth: {
  31190. height: math.unit(0.48, "feet"),
  31191. name: "Mouth",
  31192. image: {
  31193. source: "./media/characters/moonlight/mouth.svg"
  31194. }
  31195. },
  31196. dick: {
  31197. height: math.unit(1.46, "feet"),
  31198. name: "Dick",
  31199. image: {
  31200. source: "./media/characters/moonlight/dick.svg"
  31201. }
  31202. },
  31203. },
  31204. [
  31205. {
  31206. name: "Normal",
  31207. height: math.unit(6 + 2/12, "feet"),
  31208. default: true
  31209. },
  31210. {
  31211. name: "Macro",
  31212. height: math.unit(300, "feet")
  31213. },
  31214. {
  31215. name: "Macro+",
  31216. height: math.unit(1, "mile")
  31217. },
  31218. {
  31219. name: "Mt. Moon",
  31220. height: math.unit(5, "miles")
  31221. },
  31222. {
  31223. name: "Megamacro",
  31224. height: math.unit(15, "miles")
  31225. },
  31226. ]
  31227. ))
  31228. characterMakers.push(() => makeCharacter(
  31229. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31230. {
  31231. back: {
  31232. height: math.unit(6, "feet"),
  31233. weight: math.unit(150, "lb"),
  31234. name: "Back",
  31235. image: {
  31236. source: "./media/characters/sylen/back.svg",
  31237. extra: 1335/1273,
  31238. bottom: 107/1442
  31239. }
  31240. },
  31241. },
  31242. [
  31243. {
  31244. name: "Normal",
  31245. height: math.unit(5 + 5/12, "feet")
  31246. },
  31247. {
  31248. name: "Megamacro",
  31249. height: math.unit(3, "miles"),
  31250. default: true
  31251. },
  31252. ]
  31253. ))
  31254. characterMakers.push(() => makeCharacter(
  31255. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31256. {
  31257. front: {
  31258. height: math.unit(6, "feet"),
  31259. weight: math.unit(190, "lb"),
  31260. name: "Front",
  31261. image: {
  31262. source: "./media/characters/huttser/front.svg",
  31263. extra: 1152/1058,
  31264. bottom: 23/1175
  31265. }
  31266. },
  31267. side: {
  31268. height: math.unit(6, "feet"),
  31269. weight: math.unit(190, "lb"),
  31270. name: "Side",
  31271. image: {
  31272. source: "./media/characters/huttser/side.svg",
  31273. extra: 1174/1065,
  31274. bottom: 18/1192
  31275. }
  31276. },
  31277. back: {
  31278. height: math.unit(6, "feet"),
  31279. weight: math.unit(190, "lb"),
  31280. name: "Back",
  31281. image: {
  31282. source: "./media/characters/huttser/back.svg",
  31283. extra: 1158/1056,
  31284. bottom: 12/1170
  31285. }
  31286. },
  31287. },
  31288. [
  31289. ]
  31290. ))
  31291. characterMakers.push(() => makeCharacter(
  31292. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31293. {
  31294. side: {
  31295. height: math.unit(12 + 9/12, "feet"),
  31296. weight: math.unit(15000, "lb"),
  31297. name: "Side",
  31298. image: {
  31299. source: "./media/characters/faan/side.svg",
  31300. extra: 2747/2697,
  31301. bottom: 0/2747
  31302. }
  31303. },
  31304. front: {
  31305. height: math.unit(12 + 9/12, "feet"),
  31306. weight: math.unit(15000, "lb"),
  31307. name: "Front",
  31308. image: {
  31309. source: "./media/characters/faan/front.svg",
  31310. extra: 607/571,
  31311. bottom: 24/631
  31312. }
  31313. },
  31314. head: {
  31315. height: math.unit(2.85, "feet"),
  31316. name: "Head",
  31317. image: {
  31318. source: "./media/characters/faan/head.svg"
  31319. }
  31320. },
  31321. headAlt: {
  31322. height: math.unit(3.13, "feet"),
  31323. name: "Head-alt",
  31324. image: {
  31325. source: "./media/characters/faan/head-alt.svg"
  31326. }
  31327. },
  31328. },
  31329. [
  31330. {
  31331. name: "Normal",
  31332. height: math.unit(12 + 9/12, "feet"),
  31333. default: true
  31334. },
  31335. ]
  31336. ))
  31337. characterMakers.push(() => makeCharacter(
  31338. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31339. {
  31340. front: {
  31341. height: math.unit(6, "feet"),
  31342. weight: math.unit(300, "lb"),
  31343. name: "Front",
  31344. image: {
  31345. source: "./media/characters/tanio/front.svg",
  31346. extra: 711/673,
  31347. bottom: 25/736
  31348. }
  31349. },
  31350. },
  31351. [
  31352. {
  31353. name: "Normal",
  31354. height: math.unit(6, "feet"),
  31355. default: true
  31356. },
  31357. ]
  31358. ))
  31359. characterMakers.push(() => makeCharacter(
  31360. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31361. {
  31362. front: {
  31363. height: math.unit(3, "inches"),
  31364. name: "Front",
  31365. image: {
  31366. source: "./media/characters/noboru/front.svg",
  31367. extra: 1039/932,
  31368. bottom: 18/1057
  31369. }
  31370. },
  31371. },
  31372. [
  31373. {
  31374. name: "Micro",
  31375. height: math.unit(3, "inches"),
  31376. default: true
  31377. },
  31378. ]
  31379. ))
  31380. characterMakers.push(() => makeCharacter(
  31381. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31382. {
  31383. front: {
  31384. height: math.unit(1.85, "meters"),
  31385. weight: math.unit(80, "kg"),
  31386. name: "Front",
  31387. image: {
  31388. source: "./media/characters/daniel-barrett/front.svg",
  31389. extra: 355/337,
  31390. bottom: 9/364
  31391. }
  31392. },
  31393. },
  31394. [
  31395. {
  31396. name: "Pico",
  31397. height: math.unit(0.0433, "mm")
  31398. },
  31399. {
  31400. name: "Nano",
  31401. height: math.unit(1.5, "mm")
  31402. },
  31403. {
  31404. name: "Micro",
  31405. height: math.unit(5.3, "cm"),
  31406. default: true
  31407. },
  31408. {
  31409. name: "Normal",
  31410. height: math.unit(1.85, "meters")
  31411. },
  31412. {
  31413. name: "Macro",
  31414. height: math.unit(64.7, "meters")
  31415. },
  31416. {
  31417. name: "Megamacro",
  31418. height: math.unit(2.26, "km")
  31419. },
  31420. {
  31421. name: "Gigamacro",
  31422. height: math.unit(79, "km")
  31423. },
  31424. {
  31425. name: "Teramacro",
  31426. height: math.unit(2765, "km")
  31427. },
  31428. {
  31429. name: "Petamacro",
  31430. height: math.unit(96678, "km")
  31431. },
  31432. ]
  31433. ))
  31434. characterMakers.push(() => makeCharacter(
  31435. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31436. {
  31437. front: {
  31438. height: math.unit(30, "meters"),
  31439. weight: math.unit(400, "tons"),
  31440. name: "Front",
  31441. image: {
  31442. source: "./media/characters/zeel/front.svg",
  31443. extra: 2599/2599,
  31444. bottom: 226/2825
  31445. }
  31446. },
  31447. },
  31448. [
  31449. {
  31450. name: "Macro",
  31451. height: math.unit(30, "meters"),
  31452. default: true
  31453. },
  31454. ]
  31455. ))
  31456. characterMakers.push(() => makeCharacter(
  31457. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31458. {
  31459. front: {
  31460. height: math.unit(6 + 7/12, "feet"),
  31461. weight: math.unit(210, "lb"),
  31462. name: "Front",
  31463. image: {
  31464. source: "./media/characters/tarn/front.svg",
  31465. extra: 3517/3220,
  31466. bottom: 91/3608
  31467. }
  31468. },
  31469. back: {
  31470. height: math.unit(6 + 7/12, "feet"),
  31471. weight: math.unit(210, "lb"),
  31472. name: "Back",
  31473. image: {
  31474. source: "./media/characters/tarn/back.svg",
  31475. extra: 3566/3241,
  31476. bottom: 34/3600
  31477. }
  31478. },
  31479. dick: {
  31480. height: math.unit(1.65, "feet"),
  31481. name: "Dick",
  31482. image: {
  31483. source: "./media/characters/tarn/dick.svg"
  31484. }
  31485. },
  31486. paw: {
  31487. height: math.unit(1.80, "feet"),
  31488. name: "Paw",
  31489. image: {
  31490. source: "./media/characters/tarn/paw.svg"
  31491. }
  31492. },
  31493. tongue: {
  31494. height: math.unit(0.97, "feet"),
  31495. name: "Tongue",
  31496. image: {
  31497. source: "./media/characters/tarn/tongue.svg"
  31498. }
  31499. },
  31500. },
  31501. [
  31502. {
  31503. name: "Micro",
  31504. height: math.unit(4, "inches")
  31505. },
  31506. {
  31507. name: "Normal",
  31508. height: math.unit(6 + 7/12, "feet"),
  31509. default: true
  31510. },
  31511. {
  31512. name: "Macro",
  31513. height: math.unit(300, "feet")
  31514. },
  31515. ]
  31516. ))
  31517. characterMakers.push(() => makeCharacter(
  31518. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31519. {
  31520. front: {
  31521. height: math.unit(5 + 7/12, "feet"),
  31522. weight: math.unit(80, "kg"),
  31523. name: "Front",
  31524. image: {
  31525. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31526. extra: 3023/2865,
  31527. bottom: 33/3056
  31528. }
  31529. },
  31530. back: {
  31531. height: math.unit(5 + 7/12, "feet"),
  31532. weight: math.unit(80, "kg"),
  31533. name: "Back",
  31534. image: {
  31535. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31536. extra: 3020/2886,
  31537. bottom: 30/3050
  31538. }
  31539. },
  31540. dick: {
  31541. height: math.unit(0.98, "feet"),
  31542. name: "Dick",
  31543. image: {
  31544. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31545. }
  31546. },
  31547. anatomy: {
  31548. height: math.unit(2.86, "feet"),
  31549. name: "Anatomy",
  31550. image: {
  31551. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31552. }
  31553. },
  31554. },
  31555. [
  31556. {
  31557. name: "Really Small",
  31558. height: math.unit(2, "inches")
  31559. },
  31560. {
  31561. name: "Micro",
  31562. height: math.unit(5.583, "inches")
  31563. },
  31564. {
  31565. name: "Normal",
  31566. height: math.unit(5 + 7/12, "feet"),
  31567. default: true
  31568. },
  31569. {
  31570. name: "Macro",
  31571. height: math.unit(67, "feet")
  31572. },
  31573. {
  31574. name: "Megamacro",
  31575. height: math.unit(134, "feet")
  31576. },
  31577. ]
  31578. ))
  31579. characterMakers.push(() => makeCharacter(
  31580. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31581. {
  31582. front: {
  31583. height: math.unit(9, "feet"),
  31584. weight: math.unit(120, "lb"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/sally/front.svg",
  31588. extra: 1506/1349,
  31589. bottom: 66/1572
  31590. }
  31591. },
  31592. },
  31593. [
  31594. {
  31595. name: "Normal",
  31596. height: math.unit(9, "feet"),
  31597. default: true
  31598. },
  31599. ]
  31600. ))
  31601. characterMakers.push(() => makeCharacter(
  31602. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31603. {
  31604. front: {
  31605. height: math.unit(8, "feet"),
  31606. weight: math.unit(900, "lb"),
  31607. name: "Front",
  31608. image: {
  31609. source: "./media/characters/owen/front.svg",
  31610. extra: 1761/1657,
  31611. bottom: 74/1835
  31612. }
  31613. },
  31614. side: {
  31615. height: math.unit(8, "feet"),
  31616. weight: math.unit(900, "lb"),
  31617. name: "Side",
  31618. image: {
  31619. source: "./media/characters/owen/side.svg",
  31620. extra: 1797/1734,
  31621. bottom: 30/1827
  31622. }
  31623. },
  31624. back: {
  31625. height: math.unit(8, "feet"),
  31626. weight: math.unit(900, "lb"),
  31627. name: "Back",
  31628. image: {
  31629. source: "./media/characters/owen/back.svg",
  31630. extra: 1796/1706,
  31631. bottom: 59/1855
  31632. }
  31633. },
  31634. maw: {
  31635. height: math.unit(1.76, "feet"),
  31636. name: "Maw",
  31637. image: {
  31638. source: "./media/characters/owen/maw.svg"
  31639. }
  31640. },
  31641. },
  31642. [
  31643. {
  31644. name: "Normal",
  31645. height: math.unit(8, "feet"),
  31646. default: true
  31647. },
  31648. ]
  31649. ))
  31650. characterMakers.push(() => makeCharacter(
  31651. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31652. {
  31653. front: {
  31654. height: math.unit(4, "feet"),
  31655. weight: math.unit(400, "lb"),
  31656. name: "Front",
  31657. image: {
  31658. source: "./media/characters/ryth/front.svg",
  31659. extra: 876/691,
  31660. bottom: 25/901
  31661. }
  31662. },
  31663. goia: {
  31664. height: math.unit(12, "feet"),
  31665. weight: math.unit(10800, "lb"),
  31666. name: "Goia",
  31667. image: {
  31668. source: "./media/characters/ryth/goia.svg",
  31669. extra: 3450/3198,
  31670. bottom: 61/3511
  31671. }
  31672. },
  31673. },
  31674. [
  31675. {
  31676. name: "Normal",
  31677. height: math.unit(4, "feet"),
  31678. default: true
  31679. },
  31680. ]
  31681. ))
  31682. characterMakers.push(() => makeCharacter(
  31683. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31684. {
  31685. front: {
  31686. height: math.unit(7, "feet"),
  31687. weight: math.unit(180, "lb"),
  31688. name: "Front",
  31689. image: {
  31690. source: "./media/characters/necrolance/front.svg",
  31691. extra: 1062/947,
  31692. bottom: 41/1103
  31693. }
  31694. },
  31695. back: {
  31696. height: math.unit(7, "feet"),
  31697. weight: math.unit(180, "lb"),
  31698. name: "Back",
  31699. image: {
  31700. source: "./media/characters/necrolance/back.svg",
  31701. extra: 1045/984,
  31702. bottom: 14/1059
  31703. }
  31704. },
  31705. wing: {
  31706. height: math.unit(2.67, "feet"),
  31707. name: "Wing",
  31708. image: {
  31709. source: "./media/characters/necrolance/wing.svg"
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Normal",
  31716. height: math.unit(7, "feet"),
  31717. default: true
  31718. },
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31723. {
  31724. front: {
  31725. height: math.unit(76, "meters"),
  31726. weight: math.unit(30000, "tons"),
  31727. name: "Front",
  31728. image: {
  31729. source: "./media/characters/tyler/front.svg",
  31730. extra: 1640/1640,
  31731. bottom: 114/1754
  31732. }
  31733. },
  31734. },
  31735. [
  31736. {
  31737. name: "Macro",
  31738. height: math.unit(76, "meters"),
  31739. default: true
  31740. },
  31741. ]
  31742. ))
  31743. characterMakers.push(() => makeCharacter(
  31744. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31745. {
  31746. front: {
  31747. height: math.unit(4 + 11/12, "feet"),
  31748. weight: math.unit(132, "lb"),
  31749. name: "Front",
  31750. image: {
  31751. source: "./media/characters/icey/front.svg",
  31752. extra: 2750/2550,
  31753. bottom: 33/2783
  31754. }
  31755. },
  31756. back: {
  31757. height: math.unit(4 + 11/12, "feet"),
  31758. weight: math.unit(132, "lb"),
  31759. name: "Back",
  31760. image: {
  31761. source: "./media/characters/icey/back.svg",
  31762. extra: 2624/2481,
  31763. bottom: 35/2659
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Normal",
  31770. height: math.unit(4 + 11/12, "feet"),
  31771. default: true
  31772. },
  31773. ]
  31774. ))
  31775. characterMakers.push(() => makeCharacter(
  31776. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31777. {
  31778. front: {
  31779. height: math.unit(100, "feet"),
  31780. weight: math.unit(0, "lb"),
  31781. name: "Front",
  31782. image: {
  31783. source: "./media/characters/smile/front.svg",
  31784. extra: 2983/2912,
  31785. bottom: 162/3145
  31786. }
  31787. },
  31788. back: {
  31789. height: math.unit(100, "feet"),
  31790. weight: math.unit(0, "lb"),
  31791. name: "Back",
  31792. image: {
  31793. source: "./media/characters/smile/back.svg",
  31794. extra: 3143/3031,
  31795. bottom: 91/3234
  31796. }
  31797. },
  31798. head: {
  31799. height: math.unit(26.3, "feet"),
  31800. weight: math.unit(0, "lb"),
  31801. name: "Head",
  31802. image: {
  31803. source: "./media/characters/smile/head.svg"
  31804. }
  31805. },
  31806. collar: {
  31807. height: math.unit(5.3, "feet"),
  31808. weight: math.unit(0, "lb"),
  31809. name: "Collar",
  31810. image: {
  31811. source: "./media/characters/smile/collar.svg"
  31812. }
  31813. },
  31814. },
  31815. [
  31816. {
  31817. name: "Macro",
  31818. height: math.unit(100, "feet"),
  31819. default: true
  31820. },
  31821. ]
  31822. ))
  31823. characterMakers.push(() => makeCharacter(
  31824. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31825. {
  31826. dragon: {
  31827. height: math.unit(26, "feet"),
  31828. weight: math.unit(36, "tons"),
  31829. name: "Dragon",
  31830. image: {
  31831. source: "./media/characters/arimphae/dragon.svg",
  31832. extra: 1574/983,
  31833. bottom: 357/1931
  31834. }
  31835. },
  31836. drake: {
  31837. height: math.unit(9, "feet"),
  31838. weight: math.unit(1.5, "tons"),
  31839. name: "Drake",
  31840. image: {
  31841. source: "./media/characters/arimphae/drake.svg",
  31842. extra: 1120/925,
  31843. bottom: 435/1555
  31844. }
  31845. },
  31846. },
  31847. [
  31848. {
  31849. name: "Small",
  31850. height: math.unit(26*5/9, "feet")
  31851. },
  31852. {
  31853. name: "Normal",
  31854. height: math.unit(26, "feet"),
  31855. default: true
  31856. },
  31857. ]
  31858. ))
  31859. characterMakers.push(() => makeCharacter(
  31860. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31861. {
  31862. front: {
  31863. height: math.unit(8 + 9/12, "feet"),
  31864. name: "Front",
  31865. image: {
  31866. source: "./media/characters/xander/front.svg",
  31867. extra: 848/673,
  31868. bottom: 62/910
  31869. }
  31870. },
  31871. },
  31872. [
  31873. {
  31874. name: "Normal",
  31875. height: math.unit(8 + 9/12, "feet"),
  31876. default: true
  31877. },
  31878. {
  31879. name: "Gaze Grabber",
  31880. height: math.unit(13 + 8/12, "feet")
  31881. },
  31882. {
  31883. name: "Jaw Dropper",
  31884. height: math.unit(27, "feet")
  31885. },
  31886. {
  31887. name: "Show Stopper",
  31888. height: math.unit(136, "feet")
  31889. },
  31890. {
  31891. name: "Superstar",
  31892. height: math.unit(1.9e6, "miles")
  31893. },
  31894. ]
  31895. ))
  31896. characterMakers.push(() => makeCharacter(
  31897. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31898. {
  31899. side: {
  31900. height: math.unit(2100, "feet"),
  31901. name: "Side",
  31902. image: {
  31903. source: "./media/characters/osiris/side.svg",
  31904. extra: 1105/939,
  31905. bottom: 167/1272
  31906. }
  31907. },
  31908. },
  31909. [
  31910. {
  31911. name: "Macro",
  31912. height: math.unit(2100, "feet"),
  31913. default: true
  31914. },
  31915. ]
  31916. ))
  31917. characterMakers.push(() => makeCharacter(
  31918. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31919. {
  31920. front: {
  31921. height: math.unit(6 + 8/12, "feet"),
  31922. weight: math.unit(225, "lb"),
  31923. name: "Front",
  31924. image: {
  31925. source: "./media/characters/rhys-londe/front.svg",
  31926. extra: 2258/2141,
  31927. bottom: 188/2446
  31928. }
  31929. },
  31930. back: {
  31931. height: math.unit(6 + 8/12, "feet"),
  31932. weight: math.unit(225, "lb"),
  31933. name: "Back",
  31934. image: {
  31935. source: "./media/characters/rhys-londe/back.svg",
  31936. extra: 2237/2137,
  31937. bottom: 63/2300
  31938. }
  31939. },
  31940. frontNsfw: {
  31941. height: math.unit(6 + 8/12, "feet"),
  31942. weight: math.unit(225, "lb"),
  31943. name: "Front (NSFW)",
  31944. image: {
  31945. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31946. extra: 2258/2141,
  31947. bottom: 188/2446
  31948. }
  31949. },
  31950. backNsfw: {
  31951. height: math.unit(6 + 8/12, "feet"),
  31952. weight: math.unit(225, "lb"),
  31953. name: "Back (NSFW)",
  31954. image: {
  31955. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31956. extra: 2237/2137,
  31957. bottom: 63/2300
  31958. }
  31959. },
  31960. dick: {
  31961. height: math.unit(30, "inches"),
  31962. name: "Dick",
  31963. image: {
  31964. source: "./media/characters/rhys-londe/dick.svg"
  31965. }
  31966. },
  31967. maw: {
  31968. height: math.unit(1.6, "feet"),
  31969. name: "Maw",
  31970. image: {
  31971. source: "./media/characters/rhys-londe/maw.svg"
  31972. }
  31973. },
  31974. },
  31975. [
  31976. {
  31977. name: "Normal",
  31978. height: math.unit(6 + 8/12, "feet"),
  31979. default: true
  31980. },
  31981. ]
  31982. ))
  31983. characterMakers.push(() => makeCharacter(
  31984. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31985. {
  31986. front: {
  31987. height: math.unit(3 + 10/12, "feet"),
  31988. weight: math.unit(90, "lb"),
  31989. name: "Front",
  31990. image: {
  31991. source: "./media/characters/taivas-ensim/front.svg",
  31992. extra: 1327/1216,
  31993. bottom: 96/1423
  31994. }
  31995. },
  31996. back: {
  31997. height: math.unit(3 + 10/12, "feet"),
  31998. weight: math.unit(90, "lb"),
  31999. name: "Back",
  32000. image: {
  32001. source: "./media/characters/taivas-ensim/back.svg",
  32002. extra: 1355/1247,
  32003. bottom: 11/1366
  32004. }
  32005. },
  32006. frontNsfw: {
  32007. height: math.unit(3 + 10/12, "feet"),
  32008. weight: math.unit(90, "lb"),
  32009. name: "Front (NSFW)",
  32010. image: {
  32011. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32012. extra: 1327/1216,
  32013. bottom: 96/1423
  32014. }
  32015. },
  32016. backNsfw: {
  32017. height: math.unit(3 + 10/12, "feet"),
  32018. weight: math.unit(90, "lb"),
  32019. name: "Back (NSFW)",
  32020. image: {
  32021. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32022. extra: 1355/1247,
  32023. bottom: 11/1366
  32024. }
  32025. },
  32026. },
  32027. [
  32028. {
  32029. name: "Normal",
  32030. height: math.unit(3 + 10/12, "feet"),
  32031. default: true
  32032. },
  32033. ]
  32034. ))
  32035. characterMakers.push(() => makeCharacter(
  32036. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32037. {
  32038. front: {
  32039. height: math.unit(9 + 6/12, "feet"),
  32040. weight: math.unit(940, "lb"),
  32041. name: "Front",
  32042. image: {
  32043. source: "./media/characters/byliss/front.svg",
  32044. extra: 1327/1290,
  32045. bottom: 82/1409
  32046. }
  32047. },
  32048. back: {
  32049. height: math.unit(9 + 6/12, "feet"),
  32050. weight: math.unit(940, "lb"),
  32051. name: "Back",
  32052. image: {
  32053. source: "./media/characters/byliss/back.svg",
  32054. extra: 1376/1349,
  32055. bottom: 9/1385
  32056. }
  32057. },
  32058. frontNsfw: {
  32059. height: math.unit(9 + 6/12, "feet"),
  32060. weight: math.unit(940, "lb"),
  32061. name: "Front (NSFW)",
  32062. image: {
  32063. source: "./media/characters/byliss/front-nsfw.svg",
  32064. extra: 1327/1290,
  32065. bottom: 82/1409
  32066. }
  32067. },
  32068. backNsfw: {
  32069. height: math.unit(9 + 6/12, "feet"),
  32070. weight: math.unit(940, "lb"),
  32071. name: "Back (NSFW)",
  32072. image: {
  32073. source: "./media/characters/byliss/back-nsfw.svg",
  32074. extra: 1376/1349,
  32075. bottom: 9/1385
  32076. }
  32077. },
  32078. },
  32079. [
  32080. {
  32081. name: "Normal",
  32082. height: math.unit(9 + 6/12, "feet"),
  32083. default: true
  32084. },
  32085. ]
  32086. ))
  32087. characterMakers.push(() => makeCharacter(
  32088. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32089. {
  32090. front: {
  32091. height: math.unit(5 + 2/12, "feet"),
  32092. weight: math.unit(200, "lb"),
  32093. name: "Front",
  32094. image: {
  32095. source: "./media/characters/noraly/front.svg",
  32096. extra: 4985/4773,
  32097. bottom: 150/5135
  32098. }
  32099. },
  32100. full: {
  32101. height: math.unit(5 + 2/12, "feet"),
  32102. weight: math.unit(164, "lb"),
  32103. name: "Full",
  32104. image: {
  32105. source: "./media/characters/noraly/full.svg",
  32106. extra: 1114/1059,
  32107. bottom: 35/1149
  32108. }
  32109. },
  32110. fuller: {
  32111. height: math.unit(5 + 2/12, "feet"),
  32112. weight: math.unit(230, "lb"),
  32113. name: "Fuller",
  32114. image: {
  32115. source: "./media/characters/noraly/fuller.svg",
  32116. extra: 1114/1059,
  32117. bottom: 35/1149
  32118. }
  32119. },
  32120. fullest: {
  32121. height: math.unit(5 + 2/12, "feet"),
  32122. weight: math.unit(300, "lb"),
  32123. name: "Fullest",
  32124. image: {
  32125. source: "./media/characters/noraly/fullest.svg",
  32126. extra: 1114/1059,
  32127. bottom: 35/1149
  32128. }
  32129. },
  32130. },
  32131. [
  32132. {
  32133. name: "Normal",
  32134. height: math.unit(5 + 2/12, "feet"),
  32135. default: true
  32136. },
  32137. ]
  32138. ))
  32139. characterMakers.push(() => makeCharacter(
  32140. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32141. {
  32142. front: {
  32143. height: math.unit(5 + 2/12, "feet"),
  32144. weight: math.unit(210, "lb"),
  32145. name: "Front",
  32146. image: {
  32147. source: "./media/characters/pera/front.svg",
  32148. extra: 1560/1531,
  32149. bottom: 165/1725
  32150. }
  32151. },
  32152. back: {
  32153. height: math.unit(5 + 2/12, "feet"),
  32154. weight: math.unit(210, "lb"),
  32155. name: "Back",
  32156. image: {
  32157. source: "./media/characters/pera/back.svg",
  32158. extra: 1523/1493,
  32159. bottom: 152/1675
  32160. }
  32161. },
  32162. dick: {
  32163. height: math.unit(2.4, "feet"),
  32164. name: "Dick",
  32165. image: {
  32166. source: "./media/characters/pera/dick.svg"
  32167. }
  32168. },
  32169. },
  32170. [
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(5 + 2/12, "feet"),
  32174. default: true
  32175. },
  32176. ]
  32177. ))
  32178. characterMakers.push(() => makeCharacter(
  32179. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32180. {
  32181. front: {
  32182. height: math.unit(12, "feet"),
  32183. weight: math.unit(3200, "lb"),
  32184. name: "Front",
  32185. image: {
  32186. source: "./media/characters/julian/front.svg",
  32187. extra: 2962/2701,
  32188. bottom: 184/3146
  32189. }
  32190. },
  32191. maw: {
  32192. height: math.unit(5.35, "feet"),
  32193. name: "Maw",
  32194. image: {
  32195. source: "./media/characters/julian/maw.svg"
  32196. }
  32197. },
  32198. paw: {
  32199. height: math.unit(3.07, "feet"),
  32200. name: "Paw",
  32201. image: {
  32202. source: "./media/characters/julian/paw.svg"
  32203. }
  32204. },
  32205. },
  32206. [
  32207. {
  32208. name: "Default",
  32209. height: math.unit(12, "feet"),
  32210. default: true
  32211. },
  32212. {
  32213. name: "Big",
  32214. height: math.unit(50, "feet")
  32215. },
  32216. {
  32217. name: "Really Big",
  32218. height: math.unit(1, "mile")
  32219. },
  32220. {
  32221. name: "Extremely Big",
  32222. height: math.unit(100, "miles")
  32223. },
  32224. {
  32225. name: "Planet Hugger",
  32226. height: math.unit(200, "megameters")
  32227. },
  32228. {
  32229. name: "Unreasonably Big",
  32230. height: math.unit(1e300, "meters")
  32231. },
  32232. ]
  32233. ))
  32234. characterMakers.push(() => makeCharacter(
  32235. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32236. {
  32237. solgooleo: {
  32238. height: math.unit(4, "meters"),
  32239. weight: math.unit(6000*1.5, "kg"),
  32240. volume: math.unit(6000, "liters"),
  32241. name: "Solgooleo",
  32242. image: {
  32243. source: "./media/characters/pi/solgooleo.svg",
  32244. extra: 388/331,
  32245. bottom: 29/417
  32246. }
  32247. },
  32248. },
  32249. [
  32250. {
  32251. name: "Normal",
  32252. height: math.unit(4, "meters"),
  32253. default: true
  32254. },
  32255. ]
  32256. ))
  32257. characterMakers.push(() => makeCharacter(
  32258. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32259. {
  32260. front: {
  32261. height: math.unit(8 + 2/12, "feet"),
  32262. weight: math.unit(4, "tons"),
  32263. name: "Front",
  32264. image: {
  32265. source: "./media/characters/shaun/front.svg",
  32266. extra: 1550/1505,
  32267. bottom: 353/1903
  32268. }
  32269. },
  32270. },
  32271. [
  32272. {
  32273. name: "Lorg",
  32274. height: math.unit(8 + 2/12, "feet"),
  32275. default: true
  32276. },
  32277. ]
  32278. ))
  32279. characterMakers.push(() => makeCharacter(
  32280. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32281. {
  32282. front: {
  32283. height: math.unit(7, "feet"),
  32284. name: "Front",
  32285. image: {
  32286. source: "./media/characters/sini/front.svg",
  32287. extra: 726/678,
  32288. bottom: 35/761
  32289. }
  32290. },
  32291. back: {
  32292. height: math.unit(7, "feet"),
  32293. name: "Back",
  32294. image: {
  32295. source: "./media/characters/sini/back.svg",
  32296. extra: 743/701,
  32297. bottom: 12/755
  32298. }
  32299. },
  32300. mawAnthro: {
  32301. height: math.unit(2.14, "feet"),
  32302. name: "Maw (Anthro)",
  32303. image: {
  32304. source: "./media/characters/sini/maw-anthro.svg"
  32305. }
  32306. },
  32307. dick: {
  32308. height: math.unit(1.45, "feet"),
  32309. name: "Dick (Anthro)",
  32310. image: {
  32311. source: "./media/characters/sini/dick-anthro.svg"
  32312. }
  32313. },
  32314. feral: {
  32315. height: math.unit(16, "feet"),
  32316. name: "Feral",
  32317. image: {
  32318. source: "./media/characters/sini/feral.svg",
  32319. extra: 814/605,
  32320. bottom: 11/825
  32321. }
  32322. },
  32323. mawFeral: {
  32324. height: math.unit(5.66, "feet"),
  32325. name: "Maw-feral",
  32326. image: {
  32327. source: "./media/characters/sini/maw-feral.svg"
  32328. }
  32329. },
  32330. footFeral: {
  32331. height: math.unit(5.17, "feet"),
  32332. name: "Foot-feral",
  32333. image: {
  32334. source: "./media/characters/sini/foot-feral.svg"
  32335. }
  32336. },
  32337. },
  32338. [
  32339. {
  32340. name: "Normal",
  32341. height: math.unit(7, "feet"),
  32342. default: true
  32343. },
  32344. ]
  32345. ))
  32346. characterMakers.push(() => makeCharacter(
  32347. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32348. {
  32349. side: {
  32350. height: math.unit(13, "meters"),
  32351. weight: math.unit(9072, "kg"),
  32352. name: "Side",
  32353. image: {
  32354. source: "./media/characters/raylldo/side.svg",
  32355. extra: 403/344,
  32356. bottom: 42/445
  32357. }
  32358. },
  32359. leaping: {
  32360. height: math.unit(12.3, "meters"),
  32361. weight: math.unit(9072, "kg"),
  32362. name: "Leaping",
  32363. image: {
  32364. source: "./media/characters/raylldo/leaping.svg",
  32365. extra: 470/249,
  32366. bottom: 13/483
  32367. }
  32368. },
  32369. flying: {
  32370. height: math.unit(18, "meters"),
  32371. weight: math.unit(9072, "kg"),
  32372. name: "Flying",
  32373. image: {
  32374. source: "./media/characters/raylldo/flying.svg"
  32375. }
  32376. },
  32377. head: {
  32378. height: math.unit(5.85, "meters"),
  32379. name: "Head",
  32380. image: {
  32381. source: "./media/characters/raylldo/head.svg"
  32382. }
  32383. },
  32384. maw: {
  32385. height: math.unit(5.32, "meters"),
  32386. name: "Maw",
  32387. image: {
  32388. source: "./media/characters/raylldo/maw.svg"
  32389. }
  32390. },
  32391. eye: {
  32392. height: math.unit(0.54, "meters"),
  32393. name: "Eye",
  32394. image: {
  32395. source: "./media/characters/raylldo/eye.svg"
  32396. }
  32397. },
  32398. },
  32399. [
  32400. {
  32401. name: "Normal",
  32402. height: math.unit(13, "meters"),
  32403. default: true
  32404. },
  32405. ]
  32406. ))
  32407. characterMakers.push(() => makeCharacter(
  32408. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32409. {
  32410. anthroFront: {
  32411. height: math.unit(9, "feet"),
  32412. weight: math.unit(600, "lb"),
  32413. name: "Anthro (Front)",
  32414. image: {
  32415. source: "./media/characters/glint/anthro-front.svg",
  32416. extra: 1097/1018,
  32417. bottom: 28/1125
  32418. }
  32419. },
  32420. anthroBack: {
  32421. height: math.unit(9, "feet"),
  32422. weight: math.unit(600, "lb"),
  32423. name: "Anthro (Back)",
  32424. image: {
  32425. source: "./media/characters/glint/anthro-back.svg",
  32426. extra: 1154/997,
  32427. bottom: 36/1190
  32428. }
  32429. },
  32430. feral: {
  32431. height: math.unit(11, "feet"),
  32432. weight: math.unit(50000, "lb"),
  32433. name: "Feral",
  32434. image: {
  32435. source: "./media/characters/glint/feral.svg",
  32436. extra: 3035/1585,
  32437. bottom: 1169/4204
  32438. }
  32439. },
  32440. dickAnthro: {
  32441. height: math.unit(0.7, "meters"),
  32442. name: "Dick (Anthro)",
  32443. image: {
  32444. source: "./media/characters/glint/dick-anthro.svg"
  32445. }
  32446. },
  32447. dickFeral: {
  32448. height: math.unit(2.65, "meters"),
  32449. name: "Dick (Feral)",
  32450. image: {
  32451. source: "./media/characters/glint/dick-feral.svg"
  32452. }
  32453. },
  32454. slitHidden: {
  32455. height: math.unit(5.85, "meters"),
  32456. name: "Slit (Hidden)",
  32457. image: {
  32458. source: "./media/characters/glint/slit-hidden.svg"
  32459. }
  32460. },
  32461. slitErect: {
  32462. height: math.unit(5.85, "meters"),
  32463. name: "Slit (Erect)",
  32464. image: {
  32465. source: "./media/characters/glint/slit-erect.svg"
  32466. }
  32467. },
  32468. mawAnthro: {
  32469. height: math.unit(0.63, "meters"),
  32470. name: "Maw (Anthro)",
  32471. image: {
  32472. source: "./media/characters/glint/maw.svg"
  32473. }
  32474. },
  32475. mawFeral: {
  32476. height: math.unit(2.89, "meters"),
  32477. name: "Maw (Feral)",
  32478. image: {
  32479. source: "./media/characters/glint/maw.svg"
  32480. }
  32481. },
  32482. },
  32483. [
  32484. {
  32485. name: "Normal",
  32486. height: math.unit(9, "feet"),
  32487. default: true
  32488. },
  32489. ]
  32490. ))
  32491. characterMakers.push(() => makeCharacter(
  32492. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32493. {
  32494. side: {
  32495. height: math.unit(15, "feet"),
  32496. weight: math.unit(5000, "kg"),
  32497. name: "Side",
  32498. image: {
  32499. source: "./media/characters/kairne/side.svg",
  32500. extra: 979/811,
  32501. bottom: 13/992
  32502. }
  32503. },
  32504. front: {
  32505. height: math.unit(15, "feet"),
  32506. weight: math.unit(5000, "kg"),
  32507. name: "Front",
  32508. image: {
  32509. source: "./media/characters/kairne/front.svg",
  32510. extra: 908/814,
  32511. bottom: 26/934
  32512. }
  32513. },
  32514. sideNsfw: {
  32515. height: math.unit(15, "feet"),
  32516. weight: math.unit(5000, "kg"),
  32517. name: "Side (NSFW)",
  32518. image: {
  32519. source: "./media/characters/kairne/side-nsfw.svg",
  32520. extra: 979/811,
  32521. bottom: 13/992
  32522. }
  32523. },
  32524. frontNsfw: {
  32525. height: math.unit(15, "feet"),
  32526. weight: math.unit(5000, "kg"),
  32527. name: "Front (NSFW)",
  32528. image: {
  32529. source: "./media/characters/kairne/front-nsfw.svg",
  32530. extra: 908/814,
  32531. bottom: 26/934
  32532. }
  32533. },
  32534. dickCaged: {
  32535. height: math.unit(0.65, "meters"),
  32536. name: "Dick-caged",
  32537. image: {
  32538. source: "./media/characters/kairne/dick-caged.svg"
  32539. }
  32540. },
  32541. dick: {
  32542. height: math.unit(0.79, "meters"),
  32543. name: "Dick",
  32544. image: {
  32545. source: "./media/characters/kairne/dick.svg"
  32546. }
  32547. },
  32548. genitals: {
  32549. height: math.unit(1.29, "meters"),
  32550. name: "Genitals",
  32551. image: {
  32552. source: "./media/characters/kairne/genitals.svg"
  32553. }
  32554. },
  32555. maw: {
  32556. height: math.unit(1.73, "meters"),
  32557. name: "Maw",
  32558. image: {
  32559. source: "./media/characters/kairne/maw.svg"
  32560. }
  32561. },
  32562. },
  32563. [
  32564. {
  32565. name: "Normal",
  32566. height: math.unit(15, "feet"),
  32567. default: true
  32568. },
  32569. ]
  32570. ))
  32571. characterMakers.push(() => makeCharacter(
  32572. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32573. {
  32574. front: {
  32575. height: math.unit(5 + 8/12, "feet"),
  32576. weight: math.unit(139, "lb"),
  32577. name: "Front",
  32578. image: {
  32579. source: "./media/characters/biscuit-jackal/front.svg",
  32580. extra: 2106/1961,
  32581. bottom: 58/2164
  32582. }
  32583. },
  32584. back: {
  32585. height: math.unit(5 + 8/12, "feet"),
  32586. weight: math.unit(139, "lb"),
  32587. name: "Back",
  32588. image: {
  32589. source: "./media/characters/biscuit-jackal/back.svg",
  32590. extra: 2132/1976,
  32591. bottom: 57/2189
  32592. }
  32593. },
  32594. werejackal: {
  32595. height: math.unit(6 + 3/12, "feet"),
  32596. weight: math.unit(188, "lb"),
  32597. name: "Werejackal",
  32598. image: {
  32599. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32600. extra: 2373/2178,
  32601. bottom: 53/2426
  32602. }
  32603. },
  32604. },
  32605. [
  32606. {
  32607. name: "Normal",
  32608. height: math.unit(5 + 8/12, "feet"),
  32609. default: true
  32610. },
  32611. ]
  32612. ))
  32613. characterMakers.push(() => makeCharacter(
  32614. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32615. {
  32616. front: {
  32617. height: math.unit(140, "cm"),
  32618. weight: math.unit(45, "kg"),
  32619. name: "Front",
  32620. image: {
  32621. source: "./media/characters/tayra-white/front.svg",
  32622. extra: 2229/2192,
  32623. bottom: 75/2304
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(140, "cm"),
  32631. default: true
  32632. },
  32633. ]
  32634. ))
  32635. characterMakers.push(() => makeCharacter(
  32636. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32637. {
  32638. front: {
  32639. height: math.unit(4 + 5/12, "feet"),
  32640. name: "Front",
  32641. image: {
  32642. source: "./media/characters/scoop/front.svg",
  32643. extra: 1257/1136,
  32644. bottom: 69/1326
  32645. }
  32646. },
  32647. back: {
  32648. height: math.unit(4 + 5/12, "feet"),
  32649. name: "Back",
  32650. image: {
  32651. source: "./media/characters/scoop/back.svg",
  32652. extra: 1321/1152,
  32653. bottom: 32/1353
  32654. }
  32655. },
  32656. maw: {
  32657. height: math.unit(0.68, "feet"),
  32658. name: "Maw",
  32659. image: {
  32660. source: "./media/characters/scoop/maw.svg"
  32661. }
  32662. },
  32663. },
  32664. [
  32665. {
  32666. name: "Really Small",
  32667. height: math.unit(1, "mm")
  32668. },
  32669. {
  32670. name: "Micro",
  32671. height: math.unit(1, "inch")
  32672. },
  32673. {
  32674. name: "Normal",
  32675. height: math.unit(4 + 5/12, "feet"),
  32676. default: true
  32677. },
  32678. {
  32679. name: "Macro",
  32680. height: math.unit(200, "feet")
  32681. },
  32682. {
  32683. name: "Megamacro",
  32684. height: math.unit(3240, "feet")
  32685. },
  32686. {
  32687. name: "Teramacro",
  32688. height: math.unit(2500, "miles")
  32689. },
  32690. ]
  32691. ))
  32692. characterMakers.push(() => makeCharacter(
  32693. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32694. {
  32695. front: {
  32696. height: math.unit(15 + 7/12, "feet"),
  32697. name: "Front",
  32698. image: {
  32699. source: "./media/characters/saphinara/front.svg",
  32700. extra: 604/546,
  32701. bottom: 19/623
  32702. }
  32703. },
  32704. side: {
  32705. height: math.unit(15 + 7/12, "feet"),
  32706. name: "Side",
  32707. image: {
  32708. source: "./media/characters/saphinara/side.svg",
  32709. extra: 605/547,
  32710. bottom: 6/611
  32711. }
  32712. },
  32713. back: {
  32714. height: math.unit(15 + 7/12, "feet"),
  32715. name: "Back",
  32716. image: {
  32717. source: "./media/characters/saphinara/back.svg",
  32718. extra: 591/531,
  32719. bottom: 13/604
  32720. }
  32721. },
  32722. frontTail: {
  32723. height: math.unit(15 + 7/12, "feet"),
  32724. name: "Front (Full Tail)",
  32725. image: {
  32726. source: "./media/characters/saphinara/front-tail.svg",
  32727. extra: 748/547,
  32728. bottom: 66/814
  32729. }
  32730. },
  32731. },
  32732. [
  32733. {
  32734. name: "Normal",
  32735. height: math.unit(15 + 7/12, "feet"),
  32736. default: true
  32737. },
  32738. {
  32739. name: "Angry",
  32740. height: math.unit(30 + 6/12, "feet")
  32741. },
  32742. {
  32743. name: "Enraged",
  32744. height: math.unit(102 + 1/12, "feet")
  32745. },
  32746. ]
  32747. ))
  32748. characterMakers.push(() => makeCharacter(
  32749. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32750. {
  32751. front: {
  32752. height: math.unit(6 + 8/12, "feet"),
  32753. weight: math.unit(300, "lb"),
  32754. name: "Front",
  32755. image: {
  32756. source: "./media/characters/jrain/front.svg",
  32757. extra: 3039/2865,
  32758. bottom: 399/3438
  32759. }
  32760. },
  32761. back: {
  32762. height: math.unit(6 + 8/12, "feet"),
  32763. weight: math.unit(300, "lb"),
  32764. name: "Back",
  32765. image: {
  32766. source: "./media/characters/jrain/back.svg",
  32767. extra: 3089/2938,
  32768. bottom: 172/3261
  32769. }
  32770. },
  32771. head: {
  32772. height: math.unit(2.14, "feet"),
  32773. name: "Head",
  32774. image: {
  32775. source: "./media/characters/jrain/head.svg"
  32776. }
  32777. },
  32778. maw: {
  32779. height: math.unit(1.77, "feet"),
  32780. name: "Maw",
  32781. image: {
  32782. source: "./media/characters/jrain/maw.svg"
  32783. }
  32784. },
  32785. leftHand: {
  32786. height: math.unit(1.1, "feet"),
  32787. name: "Left Hand",
  32788. image: {
  32789. source: "./media/characters/jrain/left-hand.svg"
  32790. }
  32791. },
  32792. rightHand: {
  32793. height: math.unit(1.1, "feet"),
  32794. name: "Right Hand",
  32795. image: {
  32796. source: "./media/characters/jrain/right-hand.svg"
  32797. }
  32798. },
  32799. eye: {
  32800. height: math.unit(0.35, "feet"),
  32801. name: "Eye",
  32802. image: {
  32803. source: "./media/characters/jrain/eye.svg"
  32804. }
  32805. },
  32806. },
  32807. [
  32808. {
  32809. name: "Normal",
  32810. height: math.unit(6 + 8/12, "feet"),
  32811. default: true
  32812. },
  32813. {
  32814. name: "Casually Large",
  32815. height: math.unit(25, "feet")
  32816. },
  32817. {
  32818. name: "Giant",
  32819. height: math.unit(100, "feet")
  32820. },
  32821. {
  32822. name: "Kaiju",
  32823. height: math.unit(300, "feet")
  32824. },
  32825. ]
  32826. ))
  32827. characterMakers.push(() => makeCharacter(
  32828. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32829. {
  32830. dragon: {
  32831. height: math.unit(5, "meters"),
  32832. name: "Dragon",
  32833. image: {
  32834. source: "./media/characters/sabrina/dragon.svg",
  32835. extra: 3670 / 2365,
  32836. bottom: 333 / 4003
  32837. }
  32838. },
  32839. gryphon: {
  32840. height: math.unit(3, "meters"),
  32841. name: "Gryphon",
  32842. image: {
  32843. source: "./media/characters/sabrina/gryphon.svg",
  32844. extra: 1576 / 945,
  32845. bottom: 71 / 1647
  32846. }
  32847. },
  32848. snake: {
  32849. height: math.unit(12, "meters"),
  32850. name: "Snake",
  32851. image: {
  32852. source: "./media/characters/sabrina/snake.svg",
  32853. extra: 1758 / 1320,
  32854. bottom: 186 / 1944
  32855. }
  32856. },
  32857. collar: {
  32858. height: math.unit(1.86, "meters"),
  32859. name: "Collar",
  32860. image: {
  32861. source: "./media/characters/sabrina/collar.svg"
  32862. }
  32863. },
  32864. eye: {
  32865. height: math.unit(0.53, "meters"),
  32866. name: "Eye",
  32867. image: {
  32868. source: "./media/characters/sabrina/eye.svg"
  32869. }
  32870. },
  32871. foot: {
  32872. height: math.unit(1.86, "meters"),
  32873. name: "Foot",
  32874. image: {
  32875. source: "./media/characters/sabrina/foot.svg"
  32876. }
  32877. },
  32878. hand: {
  32879. height: math.unit(1.32, "meters"),
  32880. name: "Hand",
  32881. image: {
  32882. source: "./media/characters/sabrina/hand.svg"
  32883. }
  32884. },
  32885. head: {
  32886. height: math.unit(2.44, "meters"),
  32887. name: "Head",
  32888. image: {
  32889. source: "./media/characters/sabrina/head.svg"
  32890. }
  32891. },
  32892. headAngry: {
  32893. height: math.unit(2.44, "meters"),
  32894. name: "Head (Angry))",
  32895. image: {
  32896. source: "./media/characters/sabrina/head-angry.svg"
  32897. }
  32898. },
  32899. maw: {
  32900. height: math.unit(1.65, "meters"),
  32901. name: "Maw",
  32902. image: {
  32903. source: "./media/characters/sabrina/maw.svg"
  32904. }
  32905. },
  32906. spikes: {
  32907. height: math.unit(1.69, "meters"),
  32908. name: "Spikes",
  32909. image: {
  32910. source: "./media/characters/sabrina/spikes.svg"
  32911. }
  32912. },
  32913. stomach: {
  32914. height: math.unit(1.15, "meters"),
  32915. name: "Stomach",
  32916. image: {
  32917. source: "./media/characters/sabrina/stomach.svg"
  32918. }
  32919. },
  32920. tongue: {
  32921. height: math.unit(1.27, "meters"),
  32922. name: "Tongue",
  32923. image: {
  32924. source: "./media/characters/sabrina/tongue.svg"
  32925. }
  32926. },
  32927. wingDorsal: {
  32928. height: math.unit(4.85, "meters"),
  32929. name: "Wing (Dorsal)",
  32930. image: {
  32931. source: "./media/characters/sabrina/wing-dorsal.svg"
  32932. }
  32933. },
  32934. wingVentral: {
  32935. height: math.unit(4.85, "meters"),
  32936. name: "Wing (Ventral)",
  32937. image: {
  32938. source: "./media/characters/sabrina/wing-ventral.svg"
  32939. }
  32940. },
  32941. },
  32942. [
  32943. {
  32944. name: "Normal",
  32945. height: math.unit(5, "meters"),
  32946. default: true
  32947. },
  32948. ]
  32949. ))
  32950. characterMakers.push(() => makeCharacter(
  32951. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32952. {
  32953. frontMaid: {
  32954. height: math.unit(5 + 5/12, "feet"),
  32955. weight: math.unit(130, "lb"),
  32956. name: "Front (Maid)",
  32957. image: {
  32958. source: "./media/characters/midnight-tales/front-maid.svg",
  32959. extra: 489/454,
  32960. bottom: 61/550
  32961. }
  32962. },
  32963. frontFormal: {
  32964. height: math.unit(5 + 5/12, "feet"),
  32965. weight: math.unit(130, "lb"),
  32966. name: "Front (Formal)",
  32967. image: {
  32968. source: "./media/characters/midnight-tales/front-formal.svg",
  32969. extra: 489/454,
  32970. bottom: 61/550
  32971. }
  32972. },
  32973. back: {
  32974. height: math.unit(5 + 5/12, "feet"),
  32975. weight: math.unit(130, "lb"),
  32976. name: "Back",
  32977. image: {
  32978. source: "./media/characters/midnight-tales/back.svg",
  32979. extra: 498/456,
  32980. bottom: 33/531
  32981. }
  32982. },
  32983. frontBeast: {
  32984. height: math.unit(40, "feet"),
  32985. weight: math.unit(64000, "lb"),
  32986. name: "Front (Beast)",
  32987. image: {
  32988. source: "./media/characters/midnight-tales/front-beast.svg",
  32989. extra: 927/860,
  32990. bottom: 53/980
  32991. }
  32992. },
  32993. backBeast: {
  32994. height: math.unit(40, "feet"),
  32995. weight: math.unit(64000, "lb"),
  32996. name: "Back (Beast)",
  32997. image: {
  32998. source: "./media/characters/midnight-tales/back-beast.svg",
  32999. extra: 929/855,
  33000. bottom: 16/945
  33001. }
  33002. },
  33003. footBeast: {
  33004. height: math.unit(6.7, "feet"),
  33005. name: "Foot (Beast)",
  33006. image: {
  33007. source: "./media/characters/midnight-tales/foot-beast.svg"
  33008. }
  33009. },
  33010. headBeast: {
  33011. height: math.unit(8, "feet"),
  33012. name: "Head (Beast)",
  33013. image: {
  33014. source: "./media/characters/midnight-tales/head-beast.svg"
  33015. }
  33016. },
  33017. },
  33018. [
  33019. {
  33020. name: "Normal",
  33021. height: math.unit(5 + 5 / 12, "feet"),
  33022. default: true
  33023. },
  33024. {
  33025. name: "Macro",
  33026. height: math.unit(25, "feet")
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33032. {
  33033. front: {
  33034. height: math.unit(5 + 10/12, "feet"),
  33035. name: "Front",
  33036. image: {
  33037. source: "./media/characters/argon/front.svg",
  33038. extra: 2009/1935,
  33039. bottom: 118/2127
  33040. }
  33041. },
  33042. back: {
  33043. height: math.unit(5 + 10/12, "feet"),
  33044. name: "Back",
  33045. image: {
  33046. source: "./media/characters/argon/back.svg",
  33047. extra: 2047/1992,
  33048. bottom: 20/2067
  33049. }
  33050. },
  33051. frontDressed: {
  33052. height: math.unit(5 + 10/12, "feet"),
  33053. name: "Front (Dressed)",
  33054. image: {
  33055. source: "./media/characters/argon/front-dressed.svg",
  33056. extra: 2009/1935,
  33057. bottom: 118/2127
  33058. }
  33059. },
  33060. },
  33061. [
  33062. {
  33063. name: "Normal",
  33064. height: math.unit(5 + 10/12, "feet"),
  33065. default: true
  33066. },
  33067. ]
  33068. ))
  33069. characterMakers.push(() => makeCharacter(
  33070. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33071. {
  33072. front: {
  33073. height: math.unit(8 + 6/12, "feet"),
  33074. weight: math.unit(1150, "lb"),
  33075. name: "Front",
  33076. image: {
  33077. source: "./media/characters/kichi/front.svg",
  33078. extra: 1267/1164,
  33079. bottom: 61/1328
  33080. }
  33081. },
  33082. back: {
  33083. height: math.unit(8 + 6/12, "feet"),
  33084. weight: math.unit(1150, "lb"),
  33085. name: "Back",
  33086. image: {
  33087. source: "./media/characters/kichi/back.svg",
  33088. extra: 1273/1166,
  33089. bottom: 33/1306
  33090. }
  33091. },
  33092. },
  33093. [
  33094. {
  33095. name: "Normal",
  33096. height: math.unit(8 + 6/12, "feet"),
  33097. default: true
  33098. },
  33099. ]
  33100. ))
  33101. characterMakers.push(() => makeCharacter(
  33102. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33103. {
  33104. front: {
  33105. height: math.unit(6, "feet"),
  33106. weight: math.unit(210, "lb"),
  33107. name: "Front",
  33108. image: {
  33109. source: "./media/characters/manetel-greyscale/front.svg",
  33110. extra: 350/312,
  33111. bottom: 8/358
  33112. }
  33113. },
  33114. },
  33115. [
  33116. {
  33117. name: "Micro",
  33118. height: math.unit(2, "inches")
  33119. },
  33120. {
  33121. name: "Normal",
  33122. height: math.unit(6, "feet"),
  33123. default: true
  33124. },
  33125. {
  33126. name: "Minimacro",
  33127. height: math.unit(17, "feet")
  33128. },
  33129. {
  33130. name: "Macro",
  33131. height: math.unit(117, "feet")
  33132. },
  33133. ]
  33134. ))
  33135. characterMakers.push(() => makeCharacter(
  33136. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33137. {
  33138. side: {
  33139. height: math.unit(5 + 1/12, "feet"),
  33140. weight: math.unit(418, "lb"),
  33141. name: "Side",
  33142. image: {
  33143. source: "./media/characters/softpurr/side.svg",
  33144. extra: 1993/1945,
  33145. bottom: 134/2127
  33146. }
  33147. },
  33148. front: {
  33149. height: math.unit(5 + 1/12, "feet"),
  33150. weight: math.unit(418, "lb"),
  33151. name: "Front",
  33152. image: {
  33153. source: "./media/characters/softpurr/front.svg",
  33154. extra: 1950/1856,
  33155. bottom: 174/2124
  33156. }
  33157. },
  33158. paw: {
  33159. height: math.unit(1, "feet"),
  33160. name: "Paw",
  33161. image: {
  33162. source: "./media/characters/softpurr/paw.svg"
  33163. }
  33164. },
  33165. },
  33166. [
  33167. {
  33168. name: "Normal",
  33169. height: math.unit(5 + 1/12, "feet"),
  33170. default: true
  33171. },
  33172. ]
  33173. ))
  33174. characterMakers.push(() => makeCharacter(
  33175. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33176. {
  33177. front: {
  33178. height: math.unit(260, "meters"),
  33179. name: "Front",
  33180. image: {
  33181. source: "./media/characters/anahita/front.svg",
  33182. extra: 665/635,
  33183. bottom: 89/754
  33184. }
  33185. },
  33186. },
  33187. [
  33188. {
  33189. name: "Macro",
  33190. height: math.unit(260, "meters"),
  33191. default: true
  33192. },
  33193. ]
  33194. ))
  33195. characterMakers.push(() => makeCharacter(
  33196. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33197. {
  33198. front: {
  33199. height: math.unit(4 + 10/12, "feet"),
  33200. weight: math.unit(160, "lb"),
  33201. name: "Front",
  33202. image: {
  33203. source: "./media/characters/chip-mouse/front.svg",
  33204. extra: 3528/3408,
  33205. bottom: 0/3528
  33206. }
  33207. },
  33208. frontNsfw: {
  33209. height: math.unit(4 + 10/12, "feet"),
  33210. weight: math.unit(160, "lb"),
  33211. name: "Front (NSFW)",
  33212. image: {
  33213. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33214. extra: 3528/3408,
  33215. bottom: 0/3528
  33216. }
  33217. },
  33218. },
  33219. [
  33220. {
  33221. name: "Normal",
  33222. height: math.unit(4 + 10/12, "feet"),
  33223. default: true
  33224. },
  33225. ]
  33226. ))
  33227. characterMakers.push(() => makeCharacter(
  33228. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33229. {
  33230. side: {
  33231. height: math.unit(10, "feet"),
  33232. weight: math.unit(14000, "lb"),
  33233. name: "Side",
  33234. image: {
  33235. source: "./media/characters/kremm/side.svg",
  33236. extra: 1390/1053,
  33237. bottom: 90/1480
  33238. }
  33239. },
  33240. gut: {
  33241. height: math.unit(5.8, "feet"),
  33242. name: "Gut",
  33243. image: {
  33244. source: "./media/characters/kremm/gut.svg"
  33245. }
  33246. },
  33247. ass: {
  33248. height: math.unit(6.1, "feet"),
  33249. name: "Ass",
  33250. image: {
  33251. source: "./media/characters/kremm/ass.svg"
  33252. }
  33253. },
  33254. jaws: {
  33255. height: math.unit(2.2, "feet"),
  33256. name: "Jaws",
  33257. image: {
  33258. source: "./media/characters/kremm/jaws.svg"
  33259. }
  33260. },
  33261. dick: {
  33262. height: math.unit(4.26, "feet"),
  33263. name: "Dick",
  33264. image: {
  33265. source: "./media/characters/kremm/dick.svg"
  33266. }
  33267. },
  33268. },
  33269. [
  33270. {
  33271. name: "Normal",
  33272. height: math.unit(10, "feet"),
  33273. default: true
  33274. },
  33275. ]
  33276. ))
  33277. characterMakers.push(() => makeCharacter(
  33278. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33279. {
  33280. front: {
  33281. height: math.unit(30, "stories"),
  33282. name: "Front",
  33283. image: {
  33284. source: "./media/characters/kai/front.svg",
  33285. extra: 1892/1718,
  33286. bottom: 162/2054
  33287. }
  33288. },
  33289. },
  33290. [
  33291. {
  33292. name: "Macro",
  33293. height: math.unit(30, "stories"),
  33294. default: true
  33295. },
  33296. ]
  33297. ))
  33298. characterMakers.push(() => makeCharacter(
  33299. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33300. {
  33301. front: {
  33302. height: math.unit(6 + 4/12, "feet"),
  33303. weight: math.unit(145, "lb"),
  33304. name: "Front",
  33305. image: {
  33306. source: "./media/characters/sykes/front.svg",
  33307. extra: 1321 / 1187,
  33308. bottom: 66 / 1387
  33309. }
  33310. },
  33311. back: {
  33312. height: math.unit(6 + 4/12, "feet"),
  33313. weight: math.unit(145, "lb"),
  33314. name: "Back",
  33315. image: {
  33316. source: "./media/characters/sykes/back.svg",
  33317. extra: 1326/1181,
  33318. bottom: 31/1357
  33319. }
  33320. },
  33321. handBack: {
  33322. height: math.unit(0.9, "feet"),
  33323. name: "Hand (Back)",
  33324. image: {
  33325. source: "./media/characters/sykes/hand-back.svg"
  33326. }
  33327. },
  33328. handFront: {
  33329. height: math.unit(0.839, "feet"),
  33330. name: "Hand (Front)",
  33331. image: {
  33332. source: "./media/characters/sykes/hand-front.svg"
  33333. }
  33334. },
  33335. leftFoot: {
  33336. height: math.unit(1.2, "feet"),
  33337. name: "Foot (Left)",
  33338. image: {
  33339. source: "./media/characters/sykes/foot-left.svg"
  33340. }
  33341. },
  33342. rightFoot: {
  33343. height: math.unit(1.2, "feet"),
  33344. name: "Foot (Right)",
  33345. image: {
  33346. source: "./media/characters/sykes/foot-right.svg"
  33347. }
  33348. },
  33349. maw: {
  33350. height: math.unit(1.93, "feet"),
  33351. name: "Maw",
  33352. image: {
  33353. source: "./media/characters/sykes/maw.svg"
  33354. }
  33355. },
  33356. teeth: {
  33357. height: math.unit(0.51, "feet"),
  33358. name: "Teeth",
  33359. image: {
  33360. source: "./media/characters/sykes/teeth.svg"
  33361. }
  33362. },
  33363. tongue: {
  33364. height: math.unit(2.13, "feet"),
  33365. name: "Tongue",
  33366. image: {
  33367. source: "./media/characters/sykes/tongue.svg"
  33368. }
  33369. },
  33370. uvula: {
  33371. height: math.unit(0.16, "feet"),
  33372. name: "Uvula",
  33373. image: {
  33374. source: "./media/characters/sykes/uvula.svg"
  33375. }
  33376. },
  33377. collar: {
  33378. height: math.unit(0.287, "feet"),
  33379. name: "Collar",
  33380. image: {
  33381. source: "./media/characters/sykes/collar.svg"
  33382. }
  33383. },
  33384. },
  33385. [
  33386. {
  33387. name: "Shrunken",
  33388. height: math.unit(5, "inches")
  33389. },
  33390. {
  33391. name: "Normal",
  33392. height: math.unit(6 + 4 / 12, "feet"),
  33393. default: true
  33394. },
  33395. {
  33396. name: "Big",
  33397. height: math.unit(15, "feet")
  33398. },
  33399. ]
  33400. ))
  33401. characterMakers.push(() => makeCharacter(
  33402. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33403. {
  33404. front: {
  33405. height: math.unit(5 + 8/12, "feet"),
  33406. weight: math.unit(190, "lb"),
  33407. name: "Front",
  33408. image: {
  33409. source: "./media/characters/oven-otter/front.svg",
  33410. extra: 1809/1740,
  33411. bottom: 181/1990
  33412. }
  33413. },
  33414. back: {
  33415. height: math.unit(5 + 8/12, "feet"),
  33416. weight: math.unit(190, "lb"),
  33417. name: "Back",
  33418. image: {
  33419. source: "./media/characters/oven-otter/back.svg",
  33420. extra: 1709/1635,
  33421. bottom: 118/1827
  33422. }
  33423. },
  33424. hand: {
  33425. height: math.unit(1.07, "feet"),
  33426. name: "Hand",
  33427. image: {
  33428. source: "./media/characters/oven-otter/hand.svg"
  33429. }
  33430. },
  33431. beans: {
  33432. height: math.unit(1.74, "feet"),
  33433. name: "Beans",
  33434. image: {
  33435. source: "./media/characters/oven-otter/beans.svg"
  33436. }
  33437. },
  33438. },
  33439. [
  33440. {
  33441. name: "Micro",
  33442. height: math.unit(0.5, "inches")
  33443. },
  33444. {
  33445. name: "Normal",
  33446. height: math.unit(5 + 8/12, "feet"),
  33447. default: true
  33448. },
  33449. {
  33450. name: "Macro",
  33451. height: math.unit(250, "feet")
  33452. },
  33453. {
  33454. name: "Really High",
  33455. height: math.unit(420, "feet")
  33456. },
  33457. ]
  33458. ))
  33459. characterMakers.push(() => makeCharacter(
  33460. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33461. {
  33462. front: {
  33463. height: math.unit(5, "meters"),
  33464. weight: math.unit(292000000000000, "kg"),
  33465. name: "Front",
  33466. image: {
  33467. source: "./media/characters/devourer/front.svg",
  33468. extra: 1800/1733,
  33469. bottom: 211/2011
  33470. }
  33471. },
  33472. maw: {
  33473. height: math.unit(1.1, "meter"),
  33474. name: "Maw",
  33475. image: {
  33476. source: "./media/characters/devourer/maw.svg"
  33477. }
  33478. },
  33479. },
  33480. [
  33481. {
  33482. name: "Small",
  33483. height: math.unit(3, "meters")
  33484. },
  33485. {
  33486. name: "Large",
  33487. height: math.unit(5, "meters"),
  33488. default: true
  33489. },
  33490. ]
  33491. ))
  33492. characterMakers.push(() => makeCharacter(
  33493. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33494. {
  33495. front: {
  33496. height: math.unit(6, "feet"),
  33497. weight: math.unit(400, "lb"),
  33498. name: "Front",
  33499. image: {
  33500. source: "./media/characters/ellarby/front.svg",
  33501. extra: 1909/1763,
  33502. bottom: 80/1989
  33503. }
  33504. },
  33505. back: {
  33506. height: math.unit(6, "feet"),
  33507. weight: math.unit(400, "lb"),
  33508. name: "Back",
  33509. image: {
  33510. source: "./media/characters/ellarby/back.svg",
  33511. extra: 1914/1784,
  33512. bottom: 172/2086
  33513. }
  33514. },
  33515. },
  33516. [
  33517. {
  33518. name: "Mischief",
  33519. height: math.unit(18, "inches")
  33520. },
  33521. {
  33522. name: "Trouble",
  33523. height: math.unit(12, "feet")
  33524. },
  33525. {
  33526. name: "Havoc",
  33527. height: math.unit(200, "feet"),
  33528. default: true
  33529. },
  33530. {
  33531. name: "Pandemonium",
  33532. height: math.unit(1, "mile")
  33533. },
  33534. {
  33535. name: "Catastrophe",
  33536. height: math.unit(100, "miles")
  33537. },
  33538. ]
  33539. ))
  33540. characterMakers.push(() => makeCharacter(
  33541. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33542. {
  33543. front: {
  33544. height: math.unit(4.7, "meters"),
  33545. weight: math.unit(6500, "kg"),
  33546. name: "Front",
  33547. image: {
  33548. source: "./media/characters/vex/front.svg",
  33549. extra: 1288/1140,
  33550. bottom: 100/1388
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(4.7, "meters"),
  33558. default: true
  33559. },
  33560. ]
  33561. ))
  33562. characterMakers.push(() => makeCharacter(
  33563. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33564. {
  33565. normal: {
  33566. height: math.unit(6, "feet"),
  33567. weight: math.unit(350, "lb"),
  33568. name: "Normal",
  33569. image: {
  33570. source: "./media/characters/teshy/normal.svg",
  33571. extra: 1795/1735,
  33572. bottom: 16/1811
  33573. }
  33574. },
  33575. monsterFront: {
  33576. height: math.unit(12, "feet"),
  33577. weight: math.unit(4700, "lb"),
  33578. name: "Monster (Front)",
  33579. image: {
  33580. source: "./media/characters/teshy/monster-front.svg",
  33581. extra: 2042/2034,
  33582. bottom: 128/2170
  33583. }
  33584. },
  33585. monsterSide: {
  33586. height: math.unit(12, "feet"),
  33587. weight: math.unit(4700, "lb"),
  33588. name: "Monster (Side)",
  33589. image: {
  33590. source: "./media/characters/teshy/monster-side.svg",
  33591. extra: 2067/2056,
  33592. bottom: 70/2137
  33593. }
  33594. },
  33595. monsterBack: {
  33596. height: math.unit(12, "feet"),
  33597. weight: math.unit(4700, "lb"),
  33598. name: "Monster (Back)",
  33599. image: {
  33600. source: "./media/characters/teshy/monster-back.svg",
  33601. extra: 1921/1914,
  33602. bottom: 171/2092
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Normal",
  33609. height: math.unit(6, "feet"),
  33610. default: true
  33611. },
  33612. ]
  33613. ))
  33614. characterMakers.push(() => makeCharacter(
  33615. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33616. {
  33617. front: {
  33618. height: math.unit(6, "feet"),
  33619. name: "Front",
  33620. image: {
  33621. source: "./media/characters/ramey/front.svg",
  33622. extra: 790/787,
  33623. bottom: 27/817
  33624. }
  33625. },
  33626. },
  33627. [
  33628. {
  33629. name: "Normal",
  33630. height: math.unit(6, "feet"),
  33631. default: true
  33632. },
  33633. ]
  33634. ))
  33635. characterMakers.push(() => makeCharacter(
  33636. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33637. {
  33638. front: {
  33639. height: math.unit(5 + 5/12, "feet"),
  33640. weight: math.unit(120, "lb"),
  33641. name: "Front",
  33642. image: {
  33643. source: "./media/characters/phirae/front.svg",
  33644. extra: 2491/2436,
  33645. bottom: 38/2529
  33646. }
  33647. },
  33648. },
  33649. [
  33650. {
  33651. name: "Normal",
  33652. height: math.unit(5 + 5/12, "feet"),
  33653. default: true
  33654. },
  33655. ]
  33656. ))
  33657. characterMakers.push(() => makeCharacter(
  33658. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33659. {
  33660. front: {
  33661. height: math.unit(6, "feet"),
  33662. weight: math.unit(150, "lb"),
  33663. name: "Front",
  33664. image: {
  33665. source: "./media/characters/stagglas/front.svg",
  33666. extra: 962/882,
  33667. bottom: 53/1015
  33668. }
  33669. },
  33670. },
  33671. [
  33672. {
  33673. name: "Normal",
  33674. height: math.unit(5 + 3/12, "feet"),
  33675. default: true
  33676. },
  33677. ]
  33678. ))
  33679. characterMakers.push(() => makeCharacter(
  33680. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33681. {
  33682. front: {
  33683. height: math.unit(5 + 4/12, "feet"),
  33684. weight: math.unit(145, "lb"),
  33685. name: "Front",
  33686. image: {
  33687. source: "./media/characters/starra/front.svg",
  33688. extra: 1790/1691,
  33689. bottom: 91/1881
  33690. }
  33691. },
  33692. },
  33693. [
  33694. {
  33695. name: "Normal",
  33696. height: math.unit(5 + 4/12, "feet"),
  33697. default: true
  33698. },
  33699. ]
  33700. ))
  33701. characterMakers.push(() => makeCharacter(
  33702. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33703. {
  33704. front: {
  33705. height: math.unit(2.2, "meters"),
  33706. name: "Front",
  33707. image: {
  33708. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33709. extra: 1194/1005,
  33710. bottom: 25/1219
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Normal",
  33717. height: math.unit(2.2, "meters"),
  33718. default: true
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33724. {
  33725. side: {
  33726. height: math.unit(8 + 2/12, "feet"),
  33727. weight: math.unit(1240, "lb"),
  33728. name: "Side",
  33729. image: {
  33730. source: "./media/characters/mika-valentine/side.svg",
  33731. extra: 2670/2501,
  33732. bottom: 250/2920
  33733. }
  33734. },
  33735. },
  33736. [
  33737. {
  33738. name: "Normal",
  33739. height: math.unit(8 + 2/12, "feet"),
  33740. default: true
  33741. },
  33742. ]
  33743. ))
  33744. characterMakers.push(() => makeCharacter(
  33745. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33746. {
  33747. front: {
  33748. height: math.unit(7 + 2/12, "feet"),
  33749. name: "Front",
  33750. image: {
  33751. source: "./media/characters/xoltol/front.svg",
  33752. extra: 2212/2124,
  33753. bottom: 84/2296
  33754. }
  33755. },
  33756. side: {
  33757. height: math.unit(7 + 2/12, "feet"),
  33758. name: "Side",
  33759. image: {
  33760. source: "./media/characters/xoltol/side.svg",
  33761. extra: 2273/2197,
  33762. bottom: 26/2299
  33763. }
  33764. },
  33765. hand: {
  33766. height: math.unit(2.5, "feet"),
  33767. name: "Hand",
  33768. image: {
  33769. source: "./media/characters/xoltol/hand.svg"
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Small-ish",
  33776. height: math.unit(5 + 11/12, "feet")
  33777. },
  33778. {
  33779. name: "Normal",
  33780. height: math.unit(7 + 2/12, "feet")
  33781. },
  33782. {
  33783. name: "\"Macro\"",
  33784. height: math.unit(14 + 9/12, "feet"),
  33785. default: true
  33786. },
  33787. {
  33788. name: "Alternate Height",
  33789. height: math.unit(20, "feet")
  33790. },
  33791. {
  33792. name: "Actually Macro",
  33793. height: math.unit(100, "feet")
  33794. },
  33795. ]
  33796. ))
  33797. characterMakers.push(() => makeCharacter(
  33798. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33799. {
  33800. front: {
  33801. height: math.unit(5 + 2/12, "feet"),
  33802. name: "Front",
  33803. image: {
  33804. source: "./media/characters/kotetsu-redwood/front.svg",
  33805. extra: 1053/942,
  33806. bottom: 60/1113
  33807. }
  33808. },
  33809. },
  33810. [
  33811. {
  33812. name: "Normal",
  33813. height: math.unit(5 + 2/12, "feet"),
  33814. default: true
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33820. {
  33821. front: {
  33822. height: math.unit(2.4, "meters"),
  33823. weight: math.unit(125, "kg"),
  33824. name: "Front",
  33825. image: {
  33826. source: "./media/characters/lilith/front.svg",
  33827. extra: 1590/1513,
  33828. bottom: 203/1793
  33829. }
  33830. },
  33831. },
  33832. [
  33833. {
  33834. name: "Humanoid",
  33835. height: math.unit(2.4, "meters")
  33836. },
  33837. {
  33838. name: "Normal",
  33839. height: math.unit(6, "meters"),
  33840. default: true
  33841. },
  33842. {
  33843. name: "Largest",
  33844. height: math.unit(55, "meters")
  33845. },
  33846. ]
  33847. ))
  33848. characterMakers.push(() => makeCharacter(
  33849. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33850. {
  33851. front: {
  33852. height: math.unit(8 + 4/12, "feet"),
  33853. weight: math.unit(535, "lb"),
  33854. name: "Front",
  33855. image: {
  33856. source: "./media/characters/beh'kah-bolger/front.svg",
  33857. extra: 1660/1603,
  33858. bottom: 37/1697
  33859. }
  33860. },
  33861. },
  33862. [
  33863. {
  33864. name: "Normal",
  33865. height: math.unit(8 + 4/12, "feet"),
  33866. default: true
  33867. },
  33868. {
  33869. name: "Kaiju",
  33870. height: math.unit(250, "feet")
  33871. },
  33872. {
  33873. name: "Still Growing",
  33874. height: math.unit(10, "miles")
  33875. },
  33876. {
  33877. name: "Continental",
  33878. height: math.unit(5000, "miles")
  33879. },
  33880. {
  33881. name: "Final Form",
  33882. height: math.unit(2500000, "miles")
  33883. },
  33884. ]
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33888. {
  33889. front: {
  33890. height: math.unit(7 + 2/12, "feet"),
  33891. weight: math.unit(230, "kg"),
  33892. name: "Front",
  33893. image: {
  33894. source: "./media/characters/tatyana-milewska/front.svg",
  33895. extra: 1199/1150,
  33896. bottom: 86/1285
  33897. }
  33898. },
  33899. },
  33900. [
  33901. {
  33902. name: "Normal",
  33903. height: math.unit(7 + 2/12, "feet"),
  33904. default: true
  33905. },
  33906. {
  33907. name: "Big",
  33908. height: math.unit(12, "feet")
  33909. },
  33910. {
  33911. name: "Minimacro",
  33912. height: math.unit(20, "feet")
  33913. },
  33914. {
  33915. name: "Macro",
  33916. height: math.unit(120, "feet")
  33917. },
  33918. ]
  33919. ))
  33920. characterMakers.push(() => makeCharacter(
  33921. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33922. {
  33923. front: {
  33924. height: math.unit(7 + 8/12, "feet"),
  33925. weight: math.unit(152, "kg"),
  33926. name: "Front",
  33927. image: {
  33928. source: "./media/characters/helen-arri/front.svg",
  33929. extra: 440/423,
  33930. bottom: 14/454
  33931. }
  33932. },
  33933. back: {
  33934. height: math.unit(7 + 8/12, "feet"),
  33935. weight: math.unit(152, "kg"),
  33936. name: "Back",
  33937. image: {
  33938. source: "./media/characters/helen-arri/back.svg",
  33939. extra: 443/426,
  33940. bottom: 8/451
  33941. }
  33942. },
  33943. },
  33944. [
  33945. {
  33946. name: "Normal",
  33947. height: math.unit(7 + 8/12, "feet"),
  33948. default: true
  33949. },
  33950. {
  33951. name: "Big",
  33952. height: math.unit(14, "feet")
  33953. },
  33954. {
  33955. name: "Minimacro",
  33956. height: math.unit(24, "feet")
  33957. },
  33958. {
  33959. name: "Macro",
  33960. height: math.unit(140, "feet")
  33961. },
  33962. ]
  33963. ))
  33964. characterMakers.push(() => makeCharacter(
  33965. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33966. {
  33967. front: {
  33968. height: math.unit(6, "meters"),
  33969. name: "Front",
  33970. image: {
  33971. source: "./media/characters/ehanu-rehu/front.svg",
  33972. extra: 1800/1800,
  33973. bottom: 59/1859
  33974. }
  33975. },
  33976. },
  33977. [
  33978. {
  33979. name: "Normal",
  33980. height: math.unit(6, "meters"),
  33981. default: true
  33982. },
  33983. ]
  33984. ))
  33985. characterMakers.push(() => makeCharacter(
  33986. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33987. {
  33988. front: {
  33989. height: math.unit(7 + 3/12, "feet"),
  33990. name: "Front",
  33991. image: {
  33992. source: "./media/characters/renholder/front.svg",
  33993. extra: 3096/2960,
  33994. bottom: 250/3346
  33995. }
  33996. },
  33997. },
  33998. [
  33999. {
  34000. name: "Normal Bat",
  34001. height: math.unit(7 + 3/12, "feet"),
  34002. default: true
  34003. },
  34004. {
  34005. name: "Slightly Tall Bat",
  34006. height: math.unit(100, "feet")
  34007. },
  34008. {
  34009. name: "Big Bat",
  34010. height: math.unit(1000, "feet")
  34011. },
  34012. {
  34013. name: "City-Sized Bat",
  34014. height: math.unit(200000, "feet")
  34015. },
  34016. {
  34017. name: "Bigger Bat",
  34018. height: math.unit(10000, "miles")
  34019. },
  34020. {
  34021. name: "Solar Sized Bat",
  34022. height: math.unit(100, "AU")
  34023. },
  34024. {
  34025. name: "Galactic Bat",
  34026. height: math.unit(200000, "lightyears")
  34027. },
  34028. {
  34029. name: "Universally Known Bat",
  34030. height: math.unit(1, "universe")
  34031. },
  34032. ]
  34033. ))
  34034. characterMakers.push(() => makeCharacter(
  34035. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34036. {
  34037. front: {
  34038. height: math.unit(6 + 11/12, "feet"),
  34039. weight: math.unit(250, "lb"),
  34040. name: "Front",
  34041. image: {
  34042. source: "./media/characters/cookiecat/front.svg",
  34043. extra: 893/827,
  34044. bottom: 14/907
  34045. }
  34046. },
  34047. },
  34048. [
  34049. {
  34050. name: "Micro",
  34051. height: math.unit(3, "inches")
  34052. },
  34053. {
  34054. name: "Normal",
  34055. height: math.unit(6 + 11/12, "feet"),
  34056. default: true
  34057. },
  34058. {
  34059. name: "Macro",
  34060. height: math.unit(100, "feet")
  34061. },
  34062. {
  34063. name: "Macro+",
  34064. height: math.unit(404, "feet")
  34065. },
  34066. {
  34067. name: "Megamacro",
  34068. height: math.unit(165, "miles")
  34069. },
  34070. {
  34071. name: "Planetary",
  34072. height: math.unit(4600, "miles")
  34073. },
  34074. ]
  34075. ))
  34076. characterMakers.push(() => makeCharacter(
  34077. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34078. {
  34079. front: {
  34080. height: math.unit(10 + 3/12, "feet"),
  34081. weight: math.unit(1500, "lb"),
  34082. name: "Front",
  34083. image: {
  34084. source: "./media/characters/tux-kusanagi/front.svg",
  34085. extra: 944/840,
  34086. bottom: 39/983
  34087. }
  34088. },
  34089. back: {
  34090. height: math.unit(10 + 3/12, "feet"),
  34091. weight: math.unit(1500, "lb"),
  34092. name: "Back",
  34093. image: {
  34094. source: "./media/characters/tux-kusanagi/back.svg",
  34095. extra: 941/842,
  34096. bottom: 28/969
  34097. }
  34098. },
  34099. rump: {
  34100. height: math.unit(5.25, "feet"),
  34101. name: "Rump",
  34102. image: {
  34103. source: "./media/characters/tux-kusanagi/rump.svg"
  34104. }
  34105. },
  34106. beak: {
  34107. height: math.unit(1.54, "feet"),
  34108. name: "Beak",
  34109. image: {
  34110. source: "./media/characters/tux-kusanagi/beak.svg"
  34111. }
  34112. },
  34113. },
  34114. [
  34115. {
  34116. name: "Normal",
  34117. height: math.unit(10 + 3/12, "feet"),
  34118. default: true
  34119. },
  34120. ]
  34121. ))
  34122. characterMakers.push(() => makeCharacter(
  34123. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34124. {
  34125. front: {
  34126. height: math.unit(58, "feet"),
  34127. weight: math.unit(200, "tons"),
  34128. name: "Front",
  34129. image: {
  34130. source: "./media/characters/uzarmazari/front.svg",
  34131. extra: 1575/1455,
  34132. bottom: 152/1727
  34133. }
  34134. },
  34135. back: {
  34136. height: math.unit(58, "feet"),
  34137. weight: math.unit(200, "tons"),
  34138. name: "Back",
  34139. image: {
  34140. source: "./media/characters/uzarmazari/back.svg",
  34141. extra: 1585/1510,
  34142. bottom: 157/1742
  34143. }
  34144. },
  34145. head: {
  34146. height: math.unit(26, "feet"),
  34147. name: "Head",
  34148. image: {
  34149. source: "./media/characters/uzarmazari/head.svg"
  34150. }
  34151. },
  34152. },
  34153. [
  34154. {
  34155. name: "Normal",
  34156. height: math.unit(58, "feet"),
  34157. default: true
  34158. },
  34159. ]
  34160. ))
  34161. characterMakers.push(() => makeCharacter(
  34162. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34163. {
  34164. side: {
  34165. height: math.unit(15, "feet"),
  34166. name: "Side",
  34167. image: {
  34168. source: "./media/characters/akitu/side.svg",
  34169. extra: 1421/1321,
  34170. bottom: 157/1578
  34171. }
  34172. },
  34173. front: {
  34174. height: math.unit(15, "feet"),
  34175. name: "Front",
  34176. image: {
  34177. source: "./media/characters/akitu/front.svg",
  34178. extra: 1435/1326,
  34179. bottom: 232/1667
  34180. }
  34181. },
  34182. },
  34183. [
  34184. {
  34185. name: "Normal",
  34186. height: math.unit(15, "feet"),
  34187. default: true
  34188. },
  34189. ]
  34190. ))
  34191. characterMakers.push(() => makeCharacter(
  34192. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34193. {
  34194. front: {
  34195. height: math.unit(10 + 8/12, "feet"),
  34196. name: "Front",
  34197. image: {
  34198. source: "./media/characters/azalie-croixland/front.svg",
  34199. extra: 1972/1856,
  34200. bottom: 31/2003
  34201. }
  34202. },
  34203. },
  34204. [
  34205. {
  34206. name: "Original Height",
  34207. height: math.unit(5 + 4/12, "feet")
  34208. },
  34209. {
  34210. name: "Normal Height",
  34211. height: math.unit(10 + 8/12, "feet"),
  34212. default: true
  34213. },
  34214. ]
  34215. ))
  34216. characterMakers.push(() => makeCharacter(
  34217. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34218. {
  34219. side: {
  34220. height: math.unit(7 + 1/12, "feet"),
  34221. weight: math.unit(245, "lb"),
  34222. name: "Side",
  34223. image: {
  34224. source: "./media/characters/kavus-kazian/side.svg",
  34225. extra: 349/342,
  34226. bottom: 15/364
  34227. }
  34228. },
  34229. },
  34230. [
  34231. {
  34232. name: "Normal",
  34233. height: math.unit(7 + 1/12, "feet"),
  34234. default: true
  34235. },
  34236. ]
  34237. ))
  34238. characterMakers.push(() => makeCharacter(
  34239. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34240. {
  34241. normal: {
  34242. height: math.unit(5 + 11/12, "feet"),
  34243. name: "Normal",
  34244. image: {
  34245. source: "./media/characters/moonlight-rose/normal.svg",
  34246. extra: 1979/1835,
  34247. bottom: 14/1993
  34248. }
  34249. },
  34250. demon: {
  34251. height: math.unit(5, "km"),
  34252. name: "Demon",
  34253. image: {
  34254. source: "./media/characters/moonlight-rose/demon.svg",
  34255. extra: 986/916,
  34256. bottom: 28/1014
  34257. }
  34258. },
  34259. },
  34260. [
  34261. {
  34262. name: "\"Natural\" height",
  34263. height: math.unit(5 + 11/12, "feet")
  34264. },
  34265. {
  34266. name: "Comfortable Size",
  34267. height: math.unit(40, "meters")
  34268. },
  34269. {
  34270. name: "Common Size",
  34271. height: math.unit(50, "km"),
  34272. default: true
  34273. },
  34274. {
  34275. name: "Demonic",
  34276. height: math.unit(1.24415e+21, "meters")
  34277. },
  34278. ]
  34279. ))
  34280. characterMakers.push(() => makeCharacter(
  34281. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34282. {
  34283. front: {
  34284. height: math.unit(16, "feet"),
  34285. weight: math.unit(610, "kg"),
  34286. name: "Front",
  34287. image: {
  34288. source: "./media/characters/huckle/front.svg",
  34289. extra: 1731/1625,
  34290. bottom: 33/1764
  34291. }
  34292. },
  34293. back: {
  34294. height: math.unit(16, "feet"),
  34295. weight: math.unit(610, "kg"),
  34296. name: "Back",
  34297. image: {
  34298. source: "./media/characters/huckle/back.svg",
  34299. extra: 1738/1651,
  34300. bottom: 37/1775
  34301. }
  34302. },
  34303. laughing: {
  34304. height: math.unit(3.75, "feet"),
  34305. name: "Laughing",
  34306. image: {
  34307. source: "./media/characters/huckle/laughing.svg"
  34308. }
  34309. },
  34310. angry: {
  34311. height: math.unit(4.15, "feet"),
  34312. name: "Angry",
  34313. image: {
  34314. source: "./media/characters/huckle/angry.svg"
  34315. }
  34316. },
  34317. },
  34318. [
  34319. {
  34320. name: "Normal",
  34321. height: math.unit(16, "feet"),
  34322. default: true
  34323. },
  34324. {
  34325. name: "Mini Macro",
  34326. height: math.unit(463, "feet")
  34327. },
  34328. {
  34329. name: "Macro",
  34330. height: math.unit(1680, "meters")
  34331. },
  34332. {
  34333. name: "Mega Macro",
  34334. height: math.unit(175, "km")
  34335. },
  34336. {
  34337. name: "Terra Macro",
  34338. height: math.unit(32, "gigameters")
  34339. },
  34340. {
  34341. name: "Multiverse+",
  34342. height: math.unit(2.56e23, "yottameters")
  34343. },
  34344. ]
  34345. ))
  34346. characterMakers.push(() => makeCharacter(
  34347. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34348. {
  34349. front: {
  34350. height: math.unit(6 + 9/12, "feet"),
  34351. weight: math.unit(280, "lb"),
  34352. name: "Front",
  34353. image: {
  34354. source: "./media/characters/candy/front.svg",
  34355. extra: 234/217,
  34356. bottom: 11/245
  34357. }
  34358. },
  34359. },
  34360. [
  34361. {
  34362. name: "Really Small",
  34363. height: math.unit(0.1, "nm")
  34364. },
  34365. {
  34366. name: "Micro",
  34367. height: math.unit(2, "inches")
  34368. },
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(6 + 9/12, "feet"),
  34372. default: true
  34373. },
  34374. {
  34375. name: "Small Macro",
  34376. height: math.unit(69, "feet")
  34377. },
  34378. {
  34379. name: "Macro",
  34380. height: math.unit(160, "feet")
  34381. },
  34382. {
  34383. name: "Megamacro",
  34384. height: math.unit(22000, "miles")
  34385. },
  34386. {
  34387. name: "Gigamacro",
  34388. height: math.unit(50000, "miles")
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34394. {
  34395. front: {
  34396. height: math.unit(4, "feet"),
  34397. weight: math.unit(90, "lb"),
  34398. name: "Front",
  34399. image: {
  34400. source: "./media/characters/joey-mcdonald/front.svg",
  34401. extra: 1059/852,
  34402. bottom: 33/1092
  34403. }
  34404. },
  34405. back: {
  34406. height: math.unit(4, "feet"),
  34407. weight: math.unit(90, "lb"),
  34408. name: "Back",
  34409. image: {
  34410. source: "./media/characters/joey-mcdonald/back.svg",
  34411. extra: 1077/879,
  34412. bottom: 5/1082
  34413. }
  34414. },
  34415. },
  34416. [
  34417. {
  34418. name: "Normal",
  34419. height: math.unit(4, "feet"),
  34420. default: true
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(12 + 6/12, "feet"),
  34429. name: "Front",
  34430. image: {
  34431. source: "./media/characters/kass-lockheed/front.svg",
  34432. extra: 354/343,
  34433. bottom: 9/363
  34434. }
  34435. },
  34436. back: {
  34437. height: math.unit(12 + 6/12, "feet"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/kass-lockheed/back.svg",
  34441. extra: 364/352,
  34442. bottom: 3/367
  34443. }
  34444. },
  34445. dick: {
  34446. height: math.unit(3.12, "feet"),
  34447. name: "Dick",
  34448. image: {
  34449. source: "./media/characters/kass-lockheed/dick.svg"
  34450. }
  34451. },
  34452. head: {
  34453. height: math.unit(2.6, "feet"),
  34454. name: "Head",
  34455. image: {
  34456. source: "./media/characters/kass-lockheed/head.svg"
  34457. }
  34458. },
  34459. bleh: {
  34460. height: math.unit(2.85, "feet"),
  34461. name: "Bleh",
  34462. image: {
  34463. source: "./media/characters/kass-lockheed/bleh.svg"
  34464. }
  34465. },
  34466. smug: {
  34467. height: math.unit(2.85, "feet"),
  34468. name: "Smug",
  34469. image: {
  34470. source: "./media/characters/kass-lockheed/smug.svg"
  34471. }
  34472. },
  34473. },
  34474. [
  34475. {
  34476. name: "Normal",
  34477. height: math.unit(12 + 6/12, "feet"),
  34478. default: true
  34479. },
  34480. ]
  34481. ))
  34482. characterMakers.push(() => makeCharacter(
  34483. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34484. {
  34485. front: {
  34486. height: math.unit(6 + 2/12, "feet"),
  34487. name: "Front",
  34488. image: {
  34489. source: "./media/characters/taylor/front.svg",
  34490. extra: 639/495,
  34491. bottom: 12/651
  34492. }
  34493. },
  34494. },
  34495. [
  34496. {
  34497. name: "Normal",
  34498. height: math.unit(6 + 2/12, "feet"),
  34499. default: true
  34500. },
  34501. {
  34502. name: "Big",
  34503. height: math.unit(15, "feet")
  34504. },
  34505. {
  34506. name: "Lorg",
  34507. height: math.unit(80, "feet")
  34508. },
  34509. {
  34510. name: "Too Lorg",
  34511. height: math.unit(120, "feet")
  34512. },
  34513. ]
  34514. ))
  34515. characterMakers.push(() => makeCharacter(
  34516. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34517. {
  34518. front: {
  34519. height: math.unit(15, "feet"),
  34520. name: "Front",
  34521. image: {
  34522. source: "./media/characters/kaizer/front.svg",
  34523. extra: 1612/1436,
  34524. bottom: 43/1655
  34525. }
  34526. },
  34527. },
  34528. [
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(15, "feet"),
  34532. default: true
  34533. },
  34534. ]
  34535. ))
  34536. characterMakers.push(() => makeCharacter(
  34537. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34538. {
  34539. front: {
  34540. height: math.unit(2, "feet"),
  34541. weight: math.unit(30, "lb"),
  34542. name: "Front",
  34543. image: {
  34544. source: "./media/characters/sandy/front.svg",
  34545. extra: 1439/1307,
  34546. bottom: 194/1633
  34547. }
  34548. },
  34549. },
  34550. [
  34551. {
  34552. name: "Normal",
  34553. height: math.unit(2, "feet"),
  34554. default: true
  34555. },
  34556. ]
  34557. ))
  34558. characterMakers.push(() => makeCharacter(
  34559. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34560. {
  34561. front: {
  34562. height: math.unit(3, "feet"),
  34563. name: "Front",
  34564. image: {
  34565. source: "./media/characters/mellvi/front.svg",
  34566. extra: 1831/1630,
  34567. bottom: 58/1889
  34568. }
  34569. },
  34570. },
  34571. [
  34572. {
  34573. name: "Normal",
  34574. height: math.unit(3, "feet"),
  34575. default: true
  34576. },
  34577. ]
  34578. ))
  34579. characterMakers.push(() => makeCharacter(
  34580. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34581. {
  34582. front: {
  34583. height: math.unit(5 + 11/12, "feet"),
  34584. weight: math.unit(200, "lb"),
  34585. name: "Front",
  34586. image: {
  34587. source: "./media/characters/shirou/front.svg",
  34588. extra: 2491/2383,
  34589. bottom: 189/2680
  34590. }
  34591. },
  34592. back: {
  34593. height: math.unit(5 + 11/12, "feet"),
  34594. weight: math.unit(200, "lb"),
  34595. name: "Back",
  34596. image: {
  34597. source: "./media/characters/shirou/back.svg",
  34598. extra: 2554/2450,
  34599. bottom: 76/2630
  34600. }
  34601. },
  34602. },
  34603. [
  34604. {
  34605. name: "Normal",
  34606. height: math.unit(5 + 11/12, "feet"),
  34607. default: true
  34608. },
  34609. ]
  34610. ))
  34611. characterMakers.push(() => makeCharacter(
  34612. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34613. {
  34614. front: {
  34615. height: math.unit(6 + 3/12, "feet"),
  34616. weight: math.unit(177, "lb"),
  34617. name: "Front",
  34618. image: {
  34619. source: "./media/characters/noryu/front.svg",
  34620. extra: 973/885,
  34621. bottom: 10/983
  34622. }
  34623. },
  34624. },
  34625. [
  34626. {
  34627. name: "Normal",
  34628. height: math.unit(6 + 3/12, "feet"),
  34629. default: true
  34630. },
  34631. ]
  34632. ))
  34633. characterMakers.push(() => makeCharacter(
  34634. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34635. {
  34636. front: {
  34637. height: math.unit(5 + 6/12, "feet"),
  34638. weight: math.unit(170, "lb"),
  34639. name: "Front",
  34640. image: {
  34641. source: "./media/characters/mevolas-rubenido/front.svg",
  34642. extra: 2109/1901,
  34643. bottom: 96/2205
  34644. }
  34645. },
  34646. },
  34647. [
  34648. {
  34649. name: "Normal",
  34650. height: math.unit(5 + 6/12, "feet"),
  34651. default: true
  34652. },
  34653. ]
  34654. ))
  34655. characterMakers.push(() => makeCharacter(
  34656. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34657. {
  34658. front: {
  34659. height: math.unit(100, "feet"),
  34660. name: "Front",
  34661. image: {
  34662. source: "./media/characters/dee/front.svg",
  34663. extra: 2153/2036,
  34664. bottom: 59/2212
  34665. }
  34666. },
  34667. back: {
  34668. height: math.unit(100, "feet"),
  34669. name: "Back",
  34670. image: {
  34671. source: "./media/characters/dee/back.svg",
  34672. extra: 2183/2058,
  34673. bottom: 75/2258
  34674. }
  34675. },
  34676. foot: {
  34677. height: math.unit(19.43, "feet"),
  34678. name: "Foot",
  34679. image: {
  34680. source: "./media/characters/dee/foot.svg"
  34681. }
  34682. },
  34683. hoof: {
  34684. height: math.unit(20.6, "feet"),
  34685. name: "Hoof",
  34686. image: {
  34687. source: "./media/characters/dee/hoof.svg"
  34688. }
  34689. },
  34690. },
  34691. [
  34692. {
  34693. name: "Macro",
  34694. height: math.unit(100, "feet"),
  34695. default: true
  34696. },
  34697. ]
  34698. ))
  34699. characterMakers.push(() => makeCharacter(
  34700. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34701. {
  34702. front: {
  34703. height: math.unit(5 + 6/12, "feet"),
  34704. name: "Front",
  34705. image: {
  34706. source: "./media/characters/teh/front.svg",
  34707. extra: 1002/847,
  34708. bottom: 62/1064
  34709. }
  34710. },
  34711. },
  34712. [
  34713. {
  34714. name: "Normal",
  34715. height: math.unit(5 + 6/12, "feet"),
  34716. default: true
  34717. },
  34718. ]
  34719. ))
  34720. characterMakers.push(() => makeCharacter(
  34721. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34722. {
  34723. side: {
  34724. height: math.unit(6 + 1/12, "feet"),
  34725. weight: math.unit(204, "lb"),
  34726. name: "Side",
  34727. image: {
  34728. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34729. extra: 974/775,
  34730. bottom: 169/1143
  34731. }
  34732. },
  34733. sitting: {
  34734. height: math.unit(6 + 2/12, "feet"),
  34735. weight: math.unit(204, "lb"),
  34736. name: "Sitting",
  34737. image: {
  34738. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34739. extra: 1175/964,
  34740. bottom: 378/1553
  34741. }
  34742. },
  34743. },
  34744. [
  34745. {
  34746. name: "Normal",
  34747. height: math.unit(6 + 1/12, "feet"),
  34748. default: true
  34749. },
  34750. ]
  34751. ))
  34752. characterMakers.push(() => makeCharacter(
  34753. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34754. {
  34755. front: {
  34756. height: math.unit(6, "inches"),
  34757. name: "Front",
  34758. image: {
  34759. source: "./media/characters/tululi/front.svg",
  34760. extra: 1997/1876,
  34761. bottom: 20/2017
  34762. }
  34763. },
  34764. },
  34765. [
  34766. {
  34767. name: "Normal",
  34768. height: math.unit(6, "inches"),
  34769. default: true
  34770. },
  34771. ]
  34772. ))
  34773. characterMakers.push(() => makeCharacter(
  34774. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34775. {
  34776. front: {
  34777. height: math.unit(4 + 1/12, "feet"),
  34778. name: "Front",
  34779. image: {
  34780. source: "./media/characters/star/front.svg",
  34781. extra: 1493/1189,
  34782. bottom: 48/1541
  34783. }
  34784. },
  34785. },
  34786. [
  34787. {
  34788. name: "Normal",
  34789. height: math.unit(4 + 1/12, "feet"),
  34790. default: true
  34791. },
  34792. ]
  34793. ))
  34794. characterMakers.push(() => makeCharacter(
  34795. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34796. {
  34797. front: {
  34798. height: math.unit(6 + 3/12, "feet"),
  34799. name: "Front",
  34800. image: {
  34801. source: "./media/characters/comet/front.svg",
  34802. extra: 1681/1462,
  34803. bottom: 26/1707
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Normal",
  34810. height: math.unit(6 + 3/12, "feet"),
  34811. default: true
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(950, "feet"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/vortex/front.svg",
  34823. extra: 1497/1434,
  34824. bottom: 56/1553
  34825. }
  34826. },
  34827. maw: {
  34828. height: math.unit(285, "feet"),
  34829. name: "Maw",
  34830. image: {
  34831. source: "./media/characters/vortex/maw.svg"
  34832. }
  34833. },
  34834. },
  34835. [
  34836. {
  34837. name: "Macro",
  34838. height: math.unit(950, "feet"),
  34839. default: true
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34845. {
  34846. front: {
  34847. height: math.unit(600, "feet"),
  34848. weight: math.unit(0.02, "grams"),
  34849. name: "Front",
  34850. image: {
  34851. source: "./media/characters/doodle/front.svg",
  34852. extra: 1578/1413,
  34853. bottom: 37/1615
  34854. }
  34855. },
  34856. },
  34857. [
  34858. {
  34859. name: "Macro",
  34860. height: math.unit(600, "feet"),
  34861. default: true
  34862. },
  34863. ]
  34864. ))
  34865. characterMakers.push(() => makeCharacter(
  34866. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34867. {
  34868. front: {
  34869. height: math.unit(6 + 6/12, "feet"),
  34870. name: "Front",
  34871. image: {
  34872. source: "./media/characters/jai/front.svg",
  34873. extra: 1645/1534,
  34874. bottom: 115/1760
  34875. }
  34876. },
  34877. },
  34878. [
  34879. {
  34880. name: "Normal",
  34881. height: math.unit(6 + 6/12, "feet"),
  34882. default: true
  34883. },
  34884. ]
  34885. ))
  34886. characterMakers.push(() => makeCharacter(
  34887. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34888. {
  34889. front: {
  34890. height: math.unit(6 + 8/12, "feet"),
  34891. name: "Front",
  34892. image: {
  34893. source: "./media/characters/pixel/front.svg",
  34894. extra: 1900/1735,
  34895. bottom: 63/1963
  34896. }
  34897. },
  34898. },
  34899. [
  34900. {
  34901. name: "Normal",
  34902. height: math.unit(6 + 8/12, "feet"),
  34903. default: true
  34904. },
  34905. ]
  34906. ))
  34907. characterMakers.push(() => makeCharacter(
  34908. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34909. {
  34910. front: {
  34911. height: math.unit(4 + 11/12, "feet"),
  34912. weight: math.unit(111, "lb"),
  34913. name: "Front",
  34914. image: {
  34915. source: "./media/characters/rhett/front.svg",
  34916. extra: 1682/1586,
  34917. bottom: 92/1774
  34918. }
  34919. },
  34920. },
  34921. [
  34922. {
  34923. name: "Mini",
  34924. height: math.unit(1 + 1/12, "feet")
  34925. },
  34926. {
  34927. name: "Normal",
  34928. height: math.unit(4 + 11/12, "feet"),
  34929. default: true
  34930. },
  34931. ]
  34932. ))
  34933. characterMakers.push(() => makeCharacter(
  34934. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34935. {
  34936. front: {
  34937. height: math.unit(3 + 3/12, "feet"),
  34938. name: "Front",
  34939. image: {
  34940. source: "./media/characters/penny/front.svg",
  34941. extra: 1406/1311,
  34942. bottom: 26/1432
  34943. }
  34944. },
  34945. },
  34946. [
  34947. {
  34948. name: "Normal",
  34949. height: math.unit(3 + 3/12, "feet"),
  34950. default: true
  34951. },
  34952. ]
  34953. ))
  34954. characterMakers.push(() => makeCharacter(
  34955. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34956. {
  34957. front: {
  34958. height: math.unit(4 + 11/12, "feet"),
  34959. name: "Front",
  34960. image: {
  34961. source: "./media/characters/monty/front.svg",
  34962. extra: 1479/1209,
  34963. bottom: 0/1479
  34964. }
  34965. },
  34966. },
  34967. [
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(4 + 11/12, "feet"),
  34971. default: true
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34977. {
  34978. front: {
  34979. height: math.unit(8 + 4/12, "feet"),
  34980. name: "Front",
  34981. image: {
  34982. source: "./media/characters/sterling/front.svg",
  34983. extra: 1420/1236,
  34984. bottom: 27/1447
  34985. }
  34986. },
  34987. },
  34988. [
  34989. {
  34990. name: "Normal",
  34991. height: math.unit(8 + 4/12, "feet"),
  34992. default: true
  34993. },
  34994. ]
  34995. ))
  34996. characterMakers.push(() => makeCharacter(
  34997. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34998. {
  34999. front: {
  35000. height: math.unit(15, "feet"),
  35001. name: "Front",
  35002. image: {
  35003. source: "./media/characters/marble/front.svg",
  35004. extra: 973/937,
  35005. bottom: 32/1005
  35006. }
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(15, "feet"),
  35013. default: true
  35014. },
  35015. ]
  35016. ))
  35017. characterMakers.push(() => makeCharacter(
  35018. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35019. {
  35020. front: {
  35021. height: math.unit(3, "inches"),
  35022. name: "Front",
  35023. image: {
  35024. source: "./media/characters/powder/front.svg",
  35025. extra: 1504/1334,
  35026. bottom: 518/2022
  35027. }
  35028. },
  35029. },
  35030. [
  35031. {
  35032. name: "Normal",
  35033. height: math.unit(3, "inches"),
  35034. default: true
  35035. },
  35036. ]
  35037. ))
  35038. characterMakers.push(() => makeCharacter(
  35039. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35040. {
  35041. front: {
  35042. height: math.unit(4 + 5/12, "feet"),
  35043. name: "Front",
  35044. image: {
  35045. source: "./media/characters/joey-raccoon/front.svg",
  35046. extra: 1273/1197,
  35047. bottom: 0/1273
  35048. }
  35049. },
  35050. },
  35051. [
  35052. {
  35053. name: "Normal",
  35054. height: math.unit(4 + 5/12, "feet"),
  35055. default: true
  35056. },
  35057. ]
  35058. ))
  35059. characterMakers.push(() => makeCharacter(
  35060. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35061. {
  35062. front: {
  35063. height: math.unit(8 + 4/12, "feet"),
  35064. name: "Front",
  35065. image: {
  35066. source: "./media/characters/vick/front.svg",
  35067. extra: 2187/2118,
  35068. bottom: 47/2234
  35069. }
  35070. },
  35071. },
  35072. [
  35073. {
  35074. name: "Normal",
  35075. height: math.unit(8 + 4/12, "feet"),
  35076. default: true
  35077. },
  35078. ]
  35079. ))
  35080. characterMakers.push(() => makeCharacter(
  35081. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35082. {
  35083. front: {
  35084. height: math.unit(5 + 5/12, "feet"),
  35085. name: "Front",
  35086. image: {
  35087. source: "./media/characters/mitsy/front.svg",
  35088. extra: 1842/1695,
  35089. bottom: 0/1842
  35090. }
  35091. },
  35092. },
  35093. [
  35094. {
  35095. name: "Normal",
  35096. height: math.unit(5 + 5/12, "feet"),
  35097. default: true
  35098. },
  35099. ]
  35100. ))
  35101. characterMakers.push(() => makeCharacter(
  35102. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35103. {
  35104. front: {
  35105. height: math.unit(6 + 3/12, "feet"),
  35106. name: "Front",
  35107. image: {
  35108. source: "./media/characters/silvy/front.svg",
  35109. extra: 1995/1836,
  35110. bottom: 225/2220
  35111. }
  35112. },
  35113. },
  35114. [
  35115. {
  35116. name: "Normal",
  35117. height: math.unit(6 + 3/12, "feet"),
  35118. default: true
  35119. },
  35120. ]
  35121. ))
  35122. characterMakers.push(() => makeCharacter(
  35123. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35124. {
  35125. front: {
  35126. height: math.unit(3 + 8/12, "feet"),
  35127. name: "Front",
  35128. image: {
  35129. source: "./media/characters/rodney/front.svg",
  35130. extra: 1956/1747,
  35131. bottom: 31/1987
  35132. }
  35133. },
  35134. frontDressed: {
  35135. height: math.unit(2.9, "feet"),
  35136. name: "Front (Dressed)",
  35137. image: {
  35138. source: "./media/characters/rodney/front-dressed.svg",
  35139. extra: 1382/1241,
  35140. bottom: 385/1767
  35141. }
  35142. },
  35143. },
  35144. [
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(3 + 8/12, "feet"),
  35148. default: true
  35149. },
  35150. ]
  35151. ))
  35152. characterMakers.push(() => makeCharacter(
  35153. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35154. {
  35155. front: {
  35156. height: math.unit(5 + 9/12, "feet"),
  35157. weight: math.unit(194, "lbs"),
  35158. name: "Front",
  35159. image: {
  35160. source: "./media/characters/zakail-sudekai/front.svg",
  35161. extra: 2696/2533,
  35162. bottom: 248/2944
  35163. }
  35164. },
  35165. maw: {
  35166. height: math.unit(1.35, "feet"),
  35167. name: "Maw",
  35168. image: {
  35169. source: "./media/characters/zakail-sudekai/maw.svg"
  35170. }
  35171. },
  35172. },
  35173. [
  35174. {
  35175. name: "Normal",
  35176. height: math.unit(5 + 9/12, "feet"),
  35177. default: true
  35178. },
  35179. ]
  35180. ))
  35181. characterMakers.push(() => makeCharacter(
  35182. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35183. {
  35184. front: {
  35185. height: math.unit(8 + 4/12, "feet"),
  35186. weight: math.unit(1200, "lb"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/eleanor/front.svg",
  35190. extra: 1226/1192,
  35191. bottom: 52/1278
  35192. }
  35193. },
  35194. back: {
  35195. height: math.unit(8 + 4/12, "feet"),
  35196. weight: math.unit(1200, "lb"),
  35197. name: "Back",
  35198. image: {
  35199. source: "./media/characters/eleanor/back.svg",
  35200. extra: 1242/1184,
  35201. bottom: 60/1302
  35202. }
  35203. },
  35204. head: {
  35205. height: math.unit(2.62, "feet"),
  35206. name: "Head",
  35207. image: {
  35208. source: "./media/characters/eleanor/head.svg"
  35209. }
  35210. },
  35211. },
  35212. [
  35213. {
  35214. name: "Normal",
  35215. height: math.unit(8 + 4/12, "feet"),
  35216. default: true
  35217. },
  35218. ]
  35219. ))
  35220. characterMakers.push(() => makeCharacter(
  35221. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35222. {
  35223. front: {
  35224. height: math.unit(8 + 4/12, "feet"),
  35225. weight: math.unit(750, "lb"),
  35226. name: "Front",
  35227. image: {
  35228. source: "./media/characters/tanya/front.svg",
  35229. extra: 1749/1615,
  35230. bottom: 33/1782
  35231. }
  35232. },
  35233. },
  35234. [
  35235. {
  35236. name: "Normal",
  35237. height: math.unit(8 + 4/12, "feet"),
  35238. default: true
  35239. },
  35240. ]
  35241. ))
  35242. characterMakers.push(() => makeCharacter(
  35243. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35244. {
  35245. front: {
  35246. height: math.unit(5, "feet"),
  35247. weight: math.unit(225, "lb"),
  35248. name: "Front",
  35249. image: {
  35250. source: "./media/characters/cindy/front.svg",
  35251. extra: 1320/1250,
  35252. bottom: 42/1362
  35253. }
  35254. },
  35255. frontDressed: {
  35256. height: math.unit(5, "feet"),
  35257. weight: math.unit(225, "lb"),
  35258. name: "Front (Dressed)",
  35259. image: {
  35260. source: "./media/characters/cindy/front-dressed.svg",
  35261. extra: 1320/1250,
  35262. bottom: 42/1362
  35263. }
  35264. },
  35265. back: {
  35266. height: math.unit(5, "feet"),
  35267. weight: math.unit(225, "lb"),
  35268. name: "Back",
  35269. image: {
  35270. source: "./media/characters/cindy/back.svg",
  35271. extra: 1384/1346,
  35272. bottom: 14/1398
  35273. }
  35274. },
  35275. },
  35276. [
  35277. {
  35278. name: "Normal",
  35279. height: math.unit(5, "feet"),
  35280. default: true
  35281. },
  35282. ]
  35283. ))
  35284. characterMakers.push(() => makeCharacter(
  35285. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35286. {
  35287. front: {
  35288. height: math.unit(6 + 9/12, "feet"),
  35289. weight: math.unit(440, "lb"),
  35290. name: "Front",
  35291. image: {
  35292. source: "./media/characters/wilbur-owen/front.svg",
  35293. extra: 1575/1448,
  35294. bottom: 72/1647
  35295. }
  35296. },
  35297. back: {
  35298. height: math.unit(6 + 9/12, "feet"),
  35299. weight: math.unit(440, "lb"),
  35300. name: "Back",
  35301. image: {
  35302. source: "./media/characters/wilbur-owen/back.svg",
  35303. extra: 1578/1445,
  35304. bottom: 36/1614
  35305. }
  35306. },
  35307. },
  35308. [
  35309. {
  35310. name: "Normal",
  35311. height: math.unit(6 + 9/12, "feet"),
  35312. default: true
  35313. },
  35314. ]
  35315. ))
  35316. characterMakers.push(() => makeCharacter(
  35317. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35318. {
  35319. front: {
  35320. height: math.unit(6 + 5/12, "feet"),
  35321. weight: math.unit(650, "lb"),
  35322. name: "Front",
  35323. image: {
  35324. source: "./media/characters/keegan/front.svg",
  35325. extra: 2387/2198,
  35326. bottom: 33/2420
  35327. }
  35328. },
  35329. side: {
  35330. height: math.unit(6 + 5/12, "feet"),
  35331. weight: math.unit(650, "lb"),
  35332. name: "Side",
  35333. image: {
  35334. source: "./media/characters/keegan/side.svg",
  35335. extra: 2390/2202,
  35336. bottom: 47/2437
  35337. }
  35338. },
  35339. back: {
  35340. height: math.unit(6 + 5/12, "feet"),
  35341. weight: math.unit(650, "lb"),
  35342. name: "Back",
  35343. image: {
  35344. source: "./media/characters/keegan/back.svg",
  35345. extra: 2418/2268,
  35346. bottom: 15/2433
  35347. }
  35348. },
  35349. frontSfw: {
  35350. height: math.unit(6 + 5/12, "feet"),
  35351. weight: math.unit(650, "lb"),
  35352. name: "Front (SFW)",
  35353. image: {
  35354. source: "./media/characters/keegan/front-sfw.svg",
  35355. extra: 2387/2198,
  35356. bottom: 33/2420
  35357. }
  35358. },
  35359. beans: {
  35360. height: math.unit(1.85, "feet"),
  35361. name: "Beans",
  35362. image: {
  35363. source: "./media/characters/keegan/beans.svg"
  35364. }
  35365. },
  35366. },
  35367. [
  35368. {
  35369. name: "Normal",
  35370. height: math.unit(6 + 5/12, "feet"),
  35371. default: true
  35372. },
  35373. ]
  35374. ))
  35375. characterMakers.push(() => makeCharacter(
  35376. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35377. {
  35378. front: {
  35379. height: math.unit(9, "feet"),
  35380. name: "Front",
  35381. image: {
  35382. source: "./media/characters/colton/front.svg",
  35383. extra: 1589/1326,
  35384. bottom: 139/1728
  35385. }
  35386. },
  35387. },
  35388. [
  35389. {
  35390. name: "Normal",
  35391. height: math.unit(9, "feet"),
  35392. default: true
  35393. },
  35394. ]
  35395. ))
  35396. characterMakers.push(() => makeCharacter(
  35397. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35398. {
  35399. front: {
  35400. height: math.unit(2 + 9/12, "feet"),
  35401. name: "Front",
  35402. image: {
  35403. source: "./media/characters/bora/front.svg",
  35404. extra: 1265/1250,
  35405. bottom: 24/1289
  35406. }
  35407. },
  35408. },
  35409. [
  35410. {
  35411. name: "Normal",
  35412. height: math.unit(2 + 9/12, "feet"),
  35413. default: true
  35414. },
  35415. ]
  35416. ))
  35417. characterMakers.push(() => makeCharacter(
  35418. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35419. {
  35420. front: {
  35421. height: math.unit(8, "feet"),
  35422. name: "Front",
  35423. image: {
  35424. source: "./media/characters/myu-myu/front.svg",
  35425. extra: 1949/1857,
  35426. bottom: 90/2039
  35427. }
  35428. },
  35429. },
  35430. [
  35431. {
  35432. name: "Normal",
  35433. height: math.unit(8, "feet"),
  35434. default: true
  35435. },
  35436. {
  35437. name: "Big",
  35438. height: math.unit(15, "feet")
  35439. },
  35440. {
  35441. name: "BIG",
  35442. height: math.unit(25, "feet")
  35443. },
  35444. ]
  35445. ))
  35446. characterMakers.push(() => makeCharacter(
  35447. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35448. {
  35449. side: {
  35450. height: math.unit(7 + 5/12, "feet"),
  35451. weight: math.unit(2800, "lb"),
  35452. name: "Side",
  35453. image: {
  35454. source: "./media/characters/haloren/side.svg",
  35455. extra: 1793/409,
  35456. bottom: 59/1852
  35457. }
  35458. },
  35459. frontPaw: {
  35460. height: math.unit(2.36, "feet"),
  35461. name: "Front paw",
  35462. image: {
  35463. source: "./media/characters/haloren/front-paw.svg"
  35464. }
  35465. },
  35466. hindPaw: {
  35467. height: math.unit(3.18, "feet"),
  35468. name: "Hind paw",
  35469. image: {
  35470. source: "./media/characters/haloren/hind-paw.svg"
  35471. }
  35472. },
  35473. maw: {
  35474. height: math.unit(5.05, "feet"),
  35475. name: "Maw",
  35476. image: {
  35477. source: "./media/characters/haloren/maw.svg"
  35478. }
  35479. },
  35480. dick: {
  35481. height: math.unit(2.90, "feet"),
  35482. name: "Dick",
  35483. image: {
  35484. source: "./media/characters/haloren/dick.svg"
  35485. }
  35486. },
  35487. },
  35488. [
  35489. {
  35490. name: "Normal",
  35491. height: math.unit(7 + 5/12, "feet"),
  35492. default: true
  35493. },
  35494. {
  35495. name: "Enhanced",
  35496. height: math.unit(14 + 3/12, "feet")
  35497. },
  35498. ]
  35499. ))
  35500. characterMakers.push(() => makeCharacter(
  35501. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35502. {
  35503. front: {
  35504. height: math.unit(171, "cm"),
  35505. name: "Front",
  35506. image: {
  35507. source: "./media/characters/kimmy/front.svg",
  35508. extra: 1491/1435,
  35509. bottom: 53/1544
  35510. }
  35511. },
  35512. },
  35513. [
  35514. {
  35515. name: "Small",
  35516. height: math.unit(9, "cm")
  35517. },
  35518. {
  35519. name: "Normal",
  35520. height: math.unit(171, "cm"),
  35521. default: true
  35522. },
  35523. ]
  35524. ))
  35525. characterMakers.push(() => makeCharacter(
  35526. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35527. {
  35528. front: {
  35529. height: math.unit(8, "feet"),
  35530. weight: math.unit(300, "lb"),
  35531. name: "Front",
  35532. image: {
  35533. source: "./media/characters/galeboomer/front.svg",
  35534. extra: 4651/4415,
  35535. bottom: 162/4813
  35536. }
  35537. },
  35538. back: {
  35539. height: math.unit(8, "feet"),
  35540. weight: math.unit(300, "lb"),
  35541. name: "Back",
  35542. image: {
  35543. source: "./media/characters/galeboomer/back.svg",
  35544. extra: 4544/4314,
  35545. bottom: 16/4560
  35546. }
  35547. },
  35548. frontAlt: {
  35549. height: math.unit(8, "feet"),
  35550. weight: math.unit(300, "lb"),
  35551. name: "Front (Alt)",
  35552. image: {
  35553. source: "./media/characters/galeboomer/front-alt.svg",
  35554. extra: 4458/4228,
  35555. bottom: 68/4526
  35556. }
  35557. },
  35558. maw: {
  35559. height: math.unit(1.2, "feet"),
  35560. name: "Maw",
  35561. image: {
  35562. source: "./media/characters/galeboomer/maw.svg"
  35563. }
  35564. },
  35565. },
  35566. [
  35567. {
  35568. name: "Normal",
  35569. height: math.unit(8, "feet"),
  35570. default: true
  35571. },
  35572. ]
  35573. ))
  35574. characterMakers.push(() => makeCharacter(
  35575. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35576. {
  35577. front: {
  35578. height: math.unit(5 + 9/12, "feet"),
  35579. weight: math.unit(120, "lb"),
  35580. name: "Front",
  35581. image: {
  35582. source: "./media/characters/chyr/front.svg",
  35583. extra: 1323/1254,
  35584. bottom: 63/1386
  35585. }
  35586. },
  35587. back: {
  35588. height: math.unit(5 + 9/12, "feet"),
  35589. weight: math.unit(120, "lb"),
  35590. name: "Back",
  35591. image: {
  35592. source: "./media/characters/chyr/back.svg",
  35593. extra: 1323/1252,
  35594. bottom: 48/1371
  35595. }
  35596. },
  35597. },
  35598. [
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(5 + 9/12, "feet"),
  35602. default: true
  35603. },
  35604. ]
  35605. ))
  35606. characterMakers.push(() => makeCharacter(
  35607. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35608. {
  35609. front: {
  35610. height: math.unit(7, "feet"),
  35611. weight: math.unit(310, "lb"),
  35612. name: "Front",
  35613. image: {
  35614. source: "./media/characters/solarus/front.svg",
  35615. extra: 2415/2021,
  35616. bottom: 103/2518
  35617. }
  35618. },
  35619. back: {
  35620. height: math.unit(7, "feet"),
  35621. weight: math.unit(310, "lb"),
  35622. name: "Back",
  35623. image: {
  35624. source: "./media/characters/solarus/back.svg",
  35625. extra: 2463/2089,
  35626. bottom: 79/2542
  35627. }
  35628. },
  35629. },
  35630. [
  35631. {
  35632. name: "Normal",
  35633. height: math.unit(7, "feet"),
  35634. default: true
  35635. },
  35636. ]
  35637. ))
  35638. characterMakers.push(() => makeCharacter(
  35639. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35640. {
  35641. front: {
  35642. height: math.unit(16, "feet"),
  35643. name: "Front",
  35644. image: {
  35645. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35646. extra: 1844/1780,
  35647. bottom: 58/1902
  35648. }
  35649. },
  35650. },
  35651. [
  35652. {
  35653. name: "Normal",
  35654. height: math.unit(16, "feet"),
  35655. default: true
  35656. },
  35657. ]
  35658. ))
  35659. characterMakers.push(() => makeCharacter(
  35660. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35661. {
  35662. front: {
  35663. height: math.unit(11 + 6/12, "feet"),
  35664. weight: math.unit(1366, "lb"),
  35665. name: "Front",
  35666. image: {
  35667. source: "./media/characters/lexor/front.svg",
  35668. extra: 1560/1481,
  35669. bottom: 211/1771
  35670. }
  35671. },
  35672. back: {
  35673. height: math.unit(11 + 6/12, "feet"),
  35674. weight: math.unit(1366, "lb"),
  35675. name: "Back",
  35676. image: {
  35677. source: "./media/characters/lexor/back.svg",
  35678. extra: 1614/1533,
  35679. bottom: 76/1690
  35680. }
  35681. },
  35682. maw: {
  35683. height: math.unit(3, "feet"),
  35684. name: "Maw",
  35685. image: {
  35686. source: "./media/characters/lexor/maw.svg"
  35687. }
  35688. },
  35689. dick: {
  35690. height: math.unit(2.59, "feet"),
  35691. name: "Dick",
  35692. image: {
  35693. source: "./media/characters/lexor/dick.svg"
  35694. }
  35695. },
  35696. },
  35697. [
  35698. {
  35699. name: "Normal",
  35700. height: math.unit(11 + 6/12, "feet"),
  35701. default: true
  35702. },
  35703. ]
  35704. ))
  35705. characterMakers.push(() => makeCharacter(
  35706. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35707. {
  35708. front: {
  35709. height: math.unit(5 + 8/12, "feet"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/magnum/front.svg",
  35713. extra: 942/855,
  35714. bottom: 26/968
  35715. }
  35716. },
  35717. },
  35718. [
  35719. {
  35720. name: "Normal",
  35721. height: math.unit(5 + 8/12, "feet"),
  35722. default: true
  35723. },
  35724. ]
  35725. ))
  35726. characterMakers.push(() => makeCharacter(
  35727. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35728. {
  35729. front: {
  35730. height: math.unit(18 + 4/12, "feet"),
  35731. weight: math.unit(1500, "kg"),
  35732. name: "Front",
  35733. image: {
  35734. source: "./media/characters/solas-sharpsman/front.svg",
  35735. extra: 1698/1589,
  35736. bottom: 0/1698
  35737. }
  35738. },
  35739. },
  35740. [
  35741. {
  35742. name: "Normal",
  35743. height: math.unit(18 + 4/12, "feet"),
  35744. default: true
  35745. },
  35746. ]
  35747. ))
  35748. characterMakers.push(() => makeCharacter(
  35749. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35750. {
  35751. front: {
  35752. height: math.unit(5 + 5/12, "feet"),
  35753. weight: math.unit(180, "lb"),
  35754. name: "Front",
  35755. image: {
  35756. source: "./media/characters/october/front.svg",
  35757. extra: 1800/1650,
  35758. bottom: 0/1800
  35759. }
  35760. },
  35761. frontNsfw: {
  35762. height: math.unit(5 + 5/12, "feet"),
  35763. weight: math.unit(180, "lb"),
  35764. name: "Front (NSFW)",
  35765. image: {
  35766. source: "./media/characters/october/front-nsfw.svg",
  35767. extra: 1392/1307,
  35768. bottom: 42/1434
  35769. }
  35770. },
  35771. },
  35772. [
  35773. {
  35774. name: "Normal",
  35775. height: math.unit(5 + 5/12, "feet"),
  35776. default: true
  35777. },
  35778. ]
  35779. ))
  35780. characterMakers.push(() => makeCharacter(
  35781. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35782. {
  35783. front: {
  35784. height: math.unit(8 + 6/12, "feet"),
  35785. name: "Front",
  35786. image: {
  35787. source: "./media/characters/essynkardi/front.svg",
  35788. extra: 1914/1846,
  35789. bottom: 22/1936
  35790. }
  35791. },
  35792. },
  35793. [
  35794. {
  35795. name: "Normal",
  35796. height: math.unit(8 + 6/12, "feet"),
  35797. default: true
  35798. },
  35799. ]
  35800. ))
  35801. characterMakers.push(() => makeCharacter(
  35802. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35803. {
  35804. front: {
  35805. height: math.unit(6 + 6/12, "feet"),
  35806. weight: math.unit(7, "lb"),
  35807. name: "Front",
  35808. image: {
  35809. source: "./media/characters/icky/front.svg",
  35810. extra: 813/782,
  35811. bottom: 66/879
  35812. }
  35813. },
  35814. back: {
  35815. height: math.unit(6 + 6/12, "feet"),
  35816. weight: math.unit(7, "lb"),
  35817. name: "Back",
  35818. image: {
  35819. source: "./media/characters/icky/back.svg",
  35820. extra: 754/735,
  35821. bottom: 56/810
  35822. }
  35823. },
  35824. },
  35825. [
  35826. {
  35827. name: "Normal",
  35828. height: math.unit(6 + 6/12, "feet"),
  35829. default: true
  35830. },
  35831. ]
  35832. ))
  35833. characterMakers.push(() => makeCharacter(
  35834. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35835. {
  35836. front: {
  35837. height: math.unit(15, "feet"),
  35838. name: "Front",
  35839. image: {
  35840. source: "./media/characters/rojas/front.svg",
  35841. extra: 1462/1408,
  35842. bottom: 95/1557
  35843. }
  35844. },
  35845. back: {
  35846. height: math.unit(15, "feet"),
  35847. name: "Back",
  35848. image: {
  35849. source: "./media/characters/rojas/back.svg",
  35850. extra: 1023/954,
  35851. bottom: 28/1051
  35852. }
  35853. },
  35854. },
  35855. [
  35856. {
  35857. name: "Normal",
  35858. height: math.unit(15, "feet"),
  35859. default: true
  35860. },
  35861. ]
  35862. ))
  35863. characterMakers.push(() => makeCharacter(
  35864. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35865. {
  35866. frontHuman: {
  35867. height: math.unit(5 + 7/12, "feet"),
  35868. name: "Front (Human)",
  35869. image: {
  35870. source: "./media/characters/alek-dryagan/front-human.svg",
  35871. extra: 1687/1667,
  35872. bottom: 69/1756
  35873. }
  35874. },
  35875. backHuman: {
  35876. height: math.unit(5 + 7/12, "feet"),
  35877. name: "Back (Human)",
  35878. image: {
  35879. source: "./media/characters/alek-dryagan/back-human.svg",
  35880. extra: 1670/1649,
  35881. bottom: 65/1735
  35882. }
  35883. },
  35884. frontDemi: {
  35885. height: math.unit(65, "feet"),
  35886. name: "Front (Demi)",
  35887. image: {
  35888. source: "./media/characters/alek-dryagan/front-demi.svg",
  35889. extra: 1669/1642,
  35890. bottom: 49/1718
  35891. }
  35892. },
  35893. backDemi: {
  35894. height: math.unit(65, "feet"),
  35895. name: "Back (Demi)",
  35896. image: {
  35897. source: "./media/characters/alek-dryagan/back-demi.svg",
  35898. extra: 1658/1637,
  35899. bottom: 40/1698
  35900. }
  35901. },
  35902. mawHuman: {
  35903. height: math.unit(0.3, "feet"),
  35904. name: "Maw (Human)",
  35905. image: {
  35906. source: "./media/characters/alek-dryagan/maw-human.svg"
  35907. }
  35908. },
  35909. mawDemi: {
  35910. height: math.unit(3.8, "feet"),
  35911. name: "Maw (Demi)",
  35912. image: {
  35913. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35914. }
  35915. },
  35916. },
  35917. [
  35918. {
  35919. name: "Normal",
  35920. height: math.unit(5 + 7/12, "feet"),
  35921. default: true
  35922. },
  35923. ]
  35924. ))
  35925. characterMakers.push(() => makeCharacter(
  35926. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35927. {
  35928. frontHuman: {
  35929. height: math.unit(5 + 2/12, "feet"),
  35930. name: "Front (Human)",
  35931. image: {
  35932. source: "./media/characters/gen/front-human.svg",
  35933. extra: 1627/1538,
  35934. bottom: 71/1698
  35935. }
  35936. },
  35937. backHuman: {
  35938. height: math.unit(5 + 2/12, "feet"),
  35939. name: "Back (Human)",
  35940. image: {
  35941. source: "./media/characters/gen/back-human.svg",
  35942. extra: 1638/1548,
  35943. bottom: 69/1707
  35944. }
  35945. },
  35946. frontDemi: {
  35947. height: math.unit(5 + 2/12, "feet"),
  35948. name: "Front (Demi)",
  35949. image: {
  35950. source: "./media/characters/gen/front-demi.svg",
  35951. extra: 1627/1538,
  35952. bottom: 71/1698
  35953. }
  35954. },
  35955. backDemi: {
  35956. height: math.unit(5 + 2/12, "feet"),
  35957. name: "Back (Demi)",
  35958. image: {
  35959. source: "./media/characters/gen/back-demi.svg",
  35960. extra: 1638/1548,
  35961. bottom: 69/1707
  35962. }
  35963. },
  35964. },
  35965. [
  35966. {
  35967. name: "Normal",
  35968. height: math.unit(5 + 2/12, "feet"),
  35969. default: true
  35970. },
  35971. ]
  35972. ))
  35973. characterMakers.push(() => makeCharacter(
  35974. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35975. {
  35976. frontImp: {
  35977. height: math.unit(1 + 11/12, "feet"),
  35978. name: "Front (Imp)",
  35979. image: {
  35980. source: "./media/characters/max-kobold/front-imp.svg",
  35981. extra: 1238/1134,
  35982. bottom: 81/1319
  35983. }
  35984. },
  35985. backImp: {
  35986. height: math.unit(1 + 11/12, "feet"),
  35987. name: "Back (Imp)",
  35988. image: {
  35989. source: "./media/characters/max-kobold/back-imp.svg",
  35990. extra: 1334/1175,
  35991. bottom: 34/1368
  35992. }
  35993. },
  35994. frontDemi: {
  35995. height: math.unit(5 + 9/12, "feet"),
  35996. name: "Front (Demi)",
  35997. image: {
  35998. source: "./media/characters/max-kobold/front-demi.svg",
  35999. extra: 1715/1685,
  36000. bottom: 54/1769
  36001. }
  36002. },
  36003. backDemi: {
  36004. height: math.unit(5 + 9/12, "feet"),
  36005. name: "Back (Demi)",
  36006. image: {
  36007. source: "./media/characters/max-kobold/back-demi.svg",
  36008. extra: 1752/1729,
  36009. bottom: 41/1793
  36010. }
  36011. },
  36012. handImp: {
  36013. height: math.unit(0.45, "feet"),
  36014. name: "Hand (Imp)",
  36015. image: {
  36016. source: "./media/characters/max-kobold/hand.svg"
  36017. }
  36018. },
  36019. pawImp: {
  36020. height: math.unit(0.46, "feet"),
  36021. name: "Paw (Imp)",
  36022. image: {
  36023. source: "./media/characters/max-kobold/paw.svg"
  36024. }
  36025. },
  36026. handDemi: {
  36027. height: math.unit(0.80, "feet"),
  36028. name: "Hand (Demi)",
  36029. image: {
  36030. source: "./media/characters/max-kobold/hand.svg"
  36031. }
  36032. },
  36033. pawDemi: {
  36034. height: math.unit(1.1, "feet"),
  36035. name: "Paw (Demi)",
  36036. image: {
  36037. source: "./media/characters/max-kobold/paw.svg"
  36038. }
  36039. },
  36040. headImp: {
  36041. height: math.unit(1.33, "feet"),
  36042. name: "Head (Imp)",
  36043. image: {
  36044. source: "./media/characters/max-kobold/head-imp.svg"
  36045. }
  36046. },
  36047. mawImp: {
  36048. height: math.unit(0.75, "feet"),
  36049. name: "Maw (Imp)",
  36050. image: {
  36051. source: "./media/characters/max-kobold/maw-imp.svg"
  36052. }
  36053. },
  36054. mawDemi: {
  36055. height: math.unit(0.42, "feet"),
  36056. name: "Maw (Demi)",
  36057. image: {
  36058. source: "./media/characters/max-kobold/maw-demi.svg"
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(1 + 11/12, "feet"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36072. {
  36073. front: {
  36074. height: math.unit(7 + 5/12, "feet"),
  36075. name: "Front",
  36076. image: {
  36077. source: "./media/characters/carbon/front.svg",
  36078. extra: 1754/1689,
  36079. bottom: 65/1819
  36080. }
  36081. },
  36082. back: {
  36083. height: math.unit(7 + 5/12, "feet"),
  36084. name: "Back",
  36085. image: {
  36086. source: "./media/characters/carbon/back.svg",
  36087. extra: 1762/1695,
  36088. bottom: 24/1786
  36089. }
  36090. },
  36091. frontGigantamax: {
  36092. height: math.unit(150, "feet"),
  36093. name: "Front (Gigantamax)",
  36094. image: {
  36095. source: "./media/characters/carbon/front-gigantamax.svg",
  36096. extra: 1826/1669,
  36097. bottom: 59/1885
  36098. }
  36099. },
  36100. backGigantamax: {
  36101. height: math.unit(150, "feet"),
  36102. name: "Back (Gigantamax)",
  36103. image: {
  36104. source: "./media/characters/carbon/back-gigantamax.svg",
  36105. extra: 1796/1653,
  36106. bottom: 53/1849
  36107. }
  36108. },
  36109. maw: {
  36110. height: math.unit(0.48, "feet"),
  36111. name: "Maw",
  36112. image: {
  36113. source: "./media/characters/carbon/maw.svg"
  36114. }
  36115. },
  36116. mawGigantamax: {
  36117. height: math.unit(7.5, "feet"),
  36118. name: "Maw (Gigantamax)",
  36119. image: {
  36120. source: "./media/characters/carbon/maw-gigantamax.svg"
  36121. }
  36122. },
  36123. },
  36124. [
  36125. {
  36126. name: "Normal",
  36127. height: math.unit(7 + 5/12, "feet"),
  36128. default: true
  36129. },
  36130. ]
  36131. ))
  36132. characterMakers.push(() => makeCharacter(
  36133. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36134. {
  36135. front: {
  36136. height: math.unit(6, "feet"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/maverick/front.svg",
  36140. extra: 1672/1661,
  36141. bottom: 85/1757
  36142. }
  36143. },
  36144. back: {
  36145. height: math.unit(6, "feet"),
  36146. name: "Back",
  36147. image: {
  36148. source: "./media/characters/maverick/back.svg",
  36149. extra: 1642/1631,
  36150. bottom: 38/1680
  36151. }
  36152. },
  36153. },
  36154. [
  36155. {
  36156. name: "Normal",
  36157. height: math.unit(6, "feet"),
  36158. default: true
  36159. },
  36160. ]
  36161. ))
  36162. characterMakers.push(() => makeCharacter(
  36163. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36164. {
  36165. front: {
  36166. height: math.unit(15, "feet"),
  36167. weight: math.unit(615, "lb"),
  36168. name: "Front",
  36169. image: {
  36170. source: "./media/characters/grockle/front.svg",
  36171. extra: 1535/1427,
  36172. bottom: 56/1591
  36173. }
  36174. },
  36175. },
  36176. [
  36177. {
  36178. name: "Normal",
  36179. height: math.unit(15, "feet"),
  36180. default: true
  36181. },
  36182. {
  36183. name: "Large",
  36184. height: math.unit(150, "feet")
  36185. },
  36186. {
  36187. name: "Macro",
  36188. height: math.unit(1876, "feet")
  36189. },
  36190. {
  36191. name: "Mega Macro",
  36192. height: math.unit(121940, "feet")
  36193. },
  36194. {
  36195. name: "Giga Macro",
  36196. height: math.unit(750, "km")
  36197. },
  36198. {
  36199. name: "Tera Macro",
  36200. height: math.unit(750000, "km")
  36201. },
  36202. {
  36203. name: "Galactic",
  36204. height: math.unit(1.4e5, "km")
  36205. },
  36206. {
  36207. name: "Godlike",
  36208. height: math.unit(9.8e280, "galaxies")
  36209. },
  36210. ]
  36211. ))
  36212. characterMakers.push(() => makeCharacter(
  36213. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36214. {
  36215. front: {
  36216. height: math.unit(11, "meters"),
  36217. weight: math.unit(20, "tonnes"),
  36218. name: "Front",
  36219. image: {
  36220. source: "./media/characters/alistair/front.svg",
  36221. extra: 1265/1009,
  36222. bottom: 93/1358
  36223. }
  36224. },
  36225. },
  36226. [
  36227. {
  36228. name: "Normal",
  36229. height: math.unit(11, "meters"),
  36230. default: true
  36231. },
  36232. ]
  36233. ))
  36234. characterMakers.push(() => makeCharacter(
  36235. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36236. {
  36237. front: {
  36238. height: math.unit(5 + 8/12, "feet"),
  36239. name: "Front",
  36240. image: {
  36241. source: "./media/characters/haruka/front.svg",
  36242. extra: 2012/1952,
  36243. bottom: 0/2012
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Normal",
  36250. height: math.unit(5 + 8/12, "feet"),
  36251. default: true
  36252. },
  36253. ]
  36254. ))
  36255. characterMakers.push(() => makeCharacter(
  36256. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36257. {
  36258. back: {
  36259. height: math.unit(9, "feet"),
  36260. name: "Back",
  36261. image: {
  36262. source: "./media/characters/vivian-sylveon/back.svg",
  36263. extra: 1853/1714,
  36264. bottom: 0/1853
  36265. }
  36266. },
  36267. },
  36268. [
  36269. {
  36270. name: "Normal",
  36271. height: math.unit(9, "feet"),
  36272. default: true
  36273. },
  36274. {
  36275. name: "Macro",
  36276. height: math.unit(500, "feet")
  36277. },
  36278. {
  36279. name: "Megamacro",
  36280. height: math.unit(600, "miles")
  36281. },
  36282. {
  36283. name: "Gigamacro",
  36284. height: math.unit(30000, "miles")
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36290. {
  36291. anthro: {
  36292. height: math.unit(5 + 10/12, "feet"),
  36293. weight: math.unit(100, "lb"),
  36294. name: "Anthro",
  36295. image: {
  36296. source: "./media/characters/daiki/anthro.svg",
  36297. extra: 1115/1027,
  36298. bottom: 69/1184
  36299. }
  36300. },
  36301. feral: {
  36302. height: math.unit(200, "feet"),
  36303. name: "Feral",
  36304. image: {
  36305. source: "./media/characters/daiki/feral.svg",
  36306. extra: 1256/313,
  36307. bottom: 39/1295
  36308. }
  36309. },
  36310. feralHead: {
  36311. height: math.unit(171, "feet"),
  36312. name: "Feral Head",
  36313. image: {
  36314. source: "./media/characters/daiki/feral-head.svg"
  36315. }
  36316. },
  36317. manaDragon: {
  36318. height: math.unit(170, "meters"),
  36319. name: "Mana-dragon",
  36320. image: {
  36321. source: "./media/characters/daiki/mana-dragon.svg",
  36322. extra: 763/420,
  36323. bottom: 97/860
  36324. }
  36325. },
  36326. },
  36327. [
  36328. {
  36329. name: "Normal",
  36330. height: math.unit(5 + 10/12, "feet"),
  36331. default: true
  36332. },
  36333. ]
  36334. ))
  36335. characterMakers.push(() => makeCharacter(
  36336. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36337. {
  36338. fullyEquippedFront: {
  36339. height: math.unit(3 + 1/12, "feet"),
  36340. weight: math.unit(24, "lb"),
  36341. name: "Fully Equipped (Front)",
  36342. image: {
  36343. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36344. extra: 687/605,
  36345. bottom: 18/705
  36346. }
  36347. },
  36348. fullyEquippedBack: {
  36349. height: math.unit(3 + 1/12, "feet"),
  36350. weight: math.unit(24, "lb"),
  36351. name: "Fully Equipped (Back)",
  36352. image: {
  36353. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36354. extra: 689/590,
  36355. bottom: 18/707
  36356. }
  36357. },
  36358. dailyWear: {
  36359. height: math.unit(3 + 1/12, "feet"),
  36360. weight: math.unit(24, "lb"),
  36361. name: "Daily Wear",
  36362. image: {
  36363. source: "./media/characters/tea-spot/daily-wear.svg",
  36364. extra: 701/620,
  36365. bottom: 21/722
  36366. }
  36367. },
  36368. maidWork: {
  36369. height: math.unit(3 + 1/12, "feet"),
  36370. weight: math.unit(24, "lb"),
  36371. name: "Maid Work",
  36372. image: {
  36373. source: "./media/characters/tea-spot/maid-work.svg",
  36374. extra: 693/609,
  36375. bottom: 15/708
  36376. }
  36377. },
  36378. },
  36379. [
  36380. {
  36381. name: "Normal",
  36382. height: math.unit(3 + 1/12, "feet"),
  36383. default: true
  36384. },
  36385. ]
  36386. ))
  36387. characterMakers.push(() => makeCharacter(
  36388. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36389. {
  36390. front: {
  36391. height: math.unit(175, "cm"),
  36392. weight: math.unit(75, "kg"),
  36393. name: "Front",
  36394. image: {
  36395. source: "./media/characters/chee/front.svg",
  36396. extra: 1796/1740,
  36397. bottom: 40/1836
  36398. }
  36399. },
  36400. },
  36401. [
  36402. {
  36403. name: "Micro-Micro",
  36404. height: math.unit(1, "nm")
  36405. },
  36406. {
  36407. name: "Micro-erst",
  36408. height: math.unit(1, "micrometer")
  36409. },
  36410. {
  36411. name: "Micro-er",
  36412. height: math.unit(1, "cm")
  36413. },
  36414. {
  36415. name: "Normal",
  36416. height: math.unit(175, "cm"),
  36417. default: true
  36418. },
  36419. {
  36420. name: "Macro",
  36421. height: math.unit(100, "m")
  36422. },
  36423. {
  36424. name: "Macro-er",
  36425. height: math.unit(1, "km")
  36426. },
  36427. {
  36428. name: "Macro-erst",
  36429. height: math.unit(10, "km")
  36430. },
  36431. {
  36432. name: "Macro-Macro",
  36433. height: math.unit(100, "km")
  36434. },
  36435. ]
  36436. ))
  36437. characterMakers.push(() => makeCharacter(
  36438. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36439. {
  36440. front: {
  36441. height: math.unit(11 + 9/12, "feet"),
  36442. weight: math.unit(935, "lb"),
  36443. name: "Front",
  36444. image: {
  36445. source: "./media/characters/kingsley/front.svg",
  36446. extra: 1803/1674,
  36447. bottom: 127/1930
  36448. }
  36449. },
  36450. frontNude: {
  36451. height: math.unit(11 + 9/12, "feet"),
  36452. weight: math.unit(935, "lb"),
  36453. name: "Front (Nude)",
  36454. image: {
  36455. source: "./media/characters/kingsley/front-nude.svg",
  36456. extra: 1803/1674,
  36457. bottom: 127/1930
  36458. }
  36459. },
  36460. },
  36461. [
  36462. {
  36463. name: "Normal",
  36464. height: math.unit(11 + 9/12, "feet"),
  36465. default: true
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36471. {
  36472. side: {
  36473. height: math.unit(9, "feet"),
  36474. name: "Side",
  36475. image: {
  36476. source: "./media/characters/rymel/side.svg",
  36477. extra: 792/469,
  36478. bottom: 121/913
  36479. }
  36480. },
  36481. maw: {
  36482. height: math.unit(2.4, "meters"),
  36483. name: "Maw",
  36484. image: {
  36485. source: "./media/characters/rymel/maw.svg"
  36486. }
  36487. },
  36488. },
  36489. [
  36490. {
  36491. name: "House Drake",
  36492. height: math.unit(2, "feet")
  36493. },
  36494. {
  36495. name: "Reduced",
  36496. height: math.unit(4.5, "feet")
  36497. },
  36498. {
  36499. name: "Normal",
  36500. height: math.unit(9, "feet"),
  36501. default: true
  36502. },
  36503. ]
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36507. {
  36508. front: {
  36509. height: math.unit(1.74, "meters"),
  36510. weight: math.unit(55, "kg"),
  36511. name: "Front",
  36512. image: {
  36513. source: "./media/characters/rubus/front.svg",
  36514. extra: 1894/1742,
  36515. bottom: 44/1938
  36516. }
  36517. },
  36518. },
  36519. [
  36520. {
  36521. name: "Normal",
  36522. height: math.unit(1.74, "meters"),
  36523. default: true
  36524. },
  36525. ]
  36526. ))
  36527. characterMakers.push(() => makeCharacter(
  36528. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36529. {
  36530. front: {
  36531. height: math.unit(5 + 2/12, "feet"),
  36532. weight: math.unit(112, "lb"),
  36533. name: "Front",
  36534. image: {
  36535. source: "./media/characters/cassie-kingston/front.svg",
  36536. extra: 1438/1390,
  36537. bottom: 47/1485
  36538. }
  36539. },
  36540. },
  36541. [
  36542. {
  36543. name: "Normal",
  36544. height: math.unit(5 + 2/12, "feet"),
  36545. default: true
  36546. },
  36547. {
  36548. name: "Macro",
  36549. height: math.unit(128, "feet")
  36550. },
  36551. {
  36552. name: "Megamacro",
  36553. height: math.unit(2.56, "miles")
  36554. },
  36555. ]
  36556. ))
  36557. characterMakers.push(() => makeCharacter(
  36558. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36559. {
  36560. front: {
  36561. height: math.unit(7, "feet"),
  36562. name: "Front",
  36563. image: {
  36564. source: "./media/characters/fox/front.svg",
  36565. extra: 1798/1703,
  36566. bottom: 55/1853
  36567. }
  36568. },
  36569. back: {
  36570. height: math.unit(7, "feet"),
  36571. name: "Back",
  36572. image: {
  36573. source: "./media/characters/fox/back.svg",
  36574. extra: 1748/1649,
  36575. bottom: 32/1780
  36576. }
  36577. },
  36578. head: {
  36579. height: math.unit(1.95, "feet"),
  36580. name: "Head",
  36581. image: {
  36582. source: "./media/characters/fox/head.svg"
  36583. }
  36584. },
  36585. dick: {
  36586. height: math.unit(1.33, "feet"),
  36587. name: "Dick",
  36588. image: {
  36589. source: "./media/characters/fox/dick.svg"
  36590. }
  36591. },
  36592. foot: {
  36593. height: math.unit(1, "feet"),
  36594. name: "Foot",
  36595. image: {
  36596. source: "./media/characters/fox/foot.svg"
  36597. }
  36598. },
  36599. paw: {
  36600. height: math.unit(0.92, "feet"),
  36601. name: "Paw",
  36602. image: {
  36603. source: "./media/characters/fox/paw.svg"
  36604. }
  36605. },
  36606. },
  36607. [
  36608. {
  36609. name: "Small",
  36610. height: math.unit(3, "inches")
  36611. },
  36612. {
  36613. name: "\"Realistic\"",
  36614. height: math.unit(7, "feet")
  36615. },
  36616. {
  36617. name: "Normal",
  36618. height: math.unit(150, "feet"),
  36619. default: true
  36620. },
  36621. {
  36622. name: "BIG",
  36623. height: math.unit(1200, "feet")
  36624. },
  36625. {
  36626. name: "👀",
  36627. height: math.unit(5, "miles")
  36628. },
  36629. {
  36630. name: "👀👀👀",
  36631. height: math.unit(64, "miles")
  36632. },
  36633. ]
  36634. ))
  36635. characterMakers.push(() => makeCharacter(
  36636. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36637. {
  36638. front: {
  36639. height: math.unit(625, "feet"),
  36640. name: "Front",
  36641. image: {
  36642. source: "./media/characters/asonja-rossa/front.svg",
  36643. extra: 1833/1686,
  36644. bottom: 24/1857
  36645. }
  36646. },
  36647. back: {
  36648. height: math.unit(625, "feet"),
  36649. name: "Back",
  36650. image: {
  36651. source: "./media/characters/asonja-rossa/back.svg",
  36652. extra: 1852/1753,
  36653. bottom: 26/1878
  36654. }
  36655. },
  36656. },
  36657. [
  36658. {
  36659. name: "Macro",
  36660. height: math.unit(625, "feet"),
  36661. default: true
  36662. },
  36663. ]
  36664. ))
  36665. characterMakers.push(() => makeCharacter(
  36666. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36667. {
  36668. side: {
  36669. height: math.unit(6, "feet"),
  36670. weight: math.unit(150, "lb"),
  36671. name: "Side",
  36672. image: {
  36673. source: "./media/characters/rezukii/side.svg",
  36674. extra: 979/542,
  36675. bottom: 87/1066
  36676. }
  36677. },
  36678. },
  36679. [
  36680. {
  36681. name: "Tiny",
  36682. height: math.unit(2, "feet")
  36683. },
  36684. {
  36685. name: "Smol",
  36686. height: math.unit(4, "feet")
  36687. },
  36688. {
  36689. name: "Normal",
  36690. height: math.unit(8, "feet"),
  36691. default: true
  36692. },
  36693. {
  36694. name: "Big",
  36695. height: math.unit(12, "feet")
  36696. },
  36697. {
  36698. name: "Macro",
  36699. height: math.unit(30, "feet")
  36700. },
  36701. ]
  36702. ))
  36703. characterMakers.push(() => makeCharacter(
  36704. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36705. {
  36706. front: {
  36707. height: math.unit(14, "feet"),
  36708. weight: math.unit(9.5, "tonnes"),
  36709. name: "Front",
  36710. image: {
  36711. source: "./media/characters/dawnheart/front.svg",
  36712. extra: 2792/2675,
  36713. bottom: 64/2856
  36714. }
  36715. },
  36716. },
  36717. [
  36718. {
  36719. name: "Normal",
  36720. height: math.unit(14, "feet"),
  36721. default: true
  36722. },
  36723. ]
  36724. ))
  36725. characterMakers.push(() => makeCharacter(
  36726. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36727. {
  36728. front: {
  36729. height: math.unit(1.7, "m"),
  36730. name: "Front",
  36731. image: {
  36732. source: "./media/characters/gladi/front.svg",
  36733. extra: 1460/1362,
  36734. bottom: 19/1479
  36735. }
  36736. },
  36737. back: {
  36738. height: math.unit(1.7, "m"),
  36739. name: "Back",
  36740. image: {
  36741. source: "./media/characters/gladi/back.svg",
  36742. extra: 1459/1357,
  36743. bottom: 12/1471
  36744. }
  36745. },
  36746. feral: {
  36747. height: math.unit(2.05, "m"),
  36748. name: "Feral",
  36749. image: {
  36750. source: "./media/characters/gladi/feral.svg",
  36751. extra: 821/557,
  36752. bottom: 91/912
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Shortest",
  36759. height: math.unit(70, "cm")
  36760. },
  36761. {
  36762. name: "Normal",
  36763. height: math.unit(1.7, "m")
  36764. },
  36765. {
  36766. name: "Macro",
  36767. height: math.unit(10, "m"),
  36768. default: true
  36769. },
  36770. {
  36771. name: "Tallest",
  36772. height: math.unit(200, "m")
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36778. {
  36779. front: {
  36780. height: math.unit(5 + 7/12, "feet"),
  36781. weight: math.unit(92, "kg"),
  36782. name: "Front",
  36783. image: {
  36784. source: "./media/characters/erdno/front.svg",
  36785. extra: 1954/1889,
  36786. bottom: 22/1976
  36787. }
  36788. },
  36789. },
  36790. [
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(5 + 7/12, "feet"),
  36794. default: true
  36795. },
  36796. ]
  36797. ))
  36798. characterMakers.push(() => makeCharacter(
  36799. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36800. {
  36801. front: {
  36802. height: math.unit(5 + 10/12, "feet"),
  36803. weight: math.unit(150, "lb"),
  36804. name: "Front",
  36805. image: {
  36806. source: "./media/characters/jamie/front.svg",
  36807. extra: 1908/1768,
  36808. bottom: 19/1927
  36809. }
  36810. },
  36811. },
  36812. [
  36813. {
  36814. name: "Minimum",
  36815. height: math.unit(2, "cm")
  36816. },
  36817. {
  36818. name: "Micro",
  36819. height: math.unit(3, "inches")
  36820. },
  36821. {
  36822. name: "Normal",
  36823. height: math.unit(5 + 10/12, "feet"),
  36824. default: true
  36825. },
  36826. {
  36827. name: "Macro",
  36828. height: math.unit(150, "feet")
  36829. },
  36830. {
  36831. name: "Megamacro",
  36832. height: math.unit(10000, "m")
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(2, "meters"),
  36841. weight: math.unit(100, "kg"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/shiron/front.svg",
  36845. extra: 2103/1985,
  36846. bottom: 98/2201
  36847. }
  36848. },
  36849. back: {
  36850. height: math.unit(2, "meters"),
  36851. weight: math.unit(100, "kg"),
  36852. name: "Back",
  36853. image: {
  36854. source: "./media/characters/shiron/back.svg",
  36855. extra: 2110/2015,
  36856. bottom: 89/2199
  36857. }
  36858. },
  36859. hand: {
  36860. height: math.unit(0.96, "feet"),
  36861. name: "Hand",
  36862. image: {
  36863. source: "./media/characters/shiron/hand.svg"
  36864. }
  36865. },
  36866. foot: {
  36867. height: math.unit(1.464, "feet"),
  36868. name: "Foot",
  36869. image: {
  36870. source: "./media/characters/shiron/foot.svg"
  36871. }
  36872. },
  36873. },
  36874. [
  36875. {
  36876. name: "Normal",
  36877. height: math.unit(2, "meters")
  36878. },
  36879. {
  36880. name: "Macro",
  36881. height: math.unit(500, "meters"),
  36882. default: true
  36883. },
  36884. {
  36885. name: "Megamacro",
  36886. height: math.unit(20, "km")
  36887. },
  36888. ]
  36889. ))
  36890. characterMakers.push(() => makeCharacter(
  36891. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36892. {
  36893. front: {
  36894. height: math.unit(6, "feet"),
  36895. name: "Front",
  36896. image: {
  36897. source: "./media/characters/sam/front.svg",
  36898. extra: 849/826,
  36899. bottom: 19/868
  36900. }
  36901. },
  36902. },
  36903. [
  36904. {
  36905. name: "Normal",
  36906. height: math.unit(6, "feet"),
  36907. default: true
  36908. },
  36909. ]
  36910. ))
  36911. characterMakers.push(() => makeCharacter(
  36912. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36913. {
  36914. front: {
  36915. height: math.unit(8 + 4/12, "feet"),
  36916. weight: math.unit(122, "kg"),
  36917. name: "Front",
  36918. image: {
  36919. source: "./media/characters/namori-kurogawa/front.svg",
  36920. extra: 1894/1576,
  36921. bottom: 34/1928
  36922. }
  36923. },
  36924. },
  36925. [
  36926. {
  36927. name: "Normal",
  36928. height: math.unit(8 + 4/12, "feet"),
  36929. default: true
  36930. },
  36931. ]
  36932. ))
  36933. characterMakers.push(() => makeCharacter(
  36934. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36935. {
  36936. front: {
  36937. height: math.unit(9, "feet"),
  36938. weight: math.unit(621, "lb"),
  36939. name: "Front",
  36940. image: {
  36941. source: "./media/characters/unmru/front.svg",
  36942. extra: 1853/1747,
  36943. bottom: 73/1926
  36944. }
  36945. },
  36946. side: {
  36947. height: math.unit(9, "feet"),
  36948. weight: math.unit(621, "lb"),
  36949. name: "Side",
  36950. image: {
  36951. source: "./media/characters/unmru/side.svg",
  36952. extra: 1781/1671,
  36953. bottom: 127/1908
  36954. }
  36955. },
  36956. back: {
  36957. height: math.unit(9, "feet"),
  36958. weight: math.unit(621, "lb"),
  36959. name: "Back",
  36960. image: {
  36961. source: "./media/characters/unmru/back.svg",
  36962. extra: 1894/1765,
  36963. bottom: 75/1969
  36964. }
  36965. },
  36966. dick: {
  36967. height: math.unit(3, "feet"),
  36968. weight: math.unit(35, "lb"),
  36969. name: "Dick",
  36970. image: {
  36971. source: "./media/characters/unmru/dick.svg"
  36972. }
  36973. },
  36974. },
  36975. [
  36976. {
  36977. name: "Normal",
  36978. height: math.unit(9, "feet")
  36979. },
  36980. {
  36981. name: "Natural",
  36982. height: math.unit(27, "feet"),
  36983. default: true
  36984. },
  36985. {
  36986. name: "Giant",
  36987. height: math.unit(90, "feet")
  36988. },
  36989. {
  36990. name: "Kaiju",
  36991. height: math.unit(270, "feet")
  36992. },
  36993. {
  36994. name: "Macro",
  36995. height: math.unit(900, "feet")
  36996. },
  36997. {
  36998. name: "Macro+",
  36999. height: math.unit(2700, "feet")
  37000. },
  37001. {
  37002. name: "Megamacro",
  37003. height: math.unit(9000, "feet")
  37004. },
  37005. {
  37006. name: "City-Crushing",
  37007. height: math.unit(27000, "feet")
  37008. },
  37009. {
  37010. name: "Mountain-Mashing",
  37011. height: math.unit(90000, "feet")
  37012. },
  37013. {
  37014. name: "Earth-Eclipsing",
  37015. height: math.unit(2.7e8, "feet")
  37016. },
  37017. {
  37018. name: "Sol-Swallowing",
  37019. height: math.unit(9e10, "feet")
  37020. },
  37021. {
  37022. name: "Majoris-Munching",
  37023. height: math.unit(2.7e13, "feet")
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37029. {
  37030. front: {
  37031. height: math.unit(1, "inch"),
  37032. name: "Front",
  37033. image: {
  37034. source: "./media/characters/squeaks-mouse/front.svg",
  37035. extra: 352/308,
  37036. bottom: 25/377
  37037. }
  37038. },
  37039. },
  37040. [
  37041. {
  37042. name: "Micro",
  37043. height: math.unit(1, "inch"),
  37044. default: true
  37045. },
  37046. ]
  37047. ))
  37048. characterMakers.push(() => makeCharacter(
  37049. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37050. {
  37051. side: {
  37052. height: math.unit(35, "feet"),
  37053. name: "Side",
  37054. image: {
  37055. source: "./media/characters/sayko/side.svg",
  37056. extra: 1697/1021,
  37057. bottom: 82/1779
  37058. }
  37059. },
  37060. head: {
  37061. height: math.unit(16, "feet"),
  37062. name: "Head",
  37063. image: {
  37064. source: "./media/characters/sayko/head.svg"
  37065. }
  37066. },
  37067. forepaw: {
  37068. height: math.unit(7.85, "feet"),
  37069. name: "Forepaw",
  37070. image: {
  37071. source: "./media/characters/sayko/forepaw.svg"
  37072. }
  37073. },
  37074. hindpaw: {
  37075. height: math.unit(8.8, "feet"),
  37076. name: "Hindpaw",
  37077. image: {
  37078. source: "./media/characters/sayko/hindpaw.svg"
  37079. }
  37080. },
  37081. },
  37082. [
  37083. {
  37084. name: "Normal",
  37085. height: math.unit(35, "feet"),
  37086. default: true
  37087. },
  37088. {
  37089. name: "Colossus",
  37090. height: math.unit(100, "meters")
  37091. },
  37092. {
  37093. name: "\"Small\" Deity",
  37094. height: math.unit(1, "km")
  37095. },
  37096. {
  37097. name: "\"Large\" Deity",
  37098. height: math.unit(15, "km")
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(6, "feet"),
  37107. weight: math.unit(250, "lb"),
  37108. name: "Front",
  37109. image: {
  37110. source: "./media/characters/mukiro/front.svg",
  37111. extra: 1368/1310,
  37112. bottom: 34/1402
  37113. }
  37114. },
  37115. },
  37116. [
  37117. {
  37118. name: "Normal",
  37119. height: math.unit(6, "feet"),
  37120. default: true
  37121. },
  37122. ]
  37123. ))
  37124. characterMakers.push(() => makeCharacter(
  37125. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37126. {
  37127. front: {
  37128. height: math.unit(12 + 4/12, "feet"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37132. extra: 1346/1311,
  37133. bottom: 65/1411
  37134. }
  37135. },
  37136. },
  37137. [
  37138. {
  37139. name: "Base",
  37140. height: math.unit(12 + 4/12, "feet"),
  37141. default: true
  37142. },
  37143. {
  37144. name: "Macro",
  37145. height: math.unit(150, "feet")
  37146. },
  37147. {
  37148. name: "Mega",
  37149. height: math.unit(2, "miles")
  37150. },
  37151. {
  37152. name: "Demi God",
  37153. height: math.unit(4, "AU")
  37154. },
  37155. {
  37156. name: "God Size",
  37157. height: math.unit(1, "universe")
  37158. },
  37159. ]
  37160. ))
  37161. characterMakers.push(() => makeCharacter(
  37162. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37163. {
  37164. front: {
  37165. height: math.unit(3 + 3/12, "feet"),
  37166. weight: math.unit(88, "lb"),
  37167. name: "Front",
  37168. image: {
  37169. source: "./media/characters/trey/front.svg",
  37170. extra: 1815/1509,
  37171. bottom: 60/1875
  37172. }
  37173. },
  37174. },
  37175. [
  37176. {
  37177. name: "Normal",
  37178. height: math.unit(3 + 3/12, "feet"),
  37179. default: true
  37180. },
  37181. ]
  37182. ))
  37183. characterMakers.push(() => makeCharacter(
  37184. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37185. {
  37186. front: {
  37187. height: math.unit(4, "meters"),
  37188. name: "Front",
  37189. image: {
  37190. source: "./media/characters/adelonda/front.svg",
  37191. extra: 1942/1775,
  37192. bottom: 33/1975
  37193. }
  37194. },
  37195. back: {
  37196. height: math.unit(4, "meters"),
  37197. name: "Back",
  37198. image: {
  37199. source: "./media/characters/adelonda/back.svg",
  37200. extra: 1932/1780,
  37201. bottom: 42/1974
  37202. }
  37203. },
  37204. bust: {
  37205. height: math.unit(1.8, "meter"),
  37206. name: "Bust",
  37207. image: {
  37208. source: "./media/characters/adelonda/bust.svg"
  37209. }
  37210. },
  37211. },
  37212. [
  37213. {
  37214. name: "Normal",
  37215. height: math.unit(4, "meters"),
  37216. default: true
  37217. },
  37218. ]
  37219. ))
  37220. characterMakers.push(() => makeCharacter(
  37221. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37222. {
  37223. front: {
  37224. height: math.unit(8 + 4/12, "feet"),
  37225. weight: math.unit(670, "lb"),
  37226. name: "Front",
  37227. image: {
  37228. source: "./media/characters/acadiel/front.svg",
  37229. extra: 1901/1595,
  37230. bottom: 142/2043
  37231. }
  37232. },
  37233. },
  37234. [
  37235. {
  37236. name: "Normal",
  37237. height: math.unit(8 + 4/12, "feet"),
  37238. default: true
  37239. },
  37240. {
  37241. name: "Macro",
  37242. height: math.unit(200, "feet")
  37243. },
  37244. ]
  37245. ))
  37246. characterMakers.push(() => makeCharacter(
  37247. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37248. {
  37249. front: {
  37250. height: math.unit(6 + 2/12, "feet"),
  37251. weight: math.unit(185, "lb"),
  37252. name: "Front",
  37253. image: {
  37254. source: "./media/characters/kayne-ein/front.svg",
  37255. extra: 1780/1560,
  37256. bottom: 81/1861
  37257. }
  37258. },
  37259. },
  37260. [
  37261. {
  37262. name: "Normal",
  37263. height: math.unit(6 + 2/12, "feet"),
  37264. default: true
  37265. },
  37266. {
  37267. name: "Transformation Stage",
  37268. height: math.unit(15, "feet")
  37269. },
  37270. {
  37271. name: "Macro",
  37272. height: math.unit(150, "feet")
  37273. },
  37274. {
  37275. name: "Earth's Shadow",
  37276. height: math.unit(6200, "miles")
  37277. },
  37278. {
  37279. name: "Universal Demon",
  37280. height: math.unit(28e9, "parsecs")
  37281. },
  37282. {
  37283. name: "Multiverse God",
  37284. height: math.unit(3, "multiverses")
  37285. },
  37286. ]
  37287. ))
  37288. characterMakers.push(() => makeCharacter(
  37289. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37290. {
  37291. front: {
  37292. height: math.unit(5 + 5/12, "feet"),
  37293. name: "Front",
  37294. image: {
  37295. source: "./media/characters/fawn/front.svg",
  37296. extra: 1873/1731,
  37297. bottom: 95/1968
  37298. }
  37299. },
  37300. back: {
  37301. height: math.unit(5 + 5/12, "feet"),
  37302. name: "Back",
  37303. image: {
  37304. source: "./media/characters/fawn/back.svg",
  37305. extra: 1813/1700,
  37306. bottom: 14/1827
  37307. }
  37308. },
  37309. hoof: {
  37310. height: math.unit(1.45, "feet"),
  37311. name: "Hoof",
  37312. image: {
  37313. source: "./media/characters/fawn/hoof.svg"
  37314. }
  37315. },
  37316. },
  37317. [
  37318. {
  37319. name: "Normal",
  37320. height: math.unit(5 + 5/12, "feet"),
  37321. default: true
  37322. },
  37323. ]
  37324. ))
  37325. characterMakers.push(() => makeCharacter(
  37326. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37327. {
  37328. front: {
  37329. height: math.unit(2 + 5/12, "feet"),
  37330. name: "Front",
  37331. image: {
  37332. source: "./media/characters/orion/front.svg",
  37333. extra: 1366/1304,
  37334. bottom: 43/1409
  37335. }
  37336. },
  37337. paw: {
  37338. height: math.unit(0.52, "feet"),
  37339. name: "Paw",
  37340. image: {
  37341. source: "./media/characters/orion/paw.svg"
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(2 + 5/12, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(5 + 10/12, "feet"),
  37358. name: "Front",
  37359. image: {
  37360. source: "./media/characters/vera/front.svg",
  37361. extra: 1680/1575,
  37362. bottom: 49/1729
  37363. }
  37364. },
  37365. back: {
  37366. height: math.unit(5 + 10/12, "feet"),
  37367. name: "Back",
  37368. image: {
  37369. source: "./media/characters/vera/back.svg",
  37370. extra: 1700/1588,
  37371. bottom: 18/1718
  37372. }
  37373. },
  37374. arcanine: {
  37375. height: math.unit(6 + 8/12, "feet"),
  37376. name: "Arcanine",
  37377. image: {
  37378. source: "./media/characters/vera/arcanine.svg",
  37379. extra: 1590/1511,
  37380. bottom: 71/1661
  37381. }
  37382. },
  37383. maw: {
  37384. height: math.unit(0.82, "feet"),
  37385. name: "Maw",
  37386. image: {
  37387. source: "./media/characters/vera/maw.svg"
  37388. }
  37389. },
  37390. mawArcanine: {
  37391. height: math.unit(0.97, "feet"),
  37392. name: "Maw (Arcanine)",
  37393. image: {
  37394. source: "./media/characters/vera/maw-arcanine.svg"
  37395. }
  37396. },
  37397. paw: {
  37398. height: math.unit(0.75, "feet"),
  37399. name: "Paw",
  37400. image: {
  37401. source: "./media/characters/vera/paw.svg"
  37402. }
  37403. },
  37404. pawprint: {
  37405. height: math.unit(0.52, "feet"),
  37406. name: "Pawprint",
  37407. image: {
  37408. source: "./media/characters/vera/pawprint.svg"
  37409. }
  37410. },
  37411. },
  37412. [
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(5 + 10/12, "feet"),
  37416. default: true
  37417. },
  37418. {
  37419. name: "Macro",
  37420. height: math.unit(75, "feet")
  37421. },
  37422. ]
  37423. ))
  37424. characterMakers.push(() => makeCharacter(
  37425. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37426. {
  37427. front: {
  37428. height: math.unit(4, "feet"),
  37429. weight: math.unit(40, "lb"),
  37430. name: "Front",
  37431. image: {
  37432. source: "./media/characters/orvan-rabbit/front.svg",
  37433. extra: 1896/1642,
  37434. bottom: 29/1925
  37435. }
  37436. },
  37437. },
  37438. [
  37439. {
  37440. name: "Normal",
  37441. height: math.unit(4, "feet"),
  37442. default: true
  37443. },
  37444. ]
  37445. ))
  37446. characterMakers.push(() => makeCharacter(
  37447. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37448. {
  37449. front: {
  37450. height: math.unit(6, "feet"),
  37451. weight: math.unit(168, "lb"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/lisa/front.svg",
  37455. extra: 2065/1867,
  37456. bottom: 46/2111
  37457. }
  37458. },
  37459. back: {
  37460. height: math.unit(6, "feet"),
  37461. weight: math.unit(168, "lb"),
  37462. name: "Back",
  37463. image: {
  37464. source: "./media/characters/lisa/back.svg",
  37465. extra: 1982/1838,
  37466. bottom: 29/2011
  37467. }
  37468. },
  37469. maw: {
  37470. height: math.unit(0.81, "feet"),
  37471. name: "Maw",
  37472. image: {
  37473. source: "./media/characters/lisa/maw.svg"
  37474. }
  37475. },
  37476. paw: {
  37477. height: math.unit(0.9, "feet"),
  37478. name: "Paw",
  37479. image: {
  37480. source: "./media/characters/lisa/paw.svg"
  37481. }
  37482. },
  37483. caribousune: {
  37484. height: math.unit(7 + 2/12, "feet"),
  37485. weight: math.unit(268, "lb"),
  37486. name: "Caribousune",
  37487. image: {
  37488. source: "./media/characters/lisa/caribousune.svg",
  37489. extra: 1843/1633,
  37490. bottom: 29/1872
  37491. }
  37492. },
  37493. frontCaribousune: {
  37494. height: math.unit(7 + 2/12, "feet"),
  37495. weight: math.unit(268, "lb"),
  37496. name: "Front (Caribousune)",
  37497. image: {
  37498. source: "./media/characters/lisa/front-caribousune.svg",
  37499. extra: 1818/1638,
  37500. bottom: 52/1870
  37501. }
  37502. },
  37503. sideCaribousune: {
  37504. height: math.unit(7 + 2/12, "feet"),
  37505. weight: math.unit(268, "lb"),
  37506. name: "Side (Caribousune)",
  37507. image: {
  37508. source: "./media/characters/lisa/side-caribousune.svg",
  37509. extra: 1851/1635,
  37510. bottom: 16/1867
  37511. }
  37512. },
  37513. backCaribousune: {
  37514. height: math.unit(7 + 2/12, "feet"),
  37515. weight: math.unit(268, "lb"),
  37516. name: "Back (Caribousune)",
  37517. image: {
  37518. source: "./media/characters/lisa/back-caribousune.svg",
  37519. extra: 1801/1604,
  37520. bottom: 44/1845
  37521. }
  37522. },
  37523. caribou: {
  37524. height: math.unit(7 + 2/12, "feet"),
  37525. weight: math.unit(268, "lb"),
  37526. name: "Caribou",
  37527. image: {
  37528. source: "./media/characters/lisa/caribou.svg",
  37529. extra: 1843/1633,
  37530. bottom: 29/1872
  37531. }
  37532. },
  37533. frontCaribou: {
  37534. height: math.unit(7 + 2/12, "feet"),
  37535. weight: math.unit(268, "lb"),
  37536. name: "Front (Caribou)",
  37537. image: {
  37538. source: "./media/characters/lisa/front-caribou.svg",
  37539. extra: 1818/1638,
  37540. bottom: 52/1870
  37541. }
  37542. },
  37543. sideCaribou: {
  37544. height: math.unit(7 + 2/12, "feet"),
  37545. weight: math.unit(268, "lb"),
  37546. name: "Side (Caribou)",
  37547. image: {
  37548. source: "./media/characters/lisa/side-caribou.svg",
  37549. extra: 1851/1635,
  37550. bottom: 16/1867
  37551. }
  37552. },
  37553. backCaribou: {
  37554. height: math.unit(7 + 2/12, "feet"),
  37555. weight: math.unit(268, "lb"),
  37556. name: "Back (Caribou)",
  37557. image: {
  37558. source: "./media/characters/lisa/back-caribou.svg",
  37559. extra: 1801/1604,
  37560. bottom: 44/1845
  37561. }
  37562. },
  37563. mawCaribou: {
  37564. height: math.unit(1.45, "feet"),
  37565. name: "Maw (Caribou)",
  37566. image: {
  37567. source: "./media/characters/lisa/maw-caribou.svg"
  37568. }
  37569. },
  37570. mawCaribousune: {
  37571. height: math.unit(1.45, "feet"),
  37572. name: "Maw (Caribousune)",
  37573. image: {
  37574. source: "./media/characters/lisa/maw-caribousune.svg"
  37575. }
  37576. },
  37577. pawCaribousune: {
  37578. height: math.unit(1.61, "feet"),
  37579. name: "Paw (Caribou)",
  37580. image: {
  37581. source: "./media/characters/lisa/paw-caribousune.svg"
  37582. }
  37583. },
  37584. },
  37585. [
  37586. {
  37587. name: "Normal",
  37588. height: math.unit(6, "feet")
  37589. },
  37590. {
  37591. name: "God Size",
  37592. height: math.unit(72, "feet"),
  37593. default: true
  37594. },
  37595. {
  37596. name: "Towering",
  37597. height: math.unit(288, "feet")
  37598. },
  37599. {
  37600. name: "City Size",
  37601. height: math.unit(48384, "feet")
  37602. },
  37603. {
  37604. name: "Continental",
  37605. height: math.unit(4200, "miles")
  37606. },
  37607. {
  37608. name: "Planet Eater",
  37609. height: math.unit(42, "earths")
  37610. },
  37611. {
  37612. name: "Star Swallower",
  37613. height: math.unit(42, "solarradii")
  37614. },
  37615. {
  37616. name: "System Swallower",
  37617. height: math.unit(84000, "AU")
  37618. },
  37619. {
  37620. name: "Galaxy Gobbler",
  37621. height: math.unit(42, "galaxies")
  37622. },
  37623. {
  37624. name: "Universe Devourer",
  37625. height: math.unit(42, "universes")
  37626. },
  37627. {
  37628. name: "Multiverse Muncher",
  37629. height: math.unit(42, "multiverses")
  37630. },
  37631. ]
  37632. ))
  37633. characterMakers.push(() => makeCharacter(
  37634. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37635. {
  37636. front: {
  37637. height: math.unit(36, "feet"),
  37638. name: "Front",
  37639. image: {
  37640. source: "./media/characters/shadow-rat/front.svg",
  37641. extra: 1845/1758,
  37642. bottom: 83/1928
  37643. }
  37644. },
  37645. },
  37646. [
  37647. {
  37648. name: "Macro",
  37649. height: math.unit(36, "feet"),
  37650. default: true
  37651. },
  37652. ]
  37653. ))
  37654. characterMakers.push(() => makeCharacter(
  37655. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37656. {
  37657. side: {
  37658. height: math.unit(8, "feet"),
  37659. weight: math.unit(2630, "lb"),
  37660. name: "Side",
  37661. image: {
  37662. source: "./media/characters/torallia/side.svg",
  37663. extra: 2164/2021,
  37664. bottom: 371/2535
  37665. }
  37666. },
  37667. },
  37668. [
  37669. {
  37670. name: "Mortal Interaction",
  37671. height: math.unit(8, "feet")
  37672. },
  37673. {
  37674. name: "Natural",
  37675. height: math.unit(24, "feet"),
  37676. default: true
  37677. },
  37678. {
  37679. name: "Giant",
  37680. height: math.unit(80, "feet")
  37681. },
  37682. {
  37683. name: "Kaiju",
  37684. height: math.unit(240, "feet")
  37685. },
  37686. {
  37687. name: "Macro",
  37688. height: math.unit(800, "feet")
  37689. },
  37690. {
  37691. name: "Macro+",
  37692. height: math.unit(2400, "feet")
  37693. },
  37694. {
  37695. name: "Macro++",
  37696. height: math.unit(8000, "feet")
  37697. },
  37698. {
  37699. name: "City-Crushing",
  37700. height: math.unit(24000, "feet")
  37701. },
  37702. {
  37703. name: "Mountain-Mashing",
  37704. height: math.unit(80000, "feet")
  37705. },
  37706. {
  37707. name: "District Demolisher",
  37708. height: math.unit(240000, "feet")
  37709. },
  37710. {
  37711. name: "Tri-County Terror",
  37712. height: math.unit(800000, "feet")
  37713. },
  37714. {
  37715. name: "State Smasher",
  37716. height: math.unit(2.4e6, "feet")
  37717. },
  37718. {
  37719. name: "Nation Nemesis",
  37720. height: math.unit(8e6, "feet")
  37721. },
  37722. {
  37723. name: "Continent Cracker",
  37724. height: math.unit(2.4e7, "feet")
  37725. },
  37726. {
  37727. name: "Planet-Pillaging",
  37728. height: math.unit(8e7, "feet")
  37729. },
  37730. {
  37731. name: "Earth-Eclipsing",
  37732. height: math.unit(2.4e8, "feet")
  37733. },
  37734. {
  37735. name: "Jovian-Jostling",
  37736. height: math.unit(8e8, "feet")
  37737. },
  37738. {
  37739. name: "Gas Giant Gulper",
  37740. height: math.unit(2.4e9, "feet")
  37741. },
  37742. {
  37743. name: "Astral Annihilator",
  37744. height: math.unit(8e9, "feet")
  37745. },
  37746. {
  37747. name: "Celestial Conqueror",
  37748. height: math.unit(2.4e10, "feet")
  37749. },
  37750. {
  37751. name: "Sol-Swallowing",
  37752. height: math.unit(8e10, "feet")
  37753. },
  37754. {
  37755. name: "Hunter of the Heavens",
  37756. height: math.unit(2.4e13, "feet")
  37757. },
  37758. ]
  37759. ))
  37760. characterMakers.push(() => makeCharacter(
  37761. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37762. {
  37763. front: {
  37764. height: math.unit(6 + 8/12, "feet"),
  37765. name: "Front",
  37766. image: {
  37767. source: "./media/characters/rebecca-pawlson/front.svg",
  37768. extra: 1737/1596,
  37769. bottom: 107/1844
  37770. }
  37771. },
  37772. back: {
  37773. height: math.unit(6 + 8/12, "feet"),
  37774. name: "Back",
  37775. image: {
  37776. source: "./media/characters/rebecca-pawlson/back.svg",
  37777. extra: 1702/1523,
  37778. bottom: 86/1788
  37779. }
  37780. },
  37781. },
  37782. [
  37783. {
  37784. name: "Normal",
  37785. height: math.unit(6 + 8/12, "feet")
  37786. },
  37787. {
  37788. name: "Mini Macro",
  37789. height: math.unit(10, "feet"),
  37790. default: true
  37791. },
  37792. {
  37793. name: "Macro",
  37794. height: math.unit(100, "feet")
  37795. },
  37796. {
  37797. name: "Mega Macro",
  37798. height: math.unit(2500, "feet")
  37799. },
  37800. {
  37801. name: "Giga Macro",
  37802. height: math.unit(50, "miles")
  37803. },
  37804. ]
  37805. ))
  37806. characterMakers.push(() => makeCharacter(
  37807. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37808. {
  37809. front: {
  37810. height: math.unit(7 + 6/12, "feet"),
  37811. weight: math.unit(600, "lb"),
  37812. name: "Front",
  37813. image: {
  37814. source: "./media/characters/moxie-nova/front.svg",
  37815. extra: 1734/1652,
  37816. bottom: 41/1775
  37817. }
  37818. },
  37819. },
  37820. [
  37821. {
  37822. name: "Normal",
  37823. height: math.unit(7 + 6/12, "feet"),
  37824. default: true
  37825. },
  37826. ]
  37827. ))
  37828. characterMakers.push(() => makeCharacter(
  37829. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37830. {
  37831. front: {
  37832. height: math.unit(5, "feet"),
  37833. weight: math.unit(150, "lb"),
  37834. name: "Front",
  37835. image: {
  37836. source: "./media/characters/tiffany/front.svg",
  37837. extra: 1941/1845,
  37838. bottom: 58/1999
  37839. }
  37840. },
  37841. },
  37842. [
  37843. {
  37844. name: "Normal",
  37845. height: math.unit(5, "feet"),
  37846. default: true
  37847. },
  37848. ]
  37849. ))
  37850. characterMakers.push(() => makeCharacter(
  37851. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37852. {
  37853. front: {
  37854. height: math.unit(8, "feet"),
  37855. weight: math.unit(300, "lb"),
  37856. name: "Front",
  37857. image: {
  37858. source: "./media/characters/raxinath/front.svg",
  37859. extra: 1407/1309,
  37860. bottom: 39/1446
  37861. }
  37862. },
  37863. back: {
  37864. height: math.unit(8, "feet"),
  37865. weight: math.unit(300, "lb"),
  37866. name: "Back",
  37867. image: {
  37868. source: "./media/characters/raxinath/back.svg",
  37869. extra: 1405/1315,
  37870. bottom: 9/1414
  37871. }
  37872. },
  37873. },
  37874. [
  37875. {
  37876. name: "Speck",
  37877. height: math.unit(0.5, "nm")
  37878. },
  37879. {
  37880. name: "Micro",
  37881. height: math.unit(3, "inches")
  37882. },
  37883. {
  37884. name: "Kobold",
  37885. height: math.unit(3, "feet")
  37886. },
  37887. {
  37888. name: "Normal",
  37889. height: math.unit(8, "feet"),
  37890. default: true
  37891. },
  37892. {
  37893. name: "Giant",
  37894. height: math.unit(50, "feet")
  37895. },
  37896. {
  37897. name: "Macro",
  37898. height: math.unit(1000, "feet")
  37899. },
  37900. {
  37901. name: "Megamacro",
  37902. height: math.unit(1, "mile")
  37903. },
  37904. ]
  37905. ))
  37906. characterMakers.push(() => makeCharacter(
  37907. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37908. {
  37909. front: {
  37910. height: math.unit(10, "feet"),
  37911. weight: math.unit(1442, "lb"),
  37912. name: "Front",
  37913. image: {
  37914. source: "./media/characters/mal-dragon/front.svg",
  37915. extra: 1515/1444,
  37916. bottom: 113/1628
  37917. }
  37918. },
  37919. back: {
  37920. height: math.unit(10, "feet"),
  37921. weight: math.unit(1442, "lb"),
  37922. name: "Back",
  37923. image: {
  37924. source: "./media/characters/mal-dragon/back.svg",
  37925. extra: 1527/1434,
  37926. bottom: 25/1552
  37927. }
  37928. },
  37929. },
  37930. [
  37931. {
  37932. name: "Mortal Interaction",
  37933. height: math.unit(10, "feet"),
  37934. default: true
  37935. },
  37936. {
  37937. name: "Large",
  37938. height: math.unit(30, "feet")
  37939. },
  37940. {
  37941. name: "Kaiju",
  37942. height: math.unit(300, "feet")
  37943. },
  37944. {
  37945. name: "Megamacro",
  37946. height: math.unit(10000, "feet")
  37947. },
  37948. {
  37949. name: "Continent Cracker",
  37950. height: math.unit(30000000, "feet")
  37951. },
  37952. {
  37953. name: "Sol-Swallowing",
  37954. height: math.unit(1e11, "feet")
  37955. },
  37956. {
  37957. name: "Light Universal",
  37958. height: math.unit(5, "universes")
  37959. },
  37960. {
  37961. name: "Universe Atoms",
  37962. height: math.unit(1.829e9, "universes")
  37963. },
  37964. {
  37965. name: "Light Multiversal",
  37966. height: math.unit(5, "multiverses")
  37967. },
  37968. {
  37969. name: "Multiverse Atoms",
  37970. height: math.unit(1.829e9, "multiverses")
  37971. },
  37972. {
  37973. name: "Fabric of Time",
  37974. height: math.unit(1e262, "multiverses")
  37975. },
  37976. ]
  37977. ))
  37978. characterMakers.push(() => makeCharacter(
  37979. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37980. {
  37981. front: {
  37982. height: math.unit(9, "feet"),
  37983. weight: math.unit(1050, "lb"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/tabitha/front.svg",
  37987. extra: 2083/1994,
  37988. bottom: 68/2151
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Baseline",
  37995. height: math.unit(9, "feet"),
  37996. default: true
  37997. },
  37998. {
  37999. name: "Giant",
  38000. height: math.unit(90, "feet")
  38001. },
  38002. {
  38003. name: "Macro",
  38004. height: math.unit(900, "feet")
  38005. },
  38006. {
  38007. name: "Megamacro",
  38008. height: math.unit(9000, "feet")
  38009. },
  38010. {
  38011. name: "City-Crushing",
  38012. height: math.unit(27000, "feet")
  38013. },
  38014. {
  38015. name: "Mountain-Mashing",
  38016. height: math.unit(90000, "feet")
  38017. },
  38018. {
  38019. name: "Nation Nemesis",
  38020. height: math.unit(9e6, "feet")
  38021. },
  38022. {
  38023. name: "Continent Cracker",
  38024. height: math.unit(27e6, "feet")
  38025. },
  38026. {
  38027. name: "Earth-Eclipsing",
  38028. height: math.unit(2.7e8, "feet")
  38029. },
  38030. {
  38031. name: "Gas Giant Gulper",
  38032. height: math.unit(2.7e9, "feet")
  38033. },
  38034. {
  38035. name: "Sol-Swallowing",
  38036. height: math.unit(9e10, "feet")
  38037. },
  38038. {
  38039. name: "Galaxy Gulper",
  38040. height: math.unit(9, "galaxies")
  38041. },
  38042. {
  38043. name: "Cosmos Churner",
  38044. height: math.unit(9, "universes")
  38045. },
  38046. ]
  38047. ))
  38048. characterMakers.push(() => makeCharacter(
  38049. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38050. {
  38051. front: {
  38052. height: math.unit(160, "cm"),
  38053. weight: math.unit(55, "kg"),
  38054. name: "Front",
  38055. image: {
  38056. source: "./media/characters/tow/front.svg",
  38057. extra: 1751/1722,
  38058. bottom: 74/1825
  38059. }
  38060. },
  38061. },
  38062. [
  38063. {
  38064. name: "Norm",
  38065. height: math.unit(160, "cm")
  38066. },
  38067. {
  38068. name: "Casual",
  38069. height: math.unit(3200, "m"),
  38070. default: true
  38071. },
  38072. {
  38073. name: "Show-Off",
  38074. height: math.unit(160, "km")
  38075. },
  38076. ]
  38077. ))
  38078. characterMakers.push(() => makeCharacter(
  38079. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38080. {
  38081. front: {
  38082. height: math.unit(7 + 11/12, "feet"),
  38083. weight: math.unit(342.8, "lb"),
  38084. name: "Front",
  38085. image: {
  38086. source: "./media/characters/vivian-orca-dragon/front.svg",
  38087. extra: 1890/1865,
  38088. bottom: 28/1918
  38089. }
  38090. },
  38091. },
  38092. [
  38093. {
  38094. name: "Micro",
  38095. height: math.unit(5, "inches")
  38096. },
  38097. {
  38098. name: "Normal",
  38099. height: math.unit(7 + 11/12, "feet"),
  38100. default: true
  38101. },
  38102. {
  38103. name: "Macro",
  38104. height: math.unit(395 + 7/12, "feet")
  38105. },
  38106. ]
  38107. ))
  38108. characterMakers.push(() => makeCharacter(
  38109. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38110. {
  38111. side: {
  38112. height: math.unit(10, "feet"),
  38113. weight: math.unit(1442, "lb"),
  38114. name: "Side",
  38115. image: {
  38116. source: "./media/characters/lotherakon/side.svg",
  38117. extra: 1604/1497,
  38118. bottom: 89/1693
  38119. }
  38120. },
  38121. },
  38122. [
  38123. {
  38124. name: "Mortal Interaction",
  38125. height: math.unit(10, "feet")
  38126. },
  38127. {
  38128. name: "Large",
  38129. height: math.unit(30, "feet"),
  38130. default: true
  38131. },
  38132. {
  38133. name: "Giant",
  38134. height: math.unit(100, "feet")
  38135. },
  38136. {
  38137. name: "Kaiju",
  38138. height: math.unit(300, "feet")
  38139. },
  38140. {
  38141. name: "Macro",
  38142. height: math.unit(1000, "feet")
  38143. },
  38144. {
  38145. name: "Macro+",
  38146. height: math.unit(3000, "feet")
  38147. },
  38148. {
  38149. name: "Megamacro",
  38150. height: math.unit(10000, "feet")
  38151. },
  38152. {
  38153. name: "City-Crushing",
  38154. height: math.unit(30000, "feet")
  38155. },
  38156. {
  38157. name: "Continent Cracker",
  38158. height: math.unit(30e6, "feet")
  38159. },
  38160. {
  38161. name: "Earth Eclipsing",
  38162. height: math.unit(3e8, "feet")
  38163. },
  38164. {
  38165. name: "Gas Giant Gulper",
  38166. height: math.unit(3e9, "feet")
  38167. },
  38168. {
  38169. name: "Sol-Swallowing",
  38170. height: math.unit(1e11, "feet")
  38171. },
  38172. {
  38173. name: "System Swallower",
  38174. height: math.unit(3e14, "feet")
  38175. },
  38176. {
  38177. name: "Galaxy Gulper",
  38178. height: math.unit(10, "galaxies")
  38179. },
  38180. {
  38181. name: "Light Universal",
  38182. height: math.unit(5, "universes")
  38183. },
  38184. {
  38185. name: "Universe Palm",
  38186. height: math.unit(20, "universes")
  38187. },
  38188. {
  38189. name: "Light Multiversal",
  38190. height: math.unit(5, "multiverses")
  38191. },
  38192. {
  38193. name: "Multiverse Palm",
  38194. height: math.unit(20, "multiverses")
  38195. },
  38196. {
  38197. name: "Inferno Incarnate",
  38198. height: math.unit(1e7, "multiverses")
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(8, "feet"),
  38207. weight: math.unit(1200, "lb"),
  38208. name: "Front",
  38209. image: {
  38210. source: "./media/characters/malithee/front.svg",
  38211. extra: 1675/1640,
  38212. bottom: 162/1837
  38213. }
  38214. },
  38215. },
  38216. [
  38217. {
  38218. name: "Mortal Interaction",
  38219. height: math.unit(8, "feet"),
  38220. default: true
  38221. },
  38222. {
  38223. name: "Large",
  38224. height: math.unit(24, "feet")
  38225. },
  38226. {
  38227. name: "Kaiju",
  38228. height: math.unit(240, "feet")
  38229. },
  38230. {
  38231. name: "Megamacro",
  38232. height: math.unit(8000, "feet")
  38233. },
  38234. {
  38235. name: "Continent Cracker",
  38236. height: math.unit(24e6, "feet")
  38237. },
  38238. {
  38239. name: "Earth-Eclipsing",
  38240. height: math.unit(2.4e8, "feet")
  38241. },
  38242. {
  38243. name: "Sol-Swallowing",
  38244. height: math.unit(8e10, "feet")
  38245. },
  38246. {
  38247. name: "Galaxy Gulper",
  38248. height: math.unit(8, "galaxies")
  38249. },
  38250. {
  38251. name: "Light Universal",
  38252. height: math.unit(4, "universes")
  38253. },
  38254. {
  38255. name: "Universe Atoms",
  38256. height: math.unit(1.829e9, "universes")
  38257. },
  38258. {
  38259. name: "Light Multiversal",
  38260. height: math.unit(4, "multiverses")
  38261. },
  38262. {
  38263. name: "Multiverse Atoms",
  38264. height: math.unit(1.829e9, "multiverses")
  38265. },
  38266. {
  38267. name: "Nigh-Omnipresence",
  38268. height: math.unit(8e261, "multiverses")
  38269. },
  38270. ]
  38271. ))
  38272. characterMakers.push(() => makeCharacter(
  38273. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38274. {
  38275. front: {
  38276. height: math.unit(10, "feet"),
  38277. weight: math.unit(1500, "lb"),
  38278. name: "Front",
  38279. image: {
  38280. source: "./media/characters/miles-thestia/front.svg",
  38281. extra: 1812/1727,
  38282. bottom: 86/1898
  38283. }
  38284. },
  38285. back: {
  38286. height: math.unit(10, "feet"),
  38287. weight: math.unit(1500, "lb"),
  38288. name: "Back",
  38289. image: {
  38290. source: "./media/characters/miles-thestia/back.svg",
  38291. extra: 1799/1690,
  38292. bottom: 47/1846
  38293. }
  38294. },
  38295. frontNsfw: {
  38296. height: math.unit(10, "feet"),
  38297. weight: math.unit(1500, "lb"),
  38298. name: "Front (NSFW)",
  38299. image: {
  38300. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38301. extra: 1812/1727,
  38302. bottom: 86/1898
  38303. }
  38304. },
  38305. },
  38306. [
  38307. {
  38308. name: "Mini-Macro",
  38309. height: math.unit(10, "feet"),
  38310. default: true
  38311. },
  38312. ]
  38313. ))
  38314. characterMakers.push(() => makeCharacter(
  38315. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38316. {
  38317. front: {
  38318. height: math.unit(25, "feet"),
  38319. name: "Front",
  38320. image: {
  38321. source: "./media/characters/titan-s-wulf/front.svg",
  38322. extra: 1560/1484,
  38323. bottom: 76/1636
  38324. }
  38325. },
  38326. },
  38327. [
  38328. {
  38329. name: "Smallest",
  38330. height: math.unit(25, "feet"),
  38331. default: true
  38332. },
  38333. {
  38334. name: "Normal",
  38335. height: math.unit(200, "feet")
  38336. },
  38337. {
  38338. name: "Macro",
  38339. height: math.unit(200000, "feet")
  38340. },
  38341. {
  38342. name: "Multiversal Original",
  38343. height: math.unit(10000, "multiverses")
  38344. },
  38345. ]
  38346. ))
  38347. characterMakers.push(() => makeCharacter(
  38348. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38349. {
  38350. front: {
  38351. height: math.unit(8, "feet"),
  38352. weight: math.unit(553, "lb"),
  38353. name: "Front",
  38354. image: {
  38355. source: "./media/characters/tawendeh/front.svg",
  38356. extra: 2365/2268,
  38357. bottom: 83/2448
  38358. }
  38359. },
  38360. frontClothed: {
  38361. height: math.unit(8, "feet"),
  38362. weight: math.unit(553, "lb"),
  38363. name: "Front (Clothed)",
  38364. image: {
  38365. source: "./media/characters/tawendeh/front-clothed.svg",
  38366. extra: 2365/2268,
  38367. bottom: 83/2448
  38368. }
  38369. },
  38370. back: {
  38371. height: math.unit(8, "feet"),
  38372. weight: math.unit(553, "lb"),
  38373. name: "Back",
  38374. image: {
  38375. source: "./media/characters/tawendeh/back.svg",
  38376. extra: 2397/2294,
  38377. bottom: 42/2439
  38378. }
  38379. },
  38380. },
  38381. [
  38382. {
  38383. name: "Mortal Interaction",
  38384. height: math.unit(8, "feet"),
  38385. default: true
  38386. },
  38387. {
  38388. name: "Giant",
  38389. height: math.unit(80, "feet")
  38390. },
  38391. {
  38392. name: "Macro",
  38393. height: math.unit(800, "feet")
  38394. },
  38395. {
  38396. name: "Megamacro",
  38397. height: math.unit(8000, "feet")
  38398. },
  38399. {
  38400. name: "City-Crushing",
  38401. height: math.unit(24000, "feet")
  38402. },
  38403. {
  38404. name: "Mountain-Mashing",
  38405. height: math.unit(80000, "feet")
  38406. },
  38407. {
  38408. name: "Nation Nemesis",
  38409. height: math.unit(8e6, "feet")
  38410. },
  38411. {
  38412. name: "Continent Cracker",
  38413. height: math.unit(24e6, "feet")
  38414. },
  38415. {
  38416. name: "Earth-Eclipsing",
  38417. height: math.unit(2.4e8, "feet")
  38418. },
  38419. {
  38420. name: "Gas Giant Gulper",
  38421. height: math.unit(2.4e9, "feet")
  38422. },
  38423. {
  38424. name: "Sol-Swallowing",
  38425. height: math.unit(8e10, "feet")
  38426. },
  38427. {
  38428. name: "Galaxy Gulper",
  38429. height: math.unit(8, "galaxies")
  38430. },
  38431. {
  38432. name: "Cosmos Churner",
  38433. height: math.unit(8, "universes")
  38434. },
  38435. {
  38436. name: "Omnipotent Otter",
  38437. height: math.unit(80, "universes")
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(2.6, "meters"),
  38446. weight: math.unit(900, "kg"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/neesha/front.svg",
  38450. extra: 1803/1653,
  38451. bottom: 128/1931
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Normal",
  38458. height: math.unit(2.6, "meters"),
  38459. default: true
  38460. },
  38461. {
  38462. name: "Macro",
  38463. height: math.unit(50, "meters")
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38469. {
  38470. front: {
  38471. height: math.unit(5, "feet"),
  38472. weight: math.unit(185, "lb"),
  38473. name: "Front",
  38474. image: {
  38475. source: "./media/characters/kyera/front.svg",
  38476. extra: 1875/1790,
  38477. bottom: 96/1971
  38478. }
  38479. },
  38480. },
  38481. [
  38482. {
  38483. name: "Normal",
  38484. height: math.unit(5, "feet"),
  38485. default: true
  38486. },
  38487. ]
  38488. ))
  38489. characterMakers.push(() => makeCharacter(
  38490. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38491. {
  38492. front: {
  38493. height: math.unit(7 + 6/12, "feet"),
  38494. weight: math.unit(540, "lb"),
  38495. name: "Front",
  38496. image: {
  38497. source: "./media/characters/yuko/front.svg",
  38498. extra: 1282/1222,
  38499. bottom: 101/1383
  38500. }
  38501. },
  38502. frontClothed: {
  38503. height: math.unit(7 + 6/12, "feet"),
  38504. weight: math.unit(540, "lb"),
  38505. name: "Front (Clothed)",
  38506. image: {
  38507. source: "./media/characters/yuko/front-clothed.svg",
  38508. extra: 1282/1222,
  38509. bottom: 101/1383
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(7 + 6/12, "feet"),
  38517. default: true
  38518. },
  38519. {
  38520. name: "Macro",
  38521. height: math.unit(26 + 9/12, "feet")
  38522. },
  38523. {
  38524. name: "Megamacro",
  38525. height: math.unit(300, "feet")
  38526. },
  38527. {
  38528. name: "Gigamacro",
  38529. height: math.unit(5000, "feet")
  38530. },
  38531. {
  38532. name: "Planetary",
  38533. height: math.unit(10000, "miles")
  38534. },
  38535. ]
  38536. ))
  38537. characterMakers.push(() => makeCharacter(
  38538. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38539. {
  38540. front: {
  38541. height: math.unit(8 + 2/12, "feet"),
  38542. weight: math.unit(600, "lb"),
  38543. name: "Front",
  38544. image: {
  38545. source: "./media/characters/deam-nitrel/front.svg",
  38546. extra: 1308/1234,
  38547. bottom: 125/1433
  38548. }
  38549. },
  38550. },
  38551. [
  38552. {
  38553. name: "Normal",
  38554. height: math.unit(8 + 2/12, "feet"),
  38555. default: true
  38556. },
  38557. ]
  38558. ))
  38559. characterMakers.push(() => makeCharacter(
  38560. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38561. {
  38562. front: {
  38563. height: math.unit(6.1, "feet"),
  38564. weight: math.unit(180, "lb"),
  38565. name: "Front",
  38566. image: {
  38567. source: "./media/characters/skyress/front.svg",
  38568. extra: 1045/915,
  38569. bottom: 28/1073
  38570. }
  38571. },
  38572. maw: {
  38573. height: math.unit(1, "feet"),
  38574. name: "Maw",
  38575. image: {
  38576. source: "./media/characters/skyress/maw.svg"
  38577. }
  38578. },
  38579. },
  38580. [
  38581. {
  38582. name: "Normal",
  38583. height: math.unit(6.1, "feet"),
  38584. default: true
  38585. },
  38586. {
  38587. name: "Macro",
  38588. height: math.unit(200, "feet")
  38589. },
  38590. ]
  38591. ))
  38592. characterMakers.push(() => makeCharacter(
  38593. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38594. {
  38595. front: {
  38596. height: math.unit(4 + 2/12, "feet"),
  38597. weight: math.unit(40, "kg"),
  38598. name: "Front",
  38599. image: {
  38600. source: "./media/characters/amethyst-jones/front.svg",
  38601. extra: 1220/1150,
  38602. bottom: 101/1321
  38603. }
  38604. },
  38605. },
  38606. [
  38607. {
  38608. name: "Normal",
  38609. height: math.unit(4 + 2/12, "feet"),
  38610. default: true
  38611. },
  38612. ]
  38613. ))
  38614. characterMakers.push(() => makeCharacter(
  38615. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38616. {
  38617. front: {
  38618. height: math.unit(1.7, "m"),
  38619. weight: math.unit(135, "lb"),
  38620. name: "Front",
  38621. image: {
  38622. source: "./media/characters/jade/front.svg",
  38623. extra: 1818/1767,
  38624. bottom: 32/1850
  38625. }
  38626. },
  38627. back: {
  38628. height: math.unit(1.7, "m"),
  38629. weight: math.unit(135, "lb"),
  38630. name: "Back",
  38631. image: {
  38632. source: "./media/characters/jade/back.svg",
  38633. extra: 1869/1809,
  38634. bottom: 35/1904
  38635. }
  38636. },
  38637. hand: {
  38638. height: math.unit(0.24, "m"),
  38639. name: "Hand",
  38640. image: {
  38641. source: "./media/characters/jade/hand.svg"
  38642. }
  38643. },
  38644. foot: {
  38645. height: math.unit(0.263, "m"),
  38646. name: "Foot",
  38647. image: {
  38648. source: "./media/characters/jade/foot.svg"
  38649. }
  38650. },
  38651. dick: {
  38652. height: math.unit(0.47, "m"),
  38653. name: "Dick",
  38654. image: {
  38655. source: "./media/characters/jade/dick.svg"
  38656. }
  38657. },
  38658. },
  38659. [
  38660. {
  38661. name: "Micro",
  38662. height: math.unit(22, "cm")
  38663. },
  38664. {
  38665. name: "Normal",
  38666. height: math.unit(1.7, "m"),
  38667. default: true
  38668. },
  38669. {
  38670. name: "Macro",
  38671. height: math.unit(152, "m")
  38672. },
  38673. ]
  38674. ))
  38675. characterMakers.push(() => makeCharacter(
  38676. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38677. {
  38678. front: {
  38679. height: math.unit(100, "miles"),
  38680. weight: math.unit(20000, "tons"),
  38681. name: "Front",
  38682. image: {
  38683. source: "./media/characters/cookie/front.svg",
  38684. extra: 1125/1070,
  38685. bottom: 30/1155
  38686. }
  38687. },
  38688. },
  38689. [
  38690. {
  38691. name: "Big",
  38692. height: math.unit(50, "feet")
  38693. },
  38694. {
  38695. name: "Macro",
  38696. height: math.unit(100, "miles"),
  38697. default: true
  38698. },
  38699. {
  38700. name: "Megamacro",
  38701. height: math.unit(90000, "miles")
  38702. },
  38703. ]
  38704. ))
  38705. characterMakers.push(() => makeCharacter(
  38706. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38707. {
  38708. front: {
  38709. height: math.unit(6, "feet"),
  38710. weight: math.unit(145, "lb"),
  38711. name: "Front",
  38712. image: {
  38713. source: "./media/characters/farzian/front.svg",
  38714. extra: 1902/1693,
  38715. bottom: 108/2010
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Macro",
  38722. height: math.unit(500, "feet"),
  38723. default: true
  38724. },
  38725. ]
  38726. ))
  38727. characterMakers.push(() => makeCharacter(
  38728. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38729. {
  38730. front: {
  38731. height: math.unit(3 + 6/12, "feet"),
  38732. weight: math.unit(50, "lb"),
  38733. name: "Front",
  38734. image: {
  38735. source: "./media/characters/kimberly-tilson/front.svg",
  38736. extra: 1400/1322,
  38737. bottom: 36/1436
  38738. }
  38739. },
  38740. back: {
  38741. height: math.unit(3 + 6/12, "feet"),
  38742. weight: math.unit(50, "lb"),
  38743. name: "Back",
  38744. image: {
  38745. source: "./media/characters/kimberly-tilson/back.svg",
  38746. extra: 1370/1307,
  38747. bottom: 20/1390
  38748. }
  38749. },
  38750. },
  38751. [
  38752. {
  38753. name: "Normal",
  38754. height: math.unit(3 + 6/12, "feet"),
  38755. default: true
  38756. },
  38757. ]
  38758. ))
  38759. characterMakers.push(() => makeCharacter(
  38760. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38761. {
  38762. front: {
  38763. height: math.unit(1148, "feet"),
  38764. weight: math.unit(34057, "lb"),
  38765. name: "Front",
  38766. image: {
  38767. source: "./media/characters/harthos/front.svg",
  38768. extra: 1391/1339,
  38769. bottom: 13/1404
  38770. }
  38771. },
  38772. },
  38773. [
  38774. {
  38775. name: "Macro",
  38776. height: math.unit(1148, "feet"),
  38777. default: true
  38778. },
  38779. ]
  38780. ))
  38781. characterMakers.push(() => makeCharacter(
  38782. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38783. {
  38784. front: {
  38785. height: math.unit(15, "feet"),
  38786. name: "Front",
  38787. image: {
  38788. source: "./media/characters/hypatia/front.svg",
  38789. extra: 1653/1591,
  38790. bottom: 79/1732
  38791. }
  38792. },
  38793. },
  38794. [
  38795. {
  38796. name: "Normal",
  38797. height: math.unit(15, "feet")
  38798. },
  38799. {
  38800. name: "Small",
  38801. height: math.unit(300, "feet")
  38802. },
  38803. {
  38804. name: "Macro",
  38805. height: math.unit(2500, "feet"),
  38806. default: true
  38807. },
  38808. {
  38809. name: "Mega Macro",
  38810. height: math.unit(1500, "miles")
  38811. },
  38812. {
  38813. name: "Giga Macro",
  38814. height: math.unit(1.5e6, "miles")
  38815. },
  38816. ]
  38817. ))
  38818. characterMakers.push(() => makeCharacter(
  38819. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38820. {
  38821. front: {
  38822. height: math.unit(6, "feet"),
  38823. weight: math.unit(200, "lb"),
  38824. name: "Front",
  38825. image: {
  38826. source: "./media/characters/wulver/front.svg",
  38827. extra: 1724/1632,
  38828. bottom: 130/1854
  38829. }
  38830. },
  38831. frontNsfw: {
  38832. height: math.unit(6, "feet"),
  38833. weight: math.unit(200, "lb"),
  38834. name: "Front (NSFW)",
  38835. image: {
  38836. source: "./media/characters/wulver/front-nsfw.svg",
  38837. extra: 1724/1632,
  38838. bottom: 130/1854
  38839. }
  38840. },
  38841. },
  38842. [
  38843. {
  38844. name: "Human-Sized",
  38845. height: math.unit(6, "feet")
  38846. },
  38847. {
  38848. name: "Normal",
  38849. height: math.unit(4, "meters"),
  38850. default: true
  38851. },
  38852. {
  38853. name: "Large",
  38854. height: math.unit(6, "m")
  38855. },
  38856. ]
  38857. ))
  38858. characterMakers.push(() => makeCharacter(
  38859. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38860. {
  38861. front: {
  38862. height: math.unit(7, "feet"),
  38863. name: "Front",
  38864. image: {
  38865. source: "./media/characters/maru/front.svg",
  38866. extra: 1595/1570,
  38867. bottom: 0/1595
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Normal",
  38874. height: math.unit(7, "feet"),
  38875. default: true
  38876. },
  38877. {
  38878. name: "Macro",
  38879. height: math.unit(700, "feet")
  38880. },
  38881. {
  38882. name: "Mega Macro",
  38883. height: math.unit(25, "miles")
  38884. },
  38885. ]
  38886. ))
  38887. characterMakers.push(() => makeCharacter(
  38888. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38889. {
  38890. front: {
  38891. height: math.unit(6, "feet"),
  38892. weight: math.unit(170, "lb"),
  38893. name: "Front",
  38894. image: {
  38895. source: "./media/characters/xenon/front.svg",
  38896. extra: 1376/1305,
  38897. bottom: 56/1432
  38898. }
  38899. },
  38900. back: {
  38901. height: math.unit(6, "feet"),
  38902. weight: math.unit(170, "lb"),
  38903. name: "Back",
  38904. image: {
  38905. source: "./media/characters/xenon/back.svg",
  38906. extra: 1328/1259,
  38907. bottom: 95/1423
  38908. }
  38909. },
  38910. maw: {
  38911. height: math.unit(0.52, "feet"),
  38912. name: "Maw",
  38913. image: {
  38914. source: "./media/characters/xenon/maw.svg"
  38915. }
  38916. },
  38917. hand: {
  38918. height: math.unit(0.82, "feet"),
  38919. name: "Hand",
  38920. image: {
  38921. source: "./media/characters/xenon/hand.svg"
  38922. }
  38923. },
  38924. foot: {
  38925. height: math.unit(1.13, "feet"),
  38926. name: "Foot",
  38927. image: {
  38928. source: "./media/characters/xenon/foot.svg"
  38929. }
  38930. },
  38931. },
  38932. [
  38933. {
  38934. name: "Micro",
  38935. height: math.unit(0.8, "inches")
  38936. },
  38937. {
  38938. name: "Normal",
  38939. height: math.unit(6, "feet")
  38940. },
  38941. {
  38942. name: "Macro",
  38943. height: math.unit(50, "feet"),
  38944. default: true
  38945. },
  38946. {
  38947. name: "Macro+",
  38948. height: math.unit(250, "feet")
  38949. },
  38950. {
  38951. name: "Megamacro",
  38952. height: math.unit(1500, "feet")
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(7 + 5/12, "feet"),
  38961. name: "Front",
  38962. image: {
  38963. source: "./media/characters/zane/front.svg",
  38964. extra: 1260/1203,
  38965. bottom: 94/1354
  38966. }
  38967. },
  38968. back: {
  38969. height: math.unit(5.05, "feet"),
  38970. name: "Back",
  38971. image: {
  38972. source: "./media/characters/zane/back.svg",
  38973. extra: 893/829,
  38974. bottom: 30/923
  38975. }
  38976. },
  38977. werewolf: {
  38978. height: math.unit(11, "feet"),
  38979. name: "Werewolf",
  38980. image: {
  38981. source: "./media/characters/zane/werewolf.svg",
  38982. extra: 1383/1323,
  38983. bottom: 89/1472
  38984. }
  38985. },
  38986. foot: {
  38987. height: math.unit(1.46, "feet"),
  38988. name: "Foot",
  38989. image: {
  38990. source: "./media/characters/zane/foot.svg"
  38991. }
  38992. },
  38993. footFront: {
  38994. height: math.unit(0.784, "feet"),
  38995. name: "Foot (Front)",
  38996. image: {
  38997. source: "./media/characters/zane/foot-front.svg"
  38998. }
  38999. },
  39000. dick: {
  39001. height: math.unit(1.95, "feet"),
  39002. name: "Dick",
  39003. image: {
  39004. source: "./media/characters/zane/dick.svg"
  39005. }
  39006. },
  39007. dickWerewolf: {
  39008. height: math.unit(3.77, "feet"),
  39009. name: "Dick (Werewolf)",
  39010. image: {
  39011. source: "./media/characters/zane/dick.svg"
  39012. }
  39013. },
  39014. },
  39015. [
  39016. {
  39017. name: "Normal",
  39018. height: math.unit(7 + 5/12, "feet"),
  39019. default: true
  39020. },
  39021. ]
  39022. ))
  39023. characterMakers.push(() => makeCharacter(
  39024. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39025. {
  39026. front: {
  39027. height: math.unit(6 + 2/12, "feet"),
  39028. weight: math.unit(284, "lb"),
  39029. name: "Front",
  39030. image: {
  39031. source: "./media/characters/benni-desparque/front.svg",
  39032. extra: 1353/1126,
  39033. bottom: 69/1422
  39034. }
  39035. },
  39036. },
  39037. [
  39038. {
  39039. name: "Civilian",
  39040. height: math.unit(6 + 2/12, "feet")
  39041. },
  39042. {
  39043. name: "Normal",
  39044. height: math.unit(98, "feet"),
  39045. default: true
  39046. },
  39047. {
  39048. name: "Kaiju Fighter",
  39049. height: math.unit(268, "feet")
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39055. {
  39056. front: {
  39057. height: math.unit(5, "feet"),
  39058. weight: math.unit(105, "lb"),
  39059. name: "Front",
  39060. image: {
  39061. source: "./media/characters/maxine/front.svg",
  39062. extra: 1386/1250,
  39063. bottom: 71/1457
  39064. }
  39065. },
  39066. },
  39067. [
  39068. {
  39069. name: "Normal",
  39070. height: math.unit(5, "feet"),
  39071. default: true
  39072. },
  39073. ]
  39074. ))
  39075. characterMakers.push(() => makeCharacter(
  39076. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39077. {
  39078. front: {
  39079. height: math.unit(11 + 7/12, "feet"),
  39080. weight: math.unit(9576, "lb"),
  39081. name: "Front",
  39082. image: {
  39083. source: "./media/characters/scaly/front.svg",
  39084. extra: 888/867,
  39085. bottom: 36/924
  39086. }
  39087. },
  39088. },
  39089. [
  39090. {
  39091. name: "Normal",
  39092. height: math.unit(11 + 7/12, "feet"),
  39093. default: true
  39094. },
  39095. ]
  39096. ))
  39097. characterMakers.push(() => makeCharacter(
  39098. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39099. {
  39100. front: {
  39101. height: math.unit(9, "inches"),
  39102. name: "Front",
  39103. image: {
  39104. source: "./media/characters/saelria/front.svg",
  39105. extra: 662/621,
  39106. bottom: 12/674
  39107. }
  39108. },
  39109. },
  39110. [
  39111. {
  39112. name: "Tiny",
  39113. height: math.unit(9, "inches"),
  39114. default: true
  39115. },
  39116. ]
  39117. ))
  39118. characterMakers.push(() => makeCharacter(
  39119. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39120. {
  39121. front: {
  39122. height: math.unit(80, "meters"),
  39123. weight: math.unit(7000, "tonnes"),
  39124. name: "Front",
  39125. image: {
  39126. source: "./media/characters/tef/front.svg",
  39127. extra: 2036/1991,
  39128. bottom: 54/2090
  39129. }
  39130. },
  39131. back: {
  39132. height: math.unit(80, "meters"),
  39133. weight: math.unit(7000, "tonnes"),
  39134. name: "Back",
  39135. image: {
  39136. source: "./media/characters/tef/back.svg",
  39137. extra: 2036/1991,
  39138. bottom: 54/2090
  39139. }
  39140. },
  39141. },
  39142. [
  39143. {
  39144. name: "Macro",
  39145. height: math.unit(80, "meters"),
  39146. default: true
  39147. },
  39148. ]
  39149. ))
  39150. characterMakers.push(() => makeCharacter(
  39151. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39152. {
  39153. front: {
  39154. height: math.unit(13, "feet"),
  39155. weight: math.unit(6, "tons"),
  39156. name: "Front",
  39157. image: {
  39158. source: "./media/characters/rover/front.svg",
  39159. extra: 1233/1156,
  39160. bottom: 50/1283
  39161. }
  39162. },
  39163. back: {
  39164. height: math.unit(13, "feet"),
  39165. weight: math.unit(6, "tons"),
  39166. name: "Back",
  39167. image: {
  39168. source: "./media/characters/rover/back.svg",
  39169. extra: 1327/1258,
  39170. bottom: 39/1366
  39171. }
  39172. },
  39173. },
  39174. [
  39175. {
  39176. name: "Normal",
  39177. height: math.unit(13, "feet"),
  39178. default: true
  39179. },
  39180. {
  39181. name: "Macro",
  39182. height: math.unit(1300, "feet")
  39183. },
  39184. {
  39185. name: "Megamacro",
  39186. height: math.unit(1300, "miles")
  39187. },
  39188. {
  39189. name: "Gigamacro",
  39190. height: math.unit(1300000, "miles")
  39191. },
  39192. ]
  39193. ))
  39194. characterMakers.push(() => makeCharacter(
  39195. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39196. {
  39197. front: {
  39198. height: math.unit(6, "feet"),
  39199. weight: math.unit(150, "lb"),
  39200. name: "Front",
  39201. image: {
  39202. source: "./media/characters/ariz/front.svg",
  39203. extra: 1401/1346,
  39204. bottom: 5/1406
  39205. }
  39206. },
  39207. },
  39208. [
  39209. {
  39210. name: "Normal",
  39211. height: math.unit(10, "feet"),
  39212. default: true
  39213. },
  39214. ]
  39215. ))
  39216. characterMakers.push(() => makeCharacter(
  39217. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39218. {
  39219. front: {
  39220. height: math.unit(6, "feet"),
  39221. weight: math.unit(140, "lb"),
  39222. name: "Front",
  39223. image: {
  39224. source: "./media/characters/sigrun/front.svg",
  39225. extra: 1418/1359,
  39226. bottom: 27/1445
  39227. }
  39228. },
  39229. },
  39230. [
  39231. {
  39232. name: "Macro",
  39233. height: math.unit(35, "feet"),
  39234. default: true
  39235. },
  39236. ]
  39237. ))
  39238. characterMakers.push(() => makeCharacter(
  39239. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39240. {
  39241. front: {
  39242. height: math.unit(6, "feet"),
  39243. weight: math.unit(150, "lb"),
  39244. name: "Front",
  39245. image: {
  39246. source: "./media/characters/numin/front.svg",
  39247. extra: 1433/1388,
  39248. bottom: 12/1445
  39249. }
  39250. },
  39251. },
  39252. [
  39253. {
  39254. name: "Macro",
  39255. height: math.unit(21.5, "km"),
  39256. default: true
  39257. },
  39258. ]
  39259. ))
  39260. characterMakers.push(() => makeCharacter(
  39261. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39262. {
  39263. front: {
  39264. height: math.unit(6, "feet"),
  39265. weight: math.unit(463, "lb"),
  39266. name: "Front",
  39267. image: {
  39268. source: "./media/characters/melwa/front.svg",
  39269. extra: 1307/1248,
  39270. bottom: 93/1400
  39271. }
  39272. },
  39273. },
  39274. [
  39275. {
  39276. name: "Macro",
  39277. height: math.unit(50, "meters"),
  39278. default: true
  39279. },
  39280. ]
  39281. ))
  39282. characterMakers.push(() => makeCharacter(
  39283. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39284. {
  39285. front: {
  39286. height: math.unit(325, "feet"),
  39287. name: "Front",
  39288. image: {
  39289. source: "./media/characters/zorkaiju/front.svg",
  39290. extra: 1955/1814,
  39291. bottom: 40/1995
  39292. }
  39293. },
  39294. frontExtended: {
  39295. height: math.unit(325, "feet"),
  39296. name: "Front (Extended)",
  39297. image: {
  39298. source: "./media/characters/zorkaiju/front-extended.svg",
  39299. extra: 1955/1814,
  39300. bottom: 40/1995
  39301. }
  39302. },
  39303. side: {
  39304. height: math.unit(325, "feet"),
  39305. name: "Side",
  39306. image: {
  39307. source: "./media/characters/zorkaiju/side.svg",
  39308. extra: 1495/1396,
  39309. bottom: 17/1512
  39310. }
  39311. },
  39312. sideExtended: {
  39313. height: math.unit(325, "feet"),
  39314. name: "Side (Extended)",
  39315. image: {
  39316. source: "./media/characters/zorkaiju/side-extended.svg",
  39317. extra: 1495/1396,
  39318. bottom: 17/1512
  39319. }
  39320. },
  39321. back: {
  39322. height: math.unit(325, "feet"),
  39323. name: "Back",
  39324. image: {
  39325. source: "./media/characters/zorkaiju/back.svg",
  39326. extra: 1959/1821,
  39327. bottom: 31/1990
  39328. }
  39329. },
  39330. backExtended: {
  39331. height: math.unit(325, "feet"),
  39332. name: "Back (Extended)",
  39333. image: {
  39334. source: "./media/characters/zorkaiju/back-extended.svg",
  39335. extra: 1959/1821,
  39336. bottom: 31/1990
  39337. }
  39338. },
  39339. hand: {
  39340. height: math.unit(58.4, "feet"),
  39341. name: "Hand",
  39342. image: {
  39343. source: "./media/characters/zorkaiju/hand.svg"
  39344. }
  39345. },
  39346. handExtended: {
  39347. height: math.unit(61.4, "feet"),
  39348. name: "Hand (Extended)",
  39349. image: {
  39350. source: "./media/characters/zorkaiju/hand-extended.svg"
  39351. }
  39352. },
  39353. foot: {
  39354. height: math.unit(95, "feet"),
  39355. name: "Foot",
  39356. image: {
  39357. source: "./media/characters/zorkaiju/foot.svg"
  39358. }
  39359. },
  39360. leftArm: {
  39361. height: math.unit(59, "feet"),
  39362. name: "Left Arm",
  39363. image: {
  39364. source: "./media/characters/zorkaiju/left-arm.svg"
  39365. }
  39366. },
  39367. rightArm: {
  39368. height: math.unit(59, "feet"),
  39369. name: "Right Arm",
  39370. image: {
  39371. source: "./media/characters/zorkaiju/right-arm.svg"
  39372. }
  39373. },
  39374. tail: {
  39375. height: math.unit(104, "feet"),
  39376. name: "Tail",
  39377. image: {
  39378. source: "./media/characters/zorkaiju/tail.svg"
  39379. }
  39380. },
  39381. tailExtended: {
  39382. height: math.unit(104, "feet"),
  39383. name: "Tail (Extended)",
  39384. image: {
  39385. source: "./media/characters/zorkaiju/tail-extended.svg"
  39386. }
  39387. },
  39388. tailBottom: {
  39389. height: math.unit(104, "feet"),
  39390. name: "Tail Bottom",
  39391. image: {
  39392. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39393. }
  39394. },
  39395. crystal: {
  39396. height: math.unit(27.54, "feet"),
  39397. name: "Crystal",
  39398. image: {
  39399. source: "./media/characters/zorkaiju/crystal.svg"
  39400. }
  39401. },
  39402. },
  39403. [
  39404. {
  39405. name: "Kaiju",
  39406. height: math.unit(325, "feet"),
  39407. default: true
  39408. },
  39409. ]
  39410. ))
  39411. characterMakers.push(() => makeCharacter(
  39412. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39413. {
  39414. front: {
  39415. height: math.unit(6 + 1/12, "feet"),
  39416. weight: math.unit(115, "lb"),
  39417. name: "Front",
  39418. image: {
  39419. source: "./media/characters/bailey-belfry/front.svg",
  39420. extra: 1240/1121,
  39421. bottom: 101/1341
  39422. }
  39423. },
  39424. },
  39425. [
  39426. {
  39427. name: "Normal",
  39428. height: math.unit(6 + 1/12, "feet"),
  39429. default: true
  39430. },
  39431. ]
  39432. ))
  39433. characterMakers.push(() => makeCharacter(
  39434. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39435. {
  39436. side: {
  39437. height: math.unit(4, "meters"),
  39438. weight: math.unit(250, "kg"),
  39439. name: "Side",
  39440. image: {
  39441. source: "./media/characters/blacky/side.svg",
  39442. extra: 1027/919,
  39443. bottom: 43/1070
  39444. }
  39445. },
  39446. maw: {
  39447. height: math.unit(1, "meters"),
  39448. name: "Maw",
  39449. image: {
  39450. source: "./media/characters/blacky/maw.svg"
  39451. }
  39452. },
  39453. paw: {
  39454. height: math.unit(1, "meters"),
  39455. name: "Paw",
  39456. image: {
  39457. source: "./media/characters/blacky/paw.svg"
  39458. }
  39459. },
  39460. },
  39461. [
  39462. {
  39463. name: "Normal",
  39464. height: math.unit(4, "meters"),
  39465. default: true
  39466. },
  39467. ]
  39468. ))
  39469. characterMakers.push(() => makeCharacter(
  39470. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39471. {
  39472. front: {
  39473. height: math.unit(170, "cm"),
  39474. weight: math.unit(66, "kg"),
  39475. name: "Front",
  39476. image: {
  39477. source: "./media/characters/thux-ei/front.svg",
  39478. extra: 1109/1011,
  39479. bottom: 8/1117
  39480. }
  39481. },
  39482. },
  39483. [
  39484. {
  39485. name: "Normal",
  39486. height: math.unit(170, "cm"),
  39487. default: true
  39488. },
  39489. ]
  39490. ))
  39491. characterMakers.push(() => makeCharacter(
  39492. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39493. {
  39494. front: {
  39495. height: math.unit(5, "feet"),
  39496. weight: math.unit(120, "lb"),
  39497. name: "Front",
  39498. image: {
  39499. source: "./media/characters/roxanne-voltaire/front.svg",
  39500. extra: 1901/1779,
  39501. bottom: 53/1954
  39502. }
  39503. },
  39504. },
  39505. [
  39506. {
  39507. name: "Normal",
  39508. height: math.unit(5, "feet"),
  39509. default: true
  39510. },
  39511. {
  39512. name: "Giant",
  39513. height: math.unit(50, "feet")
  39514. },
  39515. {
  39516. name: "Titan",
  39517. height: math.unit(500, "feet")
  39518. },
  39519. {
  39520. name: "Macro",
  39521. height: math.unit(5000, "feet")
  39522. },
  39523. {
  39524. name: "Megamacro",
  39525. height: math.unit(50000, "feet")
  39526. },
  39527. {
  39528. name: "Gigamacro",
  39529. height: math.unit(500000, "feet")
  39530. },
  39531. {
  39532. name: "Teramacro",
  39533. height: math.unit(5e6, "feet")
  39534. },
  39535. ]
  39536. ))
  39537. characterMakers.push(() => makeCharacter(
  39538. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39539. {
  39540. front: {
  39541. height: math.unit(6 + 2/12, "feet"),
  39542. name: "Front",
  39543. image: {
  39544. source: "./media/characters/squeaks/front.svg",
  39545. extra: 1823/1768,
  39546. bottom: 138/1961
  39547. }
  39548. },
  39549. },
  39550. [
  39551. {
  39552. name: "Micro",
  39553. height: math.unit(0.5, "inches")
  39554. },
  39555. {
  39556. name: "Normal",
  39557. height: math.unit(6 + 2/12, "feet"),
  39558. default: true
  39559. },
  39560. {
  39561. name: "Macro",
  39562. height: math.unit(600, "feet")
  39563. },
  39564. ]
  39565. ))
  39566. characterMakers.push(() => makeCharacter(
  39567. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39568. {
  39569. front: {
  39570. height: math.unit(1.72, "meters"),
  39571. name: "Front",
  39572. image: {
  39573. source: "./media/characters/archinger/front.svg",
  39574. extra: 1861/1675,
  39575. bottom: 125/1986
  39576. }
  39577. },
  39578. back: {
  39579. height: math.unit(1.72, "meters"),
  39580. name: "Back",
  39581. image: {
  39582. source: "./media/characters/archinger/back.svg",
  39583. extra: 1844/1701,
  39584. bottom: 104/1948
  39585. }
  39586. },
  39587. cock: {
  39588. height: math.unit(0.59, "feet"),
  39589. name: "Cock",
  39590. image: {
  39591. source: "./media/characters/archinger/cock.svg"
  39592. }
  39593. },
  39594. },
  39595. [
  39596. {
  39597. name: "Normal",
  39598. height: math.unit(1.72, "meters"),
  39599. default: true
  39600. },
  39601. {
  39602. name: "Macro",
  39603. height: math.unit(84, "meters")
  39604. },
  39605. {
  39606. name: "Macro+",
  39607. height: math.unit(112, "meters")
  39608. },
  39609. {
  39610. name: "Macro++",
  39611. height: math.unit(960, "meters")
  39612. },
  39613. {
  39614. name: "Macro+++",
  39615. height: math.unit(4, "km")
  39616. },
  39617. {
  39618. name: "Macro++++",
  39619. height: math.unit(48, "km")
  39620. },
  39621. {
  39622. name: "Macro+++++",
  39623. height: math.unit(4500, "km")
  39624. },
  39625. ]
  39626. ))
  39627. characterMakers.push(() => makeCharacter(
  39628. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39629. {
  39630. front: {
  39631. height: math.unit(5 + 5/12, "feet"),
  39632. name: "Front",
  39633. image: {
  39634. source: "./media/characters/alsnapz/front.svg",
  39635. extra: 1157/1065,
  39636. bottom: 42/1199
  39637. }
  39638. },
  39639. },
  39640. [
  39641. {
  39642. name: "Normal",
  39643. height: math.unit(5 + 5/12, "feet"),
  39644. default: true
  39645. },
  39646. ]
  39647. ))
  39648. characterMakers.push(() => makeCharacter(
  39649. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39650. {
  39651. side: {
  39652. height: math.unit(3.2, "earths"),
  39653. name: "Side",
  39654. image: {
  39655. source: "./media/characters/mag/side.svg",
  39656. extra: 1331/1008,
  39657. bottom: 52/1383
  39658. }
  39659. },
  39660. wing: {
  39661. height: math.unit(1.94, "earths"),
  39662. name: "Wing",
  39663. image: {
  39664. source: "./media/characters/mag/wing.svg"
  39665. }
  39666. },
  39667. dick: {
  39668. height: math.unit(1.8, "earths"),
  39669. name: "Dick",
  39670. image: {
  39671. source: "./media/characters/mag/dick.svg"
  39672. }
  39673. },
  39674. ass: {
  39675. height: math.unit(1.33, "earths"),
  39676. name: "Ass",
  39677. image: {
  39678. source: "./media/characters/mag/ass.svg"
  39679. }
  39680. },
  39681. head: {
  39682. height: math.unit(1.1, "earths"),
  39683. name: "Head",
  39684. image: {
  39685. source: "./media/characters/mag/head.svg"
  39686. }
  39687. },
  39688. maw: {
  39689. height: math.unit(1.62, "earths"),
  39690. name: "Maw",
  39691. image: {
  39692. source: "./media/characters/mag/maw.svg"
  39693. }
  39694. },
  39695. },
  39696. [
  39697. {
  39698. name: "Small",
  39699. height: math.unit(162, "feet")
  39700. },
  39701. {
  39702. name: "Normal",
  39703. height: math.unit(3.2, "earths"),
  39704. default: true
  39705. },
  39706. ]
  39707. ))
  39708. characterMakers.push(() => makeCharacter(
  39709. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39710. {
  39711. front: {
  39712. height: math.unit(512, "feet"),
  39713. weight: math.unit(63509, "tonnes"),
  39714. name: "Front",
  39715. image: {
  39716. source: "./media/characters/vorrel-harroc/front.svg",
  39717. extra: 1075/1063,
  39718. bottom: 62/1137
  39719. }
  39720. },
  39721. },
  39722. [
  39723. {
  39724. name: "Normal",
  39725. height: math.unit(10, "feet")
  39726. },
  39727. {
  39728. name: "Macro",
  39729. height: math.unit(512, "feet"),
  39730. default: true
  39731. },
  39732. {
  39733. name: "Megamacro",
  39734. height: math.unit(256, "miles")
  39735. },
  39736. {
  39737. name: "Gigamacro",
  39738. height: math.unit(4096, "miles")
  39739. },
  39740. ]
  39741. ))
  39742. characterMakers.push(() => makeCharacter(
  39743. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39744. {
  39745. side: {
  39746. height: math.unit(50, "feet"),
  39747. name: "Side",
  39748. image: {
  39749. source: "./media/characters/froimar/side.svg",
  39750. extra: 855/638,
  39751. bottom: 99/954
  39752. }
  39753. },
  39754. },
  39755. [
  39756. {
  39757. name: "Macro",
  39758. height: math.unit(50, "feet"),
  39759. default: true
  39760. },
  39761. ]
  39762. ))
  39763. characterMakers.push(() => makeCharacter(
  39764. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39765. {
  39766. front: {
  39767. height: math.unit(210, "miles"),
  39768. name: "Front",
  39769. image: {
  39770. source: "./media/characters/timothy/front.svg",
  39771. extra: 1007/943,
  39772. bottom: 62/1069
  39773. }
  39774. },
  39775. frontSkirt: {
  39776. height: math.unit(210, "miles"),
  39777. name: "Front (Skirt)",
  39778. image: {
  39779. source: "./media/characters/timothy/front-skirt.svg",
  39780. extra: 1007/943,
  39781. bottom: 62/1069
  39782. }
  39783. },
  39784. frontCoat: {
  39785. height: math.unit(210, "miles"),
  39786. name: "Front (Coat)",
  39787. image: {
  39788. source: "./media/characters/timothy/front-coat.svg",
  39789. extra: 1007/943,
  39790. bottom: 62/1069
  39791. }
  39792. },
  39793. },
  39794. [
  39795. {
  39796. name: "Macro",
  39797. height: math.unit(210, "miles"),
  39798. default: true
  39799. },
  39800. {
  39801. name: "Megamacro",
  39802. height: math.unit(210000, "miles")
  39803. },
  39804. ]
  39805. ))
  39806. characterMakers.push(() => makeCharacter(
  39807. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39808. {
  39809. front: {
  39810. height: math.unit(188, "feet"),
  39811. name: "Front",
  39812. image: {
  39813. source: "./media/characters/pyotr/front.svg",
  39814. extra: 1912/1826,
  39815. bottom: 18/1930
  39816. }
  39817. },
  39818. },
  39819. [
  39820. {
  39821. name: "Macro",
  39822. height: math.unit(188, "feet"),
  39823. default: true
  39824. },
  39825. {
  39826. name: "Megamacro",
  39827. height: math.unit(8, "miles")
  39828. },
  39829. ]
  39830. ))
  39831. characterMakers.push(() => makeCharacter(
  39832. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39833. {
  39834. side: {
  39835. height: math.unit(10, "feet"),
  39836. weight: math.unit(4500, "lb"),
  39837. name: "Side",
  39838. image: {
  39839. source: "./media/characters/ackart/side.svg",
  39840. extra: 1776/1668,
  39841. bottom: 116/1892
  39842. }
  39843. },
  39844. },
  39845. [
  39846. {
  39847. name: "Normal",
  39848. height: math.unit(10, "feet"),
  39849. default: true
  39850. },
  39851. ]
  39852. ))
  39853. characterMakers.push(() => makeCharacter(
  39854. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39855. {
  39856. side: {
  39857. height: math.unit(21, "feet"),
  39858. name: "Side",
  39859. image: {
  39860. source: "./media/characters/nolow/side.svg",
  39861. extra: 1484/1434,
  39862. bottom: 85/1569
  39863. }
  39864. },
  39865. sideErect: {
  39866. height: math.unit(21, "feet"),
  39867. name: "Side-erect",
  39868. image: {
  39869. source: "./media/characters/nolow/side-erect.svg",
  39870. extra: 1484/1434,
  39871. bottom: 85/1569
  39872. }
  39873. },
  39874. },
  39875. [
  39876. {
  39877. name: "Regular",
  39878. height: math.unit(12, "feet")
  39879. },
  39880. {
  39881. name: "Big Chee",
  39882. height: math.unit(21, "feet"),
  39883. default: true
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39889. {
  39890. front: {
  39891. height: math.unit(7, "feet"),
  39892. weight: math.unit(250, "lb"),
  39893. name: "Front",
  39894. image: {
  39895. source: "./media/characters/nines/front.svg",
  39896. extra: 1741/1607,
  39897. bottom: 41/1782
  39898. }
  39899. },
  39900. side: {
  39901. height: math.unit(7, "feet"),
  39902. weight: math.unit(250, "lb"),
  39903. name: "Side",
  39904. image: {
  39905. source: "./media/characters/nines/side.svg",
  39906. extra: 1854/1735,
  39907. bottom: 93/1947
  39908. }
  39909. },
  39910. back: {
  39911. height: math.unit(7, "feet"),
  39912. weight: math.unit(250, "lb"),
  39913. name: "Back",
  39914. image: {
  39915. source: "./media/characters/nines/back.svg",
  39916. extra: 1748/1615,
  39917. bottom: 20/1768
  39918. }
  39919. },
  39920. },
  39921. [
  39922. {
  39923. name: "Megamacro",
  39924. height: math.unit(99, "km"),
  39925. default: true
  39926. },
  39927. ]
  39928. ))
  39929. characterMakers.push(() => makeCharacter(
  39930. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  39931. {
  39932. front: {
  39933. height: math.unit(5 + 10/12, "feet"),
  39934. weight: math.unit(210, "lb"),
  39935. name: "Front",
  39936. image: {
  39937. source: "./media/characters/zenith/front.svg",
  39938. extra: 1531/1452,
  39939. bottom: 198/1729
  39940. }
  39941. },
  39942. back: {
  39943. height: math.unit(5 + 10/12, "feet"),
  39944. weight: math.unit(210, "lb"),
  39945. name: "Back",
  39946. image: {
  39947. source: "./media/characters/zenith/back.svg",
  39948. extra: 1571/1487,
  39949. bottom: 75/1646
  39950. }
  39951. },
  39952. },
  39953. [
  39954. {
  39955. name: "Normal",
  39956. height: math.unit(5 + 10/12, "feet"),
  39957. default: true
  39958. }
  39959. ]
  39960. ))
  39961. characterMakers.push(() => makeCharacter(
  39962. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  39963. {
  39964. front: {
  39965. height: math.unit(4, "feet"),
  39966. weight: math.unit(60, "lb"),
  39967. name: "Front",
  39968. image: {
  39969. source: "./media/characters/jasper/front.svg",
  39970. extra: 1450/1379,
  39971. bottom: 19/1469
  39972. }
  39973. },
  39974. },
  39975. [
  39976. {
  39977. name: "Normal",
  39978. height: math.unit(4, "feet"),
  39979. default: true
  39980. },
  39981. ]
  39982. ))
  39983. characterMakers.push(() => makeCharacter(
  39984. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  39985. {
  39986. front: {
  39987. height: math.unit(6 + 5/12, "feet"),
  39988. weight: math.unit(290, "lb"),
  39989. name: "Front",
  39990. image: {
  39991. source: "./media/characters/tiberius-thyben/front.svg",
  39992. extra: 757/739,
  39993. bottom: 39/796
  39994. }
  39995. },
  39996. },
  39997. [
  39998. {
  39999. name: "Micro",
  40000. height: math.unit(1.5, "inches")
  40001. },
  40002. {
  40003. name: "Normal",
  40004. height: math.unit(6 + 5/12, "feet"),
  40005. default: true
  40006. },
  40007. {
  40008. name: "Macro",
  40009. height: math.unit(300, "feet")
  40010. },
  40011. ]
  40012. ))
  40013. characterMakers.push(() => makeCharacter(
  40014. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40015. {
  40016. front: {
  40017. height: math.unit(5 + 6/12, "feet"),
  40018. weight: math.unit(60, "kg"),
  40019. name: "Front",
  40020. image: {
  40021. source: "./media/characters/sabre/front.svg",
  40022. extra: 738/671,
  40023. bottom: 27/765
  40024. }
  40025. },
  40026. },
  40027. [
  40028. {
  40029. name: "Teeny",
  40030. height: math.unit(2, "inches")
  40031. },
  40032. {
  40033. name: "Smol",
  40034. height: math.unit(8, "inches")
  40035. },
  40036. {
  40037. name: "Normal",
  40038. height: math.unit(5 + 6/12, "feet"),
  40039. default: true
  40040. },
  40041. {
  40042. name: "Mini-Macro",
  40043. height: math.unit(15, "feet")
  40044. },
  40045. {
  40046. name: "Macro",
  40047. height: math.unit(50, "feet")
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40053. {
  40054. front: {
  40055. height: math.unit(6 + 4/12, "feet"),
  40056. weight: math.unit(170, "lb"),
  40057. name: "Front",
  40058. image: {
  40059. source: "./media/characters/charlie/front.svg",
  40060. extra: 1348/1228,
  40061. bottom: 15/1363
  40062. }
  40063. },
  40064. },
  40065. [
  40066. {
  40067. name: "Macro",
  40068. height: math.unit(1700, "meters"),
  40069. default: true
  40070. },
  40071. {
  40072. name: "MegaMacro",
  40073. height: math.unit(20400, "meters")
  40074. },
  40075. ]
  40076. ))
  40077. characterMakers.push(() => makeCharacter(
  40078. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40079. {
  40080. front: {
  40081. height: math.unit(6 + 3/12, "feet"),
  40082. weight: math.unit(185, "lb"),
  40083. name: "Front",
  40084. image: {
  40085. source: "./media/characters/susan-grant/front.svg",
  40086. extra: 1351/1327,
  40087. bottom: 26/1377
  40088. }
  40089. },
  40090. },
  40091. [
  40092. {
  40093. name: "Normal",
  40094. height: math.unit(6 + 3/12, "feet"),
  40095. default: true
  40096. },
  40097. {
  40098. name: "Macro",
  40099. height: math.unit(225, "feet")
  40100. },
  40101. {
  40102. name: "Macro+",
  40103. height: math.unit(900, "feet")
  40104. },
  40105. {
  40106. name: "MegaMacro",
  40107. height: math.unit(14400, "feet")
  40108. },
  40109. ]
  40110. ))
  40111. characterMakers.push(() => makeCharacter(
  40112. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40113. {
  40114. front: {
  40115. height: math.unit(5 + 4/12, "feet"),
  40116. weight: math.unit(110, "lb"),
  40117. name: "Front",
  40118. image: {
  40119. source: "./media/characters/axel-isanov/front.svg",
  40120. extra: 1096/1065,
  40121. bottom: 13/1109
  40122. }
  40123. },
  40124. },
  40125. [
  40126. {
  40127. name: "Normal",
  40128. height: math.unit(5 + 4/12, "feet"),
  40129. default: true
  40130. },
  40131. ]
  40132. ))
  40133. characterMakers.push(() => makeCharacter(
  40134. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40135. {
  40136. front: {
  40137. height: math.unit(9, "feet"),
  40138. weight: math.unit(467, "lb"),
  40139. name: "Front",
  40140. image: {
  40141. source: "./media/characters/necahual/front.svg",
  40142. extra: 920/873,
  40143. bottom: 26/946
  40144. }
  40145. },
  40146. back: {
  40147. height: math.unit(9, "feet"),
  40148. weight: math.unit(467, "lb"),
  40149. name: "Back",
  40150. image: {
  40151. source: "./media/characters/necahual/back.svg",
  40152. extra: 930/884,
  40153. bottom: 16/946
  40154. }
  40155. },
  40156. frontUnderwear: {
  40157. height: math.unit(9, "feet"),
  40158. weight: math.unit(467, "lb"),
  40159. name: "Front (Underwear)",
  40160. image: {
  40161. source: "./media/characters/necahual/front-underwear.svg",
  40162. extra: 920/873,
  40163. bottom: 26/946
  40164. }
  40165. },
  40166. frontDressed: {
  40167. height: math.unit(9, "feet"),
  40168. weight: math.unit(467, "lb"),
  40169. name: "Front (Dressed)",
  40170. image: {
  40171. source: "./media/characters/necahual/front-dressed.svg",
  40172. extra: 920/873,
  40173. bottom: 26/946
  40174. }
  40175. },
  40176. },
  40177. [
  40178. {
  40179. name: "Comprsesed",
  40180. height: math.unit(9, "feet")
  40181. },
  40182. {
  40183. name: "Natural",
  40184. height: math.unit(15, "feet"),
  40185. default: true
  40186. },
  40187. {
  40188. name: "Boosted",
  40189. height: math.unit(50, "feet")
  40190. },
  40191. {
  40192. name: "Boosted+",
  40193. height: math.unit(150, "feet")
  40194. },
  40195. {
  40196. name: "Max",
  40197. height: math.unit(500, "feet")
  40198. },
  40199. ]
  40200. ))
  40201. characterMakers.push(() => makeCharacter(
  40202. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40203. {
  40204. front: {
  40205. height: math.unit(22 + 1/12, "feet"),
  40206. weight: math.unit(3200, "lb"),
  40207. name: "Front",
  40208. image: {
  40209. source: "./media/characters/theo-acacia/front.svg",
  40210. extra: 1796/1741,
  40211. bottom: 83/1879
  40212. }
  40213. },
  40214. frontUnderwear: {
  40215. height: math.unit(22 + 1/12, "feet"),
  40216. weight: math.unit(3200, "lb"),
  40217. name: "Front (Underwear)",
  40218. image: {
  40219. source: "./media/characters/theo-acacia/front-underwear.svg",
  40220. extra: 1796/1741,
  40221. bottom: 83/1879
  40222. }
  40223. },
  40224. frontNude: {
  40225. height: math.unit(22 + 1/12, "feet"),
  40226. weight: math.unit(3200, "lb"),
  40227. name: "Front (Nude)",
  40228. image: {
  40229. source: "./media/characters/theo-acacia/front-nude.svg",
  40230. extra: 1796/1741,
  40231. bottom: 83/1879
  40232. }
  40233. },
  40234. },
  40235. [
  40236. {
  40237. name: "Normal",
  40238. height: math.unit(22 + 1/12, "feet"),
  40239. default: true
  40240. },
  40241. ]
  40242. ))
  40243. characterMakers.push(() => makeCharacter(
  40244. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40245. {
  40246. front: {
  40247. height: math.unit(20, "feet"),
  40248. name: "Front",
  40249. image: {
  40250. source: "./media/characters/astra/front.svg",
  40251. extra: 1850/1714,
  40252. bottom: 106/1956
  40253. }
  40254. },
  40255. frontUndressed: {
  40256. height: math.unit(20, "feet"),
  40257. name: "Front (Undressed)",
  40258. image: {
  40259. source: "./media/characters/astra/front-undressed.svg",
  40260. extra: 1926/1749,
  40261. bottom: 0/1926
  40262. }
  40263. },
  40264. hand: {
  40265. height: math.unit(1.53, "feet"),
  40266. name: "Hand",
  40267. image: {
  40268. source: "./media/characters/astra/hand.svg"
  40269. }
  40270. },
  40271. paw: {
  40272. height: math.unit(1.53, "feet"),
  40273. name: "Paw",
  40274. image: {
  40275. source: "./media/characters/astra/paw.svg"
  40276. }
  40277. },
  40278. },
  40279. [
  40280. {
  40281. name: "Smallest",
  40282. height: math.unit(20, "feet")
  40283. },
  40284. {
  40285. name: "Normal",
  40286. height: math.unit(1e9, "miles"),
  40287. default: true
  40288. },
  40289. {
  40290. name: "Larger",
  40291. height: math.unit(5, "multiverses")
  40292. },
  40293. {
  40294. name: "Largest",
  40295. height: math.unit(1e9, "multiverses")
  40296. },
  40297. ]
  40298. ))
  40299. characterMakers.push(() => makeCharacter(
  40300. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40301. {
  40302. front: {
  40303. height: math.unit(8, "feet"),
  40304. name: "Front",
  40305. image: {
  40306. source: "./media/characters/breanna/front.svg",
  40307. extra: 1912/1632,
  40308. bottom: 33/1945
  40309. }
  40310. },
  40311. },
  40312. [
  40313. {
  40314. name: "Smallest",
  40315. height: math.unit(8, "feet")
  40316. },
  40317. {
  40318. name: "Normal",
  40319. height: math.unit(1, "mile"),
  40320. default: true
  40321. },
  40322. {
  40323. name: "Maximum",
  40324. height: math.unit(1500000000000, "lightyears")
  40325. },
  40326. ]
  40327. ))
  40328. characterMakers.push(() => makeCharacter(
  40329. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40330. {
  40331. front: {
  40332. height: math.unit(5 + 11/12, "feet"),
  40333. weight: math.unit(155, "lb"),
  40334. name: "Front",
  40335. image: {
  40336. source: "./media/characters/cai/front.svg",
  40337. extra: 1823/1702,
  40338. bottom: 32/1855
  40339. }
  40340. },
  40341. back: {
  40342. height: math.unit(5 + 11/12, "feet"),
  40343. weight: math.unit(155, "lb"),
  40344. name: "Back",
  40345. image: {
  40346. source: "./media/characters/cai/back.svg",
  40347. extra: 1809/1708,
  40348. bottom: 31/1840
  40349. }
  40350. },
  40351. },
  40352. [
  40353. {
  40354. name: "Normal",
  40355. height: math.unit(5 + 11/12, "feet"),
  40356. default: true
  40357. },
  40358. {
  40359. name: "Big",
  40360. height: math.unit(15, "feet")
  40361. },
  40362. {
  40363. name: "Macro",
  40364. height: math.unit(200, "feet")
  40365. },
  40366. ]
  40367. ))
  40368. characterMakers.push(() => makeCharacter(
  40369. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40370. {
  40371. front: {
  40372. height: math.unit(5 + 6/12, "feet"),
  40373. weight: math.unit(160, "lb"),
  40374. name: "Front",
  40375. image: {
  40376. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40377. extra: 1227/1174,
  40378. bottom: 37/1264
  40379. }
  40380. },
  40381. },
  40382. [
  40383. {
  40384. name: "Macro",
  40385. height: math.unit(444, "meters"),
  40386. default: true
  40387. },
  40388. ]
  40389. ))
  40390. characterMakers.push(() => makeCharacter(
  40391. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40392. {
  40393. front: {
  40394. height: math.unit(18 + 7/12, "feet"),
  40395. name: "Front",
  40396. image: {
  40397. source: "./media/characters/rex/front.svg",
  40398. extra: 1941/1807,
  40399. bottom: 66/2007
  40400. }
  40401. },
  40402. back: {
  40403. height: math.unit(18 + 7/12, "feet"),
  40404. name: "Back",
  40405. image: {
  40406. source: "./media/characters/rex/back.svg",
  40407. extra: 1937/1822,
  40408. bottom: 42/1979
  40409. }
  40410. },
  40411. boot: {
  40412. height: math.unit(3.45, "feet"),
  40413. name: "Boot",
  40414. image: {
  40415. source: "./media/characters/rex/boot.svg"
  40416. }
  40417. },
  40418. paw: {
  40419. height: math.unit(4.17, "feet"),
  40420. name: "Paw",
  40421. image: {
  40422. source: "./media/characters/rex/paw.svg"
  40423. }
  40424. },
  40425. head: {
  40426. height: math.unit(6.728, "feet"),
  40427. name: "Head",
  40428. image: {
  40429. source: "./media/characters/rex/head.svg"
  40430. }
  40431. },
  40432. },
  40433. [
  40434. {
  40435. name: "Nano",
  40436. height: math.unit(18 + 7/12, "feet")
  40437. },
  40438. {
  40439. name: "Micro",
  40440. height: math.unit(1.5, "megameters")
  40441. },
  40442. {
  40443. name: "Normal",
  40444. height: math.unit(440, "megameters"),
  40445. default: true
  40446. },
  40447. {
  40448. name: "Macro",
  40449. height: math.unit(2.5, "gigameters")
  40450. },
  40451. {
  40452. name: "Gigamacro",
  40453. height: math.unit(2, "galaxies")
  40454. },
  40455. ]
  40456. ))
  40457. characterMakers.push(() => makeCharacter(
  40458. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40459. {
  40460. side: {
  40461. height: math.unit(32, "feet"),
  40462. weight: math.unit(250000, "lb"),
  40463. name: "Side",
  40464. image: {
  40465. source: "./media/characters/silverwing/side.svg",
  40466. extra: 1100/1019,
  40467. bottom: 204/1304
  40468. }
  40469. },
  40470. },
  40471. [
  40472. {
  40473. name: "Normal",
  40474. height: math.unit(32, "feet"),
  40475. default: true
  40476. },
  40477. ]
  40478. ))
  40479. characterMakers.push(() => makeCharacter(
  40480. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40481. {
  40482. front: {
  40483. height: math.unit(6 + 6/12, "feet"),
  40484. weight: math.unit(350, "lb"),
  40485. name: "Front",
  40486. image: {
  40487. source: "./media/characters/tristan-hawthorne/front.svg",
  40488. extra: 1159/1124,
  40489. bottom: 37/1196
  40490. }
  40491. },
  40492. },
  40493. [
  40494. {
  40495. name: "Normal",
  40496. height: math.unit(6 + 6/12, "feet"),
  40497. default: true
  40498. },
  40499. ]
  40500. ))
  40501. characterMakers.push(() => makeCharacter(
  40502. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40503. {
  40504. front: {
  40505. height: math.unit(5 + 11/12, "feet"),
  40506. weight: math.unit(190, "lb"),
  40507. name: "Front",
  40508. image: {
  40509. source: "./media/characters/mizu/front.svg",
  40510. extra: 1988/1788,
  40511. bottom: 14/2002
  40512. }
  40513. },
  40514. },
  40515. [
  40516. {
  40517. name: "Normal",
  40518. height: math.unit(5 + 11/12, "feet"),
  40519. default: true
  40520. },
  40521. ]
  40522. ))
  40523. characterMakers.push(() => makeCharacter(
  40524. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40525. {
  40526. front: {
  40527. height: math.unit(6, "feet"),
  40528. name: "Front",
  40529. image: {
  40530. source: "./media/characters/moonlight-rose-terra/front.svg",
  40531. extra: 1434/1252,
  40532. bottom: 48/1482
  40533. }
  40534. },
  40535. },
  40536. [
  40537. {
  40538. name: "TRAPPIST-1D",
  40539. height: math.unit(4992*2, "km")
  40540. },
  40541. {
  40542. name: "Earth",
  40543. height: math.unit(6367*2, "km"),
  40544. default: true
  40545. },
  40546. {
  40547. name: "Kepler-22b",
  40548. height: math.unit(15282*2, "km")
  40549. },
  40550. ]
  40551. ))
  40552. characterMakers.push(() => makeCharacter(
  40553. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40554. {
  40555. front: {
  40556. height: math.unit(6, "feet"),
  40557. name: "Front",
  40558. image: {
  40559. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40560. extra: 1851/1712,
  40561. bottom: 0/1851
  40562. }
  40563. },
  40564. },
  40565. [
  40566. {
  40567. name: "Enceladus",
  40568. height: math.unit(513*2, "km")
  40569. },
  40570. {
  40571. name: "Europe",
  40572. height: math.unit(1560*2, "km")
  40573. },
  40574. {
  40575. name: "Neptune",
  40576. height: math.unit(24622*2, "km"),
  40577. default: true
  40578. },
  40579. {
  40580. name: "CoRoT-9b",
  40581. height: math.unit(75067*2, "km")
  40582. },
  40583. ]
  40584. ))
  40585. characterMakers.push(() => makeCharacter(
  40586. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40587. {
  40588. front: {
  40589. height: math.unit(6, "feet"),
  40590. name: "Front",
  40591. image: {
  40592. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40593. extra: 1367/1286,
  40594. bottom: 55/1422
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Saturn",
  40601. height: math.unit(58232*2, "km")
  40602. },
  40603. {
  40604. name: "Jupiter",
  40605. height: math.unit(69911*2, "km"),
  40606. default: true
  40607. },
  40608. {
  40609. name: "HD 100546 b",
  40610. height: math.unit(482938, "km")
  40611. },
  40612. ]
  40613. ))
  40614. characterMakers.push(() => makeCharacter(
  40615. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40616. {
  40617. front: {
  40618. height: math.unit(1.7, "feet"),
  40619. weight: math.unit(50, "lb"),
  40620. name: "Front",
  40621. image: {
  40622. source: "./media/characters/dechroma/front.svg",
  40623. extra: 1095/859,
  40624. bottom: 64/1159
  40625. }
  40626. },
  40627. },
  40628. [
  40629. {
  40630. name: "Normal",
  40631. height: math.unit(1.7, "feet"),
  40632. default: true
  40633. },
  40634. ]
  40635. ))
  40636. //characters
  40637. function makeCharacters() {
  40638. const results = [];
  40639. characterMakers.forEach(character => {
  40640. results.push(character());
  40641. });
  40642. return results;
  40643. }