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.
 
 
 

47789 linhas
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  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. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. }
  1868. //species
  1869. function getSpeciesInfo(speciesList) {
  1870. let result = new Set();
  1871. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1872. result.add(entry)
  1873. });
  1874. return Array.from(result);
  1875. };
  1876. function getSpeciesInfoHelper(species) {
  1877. if (!speciesData[species]) {
  1878. console.warn(species + " doesn't exist");
  1879. return [];
  1880. }
  1881. if (speciesData[species].parents) {
  1882. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1883. } else {
  1884. return [species];
  1885. }
  1886. }
  1887. characterMakers.push(() => makeCharacter(
  1888. {
  1889. name: "Fen",
  1890. species: ["crux"],
  1891. description: {
  1892. title: "Bio",
  1893. text: "Very furry. Sheds on everything."
  1894. },
  1895. tags: [
  1896. "anthro",
  1897. "goo"
  1898. ]
  1899. },
  1900. {
  1901. front: {
  1902. height: math.unit(12, "feet"),
  1903. weight: math.unit(2400, "lb"),
  1904. name: "Front",
  1905. image: {
  1906. source: "./media/characters/fen/front.svg",
  1907. extra: 1804/1562,
  1908. bottom: 205/2009
  1909. }
  1910. },
  1911. diving: {
  1912. height: math.unit(4.9, "meters"),
  1913. weight: math.unit(2400, "lb"),
  1914. name: "Diving",
  1915. image: {
  1916. source: "./media/characters/fen/diving.svg"
  1917. }
  1918. },
  1919. goo: {
  1920. height: math.unit(12, "feet"),
  1921. weight: math.unit(3000, "lb"),
  1922. capacity: math.unit(6, "people"),
  1923. name: "Goo",
  1924. image: {
  1925. source: "./media/characters/fen/goo.svg",
  1926. extra: 1307/1071,
  1927. bottom: 134/1441
  1928. }
  1929. },
  1930. maw: {
  1931. height: math.unit(5.03, "feet"),
  1932. name: "Maw",
  1933. image: {
  1934. source: "./media/characters/fen/maw.svg"
  1935. }
  1936. },
  1937. gooCeiling: {
  1938. height: math.unit(6.6, "feet"),
  1939. weight: math.unit(3000, "lb"),
  1940. capacity: math.unit(6, "people"),
  1941. name: "Goo (Ceiling)",
  1942. image: {
  1943. source: "./media/characters/fen/goo-ceiling.svg"
  1944. }
  1945. },
  1946. back: {
  1947. height: math.unit(12, "feet"),
  1948. weight: math.unit(2400, "lb"),
  1949. name: "Back",
  1950. image: {
  1951. source: "./media/characters/fen/back.svg",
  1952. },
  1953. info: {
  1954. description: {
  1955. mode: "append",
  1956. text: "\n\nHe is not currently looking at you."
  1957. }
  1958. }
  1959. },
  1960. full: {
  1961. height: math.unit(1.6, "meter"),
  1962. weight: math.unit(3200, "lb"),
  1963. name: "Full",
  1964. image: {
  1965. source: "./media/characters/fen/full.svg",
  1966. extra: 1133/859,
  1967. bottom: 145/1278
  1968. },
  1969. info: {
  1970. description: {
  1971. mode: "append",
  1972. text: "\n\nMunch."
  1973. }
  1974. }
  1975. },
  1976. gooLounging: {
  1977. height: math.unit(4.53, "feet"),
  1978. weight: math.unit(3000, "lb"),
  1979. capacity: math.unit(6, "people"),
  1980. name: "Goo (Lounging)",
  1981. image: {
  1982. source: "./media/characters/fen/goo.svg",
  1983. bottom: 116 / 613
  1984. }
  1985. },
  1986. lounging: {
  1987. height: math.unit(10.52, "feet"),
  1988. weight: math.unit(2400, "lb"),
  1989. name: "Lounging",
  1990. image: {
  1991. source: "./media/characters/fen/lounging.svg"
  1992. }
  1993. },
  1994. },
  1995. [
  1996. {
  1997. name: "Small",
  1998. height: math.unit(2.2428, "meter")
  1999. },
  2000. {
  2001. name: "Normal",
  2002. height: math.unit(12, "feet"),
  2003. default: true,
  2004. },
  2005. {
  2006. name: "Big",
  2007. height: math.unit(20, "feet")
  2008. },
  2009. {
  2010. name: "Minimacro",
  2011. height: math.unit(40, "feet"),
  2012. info: {
  2013. description: {
  2014. mode: "append",
  2015. text: "\n\nTOO DAMN BIG"
  2016. }
  2017. }
  2018. },
  2019. {
  2020. name: "Macro",
  2021. height: math.unit(100, "feet"),
  2022. info: {
  2023. description: {
  2024. mode: "append",
  2025. text: "\n\nTOO DAMN BIG"
  2026. }
  2027. }
  2028. },
  2029. {
  2030. name: "Megamacro",
  2031. height: math.unit(2, "miles")
  2032. },
  2033. {
  2034. name: "Gigamacro",
  2035. height: math.unit(10, "earths")
  2036. },
  2037. ]
  2038. ))
  2039. characterMakers.push(() => makeCharacter(
  2040. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2041. {
  2042. front: {
  2043. height: math.unit(183, "cm"),
  2044. weight: math.unit(80, "kg"),
  2045. name: "Front",
  2046. image: {
  2047. source: "./media/characters/sofia-fluttertail/front.svg",
  2048. bottom: 0.01,
  2049. extra: 2154 / 2081
  2050. }
  2051. },
  2052. frontAlt: {
  2053. height: math.unit(183, "cm"),
  2054. weight: math.unit(80, "kg"),
  2055. name: "Front (alt)",
  2056. image: {
  2057. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2058. }
  2059. },
  2060. back: {
  2061. height: math.unit(183, "cm"),
  2062. weight: math.unit(80, "kg"),
  2063. name: "Back",
  2064. image: {
  2065. source: "./media/characters/sofia-fluttertail/back.svg"
  2066. }
  2067. },
  2068. kneeling: {
  2069. height: math.unit(125, "cm"),
  2070. weight: math.unit(80, "kg"),
  2071. name: "Kneeling",
  2072. image: {
  2073. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2074. extra: 1033 / 977,
  2075. bottom: 23.7 / 1057
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(183 / 5, "cm"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/sofia-fluttertail/maw.svg"
  2083. }
  2084. },
  2085. mawcloseup: {
  2086. height: math.unit(183 / 5 * 0.41, "cm"),
  2087. name: "Maw (Closeup)",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2090. }
  2091. },
  2092. paws: {
  2093. height: math.unit(1.17, "feet"),
  2094. name: "Paws",
  2095. image: {
  2096. source: "./media/characters/sofia-fluttertail/paws.svg",
  2097. extra: 851 / 851,
  2098. bottom: 17 / 868
  2099. }
  2100. },
  2101. },
  2102. [
  2103. {
  2104. name: "Normal",
  2105. height: math.unit(1.83, "meter")
  2106. },
  2107. {
  2108. name: "Size Thief",
  2109. height: math.unit(18, "feet")
  2110. },
  2111. {
  2112. name: "50 Foot Collie",
  2113. height: math.unit(50, "feet")
  2114. },
  2115. {
  2116. name: "Macro",
  2117. height: math.unit(96, "feet"),
  2118. default: true
  2119. },
  2120. {
  2121. name: "Megamerger",
  2122. height: math.unit(650, "feet")
  2123. },
  2124. ]
  2125. ))
  2126. characterMakers.push(() => makeCharacter(
  2127. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2128. {
  2129. front: {
  2130. height: math.unit(7, "feet"),
  2131. weight: math.unit(100, "kg"),
  2132. name: "Front",
  2133. image: {
  2134. source: "./media/characters/march/front.svg",
  2135. extra: 1992/1851,
  2136. bottom: 39/2031
  2137. }
  2138. },
  2139. foot: {
  2140. height: math.unit(0.9, "feet"),
  2141. name: "Foot",
  2142. image: {
  2143. source: "./media/characters/march/foot.svg"
  2144. }
  2145. },
  2146. },
  2147. [
  2148. {
  2149. name: "Normal",
  2150. height: math.unit(7.9, "feet")
  2151. },
  2152. {
  2153. name: "Macro",
  2154. height: math.unit(220, "meters")
  2155. },
  2156. {
  2157. name: "Megamacro",
  2158. height: math.unit(2.98, "km"),
  2159. default: true
  2160. },
  2161. {
  2162. name: "Gigamacro",
  2163. height: math.unit(15963, "km")
  2164. },
  2165. {
  2166. name: "Teramacro",
  2167. height: math.unit(2980000000, "km")
  2168. },
  2169. {
  2170. name: "Examacro",
  2171. height: math.unit(250, "parsecs")
  2172. },
  2173. ]
  2174. ))
  2175. characterMakers.push(() => makeCharacter(
  2176. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2177. {
  2178. front: {
  2179. height: math.unit(6, "feet"),
  2180. weight: math.unit(60, "kg"),
  2181. name: "Front",
  2182. image: {
  2183. source: "./media/characters/noir/front.svg",
  2184. extra: 1,
  2185. bottom: 0.032
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(6.6, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(500, "feet")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.5, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(22500, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2500000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(200, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(7, "feet"),
  2222. weight: math.unit(100, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/okuri/front.svg",
  2226. extra: 1,
  2227. bottom: 0.037
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(7, "feet"),
  2232. weight: math.unit(100, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/okuri/back.svg",
  2236. extra: 1,
  2237. bottom: 0.007
  2238. }
  2239. },
  2240. },
  2241. [
  2242. {
  2243. name: "Megamacro",
  2244. height: math.unit(100, "miles"),
  2245. default: true
  2246. },
  2247. ]
  2248. ))
  2249. characterMakers.push(() => makeCharacter(
  2250. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2251. {
  2252. front: {
  2253. height: math.unit(7, "feet"),
  2254. weight: math.unit(100, "kg"),
  2255. name: "Front",
  2256. image: {
  2257. source: "./media/characters/manny/front.svg",
  2258. extra: 1,
  2259. bottom: 0.06
  2260. }
  2261. },
  2262. back: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Back",
  2266. image: {
  2267. source: "./media/characters/manny/back.svg",
  2268. extra: 1,
  2269. bottom: 0.014
  2270. }
  2271. },
  2272. },
  2273. [
  2274. {
  2275. name: "Normal",
  2276. height: math.unit(7, "feet"),
  2277. },
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(78, "feet"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Macro+",
  2285. height: math.unit(300, "meters")
  2286. },
  2287. {
  2288. name: "Macro++",
  2289. height: math.unit(2400, "meters")
  2290. },
  2291. {
  2292. name: "Megamacro",
  2293. height: math.unit(5167, "meters")
  2294. },
  2295. {
  2296. name: "Gigamacro",
  2297. height: math.unit(41769, "miles")
  2298. },
  2299. ]
  2300. ))
  2301. characterMakers.push(() => makeCharacter(
  2302. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2303. {
  2304. front: {
  2305. height: math.unit(7, "feet"),
  2306. weight: math.unit(100, "kg"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/adake/front-1.svg"
  2310. }
  2311. },
  2312. frontAlt: {
  2313. height: math.unit(7, "feet"),
  2314. weight: math.unit(100, "kg"),
  2315. name: "Front (Alt)",
  2316. image: {
  2317. source: "./media/characters/adake/front-2.svg",
  2318. extra: 1,
  2319. bottom: 0.01
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(7, "feet"),
  2324. weight: math.unit(100, "kg"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/adake/back.svg",
  2328. }
  2329. },
  2330. kneel: {
  2331. height: math.unit(5.385, "feet"),
  2332. weight: math.unit(100, "kg"),
  2333. name: "Kneeling",
  2334. image: {
  2335. source: "./media/characters/adake/kneel.svg",
  2336. bottom: 0.052
  2337. }
  2338. },
  2339. },
  2340. [
  2341. {
  2342. name: "Normal",
  2343. height: math.unit(7, "feet"),
  2344. },
  2345. {
  2346. name: "Macro",
  2347. height: math.unit(78, "feet"),
  2348. default: true
  2349. },
  2350. {
  2351. name: "Macro+",
  2352. height: math.unit(300, "meters")
  2353. },
  2354. {
  2355. name: "Macro++",
  2356. height: math.unit(2400, "meters")
  2357. },
  2358. {
  2359. name: "Megamacro",
  2360. height: math.unit(5167, "meters")
  2361. },
  2362. {
  2363. name: "Gigamacro",
  2364. height: math.unit(41769, "miles")
  2365. },
  2366. ]
  2367. ))
  2368. characterMakers.push(() => makeCharacter(
  2369. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2370. {
  2371. front: {
  2372. height: math.unit(1.65, "meters"),
  2373. weight: math.unit(50, "kg"),
  2374. name: "Front",
  2375. image: {
  2376. source: "./media/characters/elijah/front.svg",
  2377. extra: 858 / 830,
  2378. bottom: 95.5 / 953.8559
  2379. }
  2380. },
  2381. back: {
  2382. height: math.unit(1.65, "meters"),
  2383. weight: math.unit(50, "kg"),
  2384. name: "Back",
  2385. image: {
  2386. source: "./media/characters/elijah/back.svg",
  2387. extra: 895 / 850,
  2388. bottom: 5.3 / 897.956
  2389. }
  2390. },
  2391. frontNsfw: {
  2392. height: math.unit(1.65, "meters"),
  2393. weight: math.unit(50, "kg"),
  2394. name: "Front (NSFW)",
  2395. image: {
  2396. source: "./media/characters/elijah/front-nsfw.svg",
  2397. extra: 858 / 830,
  2398. bottom: 95.5 / 953.8559
  2399. }
  2400. },
  2401. backNsfw: {
  2402. height: math.unit(1.65, "meters"),
  2403. weight: math.unit(50, "kg"),
  2404. name: "Back (NSFW)",
  2405. image: {
  2406. source: "./media/characters/elijah/back-nsfw.svg",
  2407. extra: 895 / 850,
  2408. bottom: 5.3 / 897.956
  2409. }
  2410. },
  2411. dick: {
  2412. height: math.unit(1, "feet"),
  2413. name: "Dick",
  2414. image: {
  2415. source: "./media/characters/elijah/dick.svg"
  2416. }
  2417. },
  2418. beakOpen: {
  2419. height: math.unit(1.25, "feet"),
  2420. name: "Beak (Open)",
  2421. image: {
  2422. source: "./media/characters/elijah/beak-open.svg"
  2423. }
  2424. },
  2425. beakShut: {
  2426. height: math.unit(1.25, "feet"),
  2427. name: "Beak (Shut)",
  2428. image: {
  2429. source: "./media/characters/elijah/beak-shut.svg"
  2430. }
  2431. },
  2432. footFlexing: {
  2433. height: math.unit(1.61, "feet"),
  2434. name: "Foot (Flexing)",
  2435. image: {
  2436. source: "./media/characters/elijah/foot-flexing.svg"
  2437. }
  2438. },
  2439. footStepping: {
  2440. height: math.unit(1.44, "feet"),
  2441. name: "Foot (Stepping)",
  2442. image: {
  2443. source: "./media/characters/elijah/foot-stepping.svg"
  2444. }
  2445. },
  2446. plantigradeLeg: {
  2447. height: math.unit(2.34, "feet"),
  2448. name: "Plantigrade Leg",
  2449. image: {
  2450. source: "./media/characters/elijah/plantigrade-leg.svg"
  2451. }
  2452. },
  2453. plantigradeFootLeft: {
  2454. height: math.unit(0.9, "feet"),
  2455. name: "Plantigrade Foot (Left)",
  2456. image: {
  2457. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2458. }
  2459. },
  2460. plantigradeFootRight: {
  2461. height: math.unit(0.9, "feet"),
  2462. name: "Plantigrade Foot (Right)",
  2463. image: {
  2464. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2465. }
  2466. },
  2467. },
  2468. [
  2469. {
  2470. name: "Normal",
  2471. height: math.unit(1.65, "meters")
  2472. },
  2473. {
  2474. name: "Macro",
  2475. height: math.unit(55, "meters"),
  2476. default: true
  2477. },
  2478. {
  2479. name: "Macro+",
  2480. height: math.unit(105, "meters")
  2481. },
  2482. ]
  2483. ))
  2484. characterMakers.push(() => makeCharacter(
  2485. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2486. {
  2487. front: {
  2488. height: math.unit(7 + 2/12, "feet"),
  2489. weight: math.unit(320, "kg"),
  2490. name: "Front",
  2491. image: {
  2492. source: "./media/characters/rai/front.svg",
  2493. extra: 1802/1696,
  2494. bottom: 68/1870
  2495. }
  2496. },
  2497. frontDressed: {
  2498. height: math.unit(7 + 2/12, "feet"),
  2499. weight: math.unit(320, "kg"),
  2500. name: "Front (Dressed)",
  2501. image: {
  2502. source: "./media/characters/rai/front-dressed.svg",
  2503. extra: 1802/1696,
  2504. bottom: 68/1870
  2505. }
  2506. },
  2507. side: {
  2508. height: math.unit(7 + 2/12, "feet"),
  2509. weight: math.unit(320, "kg"),
  2510. name: "Side",
  2511. image: {
  2512. source: "./media/characters/rai/side.svg",
  2513. extra: 1789/1710,
  2514. bottom: 115/1904
  2515. }
  2516. },
  2517. back: {
  2518. height: math.unit(7 + 2/12, "feet"),
  2519. weight: math.unit(320, "kg"),
  2520. name: "Back",
  2521. image: {
  2522. source: "./media/characters/rai/back.svg",
  2523. extra: 1770/1707,
  2524. bottom: 28/1798
  2525. }
  2526. },
  2527. feral: {
  2528. height: math.unit(9.5, "feet"),
  2529. weight: math.unit(640, "kg"),
  2530. name: "Feral",
  2531. image: {
  2532. source: "./media/characters/rai/feral.svg",
  2533. extra: 945/553,
  2534. bottom: 176/1121
  2535. }
  2536. },
  2537. dragon: {
  2538. height: math.unit(23, "feet"),
  2539. weight: math.unit(50000, "lb"),
  2540. name: "Dragon",
  2541. image: {
  2542. source: "./media/characters/rai/dragon.svg",
  2543. extra: 2498 / 2030,
  2544. bottom: 85.2 / 2584
  2545. }
  2546. },
  2547. maw: {
  2548. height: math.unit(1.69, "feet"),
  2549. name: "Maw",
  2550. image: {
  2551. source: "./media/characters/rai/maw.svg"
  2552. }
  2553. },
  2554. },
  2555. [
  2556. {
  2557. name: "Normal",
  2558. height: math.unit(7 + 2/12, "feet")
  2559. },
  2560. {
  2561. name: "Big",
  2562. height: math.unit(11, "feet")
  2563. },
  2564. {
  2565. name: "Macro",
  2566. height: math.unit(302, "feet"),
  2567. default: true
  2568. },
  2569. ]
  2570. ))
  2571. characterMakers.push(() => makeCharacter(
  2572. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2573. {
  2574. frontDressed: {
  2575. height: math.unit(216, "feet"),
  2576. weight: math.unit(7000000, "lb"),
  2577. name: "Front (Dressed)",
  2578. image: {
  2579. source: "./media/characters/jazzy/front-dressed.svg",
  2580. extra: 2738 / 2651,
  2581. bottom: 41.8 / 2786
  2582. }
  2583. },
  2584. backDressed: {
  2585. height: math.unit(216, "feet"),
  2586. weight: math.unit(7000000, "lb"),
  2587. name: "Back (Dressed)",
  2588. image: {
  2589. source: "./media/characters/jazzy/back-dressed.svg",
  2590. extra: 2775 / 2673,
  2591. bottom: 36.8 / 2817
  2592. }
  2593. },
  2594. front: {
  2595. height: math.unit(216, "feet"),
  2596. weight: math.unit(7000000, "lb"),
  2597. name: "Front",
  2598. image: {
  2599. source: "./media/characters/jazzy/front.svg",
  2600. extra: 2738 / 2651,
  2601. bottom: 41.8 / 2786
  2602. }
  2603. },
  2604. back: {
  2605. height: math.unit(216, "feet"),
  2606. weight: math.unit(7000000, "lb"),
  2607. name: "Back",
  2608. image: {
  2609. source: "./media/characters/jazzy/back.svg",
  2610. extra: 2775 / 2673,
  2611. bottom: 36.8 / 2817
  2612. }
  2613. },
  2614. maw: {
  2615. height: math.unit(20, "feet"),
  2616. name: "Maw",
  2617. image: {
  2618. source: "./media/characters/jazzy/maw.svg"
  2619. }
  2620. },
  2621. paws: {
  2622. height: math.unit(27.5, "feet"),
  2623. name: "Paws",
  2624. image: {
  2625. source: "./media/characters/jazzy/paws.svg"
  2626. }
  2627. },
  2628. eye: {
  2629. height: math.unit(4.4, "feet"),
  2630. name: "Eye",
  2631. image: {
  2632. source: "./media/characters/jazzy/eye.svg"
  2633. }
  2634. },
  2635. droneOffense: {
  2636. height: math.unit(9.5, "inches"),
  2637. name: "Drone (Offense)",
  2638. image: {
  2639. source: "./media/characters/jazzy/drone-offense.svg"
  2640. }
  2641. },
  2642. droneRecon: {
  2643. height: math.unit(9.5, "inches"),
  2644. name: "Drone (Recon)",
  2645. image: {
  2646. source: "./media/characters/jazzy/drone-recon.svg"
  2647. }
  2648. },
  2649. droneDefense: {
  2650. height: math.unit(9.5, "inches"),
  2651. name: "Drone (Defense)",
  2652. image: {
  2653. source: "./media/characters/jazzy/drone-defense.svg"
  2654. }
  2655. },
  2656. },
  2657. [
  2658. {
  2659. name: "Macro",
  2660. height: math.unit(216, "feet"),
  2661. default: true
  2662. },
  2663. ]
  2664. ))
  2665. characterMakers.push(() => makeCharacter(
  2666. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2667. {
  2668. front: {
  2669. height: math.unit(9 + 6/12, "feet"),
  2670. weight: math.unit(700, "lb"),
  2671. name: "Front",
  2672. image: {
  2673. source: "./media/characters/flamm/front.svg",
  2674. extra: 1751/1632,
  2675. bottom: 46/1797
  2676. }
  2677. },
  2678. buff: {
  2679. height: math.unit(9 + 6/12, "feet"),
  2680. weight: math.unit(950, "lb"),
  2681. name: "Buff",
  2682. image: {
  2683. source: "./media/characters/flamm/buff.svg",
  2684. extra: 3018/2874,
  2685. bottom: 221/3239
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Normal",
  2692. height: math.unit(9.5, "feet")
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(200, "feet"),
  2697. default: true
  2698. },
  2699. ]
  2700. ))
  2701. characterMakers.push(() => makeCharacter(
  2702. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2703. {
  2704. front: {
  2705. height: math.unit(5 + 3/12, "feet"),
  2706. weight: math.unit(60, "kg"),
  2707. name: "Front",
  2708. image: {
  2709. source: "./media/characters/zephiro/front.svg",
  2710. extra: 2309 / 2162,
  2711. bottom: 0.069
  2712. }
  2713. },
  2714. side: {
  2715. height: math.unit(5 + 3/12, "feet"),
  2716. weight: math.unit(60, "kg"),
  2717. name: "Side",
  2718. image: {
  2719. source: "./media/characters/zephiro/side.svg",
  2720. extra: 2403 / 2279,
  2721. bottom: 0.015
  2722. }
  2723. },
  2724. back: {
  2725. height: math.unit(5 + 3/12, "feet"),
  2726. weight: math.unit(60, "kg"),
  2727. name: "Back",
  2728. image: {
  2729. source: "./media/characters/zephiro/back.svg",
  2730. extra: 2373 / 2244,
  2731. bottom: 0.013
  2732. }
  2733. },
  2734. hand: {
  2735. height: math.unit(0.68, "feet"),
  2736. name: "Hand",
  2737. image: {
  2738. source: "./media/characters/zephiro/hand.svg"
  2739. }
  2740. },
  2741. paw: {
  2742. height: math.unit(1, "feet"),
  2743. name: "Paw",
  2744. image: {
  2745. source: "./media/characters/zephiro/paw.svg"
  2746. }
  2747. },
  2748. beans: {
  2749. height: math.unit(0.93, "feet"),
  2750. name: "Beans",
  2751. image: {
  2752. source: "./media/characters/zephiro/beans.svg"
  2753. }
  2754. },
  2755. },
  2756. [
  2757. {
  2758. name: "Micro",
  2759. height: math.unit(3, "inches")
  2760. },
  2761. {
  2762. name: "Normal",
  2763. height: math.unit(5 + 3 / 12, "feet"),
  2764. default: true
  2765. },
  2766. {
  2767. name: "Macro",
  2768. height: math.unit(118, "feet")
  2769. },
  2770. ]
  2771. ))
  2772. characterMakers.push(() => makeCharacter(
  2773. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2774. {
  2775. front: {
  2776. height: math.unit(5, "feet"),
  2777. weight: math.unit(90, "kg"),
  2778. name: "Front",
  2779. image: {
  2780. source: "./media/characters/fory/front.svg",
  2781. extra: 2862 / 2674,
  2782. bottom: 180 / 3043.8
  2783. }
  2784. },
  2785. back: {
  2786. height: math.unit(5, "feet"),
  2787. weight: math.unit(90, "kg"),
  2788. name: "Back",
  2789. image: {
  2790. source: "./media/characters/fory/back.svg",
  2791. extra: 2962 / 2791,
  2792. bottom: 106 / 3071.8
  2793. }
  2794. },
  2795. foot: {
  2796. height: math.unit(2.14, "feet"),
  2797. name: "Foot",
  2798. image: {
  2799. source: "./media/characters/fory/foot.svg"
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(5, "feet")
  2807. },
  2808. {
  2809. name: "Macro",
  2810. height: math.unit(50, "feet"),
  2811. default: true
  2812. },
  2813. {
  2814. name: "Megamacro",
  2815. height: math.unit(10, "miles")
  2816. },
  2817. {
  2818. name: "Gigamacro",
  2819. height: math.unit(5, "earths")
  2820. },
  2821. ]
  2822. ))
  2823. characterMakers.push(() => makeCharacter(
  2824. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2825. {
  2826. front: {
  2827. height: math.unit(7, "feet"),
  2828. weight: math.unit(90, "kg"),
  2829. name: "Front",
  2830. image: {
  2831. source: "./media/characters/kurrikage/front.svg",
  2832. extra: 1845/1733,
  2833. bottom: 119/1964
  2834. }
  2835. },
  2836. back: {
  2837. height: math.unit(7, "feet"),
  2838. weight: math.unit(90, "kg"),
  2839. name: "Back",
  2840. image: {
  2841. source: "./media/characters/kurrikage/back.svg",
  2842. extra: 1790/1677,
  2843. bottom: 61/1851
  2844. }
  2845. },
  2846. dressed: {
  2847. height: math.unit(7, "feet"),
  2848. weight: math.unit(90, "kg"),
  2849. name: "Dressed",
  2850. image: {
  2851. source: "./media/characters/kurrikage/dressed.svg",
  2852. extra: 1845/1733,
  2853. bottom: 119/1964
  2854. }
  2855. },
  2856. foot: {
  2857. height: math.unit(1.5, "feet"),
  2858. name: "Foot",
  2859. image: {
  2860. source: "./media/characters/kurrikage/foot.svg"
  2861. }
  2862. },
  2863. staff: {
  2864. height: math.unit(6.7, "feet"),
  2865. name: "Staff",
  2866. image: {
  2867. source: "./media/characters/kurrikage/staff.svg"
  2868. }
  2869. },
  2870. peek: {
  2871. height: math.unit(1.05, "feet"),
  2872. name: "Peeking",
  2873. image: {
  2874. source: "./media/characters/kurrikage/peek.svg",
  2875. bottom: 0.08
  2876. }
  2877. },
  2878. },
  2879. [
  2880. {
  2881. name: "Normal",
  2882. height: math.unit(12, "feet"),
  2883. default: true
  2884. },
  2885. {
  2886. name: "Big",
  2887. height: math.unit(20, "feet")
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(500, "feet")
  2892. },
  2893. {
  2894. name: "Megamacro",
  2895. height: math.unit(20, "miles")
  2896. },
  2897. ]
  2898. ))
  2899. characterMakers.push(() => makeCharacter(
  2900. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2901. {
  2902. front: {
  2903. height: math.unit(6, "feet"),
  2904. weight: math.unit(75, "kg"),
  2905. name: "Front",
  2906. image: {
  2907. source: "./media/characters/shingo/front.svg",
  2908. extra: 1900/1825,
  2909. bottom: 82/1982
  2910. }
  2911. },
  2912. side: {
  2913. height: math.unit(6, "feet"),
  2914. weight: math.unit(75, "kg"),
  2915. name: "Side",
  2916. image: {
  2917. source: "./media/characters/shingo/side.svg",
  2918. extra: 1930/1865,
  2919. bottom: 16/1946
  2920. }
  2921. },
  2922. back: {
  2923. height: math.unit(6, "feet"),
  2924. weight: math.unit(75, "kg"),
  2925. name: "Back",
  2926. image: {
  2927. source: "./media/characters/shingo/back.svg",
  2928. extra: 1922/1852,
  2929. bottom: 16/1938
  2930. }
  2931. },
  2932. frontDressed: {
  2933. height: math.unit(6, "feet"),
  2934. weight: math.unit(150, "lb"),
  2935. name: "Front-dressed",
  2936. image: {
  2937. source: "./media/characters/shingo/front-dressed.svg",
  2938. extra: 1900/1825,
  2939. bottom: 82/1982
  2940. }
  2941. },
  2942. paw: {
  2943. height: math.unit(1.29, "feet"),
  2944. name: "Paw",
  2945. image: {
  2946. source: "./media/characters/shingo/paw.svg"
  2947. }
  2948. },
  2949. hand: {
  2950. height: math.unit(1.07, "feet"),
  2951. name: "Hand",
  2952. image: {
  2953. source: "./media/characters/shingo/hand.svg"
  2954. }
  2955. },
  2956. frontAlt: {
  2957. height: math.unit(6, "feet"),
  2958. weight: math.unit(75, "kg"),
  2959. name: "Front (Alt)",
  2960. image: {
  2961. source: "./media/characters/shingo/front-alt.svg",
  2962. extra: 3511 / 3338,
  2963. bottom: 0.005
  2964. }
  2965. },
  2966. frontAlt2: {
  2967. height: math.unit(6, "feet"),
  2968. weight: math.unit(75, "kg"),
  2969. name: "Front (Alt 2)",
  2970. image: {
  2971. source: "./media/characters/shingo/front-alt-2.svg",
  2972. extra: 706/681,
  2973. bottom: 11/717
  2974. }
  2975. },
  2976. pawAlt: {
  2977. height: math.unit(1, "feet"),
  2978. name: "Paw (Alt)",
  2979. image: {
  2980. source: "./media/characters/shingo/paw-alt.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Micro",
  2987. height: math.unit(4, "inches")
  2988. },
  2989. {
  2990. name: "Normal",
  2991. height: math.unit(6, "feet"),
  2992. default: true
  2993. },
  2994. {
  2995. name: "Macro",
  2996. height: math.unit(108, "feet")
  2997. },
  2998. {
  2999. name: "Macro+",
  3000. height: math.unit(1500, "feet")
  3001. },
  3002. ]
  3003. ))
  3004. characterMakers.push(() => makeCharacter(
  3005. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3006. {
  3007. side: {
  3008. height: math.unit(6, "feet"),
  3009. weight: math.unit(75, "kg"),
  3010. name: "Side",
  3011. image: {
  3012. source: "./media/characters/aigey/side.svg"
  3013. }
  3014. },
  3015. },
  3016. [
  3017. {
  3018. name: "Macro",
  3019. height: math.unit(200, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Megamacro",
  3024. height: math.unit(100, "miles")
  3025. },
  3026. ]
  3027. )
  3028. )
  3029. characterMakers.push(() => makeCharacter(
  3030. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3031. {
  3032. front: {
  3033. height: math.unit(5 + 5 / 12, "feet"),
  3034. weight: math.unit(75, "kg"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/natasha/front.svg",
  3038. extra: 859 / 824,
  3039. bottom: 23 / 879.6
  3040. }
  3041. },
  3042. frontNsfw: {
  3043. height: math.unit(5 + 5 / 12, "feet"),
  3044. weight: math.unit(75, "kg"),
  3045. name: "Front (NSFW)",
  3046. image: {
  3047. source: "./media/characters/natasha/front-nsfw.svg",
  3048. extra: 859 / 824,
  3049. bottom: 23 / 879.6
  3050. }
  3051. },
  3052. frontErect: {
  3053. height: math.unit(5 + 5 / 12, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front (Erect)",
  3056. image: {
  3057. source: "./media/characters/natasha/front-erect.svg",
  3058. extra: 859 / 824,
  3059. bottom: 23 / 879.6
  3060. }
  3061. },
  3062. back: {
  3063. height: math.unit(5 + 5 / 12, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Back",
  3066. image: {
  3067. source: "./media/characters/natasha/back.svg",
  3068. extra: 887.9 / 852.6,
  3069. bottom: 9.7 / 896.4
  3070. }
  3071. },
  3072. backAlt: {
  3073. height: math.unit(5 + 5 / 12, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Back (Alt)",
  3076. image: {
  3077. source: "./media/characters/natasha/back-alt.svg",
  3078. extra: 1236.7 / 1192,
  3079. bottom: 22.3 / 1258.2
  3080. }
  3081. },
  3082. dick: {
  3083. height: math.unit(1.772, "feet"),
  3084. name: "Dick",
  3085. image: {
  3086. source: "./media/characters/natasha/dick.svg"
  3087. }
  3088. },
  3089. paw: {
  3090. height: math.unit(0.250, "meters"),
  3091. name: "Paw",
  3092. image: {
  3093. source: "./media/characters/natasha/paw.svg"
  3094. }
  3095. },
  3096. },
  3097. [
  3098. {
  3099. name: "Normal",
  3100. height: math.unit(5 + 5 / 12, "feet")
  3101. },
  3102. {
  3103. name: "Large",
  3104. height: math.unit(12, "feet")
  3105. },
  3106. {
  3107. name: "Macro",
  3108. height: math.unit(100, "feet"),
  3109. default: true
  3110. },
  3111. {
  3112. name: "Macro+",
  3113. height: math.unit(260, "feet")
  3114. },
  3115. {
  3116. name: "Macro++",
  3117. height: math.unit(1, "mile")
  3118. },
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3123. {
  3124. front: {
  3125. height: math.unit(6, "feet"),
  3126. weight: math.unit(75, "kg"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/malik/front.svg"
  3130. }
  3131. },
  3132. side: {
  3133. height: math.unit(6, "feet"),
  3134. weight: math.unit(75, "kg"),
  3135. name: "Side",
  3136. image: {
  3137. source: "./media/characters/malik/side.svg",
  3138. extra: 1.1539
  3139. }
  3140. },
  3141. back: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(75, "kg"),
  3144. name: "Back",
  3145. image: {
  3146. source: "./media/characters/malik/back.svg"
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Macro",
  3153. height: math.unit(156, "feet"),
  3154. default: true
  3155. },
  3156. {
  3157. name: "Macro+",
  3158. height: math.unit(1188, "feet")
  3159. },
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(6, "feet"),
  3167. weight: math.unit(75, "kg"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/sefer/front.svg",
  3171. extra: 848 / 659,
  3172. bottom: 28.3 / 876.442
  3173. }
  3174. },
  3175. back: {
  3176. height: math.unit(6, "feet"),
  3177. weight: math.unit(75, "kg"),
  3178. name: "Back",
  3179. image: {
  3180. source: "./media/characters/sefer/back.svg",
  3181. extra: 864 / 695,
  3182. bottom: 10 / 871
  3183. }
  3184. },
  3185. frontDressed: {
  3186. height: math.unit(6, "feet"),
  3187. weight: math.unit(75, "kg"),
  3188. name: "Front (Dressed)",
  3189. image: {
  3190. source: "./media/characters/sefer/front-dressed.svg",
  3191. extra: 839 / 653,
  3192. bottom: 37.6 / 878
  3193. }
  3194. },
  3195. },
  3196. [
  3197. {
  3198. name: "Normal",
  3199. height: math.unit(6, "feet"),
  3200. default: true
  3201. },
  3202. ]
  3203. ))
  3204. characterMakers.push(() => makeCharacter(
  3205. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3206. {
  3207. body: {
  3208. height: math.unit(2.2428, "meter"),
  3209. weight: math.unit(124.738, "kg"),
  3210. name: "Body",
  3211. image: {
  3212. extra: 1225 / 1050,
  3213. source: "./media/characters/north/front.svg"
  3214. }
  3215. }
  3216. },
  3217. [
  3218. {
  3219. name: "Micro",
  3220. height: math.unit(4, "inches")
  3221. },
  3222. {
  3223. name: "Macro",
  3224. height: math.unit(63, "meters")
  3225. },
  3226. {
  3227. name: "Megamacro",
  3228. height: math.unit(101, "miles"),
  3229. default: true
  3230. }
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3235. {
  3236. angled: {
  3237. height: math.unit(4, "meter"),
  3238. weight: math.unit(150, "kg"),
  3239. name: "Angled",
  3240. image: {
  3241. source: "./media/characters/talan/angled-sfw.svg",
  3242. bottom: 29 / 3734
  3243. }
  3244. },
  3245. angledNsfw: {
  3246. height: math.unit(4, "meter"),
  3247. weight: math.unit(150, "kg"),
  3248. name: "Angled (NSFW)",
  3249. image: {
  3250. source: "./media/characters/talan/angled-nsfw.svg",
  3251. bottom: 29 / 3734
  3252. }
  3253. },
  3254. frontNsfw: {
  3255. height: math.unit(4, "meter"),
  3256. weight: math.unit(150, "kg"),
  3257. name: "Front (NSFW)",
  3258. image: {
  3259. source: "./media/characters/talan/front-nsfw.svg",
  3260. bottom: 29 / 3734
  3261. }
  3262. },
  3263. sideNsfw: {
  3264. height: math.unit(4, "meter"),
  3265. weight: math.unit(150, "kg"),
  3266. name: "Side (NSFW)",
  3267. image: {
  3268. source: "./media/characters/talan/side-nsfw.svg",
  3269. bottom: 29 / 3734
  3270. }
  3271. },
  3272. back: {
  3273. height: math.unit(4, "meter"),
  3274. weight: math.unit(150, "kg"),
  3275. name: "Back",
  3276. image: {
  3277. source: "./media/characters/talan/back.svg"
  3278. }
  3279. },
  3280. dickBottom: {
  3281. height: math.unit(0.621, "meter"),
  3282. name: "Dick (Bottom)",
  3283. image: {
  3284. source: "./media/characters/talan/dick-bottom.svg"
  3285. }
  3286. },
  3287. dickTop: {
  3288. height: math.unit(0.621, "meter"),
  3289. name: "Dick (Top)",
  3290. image: {
  3291. source: "./media/characters/talan/dick-top.svg"
  3292. }
  3293. },
  3294. dickSide: {
  3295. height: math.unit(0.305, "meter"),
  3296. name: "Dick (Side)",
  3297. image: {
  3298. source: "./media/characters/talan/dick-side.svg"
  3299. }
  3300. },
  3301. dickFront: {
  3302. height: math.unit(0.305, "meter"),
  3303. name: "Dick (Front)",
  3304. image: {
  3305. source: "./media/characters/talan/dick-front.svg"
  3306. }
  3307. },
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(4, "meters")
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(100, "meters")
  3317. },
  3318. {
  3319. name: "Megamacro",
  3320. height: math.unit(2, "miles"),
  3321. default: true
  3322. },
  3323. {
  3324. name: "Gigamacro",
  3325. height: math.unit(5000, "miles")
  3326. },
  3327. {
  3328. name: "Teramacro",
  3329. height: math.unit(100, "parsecs")
  3330. }
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(90, "kg"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/gael'rathus/front.svg"
  3342. }
  3343. },
  3344. frontAlt: {
  3345. height: math.unit(2, "meter"),
  3346. weight: math.unit(90, "kg"),
  3347. name: "Front (alt)",
  3348. image: {
  3349. source: "./media/characters/gael'rathus/front-alt.svg"
  3350. }
  3351. },
  3352. frontAlt2: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(90, "kg"),
  3355. name: "Front (alt 2)",
  3356. image: {
  3357. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3358. }
  3359. }
  3360. },
  3361. [
  3362. {
  3363. name: "Normal",
  3364. height: math.unit(9, "feet"),
  3365. default: true
  3366. },
  3367. {
  3368. name: "Large",
  3369. height: math.unit(25, "feet")
  3370. },
  3371. {
  3372. name: "Macro",
  3373. height: math.unit(0.25, "miles")
  3374. },
  3375. {
  3376. name: "Megamacro",
  3377. height: math.unit(10, "miles")
  3378. }
  3379. ]
  3380. ))
  3381. characterMakers.push(() => makeCharacter(
  3382. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3383. {
  3384. side: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(140, "kg"),
  3387. name: "Side",
  3388. image: {
  3389. source: "./media/characters/sosha/side.svg",
  3390. bottom: 0.042
  3391. }
  3392. },
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(12, "feet"),
  3398. default: true
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3404. {
  3405. side: {
  3406. height: math.unit(5 + 5 / 12, "feet"),
  3407. weight: math.unit(170, "kg"),
  3408. name: "Side",
  3409. image: {
  3410. source: "./media/characters/runnola/side.svg",
  3411. extra: 741 / 448,
  3412. bottom: 0.05
  3413. }
  3414. },
  3415. },
  3416. [
  3417. {
  3418. name: "Small",
  3419. height: math.unit(3, "feet")
  3420. },
  3421. {
  3422. name: "Normal",
  3423. height: math.unit(5 + 5 / 12, "feet"),
  3424. default: true
  3425. },
  3426. {
  3427. name: "Big",
  3428. height: math.unit(10, "feet")
  3429. },
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(50, "kg"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/kurribird/front.svg",
  3441. bottom: 0.015
  3442. }
  3443. },
  3444. frontAlt: {
  3445. height: math.unit(1.5, "meter"),
  3446. weight: math.unit(50, "kg"),
  3447. name: "Front (Alt)",
  3448. image: {
  3449. source: "./media/characters/kurribird/front-alt.svg",
  3450. extra: 1.45
  3451. }
  3452. },
  3453. },
  3454. [
  3455. {
  3456. name: "Normal",
  3457. height: math.unit(7, "feet")
  3458. },
  3459. {
  3460. name: "Big",
  3461. height: math.unit(12, "feet"),
  3462. default: true
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(1500, "feet")
  3467. },
  3468. {
  3469. name: "Megamacro",
  3470. height: math.unit(2, "miles")
  3471. }
  3472. ]
  3473. ))
  3474. characterMakers.push(() => makeCharacter(
  3475. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3476. {
  3477. front: {
  3478. height: math.unit(2, "meter"),
  3479. weight: math.unit(80, "kg"),
  3480. name: "Front",
  3481. image: {
  3482. source: "./media/characters/elbial/front.svg",
  3483. extra: 1643 / 1556,
  3484. bottom: 60.2 / 1696
  3485. }
  3486. },
  3487. side: {
  3488. height: math.unit(2, "meter"),
  3489. weight: math.unit(80, "kg"),
  3490. name: "Side",
  3491. image: {
  3492. source: "./media/characters/elbial/side.svg",
  3493. extra: 1601/1528,
  3494. bottom: 97/1698
  3495. }
  3496. },
  3497. back: {
  3498. height: math.unit(2, "meter"),
  3499. weight: math.unit(80, "kg"),
  3500. name: "Back",
  3501. image: {
  3502. source: "./media/characters/elbial/back.svg",
  3503. extra: 1653/1569,
  3504. bottom: 20/1673
  3505. }
  3506. },
  3507. frontDressed: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(80, "kg"),
  3510. name: "Front (Dressed)",
  3511. image: {
  3512. source: "./media/characters/elbial/front-dressed.svg",
  3513. extra: 1638/1569,
  3514. bottom: 70/1708
  3515. }
  3516. },
  3517. genitals: {
  3518. height: math.unit(2 / 3.367, "meter"),
  3519. name: "Genitals",
  3520. image: {
  3521. source: "./media/characters/elbial/genitals.svg"
  3522. }
  3523. },
  3524. },
  3525. [
  3526. {
  3527. name: "Large",
  3528. height: math.unit(100, "feet")
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(500, "feet"),
  3533. default: true
  3534. },
  3535. {
  3536. name: "Megamacro",
  3537. height: math.unit(10, "miles")
  3538. },
  3539. {
  3540. name: "Gigamacro",
  3541. height: math.unit(25000, "miles")
  3542. },
  3543. {
  3544. name: "Full-Size",
  3545. height: math.unit(8000000, "gigaparsecs")
  3546. }
  3547. ]
  3548. ))
  3549. characterMakers.push(() => makeCharacter(
  3550. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3551. {
  3552. front: {
  3553. height: math.unit(2, "meter"),
  3554. weight: math.unit(60, "kg"),
  3555. name: "Front",
  3556. image: {
  3557. source: "./media/characters/noah/front.svg"
  3558. }
  3559. },
  3560. talons: {
  3561. height: math.unit(0.315, "meter"),
  3562. name: "Talons",
  3563. image: {
  3564. source: "./media/characters/noah/talons.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Large",
  3571. height: math.unit(50, "feet")
  3572. },
  3573. {
  3574. name: "Macro",
  3575. height: math.unit(750, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Megamacro",
  3580. height: math.unit(50, "miles")
  3581. },
  3582. {
  3583. name: "Gigamacro",
  3584. height: math.unit(100000, "miles")
  3585. },
  3586. {
  3587. name: "Full-Size",
  3588. height: math.unit(3000000000, "miles")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/natalya/front.svg"
  3601. }
  3602. },
  3603. back: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Back",
  3607. image: {
  3608. source: "./media/characters/natalya/back.svg"
  3609. }
  3610. }
  3611. },
  3612. [
  3613. {
  3614. name: "Normal",
  3615. height: math.unit(150, "feet"),
  3616. default: true
  3617. },
  3618. {
  3619. name: "Megamacro",
  3620. height: math.unit(5, "miles")
  3621. },
  3622. {
  3623. name: "Full-Size",
  3624. height: math.unit(600, "kiloparsecs")
  3625. }
  3626. ]
  3627. ))
  3628. characterMakers.push(() => makeCharacter(
  3629. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3630. {
  3631. front: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(50, "kg"),
  3634. name: "Front",
  3635. image: {
  3636. source: "./media/characters/erestrebah/front.svg",
  3637. extra: 1262/1162,
  3638. bottom: 96/1358
  3639. }
  3640. },
  3641. back: {
  3642. height: math.unit(2, "meter"),
  3643. weight: math.unit(50, "kg"),
  3644. name: "Back",
  3645. image: {
  3646. source: "./media/characters/erestrebah/back.svg",
  3647. extra: 1257/1139,
  3648. bottom: 13/1270
  3649. }
  3650. },
  3651. wing: {
  3652. height: math.unit(2, "meter"),
  3653. weight: math.unit(50, "kg"),
  3654. name: "Wing",
  3655. image: {
  3656. source: "./media/characters/erestrebah/wing.svg",
  3657. extra: 1262/1162,
  3658. bottom: 96/1358
  3659. }
  3660. },
  3661. mouth: {
  3662. height: math.unit(0.39, "feet"),
  3663. name: "Mouth",
  3664. image: {
  3665. source: "./media/characters/erestrebah/mouth.svg"
  3666. }
  3667. }
  3668. },
  3669. [
  3670. {
  3671. name: "Normal",
  3672. height: math.unit(10, "feet")
  3673. },
  3674. {
  3675. name: "Large",
  3676. height: math.unit(50, "feet"),
  3677. default: true
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(300, "feet")
  3682. },
  3683. {
  3684. name: "Macro+",
  3685. height: math.unit(750, "feet")
  3686. },
  3687. {
  3688. name: "Megamacro",
  3689. height: math.unit(3, "miles")
  3690. }
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3695. {
  3696. front: {
  3697. height: math.unit(2, "meter"),
  3698. weight: math.unit(80, "kg"),
  3699. name: "Front",
  3700. image: {
  3701. source: "./media/characters/jennifer/front.svg",
  3702. bottom: 0.11,
  3703. extra: 1.16
  3704. }
  3705. },
  3706. frontAlt: {
  3707. height: math.unit(2, "meter"),
  3708. weight: math.unit(80, "kg"),
  3709. name: "Front (Alt)",
  3710. image: {
  3711. source: "./media/characters/jennifer/front-alt.svg"
  3712. }
  3713. }
  3714. },
  3715. [
  3716. {
  3717. name: "Canon Height",
  3718. height: math.unit(120, "feet"),
  3719. default: true
  3720. },
  3721. {
  3722. name: "Macro+",
  3723. height: math.unit(300, "feet")
  3724. },
  3725. {
  3726. name: "Megamacro",
  3727. height: math.unit(20000, "feet")
  3728. }
  3729. ]
  3730. ))
  3731. characterMakers.push(() => makeCharacter(
  3732. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3733. {
  3734. front: {
  3735. height: math.unit(2, "meter"),
  3736. weight: math.unit(50, "kg"),
  3737. name: "Front",
  3738. image: {
  3739. source: "./media/characters/kalista/front.svg",
  3740. extra: 1314/1145,
  3741. bottom: 101/1415
  3742. }
  3743. },
  3744. back: {
  3745. height: math.unit(2, "meter"),
  3746. weight: math.unit(50, "kg"),
  3747. name: "Back",
  3748. image: {
  3749. source: "./media/characters/kalista/back.svg",
  3750. extra: 1366 / 1156,
  3751. bottom: 33.9 / 1362.78
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Uncomfortably Small",
  3758. height: math.unit(10, "feet")
  3759. },
  3760. {
  3761. name: "Small",
  3762. height: math.unit(30, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(100, "feet"),
  3767. default: true
  3768. },
  3769. {
  3770. name: "Macro+",
  3771. height: math.unit(2000, "feet")
  3772. },
  3773. {
  3774. name: "True Form",
  3775. height: math.unit(8924, "miles")
  3776. }
  3777. ]
  3778. ))
  3779. characterMakers.push(() => makeCharacter(
  3780. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3781. {
  3782. front: {
  3783. height: math.unit(2, "meter"),
  3784. weight: math.unit(120, "kg"),
  3785. name: "Front",
  3786. image: {
  3787. source: "./media/characters/ggv/front.svg"
  3788. }
  3789. },
  3790. side: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(120, "kg"),
  3793. name: "Side",
  3794. image: {
  3795. source: "./media/characters/ggv/side.svg"
  3796. }
  3797. }
  3798. },
  3799. [
  3800. {
  3801. name: "Extremely Puny",
  3802. height: math.unit(9 + 5 / 12, "feet")
  3803. },
  3804. {
  3805. name: "Horribly Small",
  3806. height: math.unit(47.7, "miles"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Reasonably Sized",
  3811. height: math.unit(25000, "parsecs")
  3812. },
  3813. {
  3814. name: "Slightly Uncompressed",
  3815. height: math.unit(7.77e31, "parsecs")
  3816. },
  3817. {
  3818. name: "Omniversal",
  3819. height: math.unit(1e300, "meters")
  3820. },
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(2, "meter"),
  3828. weight: math.unit(75, "lb"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/napalm/front.svg"
  3832. }
  3833. },
  3834. back: {
  3835. height: math.unit(2, "meter"),
  3836. weight: math.unit(75, "lb"),
  3837. name: "Back",
  3838. image: {
  3839. source: "./media/characters/napalm/back.svg"
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Standard",
  3846. height: math.unit(55, "feet"),
  3847. default: true
  3848. }
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(7 + 5 / 6, "feet"),
  3856. weight: math.unit(325, "lb"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/asana/front.svg",
  3860. extra: 1133 / 1060,
  3861. bottom: 15.2 / 1148.6
  3862. }
  3863. },
  3864. back: {
  3865. height: math.unit(7 + 5 / 6, "feet"),
  3866. weight: math.unit(325, "lb"),
  3867. name: "Back",
  3868. image: {
  3869. source: "./media/characters/asana/back.svg",
  3870. extra: 1114 / 1043,
  3871. bottom: 5 / 1120
  3872. }
  3873. },
  3874. dressedDark: {
  3875. height: math.unit(7 + 5 / 6, "feet"),
  3876. weight: math.unit(325, "lb"),
  3877. name: "Dressed (Dark)",
  3878. image: {
  3879. source: "./media/characters/asana/dressed-dark.svg",
  3880. extra: 1133 / 1060,
  3881. bottom: 15.2 / 1148.6
  3882. }
  3883. },
  3884. dressedLight: {
  3885. height: math.unit(7 + 5 / 6, "feet"),
  3886. weight: math.unit(325, "lb"),
  3887. name: "Dressed (Light)",
  3888. image: {
  3889. source: "./media/characters/asana/dressed-light.svg",
  3890. extra: 1133 / 1060,
  3891. bottom: 15.2 / 1148.6
  3892. }
  3893. },
  3894. },
  3895. [
  3896. {
  3897. name: "Standard",
  3898. height: math.unit(7 + 5 / 6, "feet"),
  3899. default: true
  3900. },
  3901. {
  3902. name: "Large",
  3903. height: math.unit(10, "meters")
  3904. },
  3905. {
  3906. name: "Macro",
  3907. height: math.unit(2500, "meters")
  3908. },
  3909. {
  3910. name: "Megamacro",
  3911. height: math.unit(5e6, "meters")
  3912. },
  3913. {
  3914. name: "Examacro",
  3915. height: math.unit(5e12, "lightyears")
  3916. },
  3917. {
  3918. name: "Max Size",
  3919. height: math.unit(1e31, "lightyears")
  3920. }
  3921. ]
  3922. ))
  3923. characterMakers.push(() => makeCharacter(
  3924. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3925. {
  3926. front: {
  3927. height: math.unit(2, "meter"),
  3928. weight: math.unit(60, "kg"),
  3929. name: "Front",
  3930. image: {
  3931. source: "./media/characters/ebony/front.svg",
  3932. bottom: 0.03,
  3933. extra: 1045 / 810 + 0.03
  3934. }
  3935. },
  3936. side: {
  3937. height: math.unit(2, "meter"),
  3938. weight: math.unit(60, "kg"),
  3939. name: "Side",
  3940. image: {
  3941. source: "./media/characters/ebony/side.svg",
  3942. bottom: 0.03,
  3943. extra: 1045 / 810 + 0.03
  3944. }
  3945. },
  3946. back: {
  3947. height: math.unit(2, "meter"),
  3948. weight: math.unit(60, "kg"),
  3949. name: "Back",
  3950. image: {
  3951. source: "./media/characters/ebony/back.svg",
  3952. bottom: 0.01,
  3953. extra: 1045 / 810 + 0.01
  3954. }
  3955. },
  3956. },
  3957. [
  3958. // TODO check why I did this lol
  3959. {
  3960. name: "Standard",
  3961. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(200, "feet")
  3967. },
  3968. {
  3969. name: "Gigamacro",
  3970. height: math.unit(13000, "km")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(175, "lb"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/mountain/front.svg",
  3983. extra: 972 / 955,
  3984. bottom: 64 / 1036.6
  3985. }
  3986. },
  3987. back: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(175, "lb"),
  3990. name: "Back",
  3991. image: {
  3992. source: "./media/characters/mountain/back.svg",
  3993. extra: 970 / 950,
  3994. bottom: 28.25 / 999
  3995. }
  3996. },
  3997. },
  3998. [
  3999. {
  4000. name: "Large",
  4001. height: math.unit(20, "meters")
  4002. },
  4003. {
  4004. name: "Macro",
  4005. height: math.unit(300, "meters")
  4006. },
  4007. {
  4008. name: "Gigamacro",
  4009. height: math.unit(10000, "km"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Examacro",
  4014. height: math.unit(10e9, "lightyears")
  4015. }
  4016. ]
  4017. ))
  4018. characterMakers.push(() => makeCharacter(
  4019. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4020. {
  4021. front: {
  4022. height: math.unit(8, "feet"),
  4023. weight: math.unit(500, "lb"),
  4024. name: "Front",
  4025. image: {
  4026. source: "./media/characters/rick/front.svg"
  4027. }
  4028. }
  4029. },
  4030. [
  4031. {
  4032. name: "Normal",
  4033. height: math.unit(8, "feet"),
  4034. default: true
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(5, "km")
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(8, "feet"),
  4047. weight: math.unit(120, "lb"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/ona/front.svg"
  4051. }
  4052. },
  4053. frontAlt: {
  4054. height: math.unit(8, "feet"),
  4055. weight: math.unit(120, "lb"),
  4056. name: "Front (Alt)",
  4057. image: {
  4058. source: "./media/characters/ona/front-alt.svg"
  4059. }
  4060. },
  4061. back: {
  4062. height: math.unit(8, "feet"),
  4063. weight: math.unit(120, "lb"),
  4064. name: "Back",
  4065. image: {
  4066. source: "./media/characters/ona/back.svg"
  4067. }
  4068. },
  4069. foot: {
  4070. height: math.unit(1.1, "feet"),
  4071. name: "Foot",
  4072. image: {
  4073. source: "./media/characters/ona/foot.svg"
  4074. }
  4075. }
  4076. },
  4077. [
  4078. {
  4079. name: "Megamacro",
  4080. height: math.unit(70, "km"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Gigamacro",
  4085. height: math.unit(681818, "miles")
  4086. },
  4087. {
  4088. name: "Examacro",
  4089. height: math.unit(3800000, "lightyears")
  4090. },
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4095. {
  4096. front: {
  4097. height: math.unit(12, "feet"),
  4098. weight: math.unit(3000, "lb"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/mech/front.svg",
  4102. extra: 2900 / 2770,
  4103. bottom: 110 / 3010
  4104. }
  4105. },
  4106. back: {
  4107. height: math.unit(12, "feet"),
  4108. weight: math.unit(3000, "lb"),
  4109. name: "Back",
  4110. image: {
  4111. source: "./media/characters/mech/back.svg",
  4112. extra: 3011 / 2890,
  4113. bottom: 94 / 3105
  4114. }
  4115. },
  4116. maw: {
  4117. height: math.unit(3.07, "feet"),
  4118. name: "Maw",
  4119. image: {
  4120. source: "./media/characters/mech/maw.svg"
  4121. }
  4122. },
  4123. head: {
  4124. height: math.unit(2.82, "feet"),
  4125. name: "Head",
  4126. image: {
  4127. source: "./media/characters/mech/head.svg"
  4128. }
  4129. },
  4130. dick: {
  4131. height: math.unit(1.43, "feet"),
  4132. name: "Dick",
  4133. image: {
  4134. source: "./media/characters/mech/dick.svg"
  4135. }
  4136. },
  4137. },
  4138. [
  4139. {
  4140. name: "Normal",
  4141. height: math.unit(12, "feet")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(300, "feet"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Macro+",
  4150. height: math.unit(1500, "feet")
  4151. },
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4156. {
  4157. front: {
  4158. height: math.unit(1.3, "meter"),
  4159. weight: math.unit(30, "kg"),
  4160. name: "Front",
  4161. image: {
  4162. source: "./media/characters/gregory/front.svg",
  4163. }
  4164. }
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(1.3, "meter"),
  4170. default: true
  4171. },
  4172. {
  4173. name: "Macro",
  4174. height: math.unit(20, "meter")
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(2.8, "meter"),
  4183. weight: math.unit(200, "kg"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/elory/front.svg",
  4187. }
  4188. }
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(2.8, "meter"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(38, "meter")
  4199. }
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4204. {
  4205. front: {
  4206. height: math.unit(470, "feet"),
  4207. weight: math.unit(924, "tons"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/angelpatamon/front.svg",
  4211. }
  4212. }
  4213. },
  4214. [
  4215. {
  4216. name: "Normal",
  4217. height: math.unit(470, "feet"),
  4218. default: true
  4219. },
  4220. {
  4221. name: "Deity Size I",
  4222. height: math.unit(28651.2, "km")
  4223. },
  4224. {
  4225. name: "Deity Size II",
  4226. height: math.unit(171907.2, "km")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4232. {
  4233. side: {
  4234. height: math.unit(7.2, "meter"),
  4235. weight: math.unit(8.2, "tons"),
  4236. name: "Side",
  4237. image: {
  4238. source: "./media/characters/cryae/side.svg",
  4239. extra: 3500 / 1500
  4240. }
  4241. }
  4242. },
  4243. [
  4244. {
  4245. name: "Normal",
  4246. height: math.unit(7.2, "meter"),
  4247. default: true
  4248. }
  4249. ]
  4250. ))
  4251. characterMakers.push(() => makeCharacter(
  4252. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4253. {
  4254. front: {
  4255. height: math.unit(6, "feet"),
  4256. weight: math.unit(175, "lb"),
  4257. name: "Front",
  4258. image: {
  4259. source: "./media/characters/xera/front.svg",
  4260. extra: 2377 / 1972,
  4261. bottom: 75.5 / 2452
  4262. }
  4263. },
  4264. side: {
  4265. height: math.unit(6, "feet"),
  4266. weight: math.unit(175, "lb"),
  4267. name: "Side",
  4268. image: {
  4269. source: "./media/characters/xera/side.svg",
  4270. extra: 2345 / 2019,
  4271. bottom: 39.7 / 2384
  4272. }
  4273. },
  4274. back: {
  4275. height: math.unit(6, "feet"),
  4276. weight: math.unit(175, "lb"),
  4277. name: "Back",
  4278. image: {
  4279. source: "./media/characters/xera/back.svg",
  4280. extra: 2095 / 1984,
  4281. bottom: 67 / 2166
  4282. }
  4283. },
  4284. },
  4285. [
  4286. {
  4287. name: "Small",
  4288. height: math.unit(10, "feet")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(500, "meters"),
  4293. default: true
  4294. },
  4295. {
  4296. name: "Macro+",
  4297. height: math.unit(10, "km")
  4298. },
  4299. {
  4300. name: "Gigamacro",
  4301. height: math.unit(25000, "km")
  4302. },
  4303. {
  4304. name: "Teramacro",
  4305. height: math.unit(3e6, "km")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(6, "feet"),
  4314. weight: math.unit(175, "lb"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/nebula/front.svg",
  4318. extra: 2566 / 2362,
  4319. bottom: 81 / 2644
  4320. }
  4321. }
  4322. },
  4323. [
  4324. {
  4325. name: "Small",
  4326. height: math.unit(4.5, "meters")
  4327. },
  4328. {
  4329. name: "Macro",
  4330. height: math.unit(1500, "meters"),
  4331. default: true
  4332. },
  4333. {
  4334. name: "Megamacro",
  4335. height: math.unit(150, "km")
  4336. },
  4337. {
  4338. name: "Gigamacro",
  4339. height: math.unit(27000, "km")
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4345. {
  4346. front: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(225, "lb"),
  4349. name: "Front",
  4350. image: {
  4351. source: "./media/characters/abysgar/front.svg"
  4352. }
  4353. }
  4354. },
  4355. [
  4356. {
  4357. name: "Small",
  4358. height: math.unit(4.5, "meters")
  4359. },
  4360. {
  4361. name: "Macro",
  4362. height: math.unit(1250, "meters"),
  4363. default: true
  4364. },
  4365. {
  4366. name: "Megamacro",
  4367. height: math.unit(125, "km")
  4368. },
  4369. {
  4370. name: "Gigamacro",
  4371. height: math.unit(26000, "km")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(6, "feet"),
  4380. weight: math.unit(180, "lb"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/yakuz/front.svg"
  4384. }
  4385. }
  4386. },
  4387. [
  4388. {
  4389. name: "Small",
  4390. height: math.unit(5, "meters")
  4391. },
  4392. {
  4393. name: "Macro",
  4394. height: math.unit(1500, "meters"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "Megamacro",
  4399. height: math.unit(200, "km")
  4400. },
  4401. {
  4402. name: "Gigamacro",
  4403. height: math.unit(100000, "km")
  4404. }
  4405. ]
  4406. ))
  4407. characterMakers.push(() => makeCharacter(
  4408. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4409. {
  4410. front: {
  4411. height: math.unit(6, "feet"),
  4412. weight: math.unit(175, "lb"),
  4413. name: "Front",
  4414. image: {
  4415. source: "./media/characters/mirova/front.svg",
  4416. extra: 3334 / 3071,
  4417. bottom: 42 / 3375.6
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Small",
  4424. height: math.unit(5, "meters")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(900, "meters"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Megamacro",
  4433. height: math.unit(135, "km")
  4434. },
  4435. {
  4436. name: "Gigamacro",
  4437. height: math.unit(20000, "km")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4443. {
  4444. side: {
  4445. height: math.unit(28.35, "feet"),
  4446. weight: math.unit(99.75, "tons"),
  4447. name: "Side",
  4448. image: {
  4449. source: "./media/characters/asana-mech/side.svg",
  4450. extra: 923 / 699,
  4451. bottom: 50 / 975
  4452. }
  4453. },
  4454. chaingun: {
  4455. height: math.unit(7, "feet"),
  4456. weight: math.unit(2400, "lb"),
  4457. name: "Chaingun",
  4458. image: {
  4459. source: "./media/characters/asana-mech/chaingun.svg"
  4460. }
  4461. },
  4462. laser: {
  4463. height: math.unit(7.12, "feet"),
  4464. weight: math.unit(2000, "lb"),
  4465. name: "Laser",
  4466. image: {
  4467. source: "./media/characters/asana-mech/laser.svg"
  4468. }
  4469. },
  4470. },
  4471. [
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(28.35, "feet"),
  4475. default: true
  4476. },
  4477. {
  4478. name: "Macro",
  4479. height: math.unit(2500, "feet")
  4480. },
  4481. {
  4482. name: "Megamacro",
  4483. height: math.unit(25, "miles")
  4484. },
  4485. {
  4486. name: "Examacro",
  4487. height: math.unit(6e8, "lightyears")
  4488. },
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(5, "meters"),
  4496. weight: math.unit(1000, "kg"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/asche/front.svg",
  4500. extra: 1258 / 1190,
  4501. bottom: 47 / 1305
  4502. }
  4503. },
  4504. frontUnderwear: {
  4505. height: math.unit(5, "meters"),
  4506. weight: math.unit(1000, "kg"),
  4507. name: "Front (Underwear)",
  4508. image: {
  4509. source: "./media/characters/asche/front-underwear.svg",
  4510. extra: 1258 / 1190,
  4511. bottom: 47 / 1305
  4512. }
  4513. },
  4514. frontDressed: {
  4515. height: math.unit(5, "meters"),
  4516. weight: math.unit(1000, "kg"),
  4517. name: "Front (Dressed)",
  4518. image: {
  4519. source: "./media/characters/asche/front-dressed.svg",
  4520. extra: 1258 / 1190,
  4521. bottom: 47 / 1305
  4522. }
  4523. },
  4524. frontArmor: {
  4525. height: math.unit(5, "meters"),
  4526. weight: math.unit(1000, "kg"),
  4527. name: "Front (Armored)",
  4528. image: {
  4529. source: "./media/characters/asche/front-armored.svg",
  4530. extra: 1374 / 1308,
  4531. bottom: 23 / 1397
  4532. }
  4533. },
  4534. mp724: {
  4535. height: math.unit(0.96, "meters"),
  4536. weight: math.unit(38, "kg"),
  4537. name: "H&K MP724",
  4538. image: {
  4539. source: "./media/characters/asche/h&k-mp724.svg"
  4540. }
  4541. },
  4542. side: {
  4543. height: math.unit(5, "meters"),
  4544. weight: math.unit(1000, "kg"),
  4545. name: "Side",
  4546. image: {
  4547. source: "./media/characters/asche/side.svg",
  4548. extra: 1717 / 1609,
  4549. bottom: 0.005
  4550. }
  4551. },
  4552. back: {
  4553. height: math.unit(5, "meters"),
  4554. weight: math.unit(1000, "kg"),
  4555. name: "Back",
  4556. image: {
  4557. source: "./media/characters/asche/back.svg",
  4558. extra: 1570 / 1501
  4559. }
  4560. },
  4561. },
  4562. [
  4563. {
  4564. name: "DEFCON 5",
  4565. height: math.unit(5, "meters")
  4566. },
  4567. {
  4568. name: "DEFCON 4",
  4569. height: math.unit(500, "meters"),
  4570. default: true
  4571. },
  4572. {
  4573. name: "DEFCON 3",
  4574. height: math.unit(5, "km")
  4575. },
  4576. {
  4577. name: "DEFCON 2",
  4578. height: math.unit(500, "km")
  4579. },
  4580. {
  4581. name: "DEFCON 1",
  4582. height: math.unit(500000, "km")
  4583. },
  4584. {
  4585. name: "DEFCON 0",
  4586. height: math.unit(3, "gigaparsecs")
  4587. },
  4588. ]
  4589. ))
  4590. characterMakers.push(() => makeCharacter(
  4591. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4592. {
  4593. front: {
  4594. height: math.unit(2, "meters"),
  4595. weight: math.unit(76, "kg"),
  4596. name: "Front",
  4597. image: {
  4598. source: "./media/characters/gale/front.svg"
  4599. }
  4600. },
  4601. frontAlt1: {
  4602. height: math.unit(2, "meters"),
  4603. weight: math.unit(76, "kg"),
  4604. name: "Front (Alt 1)",
  4605. image: {
  4606. source: "./media/characters/gale/front-alt-1.svg"
  4607. }
  4608. },
  4609. frontAlt2: {
  4610. height: math.unit(2, "meters"),
  4611. weight: math.unit(76, "kg"),
  4612. name: "Front (Alt 2)",
  4613. image: {
  4614. source: "./media/characters/gale/front-alt-2.svg"
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(7, "feet")
  4622. },
  4623. {
  4624. name: "Macro",
  4625. height: math.unit(150, "feet"),
  4626. default: true
  4627. },
  4628. {
  4629. name: "Macro+",
  4630. height: math.unit(300, "feet")
  4631. },
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4636. {
  4637. front: {
  4638. height: math.unit(5 + 10/12, "feet"),
  4639. weight: math.unit(67, "kg"),
  4640. name: "Front",
  4641. image: {
  4642. source: "./media/characters/draylen/front.svg",
  4643. extra: 832/777,
  4644. bottom: 85/917
  4645. }
  4646. }
  4647. },
  4648. [
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(5 + 10/12, "feet")
  4652. },
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(150, "feet"),
  4656. default: true
  4657. }
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4662. {
  4663. front: {
  4664. height: math.unit(7 + 9 / 12, "feet"),
  4665. weight: math.unit(379, "lbs"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/chez/front.svg"
  4669. }
  4670. },
  4671. side: {
  4672. height: math.unit(7 + 9 / 12, "feet"),
  4673. weight: math.unit(379, "lbs"),
  4674. name: "Side",
  4675. image: {
  4676. source: "./media/characters/chez/side.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(7 + 9 / 12, "feet"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "God King",
  4688. height: math.unit(9750000, "meters")
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(6, "feet"),
  4697. weight: math.unit(275, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/kaylum/front.svg",
  4701. bottom: 0.01,
  4702. extra: 1166 / 1031
  4703. }
  4704. },
  4705. frontWingless: {
  4706. height: math.unit(6, "feet"),
  4707. weight: math.unit(275, "lbs"),
  4708. name: "Front (Wingless)",
  4709. image: {
  4710. source: "./media/characters/kaylum/front-wingless.svg",
  4711. bottom: 0.01,
  4712. extra: 1117 / 1031
  4713. }
  4714. }
  4715. },
  4716. [
  4717. {
  4718. name: "Normal",
  4719. height: math.unit(3.05, "meters")
  4720. },
  4721. {
  4722. name: "Master",
  4723. height: math.unit(5.5, "meters")
  4724. },
  4725. {
  4726. name: "Rampage",
  4727. height: math.unit(19, "meters")
  4728. },
  4729. {
  4730. name: "Macro Lite",
  4731. height: math.unit(37, "meters")
  4732. },
  4733. {
  4734. name: "Hyper Predator",
  4735. height: math.unit(61, "meters")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(138, "meters"),
  4740. default: true
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(6, "feet"),
  4749. weight: math.unit(150, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/geta/front.svg"
  4753. }
  4754. }
  4755. },
  4756. [
  4757. {
  4758. name: "Micro",
  4759. height: math.unit(3, "inches"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "Normal",
  4764. height: math.unit(5 + 5 / 12, "feet")
  4765. }
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4770. {
  4771. front: {
  4772. height: math.unit(6, "feet"),
  4773. weight: math.unit(300, "lbs"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/tyrnn/front.svg"
  4777. }
  4778. }
  4779. },
  4780. [
  4781. {
  4782. name: "Main Height",
  4783. height: math.unit(355, "feet"),
  4784. default: true
  4785. },
  4786. {
  4787. name: "Fave. Height",
  4788. height: math.unit(2400, "feet")
  4789. }
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(300, "lbs"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/appledectomy/front.svg"
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(2500, "feet")
  4808. },
  4809. {
  4810. name: "Megamacro",
  4811. height: math.unit(50, "miles"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Gigamacro",
  4816. height: math.unit(5000, "miles")
  4817. },
  4818. {
  4819. name: "Teramacro",
  4820. height: math.unit(250000, "miles")
  4821. },
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(200, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/vulpes/front.svg",
  4833. extra: 573 / 543,
  4834. bottom: 0.033
  4835. }
  4836. },
  4837. side: {
  4838. height: math.unit(6, "feet"),
  4839. weight: math.unit(200, "lbs"),
  4840. name: "Side",
  4841. image: {
  4842. source: "./media/characters/vulpes/side.svg",
  4843. extra: 577 / 549,
  4844. bottom: 11 / 588
  4845. }
  4846. },
  4847. back: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(200, "lbs"),
  4850. name: "Back",
  4851. image: {
  4852. source: "./media/characters/vulpes/back.svg",
  4853. extra: 573 / 549,
  4854. bottom: 20 / 593
  4855. }
  4856. },
  4857. feet: {
  4858. height: math.unit(1.276, "feet"),
  4859. name: "Feet",
  4860. image: {
  4861. source: "./media/characters/vulpes/feet.svg"
  4862. }
  4863. },
  4864. maw: {
  4865. height: math.unit(1.18, "feet"),
  4866. name: "Maw",
  4867. image: {
  4868. source: "./media/characters/vulpes/maw.svg"
  4869. }
  4870. },
  4871. },
  4872. [
  4873. {
  4874. name: "Micro",
  4875. height: math.unit(2, "inches")
  4876. },
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(6.3, "feet")
  4880. },
  4881. {
  4882. name: "Macro",
  4883. height: math.unit(850, "feet")
  4884. },
  4885. {
  4886. name: "Megamacro",
  4887. height: math.unit(7500, "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Gigamacro",
  4892. height: math.unit(570000, "miles")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4898. {
  4899. front: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(210, "lbs"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/rain-fallen/front.svg"
  4905. }
  4906. },
  4907. side: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(210, "lbs"),
  4910. name: "Side",
  4911. image: {
  4912. source: "./media/characters/rain-fallen/side.svg"
  4913. }
  4914. },
  4915. back: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(210, "lbs"),
  4918. name: "Back",
  4919. image: {
  4920. source: "./media/characters/rain-fallen/back.svg"
  4921. }
  4922. },
  4923. feral: {
  4924. height: math.unit(9, "feet"),
  4925. weight: math.unit(700, "lbs"),
  4926. name: "Feral",
  4927. image: {
  4928. source: "./media/characters/rain-fallen/feral.svg"
  4929. }
  4930. },
  4931. },
  4932. [
  4933. {
  4934. name: "Meddling with Mortals",
  4935. height: math.unit(8 + 8/12, "feet")
  4936. },
  4937. {
  4938. name: "Normal",
  4939. height: math.unit(5, "meter")
  4940. },
  4941. {
  4942. name: "Macro",
  4943. height: math.unit(150, "meter"),
  4944. default: true
  4945. },
  4946. {
  4947. name: "Megamacro",
  4948. height: math.unit(278e6, "meter")
  4949. },
  4950. {
  4951. name: "Gigamacro",
  4952. height: math.unit(2e9, "meter")
  4953. },
  4954. {
  4955. name: "Teramacro",
  4956. height: math.unit(8e12, "meter")
  4957. },
  4958. {
  4959. name: "Devourer",
  4960. height: math.unit(14, "zettameters")
  4961. },
  4962. {
  4963. name: "Scarlet King",
  4964. height: math.unit(18, "yottameters")
  4965. },
  4966. {
  4967. name: "Void",
  4968. height: math.unit(1e88, "yottameters")
  4969. }
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4974. {
  4975. standing: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(180, "lbs"),
  4978. name: "Standing",
  4979. image: {
  4980. source: "./media/characters/zaakira/standing.svg",
  4981. extra: 1599/1504,
  4982. bottom: 39/1638
  4983. }
  4984. },
  4985. laying: {
  4986. height: math.unit(3, "feet"),
  4987. weight: math.unit(180, "lbs"),
  4988. name: "Laying",
  4989. image: {
  4990. source: "./media/characters/zaakira/laying.svg"
  4991. }
  4992. },
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(12, "feet")
  4998. },
  4999. {
  5000. name: "Macro",
  5001. height: math.unit(279, "feet"),
  5002. default: true
  5003. }
  5004. ]
  5005. ))
  5006. characterMakers.push(() => makeCharacter(
  5007. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5008. {
  5009. femSfw: {
  5010. height: math.unit(8, "feet"),
  5011. weight: math.unit(350, "lb"),
  5012. name: "Fem",
  5013. image: {
  5014. source: "./media/characters/sigvald/fem-sfw.svg",
  5015. extra: 182 / 164,
  5016. bottom: 8.7 / 190.5
  5017. }
  5018. },
  5019. femNsfw: {
  5020. height: math.unit(8, "feet"),
  5021. weight: math.unit(350, "lb"),
  5022. name: "Fem (NSFW)",
  5023. image: {
  5024. source: "./media/characters/sigvald/fem-nsfw.svg",
  5025. extra: 182 / 164,
  5026. bottom: 8.7 / 190.5
  5027. }
  5028. },
  5029. maleNsfw: {
  5030. height: math.unit(8, "feet"),
  5031. weight: math.unit(350, "lb"),
  5032. name: "Male (NSFW)",
  5033. image: {
  5034. source: "./media/characters/sigvald/male-nsfw.svg",
  5035. extra: 182 / 164,
  5036. bottom: 8.7 / 190.5
  5037. }
  5038. },
  5039. hermNsfw: {
  5040. height: math.unit(8, "feet"),
  5041. weight: math.unit(350, "lb"),
  5042. name: "Herm (NSFW)",
  5043. image: {
  5044. source: "./media/characters/sigvald/herm-nsfw.svg",
  5045. extra: 182 / 164,
  5046. bottom: 8.7 / 190.5
  5047. }
  5048. },
  5049. dick: {
  5050. height: math.unit(2.36, "feet"),
  5051. name: "Dick",
  5052. image: {
  5053. source: "./media/characters/sigvald/dick.svg"
  5054. }
  5055. },
  5056. eye: {
  5057. height: math.unit(0.31, "feet"),
  5058. name: "Eye",
  5059. image: {
  5060. source: "./media/characters/sigvald/eye.svg"
  5061. }
  5062. },
  5063. mouth: {
  5064. height: math.unit(0.92, "feet"),
  5065. name: "Mouth",
  5066. image: {
  5067. source: "./media/characters/sigvald/mouth.svg"
  5068. }
  5069. },
  5070. paws: {
  5071. height: math.unit(2.2, "feet"),
  5072. name: "Paws",
  5073. image: {
  5074. source: "./media/characters/sigvald/paws.svg"
  5075. }
  5076. }
  5077. },
  5078. [
  5079. {
  5080. name: "Normal",
  5081. height: math.unit(8, "feet")
  5082. },
  5083. {
  5084. name: "Large",
  5085. height: math.unit(12, "feet")
  5086. },
  5087. {
  5088. name: "Larger",
  5089. height: math.unit(20, "feet")
  5090. },
  5091. {
  5092. name: "Macro",
  5093. height: math.unit(150, "feet")
  5094. },
  5095. {
  5096. name: "Macro+",
  5097. height: math.unit(200, "feet"),
  5098. default: true
  5099. },
  5100. ]
  5101. ))
  5102. characterMakers.push(() => makeCharacter(
  5103. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5104. {
  5105. side: {
  5106. height: math.unit(12, "feet"),
  5107. weight: math.unit(2000, "kg"),
  5108. name: "Side",
  5109. image: {
  5110. source: "./media/characters/scott/side.svg",
  5111. extra: 754 / 724,
  5112. bottom: 0.069
  5113. }
  5114. },
  5115. upright: {
  5116. height: math.unit(12, "feet"),
  5117. weight: math.unit(2000, "kg"),
  5118. name: "Upright",
  5119. image: {
  5120. source: "./media/characters/scott/upright.svg",
  5121. extra: 3881 / 3722,
  5122. bottom: 0.05
  5123. }
  5124. },
  5125. },
  5126. [
  5127. {
  5128. name: "Normal",
  5129. height: math.unit(12, "feet"),
  5130. default: true
  5131. },
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5136. {
  5137. side: {
  5138. height: math.unit(8, "meters"),
  5139. weight: math.unit(84755, "lbs"),
  5140. name: "Side",
  5141. image: {
  5142. source: "./media/characters/tobias/side.svg",
  5143. extra: 1474 / 1096,
  5144. bottom: 38.9 / 1513.1235
  5145. }
  5146. },
  5147. },
  5148. [
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(8, "meters"),
  5152. default: true
  5153. },
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5158. {
  5159. front: {
  5160. height: math.unit(5.5, "feet"),
  5161. weight: math.unit(400, "lbs"),
  5162. name: "Front",
  5163. image: {
  5164. source: "./media/characters/kieran/front.svg",
  5165. extra: 2694 / 2364,
  5166. bottom: 217 / 2908
  5167. }
  5168. },
  5169. side: {
  5170. height: math.unit(5.5, "feet"),
  5171. weight: math.unit(400, "lbs"),
  5172. name: "Side",
  5173. image: {
  5174. source: "./media/characters/kieran/side.svg",
  5175. extra: 875 / 777,
  5176. bottom: 84.6 / 959
  5177. }
  5178. },
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(5.5, "feet"),
  5184. default: true
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5190. {
  5191. side: {
  5192. height: math.unit(2, "meters"),
  5193. weight: math.unit(70, "kg"),
  5194. name: "Side",
  5195. image: {
  5196. source: "./media/characters/sanya/side.svg",
  5197. bottom: 0.02,
  5198. extra: 1.02
  5199. }
  5200. },
  5201. },
  5202. [
  5203. {
  5204. name: "Small",
  5205. height: math.unit(2, "meters")
  5206. },
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(3, "meters")
  5210. },
  5211. {
  5212. name: "Macro",
  5213. height: math.unit(16, "meters"),
  5214. default: true
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5220. {
  5221. front: {
  5222. height: math.unit(2, "meters"),
  5223. weight: math.unit(120, "kg"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/miranda/front.svg",
  5227. extra: 195 / 185,
  5228. bottom: 10.9 / 206.5
  5229. }
  5230. },
  5231. back: {
  5232. height: math.unit(2, "meters"),
  5233. weight: math.unit(120, "kg"),
  5234. name: "Back",
  5235. image: {
  5236. source: "./media/characters/miranda/back.svg",
  5237. extra: 201 / 193,
  5238. bottom: 2.3 / 203.7
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Normal",
  5245. height: math.unit(10, "feet"),
  5246. default: true
  5247. }
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "James", species: ["deer"], tags: ["anthro"] },
  5252. {
  5253. side: {
  5254. height: math.unit(2, "meters"),
  5255. weight: math.unit(100, "kg"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/james/front.svg",
  5259. extra: 10 / 8.5
  5260. }
  5261. },
  5262. },
  5263. [
  5264. {
  5265. name: "Normal",
  5266. height: math.unit(8.5, "feet"),
  5267. default: true
  5268. }
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5273. {
  5274. side: {
  5275. height: math.unit(9.5, "feet"),
  5276. weight: math.unit(2500, "lbs"),
  5277. name: "Side",
  5278. image: {
  5279. source: "./media/characters/heather/side.svg"
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(9.5, "feet"),
  5287. default: true
  5288. }
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5293. {
  5294. side: {
  5295. height: math.unit(6.5, "feet"),
  5296. weight: math.unit(400, "lbs"),
  5297. name: "Side",
  5298. image: {
  5299. source: "./media/characters/lukas/side.svg",
  5300. extra: 7.25 / 6.5
  5301. }
  5302. },
  5303. },
  5304. [
  5305. {
  5306. name: "Normal",
  5307. height: math.unit(6.5, "feet"),
  5308. default: true
  5309. }
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5314. {
  5315. side: {
  5316. height: math.unit(5, "feet"),
  5317. weight: math.unit(3000, "lbs"),
  5318. name: "Side",
  5319. image: {
  5320. source: "./media/characters/louise/side.svg"
  5321. }
  5322. },
  5323. },
  5324. [
  5325. {
  5326. name: "Normal",
  5327. height: math.unit(5, "feet"),
  5328. default: true
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5334. {
  5335. side: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(150, "lbs"),
  5338. name: "Side",
  5339. image: {
  5340. source: "./media/characters/ramona/side.svg",
  5341. extra: 871/854,
  5342. bottom: 41/912
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(5.3, "meters"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Macro",
  5354. height: math.unit(20, "stories")
  5355. },
  5356. {
  5357. name: "Macro+",
  5358. height: math.unit(50, "stories")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5364. {
  5365. standing: {
  5366. height: math.unit(5.75, "feet"),
  5367. weight: math.unit(160, "lbs"),
  5368. name: "Standing",
  5369. image: {
  5370. source: "./media/characters/deerpuff/standing.svg",
  5371. extra: 682 / 624
  5372. }
  5373. },
  5374. sitting: {
  5375. height: math.unit(5.75 / 1.79, "feet"),
  5376. weight: math.unit(160, "lbs"),
  5377. name: "Sitting",
  5378. image: {
  5379. source: "./media/characters/deerpuff/sitting.svg",
  5380. bottom: 44 / 400,
  5381. extra: 1
  5382. }
  5383. },
  5384. taurLaying: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(400, "lbs"),
  5387. name: "Taur (Laying)",
  5388. image: {
  5389. source: "./media/characters/deerpuff/taur-laying.svg"
  5390. }
  5391. },
  5392. },
  5393. [
  5394. {
  5395. name: "Puffball",
  5396. height: math.unit(6, "inches")
  5397. },
  5398. {
  5399. name: "Normalpuff",
  5400. height: math.unit(5.75, "feet")
  5401. },
  5402. {
  5403. name: "Macropuff",
  5404. height: math.unit(1500, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Megapuff",
  5409. height: math.unit(500, "miles")
  5410. },
  5411. {
  5412. name: "Gigapuff",
  5413. height: math.unit(250000, "miles")
  5414. },
  5415. {
  5416. name: "Omegapuff",
  5417. height: math.unit(1000, "lightyears")
  5418. },
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5423. {
  5424. stomping: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(170, "lbs"),
  5427. name: "Stomping",
  5428. image: {
  5429. source: "./media/characters/vivian/stomping.svg"
  5430. }
  5431. },
  5432. sitting: {
  5433. height: math.unit(6 / 1.75, "feet"),
  5434. weight: math.unit(170, "lbs"),
  5435. name: "Sitting",
  5436. image: {
  5437. source: "./media/characters/vivian/sitting.svg",
  5438. bottom: 1 / 6.4,
  5439. extra: 1,
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(7, "feet"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(10, "stories")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(30, "stories")
  5456. },
  5457. {
  5458. name: "Megamacro",
  5459. height: math.unit(10, "miles")
  5460. },
  5461. {
  5462. name: "Megamacro+",
  5463. height: math.unit(2750000, "meters")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5469. {
  5470. front: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(160, "lbs"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/prince/front.svg",
  5476. extra: 3400 / 3000
  5477. }
  5478. },
  5479. jumping: {
  5480. height: math.unit(6, "feet"),
  5481. weight: math.unit(160, "lbs"),
  5482. name: "Jumping",
  5483. image: {
  5484. source: "./media/characters/prince/jump.svg",
  5485. extra: 2555 / 2134
  5486. }
  5487. },
  5488. },
  5489. [
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(7.75, "feet"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Not cute",
  5497. height: math.unit(17, "feet")
  5498. },
  5499. {
  5500. name: "I said NOT",
  5501. height: math.unit(91, "feet")
  5502. },
  5503. {
  5504. name: "Please stop",
  5505. height: math.unit(560, "feet")
  5506. },
  5507. {
  5508. name: "What have you done",
  5509. height: math.unit(2200, "feet")
  5510. },
  5511. {
  5512. name: "Deer God",
  5513. height: math.unit(3.6, "miles")
  5514. },
  5515. ]
  5516. ))
  5517. characterMakers.push(() => makeCharacter(
  5518. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5519. {
  5520. standing: {
  5521. height: math.unit(6, "feet"),
  5522. weight: math.unit(300, "lbs"),
  5523. name: "Standing",
  5524. image: {
  5525. source: "./media/characters/psymon/standing.svg",
  5526. extra: 1888 / 1810,
  5527. bottom: 0.05
  5528. }
  5529. },
  5530. slithering: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(300, "lbs"),
  5533. name: "Slithering",
  5534. image: {
  5535. source: "./media/characters/psymon/slithering.svg",
  5536. extra: 1330 / 1224
  5537. }
  5538. },
  5539. slitheringAlt: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(300, "lbs"),
  5542. name: "Slithering (Alt)",
  5543. image: {
  5544. source: "./media/characters/psymon/slithering-alt.svg",
  5545. extra: 1330 / 1224
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(11.25, "feet"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Large",
  5557. height: math.unit(27, "feet")
  5558. },
  5559. {
  5560. name: "Giant",
  5561. height: math.unit(87, "feet")
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(365, "feet")
  5566. },
  5567. {
  5568. name: "Megamacro",
  5569. height: math.unit(3, "miles")
  5570. },
  5571. {
  5572. name: "World Serpent",
  5573. height: math.unit(8000, "miles")
  5574. },
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(180, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/daimos/front.svg",
  5586. extra: 4160 / 3897,
  5587. bottom: 0.021
  5588. }
  5589. }
  5590. },
  5591. [
  5592. {
  5593. name: "Normal",
  5594. height: math.unit(8, "feet"),
  5595. default: true
  5596. },
  5597. {
  5598. name: "Big Dog",
  5599. height: math.unit(22, "feet")
  5600. },
  5601. {
  5602. name: "Macro",
  5603. height: math.unit(127, "feet")
  5604. },
  5605. {
  5606. name: "Megamacro",
  5607. height: math.unit(3600, "feet")
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5613. {
  5614. side: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Side",
  5618. image: {
  5619. source: "./media/characters/blake/side.svg",
  5620. extra: 1212 / 1120,
  5621. bottom: 0.05
  5622. }
  5623. },
  5624. crouched: {
  5625. height: math.unit(6 * 0.57, "feet"),
  5626. weight: math.unit(180, "lbs"),
  5627. name: "Crouched",
  5628. image: {
  5629. source: "./media/characters/blake/crouched.svg",
  5630. extra: 840 / 587,
  5631. bottom: 0.04
  5632. }
  5633. },
  5634. bent: {
  5635. height: math.unit(6 * 0.75, "feet"),
  5636. weight: math.unit(180, "lbs"),
  5637. name: "Bent",
  5638. image: {
  5639. source: "./media/characters/blake/bent.svg",
  5640. extra: 592 / 544,
  5641. bottom: 0.035
  5642. }
  5643. },
  5644. },
  5645. [
  5646. {
  5647. name: "Normal",
  5648. height: math.unit(8 + 1 / 6, "feet"),
  5649. default: true
  5650. },
  5651. {
  5652. name: "Big Backside",
  5653. height: math.unit(37, "feet")
  5654. },
  5655. {
  5656. name: "Subway Shredder",
  5657. height: math.unit(72, "feet")
  5658. },
  5659. {
  5660. name: "City Carver",
  5661. height: math.unit(1675, "feet")
  5662. },
  5663. {
  5664. name: "Tectonic Tweaker",
  5665. height: math.unit(2300, "miles")
  5666. },
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(180, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/guisetto/front.svg",
  5678. extra: 856 / 817,
  5679. bottom: 0.06
  5680. }
  5681. },
  5682. airborne: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(180, "lbs"),
  5685. name: "Airborne",
  5686. image: {
  5687. source: "./media/characters/guisetto/airborne.svg",
  5688. extra: 584 / 525
  5689. }
  5690. },
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(10 + 11 / 12, "feet"),
  5696. default: true
  5697. },
  5698. {
  5699. name: "Large",
  5700. height: math.unit(35, "feet")
  5701. },
  5702. {
  5703. name: "Macro",
  5704. height: math.unit(475, "feet")
  5705. },
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5710. {
  5711. front: {
  5712. height: math.unit(6, "feet"),
  5713. weight: math.unit(180, "lbs"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/luxor/front.svg",
  5717. extra: 2940 / 2152
  5718. }
  5719. },
  5720. back: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(180, "lbs"),
  5723. name: "Back",
  5724. image: {
  5725. source: "./media/characters/luxor/back.svg",
  5726. extra: 1083 / 960
  5727. }
  5728. },
  5729. },
  5730. [
  5731. {
  5732. name: "Normal",
  5733. height: math.unit(5 + 5 / 6, "feet"),
  5734. default: true
  5735. },
  5736. {
  5737. name: "Lamp",
  5738. height: math.unit(50, "feet")
  5739. },
  5740. {
  5741. name: "Lämp",
  5742. height: math.unit(300, "feet")
  5743. },
  5744. {
  5745. name: "The sun is a lamp",
  5746. height: math.unit(250000, "miles")
  5747. },
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5752. {
  5753. front: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(50, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/huoyan/front.svg"
  5759. }
  5760. },
  5761. side: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(180, "lbs"),
  5764. name: "Side",
  5765. image: {
  5766. source: "./media/characters/huoyan/side.svg"
  5767. }
  5768. },
  5769. },
  5770. [
  5771. {
  5772. name: "Chef",
  5773. height: math.unit(9, "feet")
  5774. },
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(65, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Macro",
  5782. height: math.unit(780, "feet")
  5783. },
  5784. {
  5785. name: "Flaming Mountain",
  5786. height: math.unit(4.8, "miles")
  5787. },
  5788. {
  5789. name: "Celestial",
  5790. height: math.unit(765000, "miles")
  5791. },
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(5 + 3 / 4, "feet"),
  5799. weight: math.unit(120, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/tails/front.svg"
  5803. }
  5804. }
  5805. },
  5806. [
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(5 + 3 / 4, "feet"),
  5810. default: true
  5811. }
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(4, "feet"),
  5819. weight: math.unit(50, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/rainy/front.svg"
  5823. }
  5824. }
  5825. },
  5826. [
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(800, "feet"),
  5830. default: true
  5831. }
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(150, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/rainier/front.svg"
  5843. }
  5844. }
  5845. },
  5846. [
  5847. {
  5848. name: "Micro",
  5849. height: math.unit(2, "mm"),
  5850. default: true
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(8 + 4/12, "feet"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/andy-renard/front.svg",
  5862. extra: 1839/1726,
  5863. bottom: 134/1973
  5864. }
  5865. },
  5866. back: {
  5867. height: math.unit(8 + 4/12, "feet"),
  5868. name: "Back",
  5869. image: {
  5870. source: "./media/characters/andy-renard/back.svg",
  5871. extra: 1838/1710,
  5872. bottom: 105/1943
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Tall",
  5879. height: math.unit(8 + 4/12, "feet")
  5880. },
  5881. {
  5882. name: "Mini Macro",
  5883. height: math.unit(15, "feet"),
  5884. default: true
  5885. },
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(100, "feet")
  5889. },
  5890. {
  5891. name: "Mega Macro",
  5892. height: math.unit(1000, "feet")
  5893. },
  5894. {
  5895. name: "Giga Macro",
  5896. height: math.unit(10, "miles")
  5897. },
  5898. {
  5899. name: "God Macro",
  5900. height: math.unit(1, "multiverse")
  5901. },
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5906. {
  5907. front: {
  5908. height: math.unit(6, "feet"),
  5909. weight: math.unit(210, "lbs"),
  5910. name: "Front",
  5911. image: {
  5912. source: "./media/characters/cimmaron/front-sfw.svg",
  5913. extra: 701 / 676,
  5914. bottom: 0.046
  5915. }
  5916. },
  5917. back: {
  5918. height: math.unit(6, "feet"),
  5919. weight: math.unit(210, "lbs"),
  5920. name: "Back",
  5921. image: {
  5922. source: "./media/characters/cimmaron/back-sfw.svg",
  5923. extra: 701 / 676,
  5924. bottom: 0.046
  5925. }
  5926. },
  5927. frontNsfw: {
  5928. height: math.unit(6, "feet"),
  5929. weight: math.unit(210, "lbs"),
  5930. name: "Front (NSFW)",
  5931. image: {
  5932. source: "./media/characters/cimmaron/front-nsfw.svg",
  5933. extra: 701 / 676,
  5934. bottom: 0.046
  5935. }
  5936. },
  5937. backNsfw: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(210, "lbs"),
  5940. name: "Back (NSFW)",
  5941. image: {
  5942. source: "./media/characters/cimmaron/back-nsfw.svg",
  5943. extra: 701 / 676,
  5944. bottom: 0.046
  5945. }
  5946. },
  5947. dick: {
  5948. height: math.unit(1.714, "feet"),
  5949. name: "Dick",
  5950. image: {
  5951. source: "./media/characters/cimmaron/dick.svg"
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(6, "feet"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Macro Mayor",
  5963. height: math.unit(350, "meters")
  5964. },
  5965. ]
  5966. ))
  5967. characterMakers.push(() => makeCharacter(
  5968. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5969. {
  5970. front: {
  5971. height: math.unit(6, "feet"),
  5972. weight: math.unit(200, "lbs"),
  5973. name: "Front",
  5974. image: {
  5975. source: "./media/characters/akari/front.svg",
  5976. extra: 962 / 901,
  5977. bottom: 0.04
  5978. }
  5979. }
  5980. },
  5981. [
  5982. {
  5983. name: "Micro",
  5984. height: math.unit(5, "inches"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Normal",
  5989. height: math.unit(7, "feet")
  5990. },
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5995. {
  5996. front: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(140, "lbs"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/cynosura/front.svg",
  6002. extra: 896 / 847
  6003. }
  6004. },
  6005. back: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(140, "lbs"),
  6008. name: "Back",
  6009. image: {
  6010. source: "./media/characters/cynosura/back.svg",
  6011. extra: 1365 / 1250
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Micro",
  6018. height: math.unit(4, "inches")
  6019. },
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(5.75, "feet"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "Tall",
  6027. height: math.unit(10, "feet")
  6028. },
  6029. {
  6030. name: "Big",
  6031. height: math.unit(20, "feet")
  6032. },
  6033. {
  6034. name: "Macro",
  6035. height: math.unit(50, "feet")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(13 + 2/12, "feet"),
  6044. weight: math.unit(800, "kg"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/gin/front.svg",
  6048. extra: 1312/1191,
  6049. bottom: 45/1357
  6050. }
  6051. },
  6052. mouth: {
  6053. height: math.unit(2.39 * 1.8, "feet"),
  6054. name: "Mouth",
  6055. image: {
  6056. source: "./media/characters/gin/mouth.svg"
  6057. }
  6058. },
  6059. hand: {
  6060. height: math.unit(1.57 * 2.19, "feet"),
  6061. name: "Hand",
  6062. image: {
  6063. source: "./media/characters/gin/hand.svg"
  6064. }
  6065. },
  6066. foot: {
  6067. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6068. name: "Foot",
  6069. image: {
  6070. source: "./media/characters/gin/foot.svg"
  6071. }
  6072. },
  6073. sole: {
  6074. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6075. name: "Sole",
  6076. image: {
  6077. source: "./media/characters/gin/sole.svg"
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Very Small",
  6084. height: math.unit(13 + 2 / 12, "feet")
  6085. },
  6086. {
  6087. name: "Micro",
  6088. height: math.unit(600, "miles")
  6089. },
  6090. {
  6091. name: "Regular",
  6092. height: math.unit(20, "earths"),
  6093. default: true
  6094. },
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(2.2, "solarradii")
  6098. },
  6099. {
  6100. name: "Teramacro",
  6101. height: math.unit(1.2, "galaxies")
  6102. },
  6103. {
  6104. name: "Omegamacro",
  6105. height: math.unit(200, "universes")
  6106. },
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6111. {
  6112. front: {
  6113. height: math.unit(6 + 1 / 6, "feet"),
  6114. weight: math.unit(178, "lbs"),
  6115. name: "Front",
  6116. image: {
  6117. source: "./media/characters/guy/front.svg"
  6118. }
  6119. }
  6120. },
  6121. [
  6122. {
  6123. name: "Normal",
  6124. height: math.unit(6 + 1 / 6, "feet"),
  6125. default: true
  6126. },
  6127. {
  6128. name: "Large",
  6129. height: math.unit(25 + 7 / 12, "feet")
  6130. },
  6131. {
  6132. name: "Macro",
  6133. height: math.unit(60 + 9 / 12, "feet")
  6134. },
  6135. {
  6136. name: "Macro+",
  6137. height: math.unit(246, "feet")
  6138. },
  6139. {
  6140. name: "Macro++",
  6141. height: math.unit(878, "feet")
  6142. }
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6147. {
  6148. front: {
  6149. height: math.unit(9, "feet"),
  6150. weight: math.unit(800, "lbs"),
  6151. name: "Front",
  6152. image: {
  6153. source: "./media/characters/tiberius/front.svg",
  6154. extra: 2295 / 2071
  6155. }
  6156. },
  6157. back: {
  6158. height: math.unit(9, "feet"),
  6159. weight: math.unit(800, "lbs"),
  6160. name: "Back",
  6161. image: {
  6162. source: "./media/characters/tiberius/back.svg",
  6163. extra: 2373 / 2160
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(9, "feet"),
  6171. default: true
  6172. }
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6177. {
  6178. front: {
  6179. height: math.unit(6, "feet"),
  6180. weight: math.unit(600, "lbs"),
  6181. name: "Front",
  6182. image: {
  6183. source: "./media/characters/surgo/front.svg",
  6184. extra: 3591 / 2227
  6185. }
  6186. },
  6187. back: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(600, "lbs"),
  6190. name: "Back",
  6191. image: {
  6192. source: "./media/characters/surgo/back.svg",
  6193. extra: 3557 / 2228
  6194. }
  6195. },
  6196. laying: {
  6197. height: math.unit(6 * 0.85, "feet"),
  6198. weight: math.unit(600, "lbs"),
  6199. name: "Laying",
  6200. image: {
  6201. source: "./media/characters/surgo/laying.svg"
  6202. }
  6203. },
  6204. },
  6205. [
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(6, "feet"),
  6209. default: true
  6210. }
  6211. ]
  6212. ))
  6213. characterMakers.push(() => makeCharacter(
  6214. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6215. {
  6216. side: {
  6217. height: math.unit(6, "feet"),
  6218. weight: math.unit(150, "lbs"),
  6219. name: "Side",
  6220. image: {
  6221. source: "./media/characters/cibus/side.svg",
  6222. extra: 800 / 400
  6223. }
  6224. },
  6225. },
  6226. [
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(6, "feet"),
  6230. default: true
  6231. }
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6236. {
  6237. front: {
  6238. height: math.unit(6, "feet"),
  6239. weight: math.unit(240, "lbs"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/nibbles/front.svg"
  6243. }
  6244. },
  6245. side: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(240, "lbs"),
  6248. name: "Side",
  6249. image: {
  6250. source: "./media/characters/nibbles/side.svg"
  6251. }
  6252. },
  6253. },
  6254. [
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(9, "feet"),
  6258. default: true
  6259. }
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6264. {
  6265. side: {
  6266. height: math.unit(5 + 1 / 6, "feet"),
  6267. weight: math.unit(130, "lbs"),
  6268. name: "Side",
  6269. image: {
  6270. source: "./media/characters/rikky/side.svg",
  6271. extra: 851 / 801
  6272. }
  6273. },
  6274. },
  6275. [
  6276. {
  6277. name: "Normal",
  6278. height: math.unit(5 + 1 / 6, "feet")
  6279. },
  6280. {
  6281. name: "Macro",
  6282. height: math.unit(152, "feet"),
  6283. default: true
  6284. },
  6285. {
  6286. name: "Megamacro",
  6287. height: math.unit(7, "miles")
  6288. }
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6293. {
  6294. side: {
  6295. height: math.unit(370, "cm"),
  6296. weight: math.unit(350, "lbs"),
  6297. name: "Side",
  6298. image: {
  6299. source: "./media/characters/malfressa/side.svg"
  6300. }
  6301. },
  6302. walking: {
  6303. height: math.unit(370, "cm"),
  6304. weight: math.unit(350, "lbs"),
  6305. name: "Walking",
  6306. image: {
  6307. source: "./media/characters/malfressa/walking.svg"
  6308. }
  6309. },
  6310. feral: {
  6311. height: math.unit(2500, "cm"),
  6312. weight: math.unit(100000, "lbs"),
  6313. name: "Feral",
  6314. image: {
  6315. source: "./media/characters/malfressa/feral.svg",
  6316. extra: 2108 / 837,
  6317. bottom: 0.02
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(370, "cm")
  6325. },
  6326. {
  6327. name: "Macro",
  6328. height: math.unit(300, "meters"),
  6329. default: true
  6330. }
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(6, "feet"),
  6338. weight: math.unit(60, "kg"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/jaro/front.svg",
  6342. extra: 845/817,
  6343. bottom: 45/890
  6344. }
  6345. },
  6346. back: {
  6347. height: math.unit(6, "feet"),
  6348. weight: math.unit(60, "kg"),
  6349. name: "Back",
  6350. image: {
  6351. source: "./media/characters/jaro/back.svg",
  6352. extra: 847/817,
  6353. bottom: 34/881
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Micro",
  6360. height: math.unit(7, "inches")
  6361. },
  6362. {
  6363. name: "Normal",
  6364. height: math.unit(5.5, "feet"),
  6365. default: true
  6366. },
  6367. {
  6368. name: "Minimacro",
  6369. height: math.unit(20, "feet")
  6370. },
  6371. {
  6372. name: "Macro",
  6373. height: math.unit(200, "meters")
  6374. }
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6379. {
  6380. front: {
  6381. height: math.unit(6, "feet"),
  6382. weight: math.unit(195, "lb"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/rogue/front.svg"
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Macro",
  6392. height: math.unit(90, "feet"),
  6393. default: true
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(5 + 8 / 12, "feet"),
  6402. weight: math.unit(140, "lb"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/piper/front.svg",
  6406. extra: 3948/3655,
  6407. bottom: 0/3948
  6408. }
  6409. },
  6410. },
  6411. [
  6412. {
  6413. name: "Micro",
  6414. height: math.unit(2, "inches")
  6415. },
  6416. {
  6417. name: "Normal",
  6418. height: math.unit(5 + 8 / 12, "feet")
  6419. },
  6420. {
  6421. name: "Macro",
  6422. height: math.unit(250, "feet"),
  6423. default: true
  6424. },
  6425. {
  6426. name: "Megamacro",
  6427. height: math.unit(7, "miles")
  6428. },
  6429. ]
  6430. ))
  6431. characterMakers.push(() => makeCharacter(
  6432. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6433. {
  6434. front: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(220, "lb"),
  6437. name: "Front",
  6438. image: {
  6439. source: "./media/characters/gemini/front.svg"
  6440. }
  6441. },
  6442. back: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(220, "lb"),
  6445. name: "Back",
  6446. image: {
  6447. source: "./media/characters/gemini/back.svg"
  6448. }
  6449. },
  6450. kneeling: {
  6451. height: math.unit(6 / 1.5, "feet"),
  6452. weight: math.unit(220, "lb"),
  6453. name: "Kneeling",
  6454. image: {
  6455. source: "./media/characters/gemini/kneeling.svg",
  6456. bottom: 0.02
  6457. }
  6458. },
  6459. },
  6460. [
  6461. {
  6462. name: "Macro",
  6463. height: math.unit(300, "meters"),
  6464. default: true
  6465. },
  6466. {
  6467. name: "Megamacro",
  6468. height: math.unit(6900, "meters")
  6469. },
  6470. ]
  6471. ))
  6472. characterMakers.push(() => makeCharacter(
  6473. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6474. {
  6475. anthro: {
  6476. height: math.unit(2.35, "meters"),
  6477. weight: math.unit(73, "kg"),
  6478. name: "Anthro",
  6479. image: {
  6480. source: "./media/characters/alicia/anthro.svg",
  6481. extra: 2571 / 2385,
  6482. bottom: 75 / 2648
  6483. }
  6484. },
  6485. paw: {
  6486. height: math.unit(1.32, "feet"),
  6487. name: "Paw",
  6488. image: {
  6489. source: "./media/characters/alicia/paw.svg"
  6490. }
  6491. },
  6492. feral: {
  6493. height: math.unit(1.69, "meters"),
  6494. weight: math.unit(73, "kg"),
  6495. name: "Feral",
  6496. image: {
  6497. source: "./media/characters/alicia/feral.svg",
  6498. extra: 2123 / 1715,
  6499. bottom: 222 / 2349
  6500. }
  6501. },
  6502. },
  6503. [
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(2.35, "meters")
  6507. },
  6508. {
  6509. name: "Macro",
  6510. height: math.unit(60, "meters"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Megamacro",
  6515. height: math.unit(10000, "kilometers")
  6516. },
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(7, "feet"),
  6524. weight: math.unit(250, "lbs"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/archy/front.svg"
  6528. }
  6529. }
  6530. },
  6531. [
  6532. {
  6533. name: "Micro",
  6534. height: math.unit(1, "inch")
  6535. },
  6536. {
  6537. name: "Shorty",
  6538. height: math.unit(5, "feet")
  6539. },
  6540. {
  6541. name: "Normal",
  6542. height: math.unit(7, "feet")
  6543. },
  6544. {
  6545. name: "Macro",
  6546. height: math.unit(600, "meters"),
  6547. default: true
  6548. },
  6549. {
  6550. name: "Megamacro",
  6551. height: math.unit(1, "mile")
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6557. {
  6558. front: {
  6559. height: math.unit(1.65, "meters"),
  6560. weight: math.unit(74, "kg"),
  6561. name: "Front",
  6562. image: {
  6563. source: "./media/characters/berri/front.svg",
  6564. extra: 857 / 837,
  6565. bottom: 18 / 877
  6566. }
  6567. },
  6568. bum: {
  6569. height: math.unit(1.46, "feet"),
  6570. name: "Bum",
  6571. image: {
  6572. source: "./media/characters/berri/bum.svg"
  6573. }
  6574. },
  6575. mouth: {
  6576. height: math.unit(0.44, "feet"),
  6577. name: "Mouth",
  6578. image: {
  6579. source: "./media/characters/berri/mouth.svg"
  6580. }
  6581. },
  6582. paw: {
  6583. height: math.unit(0.826, "feet"),
  6584. name: "Paw",
  6585. image: {
  6586. source: "./media/characters/berri/paw.svg"
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Normal",
  6593. height: math.unit(1.65, "meters")
  6594. },
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(60, "m"),
  6598. default: true
  6599. },
  6600. {
  6601. name: "Megamacro",
  6602. height: math.unit(9.213, "km")
  6603. },
  6604. {
  6605. name: "Planet Eater",
  6606. height: math.unit(489, "megameters")
  6607. },
  6608. {
  6609. name: "Teramacro",
  6610. height: math.unit(2471635000000, "meters")
  6611. },
  6612. {
  6613. name: "Examacro",
  6614. height: math.unit(8.0624e+26, "meters")
  6615. }
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6620. {
  6621. front: {
  6622. height: math.unit(1.72, "meters"),
  6623. weight: math.unit(68, "kg"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/lexi/front.svg"
  6627. }
  6628. }
  6629. },
  6630. [
  6631. {
  6632. name: "Very Smol",
  6633. height: math.unit(10, "mm")
  6634. },
  6635. {
  6636. name: "Micro",
  6637. height: math.unit(6.8, "cm"),
  6638. default: true
  6639. },
  6640. {
  6641. name: "Normal",
  6642. height: math.unit(1.72, "m")
  6643. }
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(1.69, "meters"),
  6651. weight: math.unit(68, "kg"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/martin/front.svg",
  6655. extra: 596 / 581
  6656. }
  6657. }
  6658. },
  6659. [
  6660. {
  6661. name: "Micro",
  6662. height: math.unit(6.85, "cm"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Normal",
  6667. height: math.unit(1.69, "m")
  6668. }
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(1.69, "meters"),
  6676. weight: math.unit(68, "kg"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/juno/front.svg"
  6680. }
  6681. }
  6682. },
  6683. [
  6684. {
  6685. name: "Micro",
  6686. height: math.unit(7, "cm")
  6687. },
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(1.89, "m")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(353, "meters"),
  6695. default: true
  6696. }
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(1.93, "meters"),
  6704. weight: math.unit(83, "kg"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/samantha/front.svg"
  6708. }
  6709. },
  6710. frontClothed: {
  6711. height: math.unit(1.93, "meters"),
  6712. weight: math.unit(83, "kg"),
  6713. name: "Front (Clothed)",
  6714. image: {
  6715. source: "./media/characters/samantha/front-clothed.svg"
  6716. }
  6717. },
  6718. back: {
  6719. height: math.unit(1.93, "meters"),
  6720. weight: math.unit(83, "kg"),
  6721. name: "Back",
  6722. image: {
  6723. source: "./media/characters/samantha/back.svg"
  6724. }
  6725. },
  6726. },
  6727. [
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(1.93, "m")
  6731. },
  6732. {
  6733. name: "Macro",
  6734. height: math.unit(74, "meters"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Macro+",
  6739. height: math.unit(223, "meters"),
  6740. },
  6741. {
  6742. name: "Megamacro",
  6743. height: math.unit(8381, "meters"),
  6744. },
  6745. {
  6746. name: "Megamacro+",
  6747. height: math.unit(12000, "kilometers")
  6748. },
  6749. ]
  6750. ))
  6751. characterMakers.push(() => makeCharacter(
  6752. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6753. {
  6754. front: {
  6755. height: math.unit(1.92, "meters"),
  6756. weight: math.unit(80, "kg"),
  6757. name: "Front",
  6758. image: {
  6759. source: "./media/characters/dr-clay/front.svg"
  6760. }
  6761. },
  6762. frontClothed: {
  6763. height: math.unit(1.92, "meters"),
  6764. weight: math.unit(80, "kg"),
  6765. name: "Front (Clothed)",
  6766. image: {
  6767. source: "./media/characters/dr-clay/front-clothed.svg"
  6768. }
  6769. }
  6770. },
  6771. [
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(1.92, "m")
  6775. },
  6776. {
  6777. name: "Macro",
  6778. height: math.unit(214, "meters"),
  6779. default: true
  6780. },
  6781. {
  6782. name: "Macro+",
  6783. height: math.unit(12.237, "meters"),
  6784. },
  6785. {
  6786. name: "Megamacro",
  6787. height: math.unit(557, "megameters"),
  6788. },
  6789. {
  6790. name: "Unimaginable",
  6791. height: math.unit(120e9, "lightyears")
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6797. {
  6798. front: {
  6799. height: math.unit(2, "meters"),
  6800. weight: math.unit(80, "kg"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6804. }
  6805. }
  6806. },
  6807. [
  6808. {
  6809. name: "Teramacro",
  6810. height: math.unit(500000, "lightyears"),
  6811. default: true
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6817. {
  6818. crux: {
  6819. height: math.unit(2, "meters"),
  6820. weight: math.unit(150, "kg"),
  6821. name: "Crux",
  6822. image: {
  6823. source: "./media/characters/vemus/crux.svg",
  6824. extra: 1074/936,
  6825. bottom: 23/1097
  6826. }
  6827. },
  6828. skunkTanuki: {
  6829. height: math.unit(2, "meters"),
  6830. weight: math.unit(150, "kg"),
  6831. name: "Skunk-Tanuki",
  6832. image: {
  6833. source: "./media/characters/vemus/skunk-tanuki.svg",
  6834. extra: 926/893,
  6835. bottom: 20/946
  6836. }
  6837. },
  6838. },
  6839. [
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(3.75, "meters"),
  6843. default: true
  6844. },
  6845. {
  6846. name: "Big",
  6847. height: math.unit(8, "meters")
  6848. },
  6849. {
  6850. name: "Macro",
  6851. height: math.unit(100, "meters")
  6852. },
  6853. {
  6854. name: "Macro+",
  6855. height: math.unit(1500, "meters")
  6856. },
  6857. {
  6858. name: "Stellar",
  6859. height: math.unit(14e8, "meters")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6865. {
  6866. front: {
  6867. height: math.unit(2, "meters"),
  6868. weight: math.unit(70, "kg"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/beherit/front.svg",
  6872. extra: 1234/1109,
  6873. bottom: 55/1289
  6874. }
  6875. }
  6876. },
  6877. [
  6878. {
  6879. name: "Normal",
  6880. height: math.unit(6, "feet")
  6881. },
  6882. {
  6883. name: "Lorg",
  6884. height: math.unit(25, "feet"),
  6885. default: true
  6886. },
  6887. {
  6888. name: "Lorger",
  6889. height: math.unit(75, "feet")
  6890. },
  6891. {
  6892. name: "Macro",
  6893. height: math.unit(200, "meters")
  6894. },
  6895. ]
  6896. ))
  6897. characterMakers.push(() => makeCharacter(
  6898. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6899. {
  6900. front: {
  6901. height: math.unit(2, "meters"),
  6902. weight: math.unit(150, "kg"),
  6903. name: "Front",
  6904. image: {
  6905. source: "./media/characters/everett/front.svg",
  6906. extra: 1017/866,
  6907. bottom: 86/1103
  6908. }
  6909. },
  6910. paw: {
  6911. height: math.unit(2 / 3.6, "meters"),
  6912. name: "Paw",
  6913. image: {
  6914. source: "./media/characters/everett/paw.svg"
  6915. }
  6916. },
  6917. },
  6918. [
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(15, "feet"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Lorg",
  6926. height: math.unit(70, "feet"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Lorger",
  6931. height: math.unit(250, "feet")
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(500, "meters")
  6936. },
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(2, "meters"),
  6944. weight: math.unit(86, "kg"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/rose/front.svg",
  6948. extra: 1785/1636,
  6949. bottom: 30/1815
  6950. }
  6951. },
  6952. frontSporty: {
  6953. height: math.unit(2, "meters"),
  6954. weight: math.unit(86, "kg"),
  6955. name: "Front (Sporty)",
  6956. image: {
  6957. source: "./media/characters/rose/front-sporty.svg",
  6958. extra: 350/335,
  6959. bottom: 10/360
  6960. }
  6961. },
  6962. frontAlt: {
  6963. height: math.unit(1.6, "meters"),
  6964. weight: math.unit(86, "kg"),
  6965. name: "Front (Alt)",
  6966. image: {
  6967. source: "./media/characters/rose/front-alt.svg",
  6968. extra: 299/283,
  6969. bottom: 3/302
  6970. }
  6971. },
  6972. plush: {
  6973. height: math.unit(2, "meters"),
  6974. weight: math.unit(86/3, "kg"),
  6975. name: "Plush",
  6976. image: {
  6977. source: "./media/characters/rose/plush.svg",
  6978. extra: 361/337,
  6979. bottom: 11/372
  6980. }
  6981. },
  6982. },
  6983. [
  6984. {
  6985. name: "True Micro",
  6986. height: math.unit(9, "cm")
  6987. },
  6988. {
  6989. name: "Micro",
  6990. height: math.unit(16, "cm")
  6991. },
  6992. {
  6993. name: "Normal",
  6994. height: math.unit(1.85, "meters"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Mini-Macro",
  6999. height: math.unit(5, "meters")
  7000. },
  7001. {
  7002. name: "Macro",
  7003. height: math.unit(15, "meters")
  7004. },
  7005. {
  7006. name: "True Macro",
  7007. height: math.unit(40, "meters")
  7008. },
  7009. {
  7010. name: "City Scale",
  7011. height: math.unit(1, "km")
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(2, "meters"),
  7020. weight: math.unit(350, "lbs"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/regal/front.svg"
  7024. }
  7025. },
  7026. back: {
  7027. height: math.unit(2, "meters"),
  7028. weight: math.unit(350, "lbs"),
  7029. name: "Back",
  7030. image: {
  7031. source: "./media/characters/regal/back.svg"
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Macro",
  7038. height: math.unit(350, "feet"),
  7039. default: true
  7040. }
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(4 + 11 / 12, "feet"),
  7048. weight: math.unit(100, "lbs"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/opal/front.svg"
  7052. }
  7053. },
  7054. frontAlt: {
  7055. height: math.unit(4 + 11 / 12, "feet"),
  7056. weight: math.unit(100, "lbs"),
  7057. name: "Front (Alt)",
  7058. image: {
  7059. source: "./media/characters/opal/front-alt.svg"
  7060. }
  7061. },
  7062. },
  7063. [
  7064. {
  7065. name: "Small",
  7066. height: math.unit(4 + 11 / 12, "feet")
  7067. },
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(20, "feet"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Macro",
  7075. height: math.unit(120, "feet")
  7076. },
  7077. {
  7078. name: "Megamacro",
  7079. height: math.unit(80, "miles")
  7080. },
  7081. {
  7082. name: "True Size",
  7083. height: math.unit(100000, "lightyears")
  7084. },
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(200, "lbs"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/vector-wuff/front.svg"
  7096. }
  7097. }
  7098. },
  7099. [
  7100. {
  7101. name: "Normal",
  7102. height: math.unit(2.8, "meters")
  7103. },
  7104. {
  7105. name: "Macro",
  7106. height: math.unit(450, "meters"),
  7107. default: true
  7108. },
  7109. {
  7110. name: "Megamacro",
  7111. height: math.unit(15, "kilometers")
  7112. }
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(256, "lbs"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/dannik/front.svg"
  7124. }
  7125. }
  7126. },
  7127. [
  7128. {
  7129. name: "Macro",
  7130. height: math.unit(69.57, "meters"),
  7131. default: true
  7132. },
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7137. {
  7138. front: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(120, "lbs"),
  7141. name: "Front",
  7142. image: {
  7143. source: "./media/characters/azura-saharah/front.svg"
  7144. }
  7145. },
  7146. back: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(120, "lbs"),
  7149. name: "Back",
  7150. image: {
  7151. source: "./media/characters/azura-saharah/back.svg"
  7152. }
  7153. },
  7154. },
  7155. [
  7156. {
  7157. name: "Macro",
  7158. height: math.unit(100, "feet"),
  7159. default: true
  7160. },
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7165. {
  7166. side: {
  7167. height: math.unit(5 + 4 / 12, "feet"),
  7168. weight: math.unit(163, "lbs"),
  7169. name: "Side",
  7170. image: {
  7171. source: "./media/characters/kennedy/side.svg"
  7172. }
  7173. }
  7174. },
  7175. [
  7176. {
  7177. name: "Standard Doggo",
  7178. height: math.unit(5 + 4 / 12, "feet")
  7179. },
  7180. {
  7181. name: "Big Doggo",
  7182. height: math.unit(25 + 3 / 12, "feet"),
  7183. default: true
  7184. },
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7189. {
  7190. front: {
  7191. height: math.unit(5 + 5/12, "feet"),
  7192. weight: math.unit(100, "lbs"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/odios-de-lunar/front.svg",
  7196. extra: 1468/1323,
  7197. bottom: 22/1490
  7198. }
  7199. }
  7200. },
  7201. [
  7202. {
  7203. name: "Micro",
  7204. height: math.unit(3, "inches")
  7205. },
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(5.5, "feet"),
  7209. default: true
  7210. },
  7211. {
  7212. name: "Macro",
  7213. height: math.unit(100, "feet")
  7214. },
  7215. ]
  7216. ))
  7217. characterMakers.push(() => makeCharacter(
  7218. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7219. {
  7220. back: {
  7221. height: math.unit(6, "feet"),
  7222. weight: math.unit(220, "lbs"),
  7223. name: "Back",
  7224. image: {
  7225. source: "./media/characters/mandake/back.svg"
  7226. }
  7227. }
  7228. },
  7229. [
  7230. {
  7231. name: "Normal",
  7232. height: math.unit(7, "feet"),
  7233. default: true
  7234. },
  7235. {
  7236. name: "Macro",
  7237. height: math.unit(78, "feet")
  7238. },
  7239. {
  7240. name: "Macro+",
  7241. height: math.unit(300, "meters")
  7242. },
  7243. {
  7244. name: "Macro++",
  7245. height: math.unit(2400, "feet")
  7246. },
  7247. {
  7248. name: "Megamacro",
  7249. height: math.unit(5167, "meters")
  7250. },
  7251. {
  7252. name: "Gigamacro",
  7253. height: math.unit(41769, "miles")
  7254. },
  7255. ]
  7256. ))
  7257. characterMakers.push(() => makeCharacter(
  7258. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7259. {
  7260. front: {
  7261. height: math.unit(6, "feet"),
  7262. weight: math.unit(120, "lbs"),
  7263. name: "Front",
  7264. image: {
  7265. source: "./media/characters/yozey/front.svg"
  7266. }
  7267. },
  7268. frontAlt: {
  7269. height: math.unit(6, "feet"),
  7270. weight: math.unit(120, "lbs"),
  7271. name: "Front (Alt)",
  7272. image: {
  7273. source: "./media/characters/yozey/front-alt.svg"
  7274. }
  7275. },
  7276. side: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(120, "lbs"),
  7279. name: "Side",
  7280. image: {
  7281. source: "./media/characters/yozey/side.svg"
  7282. }
  7283. },
  7284. },
  7285. [
  7286. {
  7287. name: "Micro",
  7288. height: math.unit(3, "inches"),
  7289. default: true
  7290. },
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(6, "feet")
  7294. }
  7295. ]
  7296. ))
  7297. characterMakers.push(() => makeCharacter(
  7298. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7299. {
  7300. front: {
  7301. height: math.unit(6, "feet"),
  7302. weight: math.unit(103, "lbs"),
  7303. name: "Front",
  7304. image: {
  7305. source: "./media/characters/valeska-voss/front.svg"
  7306. }
  7307. }
  7308. },
  7309. [
  7310. {
  7311. name: "Mini-Sized Sub",
  7312. height: math.unit(3.1, "inches")
  7313. },
  7314. {
  7315. name: "Mid-Sized Sub",
  7316. height: math.unit(6.2, "inches")
  7317. },
  7318. {
  7319. name: "Full-Sized Sub",
  7320. height: math.unit(9.3, "inches")
  7321. },
  7322. {
  7323. name: "Normal",
  7324. height: math.unit(5 + 2 / 12, "foot"),
  7325. default: true
  7326. },
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7331. {
  7332. front: {
  7333. height: math.unit(6, "feet"),
  7334. weight: math.unit(160, "lbs"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/gene-zeta/front.svg",
  7338. extra: 3006 / 2826,
  7339. bottom: 182 / 3188
  7340. }
  7341. }
  7342. },
  7343. [
  7344. {
  7345. name: "Micro",
  7346. height: math.unit(6, "inches")
  7347. },
  7348. {
  7349. name: "Normal",
  7350. height: math.unit(5 + 11 / 12, "foot"),
  7351. default: true
  7352. },
  7353. {
  7354. name: "Macro",
  7355. height: math.unit(140, "feet")
  7356. },
  7357. {
  7358. name: "Supercharged",
  7359. height: math.unit(2500, "feet")
  7360. },
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7365. {
  7366. front: {
  7367. height: math.unit(6, "feet"),
  7368. weight: math.unit(350, "lbs"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/razinox/front.svg",
  7372. extra: 1686 / 1548,
  7373. bottom: 28.2 / 1868
  7374. }
  7375. },
  7376. back: {
  7377. height: math.unit(6, "feet"),
  7378. weight: math.unit(350, "lbs"),
  7379. name: "Back",
  7380. image: {
  7381. source: "./media/characters/razinox/back.svg",
  7382. extra: 1660 / 1590,
  7383. bottom: 15 / 1665
  7384. }
  7385. },
  7386. },
  7387. [
  7388. {
  7389. name: "Normal",
  7390. height: math.unit(10 + 8 / 12, "foot")
  7391. },
  7392. {
  7393. name: "Minimacro",
  7394. height: math.unit(15, "foot")
  7395. },
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(60, "foot"),
  7399. default: true
  7400. },
  7401. {
  7402. name: "Megamacro",
  7403. height: math.unit(5, "miles")
  7404. },
  7405. {
  7406. name: "Gigamacro",
  7407. height: math.unit(6000, "miles")
  7408. },
  7409. ]
  7410. ))
  7411. characterMakers.push(() => makeCharacter(
  7412. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7413. {
  7414. front: {
  7415. height: math.unit(6, "feet"),
  7416. weight: math.unit(150, "lbs"),
  7417. name: "Front",
  7418. image: {
  7419. source: "./media/characters/cobalt/front.svg"
  7420. }
  7421. }
  7422. },
  7423. [
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(8 + 1 / 12, "foot")
  7427. },
  7428. {
  7429. name: "Macro",
  7430. height: math.unit(111, "foot"),
  7431. default: true
  7432. },
  7433. {
  7434. name: "Supracosmic",
  7435. height: math.unit(1e42, "feet")
  7436. },
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(140, "lbs"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/amanda/front.svg"
  7448. }
  7449. }
  7450. },
  7451. [
  7452. {
  7453. name: "Micro",
  7454. height: math.unit(5, "inches"),
  7455. default: true
  7456. },
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7461. {
  7462. front: {
  7463. height: math.unit(2.75, "meters"),
  7464. weight: math.unit(1200, "lb"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/teal/front.svg",
  7468. extra: 2463 / 2320,
  7469. bottom: 166 / 2629
  7470. }
  7471. },
  7472. back: {
  7473. height: math.unit(2.75, "meters"),
  7474. weight: math.unit(1200, "lb"),
  7475. name: "Back",
  7476. image: {
  7477. source: "./media/characters/teal/back.svg",
  7478. extra: 2580 / 2489,
  7479. bottom: 151 / 2731
  7480. }
  7481. },
  7482. sitting: {
  7483. height: math.unit(1.9, "meters"),
  7484. weight: math.unit(1200, "lb"),
  7485. name: "Sitting",
  7486. image: {
  7487. source: "./media/characters/teal/sitting.svg",
  7488. extra: 623 / 590,
  7489. bottom: 121 / 744
  7490. }
  7491. },
  7492. standing: {
  7493. height: math.unit(2.75, "meters"),
  7494. weight: math.unit(1200, "lb"),
  7495. name: "Standing",
  7496. image: {
  7497. source: "./media/characters/teal/standing.svg",
  7498. extra: 923 / 893,
  7499. bottom: 60 / 983
  7500. }
  7501. },
  7502. stretching: {
  7503. height: math.unit(3.65, "meters"),
  7504. weight: math.unit(1200, "lb"),
  7505. name: "Stretching",
  7506. image: {
  7507. source: "./media/characters/teal/stretching.svg",
  7508. extra: 1276 / 1244,
  7509. bottom: 0 / 1276
  7510. }
  7511. },
  7512. legged: {
  7513. height: math.unit(1.3, "meters"),
  7514. weight: math.unit(100, "lb"),
  7515. name: "Legged",
  7516. image: {
  7517. source: "./media/characters/teal/legged.svg",
  7518. extra: 462 / 437,
  7519. bottom: 24 / 486
  7520. }
  7521. },
  7522. naga: {
  7523. height: math.unit(5.4, "meters"),
  7524. weight: math.unit(4000, "lb"),
  7525. name: "Naga",
  7526. image: {
  7527. source: "./media/characters/teal/naga.svg",
  7528. extra: 1902 / 1858,
  7529. bottom: 0 / 1902
  7530. }
  7531. },
  7532. hand: {
  7533. height: math.unit(0.52, "meters"),
  7534. name: "Hand",
  7535. image: {
  7536. source: "./media/characters/teal/hand.svg"
  7537. }
  7538. },
  7539. maw: {
  7540. height: math.unit(0.43, "meters"),
  7541. name: "Maw",
  7542. image: {
  7543. source: "./media/characters/teal/maw.svg"
  7544. }
  7545. },
  7546. slit: {
  7547. height: math.unit(0.25, "meters"),
  7548. name: "Slit",
  7549. image: {
  7550. source: "./media/characters/teal/slit.svg"
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Normal",
  7557. height: math.unit(2.75, "meters"),
  7558. default: true
  7559. },
  7560. {
  7561. name: "Macro",
  7562. height: math.unit(300, "feet")
  7563. },
  7564. {
  7565. name: "Macro+",
  7566. height: math.unit(2000, "feet")
  7567. },
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7572. {
  7573. frontCat: {
  7574. height: math.unit(6, "feet"),
  7575. weight: math.unit(180, "lbs"),
  7576. name: "Front (Cat)",
  7577. image: {
  7578. source: "./media/characters/ravin-amulet/front-cat.svg"
  7579. }
  7580. },
  7581. frontCatAlt: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(180, "lbs"),
  7584. name: "Front (Alt, Cat)",
  7585. image: {
  7586. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7587. }
  7588. },
  7589. frontWerewolf: {
  7590. height: math.unit(6 * 1.2, "feet"),
  7591. weight: math.unit(225, "lbs"),
  7592. name: "Front (Werewolf)",
  7593. image: {
  7594. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7595. }
  7596. },
  7597. backWerewolf: {
  7598. height: math.unit(6 * 1.2, "feet"),
  7599. weight: math.unit(225, "lbs"),
  7600. name: "Back (Werewolf)",
  7601. image: {
  7602. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Nano",
  7609. height: math.unit(1, "micrometer")
  7610. },
  7611. {
  7612. name: "Micro",
  7613. height: math.unit(1, "inch")
  7614. },
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(6, "feet"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Macro",
  7622. height: math.unit(60, "feet")
  7623. }
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7628. {
  7629. front: {
  7630. height: math.unit(6, "feet"),
  7631. weight: math.unit(165, "lbs"),
  7632. name: "Front",
  7633. image: {
  7634. source: "./media/characters/fluoresce/front.svg"
  7635. }
  7636. }
  7637. },
  7638. [
  7639. {
  7640. name: "Micro",
  7641. height: math.unit(6, "cm")
  7642. },
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(5 + 7 / 12, "feet"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(56, "feet")
  7651. },
  7652. {
  7653. name: "Megamacro",
  7654. height: math.unit(1.9, "miles")
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(9 + 6 / 12, "feet"),
  7663. weight: math.unit(523, "lbs"),
  7664. name: "Side",
  7665. image: {
  7666. source: "./media/characters/aurora/side.svg"
  7667. }
  7668. }
  7669. },
  7670. [
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(9 + 6 / 12, "feet")
  7674. },
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(96, "feet"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Macro+",
  7682. height: math.unit(243, "feet")
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(194, "cm"),
  7691. weight: math.unit(90, "kg"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/ranek/front.svg"
  7695. }
  7696. },
  7697. side: {
  7698. height: math.unit(194, "cm"),
  7699. weight: math.unit(90, "kg"),
  7700. name: "Side",
  7701. image: {
  7702. source: "./media/characters/ranek/side.svg"
  7703. }
  7704. },
  7705. back: {
  7706. height: math.unit(194, "cm"),
  7707. weight: math.unit(90, "kg"),
  7708. name: "Back",
  7709. image: {
  7710. source: "./media/characters/ranek/back.svg"
  7711. }
  7712. },
  7713. feral: {
  7714. height: math.unit(30, "cm"),
  7715. weight: math.unit(1.6, "lbs"),
  7716. name: "Feral",
  7717. image: {
  7718. source: "./media/characters/ranek/feral.svg"
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Normal",
  7725. height: math.unit(194, "cm"),
  7726. default: true
  7727. },
  7728. {
  7729. name: "Macro",
  7730. height: math.unit(100, "meters")
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(5 + 6 / 12, "feet"),
  7739. weight: math.unit(153, "lbs"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/andrew-cooper/front.svg"
  7743. }
  7744. },
  7745. },
  7746. [
  7747. {
  7748. name: "Nano",
  7749. height: math.unit(1, "mm")
  7750. },
  7751. {
  7752. name: "Micro",
  7753. height: math.unit(2, "inches")
  7754. },
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(5 + 6 / 12, "feet"),
  7758. default: true
  7759. }
  7760. ]
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7764. {
  7765. front: {
  7766. height: math.unit(6, "feet"),
  7767. weight: math.unit(180, "lbs"),
  7768. name: "Front",
  7769. image: {
  7770. source: "./media/characters/akane-sato/front.svg",
  7771. extra: 1219 / 1140
  7772. }
  7773. },
  7774. back: {
  7775. height: math.unit(6, "feet"),
  7776. weight: math.unit(180, "lbs"),
  7777. name: "Back",
  7778. image: {
  7779. source: "./media/characters/akane-sato/back.svg",
  7780. extra: 1219 / 1170
  7781. }
  7782. },
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(2.5, "meters")
  7788. },
  7789. {
  7790. name: "Macro",
  7791. height: math.unit(250, "meters"),
  7792. default: true
  7793. },
  7794. {
  7795. name: "Megamacro",
  7796. height: math.unit(25, "km")
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(65, "kg"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/rook/front.svg",
  7809. extra: 960 / 950
  7810. }
  7811. }
  7812. },
  7813. [
  7814. {
  7815. name: "Normal",
  7816. height: math.unit(8.8, "feet")
  7817. },
  7818. {
  7819. name: "Macro",
  7820. height: math.unit(88, "feet"),
  7821. default: true
  7822. },
  7823. {
  7824. name: "Megamacro",
  7825. height: math.unit(8, "miles")
  7826. },
  7827. ]
  7828. ))
  7829. characterMakers.push(() => makeCharacter(
  7830. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7831. {
  7832. front: {
  7833. height: math.unit(12 + 2 / 12, "feet"),
  7834. weight: math.unit(808, "lbs"),
  7835. name: "Front",
  7836. image: {
  7837. source: "./media/characters/prodigy/front.svg"
  7838. }
  7839. }
  7840. },
  7841. [
  7842. {
  7843. name: "Normal",
  7844. height: math.unit(12 + 2 / 12, "feet"),
  7845. default: true
  7846. },
  7847. {
  7848. name: "Macro",
  7849. height: math.unit(143, "feet")
  7850. },
  7851. {
  7852. name: "Macro+",
  7853. height: math.unit(400, "feet")
  7854. },
  7855. ]
  7856. ))
  7857. characterMakers.push(() => makeCharacter(
  7858. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7859. {
  7860. front: {
  7861. height: math.unit(6, "feet"),
  7862. weight: math.unit(225, "lbs"),
  7863. name: "Front",
  7864. image: {
  7865. source: "./media/characters/daniel/front.svg"
  7866. }
  7867. },
  7868. leaning: {
  7869. height: math.unit(6, "feet"),
  7870. weight: math.unit(225, "lbs"),
  7871. name: "Leaning",
  7872. image: {
  7873. source: "./media/characters/daniel/leaning.svg"
  7874. }
  7875. },
  7876. },
  7877. [
  7878. {
  7879. name: "Macro",
  7880. height: math.unit(1000, "feet"),
  7881. default: true
  7882. },
  7883. ]
  7884. ))
  7885. characterMakers.push(() => makeCharacter(
  7886. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7887. {
  7888. front: {
  7889. height: math.unit(6, "feet"),
  7890. weight: math.unit(88, "lbs"),
  7891. name: "Front",
  7892. image: {
  7893. source: "./media/characters/chiros/front.svg",
  7894. extra: 306 / 226
  7895. }
  7896. },
  7897. side: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(88, "lbs"),
  7900. name: "Side",
  7901. image: {
  7902. source: "./media/characters/chiros/side.svg",
  7903. extra: 306 / 226
  7904. }
  7905. },
  7906. },
  7907. [
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(6, "cm"),
  7911. default: true
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7917. {
  7918. front: {
  7919. height: math.unit(6, "feet"),
  7920. weight: math.unit(100, "lbs"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/selka/front.svg",
  7924. extra: 947 / 887
  7925. }
  7926. }
  7927. },
  7928. [
  7929. {
  7930. name: "Normal",
  7931. height: math.unit(5, "cm"),
  7932. default: true
  7933. },
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7938. {
  7939. front: {
  7940. height: math.unit(8 + 3 / 12, "feet"),
  7941. weight: math.unit(424, "lbs"),
  7942. name: "Front",
  7943. image: {
  7944. source: "./media/characters/verin/front.svg",
  7945. extra: 1845 / 1550
  7946. }
  7947. },
  7948. frontArmored: {
  7949. height: math.unit(8 + 3 / 12, "feet"),
  7950. weight: math.unit(424, "lbs"),
  7951. name: "Front (Armored)",
  7952. image: {
  7953. source: "./media/characters/verin/front-armor.svg",
  7954. extra: 1845 / 1550,
  7955. bottom: 0.01
  7956. }
  7957. },
  7958. back: {
  7959. height: math.unit(8 + 3 / 12, "feet"),
  7960. weight: math.unit(424, "lbs"),
  7961. name: "Back",
  7962. image: {
  7963. source: "./media/characters/verin/back.svg",
  7964. bottom: 0.1,
  7965. extra: 1
  7966. }
  7967. },
  7968. foot: {
  7969. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7970. name: "Foot",
  7971. image: {
  7972. source: "./media/characters/verin/foot.svg"
  7973. }
  7974. },
  7975. },
  7976. [
  7977. {
  7978. name: "Normal",
  7979. height: math.unit(8 + 3 / 12, "feet")
  7980. },
  7981. {
  7982. name: "Minimacro",
  7983. height: math.unit(21, "feet"),
  7984. default: true
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(626, "feet")
  7989. },
  7990. ]
  7991. ))
  7992. characterMakers.push(() => makeCharacter(
  7993. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7994. {
  7995. front: {
  7996. height: math.unit(2.718, "meters"),
  7997. weight: math.unit(150, "lbs"),
  7998. name: "Front",
  7999. image: {
  8000. source: "./media/characters/sovrim-terraquian/front.svg"
  8001. }
  8002. },
  8003. back: {
  8004. height: math.unit(2.718, "meters"),
  8005. weight: math.unit(150, "lbs"),
  8006. name: "Back",
  8007. image: {
  8008. source: "./media/characters/sovrim-terraquian/back.svg"
  8009. }
  8010. }
  8011. },
  8012. [
  8013. {
  8014. name: "Micro",
  8015. height: math.unit(2, "inches")
  8016. },
  8017. {
  8018. name: "Small",
  8019. height: math.unit(1, "meter")
  8020. },
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(Math.E, "meters"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(20, "meters")
  8029. },
  8030. {
  8031. name: "Macro+",
  8032. height: math.unit(400, "meters")
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8038. {
  8039. front: {
  8040. height: math.unit(7, "feet"),
  8041. weight: math.unit(489, "lbs"),
  8042. name: "Front",
  8043. image: {
  8044. source: "./media/characters/reece-silvermane/front.svg",
  8045. bottom: 0.02,
  8046. extra: 1
  8047. }
  8048. },
  8049. },
  8050. [
  8051. {
  8052. name: "Macro",
  8053. height: math.unit(1.5, "miles"),
  8054. default: true
  8055. },
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8060. {
  8061. front: {
  8062. height: math.unit(6, "feet"),
  8063. weight: math.unit(78, "kg"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/kane/front.svg",
  8067. extra: 978 / 899
  8068. }
  8069. },
  8070. },
  8071. [
  8072. {
  8073. name: "Normal",
  8074. height: math.unit(2.1, "m"),
  8075. },
  8076. {
  8077. name: "Macro",
  8078. height: math.unit(1, "km"),
  8079. default: true
  8080. },
  8081. ]
  8082. ))
  8083. characterMakers.push(() => makeCharacter(
  8084. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8085. {
  8086. front: {
  8087. height: math.unit(6, "feet"),
  8088. weight: math.unit(200, "kg"),
  8089. name: "Front",
  8090. image: {
  8091. source: "./media/characters/tegon/front.svg",
  8092. bottom: 0.01,
  8093. extra: 1
  8094. }
  8095. },
  8096. },
  8097. [
  8098. {
  8099. name: "Micro",
  8100. height: math.unit(1, "inch")
  8101. },
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(6 + 3 / 12, "feet"),
  8105. default: true
  8106. },
  8107. {
  8108. name: "Macro",
  8109. height: math.unit(300, "feet")
  8110. },
  8111. {
  8112. name: "Megamacro",
  8113. height: math.unit(69, "miles")
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8119. {
  8120. side: {
  8121. height: math.unit(6, "feet"),
  8122. weight: math.unit(2304, "lbs"),
  8123. name: "Side",
  8124. image: {
  8125. source: "./media/characters/arcturax/side.svg",
  8126. extra: 790 / 376,
  8127. bottom: 0.01
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Micro",
  8134. height: math.unit(2, "inch")
  8135. },
  8136. {
  8137. name: "Normal",
  8138. height: math.unit(6, "feet")
  8139. },
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(39, "feet"),
  8143. default: true
  8144. },
  8145. {
  8146. name: "Megamacro",
  8147. height: math.unit(7, "miles")
  8148. },
  8149. ]
  8150. ))
  8151. characterMakers.push(() => makeCharacter(
  8152. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8153. {
  8154. front: {
  8155. height: math.unit(6, "feet"),
  8156. weight: math.unit(50, "lbs"),
  8157. name: "Front",
  8158. image: {
  8159. source: "./media/characters/sentri/front.svg",
  8160. extra: 1750 / 1570,
  8161. bottom: 0.025
  8162. }
  8163. },
  8164. frontAlt: {
  8165. height: math.unit(6, "feet"),
  8166. weight: math.unit(50, "lbs"),
  8167. name: "Front (Alt)",
  8168. image: {
  8169. source: "./media/characters/sentri/front-alt.svg",
  8170. extra: 1750 / 1570,
  8171. bottom: 0.025
  8172. }
  8173. },
  8174. },
  8175. [
  8176. {
  8177. name: "Normal",
  8178. height: math.unit(15, "feet"),
  8179. default: true
  8180. },
  8181. {
  8182. name: "Macro",
  8183. height: math.unit(2500, "feet")
  8184. }
  8185. ]
  8186. ))
  8187. characterMakers.push(() => makeCharacter(
  8188. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8189. {
  8190. front: {
  8191. height: math.unit(5 + 8 / 12, "feet"),
  8192. weight: math.unit(130, "lbs"),
  8193. name: "Front",
  8194. image: {
  8195. source: "./media/characters/corvin/front.svg",
  8196. extra: 1803 / 1629
  8197. }
  8198. },
  8199. frontShirt: {
  8200. height: math.unit(5 + 8 / 12, "feet"),
  8201. weight: math.unit(130, "lbs"),
  8202. name: "Front (Shirt)",
  8203. image: {
  8204. source: "./media/characters/corvin/front-shirt.svg",
  8205. extra: 1803 / 1629
  8206. }
  8207. },
  8208. frontPoncho: {
  8209. height: math.unit(5 + 8 / 12, "feet"),
  8210. weight: math.unit(130, "lbs"),
  8211. name: "Front (Poncho)",
  8212. image: {
  8213. source: "./media/characters/corvin/front-poncho.svg",
  8214. extra: 1803 / 1629
  8215. }
  8216. },
  8217. side: {
  8218. height: math.unit(5 + 8 / 12, "feet"),
  8219. weight: math.unit(130, "lbs"),
  8220. name: "Side",
  8221. image: {
  8222. source: "./media/characters/corvin/side.svg",
  8223. extra: 1012 / 945
  8224. }
  8225. },
  8226. back: {
  8227. height: math.unit(5 + 8 / 12, "feet"),
  8228. weight: math.unit(130, "lbs"),
  8229. name: "Back",
  8230. image: {
  8231. source: "./media/characters/corvin/back.svg",
  8232. extra: 1803 / 1629
  8233. }
  8234. },
  8235. },
  8236. [
  8237. {
  8238. name: "Micro",
  8239. height: math.unit(3, "inches")
  8240. },
  8241. {
  8242. name: "Normal",
  8243. height: math.unit(5 + 8 / 12, "feet")
  8244. },
  8245. {
  8246. name: "Macro",
  8247. height: math.unit(300, "feet"),
  8248. default: true
  8249. },
  8250. {
  8251. name: "Megamacro",
  8252. height: math.unit(500, "miles")
  8253. }
  8254. ]
  8255. ))
  8256. characterMakers.push(() => makeCharacter(
  8257. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8258. {
  8259. front: {
  8260. height: math.unit(6, "feet"),
  8261. weight: math.unit(135, "lbs"),
  8262. name: "Front",
  8263. image: {
  8264. source: "./media/characters/q/front.svg",
  8265. extra: 854 / 752,
  8266. bottom: 0.005
  8267. }
  8268. },
  8269. back: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(130, "lbs"),
  8272. name: "Back",
  8273. image: {
  8274. source: "./media/characters/q/back.svg",
  8275. extra: 854 / 752
  8276. }
  8277. },
  8278. },
  8279. [
  8280. {
  8281. name: "Macro",
  8282. height: math.unit(90, "feet"),
  8283. default: true
  8284. },
  8285. {
  8286. name: "Extra Macro",
  8287. height: math.unit(300, "feet"),
  8288. },
  8289. {
  8290. name: "BIG WALF",
  8291. height: math.unit(750, "feet"),
  8292. },
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8297. {
  8298. front: {
  8299. height: math.unit(6, "feet"),
  8300. weight: math.unit(150, "lbs"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/carley/front.svg",
  8304. extra: 3927 / 3540,
  8305. bottom: 29.2 / 735
  8306. }
  8307. }
  8308. },
  8309. [
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(6 + 3 / 12, "feet")
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(185, "feet"),
  8317. default: true
  8318. },
  8319. {
  8320. name: "Megamacro",
  8321. height: math.unit(8, "miles"),
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(3, "feet"),
  8330. weight: math.unit(28, "lbs"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/citrine/front.svg"
  8334. }
  8335. }
  8336. },
  8337. [
  8338. {
  8339. name: "Normal",
  8340. height: math.unit(3, "feet"),
  8341. default: true
  8342. }
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8347. {
  8348. front: {
  8349. height: math.unit(14, "feet"),
  8350. weight: math.unit(1450, "kg"),
  8351. capacity: math.unit(15, "people"),
  8352. name: "Front",
  8353. image: {
  8354. source: "./media/characters/aura-starwind/front.svg",
  8355. extra: 1440/1327,
  8356. bottom: 11/1451
  8357. }
  8358. },
  8359. side: {
  8360. height: math.unit(14, "feet"),
  8361. weight: math.unit(1450, "kg"),
  8362. capacity: math.unit(15, "people"),
  8363. name: "Side",
  8364. image: {
  8365. source: "./media/characters/aura-starwind/side.svg",
  8366. extra: 1654 / 1497
  8367. }
  8368. },
  8369. taur: {
  8370. height: math.unit(18, "feet"),
  8371. weight: math.unit(5500, "kg"),
  8372. capacity: math.unit(50, "people"),
  8373. name: "Taur",
  8374. image: {
  8375. source: "./media/characters/aura-starwind/taur.svg",
  8376. extra: 1760 / 1650
  8377. }
  8378. },
  8379. feral: {
  8380. height: math.unit(46, "feet"),
  8381. weight: math.unit(25000, "kg"),
  8382. capacity: math.unit(120, "people"),
  8383. name: "Feral",
  8384. image: {
  8385. source: "./media/characters/aura-starwind/feral.svg"
  8386. }
  8387. },
  8388. },
  8389. [
  8390. {
  8391. name: "Normal",
  8392. height: math.unit(14, "feet"),
  8393. default: true
  8394. },
  8395. {
  8396. name: "Macro",
  8397. height: math.unit(50, "meters")
  8398. },
  8399. {
  8400. name: "Megamacro",
  8401. height: math.unit(5000, "meters")
  8402. },
  8403. {
  8404. name: "Gigamacro",
  8405. height: math.unit(100000, "kilometers")
  8406. },
  8407. ]
  8408. ))
  8409. characterMakers.push(() => makeCharacter(
  8410. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8411. {
  8412. front: {
  8413. height: math.unit(2 + 7 / 12, "feet"),
  8414. weight: math.unit(32, "lbs"),
  8415. name: "Front",
  8416. image: {
  8417. source: "./media/characters/rivet/front.svg",
  8418. extra: 1716 / 1658,
  8419. bottom: 0.03
  8420. }
  8421. },
  8422. foot: {
  8423. height: math.unit(0.551, "feet"),
  8424. name: "Rivet's Foot",
  8425. image: {
  8426. source: "./media/characters/rivet/foot.svg"
  8427. },
  8428. rename: true
  8429. }
  8430. },
  8431. [
  8432. {
  8433. name: "Micro",
  8434. height: math.unit(1.5, "inches"),
  8435. },
  8436. {
  8437. name: "Normal",
  8438. height: math.unit(2 + 7 / 12, "feet"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Macro",
  8443. height: math.unit(85, "feet")
  8444. },
  8445. {
  8446. name: "Megamacro",
  8447. height: math.unit(2.2, "km")
  8448. }
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(5 + 9 / 12, "feet"),
  8456. weight: math.unit(150, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/coffee/front.svg",
  8460. extra: 3666 / 3032,
  8461. bottom: 0.04
  8462. }
  8463. },
  8464. foot: {
  8465. height: math.unit(1.29, "feet"),
  8466. name: "Foot",
  8467. image: {
  8468. source: "./media/characters/coffee/foot.svg"
  8469. }
  8470. },
  8471. },
  8472. [
  8473. {
  8474. name: "Micro",
  8475. height: math.unit(2, "inches"),
  8476. },
  8477. {
  8478. name: "Normal",
  8479. height: math.unit(5 + 9 / 12, "feet"),
  8480. default: true
  8481. },
  8482. {
  8483. name: "Macro",
  8484. height: math.unit(800, "feet")
  8485. },
  8486. {
  8487. name: "Megamacro",
  8488. height: math.unit(25, "miles")
  8489. }
  8490. ]
  8491. ))
  8492. characterMakers.push(() => makeCharacter(
  8493. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8494. {
  8495. front: {
  8496. height: math.unit(6, "feet"),
  8497. weight: math.unit(200, "lbs"),
  8498. name: "Front",
  8499. image: {
  8500. source: "./media/characters/chari-gal/front.svg",
  8501. extra: 1568 / 1385,
  8502. bottom: 0.047
  8503. }
  8504. },
  8505. gigantamax: {
  8506. height: math.unit(6 * 16, "feet"),
  8507. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8508. name: "Gigantamax",
  8509. image: {
  8510. source: "./media/characters/chari-gal/gigantamax.svg",
  8511. extra: 1124 / 888,
  8512. bottom: 0.03
  8513. }
  8514. },
  8515. },
  8516. [
  8517. {
  8518. name: "Normal",
  8519. height: math.unit(5 + 7 / 12, "feet")
  8520. },
  8521. {
  8522. name: "Macro",
  8523. height: math.unit(200, "feet"),
  8524. default: true
  8525. }
  8526. ]
  8527. ))
  8528. characterMakers.push(() => makeCharacter(
  8529. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8530. {
  8531. front: {
  8532. height: math.unit(6, "feet"),
  8533. weight: math.unit(150, "lbs"),
  8534. name: "Front",
  8535. image: {
  8536. source: "./media/characters/nova/front.svg",
  8537. extra: 5000 / 4722,
  8538. bottom: 0.02
  8539. }
  8540. }
  8541. },
  8542. [
  8543. {
  8544. name: "Micro-",
  8545. height: math.unit(0.8, "inches")
  8546. },
  8547. {
  8548. name: "Micro",
  8549. height: math.unit(2, "inches"),
  8550. default: true
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(3 + 1 / 12, "feet"),
  8559. weight: math.unit(21.7, "lbs"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/argent/front.svg",
  8563. extra: 1471 / 1331,
  8564. bottom: 100.8 / 1575.5
  8565. }
  8566. }
  8567. },
  8568. [
  8569. {
  8570. name: "Micro",
  8571. height: math.unit(2, "inches")
  8572. },
  8573. {
  8574. name: "Normal",
  8575. height: math.unit(3 + 1 / 12, "feet"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Macro",
  8580. height: math.unit(120, "feet")
  8581. },
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8586. {
  8587. lamp: {
  8588. height: math.unit(7 * 1559 / 989, "feet"),
  8589. name: "Magic Lamp",
  8590. image: {
  8591. source: "./media/characters/mira-al-cul/lamp.svg",
  8592. extra: 1617 / 1559
  8593. }
  8594. },
  8595. front: {
  8596. height: math.unit(7, "feet"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/mira-al-cul/front.svg",
  8600. extra: 1044 / 990
  8601. }
  8602. },
  8603. },
  8604. [
  8605. {
  8606. name: "Heavily Restricted",
  8607. height: math.unit(7 * 1559 / 989, "feet")
  8608. },
  8609. {
  8610. name: "Freshly Freed",
  8611. height: math.unit(50 * 1559 / 989, "feet")
  8612. },
  8613. {
  8614. name: "World Encompassing",
  8615. height: math.unit(10000 * 1559 / 989, "miles")
  8616. },
  8617. {
  8618. name: "Galactic",
  8619. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8620. },
  8621. {
  8622. name: "Palmed Universe",
  8623. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Multiversal Matriarch",
  8628. height: math.unit(8.87e10, "yottameters")
  8629. },
  8630. {
  8631. name: "Void Mother",
  8632. height: math.unit(3.14e110, "yottaparsecs")
  8633. },
  8634. {
  8635. name: "Toying with Transcendence",
  8636. height: math.unit(1e307, "meters")
  8637. },
  8638. ]
  8639. ))
  8640. characterMakers.push(() => makeCharacter(
  8641. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8642. {
  8643. front: {
  8644. height: math.unit(17 + 1 / 12, "feet"),
  8645. weight: math.unit(476.2 * 5, "lbs"),
  8646. name: "Front",
  8647. image: {
  8648. source: "./media/characters/kuro-shi-uchū/front.svg",
  8649. extra: 2329 / 1835,
  8650. bottom: 0.02
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Micro",
  8657. height: math.unit(2, "inches")
  8658. },
  8659. {
  8660. name: "Normal",
  8661. height: math.unit(12, "meters")
  8662. },
  8663. {
  8664. name: "Planetary",
  8665. height: math.unit(0.00929, "AU"),
  8666. default: true
  8667. },
  8668. {
  8669. name: "Universal",
  8670. height: math.unit(20, "gigaparsecs")
  8671. },
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(5 + 2 / 12, "feet"),
  8679. weight: math.unit(120, "lbs"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/katherine/front.svg",
  8683. extra: 2075 / 1969
  8684. }
  8685. },
  8686. dress: {
  8687. height: math.unit(5 + 2 / 12, "feet"),
  8688. weight: math.unit(120, "lbs"),
  8689. name: "Dress",
  8690. image: {
  8691. source: "./media/characters/katherine/dress.svg",
  8692. extra: 2258 / 2064
  8693. }
  8694. },
  8695. },
  8696. [
  8697. {
  8698. name: "Micro",
  8699. height: math.unit(1, "inches"),
  8700. default: true
  8701. },
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(5 + 2 / 12, "feet")
  8705. },
  8706. {
  8707. name: "Macro",
  8708. height: math.unit(100, "meters")
  8709. },
  8710. {
  8711. name: "Megamacro",
  8712. height: math.unit(80, "miles")
  8713. },
  8714. ]
  8715. ))
  8716. characterMakers.push(() => makeCharacter(
  8717. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8718. {
  8719. front: {
  8720. height: math.unit(7 + 8 / 12, "feet"),
  8721. weight: math.unit(250, "lbs"),
  8722. name: "Front",
  8723. image: {
  8724. source: "./media/characters/yevis/front.svg",
  8725. extra: 1938 / 1755
  8726. }
  8727. }
  8728. },
  8729. [
  8730. {
  8731. name: "Mortal",
  8732. height: math.unit(7 + 8 / 12, "feet")
  8733. },
  8734. {
  8735. name: "Battle",
  8736. height: math.unit(25 + 11 / 12, "feet")
  8737. },
  8738. {
  8739. name: "Wrath",
  8740. height: math.unit(1654 + 11 / 12, "feet")
  8741. },
  8742. {
  8743. name: "Planet Destroyer",
  8744. height: math.unit(12000, "miles")
  8745. },
  8746. {
  8747. name: "Galaxy Conqueror",
  8748. height: math.unit(1.45, "zettameters"),
  8749. default: true
  8750. },
  8751. {
  8752. name: "Universal War",
  8753. height: math.unit(184, "gigaparsecs")
  8754. },
  8755. {
  8756. name: "Eternity War",
  8757. height: math.unit(1.98e55, "yottaparsecs")
  8758. },
  8759. ]
  8760. ))
  8761. characterMakers.push(() => makeCharacter(
  8762. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8763. {
  8764. front: {
  8765. height: math.unit(5 + 8 / 12, "feet"),
  8766. weight: math.unit(63, "kg"),
  8767. name: "Front",
  8768. image: {
  8769. source: "./media/characters/xavier/front.svg",
  8770. extra: 944 / 883
  8771. }
  8772. },
  8773. frontStretch: {
  8774. height: math.unit(5 + 8 / 12, "feet"),
  8775. weight: math.unit(63, "kg"),
  8776. name: "Stretching",
  8777. image: {
  8778. source: "./media/characters/xavier/front-stretch.svg",
  8779. extra: 962 / 820
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(5 + 8 / 12, "feet")
  8787. },
  8788. {
  8789. name: "Macro",
  8790. height: math.unit(100, "meters"),
  8791. default: true
  8792. },
  8793. {
  8794. name: "McLargeHuge",
  8795. height: math.unit(10, "miles")
  8796. },
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(5 + 5 / 12, "feet"),
  8804. weight: math.unit(150, "lb"),
  8805. name: "Front",
  8806. image: {
  8807. source: "./media/characters/joshii/front.svg",
  8808. extra: 765 / 653,
  8809. bottom: 51 / 816
  8810. }
  8811. },
  8812. foot: {
  8813. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8814. name: "Foot",
  8815. image: {
  8816. source: "./media/characters/joshii/foot.svg"
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Micro",
  8823. height: math.unit(2, "inches"),
  8824. default: true
  8825. },
  8826. {
  8827. name: "Normal",
  8828. height: math.unit(5 + 5 / 12, "feet")
  8829. },
  8830. {
  8831. name: "Macro",
  8832. height: math.unit(785, "feet")
  8833. },
  8834. {
  8835. name: "Megamacro",
  8836. height: math.unit(24.5, "miles")
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8842. {
  8843. front: {
  8844. height: math.unit(6, "feet"),
  8845. weight: math.unit(150, "lb"),
  8846. name: "Front",
  8847. image: {
  8848. source: "./media/characters/goddess-elizabeth/front.svg",
  8849. extra: 1800 / 1525,
  8850. bottom: 0.005
  8851. }
  8852. },
  8853. foot: {
  8854. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8855. name: "Foot",
  8856. image: {
  8857. source: "./media/characters/goddess-elizabeth/foot.svg"
  8858. }
  8859. },
  8860. mouth: {
  8861. height: math.unit(6, "feet"),
  8862. name: "Mouth",
  8863. image: {
  8864. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Micro",
  8871. height: math.unit(12, "feet")
  8872. },
  8873. {
  8874. name: "Normal",
  8875. height: math.unit(80, "miles"),
  8876. default: true
  8877. },
  8878. {
  8879. name: "Macro",
  8880. height: math.unit(15000, "parsecs")
  8881. },
  8882. ]
  8883. ))
  8884. characterMakers.push(() => makeCharacter(
  8885. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8886. {
  8887. front: {
  8888. height: math.unit(5 + 9 / 12, "feet"),
  8889. weight: math.unit(144, "lb"),
  8890. name: "Front",
  8891. image: {
  8892. source: "./media/characters/kara/front.svg"
  8893. }
  8894. },
  8895. feet: {
  8896. height: math.unit(6 / 6.765, "feet"),
  8897. name: "Kara's Feet",
  8898. rename: true,
  8899. image: {
  8900. source: "./media/characters/kara/feet.svg"
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(5 + 9 / 12, "feet")
  8908. },
  8909. {
  8910. name: "Macro",
  8911. height: math.unit(174, "feet"),
  8912. default: true
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(18, "feet"),
  8921. weight: math.unit(4050, "lb"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/tyrone/front.svg",
  8925. extra: 2405 / 2270,
  8926. bottom: 182 / 2587
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(18, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Macro",
  8938. height: math.unit(300, "feet")
  8939. },
  8940. {
  8941. name: "Megamacro",
  8942. height: math.unit(15, "km")
  8943. },
  8944. {
  8945. name: "Gigamacro",
  8946. height: math.unit(500, "km")
  8947. },
  8948. {
  8949. name: "Teramacro",
  8950. height: math.unit(0.5, "gigameters")
  8951. },
  8952. {
  8953. name: "Omnimacro",
  8954. height: math.unit(1e252, "yottauniverse")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8960. {
  8961. front: {
  8962. height: math.unit(7 + 8 / 12, "feet"),
  8963. weight: math.unit(120, "lb"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/danny/front.svg",
  8967. extra: 1490 / 1350
  8968. }
  8969. },
  8970. back: {
  8971. height: math.unit(7 + 8 / 12, "feet"),
  8972. weight: math.unit(120, "lb"),
  8973. name: "Back",
  8974. image: {
  8975. source: "./media/characters/danny/back.svg",
  8976. extra: 1490 / 1350
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Normal",
  8983. height: math.unit(7 + 8 / 12, "feet"),
  8984. default: true
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(3.5, "inches"),
  8993. weight: math.unit(19, "grams"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/mallow/front.svg",
  8997. extra: 471 / 431
  8998. }
  8999. },
  9000. back: {
  9001. height: math.unit(3.5, "inches"),
  9002. weight: math.unit(19, "grams"),
  9003. name: "Back",
  9004. image: {
  9005. source: "./media/characters/mallow/back.svg",
  9006. extra: 471 / 431
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Normal",
  9013. height: math.unit(3.5, "inches"),
  9014. default: true
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(9, "feet"),
  9023. weight: math.unit(230, "kg"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/starry-aqua/front.svg"
  9027. }
  9028. },
  9029. back: {
  9030. height: math.unit(9, "feet"),
  9031. weight: math.unit(230, "kg"),
  9032. name: "Back",
  9033. image: {
  9034. source: "./media/characters/starry-aqua/back.svg"
  9035. }
  9036. },
  9037. hand: {
  9038. height: math.unit(9 * 0.1168, "feet"),
  9039. name: "Hand",
  9040. image: {
  9041. source: "./media/characters/starry-aqua/hand.svg"
  9042. }
  9043. },
  9044. foot: {
  9045. height: math.unit(9 * 0.18, "feet"),
  9046. name: "Foot",
  9047. image: {
  9048. source: "./media/characters/starry-aqua/foot.svg"
  9049. }
  9050. }
  9051. },
  9052. [
  9053. {
  9054. name: "Micro",
  9055. height: math.unit(3, "inches")
  9056. },
  9057. {
  9058. name: "Normal",
  9059. height: math.unit(9, "feet")
  9060. },
  9061. {
  9062. name: "Macro",
  9063. height: math.unit(300, "feet"),
  9064. default: true
  9065. },
  9066. {
  9067. name: "Megamacro",
  9068. height: math.unit(3200, "feet")
  9069. }
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(15, "feet"),
  9077. weight: math.unit(5026, "lb"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/luka-towers/front.svg",
  9081. extra: 1269/1133,
  9082. bottom: 51/1320
  9083. }
  9084. },
  9085. },
  9086. [
  9087. {
  9088. name: "Normal",
  9089. height: math.unit(15, "feet"),
  9090. default: true
  9091. },
  9092. {
  9093. name: "Minimacro",
  9094. height: math.unit(25, "feet")
  9095. },
  9096. {
  9097. name: "Macro",
  9098. height: math.unit(320, "feet")
  9099. },
  9100. {
  9101. name: "Megamacro",
  9102. height: math.unit(35000, "feet")
  9103. },
  9104. {
  9105. name: "Gigamacro",
  9106. height: math.unit(4000, "miles")
  9107. },
  9108. {
  9109. name: "Teramacro",
  9110. height: math.unit(15000, "miles")
  9111. },
  9112. ]
  9113. ))
  9114. characterMakers.push(() => makeCharacter(
  9115. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9116. {
  9117. front: {
  9118. height: math.unit(6, "feet"),
  9119. weight: math.unit(150, "lb"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/natalie-nightring/front.svg",
  9123. extra: 1,
  9124. bottom: 0.06
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Uh Oh",
  9131. height: math.unit(0.1, "mm")
  9132. },
  9133. {
  9134. name: "Small",
  9135. height: math.unit(3, "inches")
  9136. },
  9137. {
  9138. name: "Human Scale",
  9139. height: math.unit(6, "feet")
  9140. },
  9141. {
  9142. name: "Librarian",
  9143. height: math.unit(50, "feet"),
  9144. default: true
  9145. },
  9146. {
  9147. name: "Immense",
  9148. height: math.unit(200, "miles")
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(6, "feet"),
  9157. weight: math.unit(180, "lbs"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/danni-rosie/front.svg",
  9161. extra: 1260 / 1128,
  9162. bottom: 0.022
  9163. }
  9164. },
  9165. },
  9166. [
  9167. {
  9168. name: "Micro",
  9169. height: math.unit(2, "inches"),
  9170. default: true
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9176. {
  9177. front: {
  9178. height: math.unit(5 + 9 / 12, "feet"),
  9179. weight: math.unit(220, "lb"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/samantha-kruse/front.svg",
  9183. extra: (985 / 935),
  9184. bottom: 0.03
  9185. }
  9186. },
  9187. frontUndressed: {
  9188. height: math.unit(5 + 9 / 12, "feet"),
  9189. weight: math.unit(220, "lb"),
  9190. name: "Front (Undressed)",
  9191. image: {
  9192. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9193. extra: (973 / 923),
  9194. bottom: 0.025
  9195. }
  9196. },
  9197. fat: {
  9198. height: math.unit(5 + 9 / 12, "feet"),
  9199. weight: math.unit(900, "lb"),
  9200. name: "Front (Fat)",
  9201. image: {
  9202. source: "./media/characters/samantha-kruse/fat.svg",
  9203. extra: 2688 / 2561
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Normal",
  9210. height: math.unit(5 + 9 / 12, "feet"),
  9211. default: true
  9212. }
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9217. {
  9218. back: {
  9219. height: math.unit(5 + 4 / 12, "feet"),
  9220. weight: math.unit(4963, "lb"),
  9221. name: "Back",
  9222. image: {
  9223. source: "./media/characters/amelia-rosie/back.svg",
  9224. extra: 1113 / 963,
  9225. bottom: 0.01
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Level 0",
  9232. height: math.unit(5 + 4 / 12, "feet")
  9233. },
  9234. {
  9235. name: "Level 1",
  9236. height: math.unit(164597, "feet"),
  9237. default: true
  9238. },
  9239. {
  9240. name: "Level 2",
  9241. height: math.unit(956243, "miles")
  9242. },
  9243. {
  9244. name: "Level 3",
  9245. height: math.unit(29421709423, "miles")
  9246. },
  9247. {
  9248. name: "Level 4",
  9249. height: math.unit(154, "lightyears")
  9250. },
  9251. {
  9252. name: "Level 5",
  9253. height: math.unit(4738272, "lightyears")
  9254. },
  9255. {
  9256. name: "Level 6",
  9257. height: math.unit(145787152896, "lightyears")
  9258. },
  9259. ]
  9260. ))
  9261. characterMakers.push(() => makeCharacter(
  9262. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9263. {
  9264. front: {
  9265. height: math.unit(5 + 11 / 12, "feet"),
  9266. weight: math.unit(65, "kg"),
  9267. name: "Front",
  9268. image: {
  9269. source: "./media/characters/rook-kitara/front.svg",
  9270. extra: 1347 / 1274,
  9271. bottom: 0.005
  9272. }
  9273. },
  9274. },
  9275. [
  9276. {
  9277. name: "Totally Unfair",
  9278. height: math.unit(1.8, "mm")
  9279. },
  9280. {
  9281. name: "Lap Rookie",
  9282. height: math.unit(1.4, "feet")
  9283. },
  9284. {
  9285. name: "Normal",
  9286. height: math.unit(5 + 11 / 12, "feet"),
  9287. default: true
  9288. },
  9289. {
  9290. name: "How Did This Happen",
  9291. height: math.unit(80, "miles")
  9292. }
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9297. {
  9298. front: {
  9299. height: math.unit(7, "feet"),
  9300. weight: math.unit(300, "lb"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/pisces/front.svg",
  9304. extra: 2255 / 2115,
  9305. bottom: 0.03
  9306. }
  9307. },
  9308. back: {
  9309. height: math.unit(7, "feet"),
  9310. weight: math.unit(300, "lb"),
  9311. name: "Back",
  9312. image: {
  9313. source: "./media/characters/pisces/back.svg",
  9314. extra: 2146 / 2055,
  9315. bottom: 0.04
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Normal",
  9322. height: math.unit(7, "feet"),
  9323. default: true
  9324. },
  9325. {
  9326. name: "Swimming Pool",
  9327. height: math.unit(12.2, "meters")
  9328. },
  9329. {
  9330. name: "Olympic Swimming Pool",
  9331. height: math.unit(56.3, "meters")
  9332. },
  9333. {
  9334. name: "Lake Superior",
  9335. height: math.unit(93900, "meters")
  9336. },
  9337. {
  9338. name: "Mediterranean Sea",
  9339. height: math.unit(644457, "meters")
  9340. },
  9341. {
  9342. name: "World's Oceans",
  9343. height: math.unit(4567491, "meters")
  9344. },
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9349. {
  9350. front: {
  9351. height: math.unit(2.3, "meters"),
  9352. weight: math.unit(120, "kg"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/zelas/front.svg"
  9356. }
  9357. },
  9358. side: {
  9359. height: math.unit(2.3, "meters"),
  9360. weight: math.unit(120, "kg"),
  9361. name: "Side",
  9362. image: {
  9363. source: "./media/characters/zelas/side.svg"
  9364. }
  9365. },
  9366. back: {
  9367. height: math.unit(2.3, "meters"),
  9368. weight: math.unit(120, "kg"),
  9369. name: "Back",
  9370. image: {
  9371. source: "./media/characters/zelas/back.svg"
  9372. }
  9373. },
  9374. foot: {
  9375. height: math.unit(1.116, "feet"),
  9376. name: "Foot",
  9377. image: {
  9378. source: "./media/characters/zelas/foot.svg"
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(2.3, "meters")
  9386. },
  9387. {
  9388. name: "Macro",
  9389. height: math.unit(30, "meters"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(1, "inch"),
  9399. weight: math.unit(0.21, "grams"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/talbot/front.svg",
  9403. extra: 594 / 544
  9404. }
  9405. },
  9406. },
  9407. [
  9408. {
  9409. name: "Micro",
  9410. height: math.unit(1, "inch"),
  9411. default: true
  9412. },
  9413. ]
  9414. ))
  9415. characterMakers.push(() => makeCharacter(
  9416. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9417. {
  9418. front: {
  9419. height: math.unit(3 + 3 / 12, "feet"),
  9420. weight: math.unit(51.8, "lb"),
  9421. name: "Front",
  9422. image: {
  9423. source: "./media/characters/fliss/front.svg",
  9424. extra: 840 / 640
  9425. }
  9426. },
  9427. },
  9428. [
  9429. {
  9430. name: "Teeny Tiny",
  9431. height: math.unit(1, "mm")
  9432. },
  9433. {
  9434. name: "Small",
  9435. height: math.unit(1, "inch"),
  9436. default: true
  9437. },
  9438. {
  9439. name: "Standard Sylveon",
  9440. height: math.unit(3 + 3 / 12, "feet")
  9441. },
  9442. {
  9443. name: "Large Nuisance",
  9444. height: math.unit(33, "feet")
  9445. },
  9446. {
  9447. name: "City Filler",
  9448. height: math.unit(3000, "feet")
  9449. },
  9450. {
  9451. name: "New Horizon",
  9452. height: math.unit(6000, "miles")
  9453. },
  9454. ]
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9458. {
  9459. front: {
  9460. height: math.unit(5, "cm"),
  9461. weight: math.unit(1.94, "g"),
  9462. name: "Front",
  9463. image: {
  9464. source: "./media/characters/fleta/front.svg",
  9465. extra: 835 / 803
  9466. }
  9467. },
  9468. back: {
  9469. height: math.unit(5, "cm"),
  9470. weight: math.unit(1.94, "g"),
  9471. name: "Back",
  9472. image: {
  9473. source: "./media/characters/fleta/back.svg",
  9474. extra: 835 / 803
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Micro",
  9481. height: math.unit(5, "cm"),
  9482. default: true
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9488. {
  9489. front: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(225, "lb"),
  9492. name: "Front",
  9493. image: {
  9494. source: "./media/characters/dominic/front.svg",
  9495. extra: 1770 / 1620,
  9496. bottom: 0.025
  9497. }
  9498. },
  9499. back: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(225, "lb"),
  9502. name: "Back",
  9503. image: {
  9504. source: "./media/characters/dominic/back.svg",
  9505. extra: 1745 / 1620,
  9506. bottom: 0.065
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Nano",
  9513. height: math.unit(0.1, "mm")
  9514. },
  9515. {
  9516. name: "Micro-",
  9517. height: math.unit(1, "mm")
  9518. },
  9519. {
  9520. name: "Micro",
  9521. height: math.unit(4, "inches")
  9522. },
  9523. {
  9524. name: "Normal",
  9525. height: math.unit(6 + 4 / 12, "feet"),
  9526. default: true
  9527. },
  9528. {
  9529. name: "Macro",
  9530. height: math.unit(115, "feet")
  9531. },
  9532. {
  9533. name: "Macro+",
  9534. height: math.unit(955, "feet")
  9535. },
  9536. {
  9537. name: "Megamacro",
  9538. height: math.unit(8990, "feet")
  9539. },
  9540. {
  9541. name: "Gigmacro",
  9542. height: math.unit(9310, "miles")
  9543. },
  9544. {
  9545. name: "Teramacro",
  9546. height: math.unit(1567005010, "miles")
  9547. },
  9548. {
  9549. name: "Examacro",
  9550. height: math.unit(1425, "parsecs")
  9551. },
  9552. ]
  9553. ))
  9554. characterMakers.push(() => makeCharacter(
  9555. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9556. {
  9557. front: {
  9558. height: math.unit(400, "feet"),
  9559. weight: math.unit(44444444, "lb"),
  9560. name: "Front",
  9561. image: {
  9562. source: "./media/characters/major-colonel/front.svg"
  9563. }
  9564. },
  9565. back: {
  9566. height: math.unit(400, "feet"),
  9567. weight: math.unit(44444444, "lb"),
  9568. name: "Back",
  9569. image: {
  9570. source: "./media/characters/major-colonel/back.svg"
  9571. }
  9572. },
  9573. },
  9574. [
  9575. {
  9576. name: "Macro",
  9577. height: math.unit(400, "feet"),
  9578. default: true
  9579. },
  9580. ]
  9581. ))
  9582. characterMakers.push(() => makeCharacter(
  9583. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9584. {
  9585. catFront: {
  9586. height: math.unit(6, "feet"),
  9587. weight: math.unit(120, "lb"),
  9588. name: "Front (Cat Side)",
  9589. image: {
  9590. source: "./media/characters/axel-lycan/cat-front.svg",
  9591. extra: 430 / 402,
  9592. bottom: 43 / 472.35
  9593. }
  9594. },
  9595. catBack: {
  9596. height: math.unit(6, "feet"),
  9597. weight: math.unit(120, "lb"),
  9598. name: "Back (Cat Side)",
  9599. image: {
  9600. source: "./media/characters/axel-lycan/cat-back.svg",
  9601. extra: 447 / 419,
  9602. bottom: 23.3 / 469
  9603. }
  9604. },
  9605. wolfFront: {
  9606. height: math.unit(6, "feet"),
  9607. weight: math.unit(120, "lb"),
  9608. name: "Front (Wolf Side)",
  9609. image: {
  9610. source: "./media/characters/axel-lycan/wolf-front.svg",
  9611. extra: 485 / 456,
  9612. bottom: 19 / 504
  9613. }
  9614. },
  9615. wolfBack: {
  9616. height: math.unit(6, "feet"),
  9617. weight: math.unit(120, "lb"),
  9618. name: "Back (Wolf Side)",
  9619. image: {
  9620. source: "./media/characters/axel-lycan/wolf-back.svg",
  9621. extra: 475 / 438,
  9622. bottom: 39.2 / 514
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Macro",
  9629. height: math.unit(1, "km"),
  9630. default: true
  9631. },
  9632. ]
  9633. ))
  9634. characterMakers.push(() => makeCharacter(
  9635. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9636. {
  9637. front: {
  9638. height: math.unit(5 + 9 / 12, "feet"),
  9639. weight: math.unit(175, "lb"),
  9640. name: "Front",
  9641. image: {
  9642. source: "./media/characters/vanrel-hyena/front.svg",
  9643. extra: 1086 / 1010,
  9644. bottom: 0.04
  9645. }
  9646. },
  9647. },
  9648. [
  9649. {
  9650. name: "Normal",
  9651. height: math.unit(5 + 9 / 12, "feet"),
  9652. default: true
  9653. },
  9654. ]
  9655. ))
  9656. characterMakers.push(() => makeCharacter(
  9657. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9658. {
  9659. front: {
  9660. height: math.unit(6, "feet"),
  9661. weight: math.unit(103, "lb"),
  9662. name: "Front",
  9663. image: {
  9664. source: "./media/characters/abbott-absol/front.svg",
  9665. extra: 2010 / 1842
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Megamicro",
  9672. height: math.unit(0.1, "mm")
  9673. },
  9674. {
  9675. name: "Micro",
  9676. height: math.unit(1, "inch")
  9677. },
  9678. {
  9679. name: "Normal",
  9680. height: math.unit(6, "feet"),
  9681. default: true
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(6, "feet"),
  9690. weight: math.unit(264, "lb"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/hector/front.svg",
  9694. extra: 2280 / 2130,
  9695. bottom: 0.07
  9696. }
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Normal",
  9702. height: math.unit(12.25, "foot"),
  9703. default: true
  9704. },
  9705. {
  9706. name: "Macro",
  9707. height: math.unit(160, "feet")
  9708. },
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9713. {
  9714. front: {
  9715. height: math.unit(6, "feet"),
  9716. weight: math.unit(150, "lb"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/sal/front.svg",
  9720. extra: 1846 / 1699,
  9721. bottom: 0.04
  9722. }
  9723. },
  9724. },
  9725. [
  9726. {
  9727. name: "Megamacro",
  9728. height: math.unit(10, "miles"),
  9729. default: true
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9735. {
  9736. front: {
  9737. height: math.unit(3, "meters"),
  9738. weight: math.unit(450, "kg"),
  9739. name: "front",
  9740. image: {
  9741. source: "./media/characters/ranger/front.svg",
  9742. extra: 2401 / 2243,
  9743. bottom: 0.05
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(3, "meters"),
  9751. default: true
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9757. {
  9758. front: {
  9759. height: math.unit(14, "feet"),
  9760. weight: math.unit(800, "kg"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/theresa/front.svg",
  9764. extra: 3575 / 3346,
  9765. bottom: 0.03
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(14, "feet"),
  9773. default: true
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9779. {
  9780. front: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(3, "kg"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/ine/front.svg",
  9786. extra: 678 / 539,
  9787. bottom: 0.023
  9788. }
  9789. },
  9790. },
  9791. [
  9792. {
  9793. name: "Normal",
  9794. height: math.unit(2.265, "feet"),
  9795. default: true
  9796. },
  9797. ]
  9798. ))
  9799. characterMakers.push(() => makeCharacter(
  9800. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9801. {
  9802. front: {
  9803. height: math.unit(5, "feet"),
  9804. weight: math.unit(30, "kg"),
  9805. name: "Front",
  9806. image: {
  9807. source: "./media/characters/vial/front.svg",
  9808. extra: 1365 / 1277,
  9809. bottom: 0.04
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(5, "feet"),
  9817. default: true
  9818. },
  9819. ]
  9820. ))
  9821. characterMakers.push(() => makeCharacter(
  9822. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9823. {
  9824. side: {
  9825. height: math.unit(3.4, "meters"),
  9826. weight: math.unit(1000, "lb"),
  9827. name: "Side",
  9828. image: {
  9829. source: "./media/characters/rovoska/side.svg",
  9830. extra: 4403 / 1515
  9831. }
  9832. },
  9833. },
  9834. [
  9835. {
  9836. name: "Normal",
  9837. height: math.unit(3.4, "meters"),
  9838. default: true
  9839. },
  9840. ]
  9841. ))
  9842. characterMakers.push(() => makeCharacter(
  9843. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9844. {
  9845. front: {
  9846. height: math.unit(8, "feet"),
  9847. weight: math.unit(315, "lb"),
  9848. name: "Front",
  9849. image: {
  9850. source: "./media/characters/gunner-rotthbauer/front.svg"
  9851. }
  9852. },
  9853. back: {
  9854. height: math.unit(8, "feet"),
  9855. weight: math.unit(315, "lb"),
  9856. name: "Back",
  9857. image: {
  9858. source: "./media/characters/gunner-rotthbauer/back.svg"
  9859. }
  9860. },
  9861. },
  9862. [
  9863. {
  9864. name: "Micro",
  9865. height: math.unit(3.5, "inches")
  9866. },
  9867. {
  9868. name: "Normal",
  9869. height: math.unit(8, "feet"),
  9870. default: true
  9871. },
  9872. {
  9873. name: "Macro",
  9874. height: math.unit(250, "feet")
  9875. },
  9876. {
  9877. name: "Megamacro",
  9878. height: math.unit(1, "AU")
  9879. },
  9880. ]
  9881. ))
  9882. characterMakers.push(() => makeCharacter(
  9883. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9884. {
  9885. front: {
  9886. height: math.unit(5 + 5 / 12, "feet"),
  9887. weight: math.unit(140, "lb"),
  9888. name: "Front",
  9889. image: {
  9890. source: "./media/characters/allatia/front.svg",
  9891. extra: 1227 / 1180,
  9892. bottom: 0.027
  9893. }
  9894. },
  9895. },
  9896. [
  9897. {
  9898. name: "Normal",
  9899. height: math.unit(5 + 5 / 12, "feet")
  9900. },
  9901. {
  9902. name: "Macro",
  9903. height: math.unit(250, "feet"),
  9904. default: true
  9905. },
  9906. {
  9907. name: "Megamacro",
  9908. height: math.unit(8, "miles")
  9909. }
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(6, "feet"),
  9917. weight: math.unit(120, "lb"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/tene/front.svg",
  9921. extra: 1728 / 1578,
  9922. bottom: 0.022
  9923. }
  9924. },
  9925. stomping: {
  9926. height: math.unit(2.025, "meters"),
  9927. weight: math.unit(120, "lb"),
  9928. name: "Stomping",
  9929. image: {
  9930. source: "./media/characters/tene/stomping.svg",
  9931. extra: 938 / 873,
  9932. bottom: 0.01
  9933. }
  9934. },
  9935. sitting: {
  9936. height: math.unit(1, "meter"),
  9937. weight: math.unit(120, "lb"),
  9938. name: "Sitting",
  9939. image: {
  9940. source: "./media/characters/tene/sitting.svg",
  9941. extra: 437 / 415,
  9942. bottom: 0.1
  9943. }
  9944. },
  9945. feral: {
  9946. height: math.unit(3.9, "feet"),
  9947. weight: math.unit(250, "lb"),
  9948. name: "Feral",
  9949. image: {
  9950. source: "./media/characters/tene/feral.svg",
  9951. extra: 717 / 458,
  9952. bottom: 0.179
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Normal",
  9959. height: math.unit(6, "feet")
  9960. },
  9961. {
  9962. name: "Macro",
  9963. height: math.unit(300, "feet"),
  9964. default: true
  9965. },
  9966. {
  9967. name: "Megamacro",
  9968. height: math.unit(5, "miles")
  9969. },
  9970. ]
  9971. ))
  9972. characterMakers.push(() => makeCharacter(
  9973. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9974. {
  9975. side: {
  9976. height: math.unit(6, "feet"),
  9977. name: "Side",
  9978. image: {
  9979. source: "./media/characters/evander/side.svg",
  9980. extra: 877 / 477
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(0.83, "meters"),
  9988. default: true
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(12, "feet"),
  9997. weight: math.unit(1000, "lb"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10001. extra: 1762 / 1611
  10002. }
  10003. },
  10004. back: {
  10005. height: math.unit(12, "feet"),
  10006. weight: math.unit(1000, "lb"),
  10007. name: "Back",
  10008. image: {
  10009. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10010. extra: 1762 / 1611
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Normal",
  10017. height: math.unit(12, "feet"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Kaiju",
  10022. height: math.unit(150, "feet")
  10023. },
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10028. {
  10029. front: {
  10030. height: math.unit(6, "feet"),
  10031. weight: math.unit(150, "lb"),
  10032. name: "Front",
  10033. image: {
  10034. source: "./media/characters/zero-alurus/front.svg"
  10035. }
  10036. },
  10037. back: {
  10038. height: math.unit(6, "feet"),
  10039. weight: math.unit(150, "lb"),
  10040. name: "Back",
  10041. image: {
  10042. source: "./media/characters/zero-alurus/back.svg"
  10043. }
  10044. },
  10045. },
  10046. [
  10047. {
  10048. name: "Normal",
  10049. height: math.unit(5 + 10 / 12, "feet")
  10050. },
  10051. {
  10052. name: "Macro",
  10053. height: math.unit(60, "feet"),
  10054. default: true
  10055. },
  10056. {
  10057. name: "Macro+",
  10058. height: math.unit(450, "feet")
  10059. },
  10060. ]
  10061. ))
  10062. characterMakers.push(() => makeCharacter(
  10063. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10064. {
  10065. front: {
  10066. height: math.unit(6, "feet"),
  10067. weight: math.unit(200, "lb"),
  10068. name: "Front",
  10069. image: {
  10070. source: "./media/characters/mega-shi/front.svg",
  10071. extra: 1279 / 1250,
  10072. bottom: 0.02
  10073. }
  10074. },
  10075. back: {
  10076. height: math.unit(6, "feet"),
  10077. weight: math.unit(200, "lb"),
  10078. name: "Back",
  10079. image: {
  10080. source: "./media/characters/mega-shi/back.svg",
  10081. extra: 1279 / 1250,
  10082. bottom: 0.02
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Micro",
  10089. height: math.unit(16 + 6 / 12, "feet")
  10090. },
  10091. {
  10092. name: "Third Dimension",
  10093. height: math.unit(40, "meters")
  10094. },
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(660, "feet"),
  10098. default: true
  10099. },
  10100. {
  10101. name: "Megamacro",
  10102. height: math.unit(10, "miles")
  10103. },
  10104. {
  10105. name: "Planetary Launch",
  10106. height: math.unit(500, "miles")
  10107. },
  10108. {
  10109. name: "Interstellar",
  10110. height: math.unit(1e9, "miles")
  10111. },
  10112. {
  10113. name: "Leaving the Universe",
  10114. height: math.unit(1, "gigaparsec")
  10115. },
  10116. {
  10117. name: "Travelling Universes",
  10118. height: math.unit(30e15, "parsecs")
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(5 + 4/12, "feet"),
  10127. weight: math.unit(120, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/odyssey/front.svg",
  10131. extra: 1747/1571,
  10132. bottom: 47/1794
  10133. }
  10134. },
  10135. side: {
  10136. height: math.unit(5.1, "feet"),
  10137. weight: math.unit(120, "lb"),
  10138. name: "Side",
  10139. image: {
  10140. source: "./media/characters/odyssey/side.svg",
  10141. extra: 1847/1619,
  10142. bottom: 47/1894
  10143. }
  10144. },
  10145. lounging: {
  10146. height: math.unit(1.464, "feet"),
  10147. weight: math.unit(120, "lb"),
  10148. name: "Lounging",
  10149. image: {
  10150. source: "./media/characters/odyssey/lounging.svg",
  10151. extra: 1235/837,
  10152. bottom: 551/1786
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Normal",
  10159. height: math.unit(5 + 4 / 12, "feet")
  10160. },
  10161. {
  10162. name: "Macro",
  10163. height: math.unit(1, "km")
  10164. },
  10165. {
  10166. name: "Megamacro",
  10167. height: math.unit(3000, "km")
  10168. },
  10169. {
  10170. name: "Gigamacro",
  10171. height: math.unit(1, "AU"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Omniversal",
  10176. height: math.unit(100e14, "lightyears")
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(6, "feet"),
  10185. weight: math.unit(300, "lb"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/mekuto/front.svg",
  10189. extra: 921 / 832,
  10190. bottom: 0.03
  10191. }
  10192. },
  10193. hand: {
  10194. height: math.unit(6 / 10.24, "feet"),
  10195. name: "Hand",
  10196. image: {
  10197. source: "./media/characters/mekuto/hand.svg"
  10198. }
  10199. },
  10200. foot: {
  10201. height: math.unit(6 / 5.05, "feet"),
  10202. name: "Foot",
  10203. image: {
  10204. source: "./media/characters/mekuto/foot.svg"
  10205. }
  10206. },
  10207. },
  10208. [
  10209. {
  10210. name: "Minimicro",
  10211. height: math.unit(0.2, "inches")
  10212. },
  10213. {
  10214. name: "Micro",
  10215. height: math.unit(1.5, "inches")
  10216. },
  10217. {
  10218. name: "Normal",
  10219. height: math.unit(5 + 11 / 12, "feet"),
  10220. default: true
  10221. },
  10222. {
  10223. name: "Minimacro",
  10224. height: math.unit(17 + 9 / 12, "feet")
  10225. },
  10226. {
  10227. name: "Macro",
  10228. height: math.unit(177.5, "feet")
  10229. },
  10230. {
  10231. name: "Megamacro",
  10232. height: math.unit(152, "miles")
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10238. {
  10239. front: {
  10240. height: math.unit(6.5, "inches"),
  10241. weight: math.unit(13, "oz"),
  10242. name: "Front",
  10243. image: {
  10244. source: "./media/characters/dafydd-tomos/front.svg",
  10245. extra: 2990 / 2603,
  10246. bottom: 0.03
  10247. }
  10248. },
  10249. },
  10250. [
  10251. {
  10252. name: "Micro",
  10253. height: math.unit(6.5, "inches"),
  10254. default: true
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(6, "feet"),
  10263. weight: math.unit(150, "lb"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/splinter/front.svg",
  10267. extra: 2990 / 2882,
  10268. bottom: 0.04
  10269. }
  10270. },
  10271. back: {
  10272. height: math.unit(6, "feet"),
  10273. weight: math.unit(150, "lb"),
  10274. name: "Back",
  10275. image: {
  10276. source: "./media/characters/splinter/back.svg",
  10277. extra: 2990 / 2882,
  10278. bottom: 0.04
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(6, "feet")
  10286. },
  10287. {
  10288. name: "Macro",
  10289. height: math.unit(230, "meters"),
  10290. default: true
  10291. },
  10292. ]
  10293. ))
  10294. characterMakers.push(() => makeCharacter(
  10295. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10296. {
  10297. front: {
  10298. height: math.unit(4 + 10 / 12, "feet"),
  10299. weight: math.unit(480, "lb"),
  10300. name: "Front",
  10301. image: {
  10302. source: "./media/characters/snow-gabumon/front.svg",
  10303. extra: 1140 / 963,
  10304. bottom: 0.058
  10305. }
  10306. },
  10307. back: {
  10308. height: math.unit(4 + 10 / 12, "feet"),
  10309. weight: math.unit(480, "lb"),
  10310. name: "Back",
  10311. image: {
  10312. source: "./media/characters/snow-gabumon/back.svg",
  10313. extra: 1115 / 962,
  10314. bottom: 0.041
  10315. }
  10316. },
  10317. frontUndresed: {
  10318. height: math.unit(4 + 10 / 12, "feet"),
  10319. weight: math.unit(480, "lb"),
  10320. name: "Front (Undressed)",
  10321. image: {
  10322. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10323. extra: 1061 / 960,
  10324. bottom: 0.045
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Micro",
  10331. height: math.unit(1, "inch")
  10332. },
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(4 + 10 / 12, "feet"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Macro",
  10340. height: math.unit(200, "feet")
  10341. },
  10342. {
  10343. name: "Megamacro",
  10344. height: math.unit(120, "miles")
  10345. },
  10346. {
  10347. name: "Gigamacro",
  10348. height: math.unit(9800, "miles")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(1.7, "meters"),
  10357. weight: math.unit(140, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/moody/front.svg",
  10361. extra: 3226 / 3007,
  10362. bottom: 0.087
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Micro",
  10369. height: math.unit(1, "mm")
  10370. },
  10371. {
  10372. name: "Normal",
  10373. height: math.unit(1.7, "meters"),
  10374. default: true
  10375. },
  10376. {
  10377. name: "Macro",
  10378. height: math.unit(80, "meters")
  10379. },
  10380. {
  10381. name: "Macro+",
  10382. height: math.unit(500, "meters")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(150, "lb"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/zyas/front.svg",
  10395. extra: 1180 / 1120,
  10396. bottom: 0.045
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Normal",
  10403. height: math.unit(10, "feet"),
  10404. default: true
  10405. },
  10406. {
  10407. name: "Macro",
  10408. height: math.unit(500, "feet")
  10409. },
  10410. {
  10411. name: "Megamacro",
  10412. height: math.unit(5, "miles")
  10413. },
  10414. {
  10415. name: "Teramacro",
  10416. height: math.unit(150000, "miles")
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(150, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/cuon/front.svg",
  10429. extra: 1390 / 1320,
  10430. bottom: 0.008
  10431. }
  10432. },
  10433. },
  10434. [
  10435. {
  10436. name: "Micro",
  10437. height: math.unit(3, "inches")
  10438. },
  10439. {
  10440. name: "Normal",
  10441. height: math.unit(18 + 9 / 12, "feet"),
  10442. default: true
  10443. },
  10444. {
  10445. name: "Macro",
  10446. height: math.unit(360, "feet")
  10447. },
  10448. {
  10449. name: "Megamacro",
  10450. height: math.unit(360, "miles")
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10456. {
  10457. front: {
  10458. height: math.unit(2.4, "meters"),
  10459. weight: math.unit(70, "kg"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/nyanuxk/front.svg",
  10463. extra: 1172 / 1084,
  10464. bottom: 0.065
  10465. }
  10466. },
  10467. side: {
  10468. height: math.unit(2.4, "meters"),
  10469. weight: math.unit(70, "kg"),
  10470. name: "Side",
  10471. image: {
  10472. source: "./media/characters/nyanuxk/side.svg",
  10473. extra: 1190 / 1132,
  10474. bottom: 0.007
  10475. }
  10476. },
  10477. back: {
  10478. height: math.unit(2.4, "meters"),
  10479. weight: math.unit(70, "kg"),
  10480. name: "Back",
  10481. image: {
  10482. source: "./media/characters/nyanuxk/back.svg",
  10483. extra: 1200 / 1141,
  10484. bottom: 0.015
  10485. }
  10486. },
  10487. foot: {
  10488. height: math.unit(0.52, "meters"),
  10489. name: "Foot",
  10490. image: {
  10491. source: "./media/characters/nyanuxk/foot.svg"
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Micro",
  10498. height: math.unit(2, "cm")
  10499. },
  10500. {
  10501. name: "Normal",
  10502. height: math.unit(2.4, "meters"),
  10503. default: true
  10504. },
  10505. {
  10506. name: "Smaller Macro",
  10507. height: math.unit(120, "meters")
  10508. },
  10509. {
  10510. name: "Bigger Macro",
  10511. height: math.unit(1.2, "km")
  10512. },
  10513. {
  10514. name: "Megamacro",
  10515. height: math.unit(15, "kilometers")
  10516. },
  10517. {
  10518. name: "Gigamacro",
  10519. height: math.unit(2000, "km")
  10520. },
  10521. {
  10522. name: "Teramacro",
  10523. height: math.unit(500000, "km")
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10529. {
  10530. side: {
  10531. height: math.unit(6, "feet"),
  10532. name: "Side",
  10533. image: {
  10534. source: "./media/characters/ailbhe/side.svg",
  10535. extra: 757 / 464,
  10536. bottom: 0.041
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Normal",
  10543. height: math.unit(1.07, "meters"),
  10544. default: true
  10545. },
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10550. {
  10551. front: {
  10552. height: math.unit(6, "feet"),
  10553. weight: math.unit(120, "kg"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/zevulfius/front.svg",
  10557. extra: 965 / 903
  10558. }
  10559. },
  10560. side: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(120, "kg"),
  10563. name: "Side",
  10564. image: {
  10565. source: "./media/characters/zevulfius/side.svg",
  10566. extra: 939 / 900
  10567. }
  10568. },
  10569. back: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(120, "kg"),
  10572. name: "Back",
  10573. image: {
  10574. source: "./media/characters/zevulfius/back.svg",
  10575. extra: 918 / 854,
  10576. bottom: 0.005
  10577. }
  10578. },
  10579. foot: {
  10580. height: math.unit(6 / 3.72, "feet"),
  10581. name: "Foot",
  10582. image: {
  10583. source: "./media/characters/zevulfius/foot.svg"
  10584. }
  10585. },
  10586. },
  10587. [
  10588. {
  10589. name: "Macro",
  10590. height: math.unit(750, "meters")
  10591. },
  10592. {
  10593. name: "Megamacro",
  10594. height: math.unit(20, "km"),
  10595. default: true
  10596. },
  10597. {
  10598. name: "Gigamacro",
  10599. height: math.unit(2000, "km")
  10600. },
  10601. {
  10602. name: "Teramacro",
  10603. height: math.unit(250000, "km")
  10604. },
  10605. ]
  10606. ))
  10607. characterMakers.push(() => makeCharacter(
  10608. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10609. {
  10610. front: {
  10611. height: math.unit(100, "feet"),
  10612. weight: math.unit(350, "kg"),
  10613. name: "Front",
  10614. image: {
  10615. source: "./media/characters/rikes/front.svg",
  10616. extra: 1565 / 1483,
  10617. bottom: 0.017
  10618. }
  10619. },
  10620. },
  10621. [
  10622. {
  10623. name: "Macro",
  10624. height: math.unit(100, "feet"),
  10625. default: true
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10631. {
  10632. front: {
  10633. height: math.unit(8, "feet"),
  10634. weight: math.unit(356, "lb"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/adam-silver-mane/front.svg",
  10638. extra: 1036/937,
  10639. bottom: 63/1099
  10640. }
  10641. },
  10642. side: {
  10643. height: math.unit(8, "feet"),
  10644. weight: math.unit(356, "lb"),
  10645. name: "Side",
  10646. image: {
  10647. source: "./media/characters/adam-silver-mane/side.svg",
  10648. extra: 997/901,
  10649. bottom: 59/1056
  10650. }
  10651. },
  10652. frontNsfw: {
  10653. height: math.unit(8, "feet"),
  10654. weight: math.unit(356, "lb"),
  10655. name: "Front (NSFW)",
  10656. image: {
  10657. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10658. extra: 1036/937,
  10659. bottom: 63/1099
  10660. }
  10661. },
  10662. sideNsfw: {
  10663. height: math.unit(8, "feet"),
  10664. weight: math.unit(356, "lb"),
  10665. name: "Side (NSFW)",
  10666. image: {
  10667. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10668. extra: 997/901,
  10669. bottom: 59/1056
  10670. }
  10671. },
  10672. dick: {
  10673. height: math.unit(2.1, "feet"),
  10674. name: "Dick",
  10675. image: {
  10676. source: "./media/characters/adam-silver-mane/dick.svg"
  10677. }
  10678. },
  10679. taur: {
  10680. height: math.unit(16, "feet"),
  10681. weight: math.unit(1500, "kg"),
  10682. name: "Taur",
  10683. image: {
  10684. source: "./media/characters/adam-silver-mane/taur.svg",
  10685. extra: 1713 / 1571,
  10686. bottom: 0.01
  10687. }
  10688. },
  10689. },
  10690. [
  10691. {
  10692. name: "Normal",
  10693. height: math.unit(8, "feet")
  10694. },
  10695. {
  10696. name: "Minimacro",
  10697. height: math.unit(80, "feet")
  10698. },
  10699. {
  10700. name: "MDA",
  10701. height: math.unit(80, "meters")
  10702. },
  10703. {
  10704. name: "Macro",
  10705. height: math.unit(800, "feet"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "Megamacro",
  10710. height: math.unit(8000, "feet")
  10711. },
  10712. {
  10713. name: "Gigamacro",
  10714. height: math.unit(800, "miles")
  10715. },
  10716. {
  10717. name: "Teramacro",
  10718. height: math.unit(80000, "miles")
  10719. },
  10720. {
  10721. name: "Celestial",
  10722. height: math.unit(8e6, "miles")
  10723. },
  10724. {
  10725. name: "Star Dragon",
  10726. height: math.unit(800000, "parsecs")
  10727. },
  10728. {
  10729. name: "Godly",
  10730. height: math.unit(800, "teraparsecs")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(150, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/ky'owin/front.svg",
  10743. extra: 3888 / 3068,
  10744. bottom: 0.015
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(6 + 8 / 12, "feet")
  10752. },
  10753. {
  10754. name: "Large",
  10755. height: math.unit(68, "feet")
  10756. },
  10757. {
  10758. name: "Macro",
  10759. height: math.unit(132, "feet")
  10760. },
  10761. {
  10762. name: "Macro+",
  10763. height: math.unit(340, "feet")
  10764. },
  10765. {
  10766. name: "Macro++",
  10767. height: math.unit(680, "feet"),
  10768. default: true
  10769. },
  10770. {
  10771. name: "Megamacro",
  10772. height: math.unit(1, "mile")
  10773. },
  10774. {
  10775. name: "Megamacro+",
  10776. height: math.unit(10, "miles")
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10782. {
  10783. front: {
  10784. height: math.unit(4, "feet"),
  10785. weight: math.unit(50, "lb"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/mal/front.svg",
  10789. extra: 785 / 724,
  10790. bottom: 0.07
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Micro",
  10797. height: math.unit(4, "inches")
  10798. },
  10799. {
  10800. name: "Normal",
  10801. height: math.unit(4, "feet"),
  10802. default: true
  10803. },
  10804. {
  10805. name: "Macro",
  10806. height: math.unit(200, "feet")
  10807. },
  10808. ]
  10809. ))
  10810. characterMakers.push(() => makeCharacter(
  10811. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10812. {
  10813. front: {
  10814. height: math.unit(6, "feet"),
  10815. weight: math.unit(150, "lb"),
  10816. name: "Front",
  10817. image: {
  10818. source: "./media/characters/jordan-deware/front.svg",
  10819. extra: 1191 / 1012
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Nano",
  10826. height: math.unit(0.01, "mm")
  10827. },
  10828. {
  10829. name: "Minimicro",
  10830. height: math.unit(1, "mm")
  10831. },
  10832. {
  10833. name: "Micro",
  10834. height: math.unit(0.5, "inches")
  10835. },
  10836. {
  10837. name: "Normal",
  10838. height: math.unit(4, "feet"),
  10839. default: true
  10840. },
  10841. {
  10842. name: "Minimacro",
  10843. height: math.unit(40, "meters")
  10844. },
  10845. {
  10846. name: "Small Macro",
  10847. height: math.unit(400, "meters")
  10848. },
  10849. {
  10850. name: "Macro",
  10851. height: math.unit(4, "miles")
  10852. },
  10853. {
  10854. name: "Megamacro",
  10855. height: math.unit(40, "miles")
  10856. },
  10857. {
  10858. name: "Megamacro+",
  10859. height: math.unit(400, "miles")
  10860. },
  10861. {
  10862. name: "Gigamacro",
  10863. height: math.unit(400000, "miles")
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10869. {
  10870. side: {
  10871. height: math.unit(6, "feet"),
  10872. weight: math.unit(150, "lb"),
  10873. name: "Side",
  10874. image: {
  10875. source: "./media/characters/kimiko/side.svg",
  10876. extra: 600 / 358
  10877. }
  10878. },
  10879. },
  10880. [
  10881. {
  10882. name: "Normal",
  10883. height: math.unit(15, "feet"),
  10884. default: true
  10885. },
  10886. {
  10887. name: "Macro",
  10888. height: math.unit(220, "feet")
  10889. },
  10890. {
  10891. name: "Macro+",
  10892. height: math.unit(1450, "feet")
  10893. },
  10894. {
  10895. name: "Megamacro",
  10896. height: math.unit(11500, "feet")
  10897. },
  10898. {
  10899. name: "Gigamacro",
  10900. height: math.unit(9500, "miles")
  10901. },
  10902. {
  10903. name: "Teramacro",
  10904. height: math.unit(2208005005, "miles")
  10905. },
  10906. {
  10907. name: "Examacro",
  10908. height: math.unit(2750, "parsecs")
  10909. },
  10910. {
  10911. name: "Zettamacro",
  10912. height: math.unit(101500, "parsecs")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(6, "feet"),
  10921. weight: math.unit(70, "kg"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/andrew-sleepy/front.svg"
  10925. }
  10926. },
  10927. side: {
  10928. height: math.unit(6, "feet"),
  10929. weight: math.unit(70, "kg"),
  10930. name: "Side",
  10931. image: {
  10932. source: "./media/characters/andrew-sleepy/side.svg"
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Micro",
  10939. height: math.unit(1, "mm"),
  10940. default: true
  10941. },
  10942. ]
  10943. ))
  10944. characterMakers.push(() => makeCharacter(
  10945. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10946. {
  10947. front: {
  10948. height: math.unit(6, "feet"),
  10949. weight: math.unit(150, "lb"),
  10950. name: "Front",
  10951. image: {
  10952. source: "./media/characters/judio/front.svg",
  10953. extra: 1258 / 1110
  10954. }
  10955. },
  10956. },
  10957. [
  10958. {
  10959. name: "Normal",
  10960. height: math.unit(5 + 6 / 12, "feet")
  10961. },
  10962. {
  10963. name: "Macro",
  10964. height: math.unit(1000, "feet"),
  10965. default: true
  10966. },
  10967. {
  10968. name: "Megamacro",
  10969. height: math.unit(10, "miles")
  10970. },
  10971. ]
  10972. ))
  10973. characterMakers.push(() => makeCharacter(
  10974. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10975. {
  10976. front: {
  10977. height: math.unit(6, "feet"),
  10978. weight: math.unit(68, "kg"),
  10979. name: "Front",
  10980. image: {
  10981. source: "./media/characters/nomaxice/front.svg",
  10982. extra: 1498 / 1073,
  10983. bottom: 0.075
  10984. }
  10985. },
  10986. foot: {
  10987. height: math.unit(1.1, "feet"),
  10988. name: "Foot",
  10989. image: {
  10990. source: "./media/characters/nomaxice/foot.svg"
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Micro",
  10997. height: math.unit(8, "cm")
  10998. },
  10999. {
  11000. name: "Norm",
  11001. height: math.unit(1.82, "m")
  11002. },
  11003. {
  11004. name: "Norm+",
  11005. height: math.unit(8.8, "feet")
  11006. },
  11007. {
  11008. name: "Big",
  11009. height: math.unit(8, "meters"),
  11010. default: true
  11011. },
  11012. {
  11013. name: "Macro",
  11014. height: math.unit(18, "meters")
  11015. },
  11016. {
  11017. name: "Macro+",
  11018. height: math.unit(88, "meters")
  11019. },
  11020. ]
  11021. ))
  11022. characterMakers.push(() => makeCharacter(
  11023. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11024. {
  11025. front: {
  11026. height: math.unit(12, "feet"),
  11027. weight: math.unit(1.5, "tons"),
  11028. name: "Front",
  11029. image: {
  11030. source: "./media/characters/dydros/front.svg",
  11031. extra: 863 / 800,
  11032. bottom: 0.015
  11033. }
  11034. },
  11035. back: {
  11036. height: math.unit(12, "feet"),
  11037. weight: math.unit(1.5, "tons"),
  11038. name: "Back",
  11039. image: {
  11040. source: "./media/characters/dydros/back.svg",
  11041. extra: 900 / 843,
  11042. bottom: 0.005
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Normal",
  11049. height: math.unit(12, "feet"),
  11050. default: true
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11056. {
  11057. front: {
  11058. height: math.unit(6, "feet"),
  11059. weight: math.unit(100, "kg"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/riggi/front.svg",
  11063. extra: 5787 / 5303
  11064. }
  11065. },
  11066. hyper: {
  11067. height: math.unit(6 * 5 / 3, "feet"),
  11068. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11069. name: "Hyper",
  11070. image: {
  11071. source: "./media/characters/riggi/hyper.svg",
  11072. extra: 3595 / 3485
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Small Macro",
  11079. height: math.unit(50, "feet")
  11080. },
  11081. {
  11082. name: "Default",
  11083. height: math.unit(200, "feet"),
  11084. default: true
  11085. },
  11086. {
  11087. name: "Loom",
  11088. height: math.unit(10000, "feet")
  11089. },
  11090. {
  11091. name: "Cruising Altitude",
  11092. height: math.unit(30000, "feet")
  11093. },
  11094. {
  11095. name: "Megamacro",
  11096. height: math.unit(100, "miles")
  11097. },
  11098. {
  11099. name: "Continent Sized",
  11100. height: math.unit(2800, "miles")
  11101. },
  11102. {
  11103. name: "Earth Sized",
  11104. height: math.unit(8000, "miles")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(250, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/alexi/front.svg",
  11117. extra: 3483 / 3291,
  11118. bottom: 0.04
  11119. }
  11120. },
  11121. back: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(250, "lb"),
  11124. name: "Back",
  11125. image: {
  11126. source: "./media/characters/alexi/back.svg",
  11127. extra: 3533 / 3356,
  11128. bottom: 0.021
  11129. }
  11130. },
  11131. frontTransforming: {
  11132. height: math.unit(8.58, "feet"),
  11133. weight: math.unit(1300, "lb"),
  11134. name: "Transforming",
  11135. image: {
  11136. source: "./media/characters/alexi/front-transforming.svg",
  11137. extra: 437 / 409,
  11138. bottom: 19 / 458.66
  11139. }
  11140. },
  11141. frontTransformed: {
  11142. height: math.unit(12.5, "feet"),
  11143. weight: math.unit(4000, "lb"),
  11144. name: "Transformed",
  11145. image: {
  11146. source: "./media/characters/alexi/front-transformed.svg",
  11147. extra: 639 / 614,
  11148. bottom: 30.55 / 671
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Normal",
  11155. height: math.unit(14, "feet"),
  11156. default: true
  11157. },
  11158. {
  11159. name: "Minimacro",
  11160. height: math.unit(30, "meters")
  11161. },
  11162. {
  11163. name: "Macro",
  11164. height: math.unit(500, "meters")
  11165. },
  11166. {
  11167. name: "Megamacro",
  11168. height: math.unit(9000, "km")
  11169. },
  11170. {
  11171. name: "Teramacro",
  11172. height: math.unit(384000, "km")
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(6, "feet"),
  11181. weight: math.unit(150, "lb"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/kayroo/front.svg",
  11185. extra: 1153 / 1038,
  11186. bottom: 0.06
  11187. }
  11188. },
  11189. foot: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(150, "lb"),
  11192. name: "Foot",
  11193. image: {
  11194. source: "./media/characters/kayroo/foot.svg"
  11195. }
  11196. },
  11197. },
  11198. [
  11199. {
  11200. name: "Normal",
  11201. height: math.unit(8, "feet"),
  11202. default: true
  11203. },
  11204. {
  11205. name: "Minimacro",
  11206. height: math.unit(250, "feet")
  11207. },
  11208. {
  11209. name: "Macro",
  11210. height: math.unit(2800, "feet")
  11211. },
  11212. {
  11213. name: "Megamacro",
  11214. height: math.unit(5200, "feet")
  11215. },
  11216. {
  11217. name: "Gigamacro",
  11218. height: math.unit(27000, "feet")
  11219. },
  11220. {
  11221. name: "Omega",
  11222. height: math.unit(45000, "feet")
  11223. },
  11224. ]
  11225. ))
  11226. characterMakers.push(() => makeCharacter(
  11227. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11228. {
  11229. front: {
  11230. height: math.unit(18, "feet"),
  11231. weight: math.unit(5800, "lb"),
  11232. name: "Front",
  11233. image: {
  11234. source: "./media/characters/rhys/front.svg",
  11235. extra: 3386 / 3090,
  11236. bottom: 0.07
  11237. }
  11238. },
  11239. },
  11240. [
  11241. {
  11242. name: "Normal",
  11243. height: math.unit(18, "feet"),
  11244. default: true
  11245. },
  11246. {
  11247. name: "Working Size",
  11248. height: math.unit(200, "feet")
  11249. },
  11250. {
  11251. name: "Demolition Size",
  11252. height: math.unit(2000, "feet")
  11253. },
  11254. {
  11255. name: "Maximum Licensed Size",
  11256. height: math.unit(5, "miles")
  11257. },
  11258. {
  11259. name: "Maximum Observed Size",
  11260. height: math.unit(10, "yottameters")
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(6, "feet"),
  11269. weight: math.unit(250, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/toto/front.svg",
  11273. extra: 527 / 479,
  11274. bottom: 0.05
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Micro",
  11281. height: math.unit(3, "feet")
  11282. },
  11283. {
  11284. name: "Normal",
  11285. height: math.unit(10, "feet")
  11286. },
  11287. {
  11288. name: "Macro",
  11289. height: math.unit(150, "feet"),
  11290. default: true
  11291. },
  11292. {
  11293. name: "Megamacro",
  11294. height: math.unit(1200, "feet")
  11295. },
  11296. ]
  11297. ))
  11298. characterMakers.push(() => makeCharacter(
  11299. { name: "King", species: ["lion"], tags: ["anthro"] },
  11300. {
  11301. back: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(150, "lb"),
  11304. name: "Back",
  11305. image: {
  11306. source: "./media/characters/king/back.svg"
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Micro",
  11313. height: math.unit(2, "inches")
  11314. },
  11315. {
  11316. name: "Normal",
  11317. height: math.unit(8, "feet")
  11318. },
  11319. {
  11320. name: "Macro",
  11321. height: math.unit(200, "feet"),
  11322. default: true
  11323. },
  11324. {
  11325. name: "Megamacro",
  11326. height: math.unit(50, "miles")
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(11, "feet"),
  11335. weight: math.unit(1400, "lb"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/cordite/front.svg",
  11339. extra: 1919/1827,
  11340. bottom: 40/1959
  11341. }
  11342. },
  11343. side: {
  11344. height: math.unit(11, "feet"),
  11345. weight: math.unit(1400, "lb"),
  11346. name: "Side",
  11347. image: {
  11348. source: "./media/characters/cordite/side.svg",
  11349. extra: 1908/1793,
  11350. bottom: 38/1946
  11351. }
  11352. },
  11353. back: {
  11354. height: math.unit(11, "feet"),
  11355. weight: math.unit(1400, "lb"),
  11356. name: "Back",
  11357. image: {
  11358. source: "./media/characters/cordite/back.svg",
  11359. extra: 1938/1837,
  11360. bottom: 10/1948
  11361. }
  11362. },
  11363. feral: {
  11364. height: math.unit(2, "feet"),
  11365. weight: math.unit(90, "lb"),
  11366. name: "Feral",
  11367. image: {
  11368. source: "./media/characters/cordite/feral.svg",
  11369. extra: 1260 / 755,
  11370. bottom: 0.05
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(11, "feet"),
  11378. default: true
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(6, "feet"),
  11387. weight: math.unit(150, "lb"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/pianostrong/front.svg",
  11391. extra: 6577 / 6254,
  11392. bottom: 0.02
  11393. }
  11394. },
  11395. side: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(150, "lb"),
  11398. name: "Side",
  11399. image: {
  11400. source: "./media/characters/pianostrong/side.svg",
  11401. extra: 6106 / 5730
  11402. }
  11403. },
  11404. back: {
  11405. height: math.unit(6, "feet"),
  11406. weight: math.unit(150, "lb"),
  11407. name: "Back",
  11408. image: {
  11409. source: "./media/characters/pianostrong/back.svg",
  11410. extra: 6085 / 5733,
  11411. bottom: 0.01
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Macro",
  11418. height: math.unit(100, "feet")
  11419. },
  11420. {
  11421. name: "Macro+",
  11422. height: math.unit(300, "feet"),
  11423. default: true
  11424. },
  11425. {
  11426. name: "Macro++",
  11427. height: math.unit(1000, "feet")
  11428. },
  11429. ]
  11430. ))
  11431. characterMakers.push(() => makeCharacter(
  11432. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11433. {
  11434. front: {
  11435. height: math.unit(6, "feet"),
  11436. weight: math.unit(150, "lb"),
  11437. name: "Front",
  11438. image: {
  11439. source: "./media/characters/kona/front.svg",
  11440. extra: 2960 / 2629,
  11441. bottom: 0.005
  11442. }
  11443. },
  11444. },
  11445. [
  11446. {
  11447. name: "Normal",
  11448. height: math.unit(11 + 8 / 12, "feet")
  11449. },
  11450. {
  11451. name: "Macro",
  11452. height: math.unit(850, "feet"),
  11453. default: true
  11454. },
  11455. {
  11456. name: "Macro+",
  11457. height: math.unit(1.5, "km"),
  11458. default: true
  11459. },
  11460. {
  11461. name: "Megamacro",
  11462. height: math.unit(80, "miles")
  11463. },
  11464. {
  11465. name: "Gigamacro",
  11466. height: math.unit(3500, "miles")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11472. {
  11473. side: {
  11474. height: math.unit(1.9, "meters"),
  11475. weight: math.unit(326, "kg"),
  11476. name: "Side",
  11477. image: {
  11478. source: "./media/characters/levi/side.svg",
  11479. extra: 1704 / 1334,
  11480. bottom: 0.02
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(1.9, "meters"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Macro",
  11492. height: math.unit(20, "meters")
  11493. },
  11494. {
  11495. name: "Macro+",
  11496. height: math.unit(200, "meters")
  11497. },
  11498. {
  11499. name: "Megamacro",
  11500. height: math.unit(2, "km")
  11501. },
  11502. {
  11503. name: "Megamacro+",
  11504. height: math.unit(20, "km")
  11505. },
  11506. {
  11507. name: "Gigamacro",
  11508. height: math.unit(2500, "km")
  11509. },
  11510. {
  11511. name: "Gigamacro+",
  11512. height: math.unit(120000, "km")
  11513. },
  11514. {
  11515. name: "Teramacro",
  11516. height: math.unit(7.77e6, "km")
  11517. },
  11518. ]
  11519. ))
  11520. characterMakers.push(() => makeCharacter(
  11521. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11522. {
  11523. front: {
  11524. height: math.unit(6 + 4/12, "feet"),
  11525. weight: math.unit(190, "lb"),
  11526. name: "Front",
  11527. image: {
  11528. source: "./media/characters/bmc/front.svg",
  11529. extra: 1626/1472,
  11530. bottom: 79/1705
  11531. }
  11532. },
  11533. back: {
  11534. height: math.unit(6 + 4/12, "feet"),
  11535. weight: math.unit(190, "lb"),
  11536. name: "Back",
  11537. image: {
  11538. source: "./media/characters/bmc/back.svg",
  11539. extra: 1640/1479,
  11540. bottom: 45/1685
  11541. }
  11542. },
  11543. frontArmor: {
  11544. height: math.unit(6 + 4/12, "feet"),
  11545. weight: math.unit(190, "lb"),
  11546. name: "Front-armor",
  11547. image: {
  11548. source: "./media/characters/bmc/front-armor.svg",
  11549. extra: 1538/1468,
  11550. bottom: 79/1617
  11551. }
  11552. },
  11553. },
  11554. [
  11555. {
  11556. name: "Human-sized",
  11557. height: math.unit(6 + 4 / 12, "feet")
  11558. },
  11559. {
  11560. name: "Interactive Size",
  11561. height: math.unit(25, "feet")
  11562. },
  11563. {
  11564. name: "Small",
  11565. height: math.unit(250, "feet")
  11566. },
  11567. {
  11568. name: "Normal",
  11569. height: math.unit(1250, "feet"),
  11570. default: true
  11571. },
  11572. {
  11573. name: "Good Day",
  11574. height: math.unit(88, "miles")
  11575. },
  11576. {
  11577. name: "Largest Measured Size",
  11578. height: math.unit(105.960, "galaxies")
  11579. },
  11580. ]
  11581. ))
  11582. characterMakers.push(() => makeCharacter(
  11583. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11584. {
  11585. front: {
  11586. height: math.unit(20, "feet"),
  11587. weight: math.unit(2016, "kg"),
  11588. name: "Front",
  11589. image: {
  11590. source: "./media/characters/sven-the-kaiju/front.svg",
  11591. extra: 1277/1250,
  11592. bottom: 35/1312
  11593. }
  11594. },
  11595. mouth: {
  11596. height: math.unit(1.85, "feet"),
  11597. name: "Mouth",
  11598. image: {
  11599. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Fairy",
  11606. height: math.unit(6, "inches")
  11607. },
  11608. {
  11609. name: "Normal",
  11610. height: math.unit(20, "feet"),
  11611. default: true
  11612. },
  11613. {
  11614. name: "Rampage",
  11615. height: math.unit(200, "feet")
  11616. },
  11617. {
  11618. name: "Archfey Forest Guardian",
  11619. height: math.unit(1, "mile")
  11620. },
  11621. ]
  11622. ))
  11623. characterMakers.push(() => makeCharacter(
  11624. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11625. {
  11626. front: {
  11627. height: math.unit(4, "meters"),
  11628. weight: math.unit(2, "tons"),
  11629. name: "Front",
  11630. image: {
  11631. source: "./media/characters/marik/front.svg",
  11632. extra: 1057 / 1003,
  11633. bottom: 0.08
  11634. }
  11635. },
  11636. },
  11637. [
  11638. {
  11639. name: "Normal",
  11640. height: math.unit(4, "meters"),
  11641. default: true
  11642. },
  11643. {
  11644. name: "Macro",
  11645. height: math.unit(20, "meters")
  11646. },
  11647. {
  11648. name: "Megamacro",
  11649. height: math.unit(50, "km")
  11650. },
  11651. {
  11652. name: "Gigamacro",
  11653. height: math.unit(100, "km")
  11654. },
  11655. {
  11656. name: "Alpha Macro",
  11657. height: math.unit(7.88e7, "yottameters")
  11658. },
  11659. ]
  11660. ))
  11661. characterMakers.push(() => makeCharacter(
  11662. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11663. {
  11664. front: {
  11665. height: math.unit(6, "feet"),
  11666. weight: math.unit(110, "lb"),
  11667. name: "Front",
  11668. image: {
  11669. source: "./media/characters/mel/front.svg",
  11670. extra: 736 / 617,
  11671. bottom: 0.017
  11672. }
  11673. },
  11674. },
  11675. [
  11676. {
  11677. name: "Pico",
  11678. height: math.unit(3, "pm")
  11679. },
  11680. {
  11681. name: "Nano",
  11682. height: math.unit(3, "nm")
  11683. },
  11684. {
  11685. name: "Micro",
  11686. height: math.unit(0.3, "mm"),
  11687. default: true
  11688. },
  11689. {
  11690. name: "Micro+",
  11691. height: math.unit(3, "mm")
  11692. },
  11693. {
  11694. name: "Normal",
  11695. height: math.unit(5 + 10.5 / 12, "feet")
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11701. {
  11702. kaiju: {
  11703. height: math.unit(1.75, "meters"),
  11704. weight: math.unit(55, "kg"),
  11705. name: "Kaiju",
  11706. image: {
  11707. source: "./media/characters/lykonous/kaiju.svg",
  11708. extra: 1055 / 946,
  11709. bottom: 0.135
  11710. }
  11711. },
  11712. },
  11713. [
  11714. {
  11715. name: "Normal",
  11716. height: math.unit(2.5, "meters"),
  11717. default: true
  11718. },
  11719. {
  11720. name: "Kaiju Dragon",
  11721. height: math.unit(60, "meters")
  11722. },
  11723. {
  11724. name: "Mega Kaiju",
  11725. height: math.unit(120, "km")
  11726. },
  11727. {
  11728. name: "Giga Kaiju",
  11729. height: math.unit(200, "megameters")
  11730. },
  11731. {
  11732. name: "Terra Kaiju",
  11733. height: math.unit(400, "gigameters")
  11734. },
  11735. {
  11736. name: "Kaiju Dragon God",
  11737. height: math.unit(13000, "exaparsecs")
  11738. },
  11739. ]
  11740. ))
  11741. characterMakers.push(() => makeCharacter(
  11742. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11743. {
  11744. front: {
  11745. height: math.unit(6, "feet"),
  11746. weight: math.unit(150, "lb"),
  11747. name: "Front",
  11748. image: {
  11749. source: "./media/characters/blü/front.svg",
  11750. extra: 1883 / 1564,
  11751. bottom: 0.031
  11752. }
  11753. },
  11754. },
  11755. [
  11756. {
  11757. name: "Normal",
  11758. height: math.unit(13, "feet"),
  11759. default: true
  11760. },
  11761. {
  11762. name: "Big Boi",
  11763. height: math.unit(150, "meters")
  11764. },
  11765. {
  11766. name: "Mini Stomper",
  11767. height: math.unit(300, "meters")
  11768. },
  11769. {
  11770. name: "Macro",
  11771. height: math.unit(1000, "meters")
  11772. },
  11773. {
  11774. name: "Megamacro",
  11775. height: math.unit(11000, "meters")
  11776. },
  11777. {
  11778. name: "Gigamacro",
  11779. height: math.unit(11000, "km")
  11780. },
  11781. {
  11782. name: "Teramacro",
  11783. height: math.unit(420000, "km")
  11784. },
  11785. {
  11786. name: "Examacro",
  11787. height: math.unit(120, "parsecs")
  11788. },
  11789. {
  11790. name: "God Tho",
  11791. height: math.unit(98000000000, "parsecs")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11797. {
  11798. taurFront: {
  11799. height: math.unit(6, "feet"),
  11800. weight: math.unit(200, "lb"),
  11801. name: "Taur (Front)",
  11802. image: {
  11803. source: "./media/characters/scales/taur-front.svg",
  11804. extra: 1,
  11805. bottom: 0.05
  11806. }
  11807. },
  11808. taurBack: {
  11809. height: math.unit(6, "feet"),
  11810. weight: math.unit(200, "lb"),
  11811. name: "Taur (Back)",
  11812. image: {
  11813. source: "./media/characters/scales/taur-back.svg",
  11814. extra: 1,
  11815. bottom: 0.08
  11816. }
  11817. },
  11818. anthro: {
  11819. height: math.unit(6 * 7 / 12, "feet"),
  11820. weight: math.unit(100, "lb"),
  11821. name: "Anthro",
  11822. image: {
  11823. source: "./media/characters/scales/anthro.svg",
  11824. extra: 1,
  11825. bottom: 0.06
  11826. }
  11827. },
  11828. },
  11829. [
  11830. {
  11831. name: "Normal",
  11832. height: math.unit(12, "feet"),
  11833. default: true
  11834. },
  11835. ]
  11836. ))
  11837. characterMakers.push(() => makeCharacter(
  11838. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11839. {
  11840. front: {
  11841. height: math.unit(6, "feet"),
  11842. weight: math.unit(150, "lb"),
  11843. name: "Front",
  11844. image: {
  11845. source: "./media/characters/koragos/front.svg",
  11846. extra: 841 / 794,
  11847. bottom: 0.035
  11848. }
  11849. },
  11850. back: {
  11851. height: math.unit(6, "feet"),
  11852. weight: math.unit(150, "lb"),
  11853. name: "Back",
  11854. image: {
  11855. source: "./media/characters/koragos/back.svg",
  11856. extra: 841 / 810,
  11857. bottom: 0.022
  11858. }
  11859. },
  11860. },
  11861. [
  11862. {
  11863. name: "Normal",
  11864. height: math.unit(6 + 11 / 12, "feet"),
  11865. default: true
  11866. },
  11867. {
  11868. name: "Macro",
  11869. height: math.unit(490, "feet")
  11870. },
  11871. {
  11872. name: "Megamacro",
  11873. height: math.unit(10, "miles")
  11874. },
  11875. {
  11876. name: "Gigamacro",
  11877. height: math.unit(50, "miles")
  11878. },
  11879. ]
  11880. ))
  11881. characterMakers.push(() => makeCharacter(
  11882. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11883. {
  11884. front: {
  11885. height: math.unit(6, "feet"),
  11886. weight: math.unit(250, "lb"),
  11887. name: "Front",
  11888. image: {
  11889. source: "./media/characters/xylrem/front.svg",
  11890. extra: 3323 / 3050,
  11891. bottom: 0.065
  11892. }
  11893. },
  11894. },
  11895. [
  11896. {
  11897. name: "Micro",
  11898. height: math.unit(4, "feet")
  11899. },
  11900. {
  11901. name: "Normal",
  11902. height: math.unit(16, "feet"),
  11903. default: true
  11904. },
  11905. {
  11906. name: "Macro",
  11907. height: math.unit(2720, "feet")
  11908. },
  11909. {
  11910. name: "Megamacro",
  11911. height: math.unit(25000, "miles")
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(8, "feet"),
  11920. weight: math.unit(250, "kg"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/ikideru/front.svg",
  11924. extra: 930 / 870,
  11925. bottom: 0.087
  11926. }
  11927. },
  11928. back: {
  11929. height: math.unit(8, "feet"),
  11930. weight: math.unit(250, "kg"),
  11931. name: "Back",
  11932. image: {
  11933. source: "./media/characters/ikideru/back.svg",
  11934. extra: 919 / 852,
  11935. bottom: 0.055
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Rare",
  11942. height: math.unit(8, "feet"),
  11943. default: true
  11944. },
  11945. {
  11946. name: "Playful Loom",
  11947. height: math.unit(80, "feet")
  11948. },
  11949. {
  11950. name: "City Leaner",
  11951. height: math.unit(230, "feet")
  11952. },
  11953. {
  11954. name: "Megamacro",
  11955. height: math.unit(2500, "feet")
  11956. },
  11957. {
  11958. name: "Gigamacro",
  11959. height: math.unit(26400, "feet")
  11960. },
  11961. {
  11962. name: "Tectonic Shifter",
  11963. height: math.unit(1.7, "megameters")
  11964. },
  11965. {
  11966. name: "Planet Carer",
  11967. height: math.unit(21, "megameters")
  11968. },
  11969. {
  11970. name: "God",
  11971. height: math.unit(11157.22, "parsecs")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(6, "feet"),
  11980. weight: math.unit(120, "lb"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/neo/front.svg"
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Micro",
  11990. height: math.unit(2, "inches"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Human Size",
  11995. height: math.unit(5 + 8 / 12, "feet")
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(13 + 10 / 12, "feet"),
  12004. weight: math.unit(5320, "lb"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/chauncey-chantz/front.svg",
  12008. extra: 1587 / 1435,
  12009. bottom: 0.02
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Normal",
  12016. height: math.unit(13 + 10 / 12, "feet"),
  12017. default: true
  12018. },
  12019. {
  12020. name: "Macro",
  12021. height: math.unit(45, "feet")
  12022. },
  12023. {
  12024. name: "Megamacro",
  12025. height: math.unit(250, "miles")
  12026. },
  12027. {
  12028. name: "Planetary",
  12029. height: math.unit(10000, "miles")
  12030. },
  12031. {
  12032. name: "Galactic",
  12033. height: math.unit(40000, "parsecs")
  12034. },
  12035. {
  12036. name: "Universal",
  12037. height: math.unit(1, "yottameter")
  12038. },
  12039. ]
  12040. ))
  12041. characterMakers.push(() => makeCharacter(
  12042. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12043. {
  12044. front: {
  12045. height: math.unit(6, "feet"),
  12046. weight: math.unit(150, "lb"),
  12047. name: "Front",
  12048. image: {
  12049. source: "./media/characters/epifox/front.svg",
  12050. extra: 1,
  12051. bottom: 0.075
  12052. }
  12053. },
  12054. },
  12055. [
  12056. {
  12057. name: "Micro",
  12058. height: math.unit(6, "inches")
  12059. },
  12060. {
  12061. name: "Normal",
  12062. height: math.unit(12, "feet"),
  12063. default: true
  12064. },
  12065. {
  12066. name: "Macro",
  12067. height: math.unit(3810, "feet")
  12068. },
  12069. {
  12070. name: "Megamacro",
  12071. height: math.unit(500, "miles")
  12072. },
  12073. ]
  12074. ))
  12075. characterMakers.push(() => makeCharacter(
  12076. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12077. {
  12078. front: {
  12079. height: math.unit(1.8796, "m"),
  12080. weight: math.unit(230, "lb"),
  12081. name: "Front",
  12082. image: {
  12083. source: "./media/characters/colin-t/front.svg",
  12084. extra: 1272 / 1193,
  12085. bottom: 0.07
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Micro",
  12092. height: math.unit(0.571, "meters")
  12093. },
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(1.8796, "meters"),
  12097. default: true
  12098. },
  12099. {
  12100. name: "Tall",
  12101. height: math.unit(4, "meters")
  12102. },
  12103. {
  12104. name: "Macro",
  12105. height: math.unit(67.241, "meters")
  12106. },
  12107. {
  12108. name: "Megamacro",
  12109. height: math.unit(371.856, "meters")
  12110. },
  12111. {
  12112. name: "Planetary",
  12113. height: math.unit(12631.5689, "km")
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12119. {
  12120. front: {
  12121. height: math.unit(1.85, "meters"),
  12122. weight: math.unit(80, "kg"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/matvei/front.svg",
  12126. extra: 614 / 594,
  12127. bottom: 0.01
  12128. }
  12129. },
  12130. },
  12131. [
  12132. {
  12133. name: "Normal",
  12134. height: math.unit(1.85, "meters"),
  12135. default: true
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12141. {
  12142. front: {
  12143. height: math.unit(5 + 9 / 12, "feet"),
  12144. weight: math.unit(70, "lb"),
  12145. name: "Front",
  12146. image: {
  12147. source: "./media/characters/quincy/front.svg",
  12148. extra: 3041 / 2751
  12149. }
  12150. },
  12151. back: {
  12152. height: math.unit(5 + 9 / 12, "feet"),
  12153. weight: math.unit(70, "lb"),
  12154. name: "Back",
  12155. image: {
  12156. source: "./media/characters/quincy/back.svg",
  12157. extra: 3041 / 2751
  12158. }
  12159. },
  12160. flying: {
  12161. height: math.unit(5 + 4 / 12, "feet"),
  12162. weight: math.unit(70, "lb"),
  12163. name: "Flying",
  12164. image: {
  12165. source: "./media/characters/quincy/flying.svg",
  12166. extra: 1044 / 930
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Micro",
  12173. height: math.unit(3, "cm")
  12174. },
  12175. {
  12176. name: "Normal",
  12177. height: math.unit(5 + 9 / 12, "feet")
  12178. },
  12179. {
  12180. name: "Macro",
  12181. height: math.unit(200, "meters"),
  12182. default: true
  12183. },
  12184. {
  12185. name: "Megamacro",
  12186. height: math.unit(1000, "meters")
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12192. {
  12193. front: {
  12194. height: math.unit(3 + 11/12, "feet"),
  12195. weight: math.unit(50, "lb"),
  12196. name: "Front",
  12197. image: {
  12198. source: "./media/characters/vanrel/front.svg",
  12199. extra: 1104/949,
  12200. bottom: 52/1156
  12201. }
  12202. },
  12203. back: {
  12204. height: math.unit(3 + 11/12, "feet"),
  12205. weight: math.unit(50, "lb"),
  12206. name: "Back",
  12207. image: {
  12208. source: "./media/characters/vanrel/back.svg",
  12209. extra: 1119/976,
  12210. bottom: 37/1156
  12211. }
  12212. },
  12213. tome: {
  12214. height: math.unit(1.35, "feet"),
  12215. weight: math.unit(10, "lb"),
  12216. name: "Vanrel's Tome",
  12217. rename: true,
  12218. image: {
  12219. source: "./media/characters/vanrel/tome.svg"
  12220. }
  12221. },
  12222. beans: {
  12223. height: math.unit(0.89, "feet"),
  12224. name: "Beans",
  12225. image: {
  12226. source: "./media/characters/vanrel/beans.svg"
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Normal",
  12233. height: math.unit(3 + 11/12, "feet"),
  12234. default: true
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(7 + 5 / 12, "feet"),
  12243. name: "Front",
  12244. image: {
  12245. source: "./media/characters/kuiper-vanrel/front.svg",
  12246. extra: 1219/1169,
  12247. bottom: 69/1288
  12248. }
  12249. },
  12250. back: {
  12251. height: math.unit(7 + 5 / 12, "feet"),
  12252. name: "Back",
  12253. image: {
  12254. source: "./media/characters/kuiper-vanrel/back.svg",
  12255. extra: 1236/1193,
  12256. bottom: 27/1263
  12257. }
  12258. },
  12259. foot: {
  12260. height: math.unit(0.55, "meters"),
  12261. name: "Foot",
  12262. image: {
  12263. source: "./media/characters/kuiper-vanrel/foot.svg",
  12264. }
  12265. },
  12266. battle: {
  12267. height: math.unit(6.824, "feet"),
  12268. name: "Battle",
  12269. image: {
  12270. source: "./media/characters/kuiper-vanrel/battle.svg",
  12271. extra: 1466 / 1327,
  12272. bottom: 29 / 1492.5
  12273. }
  12274. },
  12275. meerkui: {
  12276. height: math.unit(18, "inches"),
  12277. name: "Meerkui",
  12278. image: {
  12279. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12280. extra: 1354/1289,
  12281. bottom: 69/1423
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Normal",
  12288. height: math.unit(7 + 5 / 12, "feet"),
  12289. default: true
  12290. },
  12291. ]
  12292. ))
  12293. characterMakers.push(() => makeCharacter(
  12294. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12295. {
  12296. front: {
  12297. height: math.unit(8 + 5 / 12, "feet"),
  12298. name: "Front",
  12299. image: {
  12300. source: "./media/characters/keset-vanrel/front.svg",
  12301. extra: 1231/1148,
  12302. bottom: 82/1313
  12303. }
  12304. },
  12305. back: {
  12306. height: math.unit(8 + 5 / 12, "feet"),
  12307. name: "Back",
  12308. image: {
  12309. source: "./media/characters/keset-vanrel/back.svg",
  12310. extra: 1240/1174,
  12311. bottom: 33/1273
  12312. }
  12313. },
  12314. hand: {
  12315. height: math.unit(0.6, "meters"),
  12316. name: "Hand",
  12317. image: {
  12318. source: "./media/characters/keset-vanrel/hand.svg"
  12319. }
  12320. },
  12321. foot: {
  12322. height: math.unit(0.94978, "meters"),
  12323. name: "Foot",
  12324. image: {
  12325. source: "./media/characters/keset-vanrel/foot.svg"
  12326. }
  12327. },
  12328. battle: {
  12329. height: math.unit(7.408, "feet"),
  12330. name: "Battle",
  12331. image: {
  12332. source: "./media/characters/keset-vanrel/battle.svg",
  12333. extra: 1890 / 1386,
  12334. bottom: 73.28 / 1970
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Normal",
  12341. height: math.unit(8 + 5 / 12, "feet"),
  12342. default: true
  12343. },
  12344. ]
  12345. ))
  12346. characterMakers.push(() => makeCharacter(
  12347. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12348. {
  12349. front: {
  12350. height: math.unit(6, "feet"),
  12351. weight: math.unit(150, "lb"),
  12352. name: "Front",
  12353. image: {
  12354. source: "./media/characters/neos/front.svg",
  12355. extra: 1696 / 992,
  12356. bottom: 0.14
  12357. }
  12358. },
  12359. },
  12360. [
  12361. {
  12362. name: "Normal",
  12363. height: math.unit(54, "cm"),
  12364. default: true
  12365. },
  12366. {
  12367. name: "Macro",
  12368. height: math.unit(100, "m")
  12369. },
  12370. {
  12371. name: "Megamacro",
  12372. height: math.unit(10, "km")
  12373. },
  12374. {
  12375. name: "Megamacro+",
  12376. height: math.unit(100, "km")
  12377. },
  12378. {
  12379. name: "Gigamacro",
  12380. height: math.unit(100, "Mm")
  12381. },
  12382. {
  12383. name: "Teramacro",
  12384. height: math.unit(100, "Gm")
  12385. },
  12386. {
  12387. name: "Examacro",
  12388. height: math.unit(100, "Em")
  12389. },
  12390. {
  12391. name: "Godly",
  12392. height: math.unit(10000, "Ym")
  12393. },
  12394. {
  12395. name: "Beyond Godly",
  12396. height: math.unit(25, "multiverses")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12402. {
  12403. feminine: {
  12404. height: math.unit(5, "feet"),
  12405. weight: math.unit(100, "lb"),
  12406. name: "Feminine",
  12407. image: {
  12408. source: "./media/characters/sammy-mouse/feminine.svg",
  12409. extra: 2526 / 2425,
  12410. bottom: 0.123
  12411. }
  12412. },
  12413. masculine: {
  12414. height: math.unit(5, "feet"),
  12415. weight: math.unit(100, "lb"),
  12416. name: "Masculine",
  12417. image: {
  12418. source: "./media/characters/sammy-mouse/masculine.svg",
  12419. extra: 2526 / 2425,
  12420. bottom: 0.123
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Micro",
  12427. height: math.unit(5, "inches")
  12428. },
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(5, "feet"),
  12432. default: true
  12433. },
  12434. {
  12435. name: "Macro",
  12436. height: math.unit(60, "feet")
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(4, "feet"),
  12445. weight: math.unit(50, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/kole/front.svg",
  12449. extra: 1423 / 1303,
  12450. bottom: 0.025
  12451. }
  12452. },
  12453. back: {
  12454. height: math.unit(4, "feet"),
  12455. weight: math.unit(50, "lb"),
  12456. name: "Back",
  12457. image: {
  12458. source: "./media/characters/kole/back.svg",
  12459. extra: 1426 / 1280,
  12460. bottom: 0.02
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Normal",
  12467. height: math.unit(4, "feet"),
  12468. default: true
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12474. {
  12475. front: {
  12476. height: math.unit(2.5, "feet"),
  12477. weight: math.unit(32, "lb"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/rufran/front.svg",
  12481. extra: 1313/885,
  12482. bottom: 94/1407
  12483. }
  12484. },
  12485. side: {
  12486. height: math.unit(2.5, "feet"),
  12487. weight: math.unit(32, "lb"),
  12488. name: "Side",
  12489. image: {
  12490. source: "./media/characters/rufran/side.svg",
  12491. extra: 1109/852,
  12492. bottom: 118/1227
  12493. }
  12494. },
  12495. back: {
  12496. height: math.unit(2.5, "feet"),
  12497. weight: math.unit(32, "lb"),
  12498. name: "Back",
  12499. image: {
  12500. source: "./media/characters/rufran/back.svg",
  12501. extra: 1280/878,
  12502. bottom: 131/1411
  12503. }
  12504. },
  12505. mouth: {
  12506. height: math.unit(1.13, "feet"),
  12507. name: "Mouth",
  12508. image: {
  12509. source: "./media/characters/rufran/mouth.svg"
  12510. }
  12511. },
  12512. foot: {
  12513. height: math.unit(1.33, "feet"),
  12514. name: "Foot",
  12515. image: {
  12516. source: "./media/characters/rufran/foot.svg"
  12517. }
  12518. },
  12519. koboldFront: {
  12520. height: math.unit(2 + 6 / 12, "feet"),
  12521. weight: math.unit(20, "lb"),
  12522. name: "Front (Kobold)",
  12523. image: {
  12524. source: "./media/characters/rufran/kobold-front.svg",
  12525. extra: 2041 / 1839,
  12526. bottom: 0.055
  12527. }
  12528. },
  12529. koboldBack: {
  12530. height: math.unit(2 + 6 / 12, "feet"),
  12531. weight: math.unit(20, "lb"),
  12532. name: "Back (Kobold)",
  12533. image: {
  12534. source: "./media/characters/rufran/kobold-back.svg",
  12535. extra: 2054 / 1839,
  12536. bottom: 0.01
  12537. }
  12538. },
  12539. koboldHand: {
  12540. height: math.unit(0.2166, "meters"),
  12541. name: "Hand (Kobold)",
  12542. image: {
  12543. source: "./media/characters/rufran/kobold-hand.svg"
  12544. }
  12545. },
  12546. koboldFoot: {
  12547. height: math.unit(0.185, "meters"),
  12548. name: "Foot (Kobold)",
  12549. image: {
  12550. source: "./media/characters/rufran/kobold-foot.svg"
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Micro",
  12557. height: math.unit(1, "inch")
  12558. },
  12559. {
  12560. name: "Normal",
  12561. height: math.unit(2 + 6 / 12, "feet"),
  12562. default: true
  12563. },
  12564. {
  12565. name: "Big",
  12566. height: math.unit(60, "feet")
  12567. },
  12568. {
  12569. name: "Macro",
  12570. height: math.unit(325, "feet")
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12576. {
  12577. front: {
  12578. height: math.unit(0.3, "meters"),
  12579. weight: math.unit(3.5, "kg"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/chip/front.svg",
  12583. extra: 748 / 674
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Micro",
  12590. height: math.unit(1, "inch"),
  12591. default: true
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12597. {
  12598. side: {
  12599. height: math.unit(2.3, "meters"),
  12600. weight: math.unit(3500, "lb"),
  12601. name: "Side",
  12602. image: {
  12603. source: "./media/characters/torvid/side.svg",
  12604. extra: 1972 / 722,
  12605. bottom: 0.035
  12606. }
  12607. },
  12608. },
  12609. [
  12610. {
  12611. name: "Normal",
  12612. height: math.unit(2.3, "meters"),
  12613. default: true
  12614. },
  12615. ]
  12616. ))
  12617. characterMakers.push(() => makeCharacter(
  12618. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12619. {
  12620. front: {
  12621. height: math.unit(2, "meters"),
  12622. weight: math.unit(150.5, "kg"),
  12623. name: "Front",
  12624. image: {
  12625. source: "./media/characters/susan/front.svg",
  12626. extra: 693 / 635,
  12627. bottom: 0.05
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Megamacro",
  12634. height: math.unit(505, "miles"),
  12635. default: true
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(6, "feet"),
  12644. weight: math.unit(150, "lb"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/raindrops/front.svg",
  12648. extra: 2655 / 2461,
  12649. bottom: 49 / 2705
  12650. }
  12651. },
  12652. back: {
  12653. height: math.unit(6, "feet"),
  12654. weight: math.unit(150, "lb"),
  12655. name: "Back",
  12656. image: {
  12657. source: "./media/characters/raindrops/back.svg",
  12658. extra: 2574 / 2400,
  12659. bottom: 65 / 2634
  12660. }
  12661. },
  12662. },
  12663. [
  12664. {
  12665. name: "Micro",
  12666. height: math.unit(6, "inches")
  12667. },
  12668. {
  12669. name: "Normal",
  12670. height: math.unit(6 + 2 / 12, "feet")
  12671. },
  12672. {
  12673. name: "Macro",
  12674. height: math.unit(131, "feet"),
  12675. default: true
  12676. },
  12677. {
  12678. name: "Megamacro",
  12679. height: math.unit(15, "miles")
  12680. },
  12681. {
  12682. name: "Gigamacro",
  12683. height: math.unit(4000, "miles")
  12684. },
  12685. {
  12686. name: "Teramacro",
  12687. height: math.unit(315000, "miles")
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(2.794, "meters"),
  12696. weight: math.unit(325, "kg"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/tezwa/front.svg",
  12700. extra: 2083 / 1906,
  12701. bottom: 0.031
  12702. }
  12703. },
  12704. foot: {
  12705. height: math.unit(0.687, "meters"),
  12706. name: "Foot",
  12707. image: {
  12708. source: "./media/characters/tezwa/foot.svg"
  12709. }
  12710. },
  12711. },
  12712. [
  12713. {
  12714. name: "Normal",
  12715. height: math.unit(9 + 2 / 12, "feet"),
  12716. default: true
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12722. {
  12723. front: {
  12724. height: math.unit(58, "feet"),
  12725. weight: math.unit(89000, "lb"),
  12726. name: "Front",
  12727. image: {
  12728. source: "./media/characters/typhus/front.svg",
  12729. extra: 816 / 800,
  12730. bottom: 0.065
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Macro",
  12737. height: math.unit(58, "feet"),
  12738. default: true
  12739. },
  12740. ]
  12741. ))
  12742. characterMakers.push(() => makeCharacter(
  12743. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12744. {
  12745. front: {
  12746. height: math.unit(12, "feet"),
  12747. weight: math.unit(6, "tonnes"),
  12748. name: "Front",
  12749. image: {
  12750. source: "./media/characters/lyra-von-wulf/front.svg",
  12751. extra: 1,
  12752. bottom: 0.10
  12753. }
  12754. },
  12755. frontMecha: {
  12756. height: math.unit(12, "feet"),
  12757. weight: math.unit(12, "tonnes"),
  12758. name: "Front (Mecha)",
  12759. image: {
  12760. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12761. extra: 1,
  12762. bottom: 0.042
  12763. }
  12764. },
  12765. maw: {
  12766. height: math.unit(2.2, "feet"),
  12767. name: "Maw",
  12768. image: {
  12769. source: "./media/characters/lyra-von-wulf/maw.svg"
  12770. }
  12771. },
  12772. },
  12773. [
  12774. {
  12775. name: "Normal",
  12776. height: math.unit(12, "feet"),
  12777. default: true
  12778. },
  12779. {
  12780. name: "Classic",
  12781. height: math.unit(50, "feet")
  12782. },
  12783. {
  12784. name: "Macro",
  12785. height: math.unit(500, "feet")
  12786. },
  12787. {
  12788. name: "Megamacro",
  12789. height: math.unit(1, "mile")
  12790. },
  12791. {
  12792. name: "Gigamacro",
  12793. height: math.unit(400, "miles")
  12794. },
  12795. {
  12796. name: "Teramacro",
  12797. height: math.unit(22000, "miles")
  12798. },
  12799. {
  12800. name: "Solarmacro",
  12801. height: math.unit(8600000, "miles")
  12802. },
  12803. {
  12804. name: "Galactic",
  12805. height: math.unit(1057000, "lightyears")
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12811. {
  12812. front: {
  12813. height: math.unit(6 + 10 / 12, "feet"),
  12814. weight: math.unit(150, "lb"),
  12815. name: "Front",
  12816. image: {
  12817. source: "./media/characters/dixon/front.svg",
  12818. extra: 3361 / 3209,
  12819. bottom: 0.01
  12820. }
  12821. },
  12822. },
  12823. [
  12824. {
  12825. name: "Normal",
  12826. height: math.unit(6 + 10 / 12, "feet"),
  12827. default: true
  12828. },
  12829. {
  12830. name: "Big",
  12831. height: math.unit(12, "meters")
  12832. },
  12833. {
  12834. name: "Macro",
  12835. height: math.unit(500, "meters")
  12836. },
  12837. {
  12838. name: "Megamacro",
  12839. height: math.unit(2, "km")
  12840. },
  12841. ]
  12842. ))
  12843. characterMakers.push(() => makeCharacter(
  12844. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12845. {
  12846. front: {
  12847. height: math.unit(185, "cm"),
  12848. weight: math.unit(68, "kg"),
  12849. name: "Front",
  12850. image: {
  12851. source: "./media/characters/kauko/front.svg",
  12852. extra: 1455 / 1421,
  12853. bottom: 0.03
  12854. }
  12855. },
  12856. back: {
  12857. height: math.unit(185, "cm"),
  12858. weight: math.unit(68, "kg"),
  12859. name: "Back",
  12860. image: {
  12861. source: "./media/characters/kauko/back.svg",
  12862. extra: 1455 / 1421,
  12863. bottom: 0.004
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(185, "cm"),
  12871. default: true
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12877. {
  12878. front: {
  12879. height: math.unit(6, "feet"),
  12880. weight: math.unit(150, "kg"),
  12881. name: "Front",
  12882. image: {
  12883. source: "./media/characters/varg/front.svg",
  12884. extra: 1108 / 1018,
  12885. bottom: 0.0375
  12886. }
  12887. },
  12888. },
  12889. [
  12890. {
  12891. name: "Normal",
  12892. height: math.unit(5, "meters")
  12893. },
  12894. {
  12895. name: "Macro",
  12896. height: math.unit(200, "meters")
  12897. },
  12898. {
  12899. name: "Megamacro",
  12900. height: math.unit(20, "kilometers")
  12901. },
  12902. {
  12903. name: "True Size",
  12904. height: math.unit(211, "km"),
  12905. default: true
  12906. },
  12907. {
  12908. name: "Gigamacro",
  12909. height: math.unit(1000, "km")
  12910. },
  12911. {
  12912. name: "Gigamacro+",
  12913. height: math.unit(8000, "km")
  12914. },
  12915. {
  12916. name: "Teramacro",
  12917. height: math.unit(1000000, "km")
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12923. {
  12924. front: {
  12925. height: math.unit(7 + 7 / 12, "feet"),
  12926. weight: math.unit(267, "lb"),
  12927. name: "Front",
  12928. image: {
  12929. source: "./media/characters/dayza/front.svg",
  12930. extra: 1262 / 1200,
  12931. bottom: 0.035
  12932. }
  12933. },
  12934. side: {
  12935. height: math.unit(7 + 7 / 12, "feet"),
  12936. weight: math.unit(267, "lb"),
  12937. name: "Side",
  12938. image: {
  12939. source: "./media/characters/dayza/side.svg",
  12940. extra: 1295 / 1245,
  12941. bottom: 0.05
  12942. }
  12943. },
  12944. back: {
  12945. height: math.unit(7 + 7 / 12, "feet"),
  12946. weight: math.unit(267, "lb"),
  12947. name: "Back",
  12948. image: {
  12949. source: "./media/characters/dayza/back.svg",
  12950. extra: 1241 / 1170
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Normal",
  12957. height: math.unit(7 + 7 / 12, "feet"),
  12958. default: true
  12959. },
  12960. {
  12961. name: "Macro",
  12962. height: math.unit(155, "feet")
  12963. },
  12964. ]
  12965. ))
  12966. characterMakers.push(() => makeCharacter(
  12967. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12968. {
  12969. front: {
  12970. height: math.unit(6 + 5 / 12, "feet"),
  12971. weight: math.unit(160, "lb"),
  12972. name: "Front",
  12973. image: {
  12974. source: "./media/characters/xanthos/front.svg",
  12975. extra: 1,
  12976. bottom: 0.04
  12977. }
  12978. },
  12979. back: {
  12980. height: math.unit(6 + 5 / 12, "feet"),
  12981. weight: math.unit(160, "lb"),
  12982. name: "Back",
  12983. image: {
  12984. source: "./media/characters/xanthos/back.svg",
  12985. extra: 1,
  12986. bottom: 0.03
  12987. }
  12988. },
  12989. hand: {
  12990. height: math.unit(0.928, "feet"),
  12991. name: "Hand",
  12992. image: {
  12993. source: "./media/characters/xanthos/hand.svg"
  12994. }
  12995. },
  12996. foot: {
  12997. height: math.unit(1.286, "feet"),
  12998. name: "Foot",
  12999. image: {
  13000. source: "./media/characters/xanthos/foot.svg"
  13001. }
  13002. },
  13003. },
  13004. [
  13005. {
  13006. name: "Normal",
  13007. height: math.unit(6 + 5 / 12, "feet"),
  13008. default: true
  13009. },
  13010. {
  13011. name: "Normal+",
  13012. height: math.unit(6, "meters")
  13013. },
  13014. {
  13015. name: "Macro",
  13016. height: math.unit(40, "feet")
  13017. },
  13018. {
  13019. name: "Macro+",
  13020. height: math.unit(200, "meters")
  13021. },
  13022. {
  13023. name: "Megamacro",
  13024. height: math.unit(20, "km")
  13025. },
  13026. {
  13027. name: "Megamacro+",
  13028. height: math.unit(100, "km")
  13029. },
  13030. {
  13031. name: "Gigamacro",
  13032. height: math.unit(200, "megameters")
  13033. },
  13034. {
  13035. name: "Gigamacro+",
  13036. height: math.unit(1.5, "gigameters")
  13037. },
  13038. ]
  13039. ))
  13040. characterMakers.push(() => makeCharacter(
  13041. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13042. {
  13043. front: {
  13044. height: math.unit(6 + 3 / 12, "feet"),
  13045. weight: math.unit(215, "lb"),
  13046. name: "Front",
  13047. image: {
  13048. source: "./media/characters/grynn/front.svg",
  13049. extra: 4627 / 4209,
  13050. bottom: 0.047
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Micro",
  13057. height: math.unit(6, "inches")
  13058. },
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(6 + 3 / 12, "feet"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Big",
  13066. height: math.unit(104, "feet")
  13067. },
  13068. {
  13069. name: "Macro",
  13070. height: math.unit(944, "feet")
  13071. },
  13072. {
  13073. name: "Macro+",
  13074. height: math.unit(9480, "feet")
  13075. },
  13076. {
  13077. name: "Megamacro",
  13078. height: math.unit(78752, "feet")
  13079. },
  13080. {
  13081. name: "Megamacro+",
  13082. height: math.unit(630128, "feet")
  13083. },
  13084. {
  13085. name: "Megamacro++",
  13086. height: math.unit(3150695, "feet")
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13092. {
  13093. front: {
  13094. height: math.unit(7 + 5 / 12, "feet"),
  13095. weight: math.unit(450, "lb"),
  13096. name: "Front",
  13097. image: {
  13098. source: "./media/characters/mocha-aura/front.svg",
  13099. extra: 1907 / 1817,
  13100. bottom: 0.04
  13101. }
  13102. },
  13103. back: {
  13104. height: math.unit(7 + 5 / 12, "feet"),
  13105. weight: math.unit(450, "lb"),
  13106. name: "Back",
  13107. image: {
  13108. source: "./media/characters/mocha-aura/back.svg",
  13109. extra: 1900 / 1825,
  13110. bottom: 0.045
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Nano",
  13117. height: math.unit(1, "nm")
  13118. },
  13119. {
  13120. name: "Megamicro",
  13121. height: math.unit(1, "mm")
  13122. },
  13123. {
  13124. name: "Micro",
  13125. height: math.unit(3, "inches")
  13126. },
  13127. {
  13128. name: "Normal",
  13129. height: math.unit(7 + 5 / 12, "feet"),
  13130. default: true
  13131. },
  13132. {
  13133. name: "Macro",
  13134. height: math.unit(30, "feet")
  13135. },
  13136. {
  13137. name: "Megamacro",
  13138. height: math.unit(3500, "feet")
  13139. },
  13140. {
  13141. name: "Teramacro",
  13142. height: math.unit(500000, "miles")
  13143. },
  13144. {
  13145. name: "Petamacro",
  13146. height: math.unit(50000000000000000, "parsecs")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13152. {
  13153. front: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(150, "lb"),
  13156. name: "Front",
  13157. image: {
  13158. source: "./media/characters/ilisha-devya/front.svg",
  13159. extra: 1053/1049,
  13160. bottom: 270/1323
  13161. }
  13162. },
  13163. back: {
  13164. height: math.unit(6, "feet"),
  13165. weight: math.unit(150, "lb"),
  13166. name: "Back",
  13167. image: {
  13168. source: "./media/characters/ilisha-devya/back.svg",
  13169. extra: 1131/1128,
  13170. bottom: 39/1170
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Macro",
  13177. height: math.unit(500, "feet"),
  13178. default: true
  13179. },
  13180. {
  13181. name: "Megamacro",
  13182. height: math.unit(10, "miles")
  13183. },
  13184. {
  13185. name: "Gigamacro",
  13186. height: math.unit(100000, "miles")
  13187. },
  13188. {
  13189. name: "Examacro",
  13190. height: math.unit(1e9, "lightyears")
  13191. },
  13192. {
  13193. name: "Omniversal",
  13194. height: math.unit(1e33, "lightyears")
  13195. },
  13196. {
  13197. name: "Beyond Infinite",
  13198. height: math.unit(1e100, "lightyears")
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13204. {
  13205. Side: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Side",
  13209. image: {
  13210. source: "./media/characters/mira/side.svg",
  13211. extra: 900 / 799,
  13212. bottom: 0.02
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Human Size",
  13219. height: math.unit(6, "feet")
  13220. },
  13221. {
  13222. name: "Macro",
  13223. height: math.unit(100, "feet"),
  13224. default: true
  13225. },
  13226. {
  13227. name: "Megamacro",
  13228. height: math.unit(10, "miles")
  13229. },
  13230. {
  13231. name: "Gigamacro",
  13232. height: math.unit(25000, "miles")
  13233. },
  13234. {
  13235. name: "Teramacro",
  13236. height: math.unit(300, "AU")
  13237. },
  13238. {
  13239. name: "Full Size",
  13240. height: math.unit(4.5e10, "lightyears")
  13241. },
  13242. ]
  13243. ))
  13244. characterMakers.push(() => makeCharacter(
  13245. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13246. {
  13247. front: {
  13248. height: math.unit(6, "feet"),
  13249. weight: math.unit(150, "lb"),
  13250. name: "Front",
  13251. image: {
  13252. source: "./media/characters/holly/front.svg",
  13253. extra: 639 / 606
  13254. }
  13255. },
  13256. back: {
  13257. height: math.unit(6, "feet"),
  13258. weight: math.unit(150, "lb"),
  13259. name: "Back",
  13260. image: {
  13261. source: "./media/characters/holly/back.svg",
  13262. extra: 623 / 598
  13263. }
  13264. },
  13265. frontWorking: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(150, "lb"),
  13268. name: "Front (Working)",
  13269. image: {
  13270. source: "./media/characters/holly/front-working.svg",
  13271. extra: 607 / 577,
  13272. bottom: 0.048
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Normal",
  13279. height: math.unit(12 + 3 / 12, "feet"),
  13280. default: true
  13281. },
  13282. ]
  13283. ))
  13284. characterMakers.push(() => makeCharacter(
  13285. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13286. {
  13287. front: {
  13288. height: math.unit(6, "feet"),
  13289. weight: math.unit(150, "lb"),
  13290. name: "Front",
  13291. image: {
  13292. source: "./media/characters/porter/front.svg",
  13293. extra: 1,
  13294. bottom: 0.01
  13295. }
  13296. },
  13297. frontRobes: {
  13298. height: math.unit(6, "feet"),
  13299. weight: math.unit(150, "lb"),
  13300. name: "Front (Robes)",
  13301. image: {
  13302. source: "./media/characters/porter/front-robes.svg",
  13303. extra: 1.01,
  13304. bottom: 0.01
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(11 + 9 / 12, "feet"),
  13312. default: true
  13313. },
  13314. ]
  13315. ))
  13316. characterMakers.push(() => makeCharacter(
  13317. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13318. {
  13319. legendary: {
  13320. height: math.unit(6, "feet"),
  13321. weight: math.unit(150, "lb"),
  13322. name: "Legendary",
  13323. image: {
  13324. source: "./media/characters/lucy/legendary.svg",
  13325. extra: 1355 / 1100,
  13326. bottom: 0.045
  13327. }
  13328. },
  13329. },
  13330. [
  13331. {
  13332. name: "Legendary",
  13333. height: math.unit(86882 * 2, "miles"),
  13334. default: true
  13335. },
  13336. ]
  13337. ))
  13338. characterMakers.push(() => makeCharacter(
  13339. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13340. {
  13341. front: {
  13342. height: math.unit(6, "feet"),
  13343. weight: math.unit(150, "lb"),
  13344. name: "Front",
  13345. image: {
  13346. source: "./media/characters/drusilla/front.svg",
  13347. extra: 678 / 635,
  13348. bottom: 0.03
  13349. }
  13350. },
  13351. back: {
  13352. height: math.unit(6, "feet"),
  13353. weight: math.unit(150, "lb"),
  13354. name: "Back",
  13355. image: {
  13356. source: "./media/characters/drusilla/back.svg",
  13357. extra: 678 / 635,
  13358. bottom: 0.005
  13359. }
  13360. },
  13361. },
  13362. [
  13363. {
  13364. name: "Macro",
  13365. height: math.unit(100, "feet")
  13366. },
  13367. {
  13368. name: "Canon Height",
  13369. height: math.unit(2000, "feet"),
  13370. default: true
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(180, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/renard-thatch/front.svg",
  13383. extra: 2411 / 2275,
  13384. bottom: 0.01
  13385. }
  13386. },
  13387. frontPosing: {
  13388. height: math.unit(6, "feet"),
  13389. weight: math.unit(180, "lb"),
  13390. name: "Front (Posing)",
  13391. image: {
  13392. source: "./media/characters/renard-thatch/front-posing.svg",
  13393. extra: 2381 / 2261,
  13394. bottom: 0.01
  13395. }
  13396. },
  13397. back: {
  13398. height: math.unit(6, "feet"),
  13399. weight: math.unit(180, "lb"),
  13400. name: "Back",
  13401. image: {
  13402. source: "./media/characters/renard-thatch/back.svg",
  13403. extra: 2428 / 2288
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Micro",
  13410. height: math.unit(3, "inches")
  13411. },
  13412. {
  13413. name: "Default",
  13414. height: math.unit(6, "feet"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Macro",
  13419. height: math.unit(75, "feet")
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(1450, "feet"),
  13428. weight: math.unit(1.21e6, "tons"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/sekvra/front.svg",
  13432. extra: 1193/1190,
  13433. bottom: 78/1271
  13434. }
  13435. },
  13436. side: {
  13437. height: math.unit(1450, "feet"),
  13438. weight: math.unit(1.21e6, "tons"),
  13439. name: "Side",
  13440. image: {
  13441. source: "./media/characters/sekvra/side.svg",
  13442. extra: 1193/1190,
  13443. bottom: 52/1245
  13444. }
  13445. },
  13446. back: {
  13447. height: math.unit(1450, "feet"),
  13448. weight: math.unit(1.21e6, "tons"),
  13449. name: "Back",
  13450. image: {
  13451. source: "./media/characters/sekvra/back.svg",
  13452. extra: 1219/1216,
  13453. bottom: 21/1240
  13454. }
  13455. },
  13456. frontClothed: {
  13457. height: math.unit(1450, "feet"),
  13458. weight: math.unit(1.21e6, "tons"),
  13459. name: "Front (Clothed)",
  13460. image: {
  13461. source: "./media/characters/sekvra/front-clothed.svg",
  13462. extra: 1192/1189,
  13463. bottom: 79/1271
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Macro",
  13470. height: math.unit(1450, "feet"),
  13471. default: true
  13472. },
  13473. {
  13474. name: "Megamacro",
  13475. height: math.unit(15000, "feet")
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13481. {
  13482. front: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Front",
  13486. image: {
  13487. source: "./media/characters/carmine/front.svg",
  13488. extra: 1,
  13489. bottom: 0.035
  13490. }
  13491. },
  13492. frontArmor: {
  13493. height: math.unit(6, "feet"),
  13494. weight: math.unit(150, "lb"),
  13495. name: "Front (Armor)",
  13496. image: {
  13497. source: "./media/characters/carmine/front-armor.svg",
  13498. extra: 1,
  13499. bottom: 0.035
  13500. }
  13501. },
  13502. },
  13503. [
  13504. {
  13505. name: "Large",
  13506. height: math.unit(1, "mile")
  13507. },
  13508. {
  13509. name: "Huge",
  13510. height: math.unit(40, "miles"),
  13511. default: true
  13512. },
  13513. {
  13514. name: "Colossal",
  13515. height: math.unit(2500, "miles")
  13516. },
  13517. ]
  13518. ))
  13519. characterMakers.push(() => makeCharacter(
  13520. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13521. {
  13522. front: {
  13523. height: math.unit(6, "feet"),
  13524. weight: math.unit(150, "lb"),
  13525. name: "Front",
  13526. image: {
  13527. source: "./media/characters/elyssia/front.svg",
  13528. extra: 2201 / 2035,
  13529. bottom: 0.05
  13530. }
  13531. },
  13532. frontClothed: {
  13533. height: math.unit(6, "feet"),
  13534. weight: math.unit(150, "lb"),
  13535. name: "Front (Clothed)",
  13536. image: {
  13537. source: "./media/characters/elyssia/front-clothed.svg",
  13538. extra: 2201 / 2035,
  13539. bottom: 0.05
  13540. }
  13541. },
  13542. back: {
  13543. height: math.unit(6, "feet"),
  13544. weight: math.unit(150, "lb"),
  13545. name: "Back",
  13546. image: {
  13547. source: "./media/characters/elyssia/back.svg",
  13548. extra: 2201 / 2035,
  13549. bottom: 0.013
  13550. }
  13551. },
  13552. },
  13553. [
  13554. {
  13555. name: "Smaller",
  13556. height: math.unit(150, "feet")
  13557. },
  13558. {
  13559. name: "Standard",
  13560. height: math.unit(1400, "feet"),
  13561. default: true
  13562. },
  13563. {
  13564. name: "Distracted",
  13565. height: math.unit(15000, "feet")
  13566. },
  13567. ]
  13568. ))
  13569. characterMakers.push(() => makeCharacter(
  13570. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13571. {
  13572. front: {
  13573. height: math.unit(7 + 4/12, "feet"),
  13574. weight: math.unit(690, "lb"),
  13575. name: "Front",
  13576. image: {
  13577. source: "./media/characters/geno-maxwell/front.svg",
  13578. extra: 984/856,
  13579. bottom: 87/1071
  13580. }
  13581. },
  13582. back: {
  13583. height: math.unit(7 + 4/12, "feet"),
  13584. weight: math.unit(690, "lb"),
  13585. name: "Back",
  13586. image: {
  13587. source: "./media/characters/geno-maxwell/back.svg",
  13588. extra: 981/854,
  13589. bottom: 57/1038
  13590. }
  13591. },
  13592. frontCostume: {
  13593. height: math.unit(7 + 4/12, "feet"),
  13594. weight: math.unit(690, "lb"),
  13595. name: "Front (Costume)",
  13596. image: {
  13597. source: "./media/characters/geno-maxwell/front-costume.svg",
  13598. extra: 984/856,
  13599. bottom: 87/1071
  13600. }
  13601. },
  13602. backcostume: {
  13603. height: math.unit(7 + 4/12, "feet"),
  13604. weight: math.unit(690, "lb"),
  13605. name: "Back (Costume)",
  13606. image: {
  13607. source: "./media/characters/geno-maxwell/back-costume.svg",
  13608. extra: 981/854,
  13609. bottom: 57/1038
  13610. }
  13611. },
  13612. },
  13613. [
  13614. {
  13615. name: "Micro",
  13616. height: math.unit(3, "inches")
  13617. },
  13618. {
  13619. name: "Normal",
  13620. height: math.unit(7 + 4 / 12, "feet"),
  13621. default: true
  13622. },
  13623. {
  13624. name: "Macro",
  13625. height: math.unit(220, "feet")
  13626. },
  13627. {
  13628. name: "Megamacro",
  13629. height: math.unit(11, "miles")
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13635. {
  13636. front: {
  13637. height: math.unit(7 + 4/12, "feet"),
  13638. weight: math.unit(750, "lb"),
  13639. name: "Front",
  13640. image: {
  13641. source: "./media/characters/regena-maxwell/front.svg",
  13642. extra: 984/856,
  13643. bottom: 87/1071
  13644. }
  13645. },
  13646. back: {
  13647. height: math.unit(7 + 4/12, "feet"),
  13648. weight: math.unit(750, "lb"),
  13649. name: "Back",
  13650. image: {
  13651. source: "./media/characters/regena-maxwell/back.svg",
  13652. extra: 981/854,
  13653. bottom: 57/1038
  13654. }
  13655. },
  13656. frontCostume: {
  13657. height: math.unit(7 + 4/12, "feet"),
  13658. weight: math.unit(750, "lb"),
  13659. name: "Front (Costume)",
  13660. image: {
  13661. source: "./media/characters/regena-maxwell/front-costume.svg",
  13662. extra: 984/856,
  13663. bottom: 87/1071
  13664. }
  13665. },
  13666. backcostume: {
  13667. height: math.unit(7 + 4/12, "feet"),
  13668. weight: math.unit(750, "lb"),
  13669. name: "Back (Costume)",
  13670. image: {
  13671. source: "./media/characters/regena-maxwell/back-costume.svg",
  13672. extra: 981/854,
  13673. bottom: 57/1038
  13674. }
  13675. },
  13676. },
  13677. [
  13678. {
  13679. name: "Normal",
  13680. height: math.unit(7 + 4 / 12, "feet"),
  13681. default: true
  13682. },
  13683. {
  13684. name: "Macro",
  13685. height: math.unit(220, "feet")
  13686. },
  13687. {
  13688. name: "Megamacro",
  13689. height: math.unit(11, "miles")
  13690. },
  13691. ]
  13692. ))
  13693. characterMakers.push(() => makeCharacter(
  13694. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13695. {
  13696. front: {
  13697. height: math.unit(6, "feet"),
  13698. weight: math.unit(150, "lb"),
  13699. name: "Front",
  13700. image: {
  13701. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13702. extra: 860 / 690,
  13703. bottom: 0.03
  13704. }
  13705. },
  13706. },
  13707. [
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(1.7, "meters"),
  13711. default: true
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(6, "feet"),
  13720. weight: math.unit(150, "lb"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/quilly/front.svg",
  13724. extra: 890 / 776
  13725. }
  13726. },
  13727. },
  13728. [
  13729. {
  13730. name: "Gigamacro",
  13731. height: math.unit(404090, "miles"),
  13732. default: true
  13733. },
  13734. ]
  13735. ))
  13736. characterMakers.push(() => makeCharacter(
  13737. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13738. {
  13739. front: {
  13740. height: math.unit(7 + 8 / 12, "feet"),
  13741. weight: math.unit(350, "lb"),
  13742. name: "Front",
  13743. image: {
  13744. source: "./media/characters/tempest/front.svg",
  13745. extra: 1175 / 1086,
  13746. bottom: 0.02
  13747. }
  13748. },
  13749. },
  13750. [
  13751. {
  13752. name: "Normal",
  13753. height: math.unit(7 + 8 / 12, "feet"),
  13754. default: true
  13755. },
  13756. ]
  13757. ))
  13758. characterMakers.push(() => makeCharacter(
  13759. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13760. {
  13761. side: {
  13762. height: math.unit(4 + 5 / 12, "feet"),
  13763. weight: math.unit(80, "lb"),
  13764. name: "Side",
  13765. image: {
  13766. source: "./media/characters/rodger/side.svg",
  13767. extra: 1235 / 1118
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Micro",
  13774. height: math.unit(1, "inch")
  13775. },
  13776. {
  13777. name: "Normal",
  13778. height: math.unit(4 + 5 / 12, "feet"),
  13779. default: true
  13780. },
  13781. {
  13782. name: "Macro",
  13783. height: math.unit(120, "feet")
  13784. },
  13785. ]
  13786. ))
  13787. characterMakers.push(() => makeCharacter(
  13788. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13789. {
  13790. front: {
  13791. height: math.unit(6, "feet"),
  13792. weight: math.unit(150, "lb"),
  13793. name: "Front",
  13794. image: {
  13795. source: "./media/characters/danyel/front.svg",
  13796. extra: 1185 / 1123,
  13797. bottom: 0.05
  13798. }
  13799. },
  13800. },
  13801. [
  13802. {
  13803. name: "Shrunken",
  13804. height: math.unit(0.5, "mm")
  13805. },
  13806. {
  13807. name: "Micro",
  13808. height: math.unit(1, "mm"),
  13809. default: true
  13810. },
  13811. {
  13812. name: "Upsized",
  13813. height: math.unit(5 + 5 / 12, "feet")
  13814. },
  13815. ]
  13816. ))
  13817. characterMakers.push(() => makeCharacter(
  13818. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13819. {
  13820. front: {
  13821. height: math.unit(5 + 6 / 12, "feet"),
  13822. weight: math.unit(200, "lb"),
  13823. name: "Front",
  13824. image: {
  13825. source: "./media/characters/vivian-bijoux/front.svg",
  13826. extra: 1217/1209,
  13827. bottom: 76/1293
  13828. }
  13829. },
  13830. back: {
  13831. height: math.unit(5 + 6 / 12, "feet"),
  13832. weight: math.unit(200, "lb"),
  13833. name: "Back",
  13834. image: {
  13835. source: "./media/characters/vivian-bijoux/back.svg",
  13836. extra: 1214/1208,
  13837. bottom: 51/1265
  13838. }
  13839. },
  13840. dressed: {
  13841. height: math.unit(5 + 6 / 12, "feet"),
  13842. weight: math.unit(200, "lb"),
  13843. name: "Dressed",
  13844. image: {
  13845. source: "./media/characters/vivian-bijoux/dressed.svg",
  13846. extra: 1217/1209,
  13847. bottom: 76/1293
  13848. }
  13849. },
  13850. },
  13851. [
  13852. {
  13853. name: "Normal",
  13854. height: math.unit(5 + 6 / 12, "feet"),
  13855. default: true
  13856. },
  13857. {
  13858. name: "Bad Dream",
  13859. height: math.unit(500, "feet")
  13860. },
  13861. {
  13862. name: "Nightmare",
  13863. height: math.unit(500, "miles")
  13864. },
  13865. ]
  13866. ))
  13867. characterMakers.push(() => makeCharacter(
  13868. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13869. {
  13870. front: {
  13871. height: math.unit(6 + 1 / 12, "feet"),
  13872. weight: math.unit(260, "lb"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/zeta/front.svg",
  13876. extra: 1968 / 1889,
  13877. bottom: 0.06
  13878. }
  13879. },
  13880. back: {
  13881. height: math.unit(6 + 1 / 12, "feet"),
  13882. weight: math.unit(260, "lb"),
  13883. name: "Back",
  13884. image: {
  13885. source: "./media/characters/zeta/back.svg",
  13886. extra: 1944 / 1858,
  13887. bottom: 0.03
  13888. }
  13889. },
  13890. hand: {
  13891. height: math.unit(1.112, "feet"),
  13892. name: "Hand",
  13893. image: {
  13894. source: "./media/characters/zeta/hand.svg"
  13895. }
  13896. },
  13897. foot: {
  13898. height: math.unit(1.48, "feet"),
  13899. name: "Foot",
  13900. image: {
  13901. source: "./media/characters/zeta/foot.svg"
  13902. }
  13903. },
  13904. },
  13905. [
  13906. {
  13907. name: "Micro",
  13908. height: math.unit(6, "inches")
  13909. },
  13910. {
  13911. name: "Normal",
  13912. height: math.unit(6 + 1 / 12, "feet"),
  13913. default: true
  13914. },
  13915. {
  13916. name: "Macro",
  13917. height: math.unit(20, "feet")
  13918. },
  13919. ]
  13920. ))
  13921. characterMakers.push(() => makeCharacter(
  13922. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13923. {
  13924. front: {
  13925. height: math.unit(6, "feet"),
  13926. weight: math.unit(150, "lb"),
  13927. name: "Front",
  13928. image: {
  13929. source: "./media/characters/jamie-larsen/front.svg",
  13930. extra: 962 / 933,
  13931. bottom: 0.02
  13932. }
  13933. },
  13934. back: {
  13935. height: math.unit(6, "feet"),
  13936. weight: math.unit(150, "lb"),
  13937. name: "Back",
  13938. image: {
  13939. source: "./media/characters/jamie-larsen/back.svg",
  13940. extra: 997 / 946
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Macro",
  13947. height: math.unit(28 + 7 / 12, "feet"),
  13948. default: true
  13949. },
  13950. {
  13951. name: "Macro+",
  13952. height: math.unit(180, "feet")
  13953. },
  13954. {
  13955. name: "Megamacro",
  13956. height: math.unit(10, "miles")
  13957. },
  13958. {
  13959. name: "Gigamacro",
  13960. height: math.unit(200000, "miles")
  13961. },
  13962. ]
  13963. ))
  13964. characterMakers.push(() => makeCharacter(
  13965. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13966. {
  13967. front: {
  13968. height: math.unit(6, "feet"),
  13969. weight: math.unit(120, "lb"),
  13970. name: "Front",
  13971. image: {
  13972. source: "./media/characters/vance/front.svg",
  13973. extra: 1980 / 1890,
  13974. bottom: 0.09
  13975. }
  13976. },
  13977. back: {
  13978. height: math.unit(6, "feet"),
  13979. weight: math.unit(120, "lb"),
  13980. name: "Back",
  13981. image: {
  13982. source: "./media/characters/vance/back.svg",
  13983. extra: 2081 / 1994,
  13984. bottom: 0.014
  13985. }
  13986. },
  13987. hand: {
  13988. height: math.unit(0.88, "feet"),
  13989. name: "Hand",
  13990. image: {
  13991. source: "./media/characters/vance/hand.svg"
  13992. }
  13993. },
  13994. foot: {
  13995. height: math.unit(0.64, "feet"),
  13996. name: "Foot",
  13997. image: {
  13998. source: "./media/characters/vance/foot.svg"
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Small",
  14005. height: math.unit(90, "feet"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Macro",
  14010. height: math.unit(100, "meters")
  14011. },
  14012. {
  14013. name: "Megamacro",
  14014. height: math.unit(15, "miles")
  14015. },
  14016. ]
  14017. ))
  14018. characterMakers.push(() => makeCharacter(
  14019. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14020. {
  14021. front: {
  14022. height: math.unit(6, "feet"),
  14023. weight: math.unit(180, "lb"),
  14024. name: "Front",
  14025. image: {
  14026. source: "./media/characters/xochitl/front.svg",
  14027. extra: 2297 / 2261,
  14028. bottom: 0.065
  14029. }
  14030. },
  14031. back: {
  14032. height: math.unit(6, "feet"),
  14033. weight: math.unit(180, "lb"),
  14034. name: "Back",
  14035. image: {
  14036. source: "./media/characters/xochitl/back.svg",
  14037. extra: 2386 / 2354,
  14038. bottom: 0.01
  14039. }
  14040. },
  14041. foot: {
  14042. height: math.unit(6 / 5 * 1.15, "feet"),
  14043. weight: math.unit(150, "lb"),
  14044. name: "Foot",
  14045. image: {
  14046. source: "./media/characters/xochitl/foot.svg"
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Macro",
  14053. height: math.unit(80, "feet")
  14054. },
  14055. {
  14056. name: "Macro+",
  14057. height: math.unit(400, "feet"),
  14058. default: true
  14059. },
  14060. {
  14061. name: "Gigamacro",
  14062. height: math.unit(80000, "miles")
  14063. },
  14064. {
  14065. name: "Gigamacro+",
  14066. height: math.unit(400000, "miles")
  14067. },
  14068. {
  14069. name: "Teramacro",
  14070. height: math.unit(300, "AU")
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14076. {
  14077. front: {
  14078. height: math.unit(6, "feet"),
  14079. weight: math.unit(150, "lb"),
  14080. name: "Front",
  14081. image: {
  14082. source: "./media/characters/vincent/front.svg",
  14083. extra: 1130 / 1080,
  14084. bottom: 0.055
  14085. }
  14086. },
  14087. beak: {
  14088. height: math.unit(6 * 0.1, "feet"),
  14089. name: "Beak",
  14090. image: {
  14091. source: "./media/characters/vincent/beak.svg"
  14092. }
  14093. },
  14094. hand: {
  14095. height: math.unit(6 * 0.85, "feet"),
  14096. weight: math.unit(150, "lb"),
  14097. name: "Hand",
  14098. image: {
  14099. source: "./media/characters/vincent/hand.svg"
  14100. }
  14101. },
  14102. foot: {
  14103. height: math.unit(6 * 0.19, "feet"),
  14104. weight: math.unit(150, "lb"),
  14105. name: "Foot",
  14106. image: {
  14107. source: "./media/characters/vincent/foot.svg"
  14108. }
  14109. },
  14110. },
  14111. [
  14112. {
  14113. name: "Base",
  14114. height: math.unit(6 + 5 / 12, "feet"),
  14115. default: true
  14116. },
  14117. {
  14118. name: "Macro",
  14119. height: math.unit(300, "feet")
  14120. },
  14121. {
  14122. name: "Megamacro",
  14123. height: math.unit(2, "miles")
  14124. },
  14125. {
  14126. name: "Gigamacro",
  14127. height: math.unit(1000, "miles")
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14133. {
  14134. front: {
  14135. height: math.unit(2, "meters"),
  14136. weight: math.unit(500, "kg"),
  14137. name: "Front",
  14138. image: {
  14139. source: "./media/characters/coatl/front.svg",
  14140. extra: 3948 / 3500,
  14141. bottom: 0.082
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Normal",
  14148. height: math.unit(4, "meters")
  14149. },
  14150. {
  14151. name: "Macro",
  14152. height: math.unit(100, "meters"),
  14153. default: true
  14154. },
  14155. {
  14156. name: "Macro+",
  14157. height: math.unit(300, "meters")
  14158. },
  14159. {
  14160. name: "Megamacro",
  14161. height: math.unit(3, "gigameters")
  14162. },
  14163. {
  14164. name: "Megamacro+",
  14165. height: math.unit(300, "terameters")
  14166. },
  14167. {
  14168. name: "Megamacro++",
  14169. height: math.unit(3, "lightyears")
  14170. },
  14171. ]
  14172. ))
  14173. characterMakers.push(() => makeCharacter(
  14174. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14175. {
  14176. front: {
  14177. height: math.unit(6, "feet"),
  14178. weight: math.unit(50, "kg"),
  14179. name: "front",
  14180. image: {
  14181. source: "./media/characters/shiroryu/front.svg",
  14182. extra: 1990 / 1935
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Mortal Mingling",
  14189. height: math.unit(3, "meters")
  14190. },
  14191. {
  14192. name: "Kaiju-ish",
  14193. height: math.unit(250, "meters")
  14194. },
  14195. {
  14196. name: "Somewhat Godly",
  14197. height: math.unit(400, "km"),
  14198. default: true
  14199. },
  14200. {
  14201. name: "Planetary",
  14202. height: math.unit(300, "megameters")
  14203. },
  14204. {
  14205. name: "Galaxy-dwarfing",
  14206. height: math.unit(450, "kiloparsecs")
  14207. },
  14208. {
  14209. name: "Universe Eater",
  14210. height: math.unit(150, "gigaparsecs")
  14211. },
  14212. {
  14213. name: "Almost Immeasurable",
  14214. height: math.unit(1.3e266, "yottaparsecs")
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14220. {
  14221. front: {
  14222. height: math.unit(6, "feet"),
  14223. weight: math.unit(150, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/umeko/front.svg",
  14227. extra: 1,
  14228. bottom: 0.019
  14229. }
  14230. },
  14231. frontArmored: {
  14232. height: math.unit(6, "feet"),
  14233. weight: math.unit(150, "lb"),
  14234. name: "Front (Armored)",
  14235. image: {
  14236. source: "./media/characters/umeko/front-armored.svg",
  14237. extra: 1,
  14238. bottom: 0.021
  14239. }
  14240. },
  14241. },
  14242. [
  14243. {
  14244. name: "Macro",
  14245. height: math.unit(220, "feet"),
  14246. default: true
  14247. },
  14248. {
  14249. name: "Guardian Dragon",
  14250. height: math.unit(50, "miles")
  14251. },
  14252. {
  14253. name: "Cosmic",
  14254. height: math.unit(800000, "miles")
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(6, "feet"),
  14263. weight: math.unit(150, "lb"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/cassidy/front.svg",
  14267. extra: 810/808,
  14268. bottom: 41/851
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Canon Height",
  14275. height: math.unit(120, "feet"),
  14276. default: true
  14277. },
  14278. {
  14279. name: "Macro+",
  14280. height: math.unit(400, "feet")
  14281. },
  14282. {
  14283. name: "Macro++",
  14284. height: math.unit(4000, "feet")
  14285. },
  14286. {
  14287. name: "Megamacro",
  14288. height: math.unit(3, "miles")
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14294. {
  14295. front: {
  14296. height: math.unit(6, "feet"),
  14297. weight: math.unit(150, "lb"),
  14298. name: "Front",
  14299. image: {
  14300. source: "./media/characters/isaac/front.svg",
  14301. extra: 896 / 815,
  14302. bottom: 0.11
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Human Size",
  14309. height: math.unit(8, "feet"),
  14310. default: true
  14311. },
  14312. {
  14313. name: "Macro",
  14314. height: math.unit(400, "feet")
  14315. },
  14316. {
  14317. name: "Megamacro",
  14318. height: math.unit(50, "miles")
  14319. },
  14320. {
  14321. name: "Canon Height",
  14322. height: math.unit(200, "AU")
  14323. },
  14324. ]
  14325. ))
  14326. characterMakers.push(() => makeCharacter(
  14327. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14328. {
  14329. front: {
  14330. height: math.unit(6, "feet"),
  14331. weight: math.unit(72, "kg"),
  14332. name: "Front",
  14333. image: {
  14334. source: "./media/characters/sleekit/front.svg",
  14335. extra: 4693 / 4487,
  14336. bottom: 0.012
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Minimum Height",
  14343. height: math.unit(10, "meters")
  14344. },
  14345. {
  14346. name: "Smaller",
  14347. height: math.unit(25, "meters")
  14348. },
  14349. {
  14350. name: "Larger",
  14351. height: math.unit(38, "meters"),
  14352. default: true
  14353. },
  14354. {
  14355. name: "Maximum height",
  14356. height: math.unit(100, "meters")
  14357. },
  14358. ]
  14359. ))
  14360. characterMakers.push(() => makeCharacter(
  14361. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14362. {
  14363. front: {
  14364. height: math.unit(6, "feet"),
  14365. weight: math.unit(150, "lb"),
  14366. name: "Front",
  14367. image: {
  14368. source: "./media/characters/nillia/front.svg",
  14369. extra: 2195 / 2037,
  14370. bottom: 0.005
  14371. }
  14372. },
  14373. back: {
  14374. height: math.unit(6, "feet"),
  14375. weight: math.unit(150, "lb"),
  14376. name: "Back",
  14377. image: {
  14378. source: "./media/characters/nillia/back.svg",
  14379. extra: 2195 / 2037,
  14380. bottom: 0.005
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Canon Height",
  14387. height: math.unit(489, "feet"),
  14388. default: true
  14389. }
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14394. {
  14395. front: {
  14396. height: math.unit(6, "feet"),
  14397. weight: math.unit(150, "lb"),
  14398. name: "Front",
  14399. image: {
  14400. source: "./media/characters/mesmyriza/front.svg",
  14401. extra: 2067 / 1784,
  14402. bottom: 0.035
  14403. }
  14404. },
  14405. foot: {
  14406. height: math.unit(6 / (250 / 35), "feet"),
  14407. name: "Foot",
  14408. image: {
  14409. source: "./media/characters/mesmyriza/foot.svg"
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Macro",
  14416. height: math.unit(457, "meters"),
  14417. default: true
  14418. },
  14419. {
  14420. name: "Megamacro",
  14421. height: math.unit(8, "megameters")
  14422. },
  14423. ]
  14424. ))
  14425. characterMakers.push(() => makeCharacter(
  14426. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14427. {
  14428. front: {
  14429. height: math.unit(6, "feet"),
  14430. weight: math.unit(250, "lb"),
  14431. name: "Front",
  14432. image: {
  14433. source: "./media/characters/saudade/front.svg",
  14434. extra: 1172 / 1139,
  14435. bottom: 0.035
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Micro",
  14442. height: math.unit(3, "inches")
  14443. },
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(6, "feet"),
  14447. default: true
  14448. },
  14449. {
  14450. name: "Macro",
  14451. height: math.unit(50, "feet")
  14452. },
  14453. {
  14454. name: "Megamacro",
  14455. height: math.unit(2800, "feet")
  14456. },
  14457. ]
  14458. ))
  14459. characterMakers.push(() => makeCharacter(
  14460. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14461. {
  14462. front: {
  14463. height: math.unit(5 + 4 / 12, "feet"),
  14464. weight: math.unit(100, "lb"),
  14465. name: "Front",
  14466. image: {
  14467. source: "./media/characters/keireer/front.svg",
  14468. extra: 716 / 666,
  14469. bottom: 0.05
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Normal",
  14476. height: math.unit(5 + 4 / 12, "feet"),
  14477. default: true
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14483. {
  14484. front: {
  14485. height: math.unit(6, "feet"),
  14486. weight: math.unit(90, "kg"),
  14487. name: "Front",
  14488. image: {
  14489. source: "./media/characters/mirja/front.svg",
  14490. extra: 1789 / 1683,
  14491. bottom: 0.05
  14492. }
  14493. },
  14494. frontDressed: {
  14495. height: math.unit(6, "feet"),
  14496. weight: math.unit(90, "lb"),
  14497. name: "Front (Dressed)",
  14498. image: {
  14499. source: "./media/characters/mirja/front-dressed.svg",
  14500. extra: 1789 / 1683,
  14501. bottom: 0.05
  14502. }
  14503. },
  14504. back: {
  14505. height: math.unit(6, "feet"),
  14506. weight: math.unit(90, "lb"),
  14507. name: "Back",
  14508. image: {
  14509. source: "./media/characters/mirja/back.svg",
  14510. extra: 953 / 917,
  14511. bottom: 0.017
  14512. }
  14513. },
  14514. },
  14515. [
  14516. {
  14517. name: "\"Incognito\"",
  14518. height: math.unit(3, "meters")
  14519. },
  14520. {
  14521. name: "Strolling Size",
  14522. height: math.unit(15, "km")
  14523. },
  14524. {
  14525. name: "Larger Strolling Size",
  14526. height: math.unit(400, "km")
  14527. },
  14528. {
  14529. name: "Preferred Size",
  14530. height: math.unit(5000, "km")
  14531. },
  14532. {
  14533. name: "True Size",
  14534. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14535. default: true
  14536. },
  14537. ]
  14538. ))
  14539. characterMakers.push(() => makeCharacter(
  14540. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14541. {
  14542. front: {
  14543. height: math.unit(15, "feet"),
  14544. weight: math.unit(880, "kg"),
  14545. name: "Front",
  14546. image: {
  14547. source: "./media/characters/nightraver/front.svg",
  14548. extra: 2444 / 2160,
  14549. bottom: 0.027
  14550. }
  14551. },
  14552. back: {
  14553. height: math.unit(15, "feet"),
  14554. weight: math.unit(880, "kg"),
  14555. name: "Back",
  14556. image: {
  14557. source: "./media/characters/nightraver/back.svg",
  14558. extra: 2309 / 2180,
  14559. bottom: 0.005
  14560. }
  14561. },
  14562. sole: {
  14563. height: math.unit(2.878, "feet"),
  14564. name: "Sole",
  14565. image: {
  14566. source: "./media/characters/nightraver/sole.svg"
  14567. }
  14568. },
  14569. foot: {
  14570. height: math.unit(2.285, "feet"),
  14571. name: "Foot",
  14572. image: {
  14573. source: "./media/characters/nightraver/foot.svg"
  14574. }
  14575. },
  14576. maw: {
  14577. height: math.unit(2.67, "feet"),
  14578. name: "Maw",
  14579. image: {
  14580. source: "./media/characters/nightraver/maw.svg"
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Micro",
  14587. height: math.unit(1, "cm")
  14588. },
  14589. {
  14590. name: "Normal",
  14591. height: math.unit(15, "feet"),
  14592. default: true
  14593. },
  14594. {
  14595. name: "Macro",
  14596. height: math.unit(300, "feet")
  14597. },
  14598. {
  14599. name: "Megamacro",
  14600. height: math.unit(300, "miles")
  14601. },
  14602. {
  14603. name: "Gigamacro",
  14604. height: math.unit(10000, "miles")
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14610. {
  14611. side: {
  14612. height: math.unit(2, "inches"),
  14613. weight: math.unit(5, "grams"),
  14614. name: "Side",
  14615. image: {
  14616. source: "./media/characters/arc/side.svg"
  14617. }
  14618. },
  14619. },
  14620. [
  14621. {
  14622. name: "Micro",
  14623. height: math.unit(2, "inches"),
  14624. default: true
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(1.1938, "meters"),
  14633. weight: math.unit(54, "kg"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/nebula-shahar/front.svg",
  14637. extra: 1642 / 1436,
  14638. bottom: 0.06
  14639. }
  14640. },
  14641. },
  14642. [
  14643. {
  14644. name: "Megamicro",
  14645. height: math.unit(0.3, "mm")
  14646. },
  14647. {
  14648. name: "Micro",
  14649. height: math.unit(3, "cm")
  14650. },
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(138, "cm"),
  14654. default: true
  14655. },
  14656. {
  14657. name: "Macro",
  14658. height: math.unit(30, "m")
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14664. {
  14665. front: {
  14666. height: math.unit(5.24, "feet"),
  14667. weight: math.unit(150, "lb"),
  14668. name: "Front",
  14669. image: {
  14670. source: "./media/characters/shayla/front.svg",
  14671. extra: 1512 / 1414,
  14672. bottom: 0.01
  14673. }
  14674. },
  14675. back: {
  14676. height: math.unit(5.24, "feet"),
  14677. weight: math.unit(150, "lb"),
  14678. name: "Back",
  14679. image: {
  14680. source: "./media/characters/shayla/back.svg",
  14681. extra: 1512 / 1414
  14682. }
  14683. },
  14684. hand: {
  14685. height: math.unit(0.7781496062992126, "feet"),
  14686. name: "Hand",
  14687. image: {
  14688. source: "./media/characters/shayla/hand.svg"
  14689. }
  14690. },
  14691. foot: {
  14692. height: math.unit(1.4206036745406823, "feet"),
  14693. name: "Foot",
  14694. image: {
  14695. source: "./media/characters/shayla/foot.svg"
  14696. }
  14697. },
  14698. },
  14699. [
  14700. {
  14701. name: "Micro",
  14702. height: math.unit(0.32, "feet")
  14703. },
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(5.24, "feet"),
  14707. default: true
  14708. },
  14709. {
  14710. name: "Macro",
  14711. height: math.unit(492.12, "feet")
  14712. },
  14713. {
  14714. name: "Megamacro",
  14715. height: math.unit(186.41, "miles")
  14716. },
  14717. ]
  14718. ))
  14719. characterMakers.push(() => makeCharacter(
  14720. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14721. {
  14722. front: {
  14723. height: math.unit(2.2, "m"),
  14724. weight: math.unit(120, "kg"),
  14725. name: "Front",
  14726. image: {
  14727. source: "./media/characters/pia-jr/front.svg",
  14728. extra: 1000 / 970,
  14729. bottom: 0.035
  14730. }
  14731. },
  14732. hand: {
  14733. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14734. name: "Hand",
  14735. image: {
  14736. source: "./media/characters/pia-jr/hand.svg"
  14737. }
  14738. },
  14739. paw: {
  14740. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14741. name: "Paw",
  14742. image: {
  14743. source: "./media/characters/pia-jr/paw.svg"
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Micro",
  14750. height: math.unit(1.2, "cm")
  14751. },
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(2.2, "m"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(180, "m")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(420, "km")
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(2, "m"),
  14772. weight: math.unit(115, "kg"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/pia-sr/front.svg",
  14776. extra: 760 / 730,
  14777. bottom: 0.015
  14778. }
  14779. },
  14780. back: {
  14781. height: math.unit(2, "m"),
  14782. weight: math.unit(115, "kg"),
  14783. name: "Back",
  14784. image: {
  14785. source: "./media/characters/pia-sr/back.svg",
  14786. extra: 760 / 730,
  14787. bottom: 0.01
  14788. }
  14789. },
  14790. hand: {
  14791. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14792. name: "Hand",
  14793. image: {
  14794. source: "./media/characters/pia-sr/hand.svg"
  14795. }
  14796. },
  14797. foot: {
  14798. height: math.unit(1.83, "feet"),
  14799. name: "Foot",
  14800. image: {
  14801. source: "./media/characters/pia-sr/foot.svg"
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Micro",
  14808. height: math.unit(88, "mm")
  14809. },
  14810. {
  14811. name: "Normal",
  14812. height: math.unit(2, "m"),
  14813. default: true
  14814. },
  14815. {
  14816. name: "Macro",
  14817. height: math.unit(200, "m")
  14818. },
  14819. {
  14820. name: "Megamacro",
  14821. height: math.unit(420, "km")
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14827. {
  14828. front: {
  14829. height: math.unit(8 + 2 / 12, "feet"),
  14830. weight: math.unit(300, "lb"),
  14831. name: "Front",
  14832. image: {
  14833. source: "./media/characters/kibibyte/front.svg",
  14834. extra: 2221 / 2098,
  14835. bottom: 0.04
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(8 + 2 / 12, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Socialable Macro",
  14847. height: math.unit(50, "feet")
  14848. },
  14849. {
  14850. name: "Macro",
  14851. height: math.unit(300, "feet")
  14852. },
  14853. {
  14854. name: "Megamacro",
  14855. height: math.unit(500, "miles")
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(6, "feet"),
  14864. weight: math.unit(150, "lb"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/felix/front.svg",
  14868. extra: 762 / 722,
  14869. bottom: 0.02
  14870. }
  14871. },
  14872. frontClothed: {
  14873. height: math.unit(6, "feet"),
  14874. weight: math.unit(150, "lb"),
  14875. name: "Front (Clothed)",
  14876. image: {
  14877. source: "./media/characters/felix/front-clothed.svg",
  14878. extra: 762 / 722,
  14879. bottom: 0.02
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Normal",
  14886. height: math.unit(6 + 8 / 12, "feet"),
  14887. default: true
  14888. },
  14889. {
  14890. name: "Macro",
  14891. height: math.unit(2600, "feet")
  14892. },
  14893. {
  14894. name: "Megamacro",
  14895. height: math.unit(450, "miles")
  14896. },
  14897. ]
  14898. ))
  14899. characterMakers.push(() => makeCharacter(
  14900. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14901. {
  14902. front: {
  14903. height: math.unit(6 + 1 / 12, "feet"),
  14904. weight: math.unit(250, "lb"),
  14905. name: "Front",
  14906. image: {
  14907. source: "./media/characters/tobo/front.svg",
  14908. extra: 608 / 586,
  14909. bottom: 0.023
  14910. }
  14911. },
  14912. back: {
  14913. height: math.unit(6 + 1 / 12, "feet"),
  14914. weight: math.unit(250, "lb"),
  14915. name: "Back",
  14916. image: {
  14917. source: "./media/characters/tobo/back.svg",
  14918. extra: 608 / 586
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Nano",
  14925. height: math.unit(2, "nm")
  14926. },
  14927. {
  14928. name: "Megamicro",
  14929. height: math.unit(0.1, "mm")
  14930. },
  14931. {
  14932. name: "Micro",
  14933. height: math.unit(1, "inch"),
  14934. default: true
  14935. },
  14936. {
  14937. name: "Human-sized",
  14938. height: math.unit(6 + 1 / 12, "feet")
  14939. },
  14940. {
  14941. name: "Macro",
  14942. height: math.unit(250, "feet")
  14943. },
  14944. {
  14945. name: "Megamacro",
  14946. height: math.unit(75, "miles")
  14947. },
  14948. {
  14949. name: "Texas-sized",
  14950. height: math.unit(750, "miles")
  14951. },
  14952. {
  14953. name: "Teramacro",
  14954. height: math.unit(50000, "miles")
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14960. {
  14961. front: {
  14962. height: math.unit(6, "feet"),
  14963. weight: math.unit(269, "lb"),
  14964. name: "Front",
  14965. image: {
  14966. source: "./media/characters/danny-kapowsky/front.svg",
  14967. extra: 766 / 736,
  14968. bottom: 0.044
  14969. }
  14970. },
  14971. back: {
  14972. height: math.unit(6, "feet"),
  14973. weight: math.unit(269, "lb"),
  14974. name: "Back",
  14975. image: {
  14976. source: "./media/characters/danny-kapowsky/back.svg",
  14977. extra: 797 / 760,
  14978. bottom: 0.025
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Macro",
  14985. height: math.unit(150, "feet"),
  14986. default: true
  14987. },
  14988. {
  14989. name: "Macro+",
  14990. height: math.unit(200, "feet")
  14991. },
  14992. {
  14993. name: "Macro++",
  14994. height: math.unit(300, "feet")
  14995. },
  14996. {
  14997. name: "Macro+++",
  14998. height: math.unit(400, "feet")
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15004. {
  15005. side: {
  15006. height: math.unit(6, "feet"),
  15007. weight: math.unit(170, "lb"),
  15008. name: "Side",
  15009. image: {
  15010. source: "./media/characters/finn/side.svg",
  15011. extra: 1953 / 1807,
  15012. bottom: 0.057
  15013. }
  15014. },
  15015. },
  15016. [
  15017. {
  15018. name: "Megamacro",
  15019. height: math.unit(14445, "feet"),
  15020. default: true
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(5 + 6 / 12, "feet"),
  15029. weight: math.unit(125, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/roy/front.svg",
  15033. extra: 1,
  15034. bottom: 0.11
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Micro",
  15041. height: math.unit(3, "inches"),
  15042. default: true
  15043. },
  15044. {
  15045. name: "Normal",
  15046. height: math.unit(5 + 6 / 12, "feet")
  15047. },
  15048. {
  15049. name: "Lesser Macro",
  15050. height: math.unit(60, "feet")
  15051. },
  15052. {
  15053. name: "Greater Macro",
  15054. height: math.unit(120, "feet")
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(6, "feet"),
  15063. weight: math.unit(100, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/aevsivs/front.svg",
  15067. extra: 1,
  15068. bottom: 0.03
  15069. }
  15070. },
  15071. back: {
  15072. height: math.unit(6, "feet"),
  15073. weight: math.unit(100, "lb"),
  15074. name: "Back",
  15075. image: {
  15076. source: "./media/characters/aevsivs/back.svg"
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Micro",
  15083. height: math.unit(2, "inches"),
  15084. default: true
  15085. },
  15086. {
  15087. name: "Normal",
  15088. height: math.unit(5, "feet")
  15089. },
  15090. ]
  15091. ))
  15092. characterMakers.push(() => makeCharacter(
  15093. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15094. {
  15095. front: {
  15096. height: math.unit(5 + 7 / 12, "feet"),
  15097. weight: math.unit(159, "lb"),
  15098. name: "Front",
  15099. image: {
  15100. source: "./media/characters/hildegard/front.svg",
  15101. extra: 289 / 269,
  15102. bottom: 7.63 / 297.8
  15103. }
  15104. },
  15105. back: {
  15106. height: math.unit(5 + 7 / 12, "feet"),
  15107. weight: math.unit(159, "lb"),
  15108. name: "Back",
  15109. image: {
  15110. source: "./media/characters/hildegard/back.svg",
  15111. extra: 280 / 260,
  15112. bottom: 2.3 / 282
  15113. }
  15114. },
  15115. },
  15116. [
  15117. {
  15118. name: "Normal",
  15119. height: math.unit(5 + 7 / 12, "feet"),
  15120. default: true
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15126. {
  15127. bernard: {
  15128. height: math.unit(2 + 7 / 12, "feet"),
  15129. weight: math.unit(66, "lb"),
  15130. name: "Bernard",
  15131. rename: true,
  15132. image: {
  15133. source: "./media/characters/bernard-wilder/bernard.svg",
  15134. extra: 192 / 128,
  15135. bottom: 0.05
  15136. }
  15137. },
  15138. wilder: {
  15139. height: math.unit(5 + 8 / 12, "feet"),
  15140. weight: math.unit(143, "lb"),
  15141. name: "Wilder",
  15142. rename: true,
  15143. image: {
  15144. source: "./media/characters/bernard-wilder/wilder.svg",
  15145. extra: 361 / 312,
  15146. bottom: 0.02
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(2 + 7 / 12, "feet"),
  15154. default: true
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15160. {
  15161. anthro: {
  15162. height: math.unit(6 + 1 / 12, "feet"),
  15163. weight: math.unit(155, "lb"),
  15164. name: "Anthro",
  15165. image: {
  15166. source: "./media/characters/hearth/anthro.svg",
  15167. extra: 1178/1136,
  15168. bottom: 28/1206
  15169. }
  15170. },
  15171. feral: {
  15172. height: math.unit(3.78, "feet"),
  15173. weight: math.unit(35, "kg"),
  15174. name: "Feral",
  15175. image: {
  15176. source: "./media/characters/hearth/feral.svg",
  15177. extra: 153 / 135,
  15178. bottom: 0.03
  15179. }
  15180. },
  15181. },
  15182. [
  15183. {
  15184. name: "Normal",
  15185. height: math.unit(6 + 1 / 12, "feet"),
  15186. default: true
  15187. },
  15188. ]
  15189. ))
  15190. characterMakers.push(() => makeCharacter(
  15191. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15192. {
  15193. front: {
  15194. height: math.unit(6, "feet"),
  15195. weight: math.unit(182, "lb"),
  15196. name: "Front",
  15197. image: {
  15198. source: "./media/characters/ingrid/front.svg",
  15199. extra: 294 / 268,
  15200. bottom: 0.027
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(6, "feet"),
  15208. default: true
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15214. {
  15215. eevee: {
  15216. height: math.unit(2 + 10 / 12, "feet"),
  15217. weight: math.unit(86, "lb"),
  15218. name: "Malgam",
  15219. image: {
  15220. source: "./media/characters/malgam/eevee.svg",
  15221. extra: 952/784,
  15222. bottom: 38/990
  15223. }
  15224. },
  15225. sylveon: {
  15226. height: math.unit(4, "feet"),
  15227. weight: math.unit(101, "lb"),
  15228. name: "Future Malgam",
  15229. rename: true,
  15230. image: {
  15231. source: "./media/characters/malgam/sylveon.svg",
  15232. extra: 371 / 325,
  15233. bottom: 0.015
  15234. }
  15235. },
  15236. gigantamax: {
  15237. height: math.unit(50, "feet"),
  15238. name: "Gigantamax Malgam",
  15239. rename: true,
  15240. image: {
  15241. source: "./media/characters/malgam/gigantamax.svg"
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Normal",
  15248. height: math.unit(2 + 10 / 12, "feet"),
  15249. default: true
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(5 + 11 / 12, "feet"),
  15258. weight: math.unit(188, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/fleur/front.svg",
  15262. extra: 309 / 283,
  15263. bottom: 0.007
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(5 + 11 / 12, "feet"),
  15271. default: true
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15277. {
  15278. front: {
  15279. height: math.unit(5 + 4 / 12, "feet"),
  15280. weight: math.unit(122, "lb"),
  15281. name: "Front",
  15282. image: {
  15283. source: "./media/characters/jude/front.svg",
  15284. extra: 288 / 273,
  15285. bottom: 0.03
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Normal",
  15292. height: math.unit(5 + 4 / 12, "feet"),
  15293. default: true
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(5 + 11 / 12, "feet"),
  15302. weight: math.unit(190, "lb"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/seara/front.svg",
  15306. extra: 1,
  15307. bottom: 0.05
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(5 + 11 / 12, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(16 + 5 / 12, "feet"),
  15324. weight: math.unit(524, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/caspian/front.svg",
  15328. extra: 1,
  15329. bottom: 0.04
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Normal",
  15336. height: math.unit(16 + 5 / 12, "feet"),
  15337. default: true
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(5 + 7 / 12, "feet"),
  15346. weight: math.unit(170, "lb"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/mika/front.svg",
  15350. extra: 1,
  15351. bottom: 0.016
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Normal",
  15358. height: math.unit(5 + 7 / 12, "feet"),
  15359. default: true
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(6 + 2 / 12, "feet"),
  15368. weight: math.unit(268, "lb"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/sol/front.svg",
  15372. extra: 247 / 231,
  15373. bottom: 0.05
  15374. }
  15375. },
  15376. },
  15377. [
  15378. {
  15379. name: "Normal",
  15380. height: math.unit(6 + 2 / 12, "feet"),
  15381. default: true
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15387. {
  15388. buizel: {
  15389. height: math.unit(2 + 5 / 12, "feet"),
  15390. weight: math.unit(87, "lb"),
  15391. name: "Buizel",
  15392. image: {
  15393. source: "./media/characters/umiko/buizel.svg",
  15394. extra: 172 / 157,
  15395. bottom: 0.01
  15396. }
  15397. },
  15398. floatzel: {
  15399. height: math.unit(5 + 9 / 12, "feet"),
  15400. weight: math.unit(250, "lb"),
  15401. name: "Floatzel",
  15402. image: {
  15403. source: "./media/characters/umiko/floatzel.svg",
  15404. extra: 262 / 248
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(2 + 5 / 12, "feet"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(6 + 2 / 12, "feet"),
  15421. weight: math.unit(146, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/iliac/front.svg",
  15425. extra: 389 / 365,
  15426. bottom: 0.035
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Normal",
  15433. height: math.unit(6 + 2 / 12, "feet"),
  15434. default: true
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15440. {
  15441. front: {
  15442. height: math.unit(6, "feet"),
  15443. weight: math.unit(170, "lb"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/topaz/front.svg",
  15447. extra: 317 / 303,
  15448. bottom: 0.055
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(6, "feet"),
  15456. default: true
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(5 + 11 / 12, "feet"),
  15465. weight: math.unit(144, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/gabriel/front.svg",
  15469. extra: 285 / 262,
  15470. bottom: 0.004
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(5 + 11 / 12, "feet"),
  15478. default: true
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15484. {
  15485. side: {
  15486. height: math.unit(6 + 5 / 12, "feet"),
  15487. weight: math.unit(300, "lb"),
  15488. name: "Side",
  15489. image: {
  15490. source: "./media/characters/tempest-suicune/side.svg",
  15491. extra: 195 / 154,
  15492. bottom: 0.04
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(6 + 5 / 12, "feet"),
  15500. default: true
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(7 + 2 / 12, "feet"),
  15509. weight: math.unit(322, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/vulcan/front.svg",
  15513. extra: 154 / 147,
  15514. bottom: 0.04
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(7 + 2 / 12, "feet"),
  15522. default: true
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(5 + 10 / 12, "feet"),
  15531. weight: math.unit(264, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/gault/front.svg",
  15535. extra: 161 / 140,
  15536. bottom: 0.028
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(5 + 10 / 12, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15550. {
  15551. front: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(150, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/shard/front.svg",
  15557. extra: 273 / 238,
  15558. bottom: 0.02
  15559. }
  15560. },
  15561. },
  15562. [
  15563. {
  15564. name: "Normal",
  15565. height: math.unit(3 + 6 / 12, "feet"),
  15566. default: true
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15572. {
  15573. front: {
  15574. height: math.unit(5 + 11 / 12, "feet"),
  15575. weight: math.unit(146, "lb"),
  15576. name: "Front",
  15577. image: {
  15578. source: "./media/characters/ashe/front.svg",
  15579. extra: 400 / 373,
  15580. bottom: 0.01
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Normal",
  15587. height: math.unit(5 + 11 / 12, "feet"),
  15588. default: true
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15594. {
  15595. front: {
  15596. height: math.unit(5 + 5 / 12, "feet"),
  15597. weight: math.unit(135, "lb"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/beatrix/front.svg",
  15601. extra: 392 / 379,
  15602. bottom: 0.01
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(6, "feet"),
  15610. default: true
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(6 + 2/12, "feet"),
  15619. weight: math.unit(135, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/ignatius/front.svg",
  15623. extra: 1380/1259,
  15624. bottom: 27/1407
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Normal",
  15631. height: math.unit(6 + 2/12, "feet"),
  15632. default: true
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(6 + 2 / 12, "feet"),
  15641. weight: math.unit(138, "lb"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/mei-li/front.svg",
  15645. extra: 237 / 229,
  15646. bottom: 0.03
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(6 + 2 / 12, "feet"),
  15654. default: true
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15660. {
  15661. front: {
  15662. height: math.unit(2 + 4 / 12, "feet"),
  15663. weight: math.unit(62, "lb"),
  15664. name: "Front",
  15665. image: {
  15666. source: "./media/characters/puru/front.svg",
  15667. extra: 206 / 149,
  15668. bottom: 0.06
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Normal",
  15675. height: math.unit(2 + 4 / 12, "feet"),
  15676. default: true
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15682. {
  15683. anthro: {
  15684. height: math.unit(5 + 8/12, "feet"),
  15685. weight: math.unit(200, "lb"),
  15686. energyNeed: math.unit(2000, "kcal"),
  15687. name: "Anthro",
  15688. image: {
  15689. source: "./media/characters/kee/anthro.svg",
  15690. extra: 3251/3184,
  15691. bottom: 250/3501
  15692. }
  15693. },
  15694. taur: {
  15695. height: math.unit(11, "feet"),
  15696. weight: math.unit(500, "lb"),
  15697. energyNeed: math.unit(5000, "kcal"),
  15698. name: "Taur",
  15699. image: {
  15700. source: "./media/characters/kee/taur.svg",
  15701. extra: 1362/1320,
  15702. bottom: 83/1445
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(5 + 8/12, "feet"),
  15710. default: true
  15711. },
  15712. {
  15713. name: "Macro",
  15714. height: math.unit(35, "feet")
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15720. {
  15721. anthro: {
  15722. height: math.unit(7, "feet"),
  15723. weight: math.unit(190, "lb"),
  15724. name: "Anthro",
  15725. image: {
  15726. source: "./media/characters/cobalt-dracha/anthro.svg",
  15727. extra: 231 / 225,
  15728. bottom: 0.04
  15729. }
  15730. },
  15731. feral: {
  15732. height: math.unit(9 + 7 / 12, "feet"),
  15733. weight: math.unit(294, "lb"),
  15734. name: "Feral",
  15735. image: {
  15736. source: "./media/characters/cobalt-dracha/feral.svg",
  15737. extra: 692 / 633,
  15738. bottom: 0.05
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Normal",
  15745. height: math.unit(7, "feet"),
  15746. default: true
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15752. {
  15753. fallen: {
  15754. height: math.unit(11 + 8 / 12, "feet"),
  15755. weight: math.unit(485, "lb"),
  15756. name: "Java (Fallen)",
  15757. rename: true,
  15758. image: {
  15759. source: "./media/characters/java/fallen.svg",
  15760. extra: 226 / 208,
  15761. bottom: 0.005
  15762. }
  15763. },
  15764. godkin: {
  15765. height: math.unit(10 + 6 / 12, "feet"),
  15766. weight: math.unit(328, "lb"),
  15767. name: "Java (Godkin)",
  15768. rename: true,
  15769. image: {
  15770. source: "./media/characters/java/godkin.svg",
  15771. extra: 1104/1068,
  15772. bottom: 36/1140
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(11 + 8 / 12, "feet"),
  15780. default: true
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(5 + 9 / 12, "feet"),
  15789. weight: math.unit(170, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/purna/front.svg",
  15793. extra: 239 / 229,
  15794. bottom: 0.01
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(5 + 9 / 12, "feet"),
  15802. default: true
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(5 + 9 / 12, "feet"),
  15811. weight: math.unit(142, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/kuva/front.svg",
  15815. extra: 281 / 271,
  15816. bottom: 0.006
  15817. }
  15818. },
  15819. },
  15820. [
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(5 + 9 / 12, "feet"),
  15824. default: true
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15830. {
  15831. anthro: {
  15832. height: math.unit(9 + 2 / 12, "feet"),
  15833. weight: math.unit(270, "lb"),
  15834. name: "Anthro",
  15835. image: {
  15836. source: "./media/characters/embra/anthro.svg",
  15837. extra: 200 / 187,
  15838. bottom: 0.02
  15839. }
  15840. },
  15841. feral: {
  15842. height: math.unit(18 + 8 / 12, "feet"),
  15843. weight: math.unit(576, "lb"),
  15844. name: "Feral",
  15845. image: {
  15846. source: "./media/characters/embra/feral.svg",
  15847. extra: 152 / 137,
  15848. bottom: 0.037
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(9 + 2 / 12, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15862. {
  15863. anthro: {
  15864. height: math.unit(10 + 9 / 12, "feet"),
  15865. weight: math.unit(224, "lb"),
  15866. name: "Anthro",
  15867. image: {
  15868. source: "./media/characters/grottos/anthro.svg",
  15869. extra: 350 / 332,
  15870. bottom: 0.045
  15871. }
  15872. },
  15873. feral: {
  15874. height: math.unit(20 + 7 / 12, "feet"),
  15875. weight: math.unit(629, "lb"),
  15876. name: "Feral",
  15877. image: {
  15878. source: "./media/characters/grottos/feral.svg",
  15879. extra: 207 / 190,
  15880. bottom: 0.05
  15881. }
  15882. },
  15883. },
  15884. [
  15885. {
  15886. name: "Normal",
  15887. height: math.unit(10 + 9 / 12, "feet"),
  15888. default: true
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15894. {
  15895. anthro: {
  15896. height: math.unit(9 + 6 / 12, "feet"),
  15897. weight: math.unit(298, "lb"),
  15898. name: "Anthro",
  15899. image: {
  15900. source: "./media/characters/frifna/anthro.svg",
  15901. extra: 282 / 269,
  15902. bottom: 0.015
  15903. }
  15904. },
  15905. feral: {
  15906. height: math.unit(16 + 2 / 12, "feet"),
  15907. weight: math.unit(624, "lb"),
  15908. name: "Feral",
  15909. image: {
  15910. source: "./media/characters/frifna/feral.svg"
  15911. }
  15912. },
  15913. },
  15914. [
  15915. {
  15916. name: "Normal",
  15917. height: math.unit(9 + 6 / 12, "feet"),
  15918. default: true
  15919. },
  15920. ]
  15921. ))
  15922. characterMakers.push(() => makeCharacter(
  15923. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15924. {
  15925. front: {
  15926. height: math.unit(6 + 2 / 12, "feet"),
  15927. weight: math.unit(168, "lb"),
  15928. name: "Front",
  15929. image: {
  15930. source: "./media/characters/elise/front.svg",
  15931. extra: 276 / 271
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(6 + 2 / 12, "feet"),
  15939. default: true
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(5 + 10 / 12, "feet"),
  15948. weight: math.unit(210, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/glade/front.svg",
  15952. extra: 258 / 247,
  15953. bottom: 0.008
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(5 + 10 / 12, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15967. {
  15968. front: {
  15969. height: math.unit(5 + 10 / 12, "feet"),
  15970. weight: math.unit(129, "lb"),
  15971. name: "Front",
  15972. image: {
  15973. source: "./media/characters/rina/front.svg",
  15974. extra: 266 / 255,
  15975. bottom: 0.005
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(5 + 10 / 12, "feet"),
  15983. default: true
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(6 + 1 / 12, "feet"),
  15992. weight: math.unit(192, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/veronica/front.svg",
  15996. extra: 319 / 309,
  15997. bottom: 0.005
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(6 + 1 / 12, "feet"),
  16005. default: true
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(9 + 3 / 12, "feet"),
  16014. weight: math.unit(1100, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/braxton/front.svg",
  16018. extra: 1057 / 984,
  16019. bottom: 0.05
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(9 + 3 / 12, "feet")
  16027. },
  16028. {
  16029. name: "Giant",
  16030. height: math.unit(300, "feet"),
  16031. default: true
  16032. },
  16033. {
  16034. name: "Macro",
  16035. height: math.unit(700, "feet")
  16036. },
  16037. {
  16038. name: "Megamacro",
  16039. height: math.unit(6000, "feet")
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16045. {
  16046. front: {
  16047. height: math.unit(6 + 7 / 12, "feet"),
  16048. weight: math.unit(150, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/blue-feyonics/front.svg",
  16052. extra: 1403 / 1306,
  16053. bottom: 0.047
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Normal",
  16060. height: math.unit(6 + 7 / 12, "feet"),
  16061. default: true
  16062. },
  16063. ]
  16064. ))
  16065. characterMakers.push(() => makeCharacter(
  16066. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16067. {
  16068. front: {
  16069. height: math.unit(1.8, "meters"),
  16070. weight: math.unit(60, "kg"),
  16071. name: "Front",
  16072. image: {
  16073. source: "./media/characters/maxwell/front.svg",
  16074. extra: 2060 / 1873
  16075. }
  16076. },
  16077. },
  16078. [
  16079. {
  16080. name: "Micro",
  16081. height: math.unit(1, "mm")
  16082. },
  16083. {
  16084. name: "Normal",
  16085. height: math.unit(1.8, "meter"),
  16086. default: true
  16087. },
  16088. {
  16089. name: "Macro",
  16090. height: math.unit(30, "meters")
  16091. },
  16092. {
  16093. name: "Megamacro",
  16094. height: math.unit(10, "km")
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(6, "feet"),
  16103. weight: math.unit(150, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/jack/front.svg",
  16107. extra: 1754 / 1640,
  16108. bottom: 0.01
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Normal",
  16115. height: math.unit(80000, "feet"),
  16116. default: true
  16117. },
  16118. {
  16119. name: "Max size",
  16120. height: math.unit(10, "lightyears")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16126. {
  16127. urban: {
  16128. height: math.unit(5, "feet"),
  16129. weight: math.unit(240, "lb"),
  16130. name: "Urban",
  16131. image: {
  16132. source: "./media/characters/cafat/urban.svg",
  16133. extra: 1223/1126,
  16134. bottom: 205/1428
  16135. }
  16136. },
  16137. summer: {
  16138. height: math.unit(5, "feet"),
  16139. weight: math.unit(240, "lb"),
  16140. name: "Summer",
  16141. image: {
  16142. source: "./media/characters/cafat/summer.svg",
  16143. extra: 1223/1126,
  16144. bottom: 205/1428
  16145. }
  16146. },
  16147. winter: {
  16148. height: math.unit(5, "feet"),
  16149. weight: math.unit(240, "lb"),
  16150. name: "Winter",
  16151. image: {
  16152. source: "./media/characters/cafat/winter.svg",
  16153. extra: 1223/1126,
  16154. bottom: 205/1428
  16155. }
  16156. },
  16157. lingerie: {
  16158. height: math.unit(5, "feet"),
  16159. weight: math.unit(240, "lb"),
  16160. name: "Lingerie",
  16161. image: {
  16162. source: "./media/characters/cafat/lingerie.svg",
  16163. extra: 1223/1126,
  16164. bottom: 205/1428
  16165. }
  16166. },
  16167. upright: {
  16168. height: math.unit(6.3, "feet"),
  16169. weight: math.unit(240, "lb"),
  16170. name: "Upright",
  16171. image: {
  16172. source: "./media/characters/cafat/upright.svg",
  16173. bottom: 0.01
  16174. }
  16175. },
  16176. uprightFull: {
  16177. height: math.unit(6.3, "feet"),
  16178. weight: math.unit(240, "lb"),
  16179. name: "Upright (Full)",
  16180. image: {
  16181. source: "./media/characters/cafat/upright-full.svg",
  16182. bottom: 0.01
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Small",
  16189. height: math.unit(5, "feet"),
  16190. default: true
  16191. },
  16192. {
  16193. name: "Large",
  16194. height: math.unit(13, "feet")
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(150, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/verin-raharra/front.svg",
  16207. extra: 5019 / 4835,
  16208. bottom: 0.023
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(7 + 5 / 12, "feet"),
  16216. default: true
  16217. },
  16218. {
  16219. name: "Upsized",
  16220. height: math.unit(20, "feet")
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16226. {
  16227. front: {
  16228. height: math.unit(7, "feet"),
  16229. weight: math.unit(230, "lb"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/nakata/front.svg",
  16233. extra: 1.005,
  16234. bottom: 0.01
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Normal",
  16241. height: math.unit(7, "feet"),
  16242. default: true
  16243. },
  16244. {
  16245. name: "Big",
  16246. height: math.unit(14, "feet")
  16247. },
  16248. {
  16249. name: "Macro",
  16250. height: math.unit(400, "feet")
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16256. {
  16257. front: {
  16258. height: math.unit(4.91, "feet"),
  16259. weight: math.unit(100, "lb"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/lily/front.svg",
  16263. extra: 1585 / 1415,
  16264. bottom: 0.02
  16265. }
  16266. },
  16267. },
  16268. [
  16269. {
  16270. name: "Normal",
  16271. height: math.unit(4.91, "feet"),
  16272. default: true
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16278. {
  16279. laying: {
  16280. height: math.unit(4 + 4 / 12, "feet"),
  16281. weight: math.unit(600, "lb"),
  16282. name: "Laying",
  16283. image: {
  16284. source: "./media/characters/sheila/laying.svg",
  16285. extra: 1333 / 1265,
  16286. bottom: 0.16
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(4 + 4 / 12, "feet"),
  16294. default: true
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(190, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/sax/front.svg",
  16307. extra: 1187 / 973,
  16308. bottom: 0.042
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Micro",
  16315. height: math.unit(4, "inches"),
  16316. default: true
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(6, "feet"),
  16325. weight: math.unit(150, "lb"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/pandora/front.svg",
  16329. extra: 2720 / 2556,
  16330. bottom: 0.015
  16331. }
  16332. },
  16333. back: {
  16334. height: math.unit(6, "feet"),
  16335. weight: math.unit(150, "lb"),
  16336. name: "Back",
  16337. image: {
  16338. source: "./media/characters/pandora/back.svg",
  16339. extra: 2720 / 2556,
  16340. bottom: 0.01
  16341. }
  16342. },
  16343. beans: {
  16344. height: math.unit(6 / 8, "feet"),
  16345. name: "Beans",
  16346. image: {
  16347. source: "./media/characters/pandora/beans.svg"
  16348. }
  16349. },
  16350. collar: {
  16351. height: math.unit(0.31, "feet"),
  16352. name: "Collar",
  16353. image: {
  16354. source: "./media/characters/pandora/collar.svg"
  16355. }
  16356. },
  16357. skirt: {
  16358. height: math.unit(6, "feet"),
  16359. weight: math.unit(150, "lb"),
  16360. name: "Skirt",
  16361. image: {
  16362. source: "./media/characters/pandora/skirt.svg",
  16363. extra: 1622 / 1525,
  16364. bottom: 0.015
  16365. }
  16366. },
  16367. hoodie: {
  16368. height: math.unit(6, "feet"),
  16369. weight: math.unit(150, "lb"),
  16370. name: "Hoodie",
  16371. image: {
  16372. source: "./media/characters/pandora/hoodie.svg",
  16373. extra: 1622 / 1525,
  16374. bottom: 0.015
  16375. }
  16376. },
  16377. casual: {
  16378. height: math.unit(6, "feet"),
  16379. weight: math.unit(150, "lb"),
  16380. name: "Casual",
  16381. image: {
  16382. source: "./media/characters/pandora/casual.svg",
  16383. extra: 1622 / 1525,
  16384. bottom: 0.015
  16385. }
  16386. },
  16387. },
  16388. [
  16389. {
  16390. name: "Normal",
  16391. height: math.unit(6, "feet")
  16392. },
  16393. {
  16394. name: "Big Steppy",
  16395. height: math.unit(1, "km"),
  16396. default: true
  16397. },
  16398. {
  16399. name: "Galactic Steppy",
  16400. height: math.unit(2, "gigameters")
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16406. {
  16407. side: {
  16408. height: math.unit(10, "feet"),
  16409. weight: math.unit(800, "kg"),
  16410. name: "Side",
  16411. image: {
  16412. source: "./media/characters/venio-darcony/side.svg",
  16413. extra: 1373 / 1003,
  16414. bottom: 0.037
  16415. }
  16416. },
  16417. front: {
  16418. height: math.unit(19, "feet"),
  16419. weight: math.unit(800, "kg"),
  16420. name: "Front",
  16421. image: {
  16422. source: "./media/characters/venio-darcony/front.svg"
  16423. }
  16424. },
  16425. back: {
  16426. height: math.unit(19, "feet"),
  16427. weight: math.unit(800, "kg"),
  16428. name: "Back",
  16429. image: {
  16430. source: "./media/characters/venio-darcony/back.svg"
  16431. }
  16432. },
  16433. sideNsfw: {
  16434. height: math.unit(10, "feet"),
  16435. weight: math.unit(800, "kg"),
  16436. name: "Side (NSFW)",
  16437. image: {
  16438. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16439. extra: 1373 / 1003,
  16440. bottom: 0.037
  16441. }
  16442. },
  16443. frontNsfw: {
  16444. height: math.unit(19, "feet"),
  16445. weight: math.unit(800, "kg"),
  16446. name: "Front (NSFW)",
  16447. image: {
  16448. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16449. }
  16450. },
  16451. backNsfw: {
  16452. height: math.unit(19, "feet"),
  16453. weight: math.unit(800, "kg"),
  16454. name: "Back (NSFW)",
  16455. image: {
  16456. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16457. }
  16458. },
  16459. sideArmored: {
  16460. height: math.unit(10, "feet"),
  16461. weight: math.unit(800, "kg"),
  16462. name: "Side (Armored)",
  16463. image: {
  16464. source: "./media/characters/venio-darcony/side-armored.svg",
  16465. extra: 1373 / 1003,
  16466. bottom: 0.037
  16467. }
  16468. },
  16469. frontArmored: {
  16470. height: math.unit(19, "feet"),
  16471. weight: math.unit(900, "kg"),
  16472. name: "Front (Armored)",
  16473. image: {
  16474. source: "./media/characters/venio-darcony/front-armored.svg"
  16475. }
  16476. },
  16477. backArmored: {
  16478. height: math.unit(19, "feet"),
  16479. weight: math.unit(900, "kg"),
  16480. name: "Back (Armored)",
  16481. image: {
  16482. source: "./media/characters/venio-darcony/back-armored.svg"
  16483. }
  16484. },
  16485. sword: {
  16486. height: math.unit(10, "feet"),
  16487. weight: math.unit(50, "lb"),
  16488. name: "Sword",
  16489. image: {
  16490. source: "./media/characters/venio-darcony/sword.svg"
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Normal",
  16497. height: math.unit(10, "feet")
  16498. },
  16499. {
  16500. name: "Macro",
  16501. height: math.unit(130, "feet"),
  16502. default: true
  16503. },
  16504. {
  16505. name: "Macro+",
  16506. height: math.unit(240, "feet")
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16512. {
  16513. front: {
  16514. height: math.unit(6, "feet"),
  16515. weight: math.unit(150, "lb"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/veski/front.svg",
  16519. extra: 1299 / 1225,
  16520. bottom: 0.04
  16521. }
  16522. },
  16523. back: {
  16524. height: math.unit(6, "feet"),
  16525. weight: math.unit(150, "lb"),
  16526. name: "Back",
  16527. image: {
  16528. source: "./media/characters/veski/back.svg",
  16529. extra: 1299 / 1225,
  16530. bottom: 0.008
  16531. }
  16532. },
  16533. maw: {
  16534. height: math.unit(1.5 * 1.21, "feet"),
  16535. name: "Maw",
  16536. image: {
  16537. source: "./media/characters/veski/maw.svg"
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Macro",
  16544. height: math.unit(2, "km"),
  16545. default: true
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(5 + 7 / 12, "feet"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/isabelle/front.svg",
  16557. extra: 2130 / 1976,
  16558. bottom: 0.05
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Supermicro",
  16565. height: math.unit(10, "micrometers")
  16566. },
  16567. {
  16568. name: "Micro",
  16569. height: math.unit(1, "inch")
  16570. },
  16571. {
  16572. name: "Tiny",
  16573. height: math.unit(5, "inches")
  16574. },
  16575. {
  16576. name: "Standard",
  16577. height: math.unit(5 + 7 / 12, "inches")
  16578. },
  16579. {
  16580. name: "Macro",
  16581. height: math.unit(80, "meters"),
  16582. default: true
  16583. },
  16584. {
  16585. name: "Megamacro",
  16586. height: math.unit(250, "meters")
  16587. },
  16588. {
  16589. name: "Gigamacro",
  16590. height: math.unit(5, "km")
  16591. },
  16592. {
  16593. name: "Cosmic",
  16594. height: math.unit(2.5e6, "miles")
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16600. {
  16601. front: {
  16602. height: math.unit(6, "feet"),
  16603. weight: math.unit(150, "lb"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/hanzo/front.svg",
  16607. extra: 374 / 344,
  16608. bottom: 0.02
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(8, "feet"),
  16616. default: true
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16622. {
  16623. front: {
  16624. height: math.unit(7, "feet"),
  16625. weight: math.unit(130, "lb"),
  16626. name: "Front",
  16627. image: {
  16628. source: "./media/characters/anna/front.svg",
  16629. extra: 169 / 145,
  16630. bottom: 0.06
  16631. }
  16632. },
  16633. full: {
  16634. height: math.unit(4.96, "feet"),
  16635. weight: math.unit(220, "lb"),
  16636. name: "Full",
  16637. image: {
  16638. source: "./media/characters/anna/full.svg",
  16639. extra: 138 / 114,
  16640. bottom: 0.15
  16641. }
  16642. },
  16643. tongue: {
  16644. height: math.unit(2.53, "feet"),
  16645. name: "Tongue",
  16646. image: {
  16647. source: "./media/characters/anna/tongue.svg"
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(7, "feet"),
  16655. default: true
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16661. {
  16662. front: {
  16663. height: math.unit(7, "feet"),
  16664. weight: math.unit(150, "lb"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/ian-corvid/front.svg",
  16668. extra: 150 / 142,
  16669. bottom: 0.02
  16670. }
  16671. },
  16672. back: {
  16673. height: math.unit(7, "feet"),
  16674. weight: math.unit(150, "lb"),
  16675. name: "Back",
  16676. image: {
  16677. source: "./media/characters/ian-corvid/back.svg",
  16678. extra: 150 / 143,
  16679. bottom: 0.01
  16680. }
  16681. },
  16682. stomping: {
  16683. height: math.unit(7, "feet"),
  16684. weight: math.unit(150, "lb"),
  16685. name: "Stomping",
  16686. image: {
  16687. source: "./media/characters/ian-corvid/stomping.svg",
  16688. extra: 76 / 72
  16689. }
  16690. },
  16691. sitting: {
  16692. height: math.unit(7 / 1.8, "feet"),
  16693. weight: math.unit(150, "lb"),
  16694. name: "Sitting",
  16695. image: {
  16696. source: "./media/characters/ian-corvid/sitting.svg",
  16697. extra: 1400 / 1269,
  16698. bottom: 0.15
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Tiny Microw",
  16705. height: math.unit(1, "inch")
  16706. },
  16707. {
  16708. name: "Microw",
  16709. height: math.unit(6, "inches")
  16710. },
  16711. {
  16712. name: "Crow",
  16713. height: math.unit(7 + 1 / 12, "feet"),
  16714. default: true
  16715. },
  16716. {
  16717. name: "Macrow",
  16718. height: math.unit(176, "feet")
  16719. },
  16720. ]
  16721. ))
  16722. characterMakers.push(() => makeCharacter(
  16723. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16724. {
  16725. front: {
  16726. height: math.unit(5 + 7 / 12, "feet"),
  16727. weight: math.unit(147, "lb"),
  16728. name: "Front",
  16729. image: {
  16730. source: "./media/characters/natalie-kellon/front.svg",
  16731. extra: 1214 / 1141,
  16732. bottom: 0.02
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Micro",
  16739. height: math.unit(1 / 16, "inch")
  16740. },
  16741. {
  16742. name: "Tiny",
  16743. height: math.unit(4, "inches")
  16744. },
  16745. {
  16746. name: "Normal",
  16747. height: math.unit(5 + 7 / 12, "feet"),
  16748. default: true
  16749. },
  16750. {
  16751. name: "Amazon",
  16752. height: math.unit(12, "feet")
  16753. },
  16754. {
  16755. name: "Giantess",
  16756. height: math.unit(160, "meters")
  16757. },
  16758. {
  16759. name: "Titaness",
  16760. height: math.unit(800, "meters")
  16761. },
  16762. ]
  16763. ))
  16764. characterMakers.push(() => makeCharacter(
  16765. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16766. {
  16767. front: {
  16768. height: math.unit(6, "feet"),
  16769. weight: math.unit(150, "lb"),
  16770. name: "Front",
  16771. image: {
  16772. source: "./media/characters/alluria/front.svg",
  16773. extra: 806 / 738,
  16774. bottom: 0.01
  16775. }
  16776. },
  16777. side: {
  16778. height: math.unit(6, "feet"),
  16779. weight: math.unit(150, "lb"),
  16780. name: "Side",
  16781. image: {
  16782. source: "./media/characters/alluria/side.svg",
  16783. extra: 800 / 750,
  16784. }
  16785. },
  16786. back: {
  16787. height: math.unit(6, "feet"),
  16788. weight: math.unit(150, "lb"),
  16789. name: "Back",
  16790. image: {
  16791. source: "./media/characters/alluria/back.svg",
  16792. extra: 806 / 738,
  16793. }
  16794. },
  16795. frontMaid: {
  16796. height: math.unit(6, "feet"),
  16797. weight: math.unit(150, "lb"),
  16798. name: "Front (Maid)",
  16799. image: {
  16800. source: "./media/characters/alluria/front-maid.svg",
  16801. extra: 806 / 738,
  16802. bottom: 0.01
  16803. }
  16804. },
  16805. sideMaid: {
  16806. height: math.unit(6, "feet"),
  16807. weight: math.unit(150, "lb"),
  16808. name: "Side (Maid)",
  16809. image: {
  16810. source: "./media/characters/alluria/side-maid.svg",
  16811. extra: 800 / 750,
  16812. bottom: 0.005
  16813. }
  16814. },
  16815. backMaid: {
  16816. height: math.unit(6, "feet"),
  16817. weight: math.unit(150, "lb"),
  16818. name: "Back (Maid)",
  16819. image: {
  16820. source: "./media/characters/alluria/back-maid.svg",
  16821. extra: 806 / 738,
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Micro",
  16828. height: math.unit(6, "inches"),
  16829. default: true
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(6, "feet"),
  16838. weight: math.unit(150, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/kyle/front.svg",
  16842. extra: 1069 / 962,
  16843. bottom: 77.228 / 1727.45
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Macro",
  16850. height: math.unit(150, "feet"),
  16851. default: true
  16852. },
  16853. ]
  16854. ))
  16855. characterMakers.push(() => makeCharacter(
  16856. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16857. {
  16858. front: {
  16859. height: math.unit(6, "feet"),
  16860. weight: math.unit(300, "lb"),
  16861. name: "Front",
  16862. image: {
  16863. source: "./media/characters/duncan/front.svg",
  16864. extra: 1650 / 1482,
  16865. bottom: 0.05
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Macro",
  16872. height: math.unit(100, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16879. {
  16880. front: {
  16881. height: math.unit(5 + 4 / 12, "feet"),
  16882. weight: math.unit(220, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/memory/front.svg",
  16886. extra: 3641 / 3545,
  16887. bottom: 0.03
  16888. }
  16889. },
  16890. back: {
  16891. height: math.unit(5 + 4 / 12, "feet"),
  16892. weight: math.unit(220, "lb"),
  16893. name: "Back",
  16894. image: {
  16895. source: "./media/characters/memory/back.svg",
  16896. extra: 3641 / 3545,
  16897. bottom: 0.025
  16898. }
  16899. },
  16900. frontSkirt: {
  16901. height: math.unit(5 + 4 / 12, "feet"),
  16902. weight: math.unit(220, "lb"),
  16903. name: "Front (Skirt)",
  16904. image: {
  16905. source: "./media/characters/memory/front-skirt.svg",
  16906. extra: 3641 / 3545,
  16907. bottom: 0.03
  16908. }
  16909. },
  16910. frontDress: {
  16911. height: math.unit(5 + 4 / 12, "feet"),
  16912. weight: math.unit(220, "lb"),
  16913. name: "Front (Dress)",
  16914. image: {
  16915. source: "./media/characters/memory/front-dress.svg",
  16916. extra: 3641 / 3545,
  16917. bottom: 0.03
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Micro",
  16924. height: math.unit(6, "inches"),
  16925. default: true
  16926. },
  16927. {
  16928. name: "Normal",
  16929. height: math.unit(5 + 4 / 12, "feet")
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16935. {
  16936. front: {
  16937. height: math.unit(4 + 11 / 12, "feet"),
  16938. weight: math.unit(100, "lb"),
  16939. name: "Front",
  16940. image: {
  16941. source: "./media/characters/luno/front.svg",
  16942. extra: 1535 / 1487,
  16943. bottom: 0.03
  16944. }
  16945. },
  16946. },
  16947. [
  16948. {
  16949. name: "Micro",
  16950. height: math.unit(3, "inches")
  16951. },
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(4 + 11 / 12, "feet"),
  16955. default: true
  16956. },
  16957. {
  16958. name: "Macro",
  16959. height: math.unit(300, "feet")
  16960. },
  16961. {
  16962. name: "Megamacro",
  16963. height: math.unit(700, "miles")
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16969. {
  16970. front: {
  16971. height: math.unit(6 + 2 / 12, "feet"),
  16972. weight: math.unit(170, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/jamesy/front.svg",
  16976. extra: 440 / 382,
  16977. bottom: 0.005
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Micro",
  16984. height: math.unit(3, "inches")
  16985. },
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(6 + 2 / 12, "feet"),
  16989. default: true
  16990. },
  16991. {
  16992. name: "Macro",
  16993. height: math.unit(300, "feet")
  16994. },
  16995. {
  16996. name: "Megamacro",
  16997. height: math.unit(700, "miles")
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17003. {
  17004. front: {
  17005. height: math.unit(6, "feet"),
  17006. weight: math.unit(160, "lb"),
  17007. name: "Front",
  17008. image: {
  17009. source: "./media/characters/mark/front.svg",
  17010. extra: 3300 / 3100,
  17011. bottom: 136.42 / 3440.47
  17012. }
  17013. },
  17014. },
  17015. [
  17016. {
  17017. name: "Macro",
  17018. height: math.unit(120, "meters")
  17019. },
  17020. {
  17021. name: "Bigger Macro",
  17022. height: math.unit(350, "meters")
  17023. },
  17024. {
  17025. name: "Megamacro",
  17026. height: math.unit(8, "km"),
  17027. default: true
  17028. },
  17029. {
  17030. name: "Continental",
  17031. height: math.unit(4550, "km")
  17032. },
  17033. {
  17034. name: "Planetary",
  17035. height: math.unit(65000, "km")
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(6, "feet"),
  17044. weight: math.unit(400, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/mac/front.svg",
  17048. extra: 1048 / 987.7,
  17049. bottom: 60 / 1107.6,
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Macro",
  17056. height: math.unit(500, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(5 + 2 / 12, "feet"),
  17066. weight: math.unit(190, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/bari/front.svg",
  17070. extra: 3156 / 2880,
  17071. bottom: 0.03
  17072. }
  17073. },
  17074. back: {
  17075. height: math.unit(5 + 2 / 12, "feet"),
  17076. weight: math.unit(190, "lb"),
  17077. name: "Back",
  17078. image: {
  17079. source: "./media/characters/bari/back.svg",
  17080. extra: 3260 / 2834,
  17081. bottom: 0.025
  17082. }
  17083. },
  17084. frontPlush: {
  17085. height: math.unit(5 + 2 / 12, "feet"),
  17086. weight: math.unit(190, "lb"),
  17087. name: "Front (Plush)",
  17088. image: {
  17089. source: "./media/characters/bari/front-plush.svg",
  17090. extra: 1112 / 1061,
  17091. bottom: 0.002
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Micro",
  17098. height: math.unit(3, "inches")
  17099. },
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(5 + 2 / 12, "feet"),
  17103. default: true
  17104. },
  17105. {
  17106. name: "Macro",
  17107. height: math.unit(20, "feet")
  17108. },
  17109. ]
  17110. ))
  17111. characterMakers.push(() => makeCharacter(
  17112. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17113. {
  17114. front: {
  17115. height: math.unit(6 + 1 / 12, "feet"),
  17116. weight: math.unit(275, "lb"),
  17117. name: "Front",
  17118. image: {
  17119. source: "./media/characters/hunter-misha-raven/front.svg"
  17120. }
  17121. },
  17122. },
  17123. [
  17124. {
  17125. name: "Mortal",
  17126. height: math.unit(6 + 1 / 12, "feet")
  17127. },
  17128. {
  17129. name: "Divine",
  17130. height: math.unit(1.12134e34, "parsecs"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17137. {
  17138. front: {
  17139. height: math.unit(6 + 3 / 12, "feet"),
  17140. weight: math.unit(220, "lb"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/max-calore/front.svg",
  17144. extra: 1700 / 1648,
  17145. bottom: 0.01
  17146. }
  17147. },
  17148. back: {
  17149. height: math.unit(6 + 3 / 12, "feet"),
  17150. weight: math.unit(220, "lb"),
  17151. name: "Back",
  17152. image: {
  17153. source: "./media/characters/max-calore/back.svg",
  17154. extra: 1700 / 1648,
  17155. bottom: 0.01
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Normal",
  17162. height: math.unit(6 + 3 / 12, "feet"),
  17163. default: true
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17169. {
  17170. side: {
  17171. height: math.unit(2 + 8 / 12, "feet"),
  17172. weight: math.unit(99, "lb"),
  17173. name: "Side",
  17174. image: {
  17175. source: "./media/characters/aspen/side.svg",
  17176. extra: 152 / 138,
  17177. bottom: 0.032
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(2 + 8 / 12, "feet"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17191. {
  17192. side: {
  17193. height: math.unit(3 + 2 / 12, "feet"),
  17194. weight: math.unit(224, "lb"),
  17195. name: "Side",
  17196. image: {
  17197. source: "./media/characters/sheila-feral-wolf/side.svg",
  17198. extra: 179 / 166,
  17199. bottom: 0.03
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(3 + 2 / 12, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17213. {
  17214. side: {
  17215. height: math.unit(1 + 9 / 12, "feet"),
  17216. weight: math.unit(38, "lb"),
  17217. name: "Side",
  17218. image: {
  17219. source: "./media/characters/michelle/side.svg",
  17220. extra: 147 / 136.7,
  17221. bottom: 0.03
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(1 + 9 / 12, "feet"),
  17229. default: true
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17235. {
  17236. front: {
  17237. height: math.unit(1.54, "feet"),
  17238. weight: math.unit(50, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/nino/front.svg"
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(1.54, "feet"),
  17249. default: true
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(1, "feet"),
  17258. weight: math.unit(16, "lb"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/viola/front.svg"
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(1, "feet"),
  17269. default: true
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17275. {
  17276. front: {
  17277. height: math.unit(6 + 5 / 12, "feet"),
  17278. weight: math.unit(580, "lb"),
  17279. name: "Front",
  17280. image: {
  17281. source: "./media/characters/atlas/front.svg",
  17282. extra: 298.5 / 290,
  17283. bottom: 0.015
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Normal",
  17290. height: math.unit(6 + 5 / 12, "feet"),
  17291. default: true
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17297. {
  17298. side: {
  17299. height: math.unit(1 + 10 / 12, "feet"),
  17300. weight: math.unit(25, "lb"),
  17301. name: "Side",
  17302. image: {
  17303. source: "./media/characters/davy/side.svg",
  17304. extra: 200 / 170,
  17305. bottom: 0.01
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Normal",
  17312. height: math.unit(1 + 10 / 12, "feet"),
  17313. default: true
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17319. {
  17320. side: {
  17321. height: math.unit(4 + 8 / 12, "feet"),
  17322. weight: math.unit(166, "lb"),
  17323. name: "Side",
  17324. image: {
  17325. source: "./media/characters/fiona/side.svg",
  17326. extra: 232 / 220,
  17327. bottom: 0.03
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(4 + 8 / 12, "feet"),
  17335. default: true
  17336. },
  17337. ]
  17338. ))
  17339. characterMakers.push(() => makeCharacter(
  17340. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17341. {
  17342. front: {
  17343. height: math.unit(3, "feet"),
  17344. weight: math.unit(100, "lb"),
  17345. name: "Front",
  17346. image: {
  17347. source: "./media/characters/lyla/front.svg",
  17348. bottom: 0.1
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(3, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17362. {
  17363. side: {
  17364. height: math.unit(1.8, "feet"),
  17365. weight: math.unit(44, "lb"),
  17366. name: "Side",
  17367. image: {
  17368. source: "./media/characters/perseus/side.svg",
  17369. bottom: 0.21
  17370. }
  17371. },
  17372. },
  17373. [
  17374. {
  17375. name: "Normal",
  17376. height: math.unit(1.8, "feet"),
  17377. default: true
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17383. {
  17384. side: {
  17385. height: math.unit(4 + 2 / 12, "feet"),
  17386. weight: math.unit(20, "lb"),
  17387. name: "Side",
  17388. image: {
  17389. source: "./media/characters/remus/side.svg"
  17390. }
  17391. },
  17392. },
  17393. [
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(4 + 2 / 12, "feet"),
  17397. default: true
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(4 + 11 / 12, "feet"),
  17406. weight: math.unit(114, "lb"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/raf/front.svg",
  17410. extra: 1504/1339,
  17411. bottom: 26/1530
  17412. }
  17413. },
  17414. side: {
  17415. height: math.unit(4 + 11 / 12, "feet"),
  17416. weight: math.unit(114, "lb"),
  17417. name: "Side",
  17418. image: {
  17419. source: "./media/characters/raf/side.svg",
  17420. extra: 1466/1316,
  17421. bottom: 29/1495
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Micro",
  17428. height: math.unit(2, "inches")
  17429. },
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(4 + 11 / 12, "feet"),
  17433. default: true
  17434. },
  17435. {
  17436. name: "Macro",
  17437. height: math.unit(70, "feet")
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17443. {
  17444. front: {
  17445. height: math.unit(1.5, "meters"),
  17446. weight: math.unit(68, "kg"),
  17447. name: "Front",
  17448. image: {
  17449. source: "./media/characters/liam-einarr/front.svg",
  17450. extra: 2822 / 2666
  17451. }
  17452. },
  17453. back: {
  17454. height: math.unit(1.5, "meters"),
  17455. weight: math.unit(68, "kg"),
  17456. name: "Back",
  17457. image: {
  17458. source: "./media/characters/liam-einarr/back.svg",
  17459. extra: 2822 / 2666,
  17460. bottom: 0.015
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(1.5, "meters"),
  17468. default: true
  17469. },
  17470. {
  17471. name: "Macro",
  17472. height: math.unit(150, "meters")
  17473. },
  17474. {
  17475. name: "Megamacro",
  17476. height: math.unit(35, "km")
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17482. {
  17483. front: {
  17484. height: math.unit(6, "feet"),
  17485. weight: math.unit(75, "kg"),
  17486. name: "Front",
  17487. image: {
  17488. source: "./media/characters/linda/front.svg",
  17489. extra: 930 / 874,
  17490. bottom: 0.004
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Normal",
  17497. height: math.unit(6, "feet"),
  17498. default: true
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17504. {
  17505. front: {
  17506. height: math.unit(6 + 8 / 12, "feet"),
  17507. weight: math.unit(220, "lb"),
  17508. name: "Front",
  17509. image: {
  17510. source: "./media/characters/caylex/front.svg",
  17511. extra: 821 / 772,
  17512. bottom: 0.07
  17513. }
  17514. },
  17515. back: {
  17516. height: math.unit(6 + 8 / 12, "feet"),
  17517. weight: math.unit(220, "lb"),
  17518. name: "Back",
  17519. image: {
  17520. source: "./media/characters/caylex/back.svg",
  17521. extra: 821 / 772,
  17522. bottom: 0.022
  17523. }
  17524. },
  17525. hand: {
  17526. height: math.unit(1.25, "feet"),
  17527. name: "Hand",
  17528. image: {
  17529. source: "./media/characters/caylex/hand.svg"
  17530. }
  17531. },
  17532. foot: {
  17533. height: math.unit(1.6, "feet"),
  17534. name: "Foot",
  17535. image: {
  17536. source: "./media/characters/caylex/foot.svg"
  17537. }
  17538. },
  17539. armored: {
  17540. height: math.unit(6 + 8 / 12, "feet"),
  17541. weight: math.unit(250, "lb"),
  17542. name: "Armored",
  17543. image: {
  17544. source: "./media/characters/caylex/armored.svg",
  17545. extra: 1420 / 1310,
  17546. bottom: 0.045
  17547. }
  17548. },
  17549. },
  17550. [
  17551. {
  17552. name: "Normal",
  17553. height: math.unit(6 + 8 / 12, "feet"),
  17554. default: true
  17555. },
  17556. {
  17557. name: "Normal+",
  17558. height: math.unit(12, "feet")
  17559. },
  17560. ]
  17561. ))
  17562. characterMakers.push(() => makeCharacter(
  17563. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17564. {
  17565. front: {
  17566. height: math.unit(7 + 6 / 12, "feet"),
  17567. weight: math.unit(288, "lb"),
  17568. name: "Front",
  17569. image: {
  17570. source: "./media/characters/alana/front.svg",
  17571. extra: 679 / 653,
  17572. bottom: 22.5 / 701
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(7 + 6 / 12, "feet")
  17580. },
  17581. {
  17582. name: "Large",
  17583. height: math.unit(50, "feet")
  17584. },
  17585. {
  17586. name: "Macro",
  17587. height: math.unit(100, "feet"),
  17588. default: true
  17589. },
  17590. {
  17591. name: "Macro+",
  17592. height: math.unit(200, "feet")
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17598. {
  17599. front: {
  17600. height: math.unit(6 + 1 / 12, "feet"),
  17601. weight: math.unit(210, "lb"),
  17602. name: "Front",
  17603. image: {
  17604. source: "./media/characters/hasani/front.svg",
  17605. extra: 244 / 232,
  17606. bottom: 0.01
  17607. }
  17608. },
  17609. back: {
  17610. height: math.unit(6 + 1 / 12, "feet"),
  17611. weight: math.unit(210, "lb"),
  17612. name: "Back",
  17613. image: {
  17614. source: "./media/characters/hasani/back.svg",
  17615. extra: 244 / 232,
  17616. bottom: 0.01
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Normal",
  17623. height: math.unit(6 + 1 / 12, "feet")
  17624. },
  17625. {
  17626. name: "Macro",
  17627. height: math.unit(175, "feet"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17634. {
  17635. front: {
  17636. height: math.unit(1.82, "meters"),
  17637. weight: math.unit(140, "lb"),
  17638. name: "Front",
  17639. image: {
  17640. source: "./media/characters/nita/front.svg",
  17641. extra: 2473 / 2363,
  17642. bottom: 0.01
  17643. }
  17644. },
  17645. },
  17646. [
  17647. {
  17648. name: "Normal",
  17649. height: math.unit(1.82, "m")
  17650. },
  17651. {
  17652. name: "Macro",
  17653. height: math.unit(300, "m")
  17654. },
  17655. {
  17656. name: "Mistake Canon",
  17657. height: math.unit(0.5, "miles"),
  17658. default: true
  17659. },
  17660. {
  17661. name: "Big Mistake",
  17662. height: math.unit(13, "miles")
  17663. },
  17664. {
  17665. name: "Playing God",
  17666. height: math.unit(2450, "miles")
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17672. {
  17673. front: {
  17674. height: math.unit(4, "feet"),
  17675. weight: math.unit(120, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/shiriko/front.svg",
  17679. extra: 970/934,
  17680. bottom: 5/975
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(4, "feet"),
  17688. default: true
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(6, "feet"),
  17697. name: "front",
  17698. image: {
  17699. source: "./media/characters/deja/front.svg",
  17700. extra: 926 / 840,
  17701. bottom: 0.07
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Planck Length",
  17708. height: math.unit(1.6e-35, "meters")
  17709. },
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(30.48, "meters"),
  17713. default: true
  17714. },
  17715. {
  17716. name: "Universal",
  17717. height: math.unit(8.8e26, "meters")
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17723. {
  17724. side: {
  17725. height: math.unit(8, "feet"),
  17726. weight: math.unit(6300, "lb"),
  17727. name: "Side",
  17728. image: {
  17729. source: "./media/characters/anima/side.svg",
  17730. bottom: 0.035
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(8, "feet"),
  17738. default: true
  17739. },
  17740. ]
  17741. ))
  17742. characterMakers.push(() => makeCharacter(
  17743. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17744. {
  17745. front: {
  17746. height: math.unit(8, "feet"),
  17747. weight: math.unit(350, "lb"),
  17748. name: "Front",
  17749. image: {
  17750. source: "./media/characters/bianca/front.svg",
  17751. extra: 234 / 225,
  17752. bottom: 0.03
  17753. }
  17754. },
  17755. },
  17756. [
  17757. {
  17758. name: "Normal",
  17759. height: math.unit(8, "feet"),
  17760. default: true
  17761. },
  17762. ]
  17763. ))
  17764. characterMakers.push(() => makeCharacter(
  17765. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17766. {
  17767. front: {
  17768. height: math.unit(6, "feet"),
  17769. weight: math.unit(150, "lb"),
  17770. name: "Front",
  17771. image: {
  17772. source: "./media/characters/adinia/front.svg",
  17773. extra: 1845 / 1672,
  17774. bottom: 0.02
  17775. }
  17776. },
  17777. back: {
  17778. height: math.unit(6, "feet"),
  17779. weight: math.unit(150, "lb"),
  17780. name: "Back",
  17781. image: {
  17782. source: "./media/characters/adinia/back.svg",
  17783. extra: 1845 / 1672,
  17784. bottom: 0.002
  17785. }
  17786. },
  17787. },
  17788. [
  17789. {
  17790. name: "Normal",
  17791. height: math.unit(11 + 5 / 12, "feet"),
  17792. default: true
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17798. {
  17799. front: {
  17800. height: math.unit(3, "meters"),
  17801. weight: math.unit(200, "kg"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/lykasa/front.svg",
  17805. extra: 1076 / 976,
  17806. bottom: 0.06
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(3, "meters")
  17814. },
  17815. {
  17816. name: "Kaiju",
  17817. height: math.unit(120, "meters"),
  17818. default: true
  17819. },
  17820. {
  17821. name: "Mega Kaiju",
  17822. height: math.unit(240, "km")
  17823. },
  17824. {
  17825. name: "Giga Kaiju",
  17826. height: math.unit(400, "megameters")
  17827. },
  17828. {
  17829. name: "Tera Kaiju",
  17830. height: math.unit(800, "gigameters")
  17831. },
  17832. {
  17833. name: "Kaiju Dragon Goddess",
  17834. height: math.unit(26, "zettaparsecs")
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17840. {
  17841. side: {
  17842. height: math.unit(283 / 124 * 6, "feet"),
  17843. weight: math.unit(35000, "lb"),
  17844. name: "Side",
  17845. image: {
  17846. source: "./media/characters/malfaren/side.svg",
  17847. extra: 1310/529,
  17848. bottom: 24/1334
  17849. }
  17850. },
  17851. front: {
  17852. height: math.unit(22.36, "feet"),
  17853. weight: math.unit(35000, "lb"),
  17854. name: "Front",
  17855. image: {
  17856. source: "./media/characters/malfaren/front.svg",
  17857. extra: 1237/1115,
  17858. bottom: 32/1269
  17859. }
  17860. },
  17861. maw: {
  17862. height: math.unit(6.9, "feet"),
  17863. name: "Maw",
  17864. image: {
  17865. source: "./media/characters/malfaren/maw.svg"
  17866. }
  17867. },
  17868. dick: {
  17869. height: math.unit(6.19, "feet"),
  17870. name: "Dick",
  17871. image: {
  17872. source: "./media/characters/malfaren/dick.svg"
  17873. }
  17874. },
  17875. eye: {
  17876. height: math.unit(0.69, "feet"),
  17877. name: "Eye",
  17878. image: {
  17879. source: "./media/characters/malfaren/eye.svg"
  17880. }
  17881. },
  17882. },
  17883. [
  17884. {
  17885. name: "Big",
  17886. height: math.unit(283 / 162 * 6, "feet"),
  17887. },
  17888. {
  17889. name: "Bigger",
  17890. height: math.unit(283 / 124 * 6, "feet")
  17891. },
  17892. {
  17893. name: "Massive",
  17894. height: math.unit(283 / 92 * 6, "feet"),
  17895. default: true
  17896. },
  17897. {
  17898. name: "👀💦",
  17899. height: math.unit(283 / 73 * 6, "feet"),
  17900. },
  17901. ]
  17902. ))
  17903. characterMakers.push(() => makeCharacter(
  17904. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17905. {
  17906. front: {
  17907. height: math.unit(1.7, "m"),
  17908. weight: math.unit(70, "kg"),
  17909. name: "Front",
  17910. image: {
  17911. source: "./media/characters/kernel/front.svg",
  17912. extra: 222 / 210,
  17913. bottom: 0.007
  17914. }
  17915. },
  17916. },
  17917. [
  17918. {
  17919. name: "Nano",
  17920. height: math.unit(17, "micrometers")
  17921. },
  17922. {
  17923. name: "Micro",
  17924. height: math.unit(1.7, "mm")
  17925. },
  17926. {
  17927. name: "Small",
  17928. height: math.unit(1.7, "cm")
  17929. },
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(1.7, "m"),
  17933. default: true
  17934. },
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17939. {
  17940. front: {
  17941. height: math.unit(1.75, "meters"),
  17942. weight: math.unit(65, "kg"),
  17943. name: "Front",
  17944. image: {
  17945. source: "./media/characters/jayne-folest/front.svg",
  17946. extra: 2115 / 2007,
  17947. bottom: 0.02
  17948. }
  17949. },
  17950. back: {
  17951. height: math.unit(1.75, "meters"),
  17952. weight: math.unit(65, "kg"),
  17953. name: "Back",
  17954. image: {
  17955. source: "./media/characters/jayne-folest/back.svg",
  17956. extra: 2115 / 2007,
  17957. bottom: 0.005
  17958. }
  17959. },
  17960. frontClothed: {
  17961. height: math.unit(1.75, "meters"),
  17962. weight: math.unit(65, "kg"),
  17963. name: "Front (Clothed)",
  17964. image: {
  17965. source: "./media/characters/jayne-folest/front-clothed.svg",
  17966. extra: 2115 / 2007,
  17967. bottom: 0.035
  17968. }
  17969. },
  17970. hand: {
  17971. height: math.unit(1 / 1.260, "feet"),
  17972. name: "Hand",
  17973. image: {
  17974. source: "./media/characters/jayne-folest/hand.svg"
  17975. }
  17976. },
  17977. foot: {
  17978. height: math.unit(1 / 0.918, "feet"),
  17979. name: "Foot",
  17980. image: {
  17981. source: "./media/characters/jayne-folest/foot.svg"
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Micro",
  17988. height: math.unit(4, "cm")
  17989. },
  17990. {
  17991. name: "Normal",
  17992. height: math.unit(1.75, "meters")
  17993. },
  17994. {
  17995. name: "Macro",
  17996. height: math.unit(47.5, "meters"),
  17997. default: true
  17998. },
  17999. ]
  18000. ))
  18001. characterMakers.push(() => makeCharacter(
  18002. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18003. {
  18004. front: {
  18005. height: math.unit(180, "cm"),
  18006. weight: math.unit(70, "kg"),
  18007. name: "Front",
  18008. image: {
  18009. source: "./media/characters/algier/front.svg",
  18010. extra: 596 / 572,
  18011. bottom: 0.04
  18012. }
  18013. },
  18014. back: {
  18015. height: math.unit(180, "cm"),
  18016. weight: math.unit(70, "kg"),
  18017. name: "Back",
  18018. image: {
  18019. source: "./media/characters/algier/back.svg",
  18020. extra: 596 / 572,
  18021. bottom: 0.025
  18022. }
  18023. },
  18024. frontdressed: {
  18025. height: math.unit(180, "cm"),
  18026. weight: math.unit(150, "kg"),
  18027. name: "Front-dressed",
  18028. image: {
  18029. source: "./media/characters/algier/front-dressed.svg",
  18030. extra: 596 / 572,
  18031. bottom: 0.038
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Micro",
  18038. height: math.unit(5, "cm")
  18039. },
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(180, "cm"),
  18043. default: true
  18044. },
  18045. {
  18046. name: "Macro",
  18047. height: math.unit(64, "m")
  18048. },
  18049. ]
  18050. ))
  18051. characterMakers.push(() => makeCharacter(
  18052. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18053. {
  18054. upright: {
  18055. height: math.unit(7, "feet"),
  18056. weight: math.unit(300, "lb"),
  18057. name: "Upright",
  18058. image: {
  18059. source: "./media/characters/pretzel/upright.svg",
  18060. extra: 534 / 522,
  18061. bottom: 0.065
  18062. }
  18063. },
  18064. sprawling: {
  18065. height: math.unit(3.75, "feet"),
  18066. weight: math.unit(300, "lb"),
  18067. name: "Sprawling",
  18068. image: {
  18069. source: "./media/characters/pretzel/sprawling.svg",
  18070. extra: 314 / 281,
  18071. bottom: 0.1
  18072. }
  18073. },
  18074. tongue: {
  18075. height: math.unit(2, "feet"),
  18076. name: "Tongue",
  18077. image: {
  18078. source: "./media/characters/pretzel/tongue.svg"
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Normal",
  18085. height: math.unit(7, "feet"),
  18086. default: true
  18087. },
  18088. {
  18089. name: "Oversized",
  18090. height: math.unit(15, "feet")
  18091. },
  18092. {
  18093. name: "Huge",
  18094. height: math.unit(30, "feet")
  18095. },
  18096. {
  18097. name: "Macro",
  18098. height: math.unit(250, "feet")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18104. {
  18105. sideFront: {
  18106. height: math.unit(5 + 2 / 12, "feet"),
  18107. weight: math.unit(120, "lb"),
  18108. name: "Front Side",
  18109. image: {
  18110. source: "./media/characters/roxi/side-front.svg",
  18111. extra: 2924 / 2717,
  18112. bottom: 0.08
  18113. }
  18114. },
  18115. sideBack: {
  18116. height: math.unit(5 + 2 / 12, "feet"),
  18117. weight: math.unit(120, "lb"),
  18118. name: "Back Side",
  18119. image: {
  18120. source: "./media/characters/roxi/side-back.svg",
  18121. extra: 2904 / 2693,
  18122. bottom: 0.06
  18123. }
  18124. },
  18125. front: {
  18126. height: math.unit(5 + 2 / 12, "feet"),
  18127. weight: math.unit(120, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/roxi/front.svg",
  18131. extra: 2028 / 1907,
  18132. bottom: 0.01
  18133. }
  18134. },
  18135. frontAlt: {
  18136. height: math.unit(5 + 2 / 12, "feet"),
  18137. weight: math.unit(120, "lb"),
  18138. name: "Front (Alt)",
  18139. image: {
  18140. source: "./media/characters/roxi/front-alt.svg",
  18141. extra: 1828 / 1798,
  18142. bottom: 0.01
  18143. }
  18144. },
  18145. sitting: {
  18146. height: math.unit(2.8, "feet"),
  18147. weight: math.unit(120, "lb"),
  18148. name: "Sitting",
  18149. image: {
  18150. source: "./media/characters/roxi/sitting.svg",
  18151. extra: 2660 / 2462,
  18152. bottom: 0.1
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(5 + 2 / 12, "feet"),
  18160. default: true
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18166. {
  18167. side: {
  18168. height: math.unit(55, "feet"),
  18169. weight: math.unit(153, "tons"),
  18170. name: "Side",
  18171. image: {
  18172. source: "./media/characters/shadow/side.svg",
  18173. extra: 701 / 628,
  18174. bottom: 0.02
  18175. }
  18176. },
  18177. flying: {
  18178. height: math.unit(145, "feet"),
  18179. weight: math.unit(153, "tons"),
  18180. name: "Flying",
  18181. image: {
  18182. source: "./media/characters/shadow/flying.svg"
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(55, "feet"),
  18190. default: true
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18196. {
  18197. front: {
  18198. height: math.unit(6, "feet"),
  18199. weight: math.unit(200, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/marcie/front.svg",
  18203. extra: 960 / 876,
  18204. bottom: 58 / 1017.87
  18205. }
  18206. },
  18207. },
  18208. [
  18209. {
  18210. name: "Macro",
  18211. height: math.unit(1, "mile"),
  18212. default: true
  18213. },
  18214. ]
  18215. ))
  18216. characterMakers.push(() => makeCharacter(
  18217. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18218. {
  18219. front: {
  18220. height: math.unit(7, "feet"),
  18221. weight: math.unit(200, "lb"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/kachina/front.svg",
  18225. extra: 1290.68 / 1119,
  18226. bottom: 36.5 / 1327.18
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(7, "feet"),
  18234. default: true
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18240. {
  18241. looking: {
  18242. height: math.unit(2, "meters"),
  18243. weight: math.unit(300, "kg"),
  18244. name: "Looking",
  18245. image: {
  18246. source: "./media/characters/kash/looking.svg",
  18247. extra: 474 / 344,
  18248. bottom: 0.03
  18249. }
  18250. },
  18251. side: {
  18252. height: math.unit(2, "meters"),
  18253. weight: math.unit(300, "kg"),
  18254. name: "Side",
  18255. image: {
  18256. source: "./media/characters/kash/side.svg",
  18257. extra: 302 / 251,
  18258. bottom: 0.03
  18259. }
  18260. },
  18261. front: {
  18262. height: math.unit(2, "meters"),
  18263. weight: math.unit(300, "kg"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/kash/front.svg",
  18267. extra: 495 / 360,
  18268. bottom: 0.015
  18269. }
  18270. },
  18271. },
  18272. [
  18273. {
  18274. name: "Normal",
  18275. height: math.unit(2, "meters"),
  18276. default: true
  18277. },
  18278. {
  18279. name: "Big",
  18280. height: math.unit(3, "meters")
  18281. },
  18282. {
  18283. name: "Large",
  18284. height: math.unit(5, "meters")
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18290. {
  18291. feeding: {
  18292. height: math.unit(6.7, "feet"),
  18293. weight: math.unit(350, "lb"),
  18294. name: "Feeding",
  18295. image: {
  18296. source: "./media/characters/lalim/feeding.svg",
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(6.7, "feet"),
  18304. default: true
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(9.5, "feet"),
  18313. weight: math.unit(600, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/de'vout/front.svg",
  18317. extra: 1443 / 1328,
  18318. bottom: 0.025
  18319. }
  18320. },
  18321. back: {
  18322. height: math.unit(9.5, "feet"),
  18323. weight: math.unit(600, "lb"),
  18324. name: "Back",
  18325. image: {
  18326. source: "./media/characters/de'vout/back.svg",
  18327. extra: 1443 / 1328
  18328. }
  18329. },
  18330. frontDressed: {
  18331. height: math.unit(9.5, "feet"),
  18332. weight: math.unit(600, "lb"),
  18333. name: "Front (Dressed",
  18334. image: {
  18335. source: "./media/characters/de'vout/front-dressed.svg",
  18336. extra: 1443 / 1328,
  18337. bottom: 0.025
  18338. }
  18339. },
  18340. backDressed: {
  18341. height: math.unit(9.5, "feet"),
  18342. weight: math.unit(600, "lb"),
  18343. name: "Back (Dressed",
  18344. image: {
  18345. source: "./media/characters/de'vout/back-dressed.svg",
  18346. extra: 1443 / 1328
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(9.5, "feet"),
  18354. default: true
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18360. {
  18361. front: {
  18362. height: math.unit(8, "feet"),
  18363. weight: math.unit(225, "lb"),
  18364. name: "Front",
  18365. image: {
  18366. source: "./media/characters/talana/front.svg",
  18367. extra: 1410 / 1300,
  18368. bottom: 0.015
  18369. }
  18370. },
  18371. frontDressed: {
  18372. height: math.unit(8, "feet"),
  18373. weight: math.unit(225, "lb"),
  18374. name: "Front (Dressed",
  18375. image: {
  18376. source: "./media/characters/talana/front-dressed.svg",
  18377. extra: 1410 / 1300,
  18378. bottom: 0.015
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(8, "feet"),
  18386. default: true
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18392. {
  18393. side: {
  18394. height: math.unit(7.2, "feet"),
  18395. weight: math.unit(150, "lb"),
  18396. name: "Side",
  18397. image: {
  18398. source: "./media/characters/xeauvok/side.svg",
  18399. extra: 1975 / 1523,
  18400. bottom: 0.07
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(7.2, "feet"),
  18408. default: true
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18414. {
  18415. side: {
  18416. height: math.unit(10, "feet"),
  18417. weight: math.unit(900, "kg"),
  18418. name: "Side",
  18419. image: {
  18420. source: "./media/characters/zara/side.svg",
  18421. extra: 504 / 498
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Normal",
  18428. height: math.unit(10, "feet"),
  18429. default: true
  18430. },
  18431. ]
  18432. ))
  18433. characterMakers.push(() => makeCharacter(
  18434. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18435. {
  18436. side: {
  18437. height: math.unit(6, "feet"),
  18438. weight: math.unit(150, "lb"),
  18439. name: "Side",
  18440. image: {
  18441. source: "./media/characters/richard-dragon/side.svg",
  18442. extra: 845 / 340,
  18443. bottom: 0.017
  18444. }
  18445. },
  18446. maw: {
  18447. height: math.unit(2.97, "feet"),
  18448. name: "Maw",
  18449. image: {
  18450. source: "./media/characters/richard-dragon/maw.svg"
  18451. }
  18452. },
  18453. },
  18454. [
  18455. ]
  18456. ))
  18457. characterMakers.push(() => makeCharacter(
  18458. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18459. {
  18460. front: {
  18461. height: math.unit(4, "feet"),
  18462. weight: math.unit(100, "lb"),
  18463. name: "Front",
  18464. image: {
  18465. source: "./media/characters/richard-smeargle/front.svg",
  18466. extra: 2952 / 2820,
  18467. bottom: 0.028
  18468. }
  18469. },
  18470. },
  18471. [
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(4, "feet"),
  18475. default: true
  18476. },
  18477. {
  18478. name: "Dynamax",
  18479. height: math.unit(20, "meters")
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18485. {
  18486. front: {
  18487. height: math.unit(6, "feet"),
  18488. weight: math.unit(110, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/klay/front.svg",
  18492. extra: 962 / 883,
  18493. bottom: 0.04
  18494. }
  18495. },
  18496. back: {
  18497. height: math.unit(6, "feet"),
  18498. weight: math.unit(110, "lb"),
  18499. name: "Back",
  18500. image: {
  18501. source: "./media/characters/klay/back.svg",
  18502. extra: 962 / 883
  18503. }
  18504. },
  18505. beans: {
  18506. height: math.unit(1.15, "feet"),
  18507. name: "Beans",
  18508. image: {
  18509. source: "./media/characters/klay/beans.svg"
  18510. }
  18511. },
  18512. },
  18513. [
  18514. {
  18515. name: "Micro",
  18516. height: math.unit(6, "inches")
  18517. },
  18518. {
  18519. name: "Mini",
  18520. height: math.unit(3, "feet")
  18521. },
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(6, "feet"),
  18525. default: true
  18526. },
  18527. {
  18528. name: "Big",
  18529. height: math.unit(25, "feet")
  18530. },
  18531. {
  18532. name: "Macro",
  18533. height: math.unit(100, "feet")
  18534. },
  18535. {
  18536. name: "Megamacro",
  18537. height: math.unit(400, "feet")
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18543. {
  18544. front: {
  18545. height: math.unit(6, "feet"),
  18546. weight: math.unit(160, "lb"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/marcus/front.svg",
  18550. extra: 734 / 676,
  18551. bottom: 0.03
  18552. }
  18553. },
  18554. },
  18555. [
  18556. {
  18557. name: "Little",
  18558. height: math.unit(6, "feet")
  18559. },
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(110, "feet"),
  18563. default: true
  18564. },
  18565. {
  18566. name: "Macro",
  18567. height: math.unit(250, "feet")
  18568. },
  18569. {
  18570. name: "Megamacro",
  18571. height: math.unit(1000, "feet")
  18572. },
  18573. ]
  18574. ))
  18575. characterMakers.push(() => makeCharacter(
  18576. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18577. {
  18578. front: {
  18579. height: math.unit(7, "feet"),
  18580. weight: math.unit(275, "lb"),
  18581. name: "Front",
  18582. image: {
  18583. source: "./media/characters/claude-delroute/front.svg",
  18584. extra: 902/827,
  18585. bottom: 26/928
  18586. }
  18587. },
  18588. side: {
  18589. height: math.unit(7, "feet"),
  18590. weight: math.unit(275, "lb"),
  18591. name: "Side",
  18592. image: {
  18593. source: "./media/characters/claude-delroute/side.svg",
  18594. extra: 908/853,
  18595. bottom: 16/924
  18596. }
  18597. },
  18598. back: {
  18599. height: math.unit(7, "feet"),
  18600. weight: math.unit(275, "lb"),
  18601. name: "Back",
  18602. image: {
  18603. source: "./media/characters/claude-delroute/back.svg",
  18604. extra: 911/829,
  18605. bottom: 18/929
  18606. }
  18607. },
  18608. maw: {
  18609. height: math.unit(0.6407, "meters"),
  18610. name: "Maw",
  18611. image: {
  18612. source: "./media/characters/claude-delroute/maw.svg"
  18613. }
  18614. },
  18615. },
  18616. [
  18617. {
  18618. name: "Normal",
  18619. height: math.unit(7, "feet"),
  18620. default: true
  18621. },
  18622. {
  18623. name: "Lorge",
  18624. height: math.unit(20, "feet")
  18625. },
  18626. ]
  18627. ))
  18628. characterMakers.push(() => makeCharacter(
  18629. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18630. {
  18631. front: {
  18632. height: math.unit(8 + 4 / 12, "feet"),
  18633. weight: math.unit(600, "lb"),
  18634. name: "Front",
  18635. image: {
  18636. source: "./media/characters/dragonien/front.svg",
  18637. extra: 100 / 94,
  18638. bottom: 3.3 / 103.3445
  18639. }
  18640. },
  18641. back: {
  18642. height: math.unit(8 + 4 / 12, "feet"),
  18643. weight: math.unit(600, "lb"),
  18644. name: "Back",
  18645. image: {
  18646. source: "./media/characters/dragonien/back.svg",
  18647. extra: 776 / 746,
  18648. bottom: 6.4 / 782.0616
  18649. }
  18650. },
  18651. foot: {
  18652. height: math.unit(1.54, "feet"),
  18653. name: "Foot",
  18654. image: {
  18655. source: "./media/characters/dragonien/foot.svg",
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Normal",
  18662. height: math.unit(8 + 4 / 12, "feet"),
  18663. default: true
  18664. },
  18665. {
  18666. name: "Macro",
  18667. height: math.unit(200, "feet")
  18668. },
  18669. {
  18670. name: "Megamacro",
  18671. height: math.unit(1, "mile")
  18672. },
  18673. {
  18674. name: "Gigamacro",
  18675. height: math.unit(1000, "miles")
  18676. },
  18677. ]
  18678. ))
  18679. characterMakers.push(() => makeCharacter(
  18680. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18681. {
  18682. front: {
  18683. height: math.unit(5 + 2 / 12, "feet"),
  18684. weight: math.unit(110, "lb"),
  18685. name: "Front",
  18686. image: {
  18687. source: "./media/characters/desta/front.svg",
  18688. extra: 767 / 726,
  18689. bottom: 11.7 / 779
  18690. }
  18691. },
  18692. back: {
  18693. height: math.unit(5 + 2 / 12, "feet"),
  18694. weight: math.unit(110, "lb"),
  18695. name: "Back",
  18696. image: {
  18697. source: "./media/characters/desta/back.svg",
  18698. extra: 777 / 728,
  18699. bottom: 6 / 784
  18700. }
  18701. },
  18702. frontAlt: {
  18703. height: math.unit(5 + 2 / 12, "feet"),
  18704. weight: math.unit(110, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/desta/front-alt.svg",
  18708. extra: 1482 / 1417
  18709. }
  18710. },
  18711. side: {
  18712. height: math.unit(5 + 2 / 12, "feet"),
  18713. weight: math.unit(110, "lb"),
  18714. name: "Side",
  18715. image: {
  18716. source: "./media/characters/desta/side.svg",
  18717. extra: 2579 / 2491,
  18718. bottom: 0.053
  18719. }
  18720. },
  18721. },
  18722. [
  18723. {
  18724. name: "Micro",
  18725. height: math.unit(6, "inches")
  18726. },
  18727. {
  18728. name: "Normal",
  18729. height: math.unit(5 + 2 / 12, "feet"),
  18730. default: true
  18731. },
  18732. {
  18733. name: "Macro",
  18734. height: math.unit(62, "feet")
  18735. },
  18736. {
  18737. name: "Megamacro",
  18738. height: math.unit(1800, "feet")
  18739. },
  18740. ]
  18741. ))
  18742. characterMakers.push(() => makeCharacter(
  18743. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18744. {
  18745. front: {
  18746. height: math.unit(10, "feet"),
  18747. weight: math.unit(700, "lb"),
  18748. name: "Front",
  18749. image: {
  18750. source: "./media/characters/storm-alystar/front.svg",
  18751. extra: 2112 / 1898,
  18752. bottom: 0.034
  18753. }
  18754. },
  18755. },
  18756. [
  18757. {
  18758. name: "Micro",
  18759. height: math.unit(3.5, "inches")
  18760. },
  18761. {
  18762. name: "Normal",
  18763. height: math.unit(10, "feet"),
  18764. default: true
  18765. },
  18766. {
  18767. name: "Macro",
  18768. height: math.unit(400, "feet")
  18769. },
  18770. {
  18771. name: "Deific",
  18772. height: math.unit(60, "miles")
  18773. },
  18774. ]
  18775. ))
  18776. characterMakers.push(() => makeCharacter(
  18777. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18778. {
  18779. front: {
  18780. height: math.unit(2.35, "meters"),
  18781. weight: math.unit(119, "kg"),
  18782. name: "Front",
  18783. image: {
  18784. source: "./media/characters/ilia/front.svg",
  18785. extra: 1285 / 1255,
  18786. bottom: 0.06
  18787. }
  18788. },
  18789. },
  18790. [
  18791. {
  18792. name: "Normal",
  18793. height: math.unit(2.35, "meters")
  18794. },
  18795. {
  18796. name: "Macro",
  18797. height: math.unit(140, "meters"),
  18798. default: true
  18799. },
  18800. {
  18801. name: "Megamacro",
  18802. height: math.unit(100, "miles")
  18803. },
  18804. ]
  18805. ))
  18806. characterMakers.push(() => makeCharacter(
  18807. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18808. {
  18809. front: {
  18810. height: math.unit(6 + 5 / 12, "feet"),
  18811. weight: math.unit(190, "lb"),
  18812. name: "Front",
  18813. image: {
  18814. source: "./media/characters/kingdead/front.svg",
  18815. extra: 1228 / 1177
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Micro",
  18822. height: math.unit(7, "inches")
  18823. },
  18824. {
  18825. name: "Normal",
  18826. height: math.unit(6 + 5 / 12, "feet")
  18827. },
  18828. {
  18829. name: "Macro",
  18830. height: math.unit(150, "feet"),
  18831. default: true
  18832. },
  18833. {
  18834. name: "Megamacro",
  18835. height: math.unit(200, "miles")
  18836. },
  18837. ]
  18838. ))
  18839. characterMakers.push(() => makeCharacter(
  18840. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18841. {
  18842. front: {
  18843. height: math.unit(8, "feet"),
  18844. weight: math.unit(600, "lb"),
  18845. name: "Front",
  18846. image: {
  18847. source: "./media/characters/kyrehx/front.svg",
  18848. extra: 1195 / 1095,
  18849. bottom: 0.034
  18850. }
  18851. },
  18852. },
  18853. [
  18854. {
  18855. name: "Micro",
  18856. height: math.unit(2, "inches")
  18857. },
  18858. {
  18859. name: "Normal",
  18860. height: math.unit(8, "feet"),
  18861. default: true
  18862. },
  18863. {
  18864. name: "Macro",
  18865. height: math.unit(255, "feet")
  18866. },
  18867. ]
  18868. ))
  18869. characterMakers.push(() => makeCharacter(
  18870. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18871. {
  18872. front: {
  18873. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18874. weight: math.unit(184, "lb"),
  18875. name: "Front",
  18876. image: {
  18877. source: "./media/characters/xang/front.svg",
  18878. extra: 845 / 755
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Normal",
  18885. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18886. default: true
  18887. },
  18888. {
  18889. name: "Macro",
  18890. height: math.unit(0.935 * 146, "feet")
  18891. },
  18892. {
  18893. name: "Megamacro",
  18894. height: math.unit(0.935 * 3, "miles")
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18900. {
  18901. frontDressed: {
  18902. height: math.unit(5 + 7 / 12, "feet"),
  18903. weight: math.unit(140, "lb"),
  18904. name: "Front (Dressed)",
  18905. image: {
  18906. source: "./media/characters/doc-weardno/front-dressed.svg",
  18907. extra: 263 / 234
  18908. }
  18909. },
  18910. backDressed: {
  18911. height: math.unit(5 + 7 / 12, "feet"),
  18912. weight: math.unit(140, "lb"),
  18913. name: "Back (Dressed)",
  18914. image: {
  18915. source: "./media/characters/doc-weardno/back-dressed.svg",
  18916. extra: 266 / 238
  18917. }
  18918. },
  18919. front: {
  18920. height: math.unit(5 + 7 / 12, "feet"),
  18921. weight: math.unit(140, "lb"),
  18922. name: "Front",
  18923. image: {
  18924. source: "./media/characters/doc-weardno/front.svg",
  18925. extra: 254 / 233
  18926. }
  18927. },
  18928. },
  18929. [
  18930. {
  18931. name: "Micro",
  18932. height: math.unit(3, "inches")
  18933. },
  18934. {
  18935. name: "Normal",
  18936. height: math.unit(5 + 7 / 12, "feet"),
  18937. default: true
  18938. },
  18939. {
  18940. name: "Macro",
  18941. height: math.unit(25, "feet")
  18942. },
  18943. {
  18944. name: "Megamacro",
  18945. height: math.unit(2, "miles")
  18946. },
  18947. ]
  18948. ))
  18949. characterMakers.push(() => makeCharacter(
  18950. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18951. {
  18952. front: {
  18953. height: math.unit(6 + 2 / 12, "feet"),
  18954. weight: math.unit(153, "lb"),
  18955. name: "Front",
  18956. image: {
  18957. source: "./media/characters/seth-whilst/front.svg",
  18958. bottom: 0.07
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Micro",
  18965. height: math.unit(5, "inches")
  18966. },
  18967. {
  18968. name: "Normal",
  18969. height: math.unit(6 + 2 / 12, "feet"),
  18970. default: true
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(3, "inches"),
  18979. weight: math.unit(8, "grams"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/pocket-jabari/front.svg",
  18983. extra: 1024 / 974,
  18984. bottom: 0.039
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Minimicro",
  18991. height: math.unit(8, "mm")
  18992. },
  18993. {
  18994. name: "Micro",
  18995. height: math.unit(3, "inches"),
  18996. default: true
  18997. },
  18998. {
  18999. name: "Normal",
  19000. height: math.unit(3, "feet")
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19006. {
  19007. front: {
  19008. height: math.unit(15, "feet"),
  19009. weight: math.unit(3280, "lb"),
  19010. name: "Front",
  19011. image: {
  19012. source: "./media/characters/sapphy/front.svg",
  19013. extra: 671 / 577,
  19014. bottom: 0.085
  19015. }
  19016. },
  19017. back: {
  19018. height: math.unit(15, "feet"),
  19019. weight: math.unit(3280, "lb"),
  19020. name: "Back",
  19021. image: {
  19022. source: "./media/characters/sapphy/back.svg",
  19023. extra: 631 / 607,
  19024. bottom: 0.045
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(15, "feet")
  19032. },
  19033. {
  19034. name: "Casual Macro",
  19035. height: math.unit(120, "feet")
  19036. },
  19037. {
  19038. name: "Macro",
  19039. height: math.unit(2150, "feet"),
  19040. default: true
  19041. },
  19042. {
  19043. name: "Megamacro",
  19044. height: math.unit(8, "miles")
  19045. },
  19046. {
  19047. name: "Galaxy Mom",
  19048. height: math.unit(6, "megalightyears")
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19054. {
  19055. front: {
  19056. height: math.unit(6, "feet"),
  19057. weight: math.unit(170, "lb"),
  19058. name: "Front",
  19059. image: {
  19060. source: "./media/characters/kiro/front.svg",
  19061. extra: 1064 / 1012,
  19062. bottom: 0.052
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Micro",
  19069. height: math.unit(6, "inches")
  19070. },
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(6, "feet"),
  19074. default: true
  19075. },
  19076. {
  19077. name: "Macro",
  19078. height: math.unit(72, "feet")
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19084. {
  19085. front: {
  19086. height: math.unit(5 + 9 / 12, "feet"),
  19087. weight: math.unit(175, "lb"),
  19088. name: "Front",
  19089. image: {
  19090. source: "./media/characters/irishfox/front.svg",
  19091. extra: 1912 / 1680,
  19092. bottom: 0.02
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Nano",
  19099. height: math.unit(1, "mm")
  19100. },
  19101. {
  19102. name: "Micro",
  19103. height: math.unit(2, "inches")
  19104. },
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(5 + 9 / 12, "feet"),
  19108. default: true
  19109. },
  19110. {
  19111. name: "Macro",
  19112. height: math.unit(45, "feet")
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(6 + 1 / 12, "feet"),
  19121. weight: math.unit(75, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/aronai-sieyes/front.svg",
  19125. extra: 1532/1450,
  19126. bottom: 42/1574
  19127. }
  19128. },
  19129. side: {
  19130. height: math.unit(6 + 1 / 12, "feet"),
  19131. weight: math.unit(75, "lb"),
  19132. name: "Side",
  19133. image: {
  19134. source: "./media/characters/aronai-sieyes/side.svg",
  19135. extra: 1422/1365,
  19136. bottom: 148/1570
  19137. }
  19138. },
  19139. back: {
  19140. height: math.unit(6 + 1 / 12, "feet"),
  19141. weight: math.unit(75, "lb"),
  19142. name: "Back",
  19143. image: {
  19144. source: "./media/characters/aronai-sieyes/back.svg",
  19145. extra: 1526/1464,
  19146. bottom: 51/1577
  19147. }
  19148. },
  19149. dressed: {
  19150. height: math.unit(6 + 1 / 12, "feet"),
  19151. weight: math.unit(75, "lb"),
  19152. name: "Dressed",
  19153. image: {
  19154. source: "./media/characters/aronai-sieyes/dressed.svg",
  19155. extra: 1559/1483,
  19156. bottom: 39/1598
  19157. }
  19158. },
  19159. slit: {
  19160. height: math.unit(1.3, "feet"),
  19161. name: "Slit",
  19162. image: {
  19163. source: "./media/characters/aronai-sieyes/slit.svg"
  19164. }
  19165. },
  19166. slitSpread: {
  19167. height: math.unit(0.9, "feet"),
  19168. name: "Slit (Spread)",
  19169. image: {
  19170. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19171. }
  19172. },
  19173. rump: {
  19174. height: math.unit(1.3, "feet"),
  19175. name: "Rump",
  19176. image: {
  19177. source: "./media/characters/aronai-sieyes/rump.svg"
  19178. }
  19179. },
  19180. maw: {
  19181. height: math.unit(1.25, "feet"),
  19182. name: "Maw",
  19183. image: {
  19184. source: "./media/characters/aronai-sieyes/maw.svg"
  19185. }
  19186. },
  19187. feral: {
  19188. height: math.unit(18, "feet"),
  19189. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19190. name: "Feral",
  19191. image: {
  19192. source: "./media/characters/aronai-sieyes/feral.svg",
  19193. extra: 1530 / 1240,
  19194. bottom: 0.035
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Micro",
  19201. height: math.unit(2, "inches")
  19202. },
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(6 + 1 / 12, "feet"),
  19206. default: true
  19207. }
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(12, "feet"),
  19215. weight: math.unit(410, "kg"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/xuna/front.svg",
  19219. extra: 2184 / 1980
  19220. }
  19221. },
  19222. side: {
  19223. height: math.unit(12, "feet"),
  19224. weight: math.unit(410, "kg"),
  19225. name: "Side",
  19226. image: {
  19227. source: "./media/characters/xuna/side.svg",
  19228. extra: 2184 / 1980
  19229. }
  19230. },
  19231. back: {
  19232. height: math.unit(12, "feet"),
  19233. weight: math.unit(410, "kg"),
  19234. name: "Back",
  19235. image: {
  19236. source: "./media/characters/xuna/back.svg",
  19237. extra: 2184 / 1980
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Nano glow",
  19244. height: math.unit(10, "nm")
  19245. },
  19246. {
  19247. name: "Micro floof",
  19248. height: math.unit(0.3, "m")
  19249. },
  19250. {
  19251. name: "Huggable softy boi",
  19252. height: math.unit(3.6576, "m"),
  19253. default: true
  19254. },
  19255. {
  19256. name: "Admirable floof",
  19257. height: math.unit(80, "meters")
  19258. },
  19259. {
  19260. name: "Gentle macro",
  19261. height: math.unit(300, "meters")
  19262. },
  19263. {
  19264. name: "Very careful floof",
  19265. height: math.unit(3200, "meters")
  19266. },
  19267. {
  19268. name: "The mega floof",
  19269. height: math.unit(36000, "meters")
  19270. },
  19271. {
  19272. name: "Giga-fur-Wicker",
  19273. height: math.unit(4800000, "meters")
  19274. },
  19275. {
  19276. name: "Licky world",
  19277. height: math.unit(20000000, "meters")
  19278. },
  19279. {
  19280. name: "Floofy cyan sun",
  19281. height: math.unit(1500000000, "meters")
  19282. },
  19283. {
  19284. name: "Milky Wicker",
  19285. height: math.unit(1000000000000000000000, "meters")
  19286. },
  19287. {
  19288. name: "The observing Wicker",
  19289. height: math.unit(999999999999999999999999999, "meters")
  19290. },
  19291. ]
  19292. ))
  19293. characterMakers.push(() => makeCharacter(
  19294. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19295. {
  19296. front: {
  19297. height: math.unit(5 + 9 / 12, "feet"),
  19298. weight: math.unit(150, "lb"),
  19299. name: "Front",
  19300. image: {
  19301. source: "./media/characters/arokha-sieyes/front.svg",
  19302. extra: 1425 / 1284,
  19303. bottom: 0.05
  19304. }
  19305. },
  19306. },
  19307. [
  19308. {
  19309. name: "Normal",
  19310. height: math.unit(5 + 9 / 12, "feet")
  19311. },
  19312. {
  19313. name: "Macro",
  19314. height: math.unit(30, "meters"),
  19315. default: true
  19316. },
  19317. ]
  19318. ))
  19319. characterMakers.push(() => makeCharacter(
  19320. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19321. {
  19322. front: {
  19323. height: math.unit(6, "feet"),
  19324. weight: math.unit(180, "lb"),
  19325. name: "Front",
  19326. image: {
  19327. source: "./media/characters/arokh-sieyes/front.svg",
  19328. extra: 1830 / 1769,
  19329. bottom: 0.01
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(6, "feet")
  19337. },
  19338. {
  19339. name: "Macro",
  19340. height: math.unit(30, "meters"),
  19341. default: true
  19342. },
  19343. ]
  19344. ))
  19345. characterMakers.push(() => makeCharacter(
  19346. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19347. {
  19348. side: {
  19349. height: math.unit(13 + 1 / 12, "feet"),
  19350. weight: math.unit(8.5, "tonnes"),
  19351. name: "Side",
  19352. image: {
  19353. source: "./media/characters/goldeneye/side.svg",
  19354. extra: 1182 / 778,
  19355. bottom: 0.067
  19356. }
  19357. },
  19358. paw: {
  19359. height: math.unit(3.4, "feet"),
  19360. name: "Paw",
  19361. image: {
  19362. source: "./media/characters/goldeneye/paw.svg"
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(13 + 1 / 12, "feet"),
  19370. default: true
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19376. {
  19377. front: {
  19378. height: math.unit(6 + 1 / 12, "feet"),
  19379. weight: math.unit(210, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/leonardo-lycheborne/front.svg",
  19383. extra: 776/723,
  19384. bottom: 34/810
  19385. }
  19386. },
  19387. side: {
  19388. height: math.unit(6 + 1 / 12, "feet"),
  19389. weight: math.unit(210, "lb"),
  19390. name: "Side",
  19391. image: {
  19392. source: "./media/characters/leonardo-lycheborne/side.svg",
  19393. extra: 780/728,
  19394. bottom: 12/792
  19395. }
  19396. },
  19397. back: {
  19398. height: math.unit(6 + 1 / 12, "feet"),
  19399. weight: math.unit(210, "lb"),
  19400. name: "Back",
  19401. image: {
  19402. source: "./media/characters/leonardo-lycheborne/back.svg",
  19403. extra: 775/721,
  19404. bottom: 17/792
  19405. }
  19406. },
  19407. hand: {
  19408. height: math.unit(1.08, "feet"),
  19409. name: "Hand",
  19410. image: {
  19411. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19412. }
  19413. },
  19414. foot: {
  19415. height: math.unit(1.32, "feet"),
  19416. name: "Foot",
  19417. image: {
  19418. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19419. }
  19420. },
  19421. maw: {
  19422. height: math.unit(1, "feet"),
  19423. name: "Maw",
  19424. image: {
  19425. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19426. }
  19427. },
  19428. were: {
  19429. height: math.unit(20, "feet"),
  19430. weight: math.unit(7800, "lb"),
  19431. name: "Were",
  19432. image: {
  19433. source: "./media/characters/leonardo-lycheborne/were.svg",
  19434. extra: 1224/1165,
  19435. bottom: 72/1296
  19436. }
  19437. },
  19438. feral: {
  19439. height: math.unit(7.5, "feet"),
  19440. weight: math.unit(600, "lb"),
  19441. name: "Feral",
  19442. image: {
  19443. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19444. extra: 797/702,
  19445. bottom: 139/936
  19446. }
  19447. },
  19448. taur: {
  19449. height: math.unit(11, "feet"),
  19450. weight: math.unit(3300, "lb"),
  19451. name: "Taur",
  19452. image: {
  19453. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19454. extra: 1271/1197,
  19455. bottom: 47/1318
  19456. }
  19457. },
  19458. barghest: {
  19459. height: math.unit(11, "feet"),
  19460. weight: math.unit(1300, "lb"),
  19461. name: "Barghest",
  19462. image: {
  19463. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19464. extra: 1291/1204,
  19465. bottom: 37/1328
  19466. }
  19467. },
  19468. dick: {
  19469. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19470. name: "Dick",
  19471. image: {
  19472. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19473. }
  19474. },
  19475. dickWere: {
  19476. height: math.unit((20) / 3.8, "feet"),
  19477. name: "Dick (Were)",
  19478. image: {
  19479. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19480. }
  19481. },
  19482. },
  19483. [
  19484. {
  19485. name: "Normal",
  19486. height: math.unit(6 + 1 / 12, "feet"),
  19487. default: true
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19493. {
  19494. front: {
  19495. height: math.unit(10, "feet"),
  19496. weight: math.unit(350, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/jet/front.svg",
  19500. extra: 2050 / 1980,
  19501. bottom: 0.013
  19502. }
  19503. },
  19504. back: {
  19505. height: math.unit(10, "feet"),
  19506. weight: math.unit(350, "lb"),
  19507. name: "Back",
  19508. image: {
  19509. source: "./media/characters/jet/back.svg",
  19510. extra: 2050 / 1980,
  19511. bottom: 0.013
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Micro",
  19518. height: math.unit(6, "inches")
  19519. },
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(10, "feet"),
  19523. default: true
  19524. },
  19525. {
  19526. name: "Macro",
  19527. height: math.unit(100, "feet")
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19533. {
  19534. front: {
  19535. height: math.unit(15, "feet"),
  19536. weight: math.unit(2800, "lb"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/tanarath/front.svg",
  19540. extra: 2392 / 2220,
  19541. bottom: 0.03
  19542. }
  19543. },
  19544. back: {
  19545. height: math.unit(15, "feet"),
  19546. weight: math.unit(2800, "lb"),
  19547. name: "Back",
  19548. image: {
  19549. source: "./media/characters/tanarath/back.svg",
  19550. extra: 2392 / 2220,
  19551. bottom: 0.03
  19552. }
  19553. },
  19554. },
  19555. [
  19556. {
  19557. name: "Normal",
  19558. height: math.unit(15, "feet"),
  19559. default: true
  19560. },
  19561. ]
  19562. ))
  19563. characterMakers.push(() => makeCharacter(
  19564. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19565. {
  19566. front: {
  19567. height: math.unit(7 + 1 / 12, "feet"),
  19568. weight: math.unit(175, "lb"),
  19569. name: "Front",
  19570. image: {
  19571. source: "./media/characters/patty-cattybatty/front.svg",
  19572. extra: 908 / 874,
  19573. bottom: 0.025
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Micro",
  19580. height: math.unit(1, "inch")
  19581. },
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(7 + 1 / 12, "feet")
  19585. },
  19586. {
  19587. name: "Mini Macro",
  19588. height: math.unit(155, "feet")
  19589. },
  19590. {
  19591. name: "Macro",
  19592. height: math.unit(1077, "feet")
  19593. },
  19594. {
  19595. name: "Mega Macro",
  19596. height: math.unit(47650, "feet"),
  19597. default: true
  19598. },
  19599. {
  19600. name: "Giga Macro",
  19601. height: math.unit(440, "miles")
  19602. },
  19603. {
  19604. name: "Tera Macro",
  19605. height: math.unit(8700, "miles")
  19606. },
  19607. {
  19608. name: "Planetary Macro",
  19609. height: math.unit(32700, "miles")
  19610. },
  19611. {
  19612. name: "Solar Macro",
  19613. height: math.unit(550000, "miles")
  19614. },
  19615. {
  19616. name: "Celestial Macro",
  19617. height: math.unit(2.5, "AU")
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19623. {
  19624. front: {
  19625. height: math.unit(4 + 5 / 12, "feet"),
  19626. weight: math.unit(90, "lb"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/cappu/front.svg",
  19630. extra: 1247 / 1152,
  19631. bottom: 0.012
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(4 + 5 / 12, "feet"),
  19639. default: true
  19640. },
  19641. ]
  19642. ))
  19643. characterMakers.push(() => makeCharacter(
  19644. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19645. {
  19646. frontDressed: {
  19647. height: math.unit(70, "cm"),
  19648. weight: math.unit(6, "kg"),
  19649. name: "Front (Dressed)",
  19650. image: {
  19651. source: "./media/characters/sebi/front-dressed.svg",
  19652. extra: 713.5 / 686.5,
  19653. bottom: 0.003
  19654. }
  19655. },
  19656. front: {
  19657. height: math.unit(70, "cm"),
  19658. weight: math.unit(5, "kg"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/sebi/front.svg",
  19662. extra: 713.5 / 686.5,
  19663. bottom: 0.003
  19664. }
  19665. }
  19666. },
  19667. [
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(70, "cm"),
  19671. default: true
  19672. },
  19673. {
  19674. name: "Macro",
  19675. height: math.unit(8, "meters")
  19676. },
  19677. ]
  19678. ))
  19679. characterMakers.push(() => makeCharacter(
  19680. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19681. {
  19682. front: {
  19683. height: math.unit(6, "feet"),
  19684. weight: math.unit(150, "lb"),
  19685. name: "Front",
  19686. image: {
  19687. source: "./media/characters/typhek/front.svg",
  19688. extra: 1948 / 1929,
  19689. bottom: 0.025
  19690. }
  19691. },
  19692. side: {
  19693. height: math.unit(6, "feet"),
  19694. weight: math.unit(150, "lb"),
  19695. name: "Side",
  19696. image: {
  19697. source: "./media/characters/typhek/side.svg",
  19698. extra: 2034 / 2010,
  19699. bottom: 0.003
  19700. }
  19701. },
  19702. back: {
  19703. height: math.unit(6, "feet"),
  19704. weight: math.unit(150, "lb"),
  19705. name: "Back",
  19706. image: {
  19707. source: "./media/characters/typhek/back.svg",
  19708. extra: 2005 / 1978,
  19709. bottom: 0.004
  19710. }
  19711. },
  19712. palm: {
  19713. height: math.unit(1.2, "feet"),
  19714. name: "Palm",
  19715. image: {
  19716. source: "./media/characters/typhek/palm.svg"
  19717. }
  19718. },
  19719. fist: {
  19720. height: math.unit(1.1, "feet"),
  19721. name: "Fist",
  19722. image: {
  19723. source: "./media/characters/typhek/fist.svg"
  19724. }
  19725. },
  19726. foot: {
  19727. height: math.unit(1.57, "feet"),
  19728. name: "Foot",
  19729. image: {
  19730. source: "./media/characters/typhek/foot.svg"
  19731. }
  19732. },
  19733. sole: {
  19734. height: math.unit(2.05, "feet"),
  19735. name: "Sole",
  19736. image: {
  19737. source: "./media/characters/typhek/sole.svg"
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Macro",
  19744. height: math.unit(40, "stories"),
  19745. default: true
  19746. },
  19747. {
  19748. name: "Megamacro",
  19749. height: math.unit(1, "mile")
  19750. },
  19751. {
  19752. name: "Gigamacro",
  19753. height: math.unit(4000, "solarradii")
  19754. },
  19755. {
  19756. name: "Universal",
  19757. height: math.unit(1.1, "universes")
  19758. }
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19763. {
  19764. side: {
  19765. height: math.unit(5 + 7 / 12, "feet"),
  19766. weight: math.unit(150, "lb"),
  19767. name: "Side",
  19768. image: {
  19769. source: "./media/characters/kassy/side.svg",
  19770. extra: 1280 / 1225,
  19771. bottom: 0.002
  19772. }
  19773. },
  19774. front: {
  19775. height: math.unit(5 + 7 / 12, "feet"),
  19776. weight: math.unit(150, "lb"),
  19777. name: "Front",
  19778. image: {
  19779. source: "./media/characters/kassy/front.svg",
  19780. extra: 1280 / 1225,
  19781. bottom: 0.025
  19782. }
  19783. },
  19784. back: {
  19785. height: math.unit(5 + 7 / 12, "feet"),
  19786. weight: math.unit(150, "lb"),
  19787. name: "Back",
  19788. image: {
  19789. source: "./media/characters/kassy/back.svg",
  19790. extra: 1280 / 1225,
  19791. bottom: 0.002
  19792. }
  19793. },
  19794. foot: {
  19795. height: math.unit(1.266, "feet"),
  19796. name: "Foot",
  19797. image: {
  19798. source: "./media/characters/kassy/foot.svg"
  19799. }
  19800. },
  19801. },
  19802. [
  19803. {
  19804. name: "Normal",
  19805. height: math.unit(5 + 7 / 12, "feet")
  19806. },
  19807. {
  19808. name: "Macro",
  19809. height: math.unit(137, "feet"),
  19810. default: true
  19811. },
  19812. {
  19813. name: "Megamacro",
  19814. height: math.unit(1, "mile")
  19815. },
  19816. ]
  19817. ))
  19818. characterMakers.push(() => makeCharacter(
  19819. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19820. {
  19821. front: {
  19822. height: math.unit(6 + 1 / 12, "feet"),
  19823. weight: math.unit(200, "lb"),
  19824. name: "Front",
  19825. image: {
  19826. source: "./media/characters/neil/front.svg",
  19827. extra: 1326 / 1250,
  19828. bottom: 0.023
  19829. }
  19830. },
  19831. },
  19832. [
  19833. {
  19834. name: "Normal",
  19835. height: math.unit(6 + 1 / 12, "feet"),
  19836. default: true
  19837. },
  19838. {
  19839. name: "Macro",
  19840. height: math.unit(200, "feet")
  19841. },
  19842. ]
  19843. ))
  19844. characterMakers.push(() => makeCharacter(
  19845. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19846. {
  19847. front: {
  19848. height: math.unit(5 + 9 / 12, "feet"),
  19849. weight: math.unit(190, "lb"),
  19850. name: "Front",
  19851. image: {
  19852. source: "./media/characters/atticus/front.svg",
  19853. extra: 2934 / 2785,
  19854. bottom: 0.025
  19855. }
  19856. },
  19857. },
  19858. [
  19859. {
  19860. name: "Normal",
  19861. height: math.unit(5 + 9 / 12, "feet"),
  19862. default: true
  19863. },
  19864. {
  19865. name: "Macro",
  19866. height: math.unit(180, "feet")
  19867. },
  19868. ]
  19869. ))
  19870. characterMakers.push(() => makeCharacter(
  19871. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19872. {
  19873. side: {
  19874. height: math.unit(9, "feet"),
  19875. weight: math.unit(650, "lb"),
  19876. name: "Side",
  19877. image: {
  19878. source: "./media/characters/milo/side.svg",
  19879. extra: 2644 / 2310,
  19880. bottom: 0.032
  19881. }
  19882. },
  19883. },
  19884. [
  19885. {
  19886. name: "Normal",
  19887. height: math.unit(9, "feet"),
  19888. default: true
  19889. },
  19890. {
  19891. name: "Macro",
  19892. height: math.unit(300, "feet")
  19893. },
  19894. ]
  19895. ))
  19896. characterMakers.push(() => makeCharacter(
  19897. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19898. {
  19899. side: {
  19900. height: math.unit(8, "meters"),
  19901. weight: math.unit(90000, "kg"),
  19902. name: "Side",
  19903. image: {
  19904. source: "./media/characters/ijzer/side.svg",
  19905. extra: 2756 / 1600,
  19906. bottom: 0.01
  19907. }
  19908. },
  19909. },
  19910. [
  19911. {
  19912. name: "Small",
  19913. height: math.unit(3, "meters")
  19914. },
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(8, "meters"),
  19918. default: true
  19919. },
  19920. {
  19921. name: "Normal+",
  19922. height: math.unit(10, "meters")
  19923. },
  19924. {
  19925. name: "Bigger",
  19926. height: math.unit(24, "meters")
  19927. },
  19928. {
  19929. name: "Huge",
  19930. height: math.unit(80, "meters")
  19931. },
  19932. ]
  19933. ))
  19934. characterMakers.push(() => makeCharacter(
  19935. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19936. {
  19937. front: {
  19938. height: math.unit(6 + 2 / 12, "feet"),
  19939. weight: math.unit(153, "lb"),
  19940. name: "Front",
  19941. image: {
  19942. source: "./media/characters/luca-cervicum/front.svg",
  19943. extra: 370 / 327,
  19944. bottom: 0.015
  19945. }
  19946. },
  19947. back: {
  19948. height: math.unit(6 + 2 / 12, "feet"),
  19949. weight: math.unit(153, "lb"),
  19950. name: "Back",
  19951. image: {
  19952. source: "./media/characters/luca-cervicum/back.svg",
  19953. extra: 367 / 333,
  19954. bottom: 0.005
  19955. }
  19956. },
  19957. frontGear: {
  19958. height: math.unit(6 + 2 / 12, "feet"),
  19959. weight: math.unit(173, "lb"),
  19960. name: "Front (Gear)",
  19961. image: {
  19962. source: "./media/characters/luca-cervicum/front-gear.svg",
  19963. extra: 377 / 333,
  19964. bottom: 0.006
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(6 + 2 / 12, "feet"),
  19972. default: true
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19978. {
  19979. front: {
  19980. height: math.unit(6 + 1 / 12, "feet"),
  19981. weight: math.unit(304, "lb"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/oliver/front.svg",
  19985. extra: 157 / 143,
  19986. bottom: 0.08
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Normal",
  19993. height: math.unit(6 + 1 / 12, "feet"),
  19994. default: true
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(5 + 7 / 12, "feet"),
  20003. weight: math.unit(140, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/shane/front.svg",
  20007. extra: 304 / 289,
  20008. bottom: 0.005
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(5 + 7 / 12, "feet"),
  20016. default: true
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(5 + 9 / 12, "feet"),
  20025. weight: math.unit(178, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/shin/front.svg",
  20029. extra: 159 / 151,
  20030. bottom: 0.015
  20031. }
  20032. },
  20033. },
  20034. [
  20035. {
  20036. name: "Normal",
  20037. height: math.unit(5 + 9 / 12, "feet"),
  20038. default: true
  20039. },
  20040. ]
  20041. ))
  20042. characterMakers.push(() => makeCharacter(
  20043. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20044. {
  20045. front: {
  20046. height: math.unit(5 + 10 / 12, "feet"),
  20047. weight: math.unit(168, "lb"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/xerxes/front.svg",
  20051. extra: 282 / 260,
  20052. bottom: 0.045
  20053. }
  20054. },
  20055. },
  20056. [
  20057. {
  20058. name: "Normal",
  20059. height: math.unit(5 + 10 / 12, "feet"),
  20060. default: true
  20061. },
  20062. ]
  20063. ))
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20066. {
  20067. front: {
  20068. height: math.unit(6 + 7 / 12, "feet"),
  20069. weight: math.unit(208, "lb"),
  20070. name: "Front",
  20071. image: {
  20072. source: "./media/characters/chaska/front.svg",
  20073. extra: 332 / 319,
  20074. bottom: 0.015
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(6 + 7 / 12, "feet"),
  20082. default: true
  20083. },
  20084. ]
  20085. ))
  20086. characterMakers.push(() => makeCharacter(
  20087. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20088. {
  20089. front: {
  20090. height: math.unit(5 + 8 / 12, "feet"),
  20091. weight: math.unit(208, "lb"),
  20092. name: "Front",
  20093. image: {
  20094. source: "./media/characters/enuk/front.svg",
  20095. extra: 437 / 406,
  20096. bottom: 0.02
  20097. }
  20098. },
  20099. },
  20100. [
  20101. {
  20102. name: "Normal",
  20103. height: math.unit(5 + 8 / 12, "feet"),
  20104. default: true
  20105. },
  20106. ]
  20107. ))
  20108. characterMakers.push(() => makeCharacter(
  20109. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20110. {
  20111. front: {
  20112. height: math.unit(5 + 10 / 12, "feet"),
  20113. weight: math.unit(252, "lb"),
  20114. name: "Front",
  20115. image: {
  20116. source: "./media/characters/bruun/front.svg",
  20117. extra: 197 / 187,
  20118. bottom: 0.012
  20119. }
  20120. },
  20121. },
  20122. [
  20123. {
  20124. name: "Normal",
  20125. height: math.unit(5 + 10 / 12, "feet"),
  20126. default: true
  20127. },
  20128. ]
  20129. ))
  20130. characterMakers.push(() => makeCharacter(
  20131. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20132. {
  20133. front: {
  20134. height: math.unit(6 + 10 / 12, "feet"),
  20135. weight: math.unit(255, "lb"),
  20136. name: "Front",
  20137. image: {
  20138. source: "./media/characters/alexeev/front.svg",
  20139. extra: 213 / 200,
  20140. bottom: 0.05
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(6 + 10 / 12, "feet"),
  20148. default: true
  20149. },
  20150. ]
  20151. ))
  20152. characterMakers.push(() => makeCharacter(
  20153. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20154. {
  20155. front: {
  20156. height: math.unit(2 + 8 / 12, "feet"),
  20157. weight: math.unit(22, "lb"),
  20158. name: "Front",
  20159. image: {
  20160. source: "./media/characters/evelyn/front.svg",
  20161. extra: 208 / 180
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(2 + 8 / 12, "feet"),
  20169. default: true
  20170. },
  20171. ]
  20172. ))
  20173. characterMakers.push(() => makeCharacter(
  20174. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20175. {
  20176. front: {
  20177. height: math.unit(5 + 9 / 12, "feet"),
  20178. weight: math.unit(139, "lb"),
  20179. name: "Front",
  20180. image: {
  20181. source: "./media/characters/inca/front.svg",
  20182. extra: 294 / 291,
  20183. bottom: 0.03
  20184. }
  20185. },
  20186. },
  20187. [
  20188. {
  20189. name: "Normal",
  20190. height: math.unit(5 + 9 / 12, "feet"),
  20191. default: true
  20192. },
  20193. ]
  20194. ))
  20195. characterMakers.push(() => makeCharacter(
  20196. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20197. {
  20198. front: {
  20199. height: math.unit(6 + 3 / 12, "feet"),
  20200. weight: math.unit(185, "lb"),
  20201. name: "Front",
  20202. image: {
  20203. source: "./media/characters/mera/front.svg",
  20204. extra: 291 / 277,
  20205. bottom: 0.03
  20206. }
  20207. },
  20208. },
  20209. [
  20210. {
  20211. name: "Normal",
  20212. height: math.unit(6 + 3 / 12, "feet"),
  20213. default: true
  20214. },
  20215. ]
  20216. ))
  20217. characterMakers.push(() => makeCharacter(
  20218. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20219. {
  20220. front: {
  20221. height: math.unit(6 + 7 / 12, "feet"),
  20222. weight: math.unit(160, "lb"),
  20223. name: "Front",
  20224. image: {
  20225. source: "./media/characters/ceres/front.svg",
  20226. extra: 1023 / 950,
  20227. bottom: 0.027
  20228. }
  20229. },
  20230. back: {
  20231. height: math.unit(6 + 7 / 12, "feet"),
  20232. weight: math.unit(160, "lb"),
  20233. name: "Back",
  20234. image: {
  20235. source: "./media/characters/ceres/back.svg",
  20236. extra: 1023 / 950
  20237. }
  20238. },
  20239. },
  20240. [
  20241. {
  20242. name: "Normal",
  20243. height: math.unit(6 + 7 / 12, "feet"),
  20244. default: true
  20245. },
  20246. ]
  20247. ))
  20248. characterMakers.push(() => makeCharacter(
  20249. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20250. {
  20251. front: {
  20252. height: math.unit(5 + 10 / 12, "feet"),
  20253. weight: math.unit(150, "lb"),
  20254. name: "Front",
  20255. image: {
  20256. source: "./media/characters/kris/front.svg",
  20257. extra: 885 / 803,
  20258. bottom: 0.03
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(5 + 10 / 12, "feet"),
  20266. default: true
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20272. {
  20273. front: {
  20274. height: math.unit(7, "feet"),
  20275. weight: math.unit(120, "kg"),
  20276. name: "Front",
  20277. image: {
  20278. source: "./media/characters/taluthus/front.svg",
  20279. extra: 903 / 833,
  20280. bottom: 0.015
  20281. }
  20282. },
  20283. },
  20284. [
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(7, "feet"),
  20288. default: true
  20289. },
  20290. {
  20291. name: "Macro",
  20292. height: math.unit(300, "feet")
  20293. },
  20294. ]
  20295. ))
  20296. characterMakers.push(() => makeCharacter(
  20297. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20298. {
  20299. front: {
  20300. height: math.unit(5 + 9 / 12, "feet"),
  20301. weight: math.unit(145, "lb"),
  20302. name: "Front",
  20303. image: {
  20304. source: "./media/characters/dawn/front.svg",
  20305. extra: 2094 / 2016,
  20306. bottom: 0.025
  20307. }
  20308. },
  20309. back: {
  20310. height: math.unit(5 + 9 / 12, "feet"),
  20311. weight: math.unit(160, "lb"),
  20312. name: "Back",
  20313. image: {
  20314. source: "./media/characters/dawn/back.svg",
  20315. extra: 2112 / 2080,
  20316. bottom: 0.005
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Normal",
  20323. height: math.unit(6 + 7 / 12, "feet"),
  20324. default: true
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20330. {
  20331. anthro: {
  20332. height: math.unit(8 + 3 / 12, "feet"),
  20333. weight: math.unit(450, "lb"),
  20334. name: "Anthro",
  20335. image: {
  20336. source: "./media/characters/arador/anthro.svg",
  20337. extra: 1835 / 1718,
  20338. bottom: 0.025
  20339. }
  20340. },
  20341. feral: {
  20342. height: math.unit(4, "feet"),
  20343. weight: math.unit(200, "lb"),
  20344. name: "Feral",
  20345. image: {
  20346. source: "./media/characters/arador/feral.svg",
  20347. extra: 1683 / 1514,
  20348. bottom: 0.07
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Normal",
  20355. height: math.unit(8 + 3 / 12, "feet")
  20356. },
  20357. {
  20358. name: "Macro",
  20359. height: math.unit(82.5, "feet"),
  20360. default: true
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20366. {
  20367. front: {
  20368. height: math.unit(5 + 10 / 12, "feet"),
  20369. weight: math.unit(125, "lb"),
  20370. name: "Front",
  20371. image: {
  20372. source: "./media/characters/dharsi/front.svg",
  20373. extra: 716 / 630,
  20374. bottom: 0.035
  20375. }
  20376. },
  20377. },
  20378. [
  20379. {
  20380. name: "Nano",
  20381. height: math.unit(100, "nm")
  20382. },
  20383. {
  20384. name: "Micro",
  20385. height: math.unit(2, "inches")
  20386. },
  20387. {
  20388. name: "Normal",
  20389. height: math.unit(5 + 10 / 12, "feet"),
  20390. default: true
  20391. },
  20392. {
  20393. name: "Macro",
  20394. height: math.unit(1000, "feet")
  20395. },
  20396. {
  20397. name: "Megamacro",
  20398. height: math.unit(10, "miles")
  20399. },
  20400. {
  20401. name: "Gigamacro",
  20402. height: math.unit(3000, "miles")
  20403. },
  20404. {
  20405. name: "Teramacro",
  20406. height: math.unit(500000, "miles")
  20407. },
  20408. {
  20409. name: "Teramacro+",
  20410. height: math.unit(30, "galaxies")
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20416. {
  20417. front: {
  20418. height: math.unit(6, "feet"),
  20419. weight: math.unit(150, "lb"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/deathy/front.svg",
  20423. extra: 1552 / 1463,
  20424. bottom: 0.025
  20425. }
  20426. },
  20427. side: {
  20428. height: math.unit(6, "feet"),
  20429. weight: math.unit(150, "lb"),
  20430. name: "Side",
  20431. image: {
  20432. source: "./media/characters/deathy/side.svg",
  20433. extra: 1604 / 1455,
  20434. bottom: 0.025
  20435. }
  20436. },
  20437. back: {
  20438. height: math.unit(6, "feet"),
  20439. weight: math.unit(150, "lb"),
  20440. name: "Back",
  20441. image: {
  20442. source: "./media/characters/deathy/back.svg",
  20443. extra: 1580 / 1463,
  20444. bottom: 0.005
  20445. }
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Micro",
  20451. height: math.unit(5, "millimeters")
  20452. },
  20453. {
  20454. name: "Normal",
  20455. height: math.unit(6 + 5 / 12, "feet"),
  20456. default: true
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20462. {
  20463. front: {
  20464. height: math.unit(16, "feet"),
  20465. weight: math.unit(4000, "lb"),
  20466. name: "Front",
  20467. image: {
  20468. source: "./media/characters/juniper/front.svg",
  20469. bottom: 0.04
  20470. }
  20471. },
  20472. },
  20473. [
  20474. {
  20475. name: "Normal",
  20476. height: math.unit(16, "feet"),
  20477. default: true
  20478. },
  20479. ]
  20480. ))
  20481. characterMakers.push(() => makeCharacter(
  20482. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20483. {
  20484. front: {
  20485. height: math.unit(6, "feet"),
  20486. weight: math.unit(150, "lb"),
  20487. name: "Front",
  20488. image: {
  20489. source: "./media/characters/hipster/front.svg",
  20490. extra: 1312 / 1209,
  20491. bottom: 0.025
  20492. }
  20493. },
  20494. back: {
  20495. height: math.unit(6, "feet"),
  20496. weight: math.unit(150, "lb"),
  20497. name: "Back",
  20498. image: {
  20499. source: "./media/characters/hipster/back.svg",
  20500. extra: 1281 / 1196,
  20501. bottom: 0.01
  20502. }
  20503. },
  20504. },
  20505. [
  20506. {
  20507. name: "Micro",
  20508. height: math.unit(1, "mm")
  20509. },
  20510. {
  20511. name: "Normal",
  20512. height: math.unit(4, "inches"),
  20513. default: true
  20514. },
  20515. {
  20516. name: "Macro",
  20517. height: math.unit(500, "feet")
  20518. },
  20519. {
  20520. name: "Megamacro",
  20521. height: math.unit(1000, "miles")
  20522. },
  20523. ]
  20524. ))
  20525. characterMakers.push(() => makeCharacter(
  20526. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20527. {
  20528. front: {
  20529. height: math.unit(6, "feet"),
  20530. weight: math.unit(150, "lb"),
  20531. name: "Front",
  20532. image: {
  20533. source: "./media/characters/tendirmuldr/front.svg",
  20534. extra: 1878 / 1772,
  20535. bottom: 0.015
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Megamacro",
  20542. height: math.unit(1500, "miles"),
  20543. default: true
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20549. {
  20550. front: {
  20551. height: math.unit(14, "feet"),
  20552. weight: math.unit(12000, "lb"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/mort/front.svg",
  20556. extra: 365 / 318,
  20557. bottom: 0.01
  20558. }
  20559. },
  20560. side: {
  20561. height: math.unit(14, "feet"),
  20562. weight: math.unit(12000, "lb"),
  20563. name: "Side",
  20564. image: {
  20565. source: "./media/characters/mort/side.svg",
  20566. extra: 365 / 318,
  20567. bottom: 0.052
  20568. },
  20569. default: true
  20570. },
  20571. back: {
  20572. height: math.unit(14, "feet"),
  20573. weight: math.unit(12000, "lb"),
  20574. name: "Back",
  20575. image: {
  20576. source: "./media/characters/mort/back.svg",
  20577. extra: 371 / 332,
  20578. bottom: 0.18
  20579. }
  20580. },
  20581. },
  20582. [
  20583. {
  20584. name: "Normal",
  20585. height: math.unit(14, "feet"),
  20586. default: true
  20587. },
  20588. ]
  20589. ))
  20590. characterMakers.push(() => makeCharacter(
  20591. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20592. {
  20593. front: {
  20594. height: math.unit(8, "feet"),
  20595. weight: math.unit(1, "ton"),
  20596. name: "Front",
  20597. image: {
  20598. source: "./media/characters/lycoa/front.svg",
  20599. extra: 1875 / 1789,
  20600. bottom: 0.022
  20601. }
  20602. },
  20603. back: {
  20604. height: math.unit(8, "feet"),
  20605. weight: math.unit(1, "ton"),
  20606. name: "Back",
  20607. image: {
  20608. source: "./media/characters/lycoa/back.svg",
  20609. extra: 1835 / 1781,
  20610. bottom: 0.03
  20611. }
  20612. },
  20613. head: {
  20614. height: math.unit(2.1, "feet"),
  20615. name: "Head",
  20616. image: {
  20617. source: "./media/characters/lycoa/head.svg"
  20618. }
  20619. },
  20620. tailmaw: {
  20621. height: math.unit(1.9, "feet"),
  20622. name: "Tailmaw",
  20623. image: {
  20624. source: "./media/characters/lycoa/tailmaw.svg"
  20625. }
  20626. },
  20627. tentacles: {
  20628. height: math.unit(2.1, "feet"),
  20629. name: "Tentacles",
  20630. image: {
  20631. source: "./media/characters/lycoa/tentacles.svg"
  20632. }
  20633. },
  20634. dick: {
  20635. height: math.unit(1.73, "feet"),
  20636. name: "Dick",
  20637. image: {
  20638. source: "./media/characters/lycoa/dick.svg"
  20639. }
  20640. },
  20641. },
  20642. [
  20643. {
  20644. name: "Normal",
  20645. height: math.unit(8, "feet"),
  20646. default: true
  20647. },
  20648. {
  20649. name: "Macro",
  20650. height: math.unit(30, "feet")
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20656. {
  20657. front: {
  20658. height: math.unit(4 + 2 / 12, "feet"),
  20659. weight: math.unit(70, "lb"),
  20660. name: "Front",
  20661. image: {
  20662. source: "./media/characters/naldara/front.svg",
  20663. extra: 841 / 720,
  20664. bottom: 0.04
  20665. }
  20666. },
  20667. naga: {
  20668. height: math.unit(23, "feet"),
  20669. weight: math.unit(15000, "kg"),
  20670. name: "Naga",
  20671. image: {
  20672. source: "./media/characters/naldara/naga.svg",
  20673. extra: 3290 / 2959,
  20674. bottom: 124 / 3432
  20675. }
  20676. },
  20677. },
  20678. [
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(4 + 2 / 12, "feet"),
  20682. default: true
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20688. {
  20689. front: {
  20690. height: math.unit(13 + 7 / 12, "feet"),
  20691. weight: math.unit(1500, "lb"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/briar/front.svg",
  20695. extra: 626 / 596,
  20696. bottom: 0.08
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(13 + 7 / 12, "feet"),
  20704. default: true
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20710. {
  20711. side: {
  20712. height: math.unit(10, "feet"),
  20713. weight: math.unit(500, "lb"),
  20714. name: "Side",
  20715. image: {
  20716. source: "./media/characters/vanguard/side.svg",
  20717. extra: 502 / 425,
  20718. bottom: 0.087
  20719. }
  20720. },
  20721. },
  20722. [
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(10, "feet"),
  20726. default: true
  20727. },
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20732. {
  20733. front: {
  20734. height: math.unit(7.5, "feet"),
  20735. weight: math.unit(2, "lb"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/artemis/front.svg",
  20739. extra: 1192 / 1075,
  20740. bottom: 0.07
  20741. }
  20742. },
  20743. frontNsfw: {
  20744. height: math.unit(7.5, "feet"),
  20745. weight: math.unit(2, "lb"),
  20746. name: "Front (NSFW)",
  20747. image: {
  20748. source: "./media/characters/artemis/front-nsfw.svg",
  20749. extra: 1192 / 1075,
  20750. bottom: 0.07
  20751. }
  20752. },
  20753. frontNsfwer: {
  20754. height: math.unit(7.5, "feet"),
  20755. weight: math.unit(2, "lb"),
  20756. name: "Front (NSFW-er)",
  20757. image: {
  20758. source: "./media/characters/artemis/front-nsfwer.svg",
  20759. extra: 1192 / 1075,
  20760. bottom: 0.07
  20761. }
  20762. },
  20763. side: {
  20764. height: math.unit(7.5, "feet"),
  20765. weight: math.unit(2, "lb"),
  20766. name: "Side",
  20767. image: {
  20768. source: "./media/characters/artemis/side.svg",
  20769. extra: 1192 / 1075,
  20770. bottom: 0.07
  20771. }
  20772. },
  20773. sideNsfw: {
  20774. height: math.unit(7.5, "feet"),
  20775. weight: math.unit(2, "lb"),
  20776. name: "Side (NSFW)",
  20777. image: {
  20778. source: "./media/characters/artemis/side-nsfw.svg",
  20779. extra: 1192 / 1075,
  20780. bottom: 0.07
  20781. }
  20782. },
  20783. sideNsfwer: {
  20784. height: math.unit(7.5, "feet"),
  20785. weight: math.unit(2, "lb"),
  20786. name: "Side (NSFW-er)",
  20787. image: {
  20788. source: "./media/characters/artemis/side-nsfwer.svg",
  20789. extra: 1192 / 1075,
  20790. bottom: 0.07
  20791. }
  20792. },
  20793. maw: {
  20794. height: math.unit(1.1, "feet"),
  20795. name: "Maw",
  20796. image: {
  20797. source: "./media/characters/artemis/maw.svg"
  20798. }
  20799. },
  20800. stomach: {
  20801. height: math.unit(0.95, "feet"),
  20802. name: "Stomach",
  20803. image: {
  20804. source: "./media/characters/artemis/stomach.svg"
  20805. }
  20806. },
  20807. dickCanine: {
  20808. height: math.unit(1, "feet"),
  20809. name: "Dick (Canine)",
  20810. image: {
  20811. source: "./media/characters/artemis/dick-canine.svg"
  20812. }
  20813. },
  20814. dickEquine: {
  20815. height: math.unit(0.85, "feet"),
  20816. name: "Dick (Equine)",
  20817. image: {
  20818. source: "./media/characters/artemis/dick-equine.svg"
  20819. }
  20820. },
  20821. dickExotic: {
  20822. height: math.unit(0.85, "feet"),
  20823. name: "Dick (Exotic)",
  20824. image: {
  20825. source: "./media/characters/artemis/dick-exotic.svg"
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(7.5, "feet"),
  20833. default: true
  20834. },
  20835. {
  20836. name: "Enlarged",
  20837. height: math.unit(12, "feet")
  20838. },
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20843. {
  20844. front: {
  20845. height: math.unit(5 + 3 / 12, "feet"),
  20846. weight: math.unit(160, "lb"),
  20847. name: "Front",
  20848. image: {
  20849. source: "./media/characters/kira/front.svg",
  20850. extra: 906 / 786,
  20851. bottom: 0.01
  20852. }
  20853. },
  20854. back: {
  20855. height: math.unit(5 + 3 / 12, "feet"),
  20856. weight: math.unit(160, "lb"),
  20857. name: "Back",
  20858. image: {
  20859. source: "./media/characters/kira/back.svg",
  20860. extra: 882 / 757,
  20861. bottom: 0.005
  20862. }
  20863. },
  20864. frontDressed: {
  20865. height: math.unit(5 + 3 / 12, "feet"),
  20866. weight: math.unit(160, "lb"),
  20867. name: "Front (Dressed)",
  20868. image: {
  20869. source: "./media/characters/kira/front-dressed.svg",
  20870. extra: 906 / 786,
  20871. bottom: 0.01
  20872. }
  20873. },
  20874. beans: {
  20875. height: math.unit(0.92, "feet"),
  20876. name: "Beans",
  20877. image: {
  20878. source: "./media/characters/kira/beans.svg"
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(5 + 3 / 12, "feet"),
  20886. default: true
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20892. {
  20893. front: {
  20894. height: math.unit(5 + 4 / 12, "feet"),
  20895. weight: math.unit(145, "lb"),
  20896. name: "Front",
  20897. image: {
  20898. source: "./media/characters/scramble/front.svg",
  20899. extra: 763 / 727,
  20900. bottom: 0.05
  20901. }
  20902. },
  20903. back: {
  20904. height: math.unit(5 + 4 / 12, "feet"),
  20905. weight: math.unit(145, "lb"),
  20906. name: "Back",
  20907. image: {
  20908. source: "./media/characters/scramble/back.svg",
  20909. extra: 826 / 737,
  20910. bottom: 0.002
  20911. }
  20912. },
  20913. },
  20914. [
  20915. {
  20916. name: "Normal",
  20917. height: math.unit(5 + 4 / 12, "feet"),
  20918. default: true
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20924. {
  20925. side: {
  20926. height: math.unit(6 + 2 / 12, "feet"),
  20927. weight: math.unit(190, "lb"),
  20928. name: "Side",
  20929. image: {
  20930. source: "./media/characters/biscuit/side.svg",
  20931. extra: 858 / 791,
  20932. bottom: 0.044
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Normal",
  20939. height: math.unit(6 + 2 / 12, "feet"),
  20940. default: true
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20946. {
  20947. front: {
  20948. height: math.unit(5 + 2 / 12, "feet"),
  20949. weight: math.unit(120, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/poffin/front.svg",
  20953. extra: 786 / 680,
  20954. bottom: 0.005
  20955. }
  20956. },
  20957. },
  20958. [
  20959. {
  20960. name: "Normal",
  20961. height: math.unit(5 + 2 / 12, "feet"),
  20962. default: true
  20963. },
  20964. ]
  20965. ))
  20966. characterMakers.push(() => makeCharacter(
  20967. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20968. {
  20969. front: {
  20970. height: math.unit(6 + 3 / 12, "feet"),
  20971. weight: math.unit(519, "lb"),
  20972. name: "Front",
  20973. image: {
  20974. source: "./media/characters/dhari/front.svg",
  20975. extra: 1048 / 946,
  20976. bottom: 0.015
  20977. }
  20978. },
  20979. back: {
  20980. height: math.unit(6 + 3 / 12, "feet"),
  20981. weight: math.unit(519, "lb"),
  20982. name: "Back",
  20983. image: {
  20984. source: "./media/characters/dhari/back.svg",
  20985. extra: 1048 / 931,
  20986. bottom: 0.005
  20987. }
  20988. },
  20989. frontDressed: {
  20990. height: math.unit(6 + 3 / 12, "feet"),
  20991. weight: math.unit(519, "lb"),
  20992. name: "Front (Dressed)",
  20993. image: {
  20994. source: "./media/characters/dhari/front-dressed.svg",
  20995. extra: 1713 / 1546,
  20996. bottom: 0.02
  20997. }
  20998. },
  20999. backDressed: {
  21000. height: math.unit(6 + 3 / 12, "feet"),
  21001. weight: math.unit(519, "lb"),
  21002. name: "Back (Dressed)",
  21003. image: {
  21004. source: "./media/characters/dhari/back-dressed.svg",
  21005. extra: 1699 / 1537,
  21006. bottom: 0.01
  21007. }
  21008. },
  21009. maw: {
  21010. height: math.unit(0.95, "feet"),
  21011. name: "Maw",
  21012. image: {
  21013. source: "./media/characters/dhari/maw.svg"
  21014. }
  21015. },
  21016. wereFront: {
  21017. height: math.unit(12 + 8 / 12, "feet"),
  21018. weight: math.unit(4000, "lb"),
  21019. name: "Front (Were)",
  21020. image: {
  21021. source: "./media/characters/dhari/were-front.svg",
  21022. extra: 1065 / 969,
  21023. bottom: 0.015
  21024. }
  21025. },
  21026. wereBack: {
  21027. height: math.unit(12 + 8 / 12, "feet"),
  21028. weight: math.unit(4000, "lb"),
  21029. name: "Back (Were)",
  21030. image: {
  21031. source: "./media/characters/dhari/were-back.svg",
  21032. extra: 1065 / 969,
  21033. bottom: 0.012
  21034. }
  21035. },
  21036. wereMaw: {
  21037. height: math.unit(0.625, "meters"),
  21038. name: "Maw (Were)",
  21039. image: {
  21040. source: "./media/characters/dhari/were-maw.svg"
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(6 + 3 / 12, "feet"),
  21048. default: true
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21054. {
  21055. anthro: {
  21056. height: math.unit(5 + 7 / 12, "feet"),
  21057. weight: math.unit(175, "lb"),
  21058. name: "Anthro",
  21059. image: {
  21060. source: "./media/characters/rena-dyne/anthro.svg",
  21061. extra: 1849 / 1785,
  21062. bottom: 0.005
  21063. }
  21064. },
  21065. taur: {
  21066. height: math.unit(15 + 6 / 12, "feet"),
  21067. weight: math.unit(8000, "lb"),
  21068. name: "Taur",
  21069. image: {
  21070. source: "./media/characters/rena-dyne/taur.svg",
  21071. extra: 2315 / 2234,
  21072. bottom: 0.033
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(5 + 7 / 12, "feet"),
  21080. default: true
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21086. {
  21087. front: {
  21088. height: math.unit(8, "feet"),
  21089. weight: math.unit(600, "lb"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/weremeep/front.svg",
  21093. extra: 967 / 862,
  21094. bottom: 0.01
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(8, "feet"),
  21102. default: true
  21103. },
  21104. {
  21105. name: "Lorg",
  21106. height: math.unit(12, "feet")
  21107. },
  21108. {
  21109. name: "Oh Lawd She Comin'",
  21110. height: math.unit(20, "feet")
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21116. {
  21117. front: {
  21118. height: math.unit(4, "feet"),
  21119. weight: math.unit(90, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/reza/front.svg",
  21123. extra: 1183 / 1111,
  21124. bottom: 0.017
  21125. }
  21126. },
  21127. back: {
  21128. height: math.unit(4, "feet"),
  21129. weight: math.unit(90, "lb"),
  21130. name: "Back",
  21131. image: {
  21132. source: "./media/characters/reza/back.svg",
  21133. extra: 1183 / 1111,
  21134. bottom: 0.01
  21135. }
  21136. },
  21137. drake: {
  21138. height: math.unit(30, "feet"),
  21139. weight: math.unit(246960, "lb"),
  21140. name: "Drake",
  21141. image: {
  21142. source: "./media/characters/reza/drake.svg",
  21143. extra: 2350 / 2024,
  21144. bottom: 60.7 / 2403
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(4, "feet"),
  21152. default: true
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21158. {
  21159. side: {
  21160. height: math.unit(15, "feet"),
  21161. weight: math.unit(14, "tons"),
  21162. name: "Side",
  21163. image: {
  21164. source: "./media/characters/athea/side.svg",
  21165. extra: 960 / 540,
  21166. bottom: 0.003
  21167. }
  21168. },
  21169. sitting: {
  21170. height: math.unit(6 * 2.85, "feet"),
  21171. weight: math.unit(14, "tons"),
  21172. name: "Sitting",
  21173. image: {
  21174. source: "./media/characters/athea/sitting.svg",
  21175. extra: 621 / 581,
  21176. bottom: 0.075
  21177. }
  21178. },
  21179. maw: {
  21180. height: math.unit(7.59498031496063, "feet"),
  21181. name: "Maw",
  21182. image: {
  21183. source: "./media/characters/athea/maw.svg"
  21184. }
  21185. },
  21186. },
  21187. [
  21188. {
  21189. name: "Lap Cat",
  21190. height: math.unit(2.5, "feet")
  21191. },
  21192. {
  21193. name: "Minimacro",
  21194. height: math.unit(15, "feet"),
  21195. default: true
  21196. },
  21197. {
  21198. name: "Macro",
  21199. height: math.unit(120, "feet")
  21200. },
  21201. {
  21202. name: "Macro+",
  21203. height: math.unit(640, "feet")
  21204. },
  21205. {
  21206. name: "Colossus",
  21207. height: math.unit(2.2, "miles")
  21208. },
  21209. ]
  21210. ))
  21211. characterMakers.push(() => makeCharacter(
  21212. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21213. {
  21214. front: {
  21215. height: math.unit(8 + 8 / 12, "feet"),
  21216. weight: math.unit(130, "kg"),
  21217. name: "Front",
  21218. image: {
  21219. source: "./media/characters/seroko/front.svg",
  21220. extra: 1385 / 1280,
  21221. bottom: 0.025
  21222. }
  21223. },
  21224. back: {
  21225. height: math.unit(8 + 8 / 12, "feet"),
  21226. weight: math.unit(130, "kg"),
  21227. name: "Back",
  21228. image: {
  21229. source: "./media/characters/seroko/back.svg",
  21230. extra: 1369 / 1238,
  21231. bottom: 0.018
  21232. }
  21233. },
  21234. frontDressed: {
  21235. height: math.unit(8 + 8 / 12, "feet"),
  21236. weight: math.unit(130, "kg"),
  21237. name: "Front (Dressed)",
  21238. image: {
  21239. source: "./media/characters/seroko/front-dressed.svg",
  21240. extra: 1366 / 1275,
  21241. bottom: 0.03
  21242. }
  21243. },
  21244. },
  21245. [
  21246. {
  21247. name: "Normal",
  21248. height: math.unit(8 + 8 / 12, "feet"),
  21249. default: true
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21255. {
  21256. front: {
  21257. height: math.unit(5.5, "feet"),
  21258. weight: math.unit(160, "lb"),
  21259. name: "Front",
  21260. image: {
  21261. source: "./media/characters/quatzi/front.svg",
  21262. extra: 2346 / 2242,
  21263. bottom: 0.015
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(5.5, "feet"),
  21271. default: true
  21272. },
  21273. {
  21274. name: "Big",
  21275. height: math.unit(7.7, "feet")
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21281. {
  21282. front: {
  21283. height: math.unit(5 + 11 / 12, "feet"),
  21284. weight: math.unit(180, "lb"),
  21285. name: "Front",
  21286. image: {
  21287. source: "./media/characters/sen/front.svg",
  21288. extra: 1321 / 1254,
  21289. bottom: 0.015
  21290. }
  21291. },
  21292. side: {
  21293. height: math.unit(5 + 11 / 12, "feet"),
  21294. weight: math.unit(180, "lb"),
  21295. name: "Side",
  21296. image: {
  21297. source: "./media/characters/sen/side.svg",
  21298. extra: 1321 / 1254,
  21299. bottom: 0.007
  21300. }
  21301. },
  21302. back: {
  21303. height: math.unit(5 + 11 / 12, "feet"),
  21304. weight: math.unit(180, "lb"),
  21305. name: "Back",
  21306. image: {
  21307. source: "./media/characters/sen/back.svg",
  21308. extra: 1321 / 1254
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Normal",
  21315. height: math.unit(5 + 11 / 12, "feet"),
  21316. default: true
  21317. },
  21318. ]
  21319. ))
  21320. characterMakers.push(() => makeCharacter(
  21321. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21322. {
  21323. front: {
  21324. height: math.unit(166.6, "cm"),
  21325. weight: math.unit(66.6, "kg"),
  21326. name: "Front",
  21327. image: {
  21328. source: "./media/characters/fruity/front.svg",
  21329. extra: 1510 / 1386,
  21330. bottom: 0.04
  21331. }
  21332. },
  21333. back: {
  21334. height: math.unit(166.6, "cm"),
  21335. weight: math.unit(66.6, "lb"),
  21336. name: "Back",
  21337. image: {
  21338. source: "./media/characters/fruity/back.svg",
  21339. extra: 1563 / 1435,
  21340. bottom: 0.005
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(166.6, "cm"),
  21348. default: true
  21349. },
  21350. {
  21351. name: "Demonic",
  21352. height: math.unit(166.6, "feet")
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21358. {
  21359. side: {
  21360. height: math.unit(10, "feet"),
  21361. weight: math.unit(500, "lb"),
  21362. name: "Side",
  21363. image: {
  21364. source: "./media/characters/zost/side.svg",
  21365. extra: 966 / 880,
  21366. bottom: 0.075
  21367. }
  21368. },
  21369. mawFront: {
  21370. height: math.unit(1.08, "meters"),
  21371. name: "Maw (Front)",
  21372. image: {
  21373. source: "./media/characters/zost/maw-front.svg"
  21374. }
  21375. },
  21376. mawSide: {
  21377. height: math.unit(2.66, "feet"),
  21378. name: "Maw (Side)",
  21379. image: {
  21380. source: "./media/characters/zost/maw-side.svg"
  21381. }
  21382. },
  21383. },
  21384. [
  21385. {
  21386. name: "Normal",
  21387. height: math.unit(10, "feet"),
  21388. default: true
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(5 + 4 / 12, "feet"),
  21397. weight: math.unit(120, "lb"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/luci/front.svg",
  21401. extra: 1985 / 1884,
  21402. bottom: 0.04
  21403. }
  21404. },
  21405. back: {
  21406. height: math.unit(5 + 4 / 12, "feet"),
  21407. weight: math.unit(120, "lb"),
  21408. name: "Back",
  21409. image: {
  21410. source: "./media/characters/luci/back.svg",
  21411. extra: 1892 / 1791,
  21412. bottom: 0.002
  21413. }
  21414. },
  21415. },
  21416. [
  21417. {
  21418. name: "Normal",
  21419. height: math.unit(5 + 4 / 12, "feet"),
  21420. default: true
  21421. },
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21426. {
  21427. front: {
  21428. height: math.unit(1500, "feet"),
  21429. weight: math.unit(3.8e6, "tons"),
  21430. name: "Front",
  21431. image: {
  21432. source: "./media/characters/2th/front.svg",
  21433. extra: 3489 / 3350,
  21434. bottom: 0.1
  21435. }
  21436. },
  21437. foot: {
  21438. height: math.unit(461, "feet"),
  21439. name: "Foot",
  21440. image: {
  21441. source: "./media/characters/2th/foot.svg"
  21442. }
  21443. },
  21444. },
  21445. [
  21446. {
  21447. name: "\"Micro\"",
  21448. height: math.unit(15 + 7 / 12, "feet")
  21449. },
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(1500, "feet"),
  21453. default: true
  21454. },
  21455. {
  21456. name: "Macro",
  21457. height: math.unit(5000, "feet")
  21458. },
  21459. {
  21460. name: "Megamacro",
  21461. height: math.unit(15, "miles")
  21462. },
  21463. {
  21464. name: "Gigamacro",
  21465. height: math.unit(4000, "miles")
  21466. },
  21467. {
  21468. name: "Galactic",
  21469. height: math.unit(50, "AU")
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21475. {
  21476. front: {
  21477. height: math.unit(5 + 6 / 12, "feet"),
  21478. weight: math.unit(220, "lb"),
  21479. name: "Front",
  21480. image: {
  21481. source: "./media/characters/amethyst/front.svg",
  21482. extra: 2078 / 2040,
  21483. bottom: 0.045
  21484. }
  21485. },
  21486. back: {
  21487. height: math.unit(5 + 6 / 12, "feet"),
  21488. weight: math.unit(220, "lb"),
  21489. name: "Back",
  21490. image: {
  21491. source: "./media/characters/amethyst/back.svg",
  21492. extra: 2021 / 1989,
  21493. bottom: 0.02
  21494. }
  21495. },
  21496. },
  21497. [
  21498. {
  21499. name: "Normal",
  21500. height: math.unit(5 + 6 / 12, "feet"),
  21501. default: true
  21502. },
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21507. {
  21508. front: {
  21509. height: math.unit(4 + 11 / 12, "feet"),
  21510. weight: math.unit(120, "lb"),
  21511. name: "Front",
  21512. image: {
  21513. source: "./media/characters/yumi-akiyama/front.svg",
  21514. extra: 1327 / 1235,
  21515. bottom: 0.02
  21516. }
  21517. },
  21518. back: {
  21519. height: math.unit(4 + 11 / 12, "feet"),
  21520. weight: math.unit(120, "lb"),
  21521. name: "Back",
  21522. image: {
  21523. source: "./media/characters/yumi-akiyama/back.svg",
  21524. extra: 1287 / 1245,
  21525. bottom: 0.002
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Galactic",
  21532. height: math.unit(50, "galaxies"),
  21533. default: true
  21534. },
  21535. {
  21536. name: "Universal",
  21537. height: math.unit(100, "universes")
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21543. {
  21544. front: {
  21545. height: math.unit(8, "feet"),
  21546. weight: math.unit(500, "lb"),
  21547. name: "Front",
  21548. image: {
  21549. source: "./media/characters/rifter-yrmori/front.svg",
  21550. extra: 1180 / 1125,
  21551. bottom: 0.02
  21552. }
  21553. },
  21554. back: {
  21555. height: math.unit(8, "feet"),
  21556. weight: math.unit(500, "lb"),
  21557. name: "Back",
  21558. image: {
  21559. source: "./media/characters/rifter-yrmori/back.svg",
  21560. extra: 1190 / 1145,
  21561. bottom: 0.001
  21562. }
  21563. },
  21564. wings: {
  21565. height: math.unit(7.75, "feet"),
  21566. weight: math.unit(500, "lb"),
  21567. name: "Wings",
  21568. image: {
  21569. source: "./media/characters/rifter-yrmori/wings.svg",
  21570. extra: 1357 / 1285
  21571. }
  21572. },
  21573. maw: {
  21574. height: math.unit(0.8, "feet"),
  21575. name: "Maw",
  21576. image: {
  21577. source: "./media/characters/rifter-yrmori/maw.svg"
  21578. }
  21579. },
  21580. mawfront: {
  21581. height: math.unit(1.45, "feet"),
  21582. name: "Maw (Front)",
  21583. image: {
  21584. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(8, "feet"),
  21592. default: true
  21593. },
  21594. {
  21595. name: "Macro",
  21596. height: math.unit(42, "meters")
  21597. },
  21598. ]
  21599. ))
  21600. characterMakers.push(() => makeCharacter(
  21601. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21602. {
  21603. were: {
  21604. height: math.unit(25 + 6 / 12, "feet"),
  21605. weight: math.unit(10000, "lb"),
  21606. name: "Were",
  21607. image: {
  21608. source: "./media/characters/tahajin/were.svg",
  21609. extra: 801 / 770,
  21610. bottom: 0.042
  21611. }
  21612. },
  21613. aquatic: {
  21614. height: math.unit(6 + 4 / 12, "feet"),
  21615. weight: math.unit(160, "lb"),
  21616. name: "Aquatic",
  21617. image: {
  21618. source: "./media/characters/tahajin/aquatic.svg",
  21619. extra: 572 / 542,
  21620. bottom: 0.04
  21621. }
  21622. },
  21623. chow: {
  21624. height: math.unit(8 + 11 / 12, "feet"),
  21625. weight: math.unit(450, "lb"),
  21626. name: "Chow",
  21627. image: {
  21628. source: "./media/characters/tahajin/chow.svg",
  21629. extra: 660 / 640,
  21630. bottom: 0.015
  21631. }
  21632. },
  21633. demiNaga: {
  21634. height: math.unit(6 + 8 / 12, "feet"),
  21635. weight: math.unit(300, "lb"),
  21636. name: "Demi Naga",
  21637. image: {
  21638. source: "./media/characters/tahajin/demi-naga.svg",
  21639. extra: 643 / 615,
  21640. bottom: 0.1
  21641. }
  21642. },
  21643. data: {
  21644. height: math.unit(5, "inches"),
  21645. weight: math.unit(0.1, "lb"),
  21646. name: "Data",
  21647. image: {
  21648. source: "./media/characters/tahajin/data.svg"
  21649. }
  21650. },
  21651. fluu: {
  21652. height: math.unit(5 + 7 / 12, "feet"),
  21653. weight: math.unit(140, "lb"),
  21654. name: "Fluu",
  21655. image: {
  21656. source: "./media/characters/tahajin/fluu.svg",
  21657. extra: 628 / 592,
  21658. bottom: 0.02
  21659. }
  21660. },
  21661. starWarrior: {
  21662. height: math.unit(4 + 5 / 12, "feet"),
  21663. weight: math.unit(50, "lb"),
  21664. name: "Star Warrior",
  21665. image: {
  21666. source: "./media/characters/tahajin/star-warrior.svg"
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(25 + 6 / 12, "feet"),
  21674. default: true
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21680. {
  21681. front: {
  21682. height: math.unit(8, "feet"),
  21683. weight: math.unit(350, "lb"),
  21684. name: "Front",
  21685. image: {
  21686. source: "./media/characters/gabira/front.svg",
  21687. extra: 608 / 580,
  21688. bottom: 0.03
  21689. }
  21690. },
  21691. back: {
  21692. height: math.unit(8, "feet"),
  21693. weight: math.unit(350, "lb"),
  21694. name: "Back",
  21695. image: {
  21696. source: "./media/characters/gabira/back.svg",
  21697. extra: 608 / 580,
  21698. bottom: 0.03
  21699. }
  21700. },
  21701. },
  21702. [
  21703. {
  21704. name: "Normal",
  21705. height: math.unit(8, "feet"),
  21706. default: true
  21707. },
  21708. ]
  21709. ))
  21710. characterMakers.push(() => makeCharacter(
  21711. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21712. {
  21713. front: {
  21714. height: math.unit(5 + 3 / 12, "feet"),
  21715. weight: math.unit(137, "lb"),
  21716. name: "Front",
  21717. image: {
  21718. source: "./media/characters/sasha-katraine/front.svg",
  21719. bottom: 0.045
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Micro",
  21726. height: math.unit(5, "inches")
  21727. },
  21728. {
  21729. name: "Normal",
  21730. height: math.unit(5 + 3 / 12, "feet"),
  21731. default: true
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21737. {
  21738. side: {
  21739. height: math.unit(4, "inches"),
  21740. weight: math.unit(200, "grams"),
  21741. name: "Side",
  21742. image: {
  21743. source: "./media/characters/der/side.svg",
  21744. extra: 719 / 400,
  21745. bottom: 30.6 / 749.9187
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Micro",
  21752. height: math.unit(4, "inches"),
  21753. default: true
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21759. {
  21760. side: {
  21761. height: math.unit(30, "meters"),
  21762. weight: math.unit(700, "tonnes"),
  21763. name: "Side",
  21764. image: {
  21765. source: "./media/characters/fixerdragon/side.svg",
  21766. extra: (1293.0514 - 116.03) / 1106.86,
  21767. bottom: 116.03 / 1293.0514
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Planck",
  21774. height: math.unit(1.6e-35, "meters")
  21775. },
  21776. {
  21777. name: "Micro",
  21778. height: math.unit(0.4, "meters")
  21779. },
  21780. {
  21781. name: "Normal",
  21782. height: math.unit(30, "meters"),
  21783. default: true
  21784. },
  21785. {
  21786. name: "Megamacro",
  21787. height: math.unit(1.2, "megameters")
  21788. },
  21789. {
  21790. name: "Teramacro",
  21791. height: math.unit(130, "terameters")
  21792. },
  21793. {
  21794. name: "Yottamacro",
  21795. height: math.unit(6200, "yottameters")
  21796. },
  21797. ]
  21798. ));
  21799. characterMakers.push(() => makeCharacter(
  21800. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21801. {
  21802. front: {
  21803. height: math.unit(8, "feet"),
  21804. weight: math.unit(250, "lb"),
  21805. name: "Front",
  21806. image: {
  21807. source: "./media/characters/kite/front.svg",
  21808. extra: 2796 / 2659,
  21809. bottom: 0.002
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(8, "feet"),
  21817. default: true
  21818. },
  21819. {
  21820. name: "Macro",
  21821. height: math.unit(360, "feet")
  21822. },
  21823. {
  21824. name: "Megamacro",
  21825. height: math.unit(1500, "feet")
  21826. },
  21827. ]
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21831. {
  21832. front: {
  21833. height: math.unit(5 + 11/12, "feet"),
  21834. weight: math.unit(170, "lb"),
  21835. name: "Front",
  21836. image: {
  21837. source: "./media/characters/poojawa-vynar/front.svg",
  21838. extra: 1735/1585,
  21839. bottom: 96/1831
  21840. }
  21841. },
  21842. back: {
  21843. height: math.unit(5 + 11/12, "feet"),
  21844. weight: math.unit(170, "lb"),
  21845. name: "Back",
  21846. image: {
  21847. source: "./media/characters/poojawa-vynar/back.svg",
  21848. extra: 1749/1607,
  21849. bottom: 28/1777
  21850. }
  21851. },
  21852. male: {
  21853. height: math.unit(5 + 11/12, "feet"),
  21854. weight: math.unit(170, "lb"),
  21855. name: "Male",
  21856. image: {
  21857. source: "./media/characters/poojawa-vynar/male.svg",
  21858. extra: 1855/1713,
  21859. bottom: 63/1918
  21860. }
  21861. },
  21862. taur: {
  21863. height: math.unit(5 + 11/12, "feet"),
  21864. weight: math.unit(170, "lb"),
  21865. name: "Taur",
  21866. image: {
  21867. source: "./media/characters/poojawa-vynar/taur.svg",
  21868. extra: 1151/1059,
  21869. bottom: 356/1507
  21870. }
  21871. },
  21872. frontDressed: {
  21873. height: math.unit(5 + 11/12, "feet"),
  21874. weight: math.unit(170, "lb"),
  21875. name: "Front (Dressed)",
  21876. image: {
  21877. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21878. extra: 1735/1585,
  21879. bottom: 96/1831
  21880. }
  21881. },
  21882. backDressed: {
  21883. height: math.unit(5 + 11/12, "feet"),
  21884. weight: math.unit(170, "lb"),
  21885. name: "Back (Dressed)",
  21886. image: {
  21887. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21888. extra: 1749/1607,
  21889. bottom: 28/1777
  21890. }
  21891. },
  21892. maleDressed: {
  21893. height: math.unit(5 + 11/12, "feet"),
  21894. weight: math.unit(170, "lb"),
  21895. name: "Male (Dressed)",
  21896. image: {
  21897. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21898. extra: 1855/1713,
  21899. bottom: 63/1918
  21900. }
  21901. },
  21902. taurDressed: {
  21903. height: math.unit(5 + 11/12, "feet"),
  21904. weight: math.unit(170, "lb"),
  21905. name: "Taur (Dressed)",
  21906. image: {
  21907. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21908. extra: 1151/1059,
  21909. bottom: 356/1507
  21910. }
  21911. },
  21912. maw: {
  21913. height: math.unit(1.46, "feet"),
  21914. name: "Maw",
  21915. image: {
  21916. source: "./media/characters/poojawa-vynar/maw.svg"
  21917. }
  21918. },
  21919. head: {
  21920. height: math.unit(2.34, "feet"),
  21921. name: "Head",
  21922. image: {
  21923. source: "./media/characters/poojawa-vynar/head.svg"
  21924. }
  21925. },
  21926. paw: {
  21927. height: math.unit(1.61, "feet"),
  21928. name: "Paw",
  21929. image: {
  21930. source: "./media/characters/poojawa-vynar/paw.svg"
  21931. }
  21932. },
  21933. pawToering: {
  21934. height: math.unit(1.72, "feet"),
  21935. name: "Paw (Toering)",
  21936. image: {
  21937. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21938. }
  21939. },
  21940. toering: {
  21941. height: math.unit(2.9, "inches"),
  21942. name: "Toering",
  21943. image: {
  21944. source: "./media/characters/poojawa-vynar/toering.svg"
  21945. }
  21946. },
  21947. shaft: {
  21948. height: math.unit(0.625, "feet"),
  21949. name: "Shaft",
  21950. image: {
  21951. source: "./media/characters/poojawa-vynar/shaft.svg"
  21952. }
  21953. },
  21954. spade: {
  21955. height: math.unit(0.42, "feet"),
  21956. name: "Spade",
  21957. image: {
  21958. source: "./media/characters/poojawa-vynar/spade.svg"
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Shortstack",
  21965. height: math.unit(4, "feet")
  21966. },
  21967. {
  21968. name: "Normal",
  21969. height: math.unit(5 + 11 / 12, "feet"),
  21970. default: true
  21971. },
  21972. {
  21973. name: "Tauric",
  21974. height: math.unit(4, "meters")
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(293, "meters"),
  21983. weight: math.unit(70400, "tons"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/violette/front.svg",
  21987. extra: 1227 / 1180,
  21988. bottom: 0.005
  21989. }
  21990. },
  21991. back: {
  21992. height: math.unit(293, "meters"),
  21993. weight: math.unit(70400, "tons"),
  21994. name: "Back",
  21995. image: {
  21996. source: "./media/characters/violette/back.svg",
  21997. extra: 1227 / 1180,
  21998. bottom: 0.005
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Macro",
  22005. height: math.unit(293, "meters"),
  22006. default: true
  22007. },
  22008. ]
  22009. ))
  22010. characterMakers.push(() => makeCharacter(
  22011. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22012. {
  22013. front: {
  22014. height: math.unit(1050, "feet"),
  22015. weight: math.unit(200000, "tons"),
  22016. name: "Front",
  22017. image: {
  22018. source: "./media/characters/alessandra/front.svg",
  22019. extra: 960 / 912,
  22020. bottom: 0.06
  22021. }
  22022. },
  22023. },
  22024. [
  22025. {
  22026. name: "Macro",
  22027. height: math.unit(1050, "feet")
  22028. },
  22029. {
  22030. name: "Macro+",
  22031. height: math.unit(900, "meters"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(5, "feet"),
  22041. weight: math.unit(187, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/person/front.svg",
  22045. extra: 3087 / 2945,
  22046. bottom: 91 / 3181
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Micro",
  22053. height: math.unit(3, "inches")
  22054. },
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(5, "feet"),
  22058. default: true
  22059. },
  22060. {
  22061. name: "Macro",
  22062. height: math.unit(90, "feet")
  22063. },
  22064. {
  22065. name: "Max Size",
  22066. height: math.unit(280, "feet")
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22072. {
  22073. front: {
  22074. height: math.unit(4.5, "meters"),
  22075. weight: math.unit(3200, "lb"),
  22076. name: "Front",
  22077. image: {
  22078. source: "./media/characters/ty/front.svg",
  22079. extra: 1038 / 960,
  22080. bottom: 31.156 / 1068
  22081. }
  22082. },
  22083. back: {
  22084. height: math.unit(4.5, "meters"),
  22085. weight: math.unit(3200, "lb"),
  22086. name: "Back",
  22087. image: {
  22088. source: "./media/characters/ty/back.svg",
  22089. extra: 1044 / 966,
  22090. bottom: 7.48 / 1049
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(4.5, "meters"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(5 + 4 / 12, "feet"),
  22107. weight: math.unit(115, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/rocky/front.svg",
  22111. extra: 1012 / 975,
  22112. bottom: 54 / 1066
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Normal",
  22119. height: math.unit(5 + 4 / 12, "feet"),
  22120. default: true
  22121. },
  22122. ]
  22123. ))
  22124. characterMakers.push(() => makeCharacter(
  22125. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22126. {
  22127. upright: {
  22128. height: math.unit(6, "meters"),
  22129. weight: math.unit(4000, "kg"),
  22130. name: "Upright",
  22131. image: {
  22132. source: "./media/characters/ruin/upright.svg",
  22133. extra: 668 / 661,
  22134. bottom: 42 / 799.8396
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Normal",
  22141. height: math.unit(6, "meters"),
  22142. default: true
  22143. },
  22144. ]
  22145. ))
  22146. characterMakers.push(() => makeCharacter(
  22147. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22148. {
  22149. front: {
  22150. height: math.unit(5, "feet"),
  22151. weight: math.unit(106, "lb"),
  22152. name: "Front",
  22153. image: {
  22154. source: "./media/characters/robin/front.svg",
  22155. extra: 862 / 799,
  22156. bottom: 42.4 / 914.8856
  22157. }
  22158. },
  22159. },
  22160. [
  22161. {
  22162. name: "Normal",
  22163. height: math.unit(5, "feet"),
  22164. default: true
  22165. },
  22166. ]
  22167. ))
  22168. characterMakers.push(() => makeCharacter(
  22169. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22170. {
  22171. side: {
  22172. height: math.unit(3, "feet"),
  22173. weight: math.unit(225, "lb"),
  22174. name: "Side",
  22175. image: {
  22176. source: "./media/characters/saian/side.svg",
  22177. extra: 566 / 356,
  22178. bottom: 79.7 / 643
  22179. }
  22180. },
  22181. maw: {
  22182. height: math.unit(2.85, "feet"),
  22183. name: "Maw",
  22184. image: {
  22185. source: "./media/characters/saian/maw.svg"
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Normal",
  22192. height: math.unit(3, "feet"),
  22193. default: true
  22194. },
  22195. ]
  22196. ))
  22197. characterMakers.push(() => makeCharacter(
  22198. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22199. {
  22200. side: {
  22201. height: math.unit(8, "feet"),
  22202. weight: math.unit(300, "lb"),
  22203. name: "Side",
  22204. image: {
  22205. source: "./media/characters/equus-silvermane/side.svg",
  22206. extra: 2176 / 2050,
  22207. bottom: 65.7 / 2245
  22208. }
  22209. },
  22210. front: {
  22211. height: math.unit(8, "feet"),
  22212. weight: math.unit(300, "lb"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/equus-silvermane/front.svg",
  22216. extra: 4633 / 4400,
  22217. bottom: 71.3 / 4706.915
  22218. }
  22219. },
  22220. sideStepping: {
  22221. height: math.unit(8, "feet"),
  22222. weight: math.unit(300, "lb"),
  22223. name: "Side (Stepping)",
  22224. image: {
  22225. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22226. extra: 1968 / 1860,
  22227. bottom: 16.4 / 1989
  22228. }
  22229. },
  22230. },
  22231. [
  22232. {
  22233. name: "Normal",
  22234. height: math.unit(8, "feet")
  22235. },
  22236. {
  22237. name: "Minimacro",
  22238. height: math.unit(75, "feet"),
  22239. default: true
  22240. },
  22241. {
  22242. name: "Macro",
  22243. height: math.unit(150, "feet")
  22244. },
  22245. {
  22246. name: "Macro+",
  22247. height: math.unit(1000, "feet")
  22248. },
  22249. {
  22250. name: "Megamacro",
  22251. height: math.unit(1, "mile")
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22257. {
  22258. side: {
  22259. height: math.unit(20, "feet"),
  22260. weight: math.unit(30000, "kg"),
  22261. name: "Side",
  22262. image: {
  22263. source: "./media/characters/windar/side.svg",
  22264. extra: 1491 / 1248,
  22265. bottom: 82.56 / 1568
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(20, "feet"),
  22273. default: true
  22274. },
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22279. {
  22280. side: {
  22281. height: math.unit(15.66, "feet"),
  22282. weight: math.unit(150, "lb"),
  22283. name: "Side",
  22284. image: {
  22285. source: "./media/characters/melody/side.svg",
  22286. extra: 1097 / 944,
  22287. bottom: 11.8 / 1109
  22288. }
  22289. },
  22290. sideOutfit: {
  22291. height: math.unit(15.66, "feet"),
  22292. weight: math.unit(150, "lb"),
  22293. name: "Side (Outfit)",
  22294. image: {
  22295. source: "./media/characters/melody/side-outfit.svg",
  22296. extra: 1097 / 944,
  22297. bottom: 11.8 / 1109
  22298. }
  22299. },
  22300. },
  22301. [
  22302. {
  22303. name: "Normal",
  22304. height: math.unit(15.66, "feet"),
  22305. default: true
  22306. },
  22307. ]
  22308. ))
  22309. characterMakers.push(() => makeCharacter(
  22310. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22311. {
  22312. front: {
  22313. height: math.unit(8, "feet"),
  22314. weight: math.unit(325, "lb"),
  22315. name: "Front",
  22316. image: {
  22317. source: "./media/characters/windera/front.svg",
  22318. extra: 3180 / 2845,
  22319. bottom: 178 / 3365
  22320. }
  22321. },
  22322. },
  22323. [
  22324. {
  22325. name: "Normal",
  22326. height: math.unit(8, "feet"),
  22327. default: true
  22328. },
  22329. ]
  22330. ))
  22331. characterMakers.push(() => makeCharacter(
  22332. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22333. {
  22334. front: {
  22335. height: math.unit(28.75, "feet"),
  22336. weight: math.unit(2000, "kg"),
  22337. name: "Front",
  22338. image: {
  22339. source: "./media/characters/sonear/front.svg",
  22340. extra: 1041.1 / 964.9,
  22341. bottom: 53.7 / 1096.6
  22342. }
  22343. },
  22344. },
  22345. [
  22346. {
  22347. name: "Normal",
  22348. height: math.unit(28.75, "feet"),
  22349. default: true
  22350. },
  22351. ]
  22352. ))
  22353. characterMakers.push(() => makeCharacter(
  22354. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22355. {
  22356. side: {
  22357. height: math.unit(25.5, "feet"),
  22358. weight: math.unit(23000, "kg"),
  22359. name: "Side",
  22360. image: {
  22361. source: "./media/characters/kanara/side.svg"
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Normal",
  22368. height: math.unit(25.5, "feet"),
  22369. default: true
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22375. {
  22376. side: {
  22377. height: math.unit(10, "feet"),
  22378. weight: math.unit(1000, "kg"),
  22379. name: "Side",
  22380. image: {
  22381. source: "./media/characters/ereus/side.svg",
  22382. extra: 1157 / 959,
  22383. bottom: 153 / 1312.5
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(10, "feet"),
  22391. default: true
  22392. },
  22393. ]
  22394. ))
  22395. characterMakers.push(() => makeCharacter(
  22396. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22397. {
  22398. side: {
  22399. height: math.unit(4.5, "feet"),
  22400. weight: math.unit(500, "lb"),
  22401. name: "Side",
  22402. image: {
  22403. source: "./media/characters/e-ter/side.svg",
  22404. extra: 1550 / 1248,
  22405. bottom: 146 / 1694
  22406. }
  22407. },
  22408. },
  22409. [
  22410. {
  22411. name: "Normal",
  22412. height: math.unit(4.5, "feet"),
  22413. default: true
  22414. },
  22415. ]
  22416. ))
  22417. characterMakers.push(() => makeCharacter(
  22418. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22419. {
  22420. side: {
  22421. height: math.unit(9.7, "feet"),
  22422. weight: math.unit(4000, "kg"),
  22423. name: "Side",
  22424. image: {
  22425. source: "./media/characters/yamie/side.svg"
  22426. }
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Normal",
  22432. height: math.unit(9.7, "feet"),
  22433. default: true
  22434. },
  22435. ]
  22436. ))
  22437. characterMakers.push(() => makeCharacter(
  22438. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22439. {
  22440. front: {
  22441. height: math.unit(50, "feet"),
  22442. weight: math.unit(50000, "kg"),
  22443. name: "Front",
  22444. image: {
  22445. source: "./media/characters/anders/front.svg",
  22446. extra: 570 / 539,
  22447. bottom: 14.7 / 586.7
  22448. }
  22449. },
  22450. },
  22451. [
  22452. {
  22453. name: "Large",
  22454. height: math.unit(50, "feet")
  22455. },
  22456. {
  22457. name: "Macro",
  22458. height: math.unit(2000, "feet"),
  22459. default: true
  22460. },
  22461. {
  22462. name: "Megamacro",
  22463. height: math.unit(12, "miles")
  22464. },
  22465. ]
  22466. ))
  22467. characterMakers.push(() => makeCharacter(
  22468. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22469. {
  22470. front: {
  22471. height: math.unit(7 + 2 / 12, "feet"),
  22472. weight: math.unit(300, "lb"),
  22473. name: "Front",
  22474. image: {
  22475. source: "./media/characters/reban/front.svg",
  22476. extra: 1287/1212,
  22477. bottom: 148/1435
  22478. }
  22479. },
  22480. head: {
  22481. height: math.unit(1.95, "feet"),
  22482. name: "Head",
  22483. image: {
  22484. source: "./media/characters/reban/head.svg"
  22485. }
  22486. },
  22487. maw: {
  22488. height: math.unit(0.95, "feet"),
  22489. name: "Maw",
  22490. image: {
  22491. source: "./media/characters/reban/maw.svg"
  22492. }
  22493. },
  22494. foot: {
  22495. height: math.unit(1.65, "feet"),
  22496. name: "Foot",
  22497. image: {
  22498. source: "./media/characters/reban/foot.svg"
  22499. }
  22500. },
  22501. dick: {
  22502. height: math.unit(7 / 5, "feet"),
  22503. name: "Dick",
  22504. image: {
  22505. source: "./media/characters/reban/dick.svg"
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Natural Height",
  22512. height: math.unit(7 + 2 / 12, "feet")
  22513. },
  22514. {
  22515. name: "Macro",
  22516. height: math.unit(500, "feet"),
  22517. default: true
  22518. },
  22519. {
  22520. name: "Canon Height",
  22521. height: math.unit(50, "AU")
  22522. },
  22523. ]
  22524. ))
  22525. characterMakers.push(() => makeCharacter(
  22526. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22527. {
  22528. front: {
  22529. height: math.unit(6, "feet"),
  22530. weight: math.unit(150, "lb"),
  22531. name: "Front",
  22532. image: {
  22533. source: "./media/characters/terrance-keayes/front.svg",
  22534. extra: 1.005,
  22535. bottom: 151 / 1615
  22536. }
  22537. },
  22538. side: {
  22539. height: math.unit(6, "feet"),
  22540. weight: math.unit(150, "lb"),
  22541. name: "Side",
  22542. image: {
  22543. source: "./media/characters/terrance-keayes/side.svg",
  22544. extra: 1.005,
  22545. bottom: 129.4 / 1544
  22546. }
  22547. },
  22548. back: {
  22549. height: math.unit(6, "feet"),
  22550. weight: math.unit(150, "lb"),
  22551. name: "Back",
  22552. image: {
  22553. source: "./media/characters/terrance-keayes/back.svg",
  22554. extra: 1.005,
  22555. bottom: 58.4 / 1557.3
  22556. }
  22557. },
  22558. dick: {
  22559. height: math.unit(6 * 0.208, "feet"),
  22560. name: "Dick",
  22561. image: {
  22562. source: "./media/characters/terrance-keayes/dick.svg"
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Canon Height",
  22569. height: math.unit(35, "miles"),
  22570. default: true
  22571. },
  22572. ]
  22573. ))
  22574. characterMakers.push(() => makeCharacter(
  22575. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22576. {
  22577. front: {
  22578. height: math.unit(6, "feet"),
  22579. weight: math.unit(150, "lb"),
  22580. name: "Front",
  22581. image: {
  22582. source: "./media/characters/ofelia/front.svg",
  22583. extra: 1130/1117,
  22584. bottom: 91/1221
  22585. }
  22586. },
  22587. back: {
  22588. height: math.unit(6, "feet"),
  22589. weight: math.unit(150, "lb"),
  22590. name: "Back",
  22591. image: {
  22592. source: "./media/characters/ofelia/back.svg",
  22593. extra: 1172/1159,
  22594. bottom: 28/1200
  22595. }
  22596. },
  22597. maw: {
  22598. height: math.unit(1, "feet"),
  22599. name: "Maw",
  22600. image: {
  22601. source: "./media/characters/ofelia/maw.svg"
  22602. }
  22603. },
  22604. foot: {
  22605. height: math.unit(1.949, "feet"),
  22606. name: "Foot",
  22607. image: {
  22608. source: "./media/characters/ofelia/foot.svg"
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Canon Height",
  22615. height: math.unit(2000, "miles"),
  22616. default: true
  22617. },
  22618. ]
  22619. ))
  22620. characterMakers.push(() => makeCharacter(
  22621. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22622. {
  22623. front: {
  22624. height: math.unit(6, "feet"),
  22625. weight: math.unit(150, "lb"),
  22626. name: "Front",
  22627. image: {
  22628. source: "./media/characters/samuel/front.svg",
  22629. extra: 265 / 258,
  22630. bottom: 2 / 266.1566
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Macro",
  22637. height: math.unit(100, "feet"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Full Size",
  22642. height: math.unit(1000, "miles")
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(6, "feet"),
  22651. weight: math.unit(300, "lb"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/beishir-kiel/front.svg",
  22655. extra: 569 / 547,
  22656. bottom: 41.9 / 609
  22657. }
  22658. },
  22659. maw: {
  22660. height: math.unit(6 * 0.202, "feet"),
  22661. name: "Maw",
  22662. image: {
  22663. source: "./media/characters/beishir-kiel/maw.svg"
  22664. }
  22665. },
  22666. },
  22667. [
  22668. {
  22669. name: "Macro",
  22670. height: math.unit(300, "feet"),
  22671. default: true
  22672. },
  22673. ]
  22674. ))
  22675. characterMakers.push(() => makeCharacter(
  22676. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22677. {
  22678. front: {
  22679. height: math.unit(5 + 7/12, "feet"),
  22680. weight: math.unit(120, "lb"),
  22681. name: "Front",
  22682. image: {
  22683. source: "./media/characters/logan-grey/front.svg",
  22684. extra: 1836/1738,
  22685. bottom: 108/1944
  22686. }
  22687. },
  22688. back: {
  22689. height: math.unit(5 + 7/12, "feet"),
  22690. weight: math.unit(120, "lb"),
  22691. name: "Back",
  22692. image: {
  22693. source: "./media/characters/logan-grey/back.svg",
  22694. extra: 1880/1794,
  22695. bottom: 24/1904
  22696. }
  22697. },
  22698. frontSfw: {
  22699. height: math.unit(5 + 7/12, "feet"),
  22700. weight: math.unit(120, "lb"),
  22701. name: "Front (SFW)",
  22702. image: {
  22703. source: "./media/characters/logan-grey/front-sfw.svg",
  22704. extra: 1836/1738,
  22705. bottom: 108/1944
  22706. }
  22707. },
  22708. backSfw: {
  22709. height: math.unit(5 + 7/12, "feet"),
  22710. weight: math.unit(120, "lb"),
  22711. name: "Back (SFW)",
  22712. image: {
  22713. source: "./media/characters/logan-grey/back-sfw.svg",
  22714. extra: 1880/1794,
  22715. bottom: 24/1904
  22716. }
  22717. },
  22718. hands: {
  22719. height: math.unit(0.84, "feet"),
  22720. name: "Hands",
  22721. image: {
  22722. source: "./media/characters/logan-grey/hands.svg"
  22723. }
  22724. },
  22725. paws: {
  22726. height: math.unit(0.72, "feet"),
  22727. name: "Paws",
  22728. image: {
  22729. source: "./media/characters/logan-grey/paws.svg"
  22730. }
  22731. },
  22732. cock: {
  22733. height: math.unit(1.45, "feet"),
  22734. name: "Cock",
  22735. image: {
  22736. source: "./media/characters/logan-grey/cock.svg"
  22737. }
  22738. },
  22739. cockAlt: {
  22740. height: math.unit(1.437, "feet"),
  22741. name: "Cock (alt)",
  22742. image: {
  22743. source: "./media/characters/logan-grey/cock-alt.svg"
  22744. }
  22745. },
  22746. },
  22747. [
  22748. {
  22749. name: "Normal",
  22750. height: math.unit(5 + 8 / 12, "feet")
  22751. },
  22752. {
  22753. name: "The 500 Foot Femboy",
  22754. height: math.unit(500, "feet"),
  22755. default: true
  22756. },
  22757. {
  22758. name: "Megmacro",
  22759. height: math.unit(20, "miles")
  22760. },
  22761. ]
  22762. ))
  22763. characterMakers.push(() => makeCharacter(
  22764. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22765. {
  22766. front: {
  22767. height: math.unit(8 + 2 / 12, "feet"),
  22768. weight: math.unit(275, "lb"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/draganta/front.svg",
  22772. extra: 1177 / 1135,
  22773. bottom: 33.46 / 1212.1
  22774. }
  22775. },
  22776. },
  22777. [
  22778. {
  22779. name: "Normal",
  22780. height: math.unit(8 + 6 / 12, "feet"),
  22781. default: true
  22782. },
  22783. {
  22784. name: "Macro",
  22785. height: math.unit(150, "feet")
  22786. },
  22787. {
  22788. name: "Megamacro",
  22789. height: math.unit(1000, "miles")
  22790. },
  22791. ]
  22792. ))
  22793. characterMakers.push(() => makeCharacter(
  22794. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22795. {
  22796. front: {
  22797. height: math.unit(1.72, "m"),
  22798. weight: math.unit(80, "lb"),
  22799. name: "Front",
  22800. image: {
  22801. source: "./media/characters/voski/front.svg",
  22802. extra: 2076.22 / 2022.4,
  22803. bottom: 102.7 / 2177.3866
  22804. }
  22805. },
  22806. frontNsfw: {
  22807. height: math.unit(1.72, "m"),
  22808. weight: math.unit(80, "lb"),
  22809. name: "Front (NSFW)",
  22810. image: {
  22811. source: "./media/characters/voski/front-nsfw.svg",
  22812. extra: 2076.22 / 2022.4,
  22813. bottom: 102.7 / 2177.3866
  22814. }
  22815. },
  22816. back: {
  22817. height: math.unit(1.72, "m"),
  22818. weight: math.unit(80, "lb"),
  22819. name: "Back",
  22820. image: {
  22821. source: "./media/characters/voski/back.svg",
  22822. extra: 2104 / 2051,
  22823. bottom: 10.45 / 2113.63
  22824. }
  22825. },
  22826. },
  22827. [
  22828. {
  22829. name: "Normal",
  22830. height: math.unit(1.72, "m")
  22831. },
  22832. {
  22833. name: "Macro",
  22834. height: math.unit(55, "m"),
  22835. default: true
  22836. },
  22837. {
  22838. name: "Macro+",
  22839. height: math.unit(300, "m")
  22840. },
  22841. {
  22842. name: "Macro++",
  22843. height: math.unit(700, "m")
  22844. },
  22845. {
  22846. name: "Macro+++",
  22847. height: math.unit(4500, "m")
  22848. },
  22849. {
  22850. name: "Macro++++",
  22851. height: math.unit(45, "km")
  22852. },
  22853. {
  22854. name: "Macro+++++",
  22855. height: math.unit(1220, "km")
  22856. },
  22857. ]
  22858. ))
  22859. characterMakers.push(() => makeCharacter(
  22860. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22861. {
  22862. front: {
  22863. height: math.unit(2.3, "m"),
  22864. weight: math.unit(304, "kg"),
  22865. name: "Front",
  22866. image: {
  22867. source: "./media/characters/icowom-lee/front.svg",
  22868. extra: 985 / 955,
  22869. bottom: 25.4 / 1012
  22870. }
  22871. },
  22872. fronttentacles: {
  22873. height: math.unit(2.3, "m"),
  22874. weight: math.unit(304, "kg"),
  22875. name: "Front-tentacles",
  22876. image: {
  22877. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22878. extra: 985 / 955,
  22879. bottom: 25.4 / 1012
  22880. }
  22881. },
  22882. back: {
  22883. height: math.unit(2.3, "m"),
  22884. weight: math.unit(304, "kg"),
  22885. name: "Back",
  22886. image: {
  22887. source: "./media/characters/icowom-lee/back.svg",
  22888. extra: 975 / 954,
  22889. bottom: 9.5 / 985
  22890. }
  22891. },
  22892. backtentacles: {
  22893. height: math.unit(2.3, "m"),
  22894. weight: math.unit(304, "kg"),
  22895. name: "Back-tentacles",
  22896. image: {
  22897. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22898. extra: 975 / 954,
  22899. bottom: 9.5 / 985
  22900. }
  22901. },
  22902. frontDressed: {
  22903. height: math.unit(2.3, "m"),
  22904. weight: math.unit(304, "kg"),
  22905. name: "Front (Dressed)",
  22906. image: {
  22907. source: "./media/characters/icowom-lee/front-dressed.svg",
  22908. extra: 3076 / 2933,
  22909. bottom: 51.4 / 3125.1889
  22910. }
  22911. },
  22912. rump: {
  22913. height: math.unit(0.776, "meters"),
  22914. name: "Rump",
  22915. image: {
  22916. source: "./media/characters/icowom-lee/rump.svg"
  22917. }
  22918. },
  22919. genitals: {
  22920. height: math.unit(0.78, "meters"),
  22921. name: "Genitals",
  22922. image: {
  22923. source: "./media/characters/icowom-lee/genitals.svg"
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(2.3, "meters"),
  22931. default: true
  22932. },
  22933. {
  22934. name: "Macro",
  22935. height: math.unit(94, "meters"),
  22936. default: true
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22942. {
  22943. front: {
  22944. height: math.unit(22, "meters"),
  22945. weight: math.unit(21000, "kg"),
  22946. name: "Front",
  22947. image: {
  22948. source: "./media/characters/shock-diamond/front.svg",
  22949. extra: 2204 / 2053,
  22950. bottom: 65 / 2239.47
  22951. }
  22952. },
  22953. frontNude: {
  22954. height: math.unit(22, "meters"),
  22955. weight: math.unit(21000, "kg"),
  22956. name: "Front (Nude)",
  22957. image: {
  22958. source: "./media/characters/shock-diamond/front-nude.svg",
  22959. extra: 2514 / 2285,
  22960. bottom: 13 / 2527.56
  22961. }
  22962. },
  22963. },
  22964. [
  22965. {
  22966. name: "Normal",
  22967. height: math.unit(3, "meters")
  22968. },
  22969. {
  22970. name: "Macro",
  22971. height: math.unit(22, "meters"),
  22972. default: true
  22973. },
  22974. ]
  22975. ))
  22976. characterMakers.push(() => makeCharacter(
  22977. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22978. {
  22979. front: {
  22980. height: math.unit(5 + 4 / 12, "feet"),
  22981. weight: math.unit(120, "lb"),
  22982. name: "Front",
  22983. image: {
  22984. source: "./media/characters/rory/front.svg",
  22985. extra: 1318/1241,
  22986. bottom: 42/1360
  22987. }
  22988. },
  22989. back: {
  22990. height: math.unit(5 + 4 / 12, "feet"),
  22991. weight: math.unit(120, "lb"),
  22992. name: "Back",
  22993. image: {
  22994. source: "./media/characters/rory/back.svg",
  22995. extra: 1318/1241,
  22996. bottom: 42/1360
  22997. }
  22998. },
  22999. butt: {
  23000. height: math.unit(1.74, "feet"),
  23001. name: "Butt",
  23002. image: {
  23003. source: "./media/characters/rory/butt.svg"
  23004. }
  23005. },
  23006. dick: {
  23007. height: math.unit(1.02, "feet"),
  23008. name: "Dick",
  23009. image: {
  23010. source: "./media/characters/rory/dick.svg"
  23011. }
  23012. },
  23013. paws: {
  23014. height: math.unit(1, "feet"),
  23015. name: "Paws",
  23016. image: {
  23017. source: "./media/characters/rory/paws.svg"
  23018. }
  23019. },
  23020. frontAlt: {
  23021. height: math.unit(5 + 4 / 12, "feet"),
  23022. weight: math.unit(120, "lb"),
  23023. name: "Front (Alt)",
  23024. image: {
  23025. source: "./media/characters/rory/front-alt.svg",
  23026. extra: 589 / 556,
  23027. bottom: 45.7 / 635.76
  23028. }
  23029. },
  23030. frontAltNude: {
  23031. height: math.unit(5 + 4 / 12, "feet"),
  23032. weight: math.unit(120, "lb"),
  23033. name: "Front (Alt, Nude)",
  23034. image: {
  23035. source: "./media/characters/rory/front-alt-nude.svg",
  23036. extra: 589 / 556,
  23037. bottom: 45.7 / 635.76
  23038. }
  23039. },
  23040. side: {
  23041. height: math.unit(5 + 4 / 12, "feet"),
  23042. weight: math.unit(120, "lb"),
  23043. name: "Side",
  23044. image: {
  23045. source: "./media/characters/rory/side.svg",
  23046. extra: 597 / 564,
  23047. bottom: 55 / 653
  23048. }
  23049. },
  23050. backAlt: {
  23051. height: math.unit(5 + 4 / 12, "feet"),
  23052. weight: math.unit(120, "lb"),
  23053. name: "Back (Alt)",
  23054. image: {
  23055. source: "./media/characters/rory/back-alt.svg",
  23056. extra: 620 / 585,
  23057. bottom: 8.86 / 630.43
  23058. }
  23059. },
  23060. dickAlt: {
  23061. height: math.unit(0.86, "feet"),
  23062. name: "Dick (Alt)",
  23063. image: {
  23064. source: "./media/characters/rory/dick-alt.svg"
  23065. }
  23066. },
  23067. },
  23068. [
  23069. {
  23070. name: "Normal",
  23071. height: math.unit(5 + 4 / 12, "feet"),
  23072. default: true
  23073. },
  23074. {
  23075. name: "Macro",
  23076. height: math.unit(100, "feet")
  23077. },
  23078. {
  23079. name: "Macro+",
  23080. height: math.unit(140, "feet")
  23081. },
  23082. {
  23083. name: "Macro++",
  23084. height: math.unit(300, "feet")
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23090. {
  23091. front: {
  23092. height: math.unit(5 + 9 / 12, "feet"),
  23093. weight: math.unit(190, "lb"),
  23094. name: "Front",
  23095. image: {
  23096. source: "./media/characters/sprisk/front.svg",
  23097. extra: 1225 / 1180,
  23098. bottom: 42.7 / 1266.4
  23099. }
  23100. },
  23101. frontNsfw: {
  23102. height: math.unit(5 + 9 / 12, "feet"),
  23103. weight: math.unit(190, "lb"),
  23104. name: "Front (NSFW)",
  23105. image: {
  23106. source: "./media/characters/sprisk/front-nsfw.svg",
  23107. extra: 1225 / 1180,
  23108. bottom: 42.7 / 1266.4
  23109. }
  23110. },
  23111. back: {
  23112. height: math.unit(5 + 9 / 12, "feet"),
  23113. weight: math.unit(190, "lb"),
  23114. name: "Back",
  23115. image: {
  23116. source: "./media/characters/sprisk/back.svg",
  23117. extra: 1247 / 1200,
  23118. bottom: 5.6 / 1253.04
  23119. }
  23120. },
  23121. },
  23122. [
  23123. {
  23124. name: "Tiny",
  23125. height: math.unit(2, "inches")
  23126. },
  23127. {
  23128. name: "Normal",
  23129. height: math.unit(5 + 9 / 12, "feet"),
  23130. default: true
  23131. },
  23132. {
  23133. name: "Mini Macro",
  23134. height: math.unit(18, "feet")
  23135. },
  23136. {
  23137. name: "Macro",
  23138. height: math.unit(100, "feet")
  23139. },
  23140. {
  23141. name: "MACRO",
  23142. height: math.unit(50, "miles")
  23143. },
  23144. {
  23145. name: "M A C R O",
  23146. height: math.unit(300, "miles")
  23147. },
  23148. ]
  23149. ))
  23150. characterMakers.push(() => makeCharacter(
  23151. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23152. {
  23153. side: {
  23154. height: math.unit(15.6, "meters"),
  23155. weight: math.unit(700000, "kg"),
  23156. name: "Side",
  23157. image: {
  23158. source: "./media/characters/bunsen/side.svg",
  23159. extra: 1644 / 358
  23160. }
  23161. },
  23162. foot: {
  23163. height: math.unit(1.611 * 1644 / 358, "meter"),
  23164. name: "Foot",
  23165. image: {
  23166. source: "./media/characters/bunsen/foot.svg"
  23167. }
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Small",
  23173. height: math.unit(10, "feet")
  23174. },
  23175. {
  23176. name: "Normal",
  23177. height: math.unit(15.6, "meters"),
  23178. default: true
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23184. {
  23185. front: {
  23186. height: math.unit(4 + 11 / 12, "feet"),
  23187. weight: math.unit(140, "lb"),
  23188. name: "Front",
  23189. image: {
  23190. source: "./media/characters/sesh/front.svg",
  23191. extra: 3420 / 3231,
  23192. bottom: 72 / 3949.5
  23193. }
  23194. },
  23195. },
  23196. [
  23197. {
  23198. name: "Normal",
  23199. height: math.unit(4 + 11 / 12, "feet")
  23200. },
  23201. {
  23202. name: "Grown",
  23203. height: math.unit(15, "feet"),
  23204. default: true
  23205. },
  23206. {
  23207. name: "Macro",
  23208. height: math.unit(1500, "feet")
  23209. },
  23210. {
  23211. name: "Megamacro",
  23212. height: math.unit(30, "miles")
  23213. },
  23214. {
  23215. name: "Continental",
  23216. height: math.unit(3000, "miles")
  23217. },
  23218. {
  23219. name: "Gravity Mass",
  23220. height: math.unit(300000, "miles")
  23221. },
  23222. {
  23223. name: "Planet Buster",
  23224. height: math.unit(30000000, "miles")
  23225. },
  23226. {
  23227. name: "Big",
  23228. height: math.unit(3000000000, "miles")
  23229. },
  23230. ]
  23231. ))
  23232. characterMakers.push(() => makeCharacter(
  23233. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23234. {
  23235. front: {
  23236. height: math.unit(9, "feet"),
  23237. weight: math.unit(350, "lb"),
  23238. name: "Front",
  23239. image: {
  23240. source: "./media/characters/pepper/front.svg",
  23241. extra: 1448 / 1312,
  23242. bottom: 9.4 / 1457.88
  23243. }
  23244. },
  23245. back: {
  23246. height: math.unit(9, "feet"),
  23247. weight: math.unit(350, "lb"),
  23248. name: "Back",
  23249. image: {
  23250. source: "./media/characters/pepper/back.svg",
  23251. extra: 1423 / 1300,
  23252. bottom: 4.6 / 1429
  23253. }
  23254. },
  23255. maw: {
  23256. height: math.unit(0.932, "feet"),
  23257. name: "Maw",
  23258. image: {
  23259. source: "./media/characters/pepper/maw.svg"
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Normal",
  23266. height: math.unit(9, "feet"),
  23267. default: true
  23268. },
  23269. ]
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23273. {
  23274. front: {
  23275. height: math.unit(6, "feet"),
  23276. weight: math.unit(150, "lb"),
  23277. name: "Front",
  23278. image: {
  23279. source: "./media/characters/maelstrom/front.svg",
  23280. extra: 2100 / 1883,
  23281. bottom: 94 / 2196.7
  23282. }
  23283. },
  23284. },
  23285. [
  23286. {
  23287. name: "Less Kaiju",
  23288. height: math.unit(200, "feet")
  23289. },
  23290. {
  23291. name: "Kaiju",
  23292. height: math.unit(400, "feet"),
  23293. default: true
  23294. },
  23295. {
  23296. name: "Kaiju-er",
  23297. height: math.unit(600, "feet")
  23298. },
  23299. ]
  23300. ))
  23301. characterMakers.push(() => makeCharacter(
  23302. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23303. {
  23304. front: {
  23305. height: math.unit(6 + 5 / 12, "feet"),
  23306. weight: math.unit(180, "lb"),
  23307. name: "Front",
  23308. image: {
  23309. source: "./media/characters/lexir/front.svg",
  23310. extra: 180 / 172,
  23311. bottom: 12 / 192
  23312. }
  23313. },
  23314. back: {
  23315. height: math.unit(6 + 5 / 12, "feet"),
  23316. weight: math.unit(180, "lb"),
  23317. name: "Back",
  23318. image: {
  23319. source: "./media/characters/lexir/back.svg",
  23320. extra: 183.84 / 175.5,
  23321. bottom: 3.1 / 187
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Very Smal",
  23328. height: math.unit(1, "nm")
  23329. },
  23330. {
  23331. name: "Normal",
  23332. height: math.unit(6 + 5 / 12, "feet"),
  23333. default: true
  23334. },
  23335. {
  23336. name: "Macro",
  23337. height: math.unit(1, "mile")
  23338. },
  23339. {
  23340. name: "Megamacro",
  23341. height: math.unit(50, "miles")
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23347. {
  23348. front: {
  23349. height: math.unit(1.5, "meters"),
  23350. weight: math.unit(100, "lb"),
  23351. name: "Front",
  23352. image: {
  23353. source: "./media/characters/maksio/front.svg",
  23354. extra: 1549 / 1531,
  23355. bottom: 123.7 / 1674.5429
  23356. }
  23357. },
  23358. back: {
  23359. height: math.unit(1.5, "meters"),
  23360. weight: math.unit(100, "lb"),
  23361. name: "Back",
  23362. image: {
  23363. source: "./media/characters/maksio/back.svg",
  23364. extra: 1541 / 1509,
  23365. bottom: 97 / 1639
  23366. }
  23367. },
  23368. hand: {
  23369. height: math.unit(0.621, "feet"),
  23370. name: "Hand",
  23371. image: {
  23372. source: "./media/characters/maksio/hand.svg"
  23373. }
  23374. },
  23375. foot: {
  23376. height: math.unit(1.611, "feet"),
  23377. name: "Foot",
  23378. image: {
  23379. source: "./media/characters/maksio/foot.svg"
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Shrunken",
  23386. height: math.unit(10, "cm")
  23387. },
  23388. {
  23389. name: "Normal",
  23390. height: math.unit(150, "cm"),
  23391. default: true
  23392. },
  23393. ]
  23394. ))
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23397. {
  23398. front: {
  23399. height: math.unit(100, "feet"),
  23400. name: "Front",
  23401. image: {
  23402. source: "./media/characters/erza-bear/front.svg",
  23403. extra: 2449 / 2390,
  23404. bottom: 46 / 2494
  23405. }
  23406. },
  23407. back: {
  23408. height: math.unit(100, "feet"),
  23409. name: "Back",
  23410. image: {
  23411. source: "./media/characters/erza-bear/back.svg",
  23412. extra: 2489 / 2430,
  23413. bottom: 85.4 / 2480
  23414. }
  23415. },
  23416. tail: {
  23417. height: math.unit(42, "feet"),
  23418. name: "Tail",
  23419. image: {
  23420. source: "./media/characters/erza-bear/tail.svg"
  23421. }
  23422. },
  23423. tongue: {
  23424. height: math.unit(8, "feet"),
  23425. name: "Tongue",
  23426. image: {
  23427. source: "./media/characters/erza-bear/tongue.svg"
  23428. }
  23429. },
  23430. dick: {
  23431. height: math.unit(10.5, "feet"),
  23432. name: "Dick",
  23433. image: {
  23434. source: "./media/characters/erza-bear/dick.svg"
  23435. }
  23436. },
  23437. dickVertical: {
  23438. height: math.unit(16.9, "feet"),
  23439. name: "Dick (Vertical)",
  23440. image: {
  23441. source: "./media/characters/erza-bear/dick-vertical.svg"
  23442. }
  23443. },
  23444. },
  23445. [
  23446. {
  23447. name: "Macro",
  23448. height: math.unit(100, "feet"),
  23449. default: true
  23450. },
  23451. ]
  23452. ))
  23453. characterMakers.push(() => makeCharacter(
  23454. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23455. {
  23456. front: {
  23457. height: math.unit(172, "cm"),
  23458. weight: math.unit(73, "kg"),
  23459. name: "Front",
  23460. image: {
  23461. source: "./media/characters/violet-flor/front.svg",
  23462. extra: 1530 / 1442,
  23463. bottom: 61.9 / 1588.8
  23464. }
  23465. },
  23466. back: {
  23467. height: math.unit(180, "cm"),
  23468. weight: math.unit(73, "kg"),
  23469. name: "Back",
  23470. image: {
  23471. source: "./media/characters/violet-flor/back.svg",
  23472. extra: 1692 / 1630,
  23473. bottom: 20 / 1712
  23474. }
  23475. },
  23476. },
  23477. [
  23478. {
  23479. name: "Normal",
  23480. height: math.unit(172, "cm"),
  23481. default: true
  23482. },
  23483. ]
  23484. ))
  23485. characterMakers.push(() => makeCharacter(
  23486. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23487. {
  23488. front: {
  23489. height: math.unit(6, "feet"),
  23490. weight: math.unit(220, "lb"),
  23491. name: "Front",
  23492. image: {
  23493. source: "./media/characters/lynn-rhea/front.svg",
  23494. extra: 310 / 273
  23495. }
  23496. },
  23497. back: {
  23498. height: math.unit(6, "feet"),
  23499. weight: math.unit(220, "lb"),
  23500. name: "Back",
  23501. image: {
  23502. source: "./media/characters/lynn-rhea/back.svg",
  23503. extra: 310 / 273
  23504. }
  23505. },
  23506. dicks: {
  23507. height: math.unit(0.9, "feet"),
  23508. name: "Dicks",
  23509. image: {
  23510. source: "./media/characters/lynn-rhea/dicks.svg"
  23511. }
  23512. },
  23513. slit: {
  23514. height: math.unit(0.4, "feet"),
  23515. name: "Slit",
  23516. image: {
  23517. source: "./media/characters/lynn-rhea/slit.svg"
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Micro",
  23524. height: math.unit(1, "inch")
  23525. },
  23526. {
  23527. name: "Macro",
  23528. height: math.unit(60, "feet"),
  23529. default: true
  23530. },
  23531. {
  23532. name: "Megamacro",
  23533. height: math.unit(2, "miles")
  23534. },
  23535. {
  23536. name: "Gigamacro",
  23537. height: math.unit(3, "earths")
  23538. },
  23539. {
  23540. name: "Galactic",
  23541. height: math.unit(0.8, "galaxies")
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23547. {
  23548. front: {
  23549. height: math.unit(1600, "feet"),
  23550. weight: math.unit(85758785169, "kg"),
  23551. name: "Front",
  23552. image: {
  23553. source: "./media/characters/valathos/front.svg",
  23554. extra: 1451 / 1339
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Macro",
  23561. height: math.unit(1600, "feet"),
  23562. default: true
  23563. },
  23564. ]
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23568. {
  23569. front: {
  23570. height: math.unit(7 + 5 / 12, "feet"),
  23571. weight: math.unit(300, "lb"),
  23572. name: "Front",
  23573. image: {
  23574. source: "./media/characters/azula/front.svg",
  23575. extra: 3208 / 2880,
  23576. bottom: 80.2 / 3277
  23577. }
  23578. },
  23579. back: {
  23580. height: math.unit(7 + 5 / 12, "feet"),
  23581. weight: math.unit(300, "lb"),
  23582. name: "Back",
  23583. image: {
  23584. source: "./media/characters/azula/back.svg",
  23585. extra: 3169 / 2822,
  23586. bottom: 150.6 / 3321
  23587. }
  23588. },
  23589. },
  23590. [
  23591. {
  23592. name: "Normal",
  23593. height: math.unit(7 + 5 / 12, "feet"),
  23594. default: true
  23595. },
  23596. {
  23597. name: "Big",
  23598. height: math.unit(20, "feet")
  23599. },
  23600. ]
  23601. ))
  23602. characterMakers.push(() => makeCharacter(
  23603. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23604. {
  23605. front: {
  23606. height: math.unit(5 + 1 / 12, "feet"),
  23607. weight: math.unit(110, "lb"),
  23608. name: "Front",
  23609. image: {
  23610. source: "./media/characters/rupert/front.svg",
  23611. extra: 1549 / 1495,
  23612. bottom: 54.2 / 1604.4
  23613. }
  23614. },
  23615. },
  23616. [
  23617. {
  23618. name: "Normal",
  23619. height: math.unit(5 + 1 / 12, "feet"),
  23620. default: true
  23621. },
  23622. ]
  23623. ))
  23624. characterMakers.push(() => makeCharacter(
  23625. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23626. {
  23627. front: {
  23628. height: math.unit(8 + 4 / 12, "feet"),
  23629. weight: math.unit(350, "lb"),
  23630. name: "Front",
  23631. image: {
  23632. source: "./media/characters/sheera-castellar/front.svg",
  23633. extra: 1957 / 1894,
  23634. bottom: 26.97 / 1975.017
  23635. }
  23636. },
  23637. side: {
  23638. height: math.unit(8 + 4 / 12, "feet"),
  23639. weight: math.unit(350, "lb"),
  23640. name: "Side",
  23641. image: {
  23642. source: "./media/characters/sheera-castellar/side.svg",
  23643. extra: 1957 / 1894
  23644. }
  23645. },
  23646. back: {
  23647. height: math.unit(8 + 4 / 12, "feet"),
  23648. weight: math.unit(350, "lb"),
  23649. name: "Back",
  23650. image: {
  23651. source: "./media/characters/sheera-castellar/back.svg",
  23652. extra: 1957 / 1894
  23653. }
  23654. },
  23655. angled: {
  23656. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23657. weight: math.unit(350, "lb"),
  23658. name: "Angled",
  23659. image: {
  23660. source: "./media/characters/sheera-castellar/angled.svg",
  23661. extra: 1807 / 1707,
  23662. bottom: 68 / 1875
  23663. }
  23664. },
  23665. genitals: {
  23666. height: math.unit(2.2, "feet"),
  23667. name: "Genitals",
  23668. image: {
  23669. source: "./media/characters/sheera-castellar/genitals.svg"
  23670. }
  23671. },
  23672. taur: {
  23673. height: math.unit(10 + 6/12, "feet"),
  23674. name: "Taur",
  23675. image: {
  23676. source: "./media/characters/sheera-castellar/taur.svg",
  23677. extra: 2017/1909,
  23678. bottom: 185/2202
  23679. }
  23680. },
  23681. },
  23682. [
  23683. {
  23684. name: "Normal",
  23685. height: math.unit(8 + 4 / 12, "feet")
  23686. },
  23687. {
  23688. name: "Macro",
  23689. height: math.unit(150, "feet"),
  23690. default: true
  23691. },
  23692. {
  23693. name: "Macro+",
  23694. height: math.unit(800, "feet")
  23695. },
  23696. ]
  23697. ))
  23698. characterMakers.push(() => makeCharacter(
  23699. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23700. {
  23701. front: {
  23702. height: math.unit(6, "feet"),
  23703. weight: math.unit(150, "lb"),
  23704. name: "Front",
  23705. image: {
  23706. source: "./media/characters/jaipur/front.svg",
  23707. extra: 3860 / 3731,
  23708. bottom: 287 / 4140
  23709. }
  23710. },
  23711. back: {
  23712. height: math.unit(6, "feet"),
  23713. weight: math.unit(150, "lb"),
  23714. name: "Back",
  23715. image: {
  23716. source: "./media/characters/jaipur/back.svg",
  23717. extra: 4060 / 3930,
  23718. bottom: 151 / 4200
  23719. }
  23720. },
  23721. },
  23722. [
  23723. {
  23724. name: "Normal",
  23725. height: math.unit(1.85, "meters"),
  23726. default: true
  23727. },
  23728. {
  23729. name: "Macro",
  23730. height: math.unit(150, "meters")
  23731. },
  23732. {
  23733. name: "Macro+",
  23734. height: math.unit(0.5, "miles")
  23735. },
  23736. {
  23737. name: "Macro++",
  23738. height: math.unit(2.5, "miles")
  23739. },
  23740. {
  23741. name: "Macro+++",
  23742. height: math.unit(12, "miles")
  23743. },
  23744. {
  23745. name: "Macro++++",
  23746. height: math.unit(120, "miles")
  23747. },
  23748. {
  23749. name: "Macro+++++",
  23750. height: math.unit(1200, "miles")
  23751. },
  23752. ]
  23753. ))
  23754. characterMakers.push(() => makeCharacter(
  23755. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23756. {
  23757. front: {
  23758. height: math.unit(6, "feet"),
  23759. weight: math.unit(150, "lb"),
  23760. name: "Front",
  23761. image: {
  23762. source: "./media/characters/sheila-wolf/front.svg",
  23763. extra: 1931 / 1808,
  23764. bottom: 29.5 / 1960
  23765. }
  23766. },
  23767. dick: {
  23768. height: math.unit(1.464, "feet"),
  23769. name: "Dick",
  23770. image: {
  23771. source: "./media/characters/sheila-wolf/dick.svg"
  23772. }
  23773. },
  23774. muzzle: {
  23775. height: math.unit(0.513, "feet"),
  23776. name: "Muzzle",
  23777. image: {
  23778. source: "./media/characters/sheila-wolf/muzzle.svg"
  23779. }
  23780. },
  23781. },
  23782. [
  23783. {
  23784. name: "Macro",
  23785. height: math.unit(70, "feet"),
  23786. default: true
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23792. {
  23793. front: {
  23794. height: math.unit(32, "meters"),
  23795. weight: math.unit(300000, "kg"),
  23796. name: "Front",
  23797. image: {
  23798. source: "./media/characters/almor/front.svg",
  23799. extra: 1408 / 1322,
  23800. bottom: 94.6 / 1506.5
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Macro",
  23807. height: math.unit(32, "meters"),
  23808. default: true
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23814. {
  23815. front: {
  23816. height: math.unit(7, "feet"),
  23817. weight: math.unit(200, "lb"),
  23818. name: "Front",
  23819. image: {
  23820. source: "./media/characters/silver/front.svg",
  23821. extra: 472.1 / 450.5,
  23822. bottom: 26.5 / 499.424
  23823. }
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Normal",
  23829. height: math.unit(7, "feet"),
  23830. default: true
  23831. },
  23832. {
  23833. name: "Macro",
  23834. height: math.unit(800, "feet")
  23835. },
  23836. {
  23837. name: "Megamacro",
  23838. height: math.unit(250, "miles")
  23839. },
  23840. ]
  23841. ))
  23842. characterMakers.push(() => makeCharacter(
  23843. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23844. {
  23845. front: {
  23846. height: math.unit(6, "feet"),
  23847. weight: math.unit(150, "lb"),
  23848. name: "Front",
  23849. image: {
  23850. source: "./media/characters/pliskin/front.svg",
  23851. extra: 1469 / 1359,
  23852. bottom: 70 / 1540
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Micro",
  23859. height: math.unit(3, "inches")
  23860. },
  23861. {
  23862. name: "Normal",
  23863. height: math.unit(5 + 11 / 12, "feet"),
  23864. default: true
  23865. },
  23866. {
  23867. name: "Macro",
  23868. height: math.unit(120, "feet")
  23869. },
  23870. ]
  23871. ))
  23872. characterMakers.push(() => makeCharacter(
  23873. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23874. {
  23875. front: {
  23876. height: math.unit(6, "feet"),
  23877. weight: math.unit(150, "lb"),
  23878. name: "Front",
  23879. image: {
  23880. source: "./media/characters/sammy/front.svg",
  23881. extra: 1193 / 1089,
  23882. bottom: 30.5 / 1226
  23883. }
  23884. },
  23885. },
  23886. [
  23887. {
  23888. name: "Macro",
  23889. height: math.unit(1700, "feet"),
  23890. default: true
  23891. },
  23892. {
  23893. name: "Examacro",
  23894. height: math.unit(2.5e9, "lightyears")
  23895. },
  23896. ]
  23897. ))
  23898. characterMakers.push(() => makeCharacter(
  23899. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23900. {
  23901. front: {
  23902. height: math.unit(21, "meters"),
  23903. weight: math.unit(12, "tonnes"),
  23904. name: "Front",
  23905. image: {
  23906. source: "./media/characters/kuru/front.svg",
  23907. extra: 4301 / 3785,
  23908. bottom: 371.3 / 4691
  23909. }
  23910. },
  23911. },
  23912. [
  23913. {
  23914. name: "Macro",
  23915. height: math.unit(21, "meters"),
  23916. default: true
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(23, "meters"),
  23925. weight: math.unit(12.2, "tonnes"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/rakka/front.svg",
  23929. extra: 4670 / 4169,
  23930. bottom: 301 / 4968.7
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Macro",
  23937. height: math.unit(23, "meters"),
  23938. default: true
  23939. },
  23940. ]
  23941. ))
  23942. characterMakers.push(() => makeCharacter(
  23943. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23944. {
  23945. front: {
  23946. height: math.unit(6, "feet"),
  23947. weight: math.unit(150, "lb"),
  23948. name: "Front",
  23949. image: {
  23950. source: "./media/characters/rhys-feline/front.svg",
  23951. extra: 2488 / 2308,
  23952. bottom: 35.67 / 2519.19
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Really Small",
  23959. height: math.unit(1, "nm")
  23960. },
  23961. {
  23962. name: "Micro",
  23963. height: math.unit(4, "inches")
  23964. },
  23965. {
  23966. name: "Normal",
  23967. height: math.unit(4 + 10 / 12, "feet"),
  23968. default: true
  23969. },
  23970. {
  23971. name: "Macro",
  23972. height: math.unit(100, "feet")
  23973. },
  23974. {
  23975. name: "Megamacto",
  23976. height: math.unit(50, "miles")
  23977. },
  23978. ]
  23979. ))
  23980. characterMakers.push(() => makeCharacter(
  23981. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23982. {
  23983. side: {
  23984. height: math.unit(30, "feet"),
  23985. weight: math.unit(35000, "kg"),
  23986. name: "Side",
  23987. image: {
  23988. source: "./media/characters/alydar/side.svg",
  23989. extra: 234 / 222,
  23990. bottom: 6.5 / 241
  23991. }
  23992. },
  23993. front: {
  23994. height: math.unit(30, "feet"),
  23995. weight: math.unit(35000, "kg"),
  23996. name: "Front",
  23997. image: {
  23998. source: "./media/characters/alydar/front.svg",
  23999. extra: 223.37 / 210.2,
  24000. bottom: 22.3 / 246.76
  24001. }
  24002. },
  24003. top: {
  24004. height: math.unit(64.54, "feet"),
  24005. weight: math.unit(35000, "kg"),
  24006. name: "Top",
  24007. image: {
  24008. source: "./media/characters/alydar/top.svg"
  24009. }
  24010. },
  24011. anthro: {
  24012. height: math.unit(30, "feet"),
  24013. weight: math.unit(9000, "kg"),
  24014. name: "Anthro",
  24015. image: {
  24016. source: "./media/characters/alydar/anthro.svg",
  24017. extra: 432 / 421,
  24018. bottom: 7.18 / 440
  24019. }
  24020. },
  24021. maw: {
  24022. height: math.unit(11.693, "feet"),
  24023. name: "Maw",
  24024. image: {
  24025. source: "./media/characters/alydar/maw.svg"
  24026. }
  24027. },
  24028. head: {
  24029. height: math.unit(11.693, "feet"),
  24030. name: "Head",
  24031. image: {
  24032. source: "./media/characters/alydar/head.svg"
  24033. }
  24034. },
  24035. headAlt: {
  24036. height: math.unit(12.861, "feet"),
  24037. name: "Head (Alt)",
  24038. image: {
  24039. source: "./media/characters/alydar/head-alt.svg"
  24040. }
  24041. },
  24042. wing: {
  24043. height: math.unit(20.712, "feet"),
  24044. name: "Wing",
  24045. image: {
  24046. source: "./media/characters/alydar/wing.svg"
  24047. }
  24048. },
  24049. wingFeather: {
  24050. height: math.unit(9.662, "feet"),
  24051. name: "Wing Feather",
  24052. image: {
  24053. source: "./media/characters/alydar/wing-feather.svg"
  24054. }
  24055. },
  24056. countourFeather: {
  24057. height: math.unit(4.154, "feet"),
  24058. name: "Contour Feather",
  24059. image: {
  24060. source: "./media/characters/alydar/contour-feather.svg"
  24061. }
  24062. },
  24063. },
  24064. [
  24065. {
  24066. name: "Diplomatic",
  24067. height: math.unit(13, "feet"),
  24068. default: true
  24069. },
  24070. {
  24071. name: "Small",
  24072. height: math.unit(30, "feet")
  24073. },
  24074. {
  24075. name: "Normal",
  24076. height: math.unit(95, "feet"),
  24077. default: true
  24078. },
  24079. {
  24080. name: "Large",
  24081. height: math.unit(285, "feet")
  24082. },
  24083. {
  24084. name: "Incomprehensible",
  24085. height: math.unit(450, "megameters")
  24086. },
  24087. ]
  24088. ))
  24089. characterMakers.push(() => makeCharacter(
  24090. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24091. {
  24092. side: {
  24093. height: math.unit(11, "feet"),
  24094. weight: math.unit(1750, "kg"),
  24095. name: "Side",
  24096. image: {
  24097. source: "./media/characters/selicia/side.svg",
  24098. extra: 440 / 396,
  24099. bottom: 24.8 / 465.979
  24100. }
  24101. },
  24102. maw: {
  24103. height: math.unit(4.665, "feet"),
  24104. name: "Maw",
  24105. image: {
  24106. source: "./media/characters/selicia/maw.svg"
  24107. }
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Normal",
  24113. height: math.unit(11, "feet"),
  24114. default: true
  24115. },
  24116. ]
  24117. ))
  24118. characterMakers.push(() => makeCharacter(
  24119. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24120. {
  24121. side: {
  24122. height: math.unit(2 + 6 / 12, "feet"),
  24123. weight: math.unit(30, "lb"),
  24124. name: "Side",
  24125. image: {
  24126. source: "./media/characters/layla/side.svg",
  24127. extra: 244 / 188,
  24128. bottom: 18.2 / 262.1
  24129. }
  24130. },
  24131. back: {
  24132. height: math.unit(2 + 6 / 12, "feet"),
  24133. weight: math.unit(30, "lb"),
  24134. name: "Back",
  24135. image: {
  24136. source: "./media/characters/layla/back.svg",
  24137. extra: 308 / 241.5,
  24138. bottom: 8.9 / 316.8
  24139. }
  24140. },
  24141. cumming: {
  24142. height: math.unit(2 + 6 / 12, "feet"),
  24143. weight: math.unit(30, "lb"),
  24144. name: "Cumming",
  24145. image: {
  24146. source: "./media/characters/layla/cumming.svg",
  24147. extra: 342 / 279,
  24148. bottom: 595 / 938
  24149. }
  24150. },
  24151. dickFlaccid: {
  24152. height: math.unit(2.595, "feet"),
  24153. name: "Flaccid Genitals",
  24154. image: {
  24155. source: "./media/characters/layla/dick-flaccid.svg"
  24156. }
  24157. },
  24158. dickErect: {
  24159. height: math.unit(2.359, "feet"),
  24160. name: "Erect Genitals",
  24161. image: {
  24162. source: "./media/characters/layla/dick-erect.svg"
  24163. }
  24164. },
  24165. dragon: {
  24166. height: math.unit(40, "feet"),
  24167. name: "Dragon",
  24168. image: {
  24169. source: "./media/characters/layla/dragon.svg",
  24170. extra: 610/535,
  24171. bottom: 367/977
  24172. }
  24173. },
  24174. taur: {
  24175. height: math.unit(30, "feet"),
  24176. name: "Taur",
  24177. image: {
  24178. source: "./media/characters/layla/taur.svg",
  24179. extra: 1268/1199,
  24180. bottom: 112/1380
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Micro",
  24187. height: math.unit(1, "inch")
  24188. },
  24189. {
  24190. name: "Small",
  24191. height: math.unit(1, "foot")
  24192. },
  24193. {
  24194. name: "Normal",
  24195. height: math.unit(2 + 6 / 12, "feet"),
  24196. default: true
  24197. },
  24198. {
  24199. name: "Macro",
  24200. height: math.unit(200, "feet")
  24201. },
  24202. {
  24203. name: "Megamacro",
  24204. height: math.unit(1000, "miles")
  24205. },
  24206. {
  24207. name: "Planetary",
  24208. height: math.unit(8000, "miles")
  24209. },
  24210. {
  24211. name: "True Layla",
  24212. height: math.unit(200000 * 7, "multiverses")
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24218. {
  24219. back: {
  24220. height: math.unit(10.5, "feet"),
  24221. weight: math.unit(800, "lb"),
  24222. name: "Back",
  24223. image: {
  24224. source: "./media/characters/knox/back.svg",
  24225. extra: 1486 / 1089,
  24226. bottom: 107 / 1601.4
  24227. }
  24228. },
  24229. side: {
  24230. height: math.unit(10.5, "feet"),
  24231. weight: math.unit(800, "lb"),
  24232. name: "Side",
  24233. image: {
  24234. source: "./media/characters/knox/side.svg",
  24235. extra: 244 / 218,
  24236. bottom: 14 / 260
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Compact",
  24243. height: math.unit(10.5, "feet"),
  24244. default: true
  24245. },
  24246. {
  24247. name: "Dynamax",
  24248. height: math.unit(210, "feet")
  24249. },
  24250. {
  24251. name: "Full Macro",
  24252. height: math.unit(850, "feet")
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24258. {
  24259. front: {
  24260. height: math.unit(28, "feet"),
  24261. weight: math.unit(10500, "lb"),
  24262. name: "Front",
  24263. image: {
  24264. source: "./media/characters/kayda/front.svg",
  24265. extra: 1536 / 1428,
  24266. bottom: 68.7 / 1603
  24267. }
  24268. },
  24269. back: {
  24270. height: math.unit(28, "feet"),
  24271. weight: math.unit(10500, "lb"),
  24272. name: "Back",
  24273. image: {
  24274. source: "./media/characters/kayda/back.svg",
  24275. extra: 1557 / 1464,
  24276. bottom: 39.5 / 1597.49
  24277. }
  24278. },
  24279. dick: {
  24280. height: math.unit(3.858, "feet"),
  24281. name: "Dick",
  24282. image: {
  24283. source: "./media/characters/kayda/dick.svg"
  24284. }
  24285. },
  24286. },
  24287. [
  24288. {
  24289. name: "Macro",
  24290. height: math.unit(28, "feet"),
  24291. default: true
  24292. },
  24293. ]
  24294. ))
  24295. characterMakers.push(() => makeCharacter(
  24296. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24297. {
  24298. front: {
  24299. height: math.unit(10 + 11 / 12, "feet"),
  24300. weight: math.unit(1400, "lb"),
  24301. name: "Front",
  24302. image: {
  24303. source: "./media/characters/brian/front.svg",
  24304. extra: 737 / 692,
  24305. bottom: 55.4 / 785
  24306. }
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Normal",
  24312. height: math.unit(10 + 11 / 12, "feet"),
  24313. default: true
  24314. },
  24315. ]
  24316. ))
  24317. characterMakers.push(() => makeCharacter(
  24318. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24319. {
  24320. front: {
  24321. height: math.unit(5 + 8 / 12, "feet"),
  24322. weight: math.unit(140, "lb"),
  24323. name: "Front",
  24324. image: {
  24325. source: "./media/characters/khemri/front.svg",
  24326. extra: 4780 / 4059,
  24327. bottom: 80.1 / 4859.25
  24328. }
  24329. },
  24330. },
  24331. [
  24332. {
  24333. name: "Micro",
  24334. height: math.unit(6, "inches")
  24335. },
  24336. {
  24337. name: "Normal",
  24338. height: math.unit(5 + 8 / 12, "feet"),
  24339. default: true
  24340. },
  24341. ]
  24342. ))
  24343. characterMakers.push(() => makeCharacter(
  24344. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24345. {
  24346. front: {
  24347. height: math.unit(13, "feet"),
  24348. weight: math.unit(1700, "lb"),
  24349. name: "Front",
  24350. image: {
  24351. source: "./media/characters/felix-braveheart/front.svg",
  24352. extra: 1222 / 1157,
  24353. bottom: 53.2 / 1280
  24354. }
  24355. },
  24356. back: {
  24357. height: math.unit(13, "feet"),
  24358. weight: math.unit(1700, "lb"),
  24359. name: "Back",
  24360. image: {
  24361. source: "./media/characters/felix-braveheart/back.svg",
  24362. extra: 1277 / 1203,
  24363. bottom: 50.2 / 1327
  24364. }
  24365. },
  24366. feral: {
  24367. height: math.unit(6, "feet"),
  24368. weight: math.unit(400, "lb"),
  24369. name: "Feral",
  24370. image: {
  24371. source: "./media/characters/felix-braveheart/feral.svg",
  24372. extra: 682 / 625,
  24373. bottom: 6.9 / 688
  24374. }
  24375. },
  24376. },
  24377. [
  24378. {
  24379. name: "Normal",
  24380. height: math.unit(13, "feet"),
  24381. default: true
  24382. },
  24383. ]
  24384. ))
  24385. characterMakers.push(() => makeCharacter(
  24386. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24387. {
  24388. side: {
  24389. height: math.unit(5 + 11 / 12, "feet"),
  24390. weight: math.unit(1400, "lb"),
  24391. name: "Side",
  24392. image: {
  24393. source: "./media/characters/shadow-blade/side.svg",
  24394. extra: 1726 / 1267,
  24395. bottom: 58.4 / 1785
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Normal",
  24402. height: math.unit(5 + 11 / 12, "feet"),
  24403. default: true
  24404. },
  24405. ]
  24406. ))
  24407. characterMakers.push(() => makeCharacter(
  24408. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24409. {
  24410. front: {
  24411. height: math.unit(1 + 6 / 12, "feet"),
  24412. weight: math.unit(25, "lb"),
  24413. name: "Front",
  24414. image: {
  24415. source: "./media/characters/karla-halldor/front.svg",
  24416. extra: 1459 / 1383,
  24417. bottom: 12 / 1472
  24418. }
  24419. },
  24420. },
  24421. [
  24422. {
  24423. name: "Normal",
  24424. height: math.unit(1 + 6 / 12, "feet"),
  24425. default: true
  24426. },
  24427. ]
  24428. ))
  24429. characterMakers.push(() => makeCharacter(
  24430. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24431. {
  24432. front: {
  24433. height: math.unit(6 + 2 / 12, "feet"),
  24434. weight: math.unit(160, "lb"),
  24435. name: "Front",
  24436. image: {
  24437. source: "./media/characters/ariam/front.svg",
  24438. extra: 1073/976,
  24439. bottom: 52/1125
  24440. }
  24441. },
  24442. back: {
  24443. height: math.unit(6 + 2/12, "feet"),
  24444. weight: math.unit(160, "lb"),
  24445. name: "Back",
  24446. image: {
  24447. source: "./media/characters/ariam/back.svg",
  24448. extra: 1103/1023,
  24449. bottom: 9/1112
  24450. }
  24451. },
  24452. dressed: {
  24453. height: math.unit(6 + 2/12, "feet"),
  24454. weight: math.unit(160, "lb"),
  24455. name: "Dressed",
  24456. image: {
  24457. source: "./media/characters/ariam/dressed.svg",
  24458. extra: 1099/1009,
  24459. bottom: 25/1124
  24460. }
  24461. },
  24462. squatting: {
  24463. height: math.unit(4.1, "feet"),
  24464. weight: math.unit(160, "lb"),
  24465. name: "Squatting",
  24466. image: {
  24467. source: "./media/characters/ariam/squatting.svg",
  24468. extra: 2617 / 2112,
  24469. bottom: 61.2 / 2681,
  24470. }
  24471. },
  24472. },
  24473. [
  24474. {
  24475. name: "Normal",
  24476. height: math.unit(6 + 2 / 12, "feet"),
  24477. default: true
  24478. },
  24479. {
  24480. name: "Normal+",
  24481. height: math.unit(4, "meters")
  24482. },
  24483. {
  24484. name: "Macro",
  24485. height: math.unit(50, "meters")
  24486. },
  24487. {
  24488. name: "Macro+",
  24489. height: math.unit(100, "meters")
  24490. },
  24491. {
  24492. name: "Megamacro",
  24493. height: math.unit(20, "km")
  24494. },
  24495. {
  24496. name: "Caretaker",
  24497. height: math.unit(444, "megameters")
  24498. },
  24499. ]
  24500. ))
  24501. characterMakers.push(() => makeCharacter(
  24502. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24503. {
  24504. front: {
  24505. height: math.unit(1.67, "meters"),
  24506. weight: math.unit(140, "lb"),
  24507. name: "Front",
  24508. image: {
  24509. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24510. extra: 438 / 410,
  24511. bottom: 0.75 / 439
  24512. }
  24513. },
  24514. },
  24515. [
  24516. {
  24517. name: "Shrunken",
  24518. height: math.unit(7.6, "cm")
  24519. },
  24520. {
  24521. name: "Human Scale",
  24522. height: math.unit(1.67, "meters")
  24523. },
  24524. {
  24525. name: "Wolxi Scale",
  24526. height: math.unit(36.7, "meters"),
  24527. default: true
  24528. },
  24529. ]
  24530. ))
  24531. characterMakers.push(() => makeCharacter(
  24532. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24533. {
  24534. front: {
  24535. height: math.unit(1.73, "meters"),
  24536. weight: math.unit(240, "lb"),
  24537. name: "Front",
  24538. image: {
  24539. source: "./media/characters/izue-two-mothers/front.svg",
  24540. extra: 469 / 437,
  24541. bottom: 1.24 / 470.6
  24542. }
  24543. },
  24544. },
  24545. [
  24546. {
  24547. name: "Shrunken",
  24548. height: math.unit(7.86, "cm")
  24549. },
  24550. {
  24551. name: "Human Scale",
  24552. height: math.unit(1.73, "meters")
  24553. },
  24554. {
  24555. name: "Wolxi Scale",
  24556. height: math.unit(38, "meters"),
  24557. default: true
  24558. },
  24559. ]
  24560. ))
  24561. characterMakers.push(() => makeCharacter(
  24562. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24563. {
  24564. front: {
  24565. height: math.unit(1.55, "meters"),
  24566. weight: math.unit(120, "lb"),
  24567. name: "Front",
  24568. image: {
  24569. source: "./media/characters/teeku-love-shack/front.svg",
  24570. extra: 387 / 362,
  24571. bottom: 1.51 / 388
  24572. }
  24573. },
  24574. },
  24575. [
  24576. {
  24577. name: "Shrunken",
  24578. height: math.unit(7, "cm")
  24579. },
  24580. {
  24581. name: "Human Scale",
  24582. height: math.unit(1.55, "meters")
  24583. },
  24584. {
  24585. name: "Wolxi Scale",
  24586. height: math.unit(34.1, "meters"),
  24587. default: true
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(1.83, "meters"),
  24596. weight: math.unit(135, "lb"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/dejma-the-red/front.svg",
  24600. extra: 480 / 458,
  24601. bottom: 1.8 / 482
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Shrunken",
  24608. height: math.unit(8.3, "cm")
  24609. },
  24610. {
  24611. name: "Human Scale",
  24612. height: math.unit(1.83, "meters")
  24613. },
  24614. {
  24615. name: "Wolxi Scale",
  24616. height: math.unit(40, "meters"),
  24617. default: true
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24623. {
  24624. front: {
  24625. height: math.unit(1.78, "meters"),
  24626. weight: math.unit(65, "kg"),
  24627. name: "Front",
  24628. image: {
  24629. source: "./media/characters/aki/front.svg",
  24630. extra: 452 / 415
  24631. }
  24632. },
  24633. frontNsfw: {
  24634. height: math.unit(1.78, "meters"),
  24635. weight: math.unit(65, "kg"),
  24636. name: "Front (NSFW)",
  24637. image: {
  24638. source: "./media/characters/aki/front-nsfw.svg",
  24639. extra: 452 / 415
  24640. }
  24641. },
  24642. back: {
  24643. height: math.unit(1.78, "meters"),
  24644. weight: math.unit(65, "kg"),
  24645. name: "Back",
  24646. image: {
  24647. source: "./media/characters/aki/back.svg",
  24648. extra: 452 / 415
  24649. }
  24650. },
  24651. rump: {
  24652. height: math.unit(2.05, "feet"),
  24653. name: "Rump",
  24654. image: {
  24655. source: "./media/characters/aki/rump.svg"
  24656. }
  24657. },
  24658. dick: {
  24659. height: math.unit(0.95, "feet"),
  24660. name: "Dick",
  24661. image: {
  24662. source: "./media/characters/aki/dick.svg"
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Micro",
  24669. height: math.unit(15, "cm")
  24670. },
  24671. {
  24672. name: "Normal",
  24673. height: math.unit(178, "cm"),
  24674. default: true
  24675. },
  24676. {
  24677. name: "Macro",
  24678. height: math.unit(214, "m")
  24679. },
  24680. {
  24681. name: "Macro+",
  24682. height: math.unit(534, "m")
  24683. },
  24684. ]
  24685. ))
  24686. characterMakers.push(() => makeCharacter(
  24687. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24688. {
  24689. front: {
  24690. height: math.unit(5 + 5 / 12, "feet"),
  24691. weight: math.unit(120, "lb"),
  24692. name: "Front",
  24693. image: {
  24694. source: "./media/characters/ari/front.svg",
  24695. extra: 714.5 / 682,
  24696. bottom: 8 / 722.5
  24697. }
  24698. },
  24699. },
  24700. [
  24701. {
  24702. name: "Normal",
  24703. height: math.unit(5 + 5 / 12, "feet")
  24704. },
  24705. {
  24706. name: "Macro",
  24707. height: math.unit(100, "feet"),
  24708. default: true
  24709. },
  24710. {
  24711. name: "Megamacro",
  24712. height: math.unit(100, "miles")
  24713. },
  24714. {
  24715. name: "Gigamacro",
  24716. height: math.unit(80000, "miles")
  24717. },
  24718. ]
  24719. ))
  24720. characterMakers.push(() => makeCharacter(
  24721. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24722. {
  24723. side: {
  24724. height: math.unit(9, "feet"),
  24725. weight: math.unit(400, "kg"),
  24726. name: "Side",
  24727. image: {
  24728. source: "./media/characters/bolt/side.svg",
  24729. extra: 1126 / 896,
  24730. bottom: 60 / 1187.3,
  24731. }
  24732. },
  24733. },
  24734. [
  24735. {
  24736. name: "Micro",
  24737. height: math.unit(5, "inches")
  24738. },
  24739. {
  24740. name: "Normal",
  24741. height: math.unit(9, "feet"),
  24742. default: true
  24743. },
  24744. {
  24745. name: "Macro",
  24746. height: math.unit(700, "feet")
  24747. },
  24748. {
  24749. name: "Max Size",
  24750. height: math.unit(1.52e22, "yottameters")
  24751. },
  24752. ]
  24753. ))
  24754. characterMakers.push(() => makeCharacter(
  24755. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24756. {
  24757. front: {
  24758. height: math.unit(4.53, "meters"),
  24759. weight: math.unit(3, "tons"),
  24760. name: "Front",
  24761. image: {
  24762. source: "./media/characters/draekon-sylviar/front.svg",
  24763. extra: 1228 / 1068,
  24764. bottom: 41 / 1270
  24765. }
  24766. },
  24767. tail: {
  24768. height: math.unit(1.772, "meter"),
  24769. name: "Tail",
  24770. image: {
  24771. source: "./media/characters/draekon-sylviar/tail.svg"
  24772. }
  24773. },
  24774. head: {
  24775. height: math.unit(1.331, "meter"),
  24776. name: "Head",
  24777. image: {
  24778. source: "./media/characters/draekon-sylviar/head.svg"
  24779. }
  24780. },
  24781. hand: {
  24782. height: math.unit(0.564, "meter"),
  24783. name: "Hand",
  24784. image: {
  24785. source: "./media/characters/draekon-sylviar/hand.svg"
  24786. }
  24787. },
  24788. foot: {
  24789. height: math.unit(0.621, "meter"),
  24790. name: "Foot",
  24791. image: {
  24792. source: "./media/characters/draekon-sylviar/foot.svg",
  24793. bottom: 32 / 324
  24794. }
  24795. },
  24796. dick: {
  24797. height: math.unit(61, "cm"),
  24798. name: "Dick",
  24799. image: {
  24800. source: "./media/characters/draekon-sylviar/dick.svg"
  24801. }
  24802. },
  24803. dickseparated: {
  24804. height: math.unit(61, "cm"),
  24805. name: "Dick-separated",
  24806. image: {
  24807. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Small",
  24814. height: math.unit(4.53 / 2, "meters"),
  24815. default: true
  24816. },
  24817. {
  24818. name: "Normal",
  24819. height: math.unit(4.53, "meters"),
  24820. default: true
  24821. },
  24822. {
  24823. name: "Large",
  24824. height: math.unit(4.53 * 2, "meters"),
  24825. },
  24826. ]
  24827. ))
  24828. characterMakers.push(() => makeCharacter(
  24829. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24830. {
  24831. front: {
  24832. height: math.unit(6 + 2 / 12, "feet"),
  24833. weight: math.unit(180, "lb"),
  24834. name: "Front",
  24835. image: {
  24836. source: "./media/characters/brawler/front.svg",
  24837. extra: 3301 / 3027,
  24838. bottom: 138 / 3439
  24839. }
  24840. },
  24841. },
  24842. [
  24843. {
  24844. name: "Normal",
  24845. height: math.unit(6 + 2 / 12, "feet"),
  24846. default: true
  24847. },
  24848. ]
  24849. ))
  24850. characterMakers.push(() => makeCharacter(
  24851. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24852. {
  24853. front: {
  24854. height: math.unit(11, "feet"),
  24855. weight: math.unit(1000, "lb"),
  24856. name: "Front",
  24857. image: {
  24858. source: "./media/characters/alex/front.svg",
  24859. bottom: 44.5 / 620
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Micro",
  24866. height: math.unit(5, "inches")
  24867. },
  24868. {
  24869. name: "Normal",
  24870. height: math.unit(11, "feet"),
  24871. default: true
  24872. },
  24873. {
  24874. name: "Macro",
  24875. height: math.unit(9.5e9, "feet")
  24876. },
  24877. {
  24878. name: "Max Size",
  24879. height: math.unit(1.4e283, "yottameters")
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24885. {
  24886. female: {
  24887. height: math.unit(29.9, "m"),
  24888. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24889. name: "Female",
  24890. image: {
  24891. source: "./media/characters/zenari/female.svg",
  24892. extra: 3281.6 / 3217,
  24893. bottom: 72.2 / 3353
  24894. }
  24895. },
  24896. male: {
  24897. height: math.unit(27.7, "m"),
  24898. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24899. name: "Male",
  24900. image: {
  24901. source: "./media/characters/zenari/male.svg",
  24902. extra: 3008 / 2991,
  24903. bottom: 54.6 / 3069
  24904. }
  24905. },
  24906. },
  24907. [
  24908. {
  24909. name: "Macro",
  24910. height: math.unit(29.7, "meters"),
  24911. default: true
  24912. },
  24913. ]
  24914. ))
  24915. characterMakers.push(() => makeCharacter(
  24916. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24917. {
  24918. female: {
  24919. height: math.unit(23.8, "m"),
  24920. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24921. name: "Female",
  24922. image: {
  24923. source: "./media/characters/mactarian/female.svg",
  24924. extra: 2662 / 2569,
  24925. bottom: 73 / 2736
  24926. }
  24927. },
  24928. male: {
  24929. height: math.unit(23.8, "m"),
  24930. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24931. name: "Male",
  24932. image: {
  24933. source: "./media/characters/mactarian/male.svg",
  24934. extra: 2673 / 2600,
  24935. bottom: 76 / 2750
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Macro",
  24942. height: math.unit(23.8, "meters"),
  24943. default: true
  24944. },
  24945. ]
  24946. ))
  24947. characterMakers.push(() => makeCharacter(
  24948. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24949. {
  24950. female: {
  24951. height: math.unit(19.3, "m"),
  24952. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24953. name: "Female",
  24954. image: {
  24955. source: "./media/characters/umok/female.svg",
  24956. extra: 2186 / 2078,
  24957. bottom: 87 / 2277
  24958. }
  24959. },
  24960. male: {
  24961. height: math.unit(19.5, "m"),
  24962. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24963. name: "Male",
  24964. image: {
  24965. source: "./media/characters/umok/male.svg",
  24966. extra: 2233 / 2140,
  24967. bottom: 24.4 / 2258
  24968. }
  24969. },
  24970. },
  24971. [
  24972. {
  24973. name: "Macro",
  24974. height: math.unit(19.3, "meters"),
  24975. default: true
  24976. },
  24977. ]
  24978. ))
  24979. characterMakers.push(() => makeCharacter(
  24980. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24981. {
  24982. female: {
  24983. height: math.unit(26.15, "m"),
  24984. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24985. name: "Female",
  24986. image: {
  24987. source: "./media/characters/joraxian/female.svg",
  24988. extra: 2912 / 2824,
  24989. bottom: 36 / 2956
  24990. }
  24991. },
  24992. male: {
  24993. height: math.unit(25.4, "m"),
  24994. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24995. name: "Male",
  24996. image: {
  24997. source: "./media/characters/joraxian/male.svg",
  24998. extra: 2877 / 2721,
  24999. bottom: 82 / 2967
  25000. }
  25001. },
  25002. },
  25003. [
  25004. {
  25005. name: "Macro",
  25006. height: math.unit(26.15, "meters"),
  25007. default: true
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25013. {
  25014. female: {
  25015. height: math.unit(21.6, "m"),
  25016. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25017. name: "Female",
  25018. image: {
  25019. source: "./media/characters/sthara/female.svg",
  25020. extra: 2516 / 2347,
  25021. bottom: 21.5 / 2537
  25022. }
  25023. },
  25024. male: {
  25025. height: math.unit(24, "m"),
  25026. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25027. name: "Male",
  25028. image: {
  25029. source: "./media/characters/sthara/male.svg",
  25030. extra: 2732 / 2607,
  25031. bottom: 23 / 2732
  25032. }
  25033. },
  25034. },
  25035. [
  25036. {
  25037. name: "Macro",
  25038. height: math.unit(21.6, "meters"),
  25039. default: true
  25040. },
  25041. ]
  25042. ))
  25043. characterMakers.push(() => makeCharacter(
  25044. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25045. {
  25046. front: {
  25047. height: math.unit(6 + 4 / 12, "feet"),
  25048. weight: math.unit(175, "lb"),
  25049. name: "Front",
  25050. image: {
  25051. source: "./media/characters/luka-bryzant/front.svg",
  25052. extra: 311 / 289,
  25053. bottom: 4 / 315
  25054. }
  25055. },
  25056. back: {
  25057. height: math.unit(6 + 4 / 12, "feet"),
  25058. weight: math.unit(175, "lb"),
  25059. name: "Back",
  25060. image: {
  25061. source: "./media/characters/luka-bryzant/back.svg",
  25062. extra: 311 / 289,
  25063. bottom: 3.8 / 313.7
  25064. }
  25065. },
  25066. },
  25067. [
  25068. {
  25069. name: "Micro",
  25070. height: math.unit(10, "inches")
  25071. },
  25072. {
  25073. name: "Normal",
  25074. height: math.unit(6 + 4 / 12, "feet"),
  25075. default: true
  25076. },
  25077. {
  25078. name: "Large",
  25079. height: math.unit(12, "feet")
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25085. {
  25086. front: {
  25087. height: math.unit(5 + 7 / 12, "feet"),
  25088. weight: math.unit(185, "lb"),
  25089. name: "Front",
  25090. image: {
  25091. source: "./media/characters/aman-aquila/front.svg",
  25092. extra: 1013 / 976,
  25093. bottom: 45.6 / 1057
  25094. }
  25095. },
  25096. side: {
  25097. height: math.unit(5 + 7 / 12, "feet"),
  25098. weight: math.unit(185, "lb"),
  25099. name: "Side",
  25100. image: {
  25101. source: "./media/characters/aman-aquila/side.svg",
  25102. extra: 1054 / 1011,
  25103. bottom: 15 / 1070
  25104. }
  25105. },
  25106. back: {
  25107. height: math.unit(5 + 7 / 12, "feet"),
  25108. weight: math.unit(185, "lb"),
  25109. name: "Back",
  25110. image: {
  25111. source: "./media/characters/aman-aquila/back.svg",
  25112. extra: 1026 / 970,
  25113. bottom: 12 / 1039
  25114. }
  25115. },
  25116. head: {
  25117. height: math.unit(1.211, "feet"),
  25118. name: "Head",
  25119. image: {
  25120. source: "./media/characters/aman-aquila/head.svg",
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Minimicro",
  25127. height: math.unit(0.057, "inches")
  25128. },
  25129. {
  25130. name: "Micro",
  25131. height: math.unit(7, "inches")
  25132. },
  25133. {
  25134. name: "Mini",
  25135. height: math.unit(3 + 7 / 12, "feet")
  25136. },
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(5 + 7 / 12, "feet"),
  25140. default: true
  25141. },
  25142. {
  25143. name: "Macro",
  25144. height: math.unit(157 + 7 / 12, "feet")
  25145. },
  25146. {
  25147. name: "Megamacro",
  25148. height: math.unit(1557 + 7 / 12, "feet")
  25149. },
  25150. {
  25151. name: "Gigamacro",
  25152. height: math.unit(15557 + 7 / 12, "feet")
  25153. },
  25154. ]
  25155. ))
  25156. characterMakers.push(() => makeCharacter(
  25157. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25158. {
  25159. front: {
  25160. height: math.unit(3 + 2 / 12, "inches"),
  25161. weight: math.unit(0.3, "ounces"),
  25162. name: "Front",
  25163. image: {
  25164. source: "./media/characters/hiphae/front.svg",
  25165. extra: 1931 / 1683,
  25166. bottom: 24 / 1955
  25167. }
  25168. },
  25169. },
  25170. [
  25171. {
  25172. name: "Normal",
  25173. height: math.unit(3 + 1 / 2, "inches"),
  25174. default: true
  25175. },
  25176. ]
  25177. ))
  25178. characterMakers.push(() => makeCharacter(
  25179. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25180. {
  25181. front: {
  25182. height: math.unit(5 + 10 / 12, "feet"),
  25183. weight: math.unit(165, "lb"),
  25184. name: "Front",
  25185. image: {
  25186. source: "./media/characters/nicky/front.svg",
  25187. extra: 3144 / 2886,
  25188. bottom: 45.6 / 3192
  25189. }
  25190. },
  25191. back: {
  25192. height: math.unit(5 + 10 / 12, "feet"),
  25193. weight: math.unit(165, "lb"),
  25194. name: "Back",
  25195. image: {
  25196. source: "./media/characters/nicky/back.svg",
  25197. extra: 3055 / 2804,
  25198. bottom: 28.4 / 3087
  25199. }
  25200. },
  25201. frontclothed: {
  25202. height: math.unit(5 + 10 / 12, "feet"),
  25203. weight: math.unit(165, "lb"),
  25204. name: "Front-clothed",
  25205. image: {
  25206. source: "./media/characters/nicky/front-clothed.svg",
  25207. extra: 3184.9 / 2926.9,
  25208. bottom: 86.5 / 3239.9
  25209. }
  25210. },
  25211. foot: {
  25212. height: math.unit(1.16, "feet"),
  25213. name: "Foot",
  25214. image: {
  25215. source: "./media/characters/nicky/foot.svg"
  25216. }
  25217. },
  25218. feet: {
  25219. height: math.unit(1.34, "feet"),
  25220. name: "Feet",
  25221. image: {
  25222. source: "./media/characters/nicky/feet.svg"
  25223. }
  25224. },
  25225. maw: {
  25226. height: math.unit(0.9, "feet"),
  25227. name: "Maw",
  25228. image: {
  25229. source: "./media/characters/nicky/maw.svg"
  25230. }
  25231. },
  25232. },
  25233. [
  25234. {
  25235. name: "Normal",
  25236. height: math.unit(5 + 10 / 12, "feet"),
  25237. default: true
  25238. },
  25239. {
  25240. name: "Macro",
  25241. height: math.unit(60, "feet")
  25242. },
  25243. {
  25244. name: "Megamacro",
  25245. height: math.unit(1, "mile")
  25246. },
  25247. ]
  25248. ))
  25249. characterMakers.push(() => makeCharacter(
  25250. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25251. {
  25252. side: {
  25253. height: math.unit(10, "feet"),
  25254. weight: math.unit(600, "lb"),
  25255. name: "Side",
  25256. image: {
  25257. source: "./media/characters/blair/side.svg",
  25258. bottom: 16.6 / 475,
  25259. extra: 458 / 431
  25260. }
  25261. },
  25262. },
  25263. [
  25264. {
  25265. name: "Micro",
  25266. height: math.unit(8, "inches")
  25267. },
  25268. {
  25269. name: "Normal",
  25270. height: math.unit(10, "feet"),
  25271. default: true
  25272. },
  25273. {
  25274. name: "Macro",
  25275. height: math.unit(180, "feet")
  25276. },
  25277. ]
  25278. ))
  25279. characterMakers.push(() => makeCharacter(
  25280. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25281. {
  25282. front: {
  25283. height: math.unit(5 + 4 / 12, "feet"),
  25284. weight: math.unit(125, "lb"),
  25285. name: "Front",
  25286. image: {
  25287. source: "./media/characters/fisher/front.svg",
  25288. extra: 444 / 390,
  25289. bottom: 2 / 444.8
  25290. }
  25291. },
  25292. },
  25293. [
  25294. {
  25295. name: "Micro",
  25296. height: math.unit(4, "inches")
  25297. },
  25298. {
  25299. name: "Normal",
  25300. height: math.unit(5 + 4 / 12, "feet"),
  25301. default: true
  25302. },
  25303. {
  25304. name: "Macro",
  25305. height: math.unit(100, "feet")
  25306. },
  25307. ]
  25308. ))
  25309. characterMakers.push(() => makeCharacter(
  25310. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25311. {
  25312. front: {
  25313. height: math.unit(6.71, "feet"),
  25314. weight: math.unit(200, "lb"),
  25315. capacity: math.unit(1000000, "people"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/gliss/front.svg",
  25319. extra: 2347 / 2231,
  25320. bottom: 113 / 2462
  25321. }
  25322. },
  25323. hammerspaceSize: {
  25324. height: math.unit(6.71 * 717, "feet"),
  25325. weight: math.unit(200, "lb"),
  25326. capacity: math.unit(1000000, "people"),
  25327. name: "Hammerspace Size",
  25328. image: {
  25329. source: "./media/characters/gliss/front.svg",
  25330. extra: 2347 / 2231,
  25331. bottom: 113 / 2462
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Normal",
  25338. height: math.unit(6.71, "feet"),
  25339. default: true
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25345. {
  25346. side: {
  25347. height: math.unit(1.44, "m"),
  25348. weight: math.unit(80, "kg"),
  25349. name: "Side",
  25350. image: {
  25351. source: "./media/characters/dune-anderson/side.svg",
  25352. bottom: 49 / 1426
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Wolf-sized",
  25359. height: math.unit(1.44, "meters")
  25360. },
  25361. {
  25362. name: "Normal",
  25363. height: math.unit(5.05, "meters"),
  25364. default: true
  25365. },
  25366. {
  25367. name: "Big",
  25368. height: math.unit(14.4, "meters")
  25369. },
  25370. {
  25371. name: "Huge",
  25372. height: math.unit(144, "meters")
  25373. },
  25374. ]
  25375. ))
  25376. characterMakers.push(() => makeCharacter(
  25377. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25378. {
  25379. front: {
  25380. height: math.unit(7, "feet"),
  25381. weight: math.unit(425, "lb"),
  25382. name: "Front",
  25383. image: {
  25384. source: "./media/characters/hind/front.svg",
  25385. extra: 2091 / 1860,
  25386. bottom: 129 / 2220
  25387. }
  25388. },
  25389. back: {
  25390. height: math.unit(7, "feet"),
  25391. weight: math.unit(425, "lb"),
  25392. name: "Back",
  25393. image: {
  25394. source: "./media/characters/hind/back.svg",
  25395. extra: 2091 / 1860,
  25396. bottom: 24.6 / 2309
  25397. }
  25398. },
  25399. tail: {
  25400. height: math.unit(2.8, "feet"),
  25401. name: "Tail",
  25402. image: {
  25403. source: "./media/characters/hind/tail.svg"
  25404. }
  25405. },
  25406. head: {
  25407. height: math.unit(2.55, "feet"),
  25408. name: "Head",
  25409. image: {
  25410. source: "./media/characters/hind/head.svg"
  25411. }
  25412. },
  25413. },
  25414. [
  25415. {
  25416. name: "XS",
  25417. height: math.unit(0.7, "feet")
  25418. },
  25419. {
  25420. name: "Normal",
  25421. height: math.unit(7, "feet"),
  25422. default: true
  25423. },
  25424. {
  25425. name: "XL",
  25426. height: math.unit(70, "feet")
  25427. },
  25428. ]
  25429. ))
  25430. characterMakers.push(() => makeCharacter(
  25431. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25432. {
  25433. front: {
  25434. height: math.unit(2.1, "meters"),
  25435. weight: math.unit(150, "lb"),
  25436. name: "Front",
  25437. image: {
  25438. source: "./media/characters/tharquench-sizestealer/front.svg",
  25439. extra: 1605/1470,
  25440. bottom: 36/1641
  25441. }
  25442. },
  25443. frontAlt: {
  25444. height: math.unit(2.1, "meters"),
  25445. weight: math.unit(150, "lb"),
  25446. name: "Front (Alt)",
  25447. image: {
  25448. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25449. extra: 2318 / 2063,
  25450. bottom: 93.4 / 2410
  25451. }
  25452. },
  25453. },
  25454. [
  25455. {
  25456. name: "Nano",
  25457. height: math.unit(1, "mm")
  25458. },
  25459. {
  25460. name: "Micro",
  25461. height: math.unit(1, "cm")
  25462. },
  25463. {
  25464. name: "Normal",
  25465. height: math.unit(2.1, "meters"),
  25466. default: true
  25467. },
  25468. ]
  25469. ))
  25470. characterMakers.push(() => makeCharacter(
  25471. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25472. {
  25473. front: {
  25474. height: math.unit(7 + 5 / 12, "feet"),
  25475. weight: math.unit(357, "lb"),
  25476. name: "Front",
  25477. image: {
  25478. source: "./media/characters/solex-draconov/front.svg",
  25479. extra: 1993 / 1865,
  25480. bottom: 117 / 2111
  25481. }
  25482. },
  25483. },
  25484. [
  25485. {
  25486. name: "Natural Height",
  25487. height: math.unit(7 + 5 / 12, "feet"),
  25488. default: true
  25489. },
  25490. {
  25491. name: "Macro",
  25492. height: math.unit(350, "feet")
  25493. },
  25494. {
  25495. name: "Macro+",
  25496. height: math.unit(1000, "feet")
  25497. },
  25498. {
  25499. name: "Megamacro",
  25500. height: math.unit(20, "km")
  25501. },
  25502. {
  25503. name: "Megamacro+",
  25504. height: math.unit(1000, "km")
  25505. },
  25506. {
  25507. name: "Gigamacro",
  25508. height: math.unit(2.5, "Gm")
  25509. },
  25510. {
  25511. name: "Teramacro",
  25512. height: math.unit(15, "Tm")
  25513. },
  25514. {
  25515. name: "Galactic",
  25516. height: math.unit(30, "Zm")
  25517. },
  25518. {
  25519. name: "Universal",
  25520. height: math.unit(21000, "Ym")
  25521. },
  25522. {
  25523. name: "Omniversal",
  25524. height: math.unit(9.861e50, "Ym")
  25525. },
  25526. {
  25527. name: "Existential",
  25528. height: math.unit(1e300, "meters")
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25534. {
  25535. side: {
  25536. height: math.unit(25, "feet"),
  25537. weight: math.unit(90000, "lb"),
  25538. name: "Side",
  25539. image: {
  25540. source: "./media/characters/mandarax/side.svg",
  25541. extra: 614 / 332,
  25542. bottom: 55 / 630
  25543. }
  25544. },
  25545. head: {
  25546. height: math.unit(11.4, "feet"),
  25547. name: "Head",
  25548. image: {
  25549. source: "./media/characters/mandarax/head.svg"
  25550. }
  25551. },
  25552. belly: {
  25553. height: math.unit(33, "feet"),
  25554. name: "Belly",
  25555. capacity: math.unit(500, "people"),
  25556. image: {
  25557. source: "./media/characters/mandarax/belly.svg"
  25558. }
  25559. },
  25560. dick: {
  25561. height: math.unit(8.46, "feet"),
  25562. name: "Dick",
  25563. image: {
  25564. source: "./media/characters/mandarax/dick.svg"
  25565. }
  25566. },
  25567. top: {
  25568. height: math.unit(28, "meters"),
  25569. name: "Top",
  25570. image: {
  25571. source: "./media/characters/mandarax/top.svg"
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Normal",
  25578. height: math.unit(25, "feet"),
  25579. default: true
  25580. },
  25581. ]
  25582. ))
  25583. characterMakers.push(() => makeCharacter(
  25584. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25585. {
  25586. front: {
  25587. height: math.unit(5, "feet"),
  25588. weight: math.unit(90, "lb"),
  25589. name: "Front",
  25590. image: {
  25591. source: "./media/characters/pixil/front.svg",
  25592. extra: 2000 / 1618,
  25593. bottom: 12.3 / 2011
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Normal",
  25600. height: math.unit(5, "feet"),
  25601. default: true
  25602. },
  25603. {
  25604. name: "Megamacro",
  25605. height: math.unit(10, "miles"),
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(7 + 2 / 12, "feet"),
  25614. weight: math.unit(200, "lb"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/angel/front.svg",
  25618. extra: 1830 / 1737,
  25619. bottom: 22.6 / 1854,
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(7 + 2 / 12, "feet"),
  25627. default: true
  25628. },
  25629. {
  25630. name: "Macro",
  25631. height: math.unit(1000, "feet")
  25632. },
  25633. {
  25634. name: "Megamacro",
  25635. height: math.unit(2, "miles")
  25636. },
  25637. {
  25638. name: "Gigamacro",
  25639. height: math.unit(20, "earths")
  25640. },
  25641. ]
  25642. ))
  25643. characterMakers.push(() => makeCharacter(
  25644. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25645. {
  25646. front: {
  25647. height: math.unit(5, "feet"),
  25648. weight: math.unit(180, "lb"),
  25649. name: "Front",
  25650. image: {
  25651. source: "./media/characters/mekana/front.svg",
  25652. extra: 1671 / 1605,
  25653. bottom: 3.5 / 1691
  25654. }
  25655. },
  25656. side: {
  25657. height: math.unit(5, "feet"),
  25658. weight: math.unit(180, "lb"),
  25659. name: "Side",
  25660. image: {
  25661. source: "./media/characters/mekana/side.svg",
  25662. extra: 1671 / 1605,
  25663. bottom: 3.5 / 1691
  25664. }
  25665. },
  25666. back: {
  25667. height: math.unit(5, "feet"),
  25668. weight: math.unit(180, "lb"),
  25669. name: "Back",
  25670. image: {
  25671. source: "./media/characters/mekana/back.svg",
  25672. extra: 1671 / 1605,
  25673. bottom: 3.5 / 1691
  25674. }
  25675. },
  25676. },
  25677. [
  25678. {
  25679. name: "Normal",
  25680. height: math.unit(5, "feet"),
  25681. default: true
  25682. },
  25683. ]
  25684. ))
  25685. characterMakers.push(() => makeCharacter(
  25686. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25687. {
  25688. front: {
  25689. height: math.unit(4 + 6 / 12, "feet"),
  25690. weight: math.unit(80, "lb"),
  25691. name: "Front",
  25692. image: {
  25693. source: "./media/characters/pixie/front.svg",
  25694. extra: 1924 / 1825,
  25695. bottom: 22.4 / 1946
  25696. }
  25697. },
  25698. },
  25699. [
  25700. {
  25701. name: "Normal",
  25702. height: math.unit(4 + 6 / 12, "feet"),
  25703. default: true
  25704. },
  25705. {
  25706. name: "Macro",
  25707. height: math.unit(40, "feet")
  25708. },
  25709. ]
  25710. ))
  25711. characterMakers.push(() => makeCharacter(
  25712. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25713. {
  25714. front: {
  25715. height: math.unit(2.1, "meters"),
  25716. weight: math.unit(200, "lb"),
  25717. name: "Front",
  25718. image: {
  25719. source: "./media/characters/the-lascivious/front.svg",
  25720. extra: 1 / 0.893,
  25721. bottom: 3.5 / 573.7
  25722. }
  25723. },
  25724. },
  25725. [
  25726. {
  25727. name: "Human Scale",
  25728. height: math.unit(2.1, "meters")
  25729. },
  25730. {
  25731. name: "Wolxi Scale",
  25732. height: math.unit(46.2, "m"),
  25733. default: true
  25734. },
  25735. {
  25736. name: "Boinker of Buildings",
  25737. height: math.unit(10, "km")
  25738. },
  25739. {
  25740. name: "Shagger of Skyscrapers",
  25741. height: math.unit(40, "km")
  25742. },
  25743. {
  25744. name: "Banger of Boroughs",
  25745. height: math.unit(4000, "km")
  25746. },
  25747. {
  25748. name: "Screwer of States",
  25749. height: math.unit(100000, "km")
  25750. },
  25751. {
  25752. name: "Pounder of Planets",
  25753. height: math.unit(2000000, "km")
  25754. },
  25755. ]
  25756. ))
  25757. characterMakers.push(() => makeCharacter(
  25758. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25759. {
  25760. front: {
  25761. height: math.unit(6, "feet"),
  25762. weight: math.unit(150, "lb"),
  25763. name: "Front",
  25764. image: {
  25765. source: "./media/characters/aj/front.svg",
  25766. extra: 2039 / 1562,
  25767. bottom: 40 / 2079
  25768. }
  25769. },
  25770. },
  25771. [
  25772. {
  25773. name: "Normal",
  25774. height: math.unit(11 + 6 / 12, "feet"),
  25775. default: true
  25776. },
  25777. {
  25778. name: "Megamacro",
  25779. height: math.unit(60, "megameters")
  25780. },
  25781. ]
  25782. ))
  25783. characterMakers.push(() => makeCharacter(
  25784. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25785. {
  25786. side: {
  25787. height: math.unit(31 + 8 / 12, "feet"),
  25788. weight: math.unit(75000, "kg"),
  25789. name: "Side",
  25790. image: {
  25791. source: "./media/characters/koros/side.svg",
  25792. extra: 1442 / 1297,
  25793. bottom: 122.7 / 1562
  25794. }
  25795. },
  25796. dicksKingsCrown: {
  25797. height: math.unit(6, "feet"),
  25798. name: "Dicks (King's Crown)",
  25799. image: {
  25800. source: "./media/characters/koros/dicks-kings-crown.svg"
  25801. }
  25802. },
  25803. dicksTailSet: {
  25804. height: math.unit(3, "feet"),
  25805. name: "Dicks (Tail Set)",
  25806. image: {
  25807. source: "./media/characters/koros/dicks-tail-set.svg"
  25808. }
  25809. },
  25810. dickCumming: {
  25811. height: math.unit(7.98, "feet"),
  25812. name: "Dick (Cumming)",
  25813. image: {
  25814. source: "./media/characters/koros/dick-cumming.svg"
  25815. }
  25816. },
  25817. dicksBack: {
  25818. height: math.unit(5.9, "feet"),
  25819. name: "Dicks (Back)",
  25820. image: {
  25821. source: "./media/characters/koros/dicks-back.svg"
  25822. }
  25823. },
  25824. dicksFront: {
  25825. height: math.unit(3.72, "feet"),
  25826. name: "Dicks (Front)",
  25827. image: {
  25828. source: "./media/characters/koros/dicks-front.svg"
  25829. }
  25830. },
  25831. dicksPeeking: {
  25832. height: math.unit(3.0, "feet"),
  25833. name: "Dicks (Peeking)",
  25834. image: {
  25835. source: "./media/characters/koros/dicks-peeking.svg"
  25836. }
  25837. },
  25838. eye: {
  25839. height: math.unit(1.7, "feet"),
  25840. name: "Eye",
  25841. image: {
  25842. source: "./media/characters/koros/eye.svg"
  25843. }
  25844. },
  25845. headFront: {
  25846. height: math.unit(11.69, "feet"),
  25847. name: "Head (Front)",
  25848. image: {
  25849. source: "./media/characters/koros/head-front.svg"
  25850. }
  25851. },
  25852. headSide: {
  25853. height: math.unit(14, "feet"),
  25854. name: "Head (Side)",
  25855. image: {
  25856. source: "./media/characters/koros/head-side.svg"
  25857. }
  25858. },
  25859. leg: {
  25860. height: math.unit(17, "feet"),
  25861. name: "Leg",
  25862. image: {
  25863. source: "./media/characters/koros/leg.svg"
  25864. }
  25865. },
  25866. mawSide: {
  25867. height: math.unit(12.8, "feet"),
  25868. name: "Maw (Side)",
  25869. image: {
  25870. source: "./media/characters/koros/maw-side.svg"
  25871. }
  25872. },
  25873. mawSpitting: {
  25874. height: math.unit(17, "feet"),
  25875. name: "Maw (Spitting)",
  25876. image: {
  25877. source: "./media/characters/koros/maw-spitting.svg"
  25878. }
  25879. },
  25880. slit: {
  25881. height: math.unit(2.8, "feet"),
  25882. name: "Slit",
  25883. image: {
  25884. source: "./media/characters/koros/slit.svg"
  25885. }
  25886. },
  25887. stomach: {
  25888. height: math.unit(6.8, "feet"),
  25889. capacity: math.unit(20, "people"),
  25890. name: "Stomach",
  25891. image: {
  25892. source: "./media/characters/koros/stomach.svg"
  25893. }
  25894. },
  25895. wingspanBottom: {
  25896. height: math.unit(114, "feet"),
  25897. name: "Wingspan (Bottom)",
  25898. image: {
  25899. source: "./media/characters/koros/wingspan-bottom.svg"
  25900. }
  25901. },
  25902. wingspanTop: {
  25903. height: math.unit(104, "feet"),
  25904. name: "Wingspan (Top)",
  25905. image: {
  25906. source: "./media/characters/koros/wingspan-top.svg"
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(31 + 8 / 12, "feet"),
  25914. default: true
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25920. {
  25921. front: {
  25922. height: math.unit(18 + 5 / 12, "feet"),
  25923. weight: math.unit(3750, "kg"),
  25924. name: "Front",
  25925. image: {
  25926. source: "./media/characters/vexx/front.svg",
  25927. extra: 426 / 396,
  25928. bottom: 31.5 / 458
  25929. }
  25930. },
  25931. maw: {
  25932. height: math.unit(6, "feet"),
  25933. name: "Maw",
  25934. image: {
  25935. source: "./media/characters/vexx/maw.svg"
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Normal",
  25942. height: math.unit(18 + 5 / 12, "feet"),
  25943. default: true
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(17 + 6 / 12, "feet"),
  25952. weight: math.unit(150, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/baadra/front.svg",
  25956. extra: 3137 / 2890,
  25957. bottom: 168.4 / 3305
  25958. }
  25959. },
  25960. back: {
  25961. height: math.unit(17 + 6 / 12, "feet"),
  25962. weight: math.unit(150, "lb"),
  25963. name: "Back",
  25964. image: {
  25965. source: "./media/characters/baadra/back.svg",
  25966. extra: 3142 / 2890,
  25967. bottom: 220 / 3371
  25968. }
  25969. },
  25970. head: {
  25971. height: math.unit(5.45, "feet"),
  25972. name: "Head",
  25973. image: {
  25974. source: "./media/characters/baadra/head.svg"
  25975. }
  25976. },
  25977. headAngry: {
  25978. height: math.unit(4.95, "feet"),
  25979. name: "Head (Angry)",
  25980. image: {
  25981. source: "./media/characters/baadra/head-angry.svg"
  25982. }
  25983. },
  25984. headOpen: {
  25985. height: math.unit(6, "feet"),
  25986. name: "Head (Open)",
  25987. image: {
  25988. source: "./media/characters/baadra/head-open.svg"
  25989. }
  25990. },
  25991. },
  25992. [
  25993. {
  25994. name: "Normal",
  25995. height: math.unit(17 + 6 / 12, "feet"),
  25996. default: true
  25997. },
  25998. ]
  25999. ))
  26000. characterMakers.push(() => makeCharacter(
  26001. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26002. {
  26003. front: {
  26004. height: math.unit(7 + 3 / 12, "feet"),
  26005. weight: math.unit(180, "lb"),
  26006. name: "Front",
  26007. image: {
  26008. source: "./media/characters/juri/front.svg",
  26009. extra: 1401 / 1237,
  26010. bottom: 18.5 / 1418
  26011. }
  26012. },
  26013. side: {
  26014. height: math.unit(7 + 3 / 12, "feet"),
  26015. weight: math.unit(180, "lb"),
  26016. name: "Side",
  26017. image: {
  26018. source: "./media/characters/juri/side.svg",
  26019. extra: 1424 / 1242,
  26020. bottom: 18.5 / 1447
  26021. }
  26022. },
  26023. sitting: {
  26024. height: math.unit(6, "feet"),
  26025. weight: math.unit(180, "lb"),
  26026. name: "Sitting",
  26027. image: {
  26028. source: "./media/characters/juri/sitting.svg",
  26029. extra: 1270 / 1143,
  26030. bottom: 100 / 1343
  26031. }
  26032. },
  26033. back: {
  26034. height: math.unit(7 + 3 / 12, "feet"),
  26035. weight: math.unit(180, "lb"),
  26036. name: "Back",
  26037. image: {
  26038. source: "./media/characters/juri/back.svg",
  26039. extra: 1377 / 1240,
  26040. bottom: 23.7 / 1405
  26041. }
  26042. },
  26043. maw: {
  26044. height: math.unit(2.8, "feet"),
  26045. name: "Maw",
  26046. image: {
  26047. source: "./media/characters/juri/maw.svg"
  26048. }
  26049. },
  26050. stomach: {
  26051. height: math.unit(0.89, "feet"),
  26052. capacity: math.unit(4, "liters"),
  26053. name: "Stomach",
  26054. image: {
  26055. source: "./media/characters/juri/stomach.svg"
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(7 + 3 / 12, "feet"),
  26063. default: true
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26069. {
  26070. fox: {
  26071. height: math.unit(5 + 6 / 12, "feet"),
  26072. weight: math.unit(140, "lb"),
  26073. name: "Fox",
  26074. image: {
  26075. source: "./media/characters/maxene-sita/fox.svg",
  26076. extra: 146 / 138,
  26077. bottom: 2.1 / 148.19
  26078. }
  26079. },
  26080. foxLaying: {
  26081. height: math.unit(1.70, "feet"),
  26082. weight: math.unit(140, "lb"),
  26083. name: "Fox (Laying)",
  26084. image: {
  26085. source: "./media/characters/maxene-sita/fox-laying.svg",
  26086. extra: 910 / 572,
  26087. bottom: 71 / 981
  26088. }
  26089. },
  26090. kitsune: {
  26091. height: math.unit(10, "feet"),
  26092. weight: math.unit(800, "lb"),
  26093. name: "Kitsune",
  26094. image: {
  26095. source: "./media/characters/maxene-sita/kitsune.svg",
  26096. extra: 185 / 176,
  26097. bottom: 4.7 / 189.9
  26098. }
  26099. },
  26100. hellhound: {
  26101. height: math.unit(10, "feet"),
  26102. weight: math.unit(700, "lb"),
  26103. name: "Hellhound",
  26104. image: {
  26105. source: "./media/characters/maxene-sita/hellhound.svg",
  26106. extra: 1600 / 1545,
  26107. bottom: 81 / 1681
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Normal",
  26114. height: math.unit(5 + 6 / 12, "feet"),
  26115. default: true
  26116. },
  26117. ]
  26118. ))
  26119. characterMakers.push(() => makeCharacter(
  26120. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26121. {
  26122. front: {
  26123. height: math.unit(3 + 4 / 12, "feet"),
  26124. weight: math.unit(70, "lb"),
  26125. name: "Front",
  26126. image: {
  26127. source: "./media/characters/maia/front.svg",
  26128. extra: 227 / 219.5,
  26129. bottom: 40 / 267
  26130. }
  26131. },
  26132. back: {
  26133. height: math.unit(3 + 4 / 12, "feet"),
  26134. weight: math.unit(70, "lb"),
  26135. name: "Back",
  26136. image: {
  26137. source: "./media/characters/maia/back.svg",
  26138. extra: 237 / 225
  26139. }
  26140. },
  26141. },
  26142. [
  26143. {
  26144. name: "Normal",
  26145. height: math.unit(3 + 4 / 12, "feet"),
  26146. default: true
  26147. },
  26148. ]
  26149. ))
  26150. characterMakers.push(() => makeCharacter(
  26151. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26152. {
  26153. front: {
  26154. height: math.unit(5 + 10 / 12, "feet"),
  26155. weight: math.unit(197, "lb"),
  26156. name: "Front",
  26157. image: {
  26158. source: "./media/characters/jabaro/front.svg",
  26159. extra: 225 / 216,
  26160. bottom: 5.06 / 230
  26161. }
  26162. },
  26163. back: {
  26164. height: math.unit(5 + 10 / 12, "feet"),
  26165. weight: math.unit(197, "lb"),
  26166. name: "Back",
  26167. image: {
  26168. source: "./media/characters/jabaro/back.svg",
  26169. extra: 225 / 219,
  26170. bottom: 1.9 / 227
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Normal",
  26177. height: math.unit(5 + 10 / 12, "feet"),
  26178. default: true
  26179. },
  26180. ]
  26181. ))
  26182. characterMakers.push(() => makeCharacter(
  26183. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26184. {
  26185. front: {
  26186. height: math.unit(5 + 8 / 12, "feet"),
  26187. weight: math.unit(139, "lb"),
  26188. name: "Front",
  26189. image: {
  26190. source: "./media/characters/risa/front.svg",
  26191. extra: 270 / 260,
  26192. bottom: 11.2 / 282
  26193. }
  26194. },
  26195. back: {
  26196. height: math.unit(5 + 8 / 12, "feet"),
  26197. weight: math.unit(139, "lb"),
  26198. name: "Back",
  26199. image: {
  26200. source: "./media/characters/risa/back.svg",
  26201. extra: 264 / 255,
  26202. bottom: 4 / 268
  26203. }
  26204. },
  26205. },
  26206. [
  26207. {
  26208. name: "Normal",
  26209. height: math.unit(5 + 8 / 12, "feet"),
  26210. default: true
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26216. {
  26217. front: {
  26218. height: math.unit(2 + 11 / 12, "feet"),
  26219. weight: math.unit(30, "lb"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/weatley/front.svg",
  26223. bottom: 10.7 / 414,
  26224. extra: 403.5 / 362
  26225. }
  26226. },
  26227. back: {
  26228. height: math.unit(2 + 11 / 12, "feet"),
  26229. weight: math.unit(30, "lb"),
  26230. name: "Back",
  26231. image: {
  26232. source: "./media/characters/weatley/back.svg",
  26233. bottom: 10.7 / 414,
  26234. extra: 403.5 / 362
  26235. }
  26236. },
  26237. },
  26238. [
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(2 + 11 / 12, "feet"),
  26242. default: true
  26243. },
  26244. ]
  26245. ))
  26246. characterMakers.push(() => makeCharacter(
  26247. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26248. {
  26249. front: {
  26250. height: math.unit(5 + 2 / 12, "feet"),
  26251. weight: math.unit(50, "kg"),
  26252. name: "Front",
  26253. image: {
  26254. source: "./media/characters/mercury-crescent/front.svg",
  26255. extra: 1088 / 1033,
  26256. bottom: 18.9 / 1109
  26257. }
  26258. },
  26259. },
  26260. [
  26261. {
  26262. name: "Normal",
  26263. height: math.unit(5 + 2 / 12, "feet"),
  26264. default: true
  26265. },
  26266. ]
  26267. ))
  26268. characterMakers.push(() => makeCharacter(
  26269. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26270. {
  26271. front: {
  26272. height: math.unit(2, "feet"),
  26273. weight: math.unit(15, "kg"),
  26274. name: "Front",
  26275. image: {
  26276. source: "./media/characters/diamond-jones/front.svg",
  26277. extra: 727/723,
  26278. bottom: 46/773
  26279. }
  26280. },
  26281. },
  26282. [
  26283. {
  26284. name: "Normal",
  26285. height: math.unit(2, "feet"),
  26286. default: true
  26287. },
  26288. ]
  26289. ))
  26290. characterMakers.push(() => makeCharacter(
  26291. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26292. {
  26293. front: {
  26294. height: math.unit(3, "feet"),
  26295. weight: math.unit(30, "kg"),
  26296. name: "Front",
  26297. image: {
  26298. source: "./media/characters/sweet-bit/front.svg",
  26299. extra: 675 / 567,
  26300. bottom: 27.7 / 703
  26301. }
  26302. },
  26303. },
  26304. [
  26305. {
  26306. name: "Normal",
  26307. height: math.unit(3, "feet"),
  26308. default: true
  26309. },
  26310. ]
  26311. ))
  26312. characterMakers.push(() => makeCharacter(
  26313. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26314. {
  26315. side: {
  26316. height: math.unit(9.178, "feet"),
  26317. weight: math.unit(500, "lb"),
  26318. name: "Side",
  26319. image: {
  26320. source: "./media/characters/umbrazen/side.svg",
  26321. extra: 1730 / 1473,
  26322. bottom: 34.6 / 1765
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(9.178, "feet"),
  26330. default: true
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26336. {
  26337. front: {
  26338. height: math.unit(10, "feet"),
  26339. weight: math.unit(750, "lb"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/arlist/front.svg",
  26343. extra: 961 / 778,
  26344. bottom: 6.2 / 986
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Normal",
  26351. height: math.unit(10, "feet"),
  26352. default: true
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(5 + 1 / 12, "feet"),
  26361. weight: math.unit(110, "lb"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/aradel/front.svg",
  26365. extra: 324 / 303,
  26366. bottom: 3.6 / 329.4
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(5 + 1 / 12, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(3 + 8 / 12, "feet"),
  26383. weight: math.unit(50, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/serryn/front.svg",
  26387. extra: 1792 / 1656,
  26388. bottom: 43.5 / 1840
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Normal",
  26395. height: math.unit(3 + 8 / 12, "feet"),
  26396. default: true
  26397. },
  26398. ]
  26399. ))
  26400. characterMakers.push(() => makeCharacter(
  26401. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26402. {
  26403. front: {
  26404. height: math.unit(7 + 10 / 12, "feet"),
  26405. weight: math.unit(255, "lb"),
  26406. name: "Front",
  26407. image: {
  26408. source: "./media/characters/xavier-thyme/front.svg",
  26409. extra: 3733 / 3642,
  26410. bottom: 131 / 3869
  26411. }
  26412. },
  26413. frontRaven: {
  26414. height: math.unit(7 + 10 / 12, "feet"),
  26415. weight: math.unit(255, "lb"),
  26416. name: "Front (Raven)",
  26417. image: {
  26418. source: "./media/characters/xavier-thyme/front-raven.svg",
  26419. extra: 4385 / 3642,
  26420. bottom: 131 / 4517
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Normal",
  26427. height: math.unit(7 + 10 / 12, "feet"),
  26428. default: true
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(1.6, "m"),
  26437. weight: math.unit(50, "kg"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/kiki/front.svg",
  26441. extra: 4682 / 3610,
  26442. bottom: 115 / 4777
  26443. }
  26444. },
  26445. },
  26446. [
  26447. {
  26448. name: "Normal",
  26449. height: math.unit(1.6, "meters"),
  26450. default: true
  26451. },
  26452. ]
  26453. ))
  26454. characterMakers.push(() => makeCharacter(
  26455. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26456. {
  26457. front: {
  26458. height: math.unit(50, "m"),
  26459. weight: math.unit(500, "tonnes"),
  26460. name: "Front",
  26461. image: {
  26462. source: "./media/characters/ryoko/front.svg",
  26463. extra: 4632 / 3926,
  26464. bottom: 193 / 4823
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Normal",
  26471. height: math.unit(50, "meters"),
  26472. default: true
  26473. },
  26474. ]
  26475. ))
  26476. characterMakers.push(() => makeCharacter(
  26477. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26478. {
  26479. front: {
  26480. height: math.unit(30, "m"),
  26481. weight: math.unit(22, "tonnes"),
  26482. name: "Front",
  26483. image: {
  26484. source: "./media/characters/elio/front.svg",
  26485. extra: 4582 / 3720,
  26486. bottom: 236 / 4828
  26487. }
  26488. },
  26489. },
  26490. [
  26491. {
  26492. name: "Normal",
  26493. height: math.unit(30, "meters"),
  26494. default: true
  26495. },
  26496. ]
  26497. ))
  26498. characterMakers.push(() => makeCharacter(
  26499. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26500. {
  26501. front: {
  26502. height: math.unit(6 + 3 / 12, "feet"),
  26503. weight: math.unit(120, "lb"),
  26504. name: "Front",
  26505. image: {
  26506. source: "./media/characters/azura/front.svg",
  26507. extra: 1149 / 1135,
  26508. bottom: 45 / 1194
  26509. }
  26510. },
  26511. frontClothed: {
  26512. height: math.unit(6 + 3 / 12, "feet"),
  26513. weight: math.unit(120, "lb"),
  26514. name: "Front (Clothed)",
  26515. image: {
  26516. source: "./media/characters/azura/front-clothed.svg",
  26517. extra: 1149 / 1135,
  26518. bottom: 45 / 1194
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(6 + 3 / 12, "feet"),
  26526. default: true
  26527. },
  26528. {
  26529. name: "Macro",
  26530. height: math.unit(20 + 6 / 12, "feet")
  26531. },
  26532. {
  26533. name: "Megamacro",
  26534. height: math.unit(12, "miles")
  26535. },
  26536. {
  26537. name: "Gigamacro",
  26538. height: math.unit(10000, "miles")
  26539. },
  26540. {
  26541. name: "Teramacro",
  26542. height: math.unit(900000, "miles")
  26543. },
  26544. ]
  26545. ))
  26546. characterMakers.push(() => makeCharacter(
  26547. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26548. {
  26549. front: {
  26550. height: math.unit(12, "feet"),
  26551. weight: math.unit(1, "ton"),
  26552. capacity: math.unit(660000, "gallons"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/zeus/front.svg",
  26556. extra: 5005 / 4717,
  26557. bottom: 363 / 5388
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(12, "feet")
  26565. },
  26566. {
  26567. name: "Preferred Size",
  26568. height: math.unit(0.5, "miles"),
  26569. default: true
  26570. },
  26571. {
  26572. name: "Giga Horse",
  26573. height: math.unit(300, "miles")
  26574. },
  26575. {
  26576. name: "Riding Planets",
  26577. height: math.unit(30, "megameters")
  26578. },
  26579. {
  26580. name: "Cosmic Giant",
  26581. height: math.unit(3, "zettameters")
  26582. },
  26583. {
  26584. name: "Breeding God",
  26585. height: math.unit(9.92e22, "yottameters")
  26586. },
  26587. ]
  26588. ))
  26589. characterMakers.push(() => makeCharacter(
  26590. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26591. {
  26592. side: {
  26593. height: math.unit(9, "feet"),
  26594. weight: math.unit(1500, "kg"),
  26595. name: "Side",
  26596. image: {
  26597. source: "./media/characters/fang/side.svg",
  26598. extra: 924 / 866,
  26599. bottom: 47.5 / 972.3
  26600. }
  26601. },
  26602. },
  26603. [
  26604. {
  26605. name: "Normal",
  26606. height: math.unit(9, "feet"),
  26607. default: true
  26608. },
  26609. {
  26610. name: "Macro",
  26611. height: math.unit(75 + 6 / 12, "feet")
  26612. },
  26613. {
  26614. name: "Teramacro",
  26615. height: math.unit(50000, "miles")
  26616. },
  26617. ]
  26618. ))
  26619. characterMakers.push(() => makeCharacter(
  26620. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26621. {
  26622. front: {
  26623. height: math.unit(10, "feet"),
  26624. weight: math.unit(2, "tons"),
  26625. name: "Front",
  26626. image: {
  26627. source: "./media/characters/rekhit/front.svg",
  26628. extra: 2796 / 2590,
  26629. bottom: 225 / 3022
  26630. }
  26631. },
  26632. },
  26633. [
  26634. {
  26635. name: "Normal",
  26636. height: math.unit(10, "feet"),
  26637. default: true
  26638. },
  26639. {
  26640. name: "Macro",
  26641. height: math.unit(500, "feet")
  26642. },
  26643. ]
  26644. ))
  26645. characterMakers.push(() => makeCharacter(
  26646. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26647. {
  26648. front: {
  26649. height: math.unit(7 + 6.451 / 12, "feet"),
  26650. weight: math.unit(310, "lb"),
  26651. name: "Front",
  26652. image: {
  26653. source: "./media/characters/dahlia-verrick/front.svg",
  26654. extra: 1488 / 1365,
  26655. bottom: 6.2 / 1495
  26656. }
  26657. },
  26658. back: {
  26659. height: math.unit(7 + 6.451 / 12, "feet"),
  26660. weight: math.unit(310, "lb"),
  26661. name: "Back",
  26662. image: {
  26663. source: "./media/characters/dahlia-verrick/back.svg",
  26664. extra: 1472 / 1351,
  26665. bottom: 5.28 / 1477
  26666. }
  26667. },
  26668. frontBusiness: {
  26669. height: math.unit(7 + 6.451 / 12, "feet"),
  26670. weight: math.unit(200, "lb"),
  26671. name: "Front (Business)",
  26672. image: {
  26673. source: "./media/characters/dahlia-verrick/front-business.svg",
  26674. extra: 1478 / 1381,
  26675. bottom: 5.5 / 1484
  26676. }
  26677. },
  26678. frontCasual: {
  26679. height: math.unit(7 + 6.451 / 12, "feet"),
  26680. weight: math.unit(200, "lb"),
  26681. name: "Front (Casual)",
  26682. image: {
  26683. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26684. extra: 1478 / 1381,
  26685. bottom: 5.5 / 1484
  26686. }
  26687. },
  26688. },
  26689. [
  26690. {
  26691. name: "Travel-Sized",
  26692. height: math.unit(7.45, "inches")
  26693. },
  26694. {
  26695. name: "Normal",
  26696. height: math.unit(7 + 6.451 / 12, "feet"),
  26697. default: true
  26698. },
  26699. {
  26700. name: "Hitting the Town",
  26701. height: math.unit(37 + 8 / 12, "feet")
  26702. },
  26703. {
  26704. name: "Stomp in the Suburbs",
  26705. height: math.unit(964 + 9.728 / 12, "feet")
  26706. },
  26707. {
  26708. name: "Sit on the City",
  26709. height: math.unit(61747 + 10.592 / 12, "feet")
  26710. },
  26711. {
  26712. name: "Glomp the Globe",
  26713. height: math.unit(252919327 + 4.832 / 12, "feet")
  26714. },
  26715. ]
  26716. ))
  26717. characterMakers.push(() => makeCharacter(
  26718. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26719. {
  26720. front: {
  26721. height: math.unit(6 + 4 / 12, "feet"),
  26722. weight: math.unit(320, "lb"),
  26723. name: "Front",
  26724. image: {
  26725. source: "./media/characters/balina-mahigan/front.svg",
  26726. extra: 447 / 428,
  26727. bottom: 18 / 466
  26728. }
  26729. },
  26730. back: {
  26731. height: math.unit(6 + 4 / 12, "feet"),
  26732. weight: math.unit(320, "lb"),
  26733. name: "Back",
  26734. image: {
  26735. source: "./media/characters/balina-mahigan/back.svg",
  26736. extra: 445 / 428,
  26737. bottom: 4.07 / 448
  26738. }
  26739. },
  26740. arm: {
  26741. height: math.unit(1.88, "feet"),
  26742. name: "Arm",
  26743. image: {
  26744. source: "./media/characters/balina-mahigan/arm.svg"
  26745. }
  26746. },
  26747. backPort: {
  26748. height: math.unit(0.685, "feet"),
  26749. name: "Back Port",
  26750. image: {
  26751. source: "./media/characters/balina-mahigan/back-port.svg"
  26752. }
  26753. },
  26754. hoofpaw: {
  26755. height: math.unit(1.41, "feet"),
  26756. name: "Hoofpaw",
  26757. image: {
  26758. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26759. }
  26760. },
  26761. leftHandBack: {
  26762. height: math.unit(0.938, "feet"),
  26763. name: "Left Hand (Back)",
  26764. image: {
  26765. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26766. }
  26767. },
  26768. leftHandFront: {
  26769. height: math.unit(0.938, "feet"),
  26770. name: "Left Hand (Front)",
  26771. image: {
  26772. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26773. }
  26774. },
  26775. rightHandBack: {
  26776. height: math.unit(0.95, "feet"),
  26777. name: "Right Hand (Back)",
  26778. image: {
  26779. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26780. }
  26781. },
  26782. rightHandFront: {
  26783. height: math.unit(0.95, "feet"),
  26784. name: "Right Hand (Front)",
  26785. image: {
  26786. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26787. }
  26788. },
  26789. },
  26790. [
  26791. {
  26792. name: "Normal",
  26793. height: math.unit(6 + 4 / 12, "feet"),
  26794. default: true
  26795. },
  26796. ]
  26797. ))
  26798. characterMakers.push(() => makeCharacter(
  26799. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26800. {
  26801. front: {
  26802. height: math.unit(6, "feet"),
  26803. weight: math.unit(320, "lb"),
  26804. name: "Front",
  26805. image: {
  26806. source: "./media/characters/balina-mejeri/front.svg",
  26807. extra: 517 / 488,
  26808. bottom: 44.2 / 561
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Normal",
  26815. height: math.unit(6 + 4 / 12, "feet")
  26816. },
  26817. {
  26818. name: "Business",
  26819. height: math.unit(155, "feet"),
  26820. default: true
  26821. },
  26822. ]
  26823. ))
  26824. characterMakers.push(() => makeCharacter(
  26825. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26826. {
  26827. kneeling: {
  26828. height: math.unit(6 + 4 / 12, "feet"),
  26829. weight: math.unit(300 * 20, "lb"),
  26830. name: "Kneeling",
  26831. image: {
  26832. source: "./media/characters/balbarian/kneeling.svg",
  26833. extra: 922 / 862,
  26834. bottom: 42.4 / 965
  26835. }
  26836. },
  26837. },
  26838. [
  26839. {
  26840. name: "Normal",
  26841. height: math.unit(6 + 4 / 12, "feet")
  26842. },
  26843. {
  26844. name: "Treasured",
  26845. height: math.unit(18 + 9 / 12, "feet"),
  26846. default: true
  26847. },
  26848. {
  26849. name: "Macro",
  26850. height: math.unit(900, "feet")
  26851. },
  26852. ]
  26853. ))
  26854. characterMakers.push(() => makeCharacter(
  26855. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26856. {
  26857. front: {
  26858. height: math.unit(6 + 4 / 12, "feet"),
  26859. weight: math.unit(325, "lb"),
  26860. name: "Front",
  26861. image: {
  26862. source: "./media/characters/balina-amarini/front.svg",
  26863. extra: 415 / 403,
  26864. bottom: 19 / 433.4
  26865. }
  26866. },
  26867. back: {
  26868. height: math.unit(6 + 4 / 12, "feet"),
  26869. weight: math.unit(325, "lb"),
  26870. name: "Back",
  26871. image: {
  26872. source: "./media/characters/balina-amarini/back.svg",
  26873. extra: 415 / 403,
  26874. bottom: 13.5 / 432
  26875. }
  26876. },
  26877. overdrive: {
  26878. height: math.unit(6 + 4 / 12, "feet"),
  26879. weight: math.unit(400, "lb"),
  26880. name: "Overdrive",
  26881. image: {
  26882. source: "./media/characters/balina-amarini/overdrive.svg",
  26883. extra: 269 / 259,
  26884. bottom: 12 / 282
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Boom",
  26891. height: math.unit(9 + 10 / 12, "feet"),
  26892. default: true
  26893. },
  26894. {
  26895. name: "Macro",
  26896. height: math.unit(280, "feet")
  26897. },
  26898. ]
  26899. ))
  26900. characterMakers.push(() => makeCharacter(
  26901. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26902. {
  26903. goddess: {
  26904. height: math.unit(600, "feet"),
  26905. weight: math.unit(2000000, "tons"),
  26906. name: "Goddess",
  26907. image: {
  26908. source: "./media/characters/lady-kubwa/goddess.svg",
  26909. extra: 1240.5 / 1223,
  26910. bottom: 22 / 1263
  26911. }
  26912. },
  26913. goddesser: {
  26914. height: math.unit(900, "feet"),
  26915. weight: math.unit(20000000, "lb"),
  26916. name: "Goddess-er",
  26917. image: {
  26918. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26919. extra: 899 / 888,
  26920. bottom: 12.6 / 912
  26921. }
  26922. },
  26923. },
  26924. [
  26925. {
  26926. name: "Macro",
  26927. height: math.unit(600, "feet"),
  26928. default: true
  26929. },
  26930. {
  26931. name: "Megamacro",
  26932. height: math.unit(250, "miles")
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26938. {
  26939. front: {
  26940. height: math.unit(7 + 7 / 12, "feet"),
  26941. weight: math.unit(250, "lb"),
  26942. name: "Front",
  26943. image: {
  26944. source: "./media/characters/tala-grovehorn/front.svg",
  26945. extra: 2636 / 2525,
  26946. bottom: 147 / 2781
  26947. }
  26948. },
  26949. back: {
  26950. height: math.unit(7 + 7 / 12, "feet"),
  26951. weight: math.unit(250, "lb"),
  26952. name: "Back",
  26953. image: {
  26954. source: "./media/characters/tala-grovehorn/back.svg",
  26955. extra: 2635 / 2539,
  26956. bottom: 100 / 2732.8
  26957. }
  26958. },
  26959. mouth: {
  26960. height: math.unit(1.15, "feet"),
  26961. name: "Mouth",
  26962. image: {
  26963. source: "./media/characters/tala-grovehorn/mouth.svg"
  26964. }
  26965. },
  26966. dick: {
  26967. height: math.unit(2.36, "feet"),
  26968. name: "Dick",
  26969. image: {
  26970. source: "./media/characters/tala-grovehorn/dick.svg"
  26971. }
  26972. },
  26973. slit: {
  26974. height: math.unit(0.61, "feet"),
  26975. name: "Slit",
  26976. image: {
  26977. source: "./media/characters/tala-grovehorn/slit.svg"
  26978. }
  26979. },
  26980. },
  26981. [
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26986. {
  26987. front: {
  26988. height: math.unit(7 + 7 / 12, "feet"),
  26989. weight: math.unit(225, "lb"),
  26990. name: "Front",
  26991. image: {
  26992. source: "./media/characters/epona/front.svg",
  26993. extra: 2445 / 2290,
  26994. bottom: 251 / 2696
  26995. }
  26996. },
  26997. back: {
  26998. height: math.unit(7 + 7 / 12, "feet"),
  26999. weight: math.unit(225, "lb"),
  27000. name: "Back",
  27001. image: {
  27002. source: "./media/characters/epona/back.svg",
  27003. extra: 2546 / 2408,
  27004. bottom: 44 / 2589
  27005. }
  27006. },
  27007. genitals: {
  27008. height: math.unit(1.5, "feet"),
  27009. name: "Genitals",
  27010. image: {
  27011. source: "./media/characters/epona/genitals.svg"
  27012. }
  27013. },
  27014. },
  27015. [
  27016. {
  27017. name: "Normal",
  27018. height: math.unit(7 + 7 / 12, "feet"),
  27019. default: true
  27020. },
  27021. ]
  27022. ))
  27023. characterMakers.push(() => makeCharacter(
  27024. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27025. {
  27026. front: {
  27027. height: math.unit(7, "feet"),
  27028. weight: math.unit(518, "lb"),
  27029. name: "Front",
  27030. image: {
  27031. source: "./media/characters/avia-bloodbourn/front.svg",
  27032. extra: 1466 / 1350,
  27033. bottom: 65 / 1527
  27034. }
  27035. },
  27036. },
  27037. [
  27038. ]
  27039. ))
  27040. characterMakers.push(() => makeCharacter(
  27041. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27042. {
  27043. front: {
  27044. height: math.unit(9.35, "feet"),
  27045. weight: math.unit(600, "lb"),
  27046. name: "Front",
  27047. image: {
  27048. source: "./media/characters/amera/front.svg",
  27049. extra: 891 / 818,
  27050. bottom: 30 / 922.7
  27051. }
  27052. },
  27053. back: {
  27054. height: math.unit(9.35, "feet"),
  27055. weight: math.unit(600, "lb"),
  27056. name: "Back",
  27057. image: {
  27058. source: "./media/characters/amera/back.svg",
  27059. extra: 876 / 824,
  27060. bottom: 6.8 / 884
  27061. }
  27062. },
  27063. dick: {
  27064. height: math.unit(2.14, "feet"),
  27065. name: "Dick",
  27066. image: {
  27067. source: "./media/characters/amera/dick.svg"
  27068. }
  27069. },
  27070. },
  27071. [
  27072. {
  27073. name: "Normal",
  27074. height: math.unit(9.35, "feet"),
  27075. default: true
  27076. },
  27077. ]
  27078. ))
  27079. characterMakers.push(() => makeCharacter(
  27080. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27081. {
  27082. kneeling: {
  27083. height: math.unit(3 + 4 / 12, "feet"),
  27084. weight: math.unit(90, "lb"),
  27085. name: "Kneeling",
  27086. image: {
  27087. source: "./media/characters/rosewen/kneeling.svg",
  27088. extra: 1835 / 1571,
  27089. bottom: 27.7 / 1862
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Normal",
  27096. height: math.unit(3 + 4 / 12, "feet"),
  27097. default: true
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27103. {
  27104. front: {
  27105. height: math.unit(5 + 10 / 12, "feet"),
  27106. weight: math.unit(200, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/sabah/front.svg",
  27110. extra: 849 / 763,
  27111. bottom: 33.9 / 881
  27112. }
  27113. },
  27114. },
  27115. [
  27116. {
  27117. name: "Normal",
  27118. height: math.unit(5 + 10 / 12, "feet"),
  27119. default: true
  27120. },
  27121. ]
  27122. ))
  27123. characterMakers.push(() => makeCharacter(
  27124. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27125. {
  27126. front: {
  27127. height: math.unit(3 + 5 / 12, "feet"),
  27128. weight: math.unit(40, "kg"),
  27129. name: "Front",
  27130. image: {
  27131. source: "./media/characters/purple-flame/front.svg",
  27132. extra: 1577 / 1412,
  27133. bottom: 97 / 1694
  27134. }
  27135. },
  27136. frontDressed: {
  27137. height: math.unit(3 + 5 / 12, "feet"),
  27138. weight: math.unit(40, "kg"),
  27139. name: "Front (Dressed)",
  27140. image: {
  27141. source: "./media/characters/purple-flame/front-dressed.svg",
  27142. extra: 1577 / 1412,
  27143. bottom: 97 / 1694
  27144. }
  27145. },
  27146. headphones: {
  27147. height: math.unit(0.85, "feet"),
  27148. name: "Headphones",
  27149. image: {
  27150. source: "./media/characters/purple-flame/headphones.svg"
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Really Small",
  27157. height: math.unit(5, "cm")
  27158. },
  27159. {
  27160. name: "Micro",
  27161. height: math.unit(1 + 5 / 12, "feet")
  27162. },
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(3 + 5 / 12, "feet"),
  27166. default: true
  27167. },
  27168. {
  27169. name: "Minimacro",
  27170. height: math.unit(125, "feet")
  27171. },
  27172. {
  27173. name: "Macro",
  27174. height: math.unit(0.5, "miles")
  27175. },
  27176. {
  27177. name: "Megamacro",
  27178. height: math.unit(50, "miles")
  27179. },
  27180. {
  27181. name: "Gigantic",
  27182. height: math.unit(750, "miles")
  27183. },
  27184. {
  27185. name: "Planetary",
  27186. height: math.unit(15000, "miles")
  27187. },
  27188. ]
  27189. ))
  27190. characterMakers.push(() => makeCharacter(
  27191. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27192. {
  27193. front: {
  27194. height: math.unit(14, "feet"),
  27195. weight: math.unit(959, "lb"),
  27196. name: "Front",
  27197. image: {
  27198. source: "./media/characters/arsenal/front.svg",
  27199. extra: 2357 / 2157,
  27200. bottom: 93 / 2458
  27201. }
  27202. },
  27203. },
  27204. [
  27205. {
  27206. name: "Normal",
  27207. height: math.unit(14, "feet"),
  27208. default: true
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27214. {
  27215. front: {
  27216. height: math.unit(6, "feet"),
  27217. weight: math.unit(150, "lb"),
  27218. name: "Front",
  27219. image: {
  27220. source: "./media/characters/adira/front.svg",
  27221. extra: 1078 / 1029,
  27222. bottom: 87 / 1166
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Micro",
  27229. height: math.unit(4, "inches"),
  27230. default: true
  27231. },
  27232. {
  27233. name: "Macro",
  27234. height: math.unit(50, "feet")
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(16, "feet"),
  27243. weight: math.unit(1000, "lb"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/grim/front.svg",
  27247. extra: 622 / 614,
  27248. bottom: 18.1 / 642
  27249. }
  27250. },
  27251. back: {
  27252. height: math.unit(16, "feet"),
  27253. weight: math.unit(1000, "lb"),
  27254. name: "Back",
  27255. image: {
  27256. source: "./media/characters/grim/back.svg",
  27257. extra: 610.6 / 602,
  27258. bottom: 40.8 / 652
  27259. }
  27260. },
  27261. hunched: {
  27262. height: math.unit(9.75, "feet"),
  27263. weight: math.unit(1000, "lb"),
  27264. name: "Hunched",
  27265. image: {
  27266. source: "./media/characters/grim/hunched.svg",
  27267. extra: 304 / 297,
  27268. bottom: 35.4 / 394
  27269. }
  27270. },
  27271. },
  27272. [
  27273. {
  27274. name: "Normal",
  27275. height: math.unit(16, "feet"),
  27276. default: true
  27277. },
  27278. ]
  27279. ))
  27280. characterMakers.push(() => makeCharacter(
  27281. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27282. {
  27283. front: {
  27284. height: math.unit(2.3, "meters"),
  27285. weight: math.unit(300, "lb"),
  27286. name: "Front",
  27287. image: {
  27288. source: "./media/characters/sinja/front-sfw.svg",
  27289. extra: 1393 / 1294,
  27290. bottom: 70 / 1463
  27291. }
  27292. },
  27293. frontNsfw: {
  27294. height: math.unit(2.3, "meters"),
  27295. weight: math.unit(300, "lb"),
  27296. name: "Front (NSFW)",
  27297. image: {
  27298. source: "./media/characters/sinja/front-nsfw.svg",
  27299. extra: 1393 / 1294,
  27300. bottom: 70 / 1463
  27301. }
  27302. },
  27303. back: {
  27304. height: math.unit(2.3, "meters"),
  27305. weight: math.unit(300, "lb"),
  27306. name: "Back",
  27307. image: {
  27308. source: "./media/characters/sinja/back.svg",
  27309. extra: 1393 / 1294,
  27310. bottom: 70 / 1463
  27311. }
  27312. },
  27313. head: {
  27314. height: math.unit(1.771, "feet"),
  27315. name: "Head",
  27316. image: {
  27317. source: "./media/characters/sinja/head.svg"
  27318. }
  27319. },
  27320. slit: {
  27321. height: math.unit(0.8, "feet"),
  27322. name: "Slit",
  27323. image: {
  27324. source: "./media/characters/sinja/slit.svg"
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(2.3, "meters")
  27332. },
  27333. {
  27334. name: "Macro",
  27335. height: math.unit(91, "meters"),
  27336. default: true
  27337. },
  27338. {
  27339. name: "Megamacro",
  27340. height: math.unit(91440, "meters")
  27341. },
  27342. {
  27343. name: "Gigamacro",
  27344. height: math.unit(60960000, "meters")
  27345. },
  27346. {
  27347. name: "Teramacro",
  27348. height: math.unit(9144000000, "meters")
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27354. {
  27355. front: {
  27356. height: math.unit(1.7, "meters"),
  27357. weight: math.unit(130, "lb"),
  27358. name: "Front",
  27359. image: {
  27360. source: "./media/characters/kyu/front.svg",
  27361. extra: 415 / 395,
  27362. bottom: 5 / 420
  27363. }
  27364. },
  27365. head: {
  27366. height: math.unit(1.75, "feet"),
  27367. name: "Head",
  27368. image: {
  27369. source: "./media/characters/kyu/head.svg"
  27370. }
  27371. },
  27372. foot: {
  27373. height: math.unit(0.81, "feet"),
  27374. name: "Foot",
  27375. image: {
  27376. source: "./media/characters/kyu/foot.svg"
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Normal",
  27383. height: math.unit(1.7, "meters")
  27384. },
  27385. {
  27386. name: "Macro",
  27387. height: math.unit(131, "feet"),
  27388. default: true
  27389. },
  27390. {
  27391. name: "Megamacro",
  27392. height: math.unit(91440, "meters")
  27393. },
  27394. {
  27395. name: "Gigamacro",
  27396. height: math.unit(60960000, "meters")
  27397. },
  27398. {
  27399. name: "Teramacro",
  27400. height: math.unit(9144000000, "meters")
  27401. },
  27402. ]
  27403. ))
  27404. characterMakers.push(() => makeCharacter(
  27405. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27406. {
  27407. front: {
  27408. height: math.unit(7 + 1 / 12, "feet"),
  27409. weight: math.unit(250, "lb"),
  27410. name: "Front",
  27411. image: {
  27412. source: "./media/characters/joey/front.svg",
  27413. extra: 1791 / 1537,
  27414. bottom: 28 / 1816
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Micro",
  27421. height: math.unit(3, "inches")
  27422. },
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(7 + 1 / 12, "feet"),
  27426. default: true
  27427. },
  27428. ]
  27429. ))
  27430. characterMakers.push(() => makeCharacter(
  27431. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27432. {
  27433. front: {
  27434. height: math.unit(165, "cm"),
  27435. weight: math.unit(140, "lb"),
  27436. name: "Front",
  27437. image: {
  27438. source: "./media/characters/sam-evans/front.svg",
  27439. extra: 3417 / 3230,
  27440. bottom: 41.3 / 3417
  27441. }
  27442. },
  27443. frontSixTails: {
  27444. height: math.unit(165, "cm"),
  27445. weight: math.unit(140, "lb"),
  27446. name: "Front-six-tails",
  27447. image: {
  27448. source: "./media/characters/sam-evans/front-six-tails.svg",
  27449. extra: 3417 / 3230,
  27450. bottom: 41.3 / 3417
  27451. }
  27452. },
  27453. back: {
  27454. height: math.unit(165, "cm"),
  27455. weight: math.unit(140, "lb"),
  27456. name: "Back",
  27457. image: {
  27458. source: "./media/characters/sam-evans/back.svg",
  27459. extra: 3227 / 3032,
  27460. bottom: 6.8 / 3234
  27461. }
  27462. },
  27463. face: {
  27464. height: math.unit(0.68, "feet"),
  27465. name: "Face",
  27466. image: {
  27467. source: "./media/characters/sam-evans/face.svg"
  27468. }
  27469. },
  27470. },
  27471. [
  27472. {
  27473. name: "Normal",
  27474. height: math.unit(165, "cm"),
  27475. default: true
  27476. },
  27477. {
  27478. name: "Macro",
  27479. height: math.unit(100, "meters")
  27480. },
  27481. {
  27482. name: "Macro+",
  27483. height: math.unit(800, "meters")
  27484. },
  27485. {
  27486. name: "Macro++",
  27487. height: math.unit(3, "km")
  27488. },
  27489. {
  27490. name: "Macro+++",
  27491. height: math.unit(30, "km")
  27492. },
  27493. ]
  27494. ))
  27495. characterMakers.push(() => makeCharacter(
  27496. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27497. {
  27498. front: {
  27499. height: math.unit(10, "feet"),
  27500. weight: math.unit(750, "lb"),
  27501. name: "Front",
  27502. image: {
  27503. source: "./media/characters/juliet-a/front.svg",
  27504. extra: 1766 / 1720,
  27505. bottom: 43 / 1809
  27506. }
  27507. },
  27508. back: {
  27509. height: math.unit(10, "feet"),
  27510. weight: math.unit(750, "lb"),
  27511. name: "Back",
  27512. image: {
  27513. source: "./media/characters/juliet-a/back.svg",
  27514. extra: 1781 / 1734,
  27515. bottom: 35 / 1810,
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Normal",
  27522. height: math.unit(10, "feet"),
  27523. default: true
  27524. },
  27525. {
  27526. name: "Dragon Form",
  27527. height: math.unit(250, "feet")
  27528. },
  27529. {
  27530. name: "Macro",
  27531. height: math.unit(1000, "feet")
  27532. },
  27533. {
  27534. name: "Megamacro",
  27535. height: math.unit(10000, "feet")
  27536. }
  27537. ]
  27538. ))
  27539. characterMakers.push(() => makeCharacter(
  27540. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27541. {
  27542. regular: {
  27543. height: math.unit(7 + 3 / 12, "feet"),
  27544. weight: math.unit(260, "lb"),
  27545. name: "Regular",
  27546. image: {
  27547. source: "./media/characters/wild/regular.svg",
  27548. extra: 97.45 / 92,
  27549. bottom: 6.8 / 104.3
  27550. }
  27551. },
  27552. biggums: {
  27553. height: math.unit(8 + 6 / 12, "feet"),
  27554. weight: math.unit(425, "lb"),
  27555. name: "Biggums",
  27556. image: {
  27557. source: "./media/characters/wild/biggums.svg",
  27558. extra: 97.45 / 92,
  27559. bottom: 7.5 / 132.34
  27560. }
  27561. },
  27562. mawRegular: {
  27563. height: math.unit(1.24, "feet"),
  27564. name: "Maw (Regular)",
  27565. image: {
  27566. source: "./media/characters/wild/maw.svg"
  27567. }
  27568. },
  27569. mawBiggums: {
  27570. height: math.unit(1.47, "feet"),
  27571. name: "Maw (Biggums)",
  27572. image: {
  27573. source: "./media/characters/wild/maw.svg"
  27574. }
  27575. },
  27576. },
  27577. [
  27578. {
  27579. name: "Normal",
  27580. height: math.unit(7 + 3 / 12, "feet"),
  27581. default: true
  27582. },
  27583. ]
  27584. ))
  27585. characterMakers.push(() => makeCharacter(
  27586. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27587. {
  27588. front: {
  27589. height: math.unit(2.5, "meters"),
  27590. weight: math.unit(200, "kg"),
  27591. name: "Front",
  27592. image: {
  27593. source: "./media/characters/vidar/front.svg",
  27594. extra: 2994 / 2795,
  27595. bottom: 56 / 3061
  27596. }
  27597. },
  27598. back: {
  27599. height: math.unit(2.5, "meters"),
  27600. weight: math.unit(200, "kg"),
  27601. name: "Back",
  27602. image: {
  27603. source: "./media/characters/vidar/back.svg",
  27604. extra: 3131 / 2928,
  27605. bottom: 13.5 / 3141.5
  27606. }
  27607. },
  27608. feral: {
  27609. height: math.unit(2.5, "meters"),
  27610. weight: math.unit(2000, "kg"),
  27611. name: "Feral",
  27612. image: {
  27613. source: "./media/characters/vidar/feral.svg",
  27614. extra: 2790 / 1765,
  27615. bottom: 6 / 2796
  27616. }
  27617. },
  27618. },
  27619. [
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(2.5, "meters"),
  27623. default: true
  27624. },
  27625. {
  27626. name: "Macro",
  27627. height: math.unit(100, "meters")
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27633. {
  27634. front: {
  27635. height: math.unit(5 + 9 / 12, "feet"),
  27636. weight: math.unit(120, "lb"),
  27637. name: "Front",
  27638. image: {
  27639. source: "./media/characters/ash/front.svg",
  27640. extra: 2189 / 1961,
  27641. bottom: 5.2 / 2194
  27642. }
  27643. },
  27644. },
  27645. [
  27646. {
  27647. name: "Normal",
  27648. height: math.unit(5 + 9 / 12, "feet"),
  27649. default: true
  27650. },
  27651. ]
  27652. ))
  27653. characterMakers.push(() => makeCharacter(
  27654. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27655. {
  27656. front: {
  27657. height: math.unit(9, "feet"),
  27658. weight: math.unit(10000, "lb"),
  27659. name: "Front",
  27660. image: {
  27661. source: "./media/characters/gygabite/front.svg",
  27662. bottom: 31.7 / 537.8,
  27663. extra: 505 / 370
  27664. }
  27665. },
  27666. },
  27667. [
  27668. {
  27669. name: "Normal",
  27670. height: math.unit(9, "feet"),
  27671. default: true
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27677. {
  27678. front: {
  27679. height: math.unit(12, "feet"),
  27680. weight: math.unit(35000, "lb"),
  27681. name: "Front",
  27682. image: {
  27683. source: "./media/characters/p0tat0/front.svg",
  27684. extra: 1065 / 921,
  27685. bottom: 55.7 / 1121.25
  27686. }
  27687. },
  27688. },
  27689. [
  27690. {
  27691. name: "Normal",
  27692. height: math.unit(12, "feet"),
  27693. default: true
  27694. },
  27695. ]
  27696. ))
  27697. characterMakers.push(() => makeCharacter(
  27698. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27699. {
  27700. side: {
  27701. height: math.unit(6.5, "feet"),
  27702. weight: math.unit(800, "lb"),
  27703. name: "Side",
  27704. image: {
  27705. source: "./media/characters/dusk/side.svg",
  27706. extra: 615 / 373,
  27707. bottom: 53 / 664
  27708. }
  27709. },
  27710. sitting: {
  27711. height: math.unit(7, "feet"),
  27712. weight: math.unit(800, "lb"),
  27713. name: "Sitting",
  27714. image: {
  27715. source: "./media/characters/dusk/sitting.svg",
  27716. extra: 753 / 425,
  27717. bottom: 33 / 774
  27718. }
  27719. },
  27720. head: {
  27721. height: math.unit(6.1, "feet"),
  27722. name: "Head",
  27723. image: {
  27724. source: "./media/characters/dusk/head.svg"
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Normal",
  27731. height: math.unit(7, "feet"),
  27732. default: true
  27733. },
  27734. ]
  27735. ))
  27736. characterMakers.push(() => makeCharacter(
  27737. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27738. {
  27739. front: {
  27740. height: math.unit(15, "feet"),
  27741. weight: math.unit(7000, "lb"),
  27742. name: "Front",
  27743. image: {
  27744. source: "./media/characters/jay-direwolf/front.svg",
  27745. extra: 1810 / 1732,
  27746. bottom: 66 / 1892
  27747. }
  27748. },
  27749. },
  27750. [
  27751. {
  27752. name: "Normal",
  27753. height: math.unit(15, "feet"),
  27754. default: true
  27755. },
  27756. ]
  27757. ))
  27758. characterMakers.push(() => makeCharacter(
  27759. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27760. {
  27761. front: {
  27762. height: math.unit(4 + 9 / 12, "feet"),
  27763. weight: math.unit(130, "lb"),
  27764. name: "Front",
  27765. image: {
  27766. source: "./media/characters/anchovie/front.svg",
  27767. extra: 382 / 350,
  27768. bottom: 25 / 409
  27769. }
  27770. },
  27771. back: {
  27772. height: math.unit(4 + 9 / 12, "feet"),
  27773. weight: math.unit(130, "lb"),
  27774. name: "Back",
  27775. image: {
  27776. source: "./media/characters/anchovie/back.svg",
  27777. extra: 385 / 352,
  27778. bottom: 16.6 / 402
  27779. }
  27780. },
  27781. frontDressed: {
  27782. height: math.unit(4 + 9 / 12, "feet"),
  27783. weight: math.unit(130, "lb"),
  27784. name: "Front (Dressed)",
  27785. image: {
  27786. source: "./media/characters/anchovie/front-dressed.svg",
  27787. extra: 382 / 350,
  27788. bottom: 25 / 409
  27789. }
  27790. },
  27791. backDressed: {
  27792. height: math.unit(4 + 9 / 12, "feet"),
  27793. weight: math.unit(130, "lb"),
  27794. name: "Back (Dressed)",
  27795. image: {
  27796. source: "./media/characters/anchovie/back-dressed.svg",
  27797. extra: 385 / 352,
  27798. bottom: 16.6 / 402
  27799. }
  27800. },
  27801. },
  27802. [
  27803. {
  27804. name: "Micro",
  27805. height: math.unit(6.4, "inches")
  27806. },
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(4 + 9 / 12, "feet"),
  27810. default: true
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27816. {
  27817. front: {
  27818. height: math.unit(2, "meters"),
  27819. weight: math.unit(180, "lb"),
  27820. name: "Front",
  27821. image: {
  27822. source: "./media/characters/acidrenamon/front.svg",
  27823. extra: 987 / 890,
  27824. bottom: 22.8 / 1009
  27825. }
  27826. },
  27827. back: {
  27828. height: math.unit(2, "meters"),
  27829. weight: math.unit(180, "lb"),
  27830. name: "Back",
  27831. image: {
  27832. source: "./media/characters/acidrenamon/back.svg",
  27833. extra: 983 / 891,
  27834. bottom: 8.4 / 992
  27835. }
  27836. },
  27837. head: {
  27838. height: math.unit(1.92, "feet"),
  27839. name: "Head",
  27840. image: {
  27841. source: "./media/characters/acidrenamon/head.svg"
  27842. }
  27843. },
  27844. rump: {
  27845. height: math.unit(1.72, "feet"),
  27846. name: "Rump",
  27847. image: {
  27848. source: "./media/characters/acidrenamon/rump.svg"
  27849. }
  27850. },
  27851. tail: {
  27852. height: math.unit(4.2, "feet"),
  27853. name: "Tail",
  27854. image: {
  27855. source: "./media/characters/acidrenamon/tail.svg"
  27856. }
  27857. },
  27858. },
  27859. [
  27860. {
  27861. name: "Normal",
  27862. height: math.unit(2, "meters"),
  27863. default: true
  27864. },
  27865. {
  27866. name: "Minimacro",
  27867. height: math.unit(7, "meters")
  27868. },
  27869. {
  27870. name: "Macro",
  27871. height: math.unit(200, "meters")
  27872. },
  27873. {
  27874. name: "Gigamacro",
  27875. height: math.unit(0.2, "earths")
  27876. },
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(152, "feet"),
  27884. name: "Front",
  27885. image: {
  27886. source: "./media/characters/kenzie-lee/front.svg",
  27887. extra: 1869/1774,
  27888. bottom: 128/1997
  27889. }
  27890. },
  27891. side: {
  27892. height: math.unit(86, "feet"),
  27893. name: "Side",
  27894. image: {
  27895. source: "./media/characters/kenzie-lee/side.svg",
  27896. extra: 930/815,
  27897. bottom: 177/1107
  27898. }
  27899. },
  27900. paw: {
  27901. height: math.unit(15, "feet"),
  27902. name: "Paw",
  27903. image: {
  27904. source: "./media/characters/kenzie-lee/paw.svg"
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Micro",
  27911. height: math.unit(1.5, "inches")
  27912. },
  27913. {
  27914. name: "Normal",
  27915. height: math.unit(152, "feet"),
  27916. default: true
  27917. },
  27918. {
  27919. name: "Megamacro",
  27920. height: math.unit(7, "miles")
  27921. },
  27922. {
  27923. name: "Gigamacro",
  27924. height: math.unit(8000, "miles")
  27925. },
  27926. ]
  27927. ))
  27928. characterMakers.push(() => makeCharacter(
  27929. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27930. {
  27931. side: {
  27932. height: math.unit(6, "feet"),
  27933. weight: math.unit(150, "lb"),
  27934. name: "Side",
  27935. image: {
  27936. source: "./media/characters/withers/side.svg",
  27937. extra: 1830 / 1728,
  27938. bottom: 96 / 1927
  27939. }
  27940. },
  27941. front: {
  27942. height: math.unit(6, "feet"),
  27943. weight: math.unit(150, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/withers/front.svg",
  27947. extra: 1514 / 1438,
  27948. bottom: 118 / 1632
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Macro",
  27955. height: math.unit(168, "feet"),
  27956. default: true
  27957. },
  27958. {
  27959. name: "Megamacro",
  27960. height: math.unit(15, "miles")
  27961. }
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27966. {
  27967. front: {
  27968. height: math.unit(6 + 7 / 12, "feet"),
  27969. weight: math.unit(250, "lb"),
  27970. name: "Front",
  27971. image: {
  27972. source: "./media/characters/nemoskii/front.svg",
  27973. extra: 2270 / 1734,
  27974. bottom: 86 / 2354
  27975. }
  27976. },
  27977. back: {
  27978. height: math.unit(6 + 7 / 12, "feet"),
  27979. weight: math.unit(250, "lb"),
  27980. name: "Back",
  27981. image: {
  27982. source: "./media/characters/nemoskii/back.svg",
  27983. extra: 1845 / 1788,
  27984. bottom: 10.5 / 1852
  27985. }
  27986. },
  27987. head: {
  27988. height: math.unit(1.31, "feet"),
  27989. name: "Head",
  27990. image: {
  27991. source: "./media/characters/nemoskii/head.svg"
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Micro",
  27998. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27999. },
  28000. {
  28001. name: "Normal",
  28002. height: math.unit(6 + 7 / 12, "feet"),
  28003. default: true
  28004. },
  28005. {
  28006. name: "Macro",
  28007. height: math.unit((6 + 7 / 12) * 150, "feet")
  28008. },
  28009. {
  28010. name: "Macro+",
  28011. height: math.unit((6 + 7 / 12) * 500, "feet")
  28012. },
  28013. {
  28014. name: "Megamacro",
  28015. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28016. },
  28017. ]
  28018. ))
  28019. characterMakers.push(() => makeCharacter(
  28020. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28021. {
  28022. front: {
  28023. height: math.unit(1, "mile"),
  28024. weight: math.unit(265261.9, "lb"),
  28025. name: "Front",
  28026. image: {
  28027. source: "./media/characters/shui/front.svg",
  28028. extra: 1633 / 1564,
  28029. bottom: 91.5 / 1726
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Macro",
  28036. height: math.unit(1, "mile"),
  28037. default: true
  28038. },
  28039. ]
  28040. ))
  28041. characterMakers.push(() => makeCharacter(
  28042. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28043. {
  28044. front: {
  28045. height: math.unit(12 + 6 / 12, "feet"),
  28046. weight: math.unit(1342, "lb"),
  28047. name: "Front",
  28048. image: {
  28049. source: "./media/characters/arokh-takakura/front.svg",
  28050. extra: 1089 / 1043,
  28051. bottom: 77.4 / 1176.7
  28052. }
  28053. },
  28054. back: {
  28055. height: math.unit(12 + 6 / 12, "feet"),
  28056. weight: math.unit(1342, "lb"),
  28057. name: "Back",
  28058. image: {
  28059. source: "./media/characters/arokh-takakura/back.svg",
  28060. extra: 1046 / 1019,
  28061. bottom: 102 / 1150
  28062. }
  28063. },
  28064. },
  28065. [
  28066. {
  28067. name: "Big",
  28068. height: math.unit(12 + 6 / 12, "feet"),
  28069. default: true
  28070. },
  28071. ]
  28072. ))
  28073. characterMakers.push(() => makeCharacter(
  28074. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28075. {
  28076. front: {
  28077. height: math.unit(5 + 6 / 12, "feet"),
  28078. weight: math.unit(150, "lb"),
  28079. name: "Front",
  28080. image: {
  28081. source: "./media/characters/theo/front.svg",
  28082. extra: 1184 / 1131,
  28083. bottom: 7.4 / 1191
  28084. }
  28085. },
  28086. },
  28087. [
  28088. {
  28089. name: "Micro",
  28090. height: math.unit(5, "inches")
  28091. },
  28092. {
  28093. name: "Normal",
  28094. height: math.unit(5 + 6 / 12, "feet"),
  28095. default: true
  28096. },
  28097. ]
  28098. ))
  28099. characterMakers.push(() => makeCharacter(
  28100. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28101. {
  28102. front: {
  28103. height: math.unit(5 + 9 / 12, "feet"),
  28104. weight: math.unit(130, "lb"),
  28105. name: "Front",
  28106. image: {
  28107. source: "./media/characters/cecelia-swift/front.svg",
  28108. extra: 502 / 484,
  28109. bottom: 23 / 523
  28110. }
  28111. },
  28112. back: {
  28113. height: math.unit(5 + 9 / 12, "feet"),
  28114. weight: math.unit(130, "lb"),
  28115. name: "Back",
  28116. image: {
  28117. source: "./media/characters/cecelia-swift/back.svg",
  28118. extra: 499 / 485,
  28119. bottom: 12 / 511
  28120. }
  28121. },
  28122. head: {
  28123. height: math.unit(0.90, "feet"),
  28124. name: "Head",
  28125. image: {
  28126. source: "./media/characters/cecelia-swift/head.svg"
  28127. }
  28128. },
  28129. rump: {
  28130. height: math.unit(1.75, "feet"),
  28131. name: "Rump",
  28132. image: {
  28133. source: "./media/characters/cecelia-swift/rump.svg"
  28134. }
  28135. },
  28136. },
  28137. [
  28138. {
  28139. name: "Normal",
  28140. height: math.unit(5 + 9 / 12, "feet"),
  28141. default: true
  28142. },
  28143. {
  28144. name: "Big",
  28145. height: math.unit(50, "feet")
  28146. },
  28147. {
  28148. name: "Macro",
  28149. height: math.unit(100, "feet")
  28150. },
  28151. {
  28152. name: "Macro+",
  28153. height: math.unit(500, "feet")
  28154. },
  28155. {
  28156. name: "Macro++",
  28157. height: math.unit(1000, "feet")
  28158. },
  28159. ]
  28160. ))
  28161. characterMakers.push(() => makeCharacter(
  28162. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28163. {
  28164. front: {
  28165. height: math.unit(6, "feet"),
  28166. weight: math.unit(150, "lb"),
  28167. name: "Front",
  28168. image: {
  28169. source: "./media/characters/kaunan/front.svg",
  28170. extra: 2890 / 2523,
  28171. bottom: 49 / 2939
  28172. }
  28173. },
  28174. },
  28175. [
  28176. {
  28177. name: "Macro",
  28178. height: math.unit(150, "feet"),
  28179. default: true
  28180. },
  28181. ]
  28182. ))
  28183. characterMakers.push(() => makeCharacter(
  28184. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28185. {
  28186. front: {
  28187. height: math.unit(175, "cm"),
  28188. weight: math.unit(60, "kg"),
  28189. name: "Front",
  28190. image: {
  28191. source: "./media/characters/fei/front.svg",
  28192. extra: 1873/1723,
  28193. bottom: 53/1926
  28194. }
  28195. },
  28196. },
  28197. [
  28198. {
  28199. name: "Mortal",
  28200. height: math.unit(175, "cm")
  28201. },
  28202. {
  28203. name: "Normal",
  28204. height: math.unit(3500, "m"),
  28205. default: true
  28206. },
  28207. {
  28208. name: "Stroll",
  28209. height: math.unit(17.5, "km")
  28210. },
  28211. {
  28212. name: "Showoff",
  28213. height: math.unit(175, "km")
  28214. },
  28215. ]
  28216. ))
  28217. characterMakers.push(() => makeCharacter(
  28218. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28219. {
  28220. front: {
  28221. height: math.unit(7, "feet"),
  28222. weight: math.unit(1000, "kg"),
  28223. name: "Front",
  28224. image: {
  28225. source: "./media/characters/edrax/front.svg",
  28226. extra: 2838 / 2550,
  28227. bottom: 130 / 2968
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Small",
  28234. height: math.unit(7, "feet")
  28235. },
  28236. {
  28237. name: "Normal",
  28238. height: math.unit(1500, "meters")
  28239. },
  28240. {
  28241. name: "Mega",
  28242. height: math.unit(12000000, "km"),
  28243. default: true
  28244. },
  28245. {
  28246. name: "Megamacro",
  28247. height: math.unit(10600000, "lightyears")
  28248. },
  28249. {
  28250. name: "Hypermacro",
  28251. height: math.unit(256, "yottameters")
  28252. },
  28253. ]
  28254. ))
  28255. characterMakers.push(() => makeCharacter(
  28256. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28257. {
  28258. front: {
  28259. height: math.unit(10, "feet"),
  28260. weight: math.unit(750, "lb"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/clove/front.svg",
  28264. extra: 1918/1751,
  28265. bottom: 52/1970
  28266. }
  28267. },
  28268. back: {
  28269. height: math.unit(10, "feet"),
  28270. weight: math.unit(750, "lb"),
  28271. name: "Back",
  28272. image: {
  28273. source: "./media/characters/clove/back.svg",
  28274. extra: 1912/1747,
  28275. bottom: 50/1962
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(10, "feet"),
  28283. default: true
  28284. },
  28285. ]
  28286. ))
  28287. characterMakers.push(() => makeCharacter(
  28288. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28289. {
  28290. front: {
  28291. height: math.unit(4, "feet"),
  28292. weight: math.unit(50, "lb"),
  28293. name: "Front",
  28294. image: {
  28295. source: "./media/characters/alex-rabbit/front.svg",
  28296. extra: 507 / 458,
  28297. bottom: 18.5 / 527
  28298. }
  28299. },
  28300. back: {
  28301. height: math.unit(4, "feet"),
  28302. weight: math.unit(50, "lb"),
  28303. name: "Back",
  28304. image: {
  28305. source: "./media/characters/alex-rabbit/back.svg",
  28306. extra: 502 / 460,
  28307. bottom: 18.9 / 521
  28308. }
  28309. },
  28310. },
  28311. [
  28312. {
  28313. name: "Normal",
  28314. height: math.unit(4, "feet"),
  28315. default: true
  28316. },
  28317. ]
  28318. ))
  28319. characterMakers.push(() => makeCharacter(
  28320. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28321. {
  28322. front: {
  28323. height: math.unit(1 + 3 / 12, "feet"),
  28324. weight: math.unit(80, "lb"),
  28325. name: "Front",
  28326. image: {
  28327. source: "./media/characters/zander-rose/front.svg",
  28328. extra: 916 / 797,
  28329. bottom: 17 / 933
  28330. }
  28331. },
  28332. back: {
  28333. height: math.unit(1 + 3 / 12, "feet"),
  28334. weight: math.unit(80, "lb"),
  28335. name: "Back",
  28336. image: {
  28337. source: "./media/characters/zander-rose/back.svg",
  28338. extra: 903 / 779,
  28339. bottom: 31 / 934
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Normal",
  28346. height: math.unit(1 + 3 / 12, "feet"),
  28347. default: true
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28353. {
  28354. anthro: {
  28355. height: math.unit(6, "feet"),
  28356. weight: math.unit(150, "lb"),
  28357. name: "Anthro",
  28358. image: {
  28359. source: "./media/characters/razz/anthro.svg",
  28360. extra: 1437 / 1343,
  28361. bottom: 48 / 1485
  28362. }
  28363. },
  28364. feral: {
  28365. height: math.unit(6, "feet"),
  28366. weight: math.unit(150, "lb"),
  28367. name: "Feral",
  28368. image: {
  28369. source: "./media/characters/razz/feral.svg",
  28370. extra: 2569 / 1385,
  28371. bottom: 95 / 2664
  28372. }
  28373. },
  28374. },
  28375. [
  28376. {
  28377. name: "Normal",
  28378. height: math.unit(6, "feet"),
  28379. default: true
  28380. },
  28381. ]
  28382. ))
  28383. characterMakers.push(() => makeCharacter(
  28384. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28385. {
  28386. front: {
  28387. height: math.unit(9 + 4 / 12, "feet"),
  28388. weight: math.unit(500, "lb"),
  28389. name: "Front",
  28390. image: {
  28391. source: "./media/characters/morrigan/front.svg",
  28392. extra: 2707 / 2579,
  28393. bottom: 156 / 2863
  28394. }
  28395. },
  28396. },
  28397. [
  28398. {
  28399. name: "Normal",
  28400. height: math.unit(9 + 4 / 12, "feet"),
  28401. default: true
  28402. },
  28403. ]
  28404. ))
  28405. characterMakers.push(() => makeCharacter(
  28406. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28407. {
  28408. front: {
  28409. height: math.unit(5, "stories"),
  28410. weight: math.unit(4000, "lb"),
  28411. name: "Front",
  28412. image: {
  28413. source: "./media/characters/jenene/front.svg",
  28414. extra: 1780 / 1710,
  28415. bottom: 57 / 1837
  28416. }
  28417. },
  28418. },
  28419. [
  28420. {
  28421. name: "Normal",
  28422. height: math.unit(5, "stories"),
  28423. default: true
  28424. },
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28429. {
  28430. taurSfw: {
  28431. height: math.unit(10, "meters"),
  28432. weight: math.unit(17500, "kg"),
  28433. name: "Taur",
  28434. image: {
  28435. source: "./media/characters/faey/taur-sfw.svg",
  28436. extra: 1200 / 968,
  28437. bottom: 41 / 1241
  28438. }
  28439. },
  28440. chestmaw: {
  28441. height: math.unit(2.01, "meters"),
  28442. name: "Chestmaw",
  28443. image: {
  28444. source: "./media/characters/faey/chestmaw.svg"
  28445. }
  28446. },
  28447. foot: {
  28448. height: math.unit(2.43, "meters"),
  28449. name: "Foot",
  28450. image: {
  28451. source: "./media/characters/faey/foot.svg"
  28452. }
  28453. },
  28454. jaws: {
  28455. height: math.unit(1.66, "meters"),
  28456. name: "Jaws",
  28457. image: {
  28458. source: "./media/characters/faey/jaws.svg"
  28459. }
  28460. },
  28461. tongues: {
  28462. height: math.unit(2.01, "meters"),
  28463. name: "Tongues",
  28464. image: {
  28465. source: "./media/characters/faey/tongues.svg"
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Small",
  28472. height: math.unit(10, "meters"),
  28473. default: true
  28474. },
  28475. {
  28476. name: "Big",
  28477. height: math.unit(500000, "km")
  28478. },
  28479. ]
  28480. ))
  28481. characterMakers.push(() => makeCharacter(
  28482. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28483. {
  28484. front: {
  28485. height: math.unit(7, "feet"),
  28486. weight: math.unit(275, "lb"),
  28487. name: "Front",
  28488. image: {
  28489. source: "./media/characters/roku/front.svg",
  28490. extra: 903 / 878,
  28491. bottom: 37 / 940
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(7, "feet"),
  28499. default: true
  28500. },
  28501. {
  28502. name: "Macro",
  28503. height: math.unit(500, "feet")
  28504. },
  28505. {
  28506. name: "Megamacro",
  28507. height: math.unit(200, "miles")
  28508. },
  28509. ]
  28510. ))
  28511. characterMakers.push(() => makeCharacter(
  28512. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28513. {
  28514. front: {
  28515. height: math.unit(6 + 2 / 12, "feet"),
  28516. weight: math.unit(150, "lb"),
  28517. name: "Front",
  28518. image: {
  28519. source: "./media/characters/lira/front.svg",
  28520. extra: 1727 / 1605,
  28521. bottom: 26 / 1753
  28522. }
  28523. },
  28524. back: {
  28525. height: math.unit(6 + 2 / 12, "feet"),
  28526. weight: math.unit(150, "lb"),
  28527. name: "Back",
  28528. image: {
  28529. source: "./media/characters/lira/back.svg",
  28530. extra: 1713/1621,
  28531. bottom: 20/1733
  28532. }
  28533. },
  28534. hand: {
  28535. height: math.unit(0.75, "feet"),
  28536. name: "Hand",
  28537. image: {
  28538. source: "./media/characters/lira/hand.svg"
  28539. }
  28540. },
  28541. maw: {
  28542. height: math.unit(0.65, "feet"),
  28543. name: "Maw",
  28544. image: {
  28545. source: "./media/characters/lira/maw.svg"
  28546. }
  28547. },
  28548. pawDigi: {
  28549. height: math.unit(1.6, "feet"),
  28550. name: "Paw Digi",
  28551. image: {
  28552. source: "./media/characters/lira/paw-digi.svg"
  28553. }
  28554. },
  28555. pawPlanti: {
  28556. height: math.unit(1.4, "feet"),
  28557. name: "Paw Planti",
  28558. image: {
  28559. source: "./media/characters/lira/paw-planti.svg"
  28560. }
  28561. },
  28562. },
  28563. [
  28564. {
  28565. name: "Normal",
  28566. height: math.unit(6 + 2 / 12, "feet"),
  28567. default: true
  28568. },
  28569. {
  28570. name: "Macro",
  28571. height: math.unit(100, "feet")
  28572. },
  28573. {
  28574. name: "Macro²",
  28575. height: math.unit(1600, "feet")
  28576. },
  28577. {
  28578. name: "Planetary",
  28579. height: math.unit(20, "earths")
  28580. },
  28581. ]
  28582. ))
  28583. characterMakers.push(() => makeCharacter(
  28584. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28585. {
  28586. front: {
  28587. height: math.unit(6, "feet"),
  28588. weight: math.unit(150, "lb"),
  28589. name: "Front",
  28590. image: {
  28591. source: "./media/characters/hadjet/front.svg",
  28592. extra: 1480 / 1346,
  28593. bottom: 26 / 1506
  28594. }
  28595. },
  28596. frontNsfw: {
  28597. height: math.unit(6, "feet"),
  28598. weight: math.unit(150, "lb"),
  28599. name: "Front (NSFW)",
  28600. image: {
  28601. source: "./media/characters/hadjet/front-nsfw.svg",
  28602. extra: 1440 / 1358,
  28603. bottom: 52 / 1492
  28604. }
  28605. },
  28606. },
  28607. [
  28608. {
  28609. name: "Macro",
  28610. height: math.unit(10, "stories"),
  28611. default: true
  28612. },
  28613. {
  28614. name: "Megamacro",
  28615. height: math.unit(1.5, "miles")
  28616. },
  28617. {
  28618. name: "Megamacro+",
  28619. height: math.unit(5, "miles")
  28620. },
  28621. ]
  28622. ))
  28623. characterMakers.push(() => makeCharacter(
  28624. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28625. {
  28626. side: {
  28627. height: math.unit(106, "feet"),
  28628. weight: math.unit(500, "tonnes"),
  28629. name: "Side",
  28630. image: {
  28631. source: "./media/characters/kodran/side.svg",
  28632. extra: 553 / 480,
  28633. bottom: 33 / 586
  28634. }
  28635. },
  28636. front: {
  28637. height: math.unit(132, "feet"),
  28638. weight: math.unit(500, "tonnes"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/kodran/front.svg",
  28642. extra: 667 / 643,
  28643. bottom: 42 / 709
  28644. }
  28645. },
  28646. flying: {
  28647. height: math.unit(350, "feet"),
  28648. weight: math.unit(500, "tonnes"),
  28649. name: "Flying",
  28650. image: {
  28651. source: "./media/characters/kodran/flying.svg"
  28652. }
  28653. },
  28654. foot: {
  28655. height: math.unit(33, "feet"),
  28656. name: "Foot",
  28657. image: {
  28658. source: "./media/characters/kodran/foot.svg"
  28659. }
  28660. },
  28661. footFront: {
  28662. height: math.unit(19, "feet"),
  28663. name: "Foot (Front)",
  28664. image: {
  28665. source: "./media/characters/kodran/foot-front.svg",
  28666. extra: 261 / 261,
  28667. bottom: 91 / 352
  28668. }
  28669. },
  28670. headFront: {
  28671. height: math.unit(53, "feet"),
  28672. name: "Head (Front)",
  28673. image: {
  28674. source: "./media/characters/kodran/head-front.svg"
  28675. }
  28676. },
  28677. headSide: {
  28678. height: math.unit(65, "feet"),
  28679. name: "Head (Side)",
  28680. image: {
  28681. source: "./media/characters/kodran/head-side.svg"
  28682. }
  28683. },
  28684. throat: {
  28685. height: math.unit(79, "feet"),
  28686. name: "Throat",
  28687. image: {
  28688. source: "./media/characters/kodran/throat.svg"
  28689. }
  28690. },
  28691. },
  28692. [
  28693. {
  28694. name: "Large",
  28695. height: math.unit(106, "feet"),
  28696. default: true
  28697. },
  28698. ]
  28699. ))
  28700. characterMakers.push(() => makeCharacter(
  28701. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28702. {
  28703. side: {
  28704. height: math.unit(11, "feet"),
  28705. weight: math.unit(150, "lb"),
  28706. name: "Side",
  28707. image: {
  28708. source: "./media/characters/pyxaron/side.svg",
  28709. extra: 305 / 195,
  28710. bottom: 17 / 322
  28711. }
  28712. },
  28713. },
  28714. [
  28715. {
  28716. name: "Normal",
  28717. height: math.unit(11, "feet"),
  28718. default: true
  28719. },
  28720. ]
  28721. ))
  28722. characterMakers.push(() => makeCharacter(
  28723. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28724. {
  28725. front: {
  28726. height: math.unit(6, "feet"),
  28727. weight: math.unit(150, "lb"),
  28728. name: "Front",
  28729. image: {
  28730. source: "./media/characters/meep/front.svg",
  28731. extra: 88 / 80,
  28732. bottom: 6 / 94
  28733. }
  28734. },
  28735. },
  28736. [
  28737. {
  28738. name: "Fun Sized",
  28739. height: math.unit(2, "inches"),
  28740. default: true
  28741. },
  28742. {
  28743. name: "Friend Sized",
  28744. height: math.unit(8, "inches")
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28750. {
  28751. front: {
  28752. height: math.unit(15, "feet"),
  28753. weight: math.unit(2500, "lb"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/holly-rabbit/front.svg",
  28757. extra: 1433 / 1233,
  28758. bottom: 125 / 1558
  28759. }
  28760. },
  28761. dick: {
  28762. height: math.unit(4.6, "feet"),
  28763. name: "Dick",
  28764. image: {
  28765. source: "./media/characters/holly-rabbit/dick.svg"
  28766. }
  28767. },
  28768. },
  28769. [
  28770. {
  28771. name: "Normal",
  28772. height: math.unit(15, "feet"),
  28773. default: true
  28774. },
  28775. {
  28776. name: "Macro",
  28777. height: math.unit(250, "feet")
  28778. },
  28779. {
  28780. name: "Macro+",
  28781. height: math.unit(2500, "feet")
  28782. },
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28787. {
  28788. front: {
  28789. height: math.unit(3.02, "meters"),
  28790. weight: math.unit(500, "kg"),
  28791. name: "Front",
  28792. image: {
  28793. source: "./media/characters/drena/front.svg",
  28794. extra: 282 / 243,
  28795. bottom: 8 / 290
  28796. }
  28797. },
  28798. side: {
  28799. height: math.unit(3.02, "meters"),
  28800. weight: math.unit(500, "kg"),
  28801. name: "Side",
  28802. image: {
  28803. source: "./media/characters/drena/side.svg",
  28804. extra: 280 / 245,
  28805. bottom: 10 / 290
  28806. }
  28807. },
  28808. back: {
  28809. height: math.unit(3.02, "meters"),
  28810. weight: math.unit(500, "kg"),
  28811. name: "Back",
  28812. image: {
  28813. source: "./media/characters/drena/back.svg",
  28814. extra: 278 / 243,
  28815. bottom: 2 / 280
  28816. }
  28817. },
  28818. foot: {
  28819. height: math.unit(0.75, "meters"),
  28820. name: "Foot",
  28821. image: {
  28822. source: "./media/characters/drena/foot.svg"
  28823. }
  28824. },
  28825. maw: {
  28826. height: math.unit(0.82, "meters"),
  28827. name: "Maw",
  28828. image: {
  28829. source: "./media/characters/drena/maw.svg"
  28830. }
  28831. },
  28832. rump: {
  28833. height: math.unit(0.93, "meters"),
  28834. name: "Rump",
  28835. image: {
  28836. source: "./media/characters/drena/rump.svg"
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Normal",
  28843. height: math.unit(3.02, "meters"),
  28844. default: true
  28845. },
  28846. ]
  28847. ))
  28848. characterMakers.push(() => makeCharacter(
  28849. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28850. {
  28851. front: {
  28852. height: math.unit(6 + 4 / 12, "feet"),
  28853. weight: math.unit(250, "lb"),
  28854. name: "Front",
  28855. image: {
  28856. source: "./media/characters/remmyzilla/front.svg",
  28857. extra: 4033 / 3588,
  28858. bottom: 123 / 4156
  28859. }
  28860. },
  28861. back: {
  28862. height: math.unit(6 + 4 / 12, "feet"),
  28863. weight: math.unit(250, "lb"),
  28864. name: "Back",
  28865. image: {
  28866. source: "./media/characters/remmyzilla/back.svg",
  28867. extra: 2687 / 2555,
  28868. bottom: 48 / 2735
  28869. }
  28870. },
  28871. paw: {
  28872. height: math.unit(1.73, "feet"),
  28873. name: "Paw",
  28874. image: {
  28875. source: "./media/characters/remmyzilla/paw.svg"
  28876. }
  28877. },
  28878. maw: {
  28879. height: math.unit(1.73, "feet"),
  28880. name: "Maw",
  28881. image: {
  28882. source: "./media/characters/remmyzilla/maw.svg"
  28883. }
  28884. },
  28885. },
  28886. [
  28887. {
  28888. name: "Normal",
  28889. height: math.unit(6 + 4 / 12, "feet")
  28890. },
  28891. {
  28892. name: "Minimacro",
  28893. height: math.unit(12 + 8 / 12, "feet")
  28894. },
  28895. {
  28896. name: "Normal",
  28897. height: math.unit(640, "feet"),
  28898. default: true
  28899. },
  28900. {
  28901. name: "Megamacro",
  28902. height: math.unit(6400, "feet")
  28903. },
  28904. {
  28905. name: "Gigamacro",
  28906. height: math.unit(64000, "miles")
  28907. },
  28908. ]
  28909. ))
  28910. characterMakers.push(() => makeCharacter(
  28911. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28912. {
  28913. front: {
  28914. height: math.unit(2.5, "meters"),
  28915. weight: math.unit(300, "lb"),
  28916. name: "Front",
  28917. image: {
  28918. source: "./media/characters/lawrence/front.svg",
  28919. extra: 357 / 335,
  28920. bottom: 30 / 387
  28921. }
  28922. },
  28923. back: {
  28924. height: math.unit(2.5, "meters"),
  28925. weight: math.unit(300, "lb"),
  28926. name: "Back",
  28927. image: {
  28928. source: "./media/characters/lawrence/back.svg",
  28929. extra: 357 / 338,
  28930. bottom: 16 / 373
  28931. }
  28932. },
  28933. head: {
  28934. height: math.unit(0.9, "meter"),
  28935. name: "Head",
  28936. image: {
  28937. source: "./media/characters/lawrence/head.svg"
  28938. }
  28939. },
  28940. maw: {
  28941. height: math.unit(0.7, "meter"),
  28942. name: "Maw",
  28943. image: {
  28944. source: "./media/characters/lawrence/maw.svg"
  28945. }
  28946. },
  28947. footBottom: {
  28948. height: math.unit(0.5, "meter"),
  28949. name: "Foot (Bottom)",
  28950. image: {
  28951. source: "./media/characters/lawrence/foot-bottom.svg"
  28952. }
  28953. },
  28954. footTop: {
  28955. height: math.unit(0.5, "meter"),
  28956. name: "Foot (Top)",
  28957. image: {
  28958. source: "./media/characters/lawrence/foot-top.svg"
  28959. }
  28960. },
  28961. },
  28962. [
  28963. {
  28964. name: "Normal",
  28965. height: math.unit(2.5, "meters"),
  28966. default: true
  28967. },
  28968. {
  28969. name: "Macro",
  28970. height: math.unit(95, "meters")
  28971. },
  28972. {
  28973. name: "Megamacro",
  28974. height: math.unit(150, "km")
  28975. },
  28976. ]
  28977. ))
  28978. characterMakers.push(() => makeCharacter(
  28979. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28980. {
  28981. front: {
  28982. height: math.unit(4.2, "meters"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/sydney/front.svg",
  28986. extra: 1323 / 1277,
  28987. bottom: 111 / 1434
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(4.2, "meters"),
  28995. default: true
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29001. {
  29002. back: {
  29003. height: math.unit(201, "feet"),
  29004. name: "Back",
  29005. image: {
  29006. source: "./media/characters/jessica/back.svg",
  29007. extra: 273 / 259,
  29008. bottom: 7 / 280
  29009. }
  29010. },
  29011. },
  29012. [
  29013. {
  29014. name: "Normal",
  29015. height: math.unit(201, "feet"),
  29016. default: true
  29017. },
  29018. {
  29019. name: "Megamacro",
  29020. height: math.unit(8, "miles")
  29021. },
  29022. ]
  29023. ))
  29024. characterMakers.push(() => makeCharacter(
  29025. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29026. {
  29027. side: {
  29028. height: math.unit(5.6, "m"),
  29029. weight: math.unit(8000, "kg"),
  29030. name: "Side",
  29031. image: {
  29032. source: "./media/characters/victoria/side.svg",
  29033. extra: 1542/1229,
  29034. bottom: 124/1666
  29035. }
  29036. },
  29037. maw: {
  29038. height: math.unit(7.14, "feet"),
  29039. name: "Maw",
  29040. image: {
  29041. source: "./media/characters/victoria/maw.svg"
  29042. }
  29043. },
  29044. },
  29045. [
  29046. {
  29047. name: "Normal",
  29048. height: math.unit(5.6, "m"),
  29049. default: true
  29050. },
  29051. ]
  29052. ))
  29053. characterMakers.push(() => makeCharacter(
  29054. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29055. {
  29056. front: {
  29057. height: math.unit(5 + 6 / 12, "feet"),
  29058. name: "Front",
  29059. image: {
  29060. source: "./media/characters/cat/front.svg",
  29061. extra: 1449/1295,
  29062. bottom: 34/1483
  29063. },
  29064. form: "cat",
  29065. default: true
  29066. },
  29067. back: {
  29068. height: math.unit(5 + 6 / 12, "feet"),
  29069. name: "Back",
  29070. image: {
  29071. source: "./media/characters/cat/back.svg",
  29072. extra: 1466/1301,
  29073. bottom: 19/1485
  29074. },
  29075. form: "cat"
  29076. },
  29077. taur: {
  29078. height: math.unit(7, "feet"),
  29079. name: "Taur",
  29080. image: {
  29081. source: "./media/characters/cat/taur.svg",
  29082. extra: 1389/1233,
  29083. bottom: 83/1472
  29084. },
  29085. form: "taur",
  29086. default: true
  29087. },
  29088. lucarioFront: {
  29089. height: math.unit(4, "feet"),
  29090. name: "Lucario (Front)",
  29091. image: {
  29092. source: "./media/characters/cat/lucario-front.svg",
  29093. extra: 1149/1019,
  29094. bottom: 84/1233
  29095. },
  29096. form: "lucario",
  29097. default: true
  29098. },
  29099. lucarioBack: {
  29100. height: math.unit(4, "feet"),
  29101. name: "Lucario (Back)",
  29102. image: {
  29103. source: "./media/characters/cat/lucario-back.svg",
  29104. extra: 1190/1059,
  29105. bottom: 33/1223
  29106. },
  29107. form: "lucario"
  29108. },
  29109. megaLucario: {
  29110. height: math.unit(4, "feet"),
  29111. name: "Mega Lucario",
  29112. image: {
  29113. source: "./media/characters/cat/mega-lucario.svg",
  29114. extra: 1515 / 1319,
  29115. bottom: 63 / 1578
  29116. },
  29117. form: "lucario"
  29118. },
  29119. nickit: {
  29120. height: math.unit(2, "feet"),
  29121. name: "Nickit",
  29122. image: {
  29123. source: "./media/characters/cat/nickit.svg",
  29124. extra: 1980 / 1585,
  29125. bottom: 102 / 2082
  29126. },
  29127. form: "nickit",
  29128. default: true
  29129. },
  29130. lopunnyFront: {
  29131. height: math.unit(5, "feet"),
  29132. name: "Lopunny (Front)",
  29133. image: {
  29134. source: "./media/characters/cat/lopunny-front.svg",
  29135. extra: 1782 / 1469,
  29136. bottom: 38 / 1820
  29137. },
  29138. form: "lopunny",
  29139. default: true
  29140. },
  29141. lopunnyBack: {
  29142. height: math.unit(5, "feet"),
  29143. name: "Lopunny (Back)",
  29144. image: {
  29145. source: "./media/characters/cat/lopunny-back.svg",
  29146. extra: 1660 / 1490,
  29147. bottom: 25 / 1685
  29148. },
  29149. form: "lopunny"
  29150. },
  29151. },
  29152. [
  29153. {
  29154. name: "Really small",
  29155. height: math.unit(1, "nm")
  29156. },
  29157. {
  29158. name: "Micro",
  29159. height: math.unit(5, "inches")
  29160. },
  29161. {
  29162. name: "Normal",
  29163. height: math.unit(5 + 6 / 12, "feet"),
  29164. default: true
  29165. },
  29166. {
  29167. name: "Macro",
  29168. height: math.unit(50, "feet")
  29169. },
  29170. {
  29171. name: "Macro+",
  29172. height: math.unit(150, "feet")
  29173. },
  29174. {
  29175. name: "Megamacro",
  29176. height: math.unit(100, "miles")
  29177. },
  29178. ]
  29179. ))
  29180. characterMakers.push(() => makeCharacter(
  29181. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29182. {
  29183. front: {
  29184. height: math.unit(63.4, "meters"),
  29185. weight: math.unit(3.28349e+6, "kilograms"),
  29186. name: "Front",
  29187. image: {
  29188. source: "./media/characters/kirina-violet/front.svg",
  29189. extra: 2812 / 2725,
  29190. bottom: 0 / 2812
  29191. }
  29192. },
  29193. back: {
  29194. height: math.unit(63.4, "meters"),
  29195. weight: math.unit(3.28349e+6, "kilograms"),
  29196. name: "Back",
  29197. image: {
  29198. source: "./media/characters/kirina-violet/back.svg",
  29199. extra: 2812 / 2725,
  29200. bottom: 0 / 2812
  29201. }
  29202. },
  29203. mouth: {
  29204. height: math.unit(4.35, "meters"),
  29205. name: "Mouth",
  29206. image: {
  29207. source: "./media/characters/kirina-violet/mouth.svg"
  29208. }
  29209. },
  29210. paw: {
  29211. height: math.unit(5.6, "meters"),
  29212. name: "Paw",
  29213. image: {
  29214. source: "./media/characters/kirina-violet/paw.svg"
  29215. }
  29216. },
  29217. tail: {
  29218. height: math.unit(18, "meters"),
  29219. name: "Tail",
  29220. image: {
  29221. source: "./media/characters/kirina-violet/tail.svg"
  29222. }
  29223. },
  29224. },
  29225. [
  29226. {
  29227. name: "Macro",
  29228. height: math.unit(63.4, "meters"),
  29229. default: true
  29230. },
  29231. ]
  29232. ))
  29233. characterMakers.push(() => makeCharacter(
  29234. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29235. {
  29236. front: {
  29237. height: math.unit(75, "feet"),
  29238. name: "Front",
  29239. image: {
  29240. source: "./media/characters/cat-gigachu/front.svg",
  29241. extra: 1239/1027,
  29242. bottom: 32/1271
  29243. }
  29244. },
  29245. back: {
  29246. height: math.unit(75, "feet"),
  29247. name: "Back",
  29248. image: {
  29249. source: "./media/characters/cat-gigachu/back.svg",
  29250. extra: 1229/1030,
  29251. bottom: 9/1238
  29252. }
  29253. },
  29254. },
  29255. [
  29256. {
  29257. name: "Dynamax",
  29258. height: math.unit(75, "feet"),
  29259. default: true
  29260. },
  29261. ]
  29262. ))
  29263. characterMakers.push(() => makeCharacter(
  29264. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29265. {
  29266. front: {
  29267. height: math.unit(6, "feet"),
  29268. weight: math.unit(150, "lb"),
  29269. name: "Front",
  29270. image: {
  29271. source: "./media/characters/sfaiyan/front.svg",
  29272. extra: 999 / 978,
  29273. bottom: 5 / 1004
  29274. }
  29275. },
  29276. },
  29277. [
  29278. {
  29279. name: "Normal",
  29280. height: math.unit(1.82, "meters")
  29281. },
  29282. {
  29283. name: "Giant",
  29284. height: math.unit(2.27, "km"),
  29285. default: true
  29286. },
  29287. ]
  29288. ))
  29289. characterMakers.push(() => makeCharacter(
  29290. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29291. {
  29292. front: {
  29293. height: math.unit(179, "cm"),
  29294. weight: math.unit(100, "kg"),
  29295. name: "Front",
  29296. image: {
  29297. source: "./media/characters/raunehkeli/front.svg",
  29298. extra: 1934 / 1926,
  29299. bottom: 0 / 1934
  29300. }
  29301. },
  29302. },
  29303. [
  29304. {
  29305. name: "Normal",
  29306. height: math.unit(179, "cm")
  29307. },
  29308. {
  29309. name: "Maximum",
  29310. height: math.unit(575, "meters"),
  29311. default: true
  29312. },
  29313. ]
  29314. ))
  29315. characterMakers.push(() => makeCharacter(
  29316. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29317. {
  29318. front: {
  29319. height: math.unit(6, "feet"),
  29320. weight: math.unit(150, "lb"),
  29321. name: "Front",
  29322. image: {
  29323. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29324. extra: 2625 / 2518,
  29325. bottom: 60 / 2685
  29326. }
  29327. },
  29328. },
  29329. [
  29330. {
  29331. name: "Normal",
  29332. height: math.unit(6 + 2 / 12, "feet")
  29333. },
  29334. {
  29335. name: "Macro",
  29336. height: math.unit(1180, "feet"),
  29337. default: true
  29338. },
  29339. ]
  29340. ))
  29341. characterMakers.push(() => makeCharacter(
  29342. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29343. {
  29344. front: {
  29345. height: math.unit(5 + 6 / 12, "feet"),
  29346. weight: math.unit(108, "lb"),
  29347. name: "Front",
  29348. image: {
  29349. source: "./media/characters/lilith-zott/front.svg",
  29350. extra: 2510 / 2238,
  29351. bottom: 100 / 2610
  29352. }
  29353. },
  29354. frontDressed: {
  29355. height: math.unit(5 + 6 / 12, "feet"),
  29356. weight: math.unit(108, "lb"),
  29357. name: "Front (Dressed)",
  29358. image: {
  29359. source: "./media/characters/lilith-zott/front-dressed.svg",
  29360. extra: 2510 / 2238,
  29361. bottom: 100 / 2610
  29362. }
  29363. },
  29364. },
  29365. [
  29366. {
  29367. name: "Normal",
  29368. height: math.unit(5 + 6 / 12, "feet")
  29369. },
  29370. {
  29371. name: "Macro",
  29372. height: math.unit(1030, "feet"),
  29373. default: true
  29374. },
  29375. ]
  29376. ))
  29377. characterMakers.push(() => makeCharacter(
  29378. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29379. {
  29380. front: {
  29381. height: math.unit(6, "feet"),
  29382. weight: math.unit(150, "lb"),
  29383. name: "Front",
  29384. image: {
  29385. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29386. extra: 2567 / 2435,
  29387. bottom: 39 / 2606
  29388. }
  29389. },
  29390. frontSuper: {
  29391. height: math.unit(6, "feet"),
  29392. name: "Front (Super)",
  29393. image: {
  29394. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29395. extra: 2567 / 2435,
  29396. bottom: 39 / 2606
  29397. }
  29398. },
  29399. },
  29400. [
  29401. {
  29402. name: "Normal",
  29403. height: math.unit(5 + 10 / 12, "feet")
  29404. },
  29405. {
  29406. name: "Macro",
  29407. height: math.unit(1100, "feet"),
  29408. default: true
  29409. },
  29410. ]
  29411. ))
  29412. characterMakers.push(() => makeCharacter(
  29413. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29414. {
  29415. front: {
  29416. height: math.unit(100, "miles"),
  29417. name: "Front",
  29418. image: {
  29419. source: "./media/characters/sona/front.svg",
  29420. extra: 2433 / 2201,
  29421. bottom: 53 / 2486
  29422. }
  29423. },
  29424. foot: {
  29425. height: math.unit(16.1, "miles"),
  29426. name: "Foot",
  29427. image: {
  29428. source: "./media/characters/sona/foot.svg"
  29429. }
  29430. },
  29431. },
  29432. [
  29433. {
  29434. name: "Macro",
  29435. height: math.unit(100, "miles"),
  29436. default: true
  29437. },
  29438. ]
  29439. ))
  29440. characterMakers.push(() => makeCharacter(
  29441. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29442. {
  29443. front: {
  29444. height: math.unit(6, "feet"),
  29445. weight: math.unit(150, "lb"),
  29446. name: "Front",
  29447. image: {
  29448. source: "./media/characters/bailey/front.svg",
  29449. extra: 1778 / 1724,
  29450. bottom: 30 / 1808
  29451. }
  29452. },
  29453. },
  29454. [
  29455. {
  29456. name: "Micro",
  29457. height: math.unit(4, "inches")
  29458. },
  29459. {
  29460. name: "Normal",
  29461. height: math.unit(5 + 5 / 12, "feet"),
  29462. default: true
  29463. },
  29464. {
  29465. name: "Macro",
  29466. height: math.unit(250, "feet")
  29467. },
  29468. {
  29469. name: "Megamacro",
  29470. height: math.unit(100, "miles")
  29471. },
  29472. ]
  29473. ))
  29474. characterMakers.push(() => makeCharacter(
  29475. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29476. {
  29477. front: {
  29478. height: math.unit(5 + 2 / 12, "feet"),
  29479. weight: math.unit(120, "lb"),
  29480. name: "Front",
  29481. image: {
  29482. source: "./media/characters/snaps/front.svg",
  29483. extra: 2370 / 2177,
  29484. bottom: 48 / 2418
  29485. }
  29486. },
  29487. back: {
  29488. height: math.unit(5 + 2 / 12, "feet"),
  29489. weight: math.unit(120, "lb"),
  29490. name: "Back",
  29491. image: {
  29492. source: "./media/characters/snaps/back.svg",
  29493. extra: 2408 / 2258,
  29494. bottom: 15 / 2423
  29495. }
  29496. },
  29497. },
  29498. [
  29499. {
  29500. name: "Micro",
  29501. height: math.unit(9, "inches")
  29502. },
  29503. {
  29504. name: "Normal",
  29505. height: math.unit(5 + 2 / 12, "feet"),
  29506. default: true
  29507. },
  29508. {
  29509. name: "Mini Macro",
  29510. height: math.unit(10, "feet")
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(1.8, "meters"),
  29519. weight: math.unit(85, "kg"),
  29520. name: "Front",
  29521. image: {
  29522. source: "./media/characters/azteck/front.svg",
  29523. extra: 2815 / 2625,
  29524. bottom: 89 / 2904
  29525. }
  29526. },
  29527. back: {
  29528. height: math.unit(1.8, "meters"),
  29529. weight: math.unit(85, "kg"),
  29530. name: "Back",
  29531. image: {
  29532. source: "./media/characters/azteck/back.svg",
  29533. extra: 2856 / 2648,
  29534. bottom: 85 / 2941
  29535. }
  29536. },
  29537. frontDressed: {
  29538. height: math.unit(1.8, "meters"),
  29539. weight: math.unit(85, "kg"),
  29540. name: "Front (Dressed)",
  29541. image: {
  29542. source: "./media/characters/azteck/front-dressed.svg",
  29543. extra: 2147 / 2003,
  29544. bottom: 68 / 2215
  29545. }
  29546. },
  29547. head: {
  29548. height: math.unit(0.47, "meters"),
  29549. weight: math.unit(85, "kg"),
  29550. name: "Head",
  29551. image: {
  29552. source: "./media/characters/azteck/head.svg"
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Bite sized",
  29559. height: math.unit(16, "cm")
  29560. },
  29561. {
  29562. name: "Normal",
  29563. height: math.unit(1.8, "meters"),
  29564. default: true
  29565. },
  29566. ]
  29567. ))
  29568. characterMakers.push(() => makeCharacter(
  29569. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29570. {
  29571. front: {
  29572. height: math.unit(6, "feet"),
  29573. weight: math.unit(150, "lb"),
  29574. name: "Front",
  29575. image: {
  29576. source: "./media/characters/pidge/front.svg",
  29577. extra: 620 / 588,
  29578. bottom: 9 / 629
  29579. }
  29580. },
  29581. back: {
  29582. height: math.unit(6, "feet"),
  29583. weight: math.unit(150, "lb"),
  29584. name: "Back",
  29585. image: {
  29586. source: "./media/characters/pidge/back.svg",
  29587. extra: 620 / 588,
  29588. bottom: 9 / 629
  29589. }
  29590. },
  29591. },
  29592. [
  29593. {
  29594. name: "Macro",
  29595. height: math.unit(1, "mile"),
  29596. default: true
  29597. },
  29598. ]
  29599. ))
  29600. characterMakers.push(() => makeCharacter(
  29601. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29602. {
  29603. front: {
  29604. height: math.unit(6, "feet"),
  29605. weight: math.unit(150, "lb"),
  29606. name: "Front",
  29607. image: {
  29608. source: "./media/characters/en/front.svg",
  29609. extra: 1697 / 1563,
  29610. bottom: 103 / 1800
  29611. }
  29612. },
  29613. back: {
  29614. height: math.unit(6, "feet"),
  29615. weight: math.unit(150, "lb"),
  29616. name: "Back",
  29617. image: {
  29618. source: "./media/characters/en/back.svg",
  29619. extra: 1700 / 1570,
  29620. bottom: 51 / 1751
  29621. }
  29622. },
  29623. frontDressed: {
  29624. height: math.unit(6, "feet"),
  29625. weight: math.unit(150, "lb"),
  29626. name: "Front (Dressed)",
  29627. image: {
  29628. source: "./media/characters/en/front-dressed.svg",
  29629. extra: 1697 / 1563,
  29630. bottom: 103 / 1800
  29631. }
  29632. },
  29633. backDressed: {
  29634. height: math.unit(6, "feet"),
  29635. weight: math.unit(150, "lb"),
  29636. name: "Back (Dressed)",
  29637. image: {
  29638. source: "./media/characters/en/back-dressed.svg",
  29639. extra: 1700 / 1570,
  29640. bottom: 51 / 1751
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Macro",
  29647. height: math.unit(210, "feet"),
  29648. default: true
  29649. },
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29654. {
  29655. front: {
  29656. height: math.unit(6, "feet"),
  29657. weight: math.unit(150, "lb"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/haze-orris/front.svg",
  29661. extra: 3975 / 3525,
  29662. bottom: 137 / 4112
  29663. }
  29664. },
  29665. },
  29666. [
  29667. {
  29668. name: "Micro",
  29669. height: math.unit(150, "mm"),
  29670. default: true
  29671. },
  29672. ]
  29673. ))
  29674. characterMakers.push(() => makeCharacter(
  29675. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29676. {
  29677. front: {
  29678. height: math.unit(6, "feet"),
  29679. weight: math.unit(150, "lb"),
  29680. name: "Front",
  29681. image: {
  29682. source: "./media/characters/casselene-yaro/front.svg",
  29683. extra: 4721 / 4541,
  29684. bottom: 82 / 4803
  29685. }
  29686. },
  29687. back: {
  29688. height: math.unit(6, "feet"),
  29689. weight: math.unit(150, "lb"),
  29690. name: "Back",
  29691. image: {
  29692. source: "./media/characters/casselene-yaro/back.svg",
  29693. extra: 4569 / 4377,
  29694. bottom: 69 / 4638
  29695. }
  29696. },
  29697. frontDressed: {
  29698. height: math.unit(6, "feet"),
  29699. weight: math.unit(150, "lb"),
  29700. name: "Front-dressed",
  29701. image: {
  29702. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29703. extra: 4721 / 4541,
  29704. bottom: 82 / 4803
  29705. }
  29706. },
  29707. },
  29708. [
  29709. {
  29710. name: "Macro",
  29711. height: math.unit(190, "feet"),
  29712. default: true
  29713. },
  29714. ]
  29715. ))
  29716. characterMakers.push(() => makeCharacter(
  29717. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29718. {
  29719. front: {
  29720. height: math.unit(6, "feet"),
  29721. weight: math.unit(150, "lb"),
  29722. name: "Front",
  29723. image: {
  29724. source: "./media/characters/myra-rue-delore/front.svg",
  29725. extra: 1340 / 1308,
  29726. bottom: 67 / 1407
  29727. }
  29728. },
  29729. back: {
  29730. height: math.unit(6, "feet"),
  29731. weight: math.unit(150, "lb"),
  29732. name: "Back",
  29733. image: {
  29734. source: "./media/characters/myra-rue-delore/back.svg",
  29735. extra: 1341 / 1310,
  29736. bottom: 40 / 1381
  29737. }
  29738. },
  29739. frontDressed: {
  29740. height: math.unit(6, "feet"),
  29741. weight: math.unit(150, "lb"),
  29742. name: "Front (Dressed)",
  29743. image: {
  29744. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29745. extra: 1340 / 1308,
  29746. bottom: 67 / 1407
  29747. }
  29748. },
  29749. },
  29750. [
  29751. {
  29752. name: "Macro",
  29753. height: math.unit(150, "feet"),
  29754. default: true
  29755. },
  29756. ]
  29757. ))
  29758. characterMakers.push(() => makeCharacter(
  29759. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29760. {
  29761. front: {
  29762. height: math.unit(10, "feet"),
  29763. weight: math.unit(15015, "lb"),
  29764. name: "Front",
  29765. image: {
  29766. source: "./media/characters/fem!plat/front.svg",
  29767. extra: 2799 / 2604,
  29768. bottom: 149 / 2948
  29769. }
  29770. },
  29771. },
  29772. [
  29773. {
  29774. name: "Normal",
  29775. height: math.unit(10, "feet"),
  29776. default: true
  29777. },
  29778. {
  29779. name: "Macro",
  29780. height: math.unit(100, "feet")
  29781. },
  29782. {
  29783. name: "Megamacro",
  29784. height: math.unit(1000, "feet")
  29785. },
  29786. ]
  29787. ))
  29788. characterMakers.push(() => makeCharacter(
  29789. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29790. {
  29791. front: {
  29792. height: math.unit(15 + 5 / 12, "feet"),
  29793. weight: math.unit(4600, "lb"),
  29794. name: "Front",
  29795. image: {
  29796. source: "./media/characters/neapolitan-ananassa/front.svg",
  29797. extra: 2903 / 2736,
  29798. bottom: 0 / 2903
  29799. }
  29800. },
  29801. side: {
  29802. height: math.unit(15 + 5 / 12, "feet"),
  29803. weight: math.unit(4600, "lb"),
  29804. name: "Side",
  29805. image: {
  29806. source: "./media/characters/neapolitan-ananassa/side.svg",
  29807. extra: 2925 / 2719,
  29808. bottom: 0 / 2925
  29809. }
  29810. },
  29811. back: {
  29812. height: math.unit(15 + 5 / 12, "feet"),
  29813. weight: math.unit(4600, "lb"),
  29814. name: "Back",
  29815. image: {
  29816. source: "./media/characters/neapolitan-ananassa/back.svg",
  29817. extra: 2903 / 2736,
  29818. bottom: 0 / 2903
  29819. }
  29820. },
  29821. },
  29822. [
  29823. {
  29824. name: "Normal",
  29825. height: math.unit(15 + 5 / 12, "feet"),
  29826. default: true
  29827. },
  29828. {
  29829. name: "Post-Millenium",
  29830. height: math.unit(35 + 5 / 12, "feet")
  29831. },
  29832. {
  29833. name: "Post-Era",
  29834. height: math.unit(450 + 5 / 12, "feet")
  29835. },
  29836. ]
  29837. ))
  29838. characterMakers.push(() => makeCharacter(
  29839. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29840. {
  29841. front: {
  29842. height: math.unit(300, "meters"),
  29843. weight: math.unit(125000, "tonnes"),
  29844. name: "Front",
  29845. image: {
  29846. source: "./media/characters/pazuzu/front.svg",
  29847. extra: 877 / 794,
  29848. bottom: 47 / 924
  29849. }
  29850. },
  29851. },
  29852. [
  29853. {
  29854. name: "Macro",
  29855. height: math.unit(300, "meters"),
  29856. default: true
  29857. },
  29858. ]
  29859. ))
  29860. characterMakers.push(() => makeCharacter(
  29861. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29862. {
  29863. side: {
  29864. height: math.unit(10 + 7 / 12, "feet"),
  29865. weight: math.unit(2.5, "tons"),
  29866. name: "Side",
  29867. image: {
  29868. source: "./media/characters/aasha/side.svg",
  29869. extra: 1345 / 1245,
  29870. bottom: 111 / 1456
  29871. }
  29872. },
  29873. back: {
  29874. height: math.unit(10 + 7 / 12, "feet"),
  29875. weight: math.unit(2.5, "tons"),
  29876. name: "Back",
  29877. image: {
  29878. source: "./media/characters/aasha/back.svg",
  29879. extra: 1133 / 1057,
  29880. bottom: 257 / 1390
  29881. }
  29882. },
  29883. },
  29884. [
  29885. {
  29886. name: "Normal",
  29887. height: math.unit(10 + 7 / 12, "feet"),
  29888. default: true
  29889. },
  29890. ]
  29891. ))
  29892. characterMakers.push(() => makeCharacter(
  29893. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29894. {
  29895. front: {
  29896. height: math.unit(6 + 3 / 12, "feet"),
  29897. name: "Front",
  29898. image: {
  29899. source: "./media/characters/nevan/front.svg",
  29900. extra: 704 / 704,
  29901. bottom: 28 / 732
  29902. }
  29903. },
  29904. back: {
  29905. height: math.unit(6 + 3 / 12, "feet"),
  29906. name: "Back",
  29907. image: {
  29908. source: "./media/characters/nevan/back.svg",
  29909. extra: 714 / 714,
  29910. bottom: 21 / 735
  29911. }
  29912. },
  29913. frontFlaccid: {
  29914. height: math.unit(6 + 3 / 12, "feet"),
  29915. name: "Front (Flaccid)",
  29916. image: {
  29917. source: "./media/characters/nevan/front-flaccid.svg",
  29918. extra: 704 / 704,
  29919. bottom: 28 / 732
  29920. }
  29921. },
  29922. frontErect: {
  29923. height: math.unit(6 + 3 / 12, "feet"),
  29924. name: "Front (Erect)",
  29925. image: {
  29926. source: "./media/characters/nevan/front-erect.svg",
  29927. extra: 704 / 704,
  29928. bottom: 28 / 732
  29929. }
  29930. },
  29931. backFlaccid: {
  29932. height: math.unit(6 + 3 / 12, "feet"),
  29933. name: "Back (Flaccid)",
  29934. image: {
  29935. source: "./media/characters/nevan/back-flaccid.svg",
  29936. extra: 714 / 714,
  29937. bottom: 21 / 735
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Normal",
  29944. height: math.unit(6 + 3 / 12, "feet"),
  29945. default: true
  29946. },
  29947. ]
  29948. ))
  29949. characterMakers.push(() => makeCharacter(
  29950. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29951. {
  29952. front: {
  29953. height: math.unit(4, "feet"),
  29954. name: "Front",
  29955. image: {
  29956. source: "./media/characters/arhan/front.svg",
  29957. extra: 3368 / 3133,
  29958. bottom: 0 / 3368
  29959. }
  29960. },
  29961. side: {
  29962. height: math.unit(4, "feet"),
  29963. name: "Side",
  29964. image: {
  29965. source: "./media/characters/arhan/side.svg",
  29966. extra: 3347 / 3105,
  29967. bottom: 0 / 3347
  29968. }
  29969. },
  29970. tongue: {
  29971. height: math.unit(1.42, "feet"),
  29972. name: "Tongue",
  29973. image: {
  29974. source: "./media/characters/arhan/tongue.svg"
  29975. }
  29976. },
  29977. head: {
  29978. height: math.unit(0.85, "feet"),
  29979. name: "Head",
  29980. image: {
  29981. source: "./media/characters/arhan/head.svg"
  29982. }
  29983. },
  29984. },
  29985. [
  29986. {
  29987. name: "Normal",
  29988. height: math.unit(4, "feet"),
  29989. default: true
  29990. },
  29991. ]
  29992. ))
  29993. characterMakers.push(() => makeCharacter(
  29994. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29995. {
  29996. front: {
  29997. height: math.unit(5 + 7.5 / 12, "feet"),
  29998. weight: math.unit(120, "lb"),
  29999. name: "Front",
  30000. image: {
  30001. source: "./media/characters/digi-duncan/front.svg",
  30002. extra: 330 / 326,
  30003. bottom: 16 / 346
  30004. }
  30005. },
  30006. side: {
  30007. height: math.unit(5 + 7.5 / 12, "feet"),
  30008. weight: math.unit(120, "lb"),
  30009. name: "Side",
  30010. image: {
  30011. source: "./media/characters/digi-duncan/side.svg",
  30012. extra: 341 / 337,
  30013. bottom: 1 / 342
  30014. }
  30015. },
  30016. back: {
  30017. height: math.unit(5 + 7.5 / 12, "feet"),
  30018. weight: math.unit(120, "lb"),
  30019. name: "Back",
  30020. image: {
  30021. source: "./media/characters/digi-duncan/back.svg",
  30022. extra: 330 / 326,
  30023. bottom: 12 / 342
  30024. }
  30025. },
  30026. },
  30027. [
  30028. {
  30029. name: "Speck",
  30030. height: math.unit(0.25, "mm")
  30031. },
  30032. {
  30033. name: "Micro",
  30034. height: math.unit(5, "mm")
  30035. },
  30036. {
  30037. name: "Tiny",
  30038. height: math.unit(0.5, "inches"),
  30039. default: true
  30040. },
  30041. {
  30042. name: "Human",
  30043. height: math.unit(5 + 7.5 / 12, "feet")
  30044. },
  30045. {
  30046. name: "Minigiant",
  30047. height: math.unit(8 + 5.25, "feet")
  30048. },
  30049. {
  30050. name: "Giant",
  30051. height: math.unit(2000, "feet")
  30052. },
  30053. {
  30054. name: "Mega",
  30055. height: math.unit(371.1, "miles")
  30056. },
  30057. ]
  30058. ))
  30059. characterMakers.push(() => makeCharacter(
  30060. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30061. {
  30062. front: {
  30063. height: math.unit(2, "meters"),
  30064. weight: math.unit(350, "kg"),
  30065. name: "Front",
  30066. image: {
  30067. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30068. extra: 898 / 838,
  30069. bottom: 9 / 907
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Micro",
  30076. height: math.unit(8, "meters")
  30077. },
  30078. {
  30079. name: "Normal",
  30080. height: math.unit(50, "meters"),
  30081. default: true
  30082. },
  30083. {
  30084. name: "Macro",
  30085. height: math.unit(500, "meters")
  30086. },
  30087. ]
  30088. ))
  30089. characterMakers.push(() => makeCharacter(
  30090. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30091. {
  30092. front: {
  30093. height: math.unit(6 + 6 / 12, "feet"),
  30094. name: "Front",
  30095. image: {
  30096. source: "./media/characters/khardesh/front.svg",
  30097. extra: 1788/1596,
  30098. bottom: 66/1854
  30099. }
  30100. },
  30101. back: {
  30102. height: math.unit(6 + 6 / 12, "feet"),
  30103. name: "Back",
  30104. image: {
  30105. source: "./media/characters/khardesh/back.svg",
  30106. extra: 1781/1584,
  30107. bottom: 68/1849
  30108. }
  30109. },
  30110. },
  30111. [
  30112. {
  30113. name: "Normal",
  30114. height: math.unit(6 + 6 / 12, "feet"),
  30115. default: true
  30116. },
  30117. {
  30118. name: "Normal+",
  30119. height: math.unit(4, "meters")
  30120. },
  30121. {
  30122. name: "Macro",
  30123. height: math.unit(50, "meters")
  30124. },
  30125. {
  30126. name: "Macro+",
  30127. height: math.unit(100, "meters")
  30128. },
  30129. {
  30130. name: "Megamacro",
  30131. height: math.unit(20, "km")
  30132. },
  30133. ]
  30134. ))
  30135. characterMakers.push(() => makeCharacter(
  30136. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30137. {
  30138. front: {
  30139. height: math.unit(6, "feet"),
  30140. weight: math.unit(150, "lb"),
  30141. name: "Front",
  30142. image: {
  30143. source: "./media/characters/kosho/front.svg",
  30144. extra: 1847 / 1847,
  30145. bottom: 86 / 1933
  30146. }
  30147. },
  30148. },
  30149. [
  30150. {
  30151. name: "Second-stage micro",
  30152. height: math.unit(0.5, "inches")
  30153. },
  30154. {
  30155. name: "First-stage micro",
  30156. height: math.unit(6, "inches")
  30157. },
  30158. {
  30159. name: "Normal",
  30160. height: math.unit(6, "feet"),
  30161. default: true
  30162. },
  30163. {
  30164. name: "First-stage macro",
  30165. height: math.unit(72, "feet")
  30166. },
  30167. {
  30168. name: "Second-stage macro",
  30169. height: math.unit(864, "feet")
  30170. },
  30171. ]
  30172. ))
  30173. characterMakers.push(() => makeCharacter(
  30174. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30175. {
  30176. normal: {
  30177. height: math.unit(4 + 6 / 12, "feet"),
  30178. name: "Normal",
  30179. image: {
  30180. source: "./media/characters/hydra/normal.svg",
  30181. extra: 2833 / 2634,
  30182. bottom: 68 / 2901
  30183. }
  30184. },
  30185. smol: {
  30186. height: math.unit(0.705, "inches"),
  30187. name: "Smol",
  30188. image: {
  30189. source: "./media/characters/hydra/smol.svg",
  30190. extra: 2715 / 2540,
  30191. bottom: 0 / 2715
  30192. }
  30193. },
  30194. },
  30195. [
  30196. {
  30197. name: "Normal",
  30198. height: math.unit(4 + 6 / 12, "feet"),
  30199. default: true
  30200. }
  30201. ]
  30202. ))
  30203. characterMakers.push(() => makeCharacter(
  30204. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30205. {
  30206. front: {
  30207. height: math.unit(0.6, "cm"),
  30208. name: "Front",
  30209. image: {
  30210. source: "./media/characters/daz/front.svg",
  30211. extra: 1682 / 1164,
  30212. bottom: 42 / 1724
  30213. }
  30214. },
  30215. },
  30216. [
  30217. {
  30218. name: "Normal",
  30219. height: math.unit(0.6, "cm"),
  30220. default: true
  30221. },
  30222. ]
  30223. ))
  30224. characterMakers.push(() => makeCharacter(
  30225. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30226. {
  30227. front: {
  30228. height: math.unit(6, "feet"),
  30229. weight: math.unit(235, "lb"),
  30230. name: "Front",
  30231. image: {
  30232. source: "./media/characters/theo-pangolin/front.svg",
  30233. extra: 1996 / 1969,
  30234. bottom: 115 / 2111
  30235. }
  30236. },
  30237. back: {
  30238. height: math.unit(6, "feet"),
  30239. weight: math.unit(235, "lb"),
  30240. name: "Back",
  30241. image: {
  30242. source: "./media/characters/theo-pangolin/back.svg",
  30243. extra: 1979 / 1979,
  30244. bottom: 40 / 2019
  30245. }
  30246. },
  30247. feral: {
  30248. height: math.unit(2, "feet"),
  30249. weight: math.unit(30, "lb"),
  30250. name: "Feral",
  30251. image: {
  30252. source: "./media/characters/theo-pangolin/feral.svg",
  30253. extra: 803 / 791,
  30254. bottom: 181 / 984
  30255. }
  30256. },
  30257. footFive: {
  30258. height: math.unit(1.43, "feet"),
  30259. name: "Foot (Five Toes)",
  30260. image: {
  30261. source: "./media/characters/theo-pangolin/foot-five.svg"
  30262. }
  30263. },
  30264. footFour: {
  30265. height: math.unit(1.43, "feet"),
  30266. name: "Foot (Four Toes)",
  30267. image: {
  30268. source: "./media/characters/theo-pangolin/foot-four.svg"
  30269. }
  30270. },
  30271. handFour: {
  30272. height: math.unit(0.81, "feet"),
  30273. name: "Hand (Four Fingers)",
  30274. image: {
  30275. source: "./media/characters/theo-pangolin/hand-four.svg"
  30276. }
  30277. },
  30278. handThree: {
  30279. height: math.unit(0.81, "feet"),
  30280. name: "Hand (Three Fingers)",
  30281. image: {
  30282. source: "./media/characters/theo-pangolin/hand-three.svg"
  30283. }
  30284. },
  30285. headFront: {
  30286. height: math.unit(1.37, "feet"),
  30287. name: "Head (Front)",
  30288. image: {
  30289. source: "./media/characters/theo-pangolin/head-front.svg"
  30290. }
  30291. },
  30292. headSide: {
  30293. height: math.unit(1.43, "feet"),
  30294. name: "Head (Side)",
  30295. image: {
  30296. source: "./media/characters/theo-pangolin/head-side.svg"
  30297. }
  30298. },
  30299. tongue: {
  30300. height: math.unit(2.29, "feet"),
  30301. name: "Tongue",
  30302. image: {
  30303. source: "./media/characters/theo-pangolin/tongue.svg"
  30304. }
  30305. },
  30306. },
  30307. [
  30308. {
  30309. name: "Normal",
  30310. height: math.unit(6, "feet")
  30311. },
  30312. {
  30313. name: "Macro",
  30314. height: math.unit(400, "feet"),
  30315. default: true
  30316. },
  30317. ]
  30318. ))
  30319. characterMakers.push(() => makeCharacter(
  30320. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30321. {
  30322. front: {
  30323. height: math.unit(6, "inches"),
  30324. weight: math.unit(0.036, "kg"),
  30325. name: "Front",
  30326. image: {
  30327. source: "./media/characters/renée/front.svg",
  30328. extra: 900 / 886,
  30329. bottom: 8 / 908
  30330. }
  30331. },
  30332. },
  30333. [
  30334. {
  30335. name: "Nano",
  30336. height: math.unit(1, "nm")
  30337. },
  30338. {
  30339. name: "Micro",
  30340. height: math.unit(1, "mm")
  30341. },
  30342. {
  30343. name: "Normal",
  30344. height: math.unit(6, "inches")
  30345. },
  30346. {
  30347. name: "Macro",
  30348. height: math.unit(2000, "feet"),
  30349. default: true
  30350. },
  30351. {
  30352. name: "Megamacro",
  30353. height: math.unit(2, "km")
  30354. },
  30355. {
  30356. name: "Gigamacro",
  30357. height: math.unit(2000, "km")
  30358. },
  30359. {
  30360. name: "Teramacro",
  30361. height: math.unit(250000, "km")
  30362. },
  30363. ]
  30364. ))
  30365. characterMakers.push(() => makeCharacter(
  30366. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30367. {
  30368. front: {
  30369. height: math.unit(4, "meters"),
  30370. weight: math.unit(150, "kg"),
  30371. name: "Front",
  30372. image: {
  30373. source: "./media/characters/caledvwlch/front.svg",
  30374. extra: 1760 / 1551,
  30375. bottom: 28 / 1788
  30376. }
  30377. },
  30378. side: {
  30379. height: math.unit(4, "meters"),
  30380. weight: math.unit(150, "kg"),
  30381. name: "Side",
  30382. image: {
  30383. source: "./media/characters/caledvwlch/side.svg",
  30384. extra: 1605 / 1536,
  30385. bottom: 31 / 1636
  30386. }
  30387. },
  30388. back: {
  30389. height: math.unit(4, "meters"),
  30390. weight: math.unit(150, "kg"),
  30391. name: "Back",
  30392. image: {
  30393. source: "./media/characters/caledvwlch/back.svg",
  30394. extra: 1635 / 1565,
  30395. bottom: 27 / 1662
  30396. }
  30397. },
  30398. },
  30399. [
  30400. {
  30401. name: "\"Incognito\"",
  30402. height: math.unit(4, "meters")
  30403. },
  30404. {
  30405. name: "Small rampage",
  30406. height: math.unit(600, "meters")
  30407. },
  30408. {
  30409. name: "Mega",
  30410. height: math.unit(30, "km")
  30411. },
  30412. {
  30413. name: "Home-size",
  30414. height: math.unit(50, "km"),
  30415. default: true
  30416. },
  30417. {
  30418. name: "Giga",
  30419. height: math.unit(300, "km")
  30420. },
  30421. {
  30422. name: "Lounging",
  30423. height: math.unit(11000, "km")
  30424. },
  30425. {
  30426. name: "Planet snacking",
  30427. height: math.unit(2000000, "km")
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30433. {
  30434. front: {
  30435. height: math.unit(6, "feet"),
  30436. weight: math.unit(215, "lb"),
  30437. name: "Front",
  30438. image: {
  30439. source: "./media/characters/sapphire-svell/front.svg",
  30440. extra: 495 / 455,
  30441. bottom: 20 / 515
  30442. }
  30443. },
  30444. back: {
  30445. height: math.unit(6, "feet"),
  30446. weight: math.unit(216, "lb"),
  30447. name: "Back",
  30448. image: {
  30449. source: "./media/characters/sapphire-svell/back.svg",
  30450. extra: 497 / 477,
  30451. bottom: 7 / 504
  30452. }
  30453. },
  30454. maw: {
  30455. height: math.unit(1.57, "feet"),
  30456. name: "Maw",
  30457. image: {
  30458. source: "./media/characters/sapphire-svell/maw.svg"
  30459. }
  30460. },
  30461. foot: {
  30462. height: math.unit(1.07, "feet"),
  30463. name: "Foot",
  30464. image: {
  30465. source: "./media/characters/sapphire-svell/foot.svg"
  30466. }
  30467. },
  30468. toering: {
  30469. height: math.unit(1.7, "inch"),
  30470. name: "Toering",
  30471. image: {
  30472. source: "./media/characters/sapphire-svell/toering.svg"
  30473. }
  30474. },
  30475. },
  30476. [
  30477. {
  30478. name: "Normal",
  30479. height: math.unit(300, "feet"),
  30480. default: true
  30481. },
  30482. {
  30483. name: "Augmented",
  30484. height: math.unit(1250, "feet")
  30485. },
  30486. {
  30487. name: "Unleashed",
  30488. height: math.unit(3000, "feet")
  30489. },
  30490. ]
  30491. ))
  30492. characterMakers.push(() => makeCharacter(
  30493. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30494. {
  30495. side: {
  30496. height: math.unit(2 + 3 / 12, "feet"),
  30497. weight: math.unit(110, "lb"),
  30498. name: "Side",
  30499. image: {
  30500. source: "./media/characters/glitch-flux/side.svg",
  30501. extra: 997 / 805,
  30502. bottom: 20 / 1017
  30503. }
  30504. },
  30505. },
  30506. [
  30507. {
  30508. name: "Normal",
  30509. height: math.unit(2 + 3 / 12, "feet"),
  30510. default: true
  30511. },
  30512. ]
  30513. ))
  30514. characterMakers.push(() => makeCharacter(
  30515. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30516. {
  30517. front: {
  30518. height: math.unit(4, "meters"),
  30519. name: "Front",
  30520. image: {
  30521. source: "./media/characters/mid/front.svg",
  30522. extra: 507 / 476,
  30523. bottom: 17 / 524
  30524. }
  30525. },
  30526. back: {
  30527. height: math.unit(4, "meters"),
  30528. name: "Back",
  30529. image: {
  30530. source: "./media/characters/mid/back.svg",
  30531. extra: 519 / 487,
  30532. bottom: 7 / 526
  30533. }
  30534. },
  30535. stuck: {
  30536. height: math.unit(2.2, "meters"),
  30537. name: "Stuck",
  30538. image: {
  30539. source: "./media/characters/mid/stuck.svg",
  30540. extra: 1951 / 1869,
  30541. bottom: 88 / 2039
  30542. }
  30543. }
  30544. },
  30545. [
  30546. {
  30547. name: "Normal",
  30548. height: math.unit(4, "meters"),
  30549. default: true
  30550. },
  30551. {
  30552. name: "Big",
  30553. height: math.unit(10, "meters")
  30554. },
  30555. {
  30556. name: "Macro",
  30557. height: math.unit(800, "meters")
  30558. },
  30559. {
  30560. name: "Megamacro",
  30561. height: math.unit(100, "km")
  30562. },
  30563. {
  30564. name: "Overgrown",
  30565. height: math.unit(1, "parsec")
  30566. },
  30567. ]
  30568. ))
  30569. characterMakers.push(() => makeCharacter(
  30570. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30571. {
  30572. front: {
  30573. height: math.unit(2.5, "meters"),
  30574. weight: math.unit(225, "kg"),
  30575. name: "Front",
  30576. image: {
  30577. source: "./media/characters/iris/front.svg",
  30578. extra: 3348 / 3251,
  30579. bottom: 205 / 3553
  30580. }
  30581. },
  30582. maw: {
  30583. height: math.unit(0.56, "meter"),
  30584. name: "Maw",
  30585. image: {
  30586. source: "./media/characters/iris/maw.svg"
  30587. }
  30588. },
  30589. },
  30590. [
  30591. {
  30592. name: "Mewter cat",
  30593. height: math.unit(1.2, "meters")
  30594. },
  30595. {
  30596. name: "Minimacro",
  30597. height: math.unit(2.5, "meters"),
  30598. default: true
  30599. },
  30600. {
  30601. name: "Macro",
  30602. height: math.unit(180, "meters")
  30603. },
  30604. {
  30605. name: "Megamacro",
  30606. height: math.unit(2746, "meters")
  30607. },
  30608. ]
  30609. ))
  30610. characterMakers.push(() => makeCharacter(
  30611. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30612. {
  30613. front: {
  30614. height: math.unit(6, "feet"),
  30615. weight: math.unit(135, "lb"),
  30616. name: "Front",
  30617. image: {
  30618. source: "./media/characters/axel/front.svg",
  30619. extra: 908 / 908,
  30620. bottom: 58 / 966
  30621. }
  30622. },
  30623. side: {
  30624. height: math.unit(6, "feet"),
  30625. weight: math.unit(135, "lb"),
  30626. name: "Side",
  30627. image: {
  30628. source: "./media/characters/axel/side.svg",
  30629. extra: 958 / 958,
  30630. bottom: 11 / 969
  30631. }
  30632. },
  30633. back: {
  30634. height: math.unit(6, "feet"),
  30635. weight: math.unit(135, "lb"),
  30636. name: "Back",
  30637. image: {
  30638. source: "./media/characters/axel/back.svg",
  30639. extra: 887 / 887,
  30640. bottom: 34 / 921
  30641. }
  30642. },
  30643. head: {
  30644. height: math.unit(1.07, "feet"),
  30645. name: "Head",
  30646. image: {
  30647. source: "./media/characters/axel/head.svg"
  30648. }
  30649. },
  30650. beak: {
  30651. height: math.unit(1.4, "feet"),
  30652. name: "Beak",
  30653. image: {
  30654. source: "./media/characters/axel/beak.svg"
  30655. }
  30656. },
  30657. beakSide: {
  30658. height: math.unit(1.4, "feet"),
  30659. name: "Beak Side",
  30660. image: {
  30661. source: "./media/characters/axel/beak-side.svg"
  30662. }
  30663. },
  30664. sheath: {
  30665. height: math.unit(0.5, "feet"),
  30666. name: "Sheath",
  30667. image: {
  30668. source: "./media/characters/axel/sheath.svg"
  30669. }
  30670. },
  30671. dick: {
  30672. height: math.unit(0.98, "feet"),
  30673. name: "Dick",
  30674. image: {
  30675. source: "./media/characters/axel/dick.svg"
  30676. }
  30677. },
  30678. },
  30679. [
  30680. {
  30681. name: "Macro",
  30682. height: math.unit(68, "meters"),
  30683. default: true
  30684. },
  30685. ]
  30686. ))
  30687. characterMakers.push(() => makeCharacter(
  30688. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30689. {
  30690. front: {
  30691. height: math.unit(3.5, "meters"),
  30692. weight: math.unit(1200, "kg"),
  30693. name: "Front",
  30694. image: {
  30695. source: "./media/characters/joanna/front.svg",
  30696. extra: 1596 / 1488,
  30697. bottom: 29 / 1625
  30698. }
  30699. },
  30700. back: {
  30701. height: math.unit(3.5, "meters"),
  30702. weight: math.unit(1200, "kg"),
  30703. name: "Back",
  30704. image: {
  30705. source: "./media/characters/joanna/back.svg",
  30706. extra: 1594 / 1495,
  30707. bottom: 26 / 1620
  30708. }
  30709. },
  30710. frontShorts: {
  30711. height: math.unit(3.5, "meters"),
  30712. weight: math.unit(1200, "kg"),
  30713. name: "Front (Shorts)",
  30714. image: {
  30715. source: "./media/characters/joanna/front-shorts.svg",
  30716. extra: 1596 / 1488,
  30717. bottom: 29 / 1625
  30718. }
  30719. },
  30720. frontBiker: {
  30721. height: math.unit(3.5, "meters"),
  30722. weight: math.unit(1200, "kg"),
  30723. name: "Front (Biker)",
  30724. image: {
  30725. source: "./media/characters/joanna/front-biker.svg",
  30726. extra: 1596 / 1488,
  30727. bottom: 29 / 1625
  30728. }
  30729. },
  30730. backBiker: {
  30731. height: math.unit(3.5, "meters"),
  30732. weight: math.unit(1200, "kg"),
  30733. name: "Back (Biker)",
  30734. image: {
  30735. source: "./media/characters/joanna/back-biker.svg",
  30736. extra: 1594 / 1495,
  30737. bottom: 88 / 1682
  30738. }
  30739. },
  30740. bikeLeft: {
  30741. height: math.unit(2.4, "meters"),
  30742. weight: math.unit(1600, "kg"),
  30743. name: "Bike (Left)",
  30744. image: {
  30745. source: "./media/characters/joanna/bike-left.svg",
  30746. extra: 720 / 720,
  30747. bottom: 8 / 728
  30748. }
  30749. },
  30750. bikeRight: {
  30751. height: math.unit(2.4, "meters"),
  30752. weight: math.unit(1600, "kg"),
  30753. name: "Bike (Right)",
  30754. image: {
  30755. source: "./media/characters/joanna/bike-right.svg",
  30756. extra: 720 / 720,
  30757. bottom: 8 / 728
  30758. }
  30759. },
  30760. },
  30761. [
  30762. {
  30763. name: "Incognito",
  30764. height: math.unit(3.5, "meters")
  30765. },
  30766. {
  30767. name: "Casual Big",
  30768. height: math.unit(200, "meters")
  30769. },
  30770. {
  30771. name: "Macro",
  30772. height: math.unit(600, "meters")
  30773. },
  30774. {
  30775. name: "Original",
  30776. height: math.unit(20, "km"),
  30777. default: true
  30778. },
  30779. {
  30780. name: "Giga",
  30781. height: math.unit(400, "km")
  30782. },
  30783. {
  30784. name: "Lounging",
  30785. height: math.unit(1500, "km")
  30786. },
  30787. {
  30788. name: "Planetary",
  30789. height: math.unit(200000, "km")
  30790. },
  30791. ]
  30792. ))
  30793. characterMakers.push(() => makeCharacter(
  30794. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30795. {
  30796. front: {
  30797. height: math.unit(6, "feet"),
  30798. weight: math.unit(150, "lb"),
  30799. name: "Front",
  30800. image: {
  30801. source: "./media/characters/hugo-sigil/front.svg",
  30802. extra: 522 / 500,
  30803. bottom: 2 / 524
  30804. }
  30805. },
  30806. back: {
  30807. height: math.unit(6, "feet"),
  30808. weight: math.unit(150, "lb"),
  30809. name: "Back",
  30810. image: {
  30811. source: "./media/characters/hugo-sigil/back.svg",
  30812. extra: 519 / 495,
  30813. bottom: 5 / 524
  30814. }
  30815. },
  30816. maw: {
  30817. height: math.unit(1.4, "feet"),
  30818. weight: math.unit(150, "lb"),
  30819. name: "Maw",
  30820. image: {
  30821. source: "./media/characters/hugo-sigil/maw.svg"
  30822. }
  30823. },
  30824. feet: {
  30825. height: math.unit(1.56, "feet"),
  30826. weight: math.unit(150, "lb"),
  30827. name: "Feet",
  30828. image: {
  30829. source: "./media/characters/hugo-sigil/feet.svg",
  30830. extra: 177 / 177,
  30831. bottom: 12 / 189
  30832. }
  30833. },
  30834. },
  30835. [
  30836. {
  30837. name: "Normal",
  30838. height: math.unit(6, "feet")
  30839. },
  30840. {
  30841. name: "Macro",
  30842. height: math.unit(200, "feet"),
  30843. default: true
  30844. },
  30845. ]
  30846. ))
  30847. characterMakers.push(() => makeCharacter(
  30848. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30849. {
  30850. front: {
  30851. height: math.unit(6, "feet"),
  30852. weight: math.unit(150, "lb"),
  30853. name: "Front",
  30854. image: {
  30855. source: "./media/characters/peri/front.svg",
  30856. extra: 2354 / 2233,
  30857. bottom: 49 / 2403
  30858. }
  30859. },
  30860. },
  30861. [
  30862. {
  30863. name: "Really Small",
  30864. height: math.unit(1, "nm")
  30865. },
  30866. {
  30867. name: "Micro",
  30868. height: math.unit(4, "inches")
  30869. },
  30870. {
  30871. name: "Normal",
  30872. height: math.unit(7, "inches"),
  30873. default: true
  30874. },
  30875. {
  30876. name: "Macro",
  30877. height: math.unit(400, "feet")
  30878. },
  30879. {
  30880. name: "Megamacro",
  30881. height: math.unit(100, "miles")
  30882. },
  30883. ]
  30884. ))
  30885. characterMakers.push(() => makeCharacter(
  30886. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30887. {
  30888. frontSlim: {
  30889. height: math.unit(7, "feet"),
  30890. name: "Front (Slim)",
  30891. image: {
  30892. source: "./media/characters/issilora/front-slim.svg",
  30893. extra: 529 / 449,
  30894. bottom: 53 / 582
  30895. }
  30896. },
  30897. sideSlim: {
  30898. height: math.unit(7, "feet"),
  30899. name: "Side (Slim)",
  30900. image: {
  30901. source: "./media/characters/issilora/side-slim.svg",
  30902. extra: 570 / 480,
  30903. bottom: 30 / 600
  30904. }
  30905. },
  30906. backSlim: {
  30907. height: math.unit(7, "feet"),
  30908. name: "Back (Slim)",
  30909. image: {
  30910. source: "./media/characters/issilora/back-slim.svg",
  30911. extra: 537 / 455,
  30912. bottom: 46 / 583
  30913. }
  30914. },
  30915. frontBuff: {
  30916. height: math.unit(7, "feet"),
  30917. name: "Front (Buff)",
  30918. image: {
  30919. source: "./media/characters/issilora/front-buff.svg",
  30920. extra: 2310 / 2035,
  30921. bottom: 335 / 2645
  30922. }
  30923. },
  30924. head: {
  30925. height: math.unit(1.94, "feet"),
  30926. name: "Head",
  30927. image: {
  30928. source: "./media/characters/issilora/head.svg"
  30929. }
  30930. },
  30931. },
  30932. [
  30933. {
  30934. name: "Minimum",
  30935. height: math.unit(7, "feet")
  30936. },
  30937. {
  30938. name: "Comfortable",
  30939. height: math.unit(17, "feet")
  30940. },
  30941. {
  30942. name: "Fun Size",
  30943. height: math.unit(47, "feet")
  30944. },
  30945. {
  30946. name: "Natural Macro",
  30947. height: math.unit(137, "feet"),
  30948. default: true
  30949. },
  30950. {
  30951. name: "Maximum Kaiju",
  30952. height: math.unit(397, "feet")
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30958. {
  30959. front: {
  30960. height: math.unit(50 + 9/12, "feet"),
  30961. weight: math.unit(32.8, "tons"),
  30962. name: "Front",
  30963. image: {
  30964. source: "./media/characters/irb'iiritaahn/front.svg",
  30965. extra: 1878/1826,
  30966. bottom: 326/2204
  30967. }
  30968. },
  30969. back: {
  30970. height: math.unit(50 + 9/12, "feet"),
  30971. weight: math.unit(32.8, "tons"),
  30972. name: "Back",
  30973. image: {
  30974. source: "./media/characters/irb'iiritaahn/back.svg",
  30975. extra: 2052/2018,
  30976. bottom: 152/2204
  30977. }
  30978. },
  30979. head: {
  30980. height: math.unit(12.86, "feet"),
  30981. name: "Head",
  30982. image: {
  30983. source: "./media/characters/irb'iiritaahn/head.svg"
  30984. }
  30985. },
  30986. maw: {
  30987. height: math.unit(9.66, "feet"),
  30988. name: "Maw",
  30989. image: {
  30990. source: "./media/characters/irb'iiritaahn/maw.svg"
  30991. }
  30992. },
  30993. frontDick: {
  30994. height: math.unit(8.78461, "feet"),
  30995. name: "Front Dick",
  30996. image: {
  30997. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30998. }
  30999. },
  31000. rearDick: {
  31001. height: math.unit(8.78461, "feet"),
  31002. name: "Rear Dick",
  31003. image: {
  31004. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31005. }
  31006. },
  31007. rearDickUnfolded: {
  31008. height: math.unit(8.78, "feet"),
  31009. name: "Rear Dick (Unfolded)",
  31010. image: {
  31011. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31012. }
  31013. },
  31014. wings: {
  31015. height: math.unit(43, "feet"),
  31016. name: "Wings",
  31017. image: {
  31018. source: "./media/characters/irb'iiritaahn/wings.svg"
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Macro",
  31025. height: math.unit(50 + 9/12, "feet"),
  31026. default: true
  31027. },
  31028. ]
  31029. ))
  31030. characterMakers.push(() => makeCharacter(
  31031. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31032. {
  31033. front: {
  31034. height: math.unit(205, "cm"),
  31035. weight: math.unit(102, "kg"),
  31036. name: "Front",
  31037. image: {
  31038. source: "./media/characters/irbisgreif/front.svg",
  31039. extra: 785/706,
  31040. bottom: 13/798
  31041. }
  31042. },
  31043. back: {
  31044. height: math.unit(205, "cm"),
  31045. weight: math.unit(102, "kg"),
  31046. name: "Back",
  31047. image: {
  31048. source: "./media/characters/irbisgreif/back.svg",
  31049. extra: 713/701,
  31050. bottom: 26/739
  31051. }
  31052. },
  31053. frontDressed: {
  31054. height: math.unit(216, "cm"),
  31055. weight: math.unit(102, "kg"),
  31056. name: "Front-dressed",
  31057. image: {
  31058. source: "./media/characters/irbisgreif/front-dressed.svg",
  31059. extra: 902/776,
  31060. bottom: 14/916
  31061. }
  31062. },
  31063. sideDressed: {
  31064. height: math.unit(195, "cm"),
  31065. weight: math.unit(102, "kg"),
  31066. name: "Side-dressed",
  31067. image: {
  31068. source: "./media/characters/irbisgreif/side-dressed.svg",
  31069. extra: 788/688,
  31070. bottom: 21/809
  31071. }
  31072. },
  31073. backDressed: {
  31074. height: math.unit(216, "cm"),
  31075. weight: math.unit(102, "kg"),
  31076. name: "Back-dressed",
  31077. image: {
  31078. source: "./media/characters/irbisgreif/back-dressed.svg",
  31079. extra: 901/783,
  31080. bottom: 10/911
  31081. }
  31082. },
  31083. dick: {
  31084. height: math.unit(0.49, "feet"),
  31085. name: "Dick",
  31086. image: {
  31087. source: "./media/characters/irbisgreif/dick.svg"
  31088. }
  31089. },
  31090. wingTop: {
  31091. height: math.unit(1.93 , "feet"),
  31092. name: "Wing-top",
  31093. image: {
  31094. source: "./media/characters/irbisgreif/wing-top.svg"
  31095. }
  31096. },
  31097. wingBottom: {
  31098. height: math.unit(1.93 , "feet"),
  31099. name: "Wing-bottom",
  31100. image: {
  31101. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31102. }
  31103. },
  31104. },
  31105. [
  31106. {
  31107. name: "Normal",
  31108. height: math.unit(216, "cm"),
  31109. default: true
  31110. },
  31111. ]
  31112. ))
  31113. characterMakers.push(() => makeCharacter(
  31114. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31115. {
  31116. front: {
  31117. height: math.unit(6, "feet"),
  31118. weight: math.unit(150, "lb"),
  31119. name: "Front",
  31120. image: {
  31121. source: "./media/characters/pride/front.svg",
  31122. extra: 1299/1230,
  31123. bottom: 18/1317
  31124. }
  31125. },
  31126. },
  31127. [
  31128. {
  31129. name: "Normal",
  31130. height: math.unit(7, "feet")
  31131. },
  31132. {
  31133. name: "Mini-macro",
  31134. height: math.unit(11, "feet")
  31135. },
  31136. {
  31137. name: "Macro",
  31138. height: math.unit(15, "meters"),
  31139. default: true
  31140. },
  31141. {
  31142. name: "Macro+",
  31143. height: math.unit(40, "meters")
  31144. },
  31145. ]
  31146. ))
  31147. characterMakers.push(() => makeCharacter(
  31148. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31149. {
  31150. front: {
  31151. height: math.unit(4 + 2 / 12, "feet"),
  31152. weight: math.unit(95, "lb"),
  31153. name: "Front",
  31154. image: {
  31155. source: "./media/characters/vaelophis-nyx/front.svg",
  31156. extra: 2532/2330,
  31157. bottom: 0/2532
  31158. }
  31159. },
  31160. back: {
  31161. height: math.unit(4 + 2 / 12, "feet"),
  31162. weight: math.unit(95, "lb"),
  31163. name: "Back",
  31164. image: {
  31165. source: "./media/characters/vaelophis-nyx/back.svg",
  31166. extra: 2484/2361,
  31167. bottom: 0/2484
  31168. }
  31169. },
  31170. feralSide: {
  31171. height: math.unit(2 + 1/12, "feet"),
  31172. weight: math.unit(20, "lb"),
  31173. name: "Feral (Side)",
  31174. image: {
  31175. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31176. extra: 1721/1581,
  31177. bottom: 70/1791
  31178. }
  31179. },
  31180. feralLazing: {
  31181. height: math.unit(1.08, "feet"),
  31182. weight: math.unit(20, "lb"),
  31183. name: "Feral (Lazing)",
  31184. image: {
  31185. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31186. extra: 822/822,
  31187. bottom: 248/1070
  31188. }
  31189. },
  31190. ear: {
  31191. height: math.unit(0.416, "feet"),
  31192. name: "Ear",
  31193. image: {
  31194. source: "./media/characters/vaelophis-nyx/ear.svg"
  31195. }
  31196. },
  31197. eye: {
  31198. height: math.unit(0.0748, "feet"),
  31199. name: "Eye",
  31200. image: {
  31201. source: "./media/characters/vaelophis-nyx/eye.svg"
  31202. }
  31203. },
  31204. mouth: {
  31205. height: math.unit(0.378, "feet"),
  31206. name: "Mouth",
  31207. image: {
  31208. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31209. }
  31210. },
  31211. spade: {
  31212. height: math.unit(0.55, "feet"),
  31213. name: "Spade",
  31214. image: {
  31215. source: "./media/characters/vaelophis-nyx/spade.svg"
  31216. }
  31217. },
  31218. },
  31219. [
  31220. {
  31221. name: "Normal",
  31222. height: math.unit(4 + 2/12, "feet"),
  31223. default: true
  31224. },
  31225. ]
  31226. ))
  31227. characterMakers.push(() => makeCharacter(
  31228. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31229. {
  31230. front: {
  31231. height: math.unit(7, "feet"),
  31232. weight: math.unit(231, "lb"),
  31233. name: "Front",
  31234. image: {
  31235. source: "./media/characters/flux/front.svg",
  31236. extra: 919/871,
  31237. bottom: 0/919
  31238. }
  31239. },
  31240. back: {
  31241. height: math.unit(7, "feet"),
  31242. weight: math.unit(231, "lb"),
  31243. name: "Back",
  31244. image: {
  31245. source: "./media/characters/flux/back.svg",
  31246. extra: 1040/992,
  31247. bottom: 0/1040
  31248. }
  31249. },
  31250. frontDressed: {
  31251. height: math.unit(7, "feet"),
  31252. weight: math.unit(231, "lb"),
  31253. name: "Front (Dressed)",
  31254. image: {
  31255. source: "./media/characters/flux/front-dressed.svg",
  31256. extra: 919/871,
  31257. bottom: 0/919
  31258. }
  31259. },
  31260. feralSide: {
  31261. height: math.unit(5, "feet"),
  31262. weight: math.unit(150, "lb"),
  31263. name: "Feral (Side)",
  31264. image: {
  31265. source: "./media/characters/flux/feral-side.svg",
  31266. extra: 598/528,
  31267. bottom: 28/626
  31268. }
  31269. },
  31270. head: {
  31271. height: math.unit(1.585, "feet"),
  31272. name: "Head",
  31273. image: {
  31274. source: "./media/characters/flux/head.svg"
  31275. }
  31276. },
  31277. headSide: {
  31278. height: math.unit(1.74, "feet"),
  31279. name: "Head (Side)",
  31280. image: {
  31281. source: "./media/characters/flux/head-side.svg"
  31282. }
  31283. },
  31284. headSideFire: {
  31285. height: math.unit(1.76, "feet"),
  31286. name: "Head (Side, Fire)",
  31287. image: {
  31288. source: "./media/characters/flux/head-side-fire.svg"
  31289. }
  31290. },
  31291. },
  31292. [
  31293. {
  31294. name: "Normal",
  31295. height: math.unit(7, "feet"),
  31296. default: true
  31297. },
  31298. ]
  31299. ))
  31300. characterMakers.push(() => makeCharacter(
  31301. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31302. {
  31303. front: {
  31304. height: math.unit(9, "feet"),
  31305. weight: math.unit(1012, "lb"),
  31306. name: "Front",
  31307. image: {
  31308. source: "./media/characters/ulfra-lupae/front.svg",
  31309. extra: 1083/1011,
  31310. bottom: 67/1150
  31311. }
  31312. },
  31313. },
  31314. [
  31315. {
  31316. name: "Micro",
  31317. height: math.unit(6, "inches")
  31318. },
  31319. {
  31320. name: "Socializing",
  31321. height: math.unit(6 + 5/12, "feet")
  31322. },
  31323. {
  31324. name: "Normal",
  31325. height: math.unit(9, "feet"),
  31326. default: true
  31327. },
  31328. {
  31329. name: "Macro",
  31330. height: math.unit(150, "feet")
  31331. },
  31332. ]
  31333. ))
  31334. characterMakers.push(() => makeCharacter(
  31335. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31336. {
  31337. front: {
  31338. height: math.unit(5 + 2/12, "feet"),
  31339. weight: math.unit(120, "lb"),
  31340. name: "Front",
  31341. image: {
  31342. source: "./media/characters/timber/front.svg",
  31343. extra: 2814/2705,
  31344. bottom: 181/2995
  31345. }
  31346. },
  31347. },
  31348. [
  31349. {
  31350. name: "Normal",
  31351. height: math.unit(5 + 2/12, "feet"),
  31352. default: true
  31353. },
  31354. ]
  31355. ))
  31356. characterMakers.push(() => makeCharacter(
  31357. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31358. {
  31359. front: {
  31360. height: math.unit(5 + 7/12, "feet"),
  31361. weight: math.unit(220, "lb"),
  31362. name: "Front",
  31363. image: {
  31364. source: "./media/characters/nicki/front.svg",
  31365. extra: 453/419,
  31366. bottom: 7/460
  31367. }
  31368. },
  31369. frontAlt: {
  31370. height: math.unit(5 + 7/12, "feet"),
  31371. weight: math.unit(220, "lb"),
  31372. name: "Front-alt",
  31373. image: {
  31374. source: "./media/characters/nicki/front-alt.svg",
  31375. extra: 435/411,
  31376. bottom: 12/447
  31377. }
  31378. },
  31379. back: {
  31380. height: math.unit(5 + 7/12, "feet"),
  31381. weight: math.unit(220, "lb"),
  31382. name: "Back",
  31383. image: {
  31384. source: "./media/characters/nicki/back.svg",
  31385. extra: 440/413,
  31386. bottom: 19/459
  31387. }
  31388. },
  31389. taur: {
  31390. height: math.unit(7 + 6/12, "feet"),
  31391. weight: math.unit(700, "lb"),
  31392. name: "Taur",
  31393. image: {
  31394. source: "./media/characters/nicki/taur.svg",
  31395. extra: 975/773,
  31396. bottom: 0/975
  31397. }
  31398. },
  31399. frontNsfw: {
  31400. height: math.unit(5 + 7/12, "feet"),
  31401. weight: math.unit(220, "lb"),
  31402. name: "Front (NSFW)",
  31403. image: {
  31404. source: "./media/characters/nicki/front-nsfw.svg",
  31405. extra: 453/419,
  31406. bottom: 7/460
  31407. }
  31408. },
  31409. frontNsfwAlt: {
  31410. height: math.unit(5 + 7/12, "feet"),
  31411. weight: math.unit(220, "lb"),
  31412. name: "Front (Alt, NSFW)",
  31413. image: {
  31414. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31415. extra: 435/411,
  31416. bottom: 12/447
  31417. }
  31418. },
  31419. backNsfw: {
  31420. height: math.unit(5 + 7/12, "feet"),
  31421. weight: math.unit(220, "lb"),
  31422. name: "Back (NSFW)",
  31423. image: {
  31424. source: "./media/characters/nicki/back-nsfw.svg",
  31425. extra: 440/413,
  31426. bottom: 19/459
  31427. }
  31428. },
  31429. head: {
  31430. height: math.unit(2.1, "feet"),
  31431. name: "Head",
  31432. image: {
  31433. source: "./media/characters/nicki/head.svg"
  31434. }
  31435. },
  31436. paw: {
  31437. height: math.unit(1.88, "feet"),
  31438. name: "Paw",
  31439. image: {
  31440. source: "./media/characters/nicki/paw.svg"
  31441. }
  31442. },
  31443. },
  31444. [
  31445. {
  31446. name: "Normal",
  31447. height: math.unit(5 + 7/12, "feet"),
  31448. default: true
  31449. },
  31450. ]
  31451. ))
  31452. characterMakers.push(() => makeCharacter(
  31453. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31454. {
  31455. front: {
  31456. height: math.unit(7 + 10/12, "feet"),
  31457. weight: math.unit(3.5, "tons"),
  31458. name: "Front",
  31459. image: {
  31460. source: "./media/characters/lee/front.svg",
  31461. extra: 1773/1615,
  31462. bottom: 86/1859
  31463. }
  31464. },
  31465. hand: {
  31466. height: math.unit(1.78, "feet"),
  31467. name: "Hand",
  31468. image: {
  31469. source: "./media/characters/lee/hand.svg"
  31470. }
  31471. },
  31472. maw: {
  31473. height: math.unit(1.18, "feet"),
  31474. name: "Maw",
  31475. image: {
  31476. source: "./media/characters/lee/maw.svg"
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Normal",
  31483. height: math.unit(7 + 10/12, "feet"),
  31484. default: true
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31490. {
  31491. front: {
  31492. height: math.unit(9, "feet"),
  31493. name: "Front",
  31494. image: {
  31495. source: "./media/characters/guti/front.svg",
  31496. extra: 4551/4355,
  31497. bottom: 123/4674
  31498. }
  31499. },
  31500. tongue: {
  31501. height: math.unit(1, "feet"),
  31502. name: "Tongue",
  31503. image: {
  31504. source: "./media/characters/guti/tongue.svg"
  31505. }
  31506. },
  31507. paw: {
  31508. height: math.unit(1.18, "feet"),
  31509. name: "Paw",
  31510. image: {
  31511. source: "./media/characters/guti/paw.svg"
  31512. }
  31513. },
  31514. },
  31515. [
  31516. {
  31517. name: "Normal",
  31518. height: math.unit(9, "feet"),
  31519. default: true
  31520. },
  31521. ]
  31522. ))
  31523. characterMakers.push(() => makeCharacter(
  31524. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31525. {
  31526. side: {
  31527. height: math.unit(5, "meters"),
  31528. name: "Side",
  31529. image: {
  31530. source: "./media/characters/vesper/side.svg",
  31531. extra: 1605/1518,
  31532. bottom: 0/1605
  31533. }
  31534. },
  31535. },
  31536. [
  31537. {
  31538. name: "Small",
  31539. height: math.unit(5, "meters")
  31540. },
  31541. {
  31542. name: "Sage",
  31543. height: math.unit(100, "meters"),
  31544. default: true
  31545. },
  31546. {
  31547. name: "Fun Size",
  31548. height: math.unit(600, "meters")
  31549. },
  31550. {
  31551. name: "Goddess",
  31552. height: math.unit(20000, "km")
  31553. },
  31554. {
  31555. name: "Maximum",
  31556. height: math.unit(5, "galaxies")
  31557. },
  31558. ]
  31559. ))
  31560. characterMakers.push(() => makeCharacter(
  31561. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31562. {
  31563. front: {
  31564. height: math.unit(6 + 3/12, "feet"),
  31565. weight: math.unit(190, "lb"),
  31566. name: "Front",
  31567. image: {
  31568. source: "./media/characters/gawain/front.svg",
  31569. extra: 2222/2139,
  31570. bottom: 90/2312
  31571. }
  31572. },
  31573. back: {
  31574. height: math.unit(6 + 3/12, "feet"),
  31575. weight: math.unit(190, "lb"),
  31576. name: "Back",
  31577. image: {
  31578. source: "./media/characters/gawain/back.svg",
  31579. extra: 2199/2111,
  31580. bottom: 73/2272
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Normal",
  31587. height: math.unit(6 + 3/12, "feet"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31594. {
  31595. side: {
  31596. height: math.unit(3.5, "meters"),
  31597. weight: math.unit(16000, "lb"),
  31598. name: "Side",
  31599. image: {
  31600. source: "./media/characters/dascalti/side.svg",
  31601. extra: 392/273,
  31602. bottom: 47/439
  31603. }
  31604. },
  31605. breath: {
  31606. height: math.unit(7.4, "feet"),
  31607. name: "Breath",
  31608. image: {
  31609. source: "./media/characters/dascalti/breath.svg"
  31610. }
  31611. },
  31612. fed: {
  31613. height: math.unit(3.6, "meters"),
  31614. weight: math.unit(16000, "lb"),
  31615. name: "Fed",
  31616. image: {
  31617. source: "./media/characters/dascalti/fed.svg",
  31618. extra: 1419/820,
  31619. bottom: 95/1514
  31620. }
  31621. },
  31622. },
  31623. [
  31624. {
  31625. name: "Normal",
  31626. height: math.unit(3.5, "meters"),
  31627. default: true
  31628. },
  31629. ]
  31630. ))
  31631. characterMakers.push(() => makeCharacter(
  31632. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31633. {
  31634. front: {
  31635. height: math.unit(3 + 5/12, "feet"),
  31636. name: "Front",
  31637. image: {
  31638. source: "./media/characters/mauve/front.svg",
  31639. extra: 1126/1033,
  31640. bottom: 65/1191
  31641. }
  31642. },
  31643. side: {
  31644. height: math.unit(3 + 5/12, "feet"),
  31645. name: "Side",
  31646. image: {
  31647. source: "./media/characters/mauve/side.svg",
  31648. extra: 1089/1001,
  31649. bottom: 29/1118
  31650. }
  31651. },
  31652. back: {
  31653. height: math.unit(3 + 5/12, "feet"),
  31654. name: "Back",
  31655. image: {
  31656. source: "./media/characters/mauve/back.svg",
  31657. extra: 1173/1053,
  31658. bottom: 109/1282
  31659. }
  31660. },
  31661. },
  31662. [
  31663. {
  31664. name: "Normal",
  31665. height: math.unit(3 + 5/12, "feet"),
  31666. default: true
  31667. },
  31668. ]
  31669. ))
  31670. characterMakers.push(() => makeCharacter(
  31671. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31672. {
  31673. front: {
  31674. height: math.unit(6 + 3/12, "feet"),
  31675. weight: math.unit(430, "lb"),
  31676. name: "Front",
  31677. image: {
  31678. source: "./media/characters/carlos/front.svg",
  31679. extra: 1964/1913,
  31680. bottom: 70/2034
  31681. }
  31682. },
  31683. },
  31684. [
  31685. {
  31686. name: "Normal",
  31687. height: math.unit(6 + 3/12, "feet"),
  31688. default: true
  31689. },
  31690. ]
  31691. ))
  31692. characterMakers.push(() => makeCharacter(
  31693. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31694. {
  31695. back: {
  31696. height: math.unit(5 + 10/12, "feet"),
  31697. weight: math.unit(200, "lb"),
  31698. name: "Back",
  31699. image: {
  31700. source: "./media/characters/jax/back.svg",
  31701. extra: 764/739,
  31702. bottom: 25/789
  31703. }
  31704. },
  31705. },
  31706. [
  31707. {
  31708. name: "Normal",
  31709. height: math.unit(5 + 10/12, "feet"),
  31710. default: true
  31711. },
  31712. ]
  31713. ))
  31714. characterMakers.push(() => makeCharacter(
  31715. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31716. {
  31717. front: {
  31718. height: math.unit(8, "feet"),
  31719. weight: math.unit(250, "lb"),
  31720. name: "Front",
  31721. image: {
  31722. source: "./media/characters/eikthynir/front.svg",
  31723. extra: 1332/1166,
  31724. bottom: 82/1414
  31725. }
  31726. },
  31727. back: {
  31728. height: math.unit(8, "feet"),
  31729. weight: math.unit(250, "lb"),
  31730. name: "Back",
  31731. image: {
  31732. source: "./media/characters/eikthynir/back.svg",
  31733. extra: 1342/1190,
  31734. bottom: 19/1361
  31735. }
  31736. },
  31737. dick: {
  31738. height: math.unit(2.35, "feet"),
  31739. name: "Dick",
  31740. image: {
  31741. source: "./media/characters/eikthynir/dick.svg"
  31742. }
  31743. },
  31744. },
  31745. [
  31746. {
  31747. name: "Normal",
  31748. height: math.unit(8, "feet"),
  31749. default: true
  31750. },
  31751. ]
  31752. ))
  31753. characterMakers.push(() => makeCharacter(
  31754. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31755. {
  31756. front: {
  31757. height: math.unit(99, "meters"),
  31758. weight: math.unit(13000, "tons"),
  31759. name: "Front",
  31760. image: {
  31761. source: "./media/characters/zlmos/front.svg",
  31762. extra: 2202/1992,
  31763. bottom: 315/2517
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Macro",
  31770. height: math.unit(99, "meters"),
  31771. default: true
  31772. },
  31773. ]
  31774. ))
  31775. characterMakers.push(() => makeCharacter(
  31776. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31777. {
  31778. front: {
  31779. height: math.unit(6 + 5/12, "feet"),
  31780. name: "Front",
  31781. image: {
  31782. source: "./media/characters/purri/front.svg",
  31783. extra: 1698/1610,
  31784. bottom: 32/1730
  31785. }
  31786. },
  31787. frontAlt: {
  31788. height: math.unit(6 + 5/12, "feet"),
  31789. name: "Front (Alt)",
  31790. image: {
  31791. source: "./media/characters/purri/front-alt.svg",
  31792. extra: 450/420,
  31793. bottom: 26/476
  31794. }
  31795. },
  31796. boots: {
  31797. height: math.unit(5.5, "feet"),
  31798. name: "Boots",
  31799. image: {
  31800. source: "./media/characters/purri/boots.svg",
  31801. extra: 905/853,
  31802. bottom: 18/923
  31803. }
  31804. },
  31805. lying: {
  31806. height: math.unit(2, "feet"),
  31807. name: "Lying",
  31808. image: {
  31809. source: "./media/characters/purri/lying.svg",
  31810. extra: 940/843,
  31811. bottom: 146/1086
  31812. }
  31813. },
  31814. devious: {
  31815. height: math.unit(1.77, "feet"),
  31816. name: "Devious",
  31817. image: {
  31818. source: "./media/characters/purri/devious.svg",
  31819. extra: 1440/1155,
  31820. bottom: 147/1587
  31821. }
  31822. },
  31823. bean: {
  31824. height: math.unit(1.94, "feet"),
  31825. name: "Bean",
  31826. image: {
  31827. source: "./media/characters/purri/bean.svg"
  31828. }
  31829. },
  31830. },
  31831. [
  31832. {
  31833. name: "Micro",
  31834. height: math.unit(1, "mm")
  31835. },
  31836. {
  31837. name: "Normal",
  31838. height: math.unit(6 + 5/12, "feet"),
  31839. default: true
  31840. },
  31841. {
  31842. name: "Macro :3c",
  31843. height: math.unit(2, "miles")
  31844. },
  31845. ]
  31846. ))
  31847. characterMakers.push(() => makeCharacter(
  31848. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31849. {
  31850. front: {
  31851. height: math.unit(6 + 2/12, "feet"),
  31852. weight: math.unit(250, "lb"),
  31853. name: "Front",
  31854. image: {
  31855. source: "./media/characters/moonlight/front.svg",
  31856. extra: 1044/908,
  31857. bottom: 56/1100
  31858. }
  31859. },
  31860. feral: {
  31861. height: math.unit(3 + 1/12, "feet"),
  31862. weight: math.unit(50, "kg"),
  31863. name: "Feral",
  31864. image: {
  31865. source: "./media/characters/moonlight/feral.svg",
  31866. extra: 3705/2791,
  31867. bottom: 145/3850
  31868. }
  31869. },
  31870. paw: {
  31871. height: math.unit(1, "feet"),
  31872. name: "Paw",
  31873. image: {
  31874. source: "./media/characters/moonlight/paw.svg"
  31875. }
  31876. },
  31877. paws: {
  31878. height: math.unit(0.98, "feet"),
  31879. name: "Paws",
  31880. image: {
  31881. source: "./media/characters/moonlight/paws.svg",
  31882. extra: 939/939,
  31883. bottom: 50/989
  31884. }
  31885. },
  31886. mouth: {
  31887. height: math.unit(0.48, "feet"),
  31888. name: "Mouth",
  31889. image: {
  31890. source: "./media/characters/moonlight/mouth.svg"
  31891. }
  31892. },
  31893. dick: {
  31894. height: math.unit(1.46, "feet"),
  31895. name: "Dick",
  31896. image: {
  31897. source: "./media/characters/moonlight/dick.svg"
  31898. }
  31899. },
  31900. },
  31901. [
  31902. {
  31903. name: "Normal",
  31904. height: math.unit(6 + 2/12, "feet"),
  31905. default: true
  31906. },
  31907. {
  31908. name: "Macro",
  31909. height: math.unit(300, "feet")
  31910. },
  31911. {
  31912. name: "Macro+",
  31913. height: math.unit(1, "mile")
  31914. },
  31915. {
  31916. name: "Mt. Moon",
  31917. height: math.unit(5, "miles")
  31918. },
  31919. {
  31920. name: "Megamacro",
  31921. height: math.unit(15, "miles")
  31922. },
  31923. ]
  31924. ))
  31925. characterMakers.push(() => makeCharacter(
  31926. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31927. {
  31928. back: {
  31929. height: math.unit(6, "feet"),
  31930. weight: math.unit(150, "lb"),
  31931. name: "Back",
  31932. image: {
  31933. source: "./media/characters/sylen/back.svg",
  31934. extra: 1335/1273,
  31935. bottom: 107/1442
  31936. }
  31937. },
  31938. },
  31939. [
  31940. {
  31941. name: "Normal",
  31942. height: math.unit(5 + 5/12, "feet")
  31943. },
  31944. {
  31945. name: "Megamacro",
  31946. height: math.unit(3, "miles"),
  31947. default: true
  31948. },
  31949. ]
  31950. ))
  31951. characterMakers.push(() => makeCharacter(
  31952. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31953. {
  31954. front: {
  31955. height: math.unit(6, "feet"),
  31956. weight: math.unit(190, "lb"),
  31957. name: "Front",
  31958. image: {
  31959. source: "./media/characters/huttser/front.svg",
  31960. extra: 1152/1058,
  31961. bottom: 23/1175
  31962. }
  31963. },
  31964. side: {
  31965. height: math.unit(6, "feet"),
  31966. weight: math.unit(190, "lb"),
  31967. name: "Side",
  31968. image: {
  31969. source: "./media/characters/huttser/side.svg",
  31970. extra: 1174/1065,
  31971. bottom: 18/1192
  31972. }
  31973. },
  31974. back: {
  31975. height: math.unit(6, "feet"),
  31976. weight: math.unit(190, "lb"),
  31977. name: "Back",
  31978. image: {
  31979. source: "./media/characters/huttser/back.svg",
  31980. extra: 1158/1056,
  31981. bottom: 12/1170
  31982. }
  31983. },
  31984. },
  31985. [
  31986. ]
  31987. ))
  31988. characterMakers.push(() => makeCharacter(
  31989. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31990. {
  31991. side: {
  31992. height: math.unit(12 + 9/12, "feet"),
  31993. weight: math.unit(15000, "lb"),
  31994. name: "Side",
  31995. image: {
  31996. source: "./media/characters/faan/side.svg",
  31997. extra: 2747/2697,
  31998. bottom: 0/2747
  31999. }
  32000. },
  32001. front: {
  32002. height: math.unit(12 + 9/12, "feet"),
  32003. weight: math.unit(15000, "lb"),
  32004. name: "Front",
  32005. image: {
  32006. source: "./media/characters/faan/front.svg",
  32007. extra: 607/571,
  32008. bottom: 24/631
  32009. }
  32010. },
  32011. head: {
  32012. height: math.unit(2.85, "feet"),
  32013. name: "Head",
  32014. image: {
  32015. source: "./media/characters/faan/head.svg"
  32016. }
  32017. },
  32018. headAlt: {
  32019. height: math.unit(3.13, "feet"),
  32020. name: "Head-alt",
  32021. image: {
  32022. source: "./media/characters/faan/head-alt.svg"
  32023. }
  32024. },
  32025. },
  32026. [
  32027. {
  32028. name: "Normal",
  32029. height: math.unit(12 + 9/12, "feet"),
  32030. default: true
  32031. },
  32032. ]
  32033. ))
  32034. characterMakers.push(() => makeCharacter(
  32035. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32036. {
  32037. front: {
  32038. height: math.unit(6, "feet"),
  32039. weight: math.unit(300, "lb"),
  32040. name: "Front",
  32041. image: {
  32042. source: "./media/characters/tanio/front.svg",
  32043. extra: 711/673,
  32044. bottom: 25/736
  32045. }
  32046. },
  32047. },
  32048. [
  32049. {
  32050. name: "Normal",
  32051. height: math.unit(6, "feet"),
  32052. default: true
  32053. },
  32054. ]
  32055. ))
  32056. characterMakers.push(() => makeCharacter(
  32057. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32058. {
  32059. front: {
  32060. height: math.unit(3, "inches"),
  32061. name: "Front",
  32062. image: {
  32063. source: "./media/characters/noboru/front.svg",
  32064. extra: 1039/932,
  32065. bottom: 18/1057
  32066. }
  32067. },
  32068. },
  32069. [
  32070. {
  32071. name: "Micro",
  32072. height: math.unit(3, "inches"),
  32073. default: true
  32074. },
  32075. ]
  32076. ))
  32077. characterMakers.push(() => makeCharacter(
  32078. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32079. {
  32080. front: {
  32081. height: math.unit(1.85, "meters"),
  32082. weight: math.unit(80, "kg"),
  32083. name: "Front",
  32084. image: {
  32085. source: "./media/characters/daniel-barrett/front.svg",
  32086. extra: 355/337,
  32087. bottom: 9/364
  32088. }
  32089. },
  32090. },
  32091. [
  32092. {
  32093. name: "Pico",
  32094. height: math.unit(0.0433, "mm")
  32095. },
  32096. {
  32097. name: "Nano",
  32098. height: math.unit(1.5, "mm")
  32099. },
  32100. {
  32101. name: "Micro",
  32102. height: math.unit(5.3, "cm"),
  32103. default: true
  32104. },
  32105. {
  32106. name: "Normal",
  32107. height: math.unit(1.85, "meters")
  32108. },
  32109. {
  32110. name: "Macro",
  32111. height: math.unit(64.7, "meters")
  32112. },
  32113. {
  32114. name: "Megamacro",
  32115. height: math.unit(2.26, "km")
  32116. },
  32117. {
  32118. name: "Gigamacro",
  32119. height: math.unit(79, "km")
  32120. },
  32121. {
  32122. name: "Teramacro",
  32123. height: math.unit(2765, "km")
  32124. },
  32125. {
  32126. name: "Petamacro",
  32127. height: math.unit(96678, "km")
  32128. },
  32129. ]
  32130. ))
  32131. characterMakers.push(() => makeCharacter(
  32132. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32133. {
  32134. front: {
  32135. height: math.unit(30, "meters"),
  32136. weight: math.unit(400, "tons"),
  32137. name: "Front",
  32138. image: {
  32139. source: "./media/characters/zeel/front.svg",
  32140. extra: 2599/2599,
  32141. bottom: 226/2825
  32142. }
  32143. },
  32144. },
  32145. [
  32146. {
  32147. name: "Macro",
  32148. height: math.unit(30, "meters"),
  32149. default: true
  32150. },
  32151. ]
  32152. ))
  32153. characterMakers.push(() => makeCharacter(
  32154. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32155. {
  32156. front: {
  32157. height: math.unit(6 + 7/12, "feet"),
  32158. weight: math.unit(210, "lb"),
  32159. name: "Front",
  32160. image: {
  32161. source: "./media/characters/tarn/front.svg",
  32162. extra: 3517/3220,
  32163. bottom: 91/3608
  32164. }
  32165. },
  32166. back: {
  32167. height: math.unit(6 + 7/12, "feet"),
  32168. weight: math.unit(210, "lb"),
  32169. name: "Back",
  32170. image: {
  32171. source: "./media/characters/tarn/back.svg",
  32172. extra: 3566/3241,
  32173. bottom: 34/3600
  32174. }
  32175. },
  32176. dick: {
  32177. height: math.unit(1.65, "feet"),
  32178. name: "Dick",
  32179. image: {
  32180. source: "./media/characters/tarn/dick.svg"
  32181. }
  32182. },
  32183. paw: {
  32184. height: math.unit(1.80, "feet"),
  32185. name: "Paw",
  32186. image: {
  32187. source: "./media/characters/tarn/paw.svg"
  32188. }
  32189. },
  32190. tongue: {
  32191. height: math.unit(0.97, "feet"),
  32192. name: "Tongue",
  32193. image: {
  32194. source: "./media/characters/tarn/tongue.svg"
  32195. }
  32196. },
  32197. },
  32198. [
  32199. {
  32200. name: "Micro",
  32201. height: math.unit(4, "inches")
  32202. },
  32203. {
  32204. name: "Normal",
  32205. height: math.unit(6 + 7/12, "feet"),
  32206. default: true
  32207. },
  32208. {
  32209. name: "Macro",
  32210. height: math.unit(300, "feet")
  32211. },
  32212. ]
  32213. ))
  32214. characterMakers.push(() => makeCharacter(
  32215. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32216. {
  32217. front: {
  32218. height: math.unit(5 + 7/12, "feet"),
  32219. weight: math.unit(80, "kg"),
  32220. name: "Front",
  32221. image: {
  32222. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32223. extra: 3023/2865,
  32224. bottom: 33/3056
  32225. }
  32226. },
  32227. back: {
  32228. height: math.unit(5 + 7/12, "feet"),
  32229. weight: math.unit(80, "kg"),
  32230. name: "Back",
  32231. image: {
  32232. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32233. extra: 3020/2886,
  32234. bottom: 30/3050
  32235. }
  32236. },
  32237. dick: {
  32238. height: math.unit(0.98, "feet"),
  32239. name: "Dick",
  32240. image: {
  32241. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32242. }
  32243. },
  32244. anatomy: {
  32245. height: math.unit(2.86, "feet"),
  32246. name: "Anatomy",
  32247. image: {
  32248. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32249. }
  32250. },
  32251. },
  32252. [
  32253. {
  32254. name: "Really Small",
  32255. height: math.unit(2, "inches")
  32256. },
  32257. {
  32258. name: "Micro",
  32259. height: math.unit(5.583, "inches")
  32260. },
  32261. {
  32262. name: "Normal",
  32263. height: math.unit(5 + 7/12, "feet"),
  32264. default: true
  32265. },
  32266. {
  32267. name: "Macro",
  32268. height: math.unit(67, "feet")
  32269. },
  32270. {
  32271. name: "Megamacro",
  32272. height: math.unit(134, "feet")
  32273. },
  32274. ]
  32275. ))
  32276. characterMakers.push(() => makeCharacter(
  32277. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32278. {
  32279. front: {
  32280. height: math.unit(9, "feet"),
  32281. weight: math.unit(120, "lb"),
  32282. name: "Front",
  32283. image: {
  32284. source: "./media/characters/sally/front.svg",
  32285. extra: 1506/1349,
  32286. bottom: 66/1572
  32287. }
  32288. },
  32289. },
  32290. [
  32291. {
  32292. name: "Normal",
  32293. height: math.unit(9, "feet"),
  32294. default: true
  32295. },
  32296. ]
  32297. ))
  32298. characterMakers.push(() => makeCharacter(
  32299. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32300. {
  32301. front: {
  32302. height: math.unit(8, "feet"),
  32303. weight: math.unit(900, "lb"),
  32304. name: "Front",
  32305. image: {
  32306. source: "./media/characters/owen/front.svg",
  32307. extra: 1761/1657,
  32308. bottom: 74/1835
  32309. }
  32310. },
  32311. side: {
  32312. height: math.unit(8, "feet"),
  32313. weight: math.unit(900, "lb"),
  32314. name: "Side",
  32315. image: {
  32316. source: "./media/characters/owen/side.svg",
  32317. extra: 1797/1734,
  32318. bottom: 30/1827
  32319. }
  32320. },
  32321. back: {
  32322. height: math.unit(8, "feet"),
  32323. weight: math.unit(900, "lb"),
  32324. name: "Back",
  32325. image: {
  32326. source: "./media/characters/owen/back.svg",
  32327. extra: 1796/1706,
  32328. bottom: 59/1855
  32329. }
  32330. },
  32331. maw: {
  32332. height: math.unit(1.76, "feet"),
  32333. name: "Maw",
  32334. image: {
  32335. source: "./media/characters/owen/maw.svg"
  32336. }
  32337. },
  32338. },
  32339. [
  32340. {
  32341. name: "Normal",
  32342. height: math.unit(8, "feet"),
  32343. default: true
  32344. },
  32345. ]
  32346. ))
  32347. characterMakers.push(() => makeCharacter(
  32348. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32349. {
  32350. front: {
  32351. height: math.unit(4, "feet"),
  32352. weight: math.unit(400, "lb"),
  32353. name: "Front",
  32354. image: {
  32355. source: "./media/characters/ryth/front.svg",
  32356. extra: 1920/1748,
  32357. bottom: 42/1962
  32358. }
  32359. },
  32360. back: {
  32361. height: math.unit(4, "feet"),
  32362. weight: math.unit(400, "lb"),
  32363. name: "Back",
  32364. image: {
  32365. source: "./media/characters/ryth/back.svg",
  32366. extra: 1897/1690,
  32367. bottom: 89/1986
  32368. }
  32369. },
  32370. mouth: {
  32371. height: math.unit(1.39, "feet"),
  32372. name: "Mouth",
  32373. image: {
  32374. source: "./media/characters/ryth/mouth.svg"
  32375. }
  32376. },
  32377. tailmaw: {
  32378. height: math.unit(1.23, "feet"),
  32379. name: "Tailmaw",
  32380. image: {
  32381. source: "./media/characters/ryth/tailmaw.svg"
  32382. }
  32383. },
  32384. goia: {
  32385. height: math.unit(4, "meters"),
  32386. weight: math.unit(10800, "lb"),
  32387. name: "Goia",
  32388. image: {
  32389. source: "./media/characters/ryth/goia.svg",
  32390. extra: 745/640,
  32391. bottom: 107/852
  32392. }
  32393. },
  32394. goiaFront: {
  32395. height: math.unit(4, "meters"),
  32396. weight: math.unit(10800, "lb"),
  32397. name: "Goia (Front)",
  32398. image: {
  32399. source: "./media/characters/ryth/goia-front.svg",
  32400. extra: 750/586,
  32401. bottom: 114/864
  32402. }
  32403. },
  32404. goiaMaw: {
  32405. height: math.unit(5.55, "feet"),
  32406. name: "Goia Maw",
  32407. image: {
  32408. source: "./media/characters/ryth/goia-maw.svg"
  32409. }
  32410. },
  32411. goiaForepaw: {
  32412. height: math.unit(3.5, "feet"),
  32413. name: "Goia Forepaw",
  32414. image: {
  32415. source: "./media/characters/ryth/goia-forepaw.svg"
  32416. }
  32417. },
  32418. goiaHindpaw: {
  32419. height: math.unit(5.55, "feet"),
  32420. name: "Goia Hindpaw",
  32421. image: {
  32422. source: "./media/characters/ryth/goia-hindpaw.svg"
  32423. }
  32424. },
  32425. },
  32426. [
  32427. {
  32428. name: "Normal",
  32429. height: math.unit(4, "feet"),
  32430. default: true
  32431. },
  32432. ]
  32433. ))
  32434. characterMakers.push(() => makeCharacter(
  32435. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32436. {
  32437. front: {
  32438. height: math.unit(7, "feet"),
  32439. weight: math.unit(180, "lb"),
  32440. name: "Front",
  32441. image: {
  32442. source: "./media/characters/necrolance/front.svg",
  32443. extra: 1062/947,
  32444. bottom: 41/1103
  32445. }
  32446. },
  32447. back: {
  32448. height: math.unit(7, "feet"),
  32449. weight: math.unit(180, "lb"),
  32450. name: "Back",
  32451. image: {
  32452. source: "./media/characters/necrolance/back.svg",
  32453. extra: 1045/984,
  32454. bottom: 14/1059
  32455. }
  32456. },
  32457. wing: {
  32458. height: math.unit(2.67, "feet"),
  32459. name: "Wing",
  32460. image: {
  32461. source: "./media/characters/necrolance/wing.svg"
  32462. }
  32463. },
  32464. },
  32465. [
  32466. {
  32467. name: "Normal",
  32468. height: math.unit(7, "feet"),
  32469. default: true
  32470. },
  32471. ]
  32472. ))
  32473. characterMakers.push(() => makeCharacter(
  32474. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32475. {
  32476. front: {
  32477. height: math.unit(76, "meters"),
  32478. weight: math.unit(30000, "tons"),
  32479. name: "Front",
  32480. image: {
  32481. source: "./media/characters/tyler/front.svg",
  32482. extra: 1640/1640,
  32483. bottom: 114/1754
  32484. }
  32485. },
  32486. },
  32487. [
  32488. {
  32489. name: "Macro",
  32490. height: math.unit(76, "meters"),
  32491. default: true
  32492. },
  32493. ]
  32494. ))
  32495. characterMakers.push(() => makeCharacter(
  32496. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32497. {
  32498. front: {
  32499. height: math.unit(4 + 11/12, "feet"),
  32500. weight: math.unit(132, "lb"),
  32501. name: "Front",
  32502. image: {
  32503. source: "./media/characters/icey/front.svg",
  32504. extra: 2750/2550,
  32505. bottom: 33/2783
  32506. }
  32507. },
  32508. back: {
  32509. height: math.unit(4 + 11/12, "feet"),
  32510. weight: math.unit(132, "lb"),
  32511. name: "Back",
  32512. image: {
  32513. source: "./media/characters/icey/back.svg",
  32514. extra: 2624/2481,
  32515. bottom: 35/2659
  32516. }
  32517. },
  32518. },
  32519. [
  32520. {
  32521. name: "Normal",
  32522. height: math.unit(4 + 11/12, "feet"),
  32523. default: true
  32524. },
  32525. ]
  32526. ))
  32527. characterMakers.push(() => makeCharacter(
  32528. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32529. {
  32530. front: {
  32531. height: math.unit(100, "feet"),
  32532. weight: math.unit(0, "lb"),
  32533. name: "Front",
  32534. image: {
  32535. source: "./media/characters/smile/front.svg",
  32536. extra: 2983/2912,
  32537. bottom: 162/3145
  32538. }
  32539. },
  32540. back: {
  32541. height: math.unit(100, "feet"),
  32542. weight: math.unit(0, "lb"),
  32543. name: "Back",
  32544. image: {
  32545. source: "./media/characters/smile/back.svg",
  32546. extra: 3143/3031,
  32547. bottom: 91/3234
  32548. }
  32549. },
  32550. head: {
  32551. height: math.unit(26.3, "feet"),
  32552. weight: math.unit(0, "lb"),
  32553. name: "Head",
  32554. image: {
  32555. source: "./media/characters/smile/head.svg"
  32556. }
  32557. },
  32558. collar: {
  32559. height: math.unit(5.3, "feet"),
  32560. weight: math.unit(0, "lb"),
  32561. name: "Collar",
  32562. image: {
  32563. source: "./media/characters/smile/collar.svg"
  32564. }
  32565. },
  32566. },
  32567. [
  32568. {
  32569. name: "Macro",
  32570. height: math.unit(100, "feet"),
  32571. default: true
  32572. },
  32573. ]
  32574. ))
  32575. characterMakers.push(() => makeCharacter(
  32576. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32577. {
  32578. dragon: {
  32579. height: math.unit(26, "feet"),
  32580. weight: math.unit(36, "tons"),
  32581. name: "Dragon",
  32582. image: {
  32583. source: "./media/characters/arimphae/dragon.svg",
  32584. extra: 1574/983,
  32585. bottom: 357/1931
  32586. }
  32587. },
  32588. drake: {
  32589. height: math.unit(9, "feet"),
  32590. weight: math.unit(1.5, "tons"),
  32591. name: "Drake",
  32592. image: {
  32593. source: "./media/characters/arimphae/drake.svg",
  32594. extra: 1120/925,
  32595. bottom: 435/1555
  32596. }
  32597. },
  32598. },
  32599. [
  32600. {
  32601. name: "Small",
  32602. height: math.unit(26*5/9, "feet")
  32603. },
  32604. {
  32605. name: "Normal",
  32606. height: math.unit(26, "feet"),
  32607. default: true
  32608. },
  32609. ]
  32610. ))
  32611. characterMakers.push(() => makeCharacter(
  32612. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32613. {
  32614. front: {
  32615. height: math.unit(8 + 9/12, "feet"),
  32616. name: "Front",
  32617. image: {
  32618. source: "./media/characters/xander/front.svg",
  32619. extra: 1237/974,
  32620. bottom: 94/1331
  32621. }
  32622. },
  32623. },
  32624. [
  32625. {
  32626. name: "Normal",
  32627. height: math.unit(8 + 9/12, "feet"),
  32628. default: true
  32629. },
  32630. {
  32631. name: "Gaze Grabber",
  32632. height: math.unit(13 + 8/12, "feet")
  32633. },
  32634. {
  32635. name: "Jaw Dropper",
  32636. height: math.unit(27, "feet")
  32637. },
  32638. {
  32639. name: "Show Stopper",
  32640. height: math.unit(136, "feet")
  32641. },
  32642. {
  32643. name: "Superstar",
  32644. height: math.unit(1.9e6, "miles")
  32645. },
  32646. ]
  32647. ))
  32648. characterMakers.push(() => makeCharacter(
  32649. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32650. {
  32651. side: {
  32652. height: math.unit(2100, "feet"),
  32653. name: "Side",
  32654. image: {
  32655. source: "./media/characters/osiris/side.svg",
  32656. extra: 1105/939,
  32657. bottom: 167/1272
  32658. }
  32659. },
  32660. },
  32661. [
  32662. {
  32663. name: "Macro",
  32664. height: math.unit(2100, "feet"),
  32665. default: true
  32666. },
  32667. ]
  32668. ))
  32669. characterMakers.push(() => makeCharacter(
  32670. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32671. {
  32672. front: {
  32673. height: math.unit(6 + 8/12, "feet"),
  32674. weight: math.unit(225, "lb"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/rhys-londe/front.svg",
  32678. extra: 2258/2141,
  32679. bottom: 188/2446
  32680. }
  32681. },
  32682. back: {
  32683. height: math.unit(6 + 8/12, "feet"),
  32684. weight: math.unit(225, "lb"),
  32685. name: "Back",
  32686. image: {
  32687. source: "./media/characters/rhys-londe/back.svg",
  32688. extra: 2237/2137,
  32689. bottom: 63/2300
  32690. }
  32691. },
  32692. frontNsfw: {
  32693. height: math.unit(6 + 8/12, "feet"),
  32694. weight: math.unit(225, "lb"),
  32695. name: "Front (NSFW)",
  32696. image: {
  32697. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32698. extra: 2258/2141,
  32699. bottom: 188/2446
  32700. }
  32701. },
  32702. backNsfw: {
  32703. height: math.unit(6 + 8/12, "feet"),
  32704. weight: math.unit(225, "lb"),
  32705. name: "Back (NSFW)",
  32706. image: {
  32707. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32708. extra: 2237/2137,
  32709. bottom: 63/2300
  32710. }
  32711. },
  32712. dick: {
  32713. height: math.unit(30, "inches"),
  32714. name: "Dick",
  32715. image: {
  32716. source: "./media/characters/rhys-londe/dick.svg"
  32717. }
  32718. },
  32719. maw: {
  32720. height: math.unit(1.6, "feet"),
  32721. name: "Maw",
  32722. image: {
  32723. source: "./media/characters/rhys-londe/maw.svg"
  32724. }
  32725. },
  32726. },
  32727. [
  32728. {
  32729. name: "Normal",
  32730. height: math.unit(6 + 8/12, "feet"),
  32731. default: true
  32732. },
  32733. ]
  32734. ))
  32735. characterMakers.push(() => makeCharacter(
  32736. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32737. {
  32738. front: {
  32739. height: math.unit(3 + 10/12, "feet"),
  32740. weight: math.unit(90, "lb"),
  32741. name: "Front",
  32742. image: {
  32743. source: "./media/characters/taivas-ensim/front.svg",
  32744. extra: 1327/1216,
  32745. bottom: 96/1423
  32746. }
  32747. },
  32748. back: {
  32749. height: math.unit(3 + 10/12, "feet"),
  32750. weight: math.unit(90, "lb"),
  32751. name: "Back",
  32752. image: {
  32753. source: "./media/characters/taivas-ensim/back.svg",
  32754. extra: 1355/1247,
  32755. bottom: 11/1366
  32756. }
  32757. },
  32758. frontNsfw: {
  32759. height: math.unit(3 + 10/12, "feet"),
  32760. weight: math.unit(90, "lb"),
  32761. name: "Front (NSFW)",
  32762. image: {
  32763. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32764. extra: 1327/1216,
  32765. bottom: 96/1423
  32766. }
  32767. },
  32768. backNsfw: {
  32769. height: math.unit(3 + 10/12, "feet"),
  32770. weight: math.unit(90, "lb"),
  32771. name: "Back (NSFW)",
  32772. image: {
  32773. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32774. extra: 1355/1247,
  32775. bottom: 11/1366
  32776. }
  32777. },
  32778. },
  32779. [
  32780. {
  32781. name: "Normal",
  32782. height: math.unit(3 + 10/12, "feet"),
  32783. default: true
  32784. },
  32785. ]
  32786. ))
  32787. characterMakers.push(() => makeCharacter(
  32788. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32789. {
  32790. front: {
  32791. height: math.unit(9 + 6/12, "feet"),
  32792. weight: math.unit(940, "lb"),
  32793. name: "Front",
  32794. image: {
  32795. source: "./media/characters/byliss/front.svg",
  32796. extra: 1327/1290,
  32797. bottom: 82/1409
  32798. }
  32799. },
  32800. back: {
  32801. height: math.unit(9 + 6/12, "feet"),
  32802. weight: math.unit(940, "lb"),
  32803. name: "Back",
  32804. image: {
  32805. source: "./media/characters/byliss/back.svg",
  32806. extra: 1376/1349,
  32807. bottom: 9/1385
  32808. }
  32809. },
  32810. frontNsfw: {
  32811. height: math.unit(9 + 6/12, "feet"),
  32812. weight: math.unit(940, "lb"),
  32813. name: "Front (NSFW)",
  32814. image: {
  32815. source: "./media/characters/byliss/front-nsfw.svg",
  32816. extra: 1327/1290,
  32817. bottom: 82/1409
  32818. }
  32819. },
  32820. backNsfw: {
  32821. height: math.unit(9 + 6/12, "feet"),
  32822. weight: math.unit(940, "lb"),
  32823. name: "Back (NSFW)",
  32824. image: {
  32825. source: "./media/characters/byliss/back-nsfw.svg",
  32826. extra: 1376/1349,
  32827. bottom: 9/1385
  32828. }
  32829. },
  32830. },
  32831. [
  32832. {
  32833. name: "Normal",
  32834. height: math.unit(9 + 6/12, "feet"),
  32835. default: true
  32836. },
  32837. ]
  32838. ))
  32839. characterMakers.push(() => makeCharacter(
  32840. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32841. {
  32842. front: {
  32843. height: math.unit(5 + 2/12, "feet"),
  32844. weight: math.unit(200, "lb"),
  32845. name: "Front",
  32846. image: {
  32847. source: "./media/characters/noraly/front.svg",
  32848. extra: 4985/4773,
  32849. bottom: 150/5135
  32850. }
  32851. },
  32852. full: {
  32853. height: math.unit(5 + 2/12, "feet"),
  32854. weight: math.unit(164, "lb"),
  32855. name: "Full",
  32856. image: {
  32857. source: "./media/characters/noraly/full.svg",
  32858. extra: 1114/1059,
  32859. bottom: 35/1149
  32860. }
  32861. },
  32862. fuller: {
  32863. height: math.unit(5 + 2/12, "feet"),
  32864. weight: math.unit(230, "lb"),
  32865. name: "Fuller",
  32866. image: {
  32867. source: "./media/characters/noraly/fuller.svg",
  32868. extra: 1114/1059,
  32869. bottom: 35/1149
  32870. }
  32871. },
  32872. fullest: {
  32873. height: math.unit(5 + 2/12, "feet"),
  32874. weight: math.unit(300, "lb"),
  32875. name: "Fullest",
  32876. image: {
  32877. source: "./media/characters/noraly/fullest.svg",
  32878. extra: 1114/1059,
  32879. bottom: 35/1149
  32880. }
  32881. },
  32882. },
  32883. [
  32884. {
  32885. name: "Normal",
  32886. height: math.unit(5 + 2/12, "feet"),
  32887. default: true
  32888. },
  32889. ]
  32890. ))
  32891. characterMakers.push(() => makeCharacter(
  32892. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32893. {
  32894. front: {
  32895. height: math.unit(5 + 2/12, "feet"),
  32896. weight: math.unit(210, "lb"),
  32897. name: "Front",
  32898. image: {
  32899. source: "./media/characters/pera/front.svg",
  32900. extra: 1560/1531,
  32901. bottom: 165/1725
  32902. }
  32903. },
  32904. back: {
  32905. height: math.unit(5 + 2/12, "feet"),
  32906. weight: math.unit(210, "lb"),
  32907. name: "Back",
  32908. image: {
  32909. source: "./media/characters/pera/back.svg",
  32910. extra: 1523/1493,
  32911. bottom: 152/1675
  32912. }
  32913. },
  32914. dick: {
  32915. height: math.unit(2.4, "feet"),
  32916. name: "Dick",
  32917. image: {
  32918. source: "./media/characters/pera/dick.svg"
  32919. }
  32920. },
  32921. },
  32922. [
  32923. {
  32924. name: "Normal",
  32925. height: math.unit(5 + 2/12, "feet"),
  32926. default: true
  32927. },
  32928. ]
  32929. ))
  32930. characterMakers.push(() => makeCharacter(
  32931. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32932. {
  32933. front: {
  32934. height: math.unit(12, "feet"),
  32935. weight: math.unit(3200, "lb"),
  32936. name: "Front",
  32937. image: {
  32938. source: "./media/characters/julian/front.svg",
  32939. extra: 2962/2701,
  32940. bottom: 184/3146
  32941. }
  32942. },
  32943. maw: {
  32944. height: math.unit(5.35, "feet"),
  32945. name: "Maw",
  32946. image: {
  32947. source: "./media/characters/julian/maw.svg"
  32948. }
  32949. },
  32950. paw: {
  32951. height: math.unit(3.07, "feet"),
  32952. name: "Paw",
  32953. image: {
  32954. source: "./media/characters/julian/paw.svg"
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Default",
  32961. height: math.unit(12, "feet"),
  32962. default: true
  32963. },
  32964. {
  32965. name: "Big",
  32966. height: math.unit(50, "feet")
  32967. },
  32968. {
  32969. name: "Really Big",
  32970. height: math.unit(1, "mile")
  32971. },
  32972. {
  32973. name: "Extremely Big",
  32974. height: math.unit(100, "miles")
  32975. },
  32976. {
  32977. name: "Planet Hugger",
  32978. height: math.unit(200, "megameters")
  32979. },
  32980. {
  32981. name: "Unreasonably Big",
  32982. height: math.unit(1e300, "meters")
  32983. },
  32984. ]
  32985. ))
  32986. characterMakers.push(() => makeCharacter(
  32987. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32988. {
  32989. solgooleo: {
  32990. height: math.unit(4, "meters"),
  32991. weight: math.unit(6000*1.5, "kg"),
  32992. volume: math.unit(6000, "liters"),
  32993. name: "Solgooleo",
  32994. image: {
  32995. source: "./media/characters/pi/solgooleo.svg",
  32996. extra: 388/331,
  32997. bottom: 29/417
  32998. }
  32999. },
  33000. },
  33001. [
  33002. {
  33003. name: "Normal",
  33004. height: math.unit(4, "meters"),
  33005. default: true
  33006. },
  33007. ]
  33008. ))
  33009. characterMakers.push(() => makeCharacter(
  33010. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33011. {
  33012. front: {
  33013. height: math.unit(8, "feet"),
  33014. weight: math.unit(4, "tons"),
  33015. name: "Front",
  33016. image: {
  33017. source: "./media/characters/shaun/front.svg",
  33018. extra: 503/495,
  33019. bottom: 20/523
  33020. }
  33021. },
  33022. back: {
  33023. height: math.unit(8, "feet"),
  33024. weight: math.unit(4, "tons"),
  33025. name: "Back",
  33026. image: {
  33027. source: "./media/characters/shaun/back.svg",
  33028. extra: 487/480,
  33029. bottom: 20/507
  33030. }
  33031. },
  33032. },
  33033. [
  33034. {
  33035. name: "Lorg",
  33036. height: math.unit(8, "feet"),
  33037. default: true
  33038. },
  33039. ]
  33040. ))
  33041. characterMakers.push(() => makeCharacter(
  33042. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33043. {
  33044. frontAnthro: {
  33045. height: math.unit(7, "feet"),
  33046. name: "Front",
  33047. image: {
  33048. source: "./media/characters/sini/front-anthro.svg",
  33049. extra: 726/678,
  33050. bottom: 35/761
  33051. },
  33052. form: "anthro",
  33053. default: true
  33054. },
  33055. backAnthro: {
  33056. height: math.unit(7, "feet"),
  33057. name: "Back",
  33058. image: {
  33059. source: "./media/characters/sini/back-anthro.svg",
  33060. extra: 743/701,
  33061. bottom: 12/755
  33062. },
  33063. form: "anthro",
  33064. },
  33065. frontAnthroNsfw: {
  33066. height: math.unit(7, "feet"),
  33067. name: "Front (NSFW)",
  33068. image: {
  33069. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33070. extra: 726/678,
  33071. bottom: 35/761
  33072. },
  33073. form: "anthro"
  33074. },
  33075. backAnthroNsfw: {
  33076. height: math.unit(7, "feet"),
  33077. name: "Back (NSFW)",
  33078. image: {
  33079. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33080. extra: 743/701,
  33081. bottom: 12/755
  33082. },
  33083. form: "anthro",
  33084. },
  33085. mawAnthro: {
  33086. height: math.unit(2.14, "feet"),
  33087. name: "Maw",
  33088. image: {
  33089. source: "./media/characters/sini/maw-anthro.svg"
  33090. },
  33091. form: "anthro"
  33092. },
  33093. dick: {
  33094. height: math.unit(1.45, "feet"),
  33095. name: "Dick",
  33096. image: {
  33097. source: "./media/characters/sini/dick-anthro.svg"
  33098. },
  33099. form: "anthro"
  33100. },
  33101. feral: {
  33102. height: math.unit(16, "feet"),
  33103. name: "Feral",
  33104. image: {
  33105. source: "./media/characters/sini/feral.svg",
  33106. extra: 814/605,
  33107. bottom: 11/825
  33108. },
  33109. form: "feral",
  33110. default: true
  33111. },
  33112. feralNsfw: {
  33113. height: math.unit(16, "feet"),
  33114. name: "Feral (NSFW)",
  33115. image: {
  33116. source: "./media/characters/sini/feral-nsfw.svg",
  33117. extra: 814/605,
  33118. bottom: 11/825
  33119. },
  33120. form: "feral"
  33121. },
  33122. mawFeral: {
  33123. height: math.unit(5.66, "feet"),
  33124. name: "Maw",
  33125. image: {
  33126. source: "./media/characters/sini/maw-feral.svg"
  33127. },
  33128. form: "feral",
  33129. },
  33130. pawFeral: {
  33131. height: math.unit(5.17, "feet"),
  33132. name: "Paw",
  33133. image: {
  33134. source: "./media/characters/sini/paw-feral.svg"
  33135. },
  33136. form: "feral",
  33137. },
  33138. rumpFeral: {
  33139. height: math.unit(13.11, "feet"),
  33140. name: "Rump",
  33141. image: {
  33142. source: "./media/characters/sini/rump-feral.svg"
  33143. },
  33144. form: "feral",
  33145. },
  33146. dickFeral: {
  33147. height: math.unit(1, "feet"),
  33148. name: "Dick",
  33149. image: {
  33150. source: "./media/characters/sini/dick-feral.svg"
  33151. },
  33152. form: "feral",
  33153. },
  33154. eyeFeral: {
  33155. height: math.unit(1.23, "feet"),
  33156. name: "Eye",
  33157. image: {
  33158. source: "./media/characters/sini/eye-feral.svg"
  33159. },
  33160. form: "feral",
  33161. },
  33162. },
  33163. [
  33164. {
  33165. name: "Normal",
  33166. height: math.unit(7, "feet"),
  33167. default: true,
  33168. form: "anthro"
  33169. },
  33170. {
  33171. name: "Normal",
  33172. height: math.unit(16, "feet"),
  33173. default: true,
  33174. form: "feral"
  33175. },
  33176. ],
  33177. {
  33178. "anthro": {
  33179. name: "Anthro",
  33180. default: true
  33181. },
  33182. "feral": {
  33183. name: "Feral",
  33184. }
  33185. }
  33186. ))
  33187. characterMakers.push(() => makeCharacter(
  33188. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33189. {
  33190. side: {
  33191. height: math.unit(13, "meters"),
  33192. weight: math.unit(9072, "kg"),
  33193. name: "Side",
  33194. image: {
  33195. source: "./media/characters/raylldo/side.svg",
  33196. extra: 403/344,
  33197. bottom: 42/445
  33198. }
  33199. },
  33200. leaping: {
  33201. height: math.unit(12.3, "meters"),
  33202. weight: math.unit(9072, "kg"),
  33203. name: "Leaping",
  33204. image: {
  33205. source: "./media/characters/raylldo/leaping.svg",
  33206. extra: 470/249,
  33207. bottom: 13/483
  33208. }
  33209. },
  33210. flying: {
  33211. height: math.unit(18, "meters"),
  33212. weight: math.unit(9072, "kg"),
  33213. name: "Flying",
  33214. image: {
  33215. source: "./media/characters/raylldo/flying.svg"
  33216. }
  33217. },
  33218. head: {
  33219. height: math.unit(5.85, "meters"),
  33220. name: "Head",
  33221. image: {
  33222. source: "./media/characters/raylldo/head.svg"
  33223. }
  33224. },
  33225. maw: {
  33226. height: math.unit(5.32, "meters"),
  33227. name: "Maw",
  33228. image: {
  33229. source: "./media/characters/raylldo/maw.svg"
  33230. }
  33231. },
  33232. eye: {
  33233. height: math.unit(0.54, "meters"),
  33234. name: "Eye",
  33235. image: {
  33236. source: "./media/characters/raylldo/eye.svg"
  33237. }
  33238. },
  33239. },
  33240. [
  33241. {
  33242. name: "Normal",
  33243. height: math.unit(13, "meters"),
  33244. default: true
  33245. },
  33246. ]
  33247. ))
  33248. characterMakers.push(() => makeCharacter(
  33249. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33250. {
  33251. anthroFront: {
  33252. height: math.unit(9, "feet"),
  33253. weight: math.unit(600, "lb"),
  33254. name: "Anthro (Front)",
  33255. image: {
  33256. source: "./media/characters/glint/anthro-front.svg",
  33257. extra: 1097/1018,
  33258. bottom: 28/1125
  33259. }
  33260. },
  33261. anthroBack: {
  33262. height: math.unit(9, "feet"),
  33263. weight: math.unit(600, "lb"),
  33264. name: "Anthro (Back)",
  33265. image: {
  33266. source: "./media/characters/glint/anthro-back.svg",
  33267. extra: 1154/997,
  33268. bottom: 36/1190
  33269. }
  33270. },
  33271. feral: {
  33272. height: math.unit(11, "feet"),
  33273. weight: math.unit(50000, "lb"),
  33274. name: "Feral",
  33275. image: {
  33276. source: "./media/characters/glint/feral.svg",
  33277. extra: 3035/1585,
  33278. bottom: 1169/4204
  33279. }
  33280. },
  33281. dickAnthro: {
  33282. height: math.unit(0.7, "meters"),
  33283. name: "Dick (Anthro)",
  33284. image: {
  33285. source: "./media/characters/glint/dick-anthro.svg"
  33286. }
  33287. },
  33288. dickFeral: {
  33289. height: math.unit(2.65, "meters"),
  33290. name: "Dick (Feral)",
  33291. image: {
  33292. source: "./media/characters/glint/dick-feral.svg"
  33293. }
  33294. },
  33295. slitHidden: {
  33296. height: math.unit(5.85, "meters"),
  33297. name: "Slit (Hidden)",
  33298. image: {
  33299. source: "./media/characters/glint/slit-hidden.svg"
  33300. }
  33301. },
  33302. slitErect: {
  33303. height: math.unit(5.85, "meters"),
  33304. name: "Slit (Erect)",
  33305. image: {
  33306. source: "./media/characters/glint/slit-erect.svg"
  33307. }
  33308. },
  33309. mawAnthro: {
  33310. height: math.unit(0.63, "meters"),
  33311. name: "Maw (Anthro)",
  33312. image: {
  33313. source: "./media/characters/glint/maw.svg"
  33314. }
  33315. },
  33316. mawFeral: {
  33317. height: math.unit(2.89, "meters"),
  33318. name: "Maw (Feral)",
  33319. image: {
  33320. source: "./media/characters/glint/maw.svg"
  33321. }
  33322. },
  33323. },
  33324. [
  33325. {
  33326. name: "Normal",
  33327. height: math.unit(9, "feet"),
  33328. default: true
  33329. },
  33330. ]
  33331. ))
  33332. characterMakers.push(() => makeCharacter(
  33333. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33334. {
  33335. side: {
  33336. height: math.unit(15, "feet"),
  33337. weight: math.unit(5000, "kg"),
  33338. name: "Side",
  33339. image: {
  33340. source: "./media/characters/kairne/side.svg",
  33341. extra: 979/811,
  33342. bottom: 13/992
  33343. }
  33344. },
  33345. front: {
  33346. height: math.unit(15, "feet"),
  33347. weight: math.unit(5000, "kg"),
  33348. name: "Front",
  33349. image: {
  33350. source: "./media/characters/kairne/front.svg",
  33351. extra: 908/814,
  33352. bottom: 26/934
  33353. }
  33354. },
  33355. sideNsfw: {
  33356. height: math.unit(15, "feet"),
  33357. weight: math.unit(5000, "kg"),
  33358. name: "Side (NSFW)",
  33359. image: {
  33360. source: "./media/characters/kairne/side-nsfw.svg",
  33361. extra: 979/811,
  33362. bottom: 13/992
  33363. }
  33364. },
  33365. frontNsfw: {
  33366. height: math.unit(15, "feet"),
  33367. weight: math.unit(5000, "kg"),
  33368. name: "Front (NSFW)",
  33369. image: {
  33370. source: "./media/characters/kairne/front-nsfw.svg",
  33371. extra: 908/814,
  33372. bottom: 26/934
  33373. }
  33374. },
  33375. dickCaged: {
  33376. height: math.unit(0.65, "meters"),
  33377. name: "Dick-caged",
  33378. image: {
  33379. source: "./media/characters/kairne/dick-caged.svg"
  33380. }
  33381. },
  33382. dick: {
  33383. height: math.unit(0.79, "meters"),
  33384. name: "Dick",
  33385. image: {
  33386. source: "./media/characters/kairne/dick.svg"
  33387. }
  33388. },
  33389. genitals: {
  33390. height: math.unit(1.29, "meters"),
  33391. name: "Genitals",
  33392. image: {
  33393. source: "./media/characters/kairne/genitals.svg"
  33394. }
  33395. },
  33396. maw: {
  33397. height: math.unit(1.73, "meters"),
  33398. name: "Maw",
  33399. image: {
  33400. source: "./media/characters/kairne/maw.svg"
  33401. }
  33402. },
  33403. },
  33404. [
  33405. {
  33406. name: "Normal",
  33407. height: math.unit(15, "feet"),
  33408. default: true
  33409. },
  33410. ]
  33411. ))
  33412. characterMakers.push(() => makeCharacter(
  33413. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33414. {
  33415. front: {
  33416. height: math.unit(5 + 8/12, "feet"),
  33417. weight: math.unit(139, "lb"),
  33418. name: "Front",
  33419. image: {
  33420. source: "./media/characters/biscuit-jackal/front.svg",
  33421. extra: 2106/1961,
  33422. bottom: 58/2164
  33423. }
  33424. },
  33425. back: {
  33426. height: math.unit(5 + 8/12, "feet"),
  33427. weight: math.unit(139, "lb"),
  33428. name: "Back",
  33429. image: {
  33430. source: "./media/characters/biscuit-jackal/back.svg",
  33431. extra: 2132/1976,
  33432. bottom: 57/2189
  33433. }
  33434. },
  33435. werejackal: {
  33436. height: math.unit(6 + 3/12, "feet"),
  33437. weight: math.unit(188, "lb"),
  33438. name: "Werejackal",
  33439. image: {
  33440. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33441. extra: 2373/2178,
  33442. bottom: 53/2426
  33443. }
  33444. },
  33445. },
  33446. [
  33447. {
  33448. name: "Normal",
  33449. height: math.unit(5 + 8/12, "feet"),
  33450. default: true
  33451. },
  33452. ]
  33453. ))
  33454. characterMakers.push(() => makeCharacter(
  33455. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33456. {
  33457. front: {
  33458. height: math.unit(140, "cm"),
  33459. weight: math.unit(45, "kg"),
  33460. name: "Front",
  33461. image: {
  33462. source: "./media/characters/tayra-white/front.svg",
  33463. extra: 2229/2192,
  33464. bottom: 75/2304
  33465. }
  33466. },
  33467. },
  33468. [
  33469. {
  33470. name: "Normal",
  33471. height: math.unit(140, "cm"),
  33472. default: true
  33473. },
  33474. ]
  33475. ))
  33476. characterMakers.push(() => makeCharacter(
  33477. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33478. {
  33479. front: {
  33480. height: math.unit(4 + 5/12, "feet"),
  33481. name: "Front",
  33482. image: {
  33483. source: "./media/characters/scoop/front.svg",
  33484. extra: 1257/1136,
  33485. bottom: 69/1326
  33486. }
  33487. },
  33488. back: {
  33489. height: math.unit(4 + 5/12, "feet"),
  33490. name: "Back",
  33491. image: {
  33492. source: "./media/characters/scoop/back.svg",
  33493. extra: 1321/1152,
  33494. bottom: 32/1353
  33495. }
  33496. },
  33497. maw: {
  33498. height: math.unit(0.68, "feet"),
  33499. name: "Maw",
  33500. image: {
  33501. source: "./media/characters/scoop/maw.svg"
  33502. }
  33503. },
  33504. },
  33505. [
  33506. {
  33507. name: "Really Small",
  33508. height: math.unit(1, "mm")
  33509. },
  33510. {
  33511. name: "Micro",
  33512. height: math.unit(1, "inch")
  33513. },
  33514. {
  33515. name: "Normal",
  33516. height: math.unit(4 + 5/12, "feet"),
  33517. default: true
  33518. },
  33519. {
  33520. name: "Macro",
  33521. height: math.unit(200, "feet")
  33522. },
  33523. {
  33524. name: "Megamacro",
  33525. height: math.unit(3240, "feet")
  33526. },
  33527. {
  33528. name: "Teramacro",
  33529. height: math.unit(2500, "miles")
  33530. },
  33531. ]
  33532. ))
  33533. characterMakers.push(() => makeCharacter(
  33534. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33535. {
  33536. front: {
  33537. height: math.unit(15 + 7/12, "feet"),
  33538. name: "Front",
  33539. image: {
  33540. source: "./media/characters/saphinara/front.svg",
  33541. extra: 604/546,
  33542. bottom: 19/623
  33543. }
  33544. },
  33545. side: {
  33546. height: math.unit(15 + 7/12, "feet"),
  33547. name: "Side",
  33548. image: {
  33549. source: "./media/characters/saphinara/side.svg",
  33550. extra: 605/547,
  33551. bottom: 6/611
  33552. }
  33553. },
  33554. back: {
  33555. height: math.unit(15 + 7/12, "feet"),
  33556. name: "Back",
  33557. image: {
  33558. source: "./media/characters/saphinara/back.svg",
  33559. extra: 591/531,
  33560. bottom: 13/604
  33561. }
  33562. },
  33563. frontTail: {
  33564. height: math.unit(15 + 7/12, "feet"),
  33565. name: "Front (Full Tail)",
  33566. image: {
  33567. source: "./media/characters/saphinara/front-tail.svg",
  33568. extra: 748/547,
  33569. bottom: 66/814
  33570. }
  33571. },
  33572. },
  33573. [
  33574. {
  33575. name: "Normal",
  33576. height: math.unit(15 + 7/12, "feet"),
  33577. default: true
  33578. },
  33579. {
  33580. name: "Angry",
  33581. height: math.unit(30 + 6/12, "feet")
  33582. },
  33583. {
  33584. name: "Enraged",
  33585. height: math.unit(102 + 1/12, "feet")
  33586. },
  33587. ]
  33588. ))
  33589. characterMakers.push(() => makeCharacter(
  33590. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33591. {
  33592. front: {
  33593. height: math.unit(6 + 8/12, "feet"),
  33594. weight: math.unit(300, "lb"),
  33595. name: "Front",
  33596. image: {
  33597. source: "./media/characters/jrain/front.svg",
  33598. extra: 3039/2865,
  33599. bottom: 399/3438
  33600. }
  33601. },
  33602. back: {
  33603. height: math.unit(6 + 8/12, "feet"),
  33604. weight: math.unit(300, "lb"),
  33605. name: "Back",
  33606. image: {
  33607. source: "./media/characters/jrain/back.svg",
  33608. extra: 3089/2938,
  33609. bottom: 172/3261
  33610. }
  33611. },
  33612. head: {
  33613. height: math.unit(2.14, "feet"),
  33614. name: "Head",
  33615. image: {
  33616. source: "./media/characters/jrain/head.svg"
  33617. }
  33618. },
  33619. maw: {
  33620. height: math.unit(1.77, "feet"),
  33621. name: "Maw",
  33622. image: {
  33623. source: "./media/characters/jrain/maw.svg"
  33624. }
  33625. },
  33626. leftHand: {
  33627. height: math.unit(1.1, "feet"),
  33628. name: "Left Hand",
  33629. image: {
  33630. source: "./media/characters/jrain/left-hand.svg"
  33631. }
  33632. },
  33633. rightHand: {
  33634. height: math.unit(1.1, "feet"),
  33635. name: "Right Hand",
  33636. image: {
  33637. source: "./media/characters/jrain/right-hand.svg"
  33638. }
  33639. },
  33640. eye: {
  33641. height: math.unit(0.35, "feet"),
  33642. name: "Eye",
  33643. image: {
  33644. source: "./media/characters/jrain/eye.svg"
  33645. }
  33646. },
  33647. },
  33648. [
  33649. {
  33650. name: "Normal",
  33651. height: math.unit(6 + 8/12, "feet"),
  33652. default: true
  33653. },
  33654. {
  33655. name: "Casually Large",
  33656. height: math.unit(25, "feet")
  33657. },
  33658. {
  33659. name: "Giant",
  33660. height: math.unit(100, "feet")
  33661. },
  33662. {
  33663. name: "Kaiju",
  33664. height: math.unit(300, "feet")
  33665. },
  33666. ]
  33667. ))
  33668. characterMakers.push(() => makeCharacter(
  33669. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33670. {
  33671. dragon: {
  33672. height: math.unit(5, "meters"),
  33673. name: "Dragon",
  33674. image: {
  33675. source: "./media/characters/sabrina/dragon.svg",
  33676. extra: 3670 / 2365,
  33677. bottom: 333 / 4003
  33678. }
  33679. },
  33680. gryphon: {
  33681. height: math.unit(3, "meters"),
  33682. name: "Gryphon",
  33683. image: {
  33684. source: "./media/characters/sabrina/gryphon.svg",
  33685. extra: 1576 / 945,
  33686. bottom: 71 / 1647
  33687. }
  33688. },
  33689. snake: {
  33690. height: math.unit(12, "meters"),
  33691. name: "Snake",
  33692. image: {
  33693. source: "./media/characters/sabrina/snake.svg",
  33694. extra: 1758 / 1320,
  33695. bottom: 186 / 1944
  33696. }
  33697. },
  33698. collar: {
  33699. height: math.unit(1.86, "meters"),
  33700. name: "Collar",
  33701. image: {
  33702. source: "./media/characters/sabrina/collar.svg"
  33703. }
  33704. },
  33705. eye: {
  33706. height: math.unit(0.53, "meters"),
  33707. name: "Eye",
  33708. image: {
  33709. source: "./media/characters/sabrina/eye.svg"
  33710. }
  33711. },
  33712. foot: {
  33713. height: math.unit(1.86, "meters"),
  33714. name: "Foot",
  33715. image: {
  33716. source: "./media/characters/sabrina/foot.svg"
  33717. }
  33718. },
  33719. hand: {
  33720. height: math.unit(1.32, "meters"),
  33721. name: "Hand",
  33722. image: {
  33723. source: "./media/characters/sabrina/hand.svg"
  33724. }
  33725. },
  33726. head: {
  33727. height: math.unit(2.44, "meters"),
  33728. name: "Head",
  33729. image: {
  33730. source: "./media/characters/sabrina/head.svg"
  33731. }
  33732. },
  33733. headAngry: {
  33734. height: math.unit(2.44, "meters"),
  33735. name: "Head (Angry))",
  33736. image: {
  33737. source: "./media/characters/sabrina/head-angry.svg"
  33738. }
  33739. },
  33740. maw: {
  33741. height: math.unit(1.65, "meters"),
  33742. name: "Maw",
  33743. image: {
  33744. source: "./media/characters/sabrina/maw.svg"
  33745. }
  33746. },
  33747. spikes: {
  33748. height: math.unit(1.69, "meters"),
  33749. name: "Spikes",
  33750. image: {
  33751. source: "./media/characters/sabrina/spikes.svg"
  33752. }
  33753. },
  33754. stomach: {
  33755. height: math.unit(1.15, "meters"),
  33756. name: "Stomach",
  33757. image: {
  33758. source: "./media/characters/sabrina/stomach.svg"
  33759. }
  33760. },
  33761. tongue: {
  33762. height: math.unit(1.27, "meters"),
  33763. name: "Tongue",
  33764. image: {
  33765. source: "./media/characters/sabrina/tongue.svg"
  33766. }
  33767. },
  33768. wingDorsal: {
  33769. height: math.unit(4.85, "meters"),
  33770. name: "Wing (Dorsal)",
  33771. image: {
  33772. source: "./media/characters/sabrina/wing-dorsal.svg"
  33773. }
  33774. },
  33775. wingVentral: {
  33776. height: math.unit(4.85, "meters"),
  33777. name: "Wing (Ventral)",
  33778. image: {
  33779. source: "./media/characters/sabrina/wing-ventral.svg"
  33780. }
  33781. },
  33782. },
  33783. [
  33784. {
  33785. name: "Normal",
  33786. height: math.unit(5, "meters"),
  33787. default: true
  33788. },
  33789. ]
  33790. ))
  33791. characterMakers.push(() => makeCharacter(
  33792. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33793. {
  33794. frontMaid: {
  33795. height: math.unit(5 + 5/12, "feet"),
  33796. weight: math.unit(130, "lb"),
  33797. name: "Front (Maid)",
  33798. image: {
  33799. source: "./media/characters/midnight-tales/front-maid.svg",
  33800. extra: 489/454,
  33801. bottom: 61/550
  33802. }
  33803. },
  33804. frontFormal: {
  33805. height: math.unit(5 + 5/12, "feet"),
  33806. weight: math.unit(130, "lb"),
  33807. name: "Front (Formal)",
  33808. image: {
  33809. source: "./media/characters/midnight-tales/front-formal.svg",
  33810. extra: 489/454,
  33811. bottom: 61/550
  33812. }
  33813. },
  33814. back: {
  33815. height: math.unit(5 + 5/12, "feet"),
  33816. weight: math.unit(130, "lb"),
  33817. name: "Back",
  33818. image: {
  33819. source: "./media/characters/midnight-tales/back.svg",
  33820. extra: 498/456,
  33821. bottom: 33/531
  33822. }
  33823. },
  33824. frontBeast: {
  33825. height: math.unit(40, "feet"),
  33826. weight: math.unit(64000, "lb"),
  33827. name: "Front (Beast)",
  33828. image: {
  33829. source: "./media/characters/midnight-tales/front-beast.svg",
  33830. extra: 927/860,
  33831. bottom: 53/980
  33832. }
  33833. },
  33834. backBeast: {
  33835. height: math.unit(40, "feet"),
  33836. weight: math.unit(64000, "lb"),
  33837. name: "Back (Beast)",
  33838. image: {
  33839. source: "./media/characters/midnight-tales/back-beast.svg",
  33840. extra: 929/855,
  33841. bottom: 16/945
  33842. }
  33843. },
  33844. footBeast: {
  33845. height: math.unit(6.7, "feet"),
  33846. name: "Foot (Beast)",
  33847. image: {
  33848. source: "./media/characters/midnight-tales/foot-beast.svg"
  33849. }
  33850. },
  33851. headBeast: {
  33852. height: math.unit(8, "feet"),
  33853. name: "Head (Beast)",
  33854. image: {
  33855. source: "./media/characters/midnight-tales/head-beast.svg"
  33856. }
  33857. },
  33858. },
  33859. [
  33860. {
  33861. name: "Normal",
  33862. height: math.unit(5 + 5 / 12, "feet"),
  33863. default: true
  33864. },
  33865. {
  33866. name: "Macro",
  33867. height: math.unit(25, "feet")
  33868. },
  33869. ]
  33870. ))
  33871. characterMakers.push(() => makeCharacter(
  33872. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33873. {
  33874. front: {
  33875. height: math.unit(5 + 10/12, "feet"),
  33876. name: "Front",
  33877. image: {
  33878. source: "./media/characters/argon/front.svg",
  33879. extra: 2009/1935,
  33880. bottom: 118/2127
  33881. }
  33882. },
  33883. back: {
  33884. height: math.unit(5 + 10/12, "feet"),
  33885. name: "Back",
  33886. image: {
  33887. source: "./media/characters/argon/back.svg",
  33888. extra: 2047/1992,
  33889. bottom: 20/2067
  33890. }
  33891. },
  33892. frontDressed: {
  33893. height: math.unit(5 + 10/12, "feet"),
  33894. name: "Front (Dressed)",
  33895. image: {
  33896. source: "./media/characters/argon/front-dressed.svg",
  33897. extra: 2009/1935,
  33898. bottom: 118/2127
  33899. }
  33900. },
  33901. },
  33902. [
  33903. {
  33904. name: "Normal",
  33905. height: math.unit(5 + 10/12, "feet"),
  33906. default: true
  33907. },
  33908. ]
  33909. ))
  33910. characterMakers.push(() => makeCharacter(
  33911. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33912. {
  33913. front: {
  33914. height: math.unit(8 + 6/12, "feet"),
  33915. weight: math.unit(1150, "lb"),
  33916. name: "Front",
  33917. image: {
  33918. source: "./media/characters/kichi/front.svg",
  33919. extra: 1267/1164,
  33920. bottom: 61/1328
  33921. }
  33922. },
  33923. back: {
  33924. height: math.unit(8 + 6/12, "feet"),
  33925. weight: math.unit(1150, "lb"),
  33926. name: "Back",
  33927. image: {
  33928. source: "./media/characters/kichi/back.svg",
  33929. extra: 1273/1166,
  33930. bottom: 33/1306
  33931. }
  33932. },
  33933. },
  33934. [
  33935. {
  33936. name: "Normal",
  33937. height: math.unit(8 + 6/12, "feet"),
  33938. default: true
  33939. },
  33940. ]
  33941. ))
  33942. characterMakers.push(() => makeCharacter(
  33943. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33944. {
  33945. front: {
  33946. height: math.unit(6, "feet"),
  33947. weight: math.unit(210, "lb"),
  33948. name: "Front",
  33949. image: {
  33950. source: "./media/characters/manetel-greyscale/front.svg",
  33951. extra: 350/312,
  33952. bottom: 8/358
  33953. }
  33954. },
  33955. },
  33956. [
  33957. {
  33958. name: "Micro",
  33959. height: math.unit(2, "inches")
  33960. },
  33961. {
  33962. name: "Normal",
  33963. height: math.unit(6, "feet"),
  33964. default: true
  33965. },
  33966. {
  33967. name: "Minimacro",
  33968. height: math.unit(17, "feet")
  33969. },
  33970. {
  33971. name: "Macro",
  33972. height: math.unit(117, "feet")
  33973. },
  33974. ]
  33975. ))
  33976. characterMakers.push(() => makeCharacter(
  33977. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33978. {
  33979. side: {
  33980. height: math.unit(5 + 1/12, "feet"),
  33981. weight: math.unit(418, "lb"),
  33982. name: "Side",
  33983. image: {
  33984. source: "./media/characters/softpurr/side.svg",
  33985. extra: 1993/1945,
  33986. bottom: 134/2127
  33987. }
  33988. },
  33989. front: {
  33990. height: math.unit(5 + 1/12, "feet"),
  33991. weight: math.unit(418, "lb"),
  33992. name: "Front",
  33993. image: {
  33994. source: "./media/characters/softpurr/front.svg",
  33995. extra: 1950/1856,
  33996. bottom: 174/2124
  33997. }
  33998. },
  33999. paw: {
  34000. height: math.unit(1, "feet"),
  34001. name: "Paw",
  34002. image: {
  34003. source: "./media/characters/softpurr/paw.svg"
  34004. }
  34005. },
  34006. },
  34007. [
  34008. {
  34009. name: "Normal",
  34010. height: math.unit(5 + 1/12, "feet"),
  34011. default: true
  34012. },
  34013. ]
  34014. ))
  34015. characterMakers.push(() => makeCharacter(
  34016. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34017. {
  34018. front: {
  34019. height: math.unit(260, "meters"),
  34020. name: "Front",
  34021. image: {
  34022. source: "./media/characters/anahita/front.svg",
  34023. extra: 665/635,
  34024. bottom: 89/754
  34025. }
  34026. },
  34027. },
  34028. [
  34029. {
  34030. name: "Macro",
  34031. height: math.unit(260, "meters"),
  34032. default: true
  34033. },
  34034. ]
  34035. ))
  34036. characterMakers.push(() => makeCharacter(
  34037. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34038. {
  34039. front: {
  34040. height: math.unit(4 + 10/12, "feet"),
  34041. weight: math.unit(160, "lb"),
  34042. name: "Front",
  34043. image: {
  34044. source: "./media/characters/chip-mouse/front.svg",
  34045. extra: 3528/3408,
  34046. bottom: 0/3528
  34047. }
  34048. },
  34049. frontNsfw: {
  34050. height: math.unit(4 + 10/12, "feet"),
  34051. weight: math.unit(160, "lb"),
  34052. name: "Front (NSFW)",
  34053. image: {
  34054. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34055. extra: 3528/3408,
  34056. bottom: 0/3528
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Normal",
  34063. height: math.unit(4 + 10/12, "feet"),
  34064. default: true
  34065. },
  34066. ]
  34067. ))
  34068. characterMakers.push(() => makeCharacter(
  34069. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34070. {
  34071. side: {
  34072. height: math.unit(10, "feet"),
  34073. weight: math.unit(14000, "lb"),
  34074. name: "Side",
  34075. image: {
  34076. source: "./media/characters/kremm/side.svg",
  34077. extra: 1390/1053,
  34078. bottom: 90/1480
  34079. }
  34080. },
  34081. gut: {
  34082. height: math.unit(5.8, "feet"),
  34083. name: "Gut",
  34084. image: {
  34085. source: "./media/characters/kremm/gut.svg"
  34086. }
  34087. },
  34088. ass: {
  34089. height: math.unit(6.1, "feet"),
  34090. name: "Ass",
  34091. image: {
  34092. source: "./media/characters/kremm/ass.svg"
  34093. }
  34094. },
  34095. jaws: {
  34096. height: math.unit(2.2, "feet"),
  34097. name: "Jaws",
  34098. image: {
  34099. source: "./media/characters/kremm/jaws.svg"
  34100. }
  34101. },
  34102. dick: {
  34103. height: math.unit(4.26, "feet"),
  34104. name: "Dick",
  34105. image: {
  34106. source: "./media/characters/kremm/dick.svg"
  34107. }
  34108. },
  34109. },
  34110. [
  34111. {
  34112. name: "Normal",
  34113. height: math.unit(10, "feet"),
  34114. default: true
  34115. },
  34116. ]
  34117. ))
  34118. characterMakers.push(() => makeCharacter(
  34119. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34120. {
  34121. front: {
  34122. height: math.unit(30, "stories"),
  34123. name: "Front",
  34124. image: {
  34125. source: "./media/characters/kai/front.svg",
  34126. extra: 1892/1718,
  34127. bottom: 162/2054
  34128. }
  34129. },
  34130. },
  34131. [
  34132. {
  34133. name: "Macro",
  34134. height: math.unit(30, "stories"),
  34135. default: true
  34136. },
  34137. ]
  34138. ))
  34139. characterMakers.push(() => makeCharacter(
  34140. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34141. {
  34142. front: {
  34143. height: math.unit(6 + 4/12, "feet"),
  34144. weight: math.unit(145, "lb"),
  34145. name: "Front",
  34146. image: {
  34147. source: "./media/characters/sykes/front.svg",
  34148. extra: 1321 / 1187,
  34149. bottom: 66 / 1387
  34150. }
  34151. },
  34152. back: {
  34153. height: math.unit(6 + 4/12, "feet"),
  34154. weight: math.unit(145, "lb"),
  34155. name: "Back",
  34156. image: {
  34157. source: "./media/characters/sykes/back.svg",
  34158. extra: 1326/1181,
  34159. bottom: 31/1357
  34160. }
  34161. },
  34162. handBack: {
  34163. height: math.unit(0.9, "feet"),
  34164. name: "Hand (Back)",
  34165. image: {
  34166. source: "./media/characters/sykes/hand-back.svg"
  34167. }
  34168. },
  34169. handFront: {
  34170. height: math.unit(0.839, "feet"),
  34171. name: "Hand (Front)",
  34172. image: {
  34173. source: "./media/characters/sykes/hand-front.svg"
  34174. }
  34175. },
  34176. leftFoot: {
  34177. height: math.unit(1.2, "feet"),
  34178. name: "Foot (Left)",
  34179. image: {
  34180. source: "./media/characters/sykes/foot-left.svg"
  34181. }
  34182. },
  34183. rightFoot: {
  34184. height: math.unit(1.2, "feet"),
  34185. name: "Foot (Right)",
  34186. image: {
  34187. source: "./media/characters/sykes/foot-right.svg"
  34188. }
  34189. },
  34190. maw: {
  34191. height: math.unit(1.93, "feet"),
  34192. name: "Maw",
  34193. image: {
  34194. source: "./media/characters/sykes/maw.svg"
  34195. }
  34196. },
  34197. teeth: {
  34198. height: math.unit(0.51, "feet"),
  34199. name: "Teeth",
  34200. image: {
  34201. source: "./media/characters/sykes/teeth.svg"
  34202. }
  34203. },
  34204. tongue: {
  34205. height: math.unit(2.13, "feet"),
  34206. name: "Tongue",
  34207. image: {
  34208. source: "./media/characters/sykes/tongue.svg"
  34209. }
  34210. },
  34211. uvula: {
  34212. height: math.unit(0.16, "feet"),
  34213. name: "Uvula",
  34214. image: {
  34215. source: "./media/characters/sykes/uvula.svg"
  34216. }
  34217. },
  34218. collar: {
  34219. height: math.unit(0.287, "feet"),
  34220. name: "Collar",
  34221. image: {
  34222. source: "./media/characters/sykes/collar.svg"
  34223. }
  34224. },
  34225. },
  34226. [
  34227. {
  34228. name: "Shrunken",
  34229. height: math.unit(5, "inches")
  34230. },
  34231. {
  34232. name: "Normal",
  34233. height: math.unit(6 + 4 / 12, "feet"),
  34234. default: true
  34235. },
  34236. {
  34237. name: "Big",
  34238. height: math.unit(15, "feet")
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34244. {
  34245. front: {
  34246. height: math.unit(5 + 8/12, "feet"),
  34247. weight: math.unit(190, "lb"),
  34248. name: "Front",
  34249. image: {
  34250. source: "./media/characters/oven-otter/front.svg",
  34251. extra: 1809/1740,
  34252. bottom: 181/1990
  34253. }
  34254. },
  34255. back: {
  34256. height: math.unit(5 + 8/12, "feet"),
  34257. weight: math.unit(190, "lb"),
  34258. name: "Back",
  34259. image: {
  34260. source: "./media/characters/oven-otter/back.svg",
  34261. extra: 1709/1635,
  34262. bottom: 118/1827
  34263. }
  34264. },
  34265. hand: {
  34266. height: math.unit(1.07, "feet"),
  34267. name: "Hand",
  34268. image: {
  34269. source: "./media/characters/oven-otter/hand.svg"
  34270. }
  34271. },
  34272. beans: {
  34273. height: math.unit(1.74, "feet"),
  34274. name: "Beans",
  34275. image: {
  34276. source: "./media/characters/oven-otter/beans.svg"
  34277. }
  34278. },
  34279. },
  34280. [
  34281. {
  34282. name: "Micro",
  34283. height: math.unit(0.5, "inches")
  34284. },
  34285. {
  34286. name: "Normal",
  34287. height: math.unit(5 + 8/12, "feet"),
  34288. default: true
  34289. },
  34290. {
  34291. name: "Macro",
  34292. height: math.unit(250, "feet")
  34293. },
  34294. {
  34295. name: "Really High",
  34296. height: math.unit(420, "feet")
  34297. },
  34298. ]
  34299. ))
  34300. characterMakers.push(() => makeCharacter(
  34301. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34302. {
  34303. front: {
  34304. height: math.unit(5, "meters"),
  34305. weight: math.unit(292000000000000, "kg"),
  34306. name: "Front",
  34307. image: {
  34308. source: "./media/characters/devourer/front.svg",
  34309. extra: 1800/1733,
  34310. bottom: 211/2011
  34311. }
  34312. },
  34313. maw: {
  34314. height: math.unit(1.1, "meter"),
  34315. name: "Maw",
  34316. image: {
  34317. source: "./media/characters/devourer/maw.svg"
  34318. }
  34319. },
  34320. },
  34321. [
  34322. {
  34323. name: "Small",
  34324. height: math.unit(3, "meters")
  34325. },
  34326. {
  34327. name: "Large",
  34328. height: math.unit(5, "meters"),
  34329. default: true
  34330. },
  34331. ]
  34332. ))
  34333. characterMakers.push(() => makeCharacter(
  34334. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34335. {
  34336. front: {
  34337. height: math.unit(6, "feet"),
  34338. weight: math.unit(400, "lb"),
  34339. name: "Front",
  34340. image: {
  34341. source: "./media/characters/ellarby/front.svg",
  34342. extra: 1909/1763,
  34343. bottom: 80/1989
  34344. }
  34345. },
  34346. back: {
  34347. height: math.unit(6, "feet"),
  34348. weight: math.unit(400, "lb"),
  34349. name: "Back",
  34350. image: {
  34351. source: "./media/characters/ellarby/back.svg",
  34352. extra: 1914/1784,
  34353. bottom: 172/2086
  34354. }
  34355. },
  34356. },
  34357. [
  34358. {
  34359. name: "Mischief",
  34360. height: math.unit(18, "inches")
  34361. },
  34362. {
  34363. name: "Trouble",
  34364. height: math.unit(12, "feet")
  34365. },
  34366. {
  34367. name: "Havoc",
  34368. height: math.unit(200, "feet"),
  34369. default: true
  34370. },
  34371. {
  34372. name: "Pandemonium",
  34373. height: math.unit(1, "mile")
  34374. },
  34375. {
  34376. name: "Catastrophe",
  34377. height: math.unit(100, "miles")
  34378. },
  34379. ]
  34380. ))
  34381. characterMakers.push(() => makeCharacter(
  34382. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34383. {
  34384. front: {
  34385. height: math.unit(4.7, "meters"),
  34386. weight: math.unit(6500, "kg"),
  34387. name: "Front",
  34388. image: {
  34389. source: "./media/characters/vex/front.svg",
  34390. extra: 1288/1140,
  34391. bottom: 100/1388
  34392. }
  34393. },
  34394. },
  34395. [
  34396. {
  34397. name: "Normal",
  34398. height: math.unit(4.7, "meters"),
  34399. default: true
  34400. },
  34401. ]
  34402. ))
  34403. characterMakers.push(() => makeCharacter(
  34404. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34405. {
  34406. normal: {
  34407. height: math.unit(6, "feet"),
  34408. weight: math.unit(350, "lb"),
  34409. name: "Normal",
  34410. image: {
  34411. source: "./media/characters/teshy/normal.svg",
  34412. extra: 1795/1735,
  34413. bottom: 16/1811
  34414. }
  34415. },
  34416. monsterFront: {
  34417. height: math.unit(12, "feet"),
  34418. weight: math.unit(4700, "lb"),
  34419. name: "Monster (Front)",
  34420. image: {
  34421. source: "./media/characters/teshy/monster-front.svg",
  34422. extra: 2042/2034,
  34423. bottom: 128/2170
  34424. }
  34425. },
  34426. monsterSide: {
  34427. height: math.unit(12, "feet"),
  34428. weight: math.unit(4700, "lb"),
  34429. name: "Monster (Side)",
  34430. image: {
  34431. source: "./media/characters/teshy/monster-side.svg",
  34432. extra: 2067/2056,
  34433. bottom: 70/2137
  34434. }
  34435. },
  34436. monsterBack: {
  34437. height: math.unit(12, "feet"),
  34438. weight: math.unit(4700, "lb"),
  34439. name: "Monster (Back)",
  34440. image: {
  34441. source: "./media/characters/teshy/monster-back.svg",
  34442. extra: 1921/1914,
  34443. bottom: 171/2092
  34444. }
  34445. },
  34446. },
  34447. [
  34448. {
  34449. name: "Normal",
  34450. height: math.unit(6, "feet"),
  34451. default: true
  34452. },
  34453. ]
  34454. ))
  34455. characterMakers.push(() => makeCharacter(
  34456. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34457. {
  34458. front: {
  34459. height: math.unit(6, "feet"),
  34460. name: "Front",
  34461. image: {
  34462. source: "./media/characters/ramey/front.svg",
  34463. extra: 790/787,
  34464. bottom: 27/817
  34465. }
  34466. },
  34467. },
  34468. [
  34469. {
  34470. name: "Normal",
  34471. height: math.unit(6, "feet"),
  34472. default: true
  34473. },
  34474. ]
  34475. ))
  34476. characterMakers.push(() => makeCharacter(
  34477. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34478. {
  34479. front: {
  34480. height: math.unit(5 + 5/12, "feet"),
  34481. weight: math.unit(120, "lb"),
  34482. name: "Front",
  34483. image: {
  34484. source: "./media/characters/phirae/front.svg",
  34485. extra: 2491/2436,
  34486. bottom: 38/2529
  34487. }
  34488. },
  34489. },
  34490. [
  34491. {
  34492. name: "Normal",
  34493. height: math.unit(5 + 5/12, "feet"),
  34494. default: true
  34495. },
  34496. ]
  34497. ))
  34498. characterMakers.push(() => makeCharacter(
  34499. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34500. {
  34501. front: {
  34502. height: math.unit(5 + 3/12, "feet"),
  34503. name: "Front",
  34504. image: {
  34505. source: "./media/characters/stagglas/front.svg",
  34506. extra: 962/882,
  34507. bottom: 53/1015
  34508. }
  34509. },
  34510. feral: {
  34511. height: math.unit(335, "cm"),
  34512. name: "Feral",
  34513. image: {
  34514. source: "./media/characters/stagglas/feral.svg",
  34515. extra: 1732/1090,
  34516. bottom: 48/1780
  34517. }
  34518. },
  34519. },
  34520. [
  34521. {
  34522. name: "Normal",
  34523. height: math.unit(5 + 3/12, "feet"),
  34524. default: true
  34525. },
  34526. ]
  34527. ))
  34528. characterMakers.push(() => makeCharacter(
  34529. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34530. {
  34531. front: {
  34532. height: math.unit(5 + 4/12, "feet"),
  34533. weight: math.unit(145, "lb"),
  34534. name: "Front",
  34535. image: {
  34536. source: "./media/characters/starra/front.svg",
  34537. extra: 1790/1691,
  34538. bottom: 91/1881
  34539. }
  34540. },
  34541. },
  34542. [
  34543. {
  34544. name: "Normal",
  34545. height: math.unit(5 + 4/12, "feet"),
  34546. default: true
  34547. },
  34548. ]
  34549. ))
  34550. characterMakers.push(() => makeCharacter(
  34551. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34552. {
  34553. front: {
  34554. height: math.unit(2.2, "meters"),
  34555. name: "Front",
  34556. image: {
  34557. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34558. extra: 1194/1005,
  34559. bottom: 25/1219
  34560. }
  34561. },
  34562. },
  34563. [
  34564. {
  34565. name: "Normal",
  34566. height: math.unit(2.2, "meters"),
  34567. default: true
  34568. },
  34569. ]
  34570. ))
  34571. characterMakers.push(() => makeCharacter(
  34572. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34573. {
  34574. side: {
  34575. height: math.unit(8 + 2/12, "feet"),
  34576. weight: math.unit(1240, "lb"),
  34577. name: "Side",
  34578. image: {
  34579. source: "./media/characters/mika-valentine/side.svg",
  34580. extra: 2670/2501,
  34581. bottom: 250/2920
  34582. }
  34583. },
  34584. },
  34585. [
  34586. {
  34587. name: "Normal",
  34588. height: math.unit(8 + 2/12, "feet"),
  34589. default: true
  34590. },
  34591. ]
  34592. ))
  34593. characterMakers.push(() => makeCharacter(
  34594. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34595. {
  34596. front: {
  34597. height: math.unit(7 + 2/12, "feet"),
  34598. name: "Front",
  34599. image: {
  34600. source: "./media/characters/xoltol/front.svg",
  34601. extra: 2212/2124,
  34602. bottom: 84/2296
  34603. }
  34604. },
  34605. side: {
  34606. height: math.unit(7 + 2/12, "feet"),
  34607. name: "Side",
  34608. image: {
  34609. source: "./media/characters/xoltol/side.svg",
  34610. extra: 2273/2197,
  34611. bottom: 26/2299
  34612. }
  34613. },
  34614. hand: {
  34615. height: math.unit(2.5, "feet"),
  34616. name: "Hand",
  34617. image: {
  34618. source: "./media/characters/xoltol/hand.svg"
  34619. }
  34620. },
  34621. },
  34622. [
  34623. {
  34624. name: "Small-ish",
  34625. height: math.unit(5 + 11/12, "feet")
  34626. },
  34627. {
  34628. name: "Normal",
  34629. height: math.unit(7 + 2/12, "feet")
  34630. },
  34631. {
  34632. name: "\"Macro\"",
  34633. height: math.unit(14 + 9/12, "feet"),
  34634. default: true
  34635. },
  34636. {
  34637. name: "Alternate Height",
  34638. height: math.unit(20, "feet")
  34639. },
  34640. {
  34641. name: "Actually Macro",
  34642. height: math.unit(100, "feet")
  34643. },
  34644. ]
  34645. ))
  34646. characterMakers.push(() => makeCharacter(
  34647. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34648. {
  34649. front: {
  34650. height: math.unit(5 + 2/12, "feet"),
  34651. name: "Front",
  34652. image: {
  34653. source: "./media/characters/kotetsu-redwood/front.svg",
  34654. extra: 1053/942,
  34655. bottom: 60/1113
  34656. }
  34657. },
  34658. },
  34659. [
  34660. {
  34661. name: "Normal",
  34662. height: math.unit(5 + 2/12, "feet"),
  34663. default: true
  34664. },
  34665. ]
  34666. ))
  34667. characterMakers.push(() => makeCharacter(
  34668. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34669. {
  34670. front: {
  34671. height: math.unit(2.4, "meters"),
  34672. weight: math.unit(125, "kg"),
  34673. name: "Front",
  34674. image: {
  34675. source: "./media/characters/lilith/front.svg",
  34676. extra: 1590/1513,
  34677. bottom: 203/1793
  34678. }
  34679. },
  34680. },
  34681. [
  34682. {
  34683. name: "Humanoid",
  34684. height: math.unit(2.4, "meters")
  34685. },
  34686. {
  34687. name: "Normal",
  34688. height: math.unit(6, "meters"),
  34689. default: true
  34690. },
  34691. {
  34692. name: "Largest",
  34693. height: math.unit(55, "meters")
  34694. },
  34695. ]
  34696. ))
  34697. characterMakers.push(() => makeCharacter(
  34698. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34699. {
  34700. front: {
  34701. height: math.unit(8 + 4/12, "feet"),
  34702. weight: math.unit(535, "lb"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/beh'kah-bolger/front.svg",
  34706. extra: 1660/1603,
  34707. bottom: 37/1697
  34708. }
  34709. },
  34710. },
  34711. [
  34712. {
  34713. name: "Normal",
  34714. height: math.unit(8 + 4/12, "feet"),
  34715. default: true
  34716. },
  34717. {
  34718. name: "Kaiju",
  34719. height: math.unit(250, "feet")
  34720. },
  34721. {
  34722. name: "Still Growing",
  34723. height: math.unit(10, "miles")
  34724. },
  34725. {
  34726. name: "Continental",
  34727. height: math.unit(5000, "miles")
  34728. },
  34729. {
  34730. name: "Final Form",
  34731. height: math.unit(2500000, "miles")
  34732. },
  34733. ]
  34734. ))
  34735. characterMakers.push(() => makeCharacter(
  34736. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34737. {
  34738. front: {
  34739. height: math.unit(7 + 2/12, "feet"),
  34740. weight: math.unit(230, "kg"),
  34741. name: "Front",
  34742. image: {
  34743. source: "./media/characters/tatyana-milewska/front.svg",
  34744. extra: 1199/1150,
  34745. bottom: 86/1285
  34746. }
  34747. },
  34748. },
  34749. [
  34750. {
  34751. name: "Normal",
  34752. height: math.unit(7 + 2/12, "feet"),
  34753. default: true
  34754. },
  34755. {
  34756. name: "Big",
  34757. height: math.unit(12, "feet")
  34758. },
  34759. {
  34760. name: "Minimacro",
  34761. height: math.unit(20, "feet")
  34762. },
  34763. {
  34764. name: "Macro",
  34765. height: math.unit(120, "feet")
  34766. },
  34767. ]
  34768. ))
  34769. characterMakers.push(() => makeCharacter(
  34770. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34771. {
  34772. front: {
  34773. height: math.unit(7 + 8/12, "feet"),
  34774. weight: math.unit(152, "kg"),
  34775. name: "Front",
  34776. image: {
  34777. source: "./media/characters/helen-arri/front.svg",
  34778. extra: 440/423,
  34779. bottom: 14/454
  34780. }
  34781. },
  34782. back: {
  34783. height: math.unit(7 + 8/12, "feet"),
  34784. weight: math.unit(152, "kg"),
  34785. name: "Back",
  34786. image: {
  34787. source: "./media/characters/helen-arri/back.svg",
  34788. extra: 443/426,
  34789. bottom: 8/451
  34790. }
  34791. },
  34792. },
  34793. [
  34794. {
  34795. name: "Normal",
  34796. height: math.unit(7 + 8/12, "feet"),
  34797. default: true
  34798. },
  34799. {
  34800. name: "Big",
  34801. height: math.unit(14, "feet")
  34802. },
  34803. {
  34804. name: "Minimacro",
  34805. height: math.unit(24, "feet")
  34806. },
  34807. {
  34808. name: "Macro",
  34809. height: math.unit(140, "feet")
  34810. },
  34811. ]
  34812. ))
  34813. characterMakers.push(() => makeCharacter(
  34814. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34815. {
  34816. front: {
  34817. height: math.unit(6, "meters"),
  34818. name: "Front",
  34819. image: {
  34820. source: "./media/characters/ehanu-rehu/front.svg",
  34821. extra: 1800/1800,
  34822. bottom: 59/1859
  34823. }
  34824. },
  34825. },
  34826. [
  34827. {
  34828. name: "Normal",
  34829. height: math.unit(6, "meters"),
  34830. default: true
  34831. },
  34832. ]
  34833. ))
  34834. characterMakers.push(() => makeCharacter(
  34835. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34836. {
  34837. front: {
  34838. height: math.unit(7 + 3/12, "feet"),
  34839. name: "Front",
  34840. image: {
  34841. source: "./media/characters/renholder/front.svg",
  34842. extra: 3096/2960,
  34843. bottom: 250/3346
  34844. }
  34845. },
  34846. },
  34847. [
  34848. {
  34849. name: "Normal Bat",
  34850. height: math.unit(7 + 3/12, "feet"),
  34851. default: true
  34852. },
  34853. {
  34854. name: "Slightly Tall Bat",
  34855. height: math.unit(100, "feet")
  34856. },
  34857. {
  34858. name: "Big Bat",
  34859. height: math.unit(1000, "feet")
  34860. },
  34861. {
  34862. name: "City-Sized Bat",
  34863. height: math.unit(200000, "feet")
  34864. },
  34865. {
  34866. name: "Bigger Bat",
  34867. height: math.unit(10000, "miles")
  34868. },
  34869. {
  34870. name: "Solar Sized Bat",
  34871. height: math.unit(100, "AU")
  34872. },
  34873. {
  34874. name: "Galactic Bat",
  34875. height: math.unit(200000, "lightyears")
  34876. },
  34877. {
  34878. name: "Universally Known Bat",
  34879. height: math.unit(1, "universe")
  34880. },
  34881. ]
  34882. ))
  34883. characterMakers.push(() => makeCharacter(
  34884. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34885. {
  34886. front: {
  34887. height: math.unit(6 + 11/12, "feet"),
  34888. weight: math.unit(250, "lb"),
  34889. name: "Front",
  34890. image: {
  34891. source: "./media/characters/cookiecat/front.svg",
  34892. extra: 893/827,
  34893. bottom: 14/907
  34894. }
  34895. },
  34896. },
  34897. [
  34898. {
  34899. name: "Micro",
  34900. height: math.unit(3, "inches")
  34901. },
  34902. {
  34903. name: "Normal",
  34904. height: math.unit(6 + 11/12, "feet"),
  34905. default: true
  34906. },
  34907. {
  34908. name: "Macro",
  34909. height: math.unit(100, "feet")
  34910. },
  34911. {
  34912. name: "Macro+",
  34913. height: math.unit(404, "feet")
  34914. },
  34915. {
  34916. name: "Megamacro",
  34917. height: math.unit(165, "miles")
  34918. },
  34919. {
  34920. name: "Planetary",
  34921. height: math.unit(4600, "miles")
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34927. {
  34928. front: {
  34929. height: math.unit(10 + 3/12, "feet"),
  34930. weight: math.unit(1500, "lb"),
  34931. name: "Front",
  34932. image: {
  34933. source: "./media/characters/tux-kusanagi/front.svg",
  34934. extra: 944/840,
  34935. bottom: 39/983
  34936. }
  34937. },
  34938. back: {
  34939. height: math.unit(10 + 3/12, "feet"),
  34940. weight: math.unit(1500, "lb"),
  34941. name: "Back",
  34942. image: {
  34943. source: "./media/characters/tux-kusanagi/back.svg",
  34944. extra: 941/842,
  34945. bottom: 28/969
  34946. }
  34947. },
  34948. rump: {
  34949. height: math.unit(5.25, "feet"),
  34950. name: "Rump",
  34951. image: {
  34952. source: "./media/characters/tux-kusanagi/rump.svg"
  34953. }
  34954. },
  34955. beak: {
  34956. height: math.unit(1.54, "feet"),
  34957. name: "Beak",
  34958. image: {
  34959. source: "./media/characters/tux-kusanagi/beak.svg"
  34960. }
  34961. },
  34962. },
  34963. [
  34964. {
  34965. name: "Normal",
  34966. height: math.unit(10 + 3/12, "feet"),
  34967. default: true
  34968. },
  34969. ]
  34970. ))
  34971. characterMakers.push(() => makeCharacter(
  34972. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34973. {
  34974. front: {
  34975. height: math.unit(58, "feet"),
  34976. weight: math.unit(200, "tons"),
  34977. name: "Front",
  34978. image: {
  34979. source: "./media/characters/uzarmazari/front.svg",
  34980. extra: 1575/1455,
  34981. bottom: 152/1727
  34982. }
  34983. },
  34984. back: {
  34985. height: math.unit(58, "feet"),
  34986. weight: math.unit(200, "tons"),
  34987. name: "Back",
  34988. image: {
  34989. source: "./media/characters/uzarmazari/back.svg",
  34990. extra: 1585/1510,
  34991. bottom: 157/1742
  34992. }
  34993. },
  34994. head: {
  34995. height: math.unit(26, "feet"),
  34996. name: "Head",
  34997. image: {
  34998. source: "./media/characters/uzarmazari/head.svg"
  34999. }
  35000. },
  35001. },
  35002. [
  35003. {
  35004. name: "Normal",
  35005. height: math.unit(58, "feet"),
  35006. default: true
  35007. },
  35008. ]
  35009. ))
  35010. characterMakers.push(() => makeCharacter(
  35011. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35012. {
  35013. side: {
  35014. height: math.unit(15, "feet"),
  35015. name: "Side",
  35016. image: {
  35017. source: "./media/characters/akitu/side.svg",
  35018. extra: 1421/1321,
  35019. bottom: 157/1578
  35020. }
  35021. },
  35022. front: {
  35023. height: math.unit(15, "feet"),
  35024. name: "Front",
  35025. image: {
  35026. source: "./media/characters/akitu/front.svg",
  35027. extra: 1435/1326,
  35028. bottom: 232/1667
  35029. }
  35030. },
  35031. },
  35032. [
  35033. {
  35034. name: "Normal",
  35035. height: math.unit(15, "feet"),
  35036. default: true
  35037. },
  35038. ]
  35039. ))
  35040. characterMakers.push(() => makeCharacter(
  35041. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35042. {
  35043. front: {
  35044. height: math.unit(10 + 8/12, "feet"),
  35045. name: "Front",
  35046. image: {
  35047. source: "./media/characters/azalie-croixland/front.svg",
  35048. extra: 1972/1856,
  35049. bottom: 31/2003
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Original Height",
  35056. height: math.unit(5 + 4/12, "feet")
  35057. },
  35058. {
  35059. name: "Normal Height",
  35060. height: math.unit(10 + 8/12, "feet"),
  35061. default: true
  35062. },
  35063. ]
  35064. ))
  35065. characterMakers.push(() => makeCharacter(
  35066. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35067. {
  35068. side: {
  35069. height: math.unit(7 + 1/12, "feet"),
  35070. weight: math.unit(245, "lb"),
  35071. name: "Side",
  35072. image: {
  35073. source: "./media/characters/kavus-kazian/side.svg",
  35074. extra: 349/342,
  35075. bottom: 15/364
  35076. }
  35077. },
  35078. },
  35079. [
  35080. {
  35081. name: "Normal",
  35082. height: math.unit(7 + 1/12, "feet"),
  35083. default: true
  35084. },
  35085. ]
  35086. ))
  35087. characterMakers.push(() => makeCharacter(
  35088. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35089. {
  35090. normalFront: {
  35091. height: math.unit(5 + 11/12, "feet"),
  35092. name: "Front",
  35093. image: {
  35094. source: "./media/characters/moonlight-rose/normal-front.svg",
  35095. extra: 1980/1825,
  35096. bottom: 18/1998
  35097. },
  35098. form: "normal",
  35099. default: true
  35100. },
  35101. normalBack: {
  35102. height: math.unit(5 + 11/12, "feet"),
  35103. name: "Back",
  35104. image: {
  35105. source: "./media/characters/moonlight-rose/normal-back.svg",
  35106. extra: 2010/1839,
  35107. bottom: 10/2020
  35108. },
  35109. form: "normal"
  35110. },
  35111. demonFront: {
  35112. height: math.unit(1.5, "earths"),
  35113. name: "Front",
  35114. image: {
  35115. source: "./media/characters/moonlight-rose/demon.svg",
  35116. extra: 1400/1294,
  35117. bottom: 45/1445
  35118. },
  35119. form: "demon",
  35120. default: true
  35121. },
  35122. terraFront: {
  35123. height: math.unit(1.5, "earths"),
  35124. name: "Front",
  35125. image: {
  35126. source: "./media/characters/moonlight-rose/terra.svg"
  35127. },
  35128. form: "terra",
  35129. default: true
  35130. },
  35131. jupiterFront: {
  35132. height: math.unit(69911*2, "km"),
  35133. name: "Front",
  35134. image: {
  35135. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35136. extra: 1367/1286,
  35137. bottom: 55/1422
  35138. },
  35139. form: "jupiter",
  35140. default: true
  35141. },
  35142. neptuneFront: {
  35143. height: math.unit(24622*2, "feet"),
  35144. name: "Front",
  35145. image: {
  35146. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35147. extra: 1851/1712,
  35148. bottom: 0/1851
  35149. },
  35150. form: "neptune",
  35151. default: true
  35152. },
  35153. },
  35154. [
  35155. {
  35156. name: "\"Natural\" Height",
  35157. height: math.unit(5 + 11/12, "feet"),
  35158. form: "normal"
  35159. },
  35160. {
  35161. name: "Smallest comfortable size",
  35162. height: math.unit(40, "meters"),
  35163. form: "normal"
  35164. },
  35165. {
  35166. name: "Common size",
  35167. height: math.unit(50, "km"),
  35168. form: "normal",
  35169. default: true
  35170. },
  35171. {
  35172. name: "Normal",
  35173. height: math.unit(1.5, "earths"),
  35174. form: "demon",
  35175. default: true
  35176. },
  35177. {
  35178. name: "Universal",
  35179. height: math.unit(15, "universes"),
  35180. form: "demon"
  35181. },
  35182. {
  35183. name: "Earth",
  35184. height: math.unit(1.5, "earths"),
  35185. form: "terra",
  35186. default: true
  35187. },
  35188. {
  35189. name: "Super Earth",
  35190. height: math.unit(67.5, "earths"),
  35191. form: "terra"
  35192. },
  35193. {
  35194. name: "Doesn't fit in a solar system...",
  35195. height: math.unit(1, "galaxy"),
  35196. form: "terra"
  35197. },
  35198. {
  35199. name: "Saturn",
  35200. height: math.unit(58232*2, "km"),
  35201. form: "jupiter"
  35202. },
  35203. {
  35204. name: "Jupiter",
  35205. height: math.unit(69911*2, "km"),
  35206. form: "jupiter",
  35207. default: true
  35208. },
  35209. {
  35210. name: "HD 100546 b",
  35211. height: math.unit(482938, "km"),
  35212. form: "jupiter"
  35213. },
  35214. {
  35215. name: "Enceladus",
  35216. height: math.unit(513*2, "km"),
  35217. form: "neptune"
  35218. },
  35219. {
  35220. name: "Europe",
  35221. height: math.unit(1560*2, "km"),
  35222. form: "neptune"
  35223. },
  35224. {
  35225. name: "Neptune",
  35226. height: math.unit(24622*2, "km"),
  35227. form: "neptune",
  35228. default: true
  35229. },
  35230. {
  35231. name: "CoRoT-9b",
  35232. height: math.unit(75067*2, "km"),
  35233. form: "neptune"
  35234. },
  35235. ],
  35236. {
  35237. "normal": {
  35238. name: "Normal",
  35239. default: true
  35240. },
  35241. "demon": {
  35242. name: "Demon"
  35243. },
  35244. "terra": {
  35245. name: "Terra"
  35246. },
  35247. "jupiter": {
  35248. name: "Jupiter"
  35249. },
  35250. "neptune": {
  35251. name: "Neptune"
  35252. }
  35253. }
  35254. ))
  35255. characterMakers.push(() => makeCharacter(
  35256. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35257. {
  35258. front: {
  35259. height: math.unit(16, "feet"),
  35260. weight: math.unit(610, "kg"),
  35261. name: "Front",
  35262. image: {
  35263. source: "./media/characters/huckle/front.svg",
  35264. extra: 1731/1625,
  35265. bottom: 33/1764
  35266. }
  35267. },
  35268. back: {
  35269. height: math.unit(16, "feet"),
  35270. weight: math.unit(610, "kg"),
  35271. name: "Back",
  35272. image: {
  35273. source: "./media/characters/huckle/back.svg",
  35274. extra: 1738/1651,
  35275. bottom: 37/1775
  35276. }
  35277. },
  35278. laughing: {
  35279. height: math.unit(3.75, "feet"),
  35280. name: "Laughing",
  35281. image: {
  35282. source: "./media/characters/huckle/laughing.svg"
  35283. }
  35284. },
  35285. angry: {
  35286. height: math.unit(4.15, "feet"),
  35287. name: "Angry",
  35288. image: {
  35289. source: "./media/characters/huckle/angry.svg"
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(16, "feet"),
  35297. default: true
  35298. },
  35299. {
  35300. name: "Mini Macro",
  35301. height: math.unit(463, "feet")
  35302. },
  35303. {
  35304. name: "Macro",
  35305. height: math.unit(1680, "meters")
  35306. },
  35307. {
  35308. name: "Mega Macro",
  35309. height: math.unit(175, "km")
  35310. },
  35311. {
  35312. name: "Terra Macro",
  35313. height: math.unit(32, "gigameters")
  35314. },
  35315. {
  35316. name: "Multiverse+",
  35317. height: math.unit(2.56e23, "yottameters")
  35318. },
  35319. ]
  35320. ))
  35321. characterMakers.push(() => makeCharacter(
  35322. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35323. {
  35324. front: {
  35325. height: math.unit(6 + 9/12, "feet"),
  35326. weight: math.unit(280, "lb"),
  35327. name: "Front",
  35328. image: {
  35329. source: "./media/characters/candy/front.svg",
  35330. extra: 234/217,
  35331. bottom: 11/245
  35332. }
  35333. },
  35334. },
  35335. [
  35336. {
  35337. name: "Really Small",
  35338. height: math.unit(0.1, "nm")
  35339. },
  35340. {
  35341. name: "Micro",
  35342. height: math.unit(2, "inches")
  35343. },
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(6 + 9/12, "feet"),
  35347. default: true
  35348. },
  35349. {
  35350. name: "Small Macro",
  35351. height: math.unit(69, "feet")
  35352. },
  35353. {
  35354. name: "Macro",
  35355. height: math.unit(160, "feet")
  35356. },
  35357. {
  35358. name: "Megamacro",
  35359. height: math.unit(22000, "miles")
  35360. },
  35361. {
  35362. name: "Gigamacro",
  35363. height: math.unit(50000, "miles")
  35364. },
  35365. ]
  35366. ))
  35367. characterMakers.push(() => makeCharacter(
  35368. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35369. {
  35370. front: {
  35371. height: math.unit(4, "feet"),
  35372. weight: math.unit(90, "lb"),
  35373. name: "Front",
  35374. image: {
  35375. source: "./media/characters/joey-mcdonald/front.svg",
  35376. extra: 1059/852,
  35377. bottom: 33/1092
  35378. }
  35379. },
  35380. back: {
  35381. height: math.unit(4, "feet"),
  35382. weight: math.unit(90, "lb"),
  35383. name: "Back",
  35384. image: {
  35385. source: "./media/characters/joey-mcdonald/back.svg",
  35386. extra: 1077/879,
  35387. bottom: 5/1082
  35388. }
  35389. },
  35390. frontKobold: {
  35391. height: math.unit(4, "feet"),
  35392. weight: math.unit(100, "lb"),
  35393. name: "Front-kobold",
  35394. image: {
  35395. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35396. extra: 1480/1367,
  35397. bottom: 0/1480
  35398. }
  35399. },
  35400. backKobold: {
  35401. height: math.unit(4, "feet"),
  35402. weight: math.unit(100, "lb"),
  35403. name: "Back-kobold",
  35404. image: {
  35405. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35406. extra: 1449/1361,
  35407. bottom: 0/1449
  35408. }
  35409. },
  35410. },
  35411. [
  35412. {
  35413. name: "Normal",
  35414. height: math.unit(4, "feet"),
  35415. default: true
  35416. },
  35417. ]
  35418. ))
  35419. characterMakers.push(() => makeCharacter(
  35420. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35421. {
  35422. front: {
  35423. height: math.unit(12 + 6/12, "feet"),
  35424. name: "Front",
  35425. image: {
  35426. source: "./media/characters/kass-lockheed/front.svg",
  35427. extra: 354/343,
  35428. bottom: 9/363
  35429. }
  35430. },
  35431. back: {
  35432. height: math.unit(12 + 6/12, "feet"),
  35433. name: "Back",
  35434. image: {
  35435. source: "./media/characters/kass-lockheed/back.svg",
  35436. extra: 364/352,
  35437. bottom: 3/367
  35438. }
  35439. },
  35440. dick: {
  35441. height: math.unit(3.12, "feet"),
  35442. name: "Dick",
  35443. image: {
  35444. source: "./media/characters/kass-lockheed/dick.svg"
  35445. }
  35446. },
  35447. head: {
  35448. height: math.unit(2.6, "feet"),
  35449. name: "Head",
  35450. image: {
  35451. source: "./media/characters/kass-lockheed/head.svg"
  35452. }
  35453. },
  35454. bleh: {
  35455. height: math.unit(2.85, "feet"),
  35456. name: "Bleh",
  35457. image: {
  35458. source: "./media/characters/kass-lockheed/bleh.svg"
  35459. }
  35460. },
  35461. smug: {
  35462. height: math.unit(2.85, "feet"),
  35463. name: "Smug",
  35464. image: {
  35465. source: "./media/characters/kass-lockheed/smug.svg"
  35466. }
  35467. },
  35468. },
  35469. [
  35470. {
  35471. name: "Normal",
  35472. height: math.unit(12 + 6/12, "feet"),
  35473. default: true
  35474. },
  35475. ]
  35476. ))
  35477. characterMakers.push(() => makeCharacter(
  35478. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35479. {
  35480. front: {
  35481. height: math.unit(6 + 2/12, "feet"),
  35482. name: "Front",
  35483. image: {
  35484. source: "./media/characters/taylor/front.svg",
  35485. extra: 639/495,
  35486. bottom: 12/651
  35487. }
  35488. },
  35489. },
  35490. [
  35491. {
  35492. name: "Normal",
  35493. height: math.unit(6 + 2/12, "feet"),
  35494. default: true
  35495. },
  35496. {
  35497. name: "Big",
  35498. height: math.unit(15, "feet")
  35499. },
  35500. {
  35501. name: "Lorg",
  35502. height: math.unit(80, "feet")
  35503. },
  35504. {
  35505. name: "Too Lorg",
  35506. height: math.unit(120, "feet")
  35507. },
  35508. ]
  35509. ))
  35510. characterMakers.push(() => makeCharacter(
  35511. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35512. {
  35513. front: {
  35514. height: math.unit(15, "feet"),
  35515. name: "Front",
  35516. image: {
  35517. source: "./media/characters/kaizer/front.svg",
  35518. extra: 1612/1436,
  35519. bottom: 43/1655
  35520. }
  35521. },
  35522. },
  35523. [
  35524. {
  35525. name: "Normal",
  35526. height: math.unit(15, "feet"),
  35527. default: true
  35528. },
  35529. ]
  35530. ))
  35531. characterMakers.push(() => makeCharacter(
  35532. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35533. {
  35534. front: {
  35535. height: math.unit(2, "feet"),
  35536. weight: math.unit(30, "lb"),
  35537. name: "Front",
  35538. image: {
  35539. source: "./media/characters/sandy/front.svg",
  35540. extra: 1439/1307,
  35541. bottom: 194/1633
  35542. }
  35543. },
  35544. },
  35545. [
  35546. {
  35547. name: "Normal",
  35548. height: math.unit(2, "feet"),
  35549. default: true
  35550. },
  35551. ]
  35552. ))
  35553. characterMakers.push(() => makeCharacter(
  35554. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35555. {
  35556. front: {
  35557. height: math.unit(3, "feet"),
  35558. name: "Front",
  35559. image: {
  35560. source: "./media/characters/mellvi/front.svg",
  35561. extra: 1831/1630,
  35562. bottom: 58/1889
  35563. }
  35564. },
  35565. },
  35566. [
  35567. {
  35568. name: "Normal",
  35569. height: math.unit(3, "feet"),
  35570. default: true
  35571. },
  35572. ]
  35573. ))
  35574. characterMakers.push(() => makeCharacter(
  35575. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35576. {
  35577. front: {
  35578. height: math.unit(5 + 11/12, "feet"),
  35579. weight: math.unit(200, "lb"),
  35580. name: "Front",
  35581. image: {
  35582. source: "./media/characters/shirou/front.svg",
  35583. extra: 2491/2383,
  35584. bottom: 189/2680
  35585. }
  35586. },
  35587. back: {
  35588. height: math.unit(5 + 11/12, "feet"),
  35589. weight: math.unit(200, "lb"),
  35590. name: "Back",
  35591. image: {
  35592. source: "./media/characters/shirou/back.svg",
  35593. extra: 2554/2450,
  35594. bottom: 76/2630
  35595. }
  35596. },
  35597. },
  35598. [
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(5 + 11/12, "feet"),
  35602. default: true
  35603. },
  35604. ]
  35605. ))
  35606. characterMakers.push(() => makeCharacter(
  35607. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35608. {
  35609. front: {
  35610. height: math.unit(6 + 3/12, "feet"),
  35611. weight: math.unit(177, "lb"),
  35612. name: "Front",
  35613. image: {
  35614. source: "./media/characters/noryu/front.svg",
  35615. extra: 973/885,
  35616. bottom: 10/983
  35617. }
  35618. },
  35619. },
  35620. [
  35621. {
  35622. name: "Normal",
  35623. height: math.unit(6 + 3/12, "feet"),
  35624. default: true
  35625. },
  35626. ]
  35627. ))
  35628. characterMakers.push(() => makeCharacter(
  35629. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35630. {
  35631. front: {
  35632. height: math.unit(5 + 6/12, "feet"),
  35633. weight: math.unit(170, "lb"),
  35634. name: "Front",
  35635. image: {
  35636. source: "./media/characters/mevolas-rubenido/front.svg",
  35637. extra: 2109/1901,
  35638. bottom: 96/2205
  35639. }
  35640. },
  35641. },
  35642. [
  35643. {
  35644. name: "Normal",
  35645. height: math.unit(5 + 6/12, "feet"),
  35646. default: true
  35647. },
  35648. ]
  35649. ))
  35650. characterMakers.push(() => makeCharacter(
  35651. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35652. {
  35653. front: {
  35654. height: math.unit(100, "feet"),
  35655. name: "Front",
  35656. image: {
  35657. source: "./media/characters/dee/front.svg",
  35658. extra: 2153/2036,
  35659. bottom: 59/2212
  35660. }
  35661. },
  35662. back: {
  35663. height: math.unit(100, "feet"),
  35664. name: "Back",
  35665. image: {
  35666. source: "./media/characters/dee/back.svg",
  35667. extra: 2183/2058,
  35668. bottom: 75/2258
  35669. }
  35670. },
  35671. foot: {
  35672. height: math.unit(19.43, "feet"),
  35673. name: "Foot",
  35674. image: {
  35675. source: "./media/characters/dee/foot.svg"
  35676. }
  35677. },
  35678. hoof: {
  35679. height: math.unit(20.6, "feet"),
  35680. name: "Hoof",
  35681. image: {
  35682. source: "./media/characters/dee/hoof.svg"
  35683. }
  35684. },
  35685. },
  35686. [
  35687. {
  35688. name: "Macro",
  35689. height: math.unit(100, "feet"),
  35690. default: true
  35691. },
  35692. ]
  35693. ))
  35694. characterMakers.push(() => makeCharacter(
  35695. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35696. {
  35697. front: {
  35698. height: math.unit(5 + 6/12, "feet"),
  35699. name: "Front",
  35700. image: {
  35701. source: "./media/characters/teh/front.svg",
  35702. extra: 1002/847,
  35703. bottom: 62/1064
  35704. }
  35705. },
  35706. },
  35707. [
  35708. {
  35709. name: "Normal",
  35710. height: math.unit(5 + 6/12, "feet"),
  35711. default: true
  35712. },
  35713. ]
  35714. ))
  35715. characterMakers.push(() => makeCharacter(
  35716. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35717. {
  35718. side: {
  35719. height: math.unit(6 + 1/12, "feet"),
  35720. weight: math.unit(204, "lb"),
  35721. name: "Side",
  35722. image: {
  35723. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35724. extra: 974/775,
  35725. bottom: 169/1143
  35726. }
  35727. },
  35728. sitting: {
  35729. height: math.unit(6 + 2/12, "feet"),
  35730. weight: math.unit(204, "lb"),
  35731. name: "Sitting",
  35732. image: {
  35733. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35734. extra: 1175/964,
  35735. bottom: 378/1553
  35736. }
  35737. },
  35738. },
  35739. [
  35740. {
  35741. name: "Normal",
  35742. height: math.unit(6 + 1/12, "feet"),
  35743. default: true
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35749. {
  35750. front: {
  35751. height: math.unit(6, "inches"),
  35752. name: "Front",
  35753. image: {
  35754. source: "./media/characters/tululi/front.svg",
  35755. extra: 1997/1876,
  35756. bottom: 20/2017
  35757. }
  35758. },
  35759. },
  35760. [
  35761. {
  35762. name: "Normal",
  35763. height: math.unit(6, "inches"),
  35764. default: true
  35765. },
  35766. ]
  35767. ))
  35768. characterMakers.push(() => makeCharacter(
  35769. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35770. {
  35771. front: {
  35772. height: math.unit(4 + 1/12, "feet"),
  35773. name: "Front",
  35774. image: {
  35775. source: "./media/characters/star/front.svg",
  35776. extra: 1493/1189,
  35777. bottom: 48/1541
  35778. }
  35779. },
  35780. },
  35781. [
  35782. {
  35783. name: "Normal",
  35784. height: math.unit(4 + 1/12, "feet"),
  35785. default: true
  35786. },
  35787. ]
  35788. ))
  35789. characterMakers.push(() => makeCharacter(
  35790. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35791. {
  35792. front: {
  35793. height: math.unit(6 + 3/12, "feet"),
  35794. name: "Front",
  35795. image: {
  35796. source: "./media/characters/comet/front.svg",
  35797. extra: 1681/1462,
  35798. bottom: 26/1707
  35799. }
  35800. },
  35801. },
  35802. [
  35803. {
  35804. name: "Normal",
  35805. height: math.unit(6 + 3/12, "feet"),
  35806. default: true
  35807. },
  35808. ]
  35809. ))
  35810. characterMakers.push(() => makeCharacter(
  35811. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35812. {
  35813. front: {
  35814. height: math.unit(950, "feet"),
  35815. name: "Front",
  35816. image: {
  35817. source: "./media/characters/vortex/front.svg",
  35818. extra: 1497/1434,
  35819. bottom: 56/1553
  35820. }
  35821. },
  35822. maw: {
  35823. height: math.unit(285, "feet"),
  35824. name: "Maw",
  35825. image: {
  35826. source: "./media/characters/vortex/maw.svg"
  35827. }
  35828. },
  35829. },
  35830. [
  35831. {
  35832. name: "Macro",
  35833. height: math.unit(950, "feet"),
  35834. default: true
  35835. },
  35836. ]
  35837. ))
  35838. characterMakers.push(() => makeCharacter(
  35839. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35840. {
  35841. front: {
  35842. height: math.unit(600, "feet"),
  35843. weight: math.unit(0.02, "grams"),
  35844. name: "Front",
  35845. image: {
  35846. source: "./media/characters/doodle/front.svg",
  35847. extra: 1578/1413,
  35848. bottom: 37/1615
  35849. }
  35850. },
  35851. },
  35852. [
  35853. {
  35854. name: "Macro",
  35855. height: math.unit(600, "feet"),
  35856. default: true
  35857. },
  35858. ]
  35859. ))
  35860. characterMakers.push(() => makeCharacter(
  35861. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35862. {
  35863. front: {
  35864. height: math.unit(6 + 6/12, "feet"),
  35865. name: "Front",
  35866. image: {
  35867. source: "./media/characters/jai/front.svg",
  35868. extra: 1645/1534,
  35869. bottom: 115/1760
  35870. }
  35871. },
  35872. },
  35873. [
  35874. {
  35875. name: "Normal",
  35876. height: math.unit(6 + 6/12, "feet"),
  35877. default: true
  35878. },
  35879. ]
  35880. ))
  35881. characterMakers.push(() => makeCharacter(
  35882. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35883. {
  35884. front: {
  35885. height: math.unit(6 + 8/12, "feet"),
  35886. name: "Front",
  35887. image: {
  35888. source: "./media/characters/pixel/front.svg",
  35889. extra: 1900/1735,
  35890. bottom: 63/1963
  35891. }
  35892. },
  35893. },
  35894. [
  35895. {
  35896. name: "Normal",
  35897. height: math.unit(6 + 8/12, "feet"),
  35898. default: true
  35899. },
  35900. ]
  35901. ))
  35902. characterMakers.push(() => makeCharacter(
  35903. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35904. {
  35905. back: {
  35906. height: math.unit(4 + 1/12, "feet"),
  35907. weight: math.unit(75, "lb"),
  35908. name: "Back",
  35909. image: {
  35910. source: "./media/characters/rhett/back.svg",
  35911. extra: 930/878,
  35912. bottom: 25/955
  35913. }
  35914. },
  35915. front: {
  35916. height: math.unit(4 + 1/12, "feet"),
  35917. weight: math.unit(75, "lb"),
  35918. name: "Front",
  35919. image: {
  35920. source: "./media/characters/rhett/front.svg",
  35921. extra: 1682/1586,
  35922. bottom: 92/1774
  35923. }
  35924. },
  35925. },
  35926. [
  35927. {
  35928. name: "Micro",
  35929. height: math.unit(8, "inches")
  35930. },
  35931. {
  35932. name: "Tiny",
  35933. height: math.unit(2, "feet")
  35934. },
  35935. {
  35936. name: "Normal",
  35937. height: math.unit(4 + 1/12, "feet"),
  35938. default: true
  35939. },
  35940. ]
  35941. ))
  35942. characterMakers.push(() => makeCharacter(
  35943. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35944. {
  35945. front: {
  35946. height: math.unit(3 + 3/12, "feet"),
  35947. name: "Front",
  35948. image: {
  35949. source: "./media/characters/penny/front.svg",
  35950. extra: 1406/1311,
  35951. bottom: 26/1432
  35952. }
  35953. },
  35954. },
  35955. [
  35956. {
  35957. name: "Normal",
  35958. height: math.unit(3 + 3/12, "feet"),
  35959. default: true
  35960. },
  35961. ]
  35962. ))
  35963. characterMakers.push(() => makeCharacter(
  35964. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35965. {
  35966. front: {
  35967. height: math.unit(4 + 11/12, "feet"),
  35968. name: "Front",
  35969. image: {
  35970. source: "./media/characters/monty/front.svg",
  35971. extra: 1479/1209,
  35972. bottom: 0/1479
  35973. }
  35974. },
  35975. },
  35976. [
  35977. {
  35978. name: "Normal",
  35979. height: math.unit(4 + 11/12, "feet"),
  35980. default: true
  35981. },
  35982. ]
  35983. ))
  35984. characterMakers.push(() => makeCharacter(
  35985. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35986. {
  35987. front: {
  35988. height: math.unit(8 + 4/12, "feet"),
  35989. name: "Front",
  35990. image: {
  35991. source: "./media/characters/sterling/front.svg",
  35992. extra: 1420/1236,
  35993. bottom: 27/1447
  35994. }
  35995. },
  35996. },
  35997. [
  35998. {
  35999. name: "Normal",
  36000. height: math.unit(8 + 4/12, "feet"),
  36001. default: true
  36002. },
  36003. ]
  36004. ))
  36005. characterMakers.push(() => makeCharacter(
  36006. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36007. {
  36008. front: {
  36009. height: math.unit(15, "feet"),
  36010. name: "Front",
  36011. image: {
  36012. source: "./media/characters/marble/front.svg",
  36013. extra: 973/937,
  36014. bottom: 32/1005
  36015. }
  36016. },
  36017. },
  36018. [
  36019. {
  36020. name: "Normal",
  36021. height: math.unit(15, "feet"),
  36022. default: true
  36023. },
  36024. ]
  36025. ))
  36026. characterMakers.push(() => makeCharacter(
  36027. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36028. {
  36029. front: {
  36030. height: math.unit(3, "inches"),
  36031. name: "Front",
  36032. image: {
  36033. source: "./media/characters/powder/front.svg",
  36034. extra: 1504/1334,
  36035. bottom: 518/2022
  36036. }
  36037. },
  36038. },
  36039. [
  36040. {
  36041. name: "Normal",
  36042. height: math.unit(3, "inches"),
  36043. default: true
  36044. },
  36045. ]
  36046. ))
  36047. characterMakers.push(() => makeCharacter(
  36048. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36049. {
  36050. front: {
  36051. height: math.unit(4 + 5/12, "feet"),
  36052. name: "Front",
  36053. image: {
  36054. source: "./media/characters/joey-raccoon/front.svg",
  36055. extra: 1273/1197,
  36056. bottom: 0/1273
  36057. }
  36058. },
  36059. },
  36060. [
  36061. {
  36062. name: "Normal",
  36063. height: math.unit(4 + 5/12, "feet"),
  36064. default: true
  36065. },
  36066. ]
  36067. ))
  36068. characterMakers.push(() => makeCharacter(
  36069. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36070. {
  36071. front: {
  36072. height: math.unit(8 + 4/12, "feet"),
  36073. name: "Front",
  36074. image: {
  36075. source: "./media/characters/vick/front.svg",
  36076. extra: 2187/2118,
  36077. bottom: 47/2234
  36078. }
  36079. },
  36080. },
  36081. [
  36082. {
  36083. name: "Normal",
  36084. height: math.unit(8 + 4/12, "feet"),
  36085. default: true
  36086. },
  36087. ]
  36088. ))
  36089. characterMakers.push(() => makeCharacter(
  36090. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36091. {
  36092. front: {
  36093. height: math.unit(5 + 5/12, "feet"),
  36094. name: "Front",
  36095. image: {
  36096. source: "./media/characters/mitsy/front.svg",
  36097. extra: 1842/1695,
  36098. bottom: 0/1842
  36099. }
  36100. },
  36101. },
  36102. [
  36103. {
  36104. name: "Normal",
  36105. height: math.unit(5 + 5/12, "feet"),
  36106. default: true
  36107. },
  36108. ]
  36109. ))
  36110. characterMakers.push(() => makeCharacter(
  36111. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36112. {
  36113. front: {
  36114. height: math.unit(6 + 3/12, "feet"),
  36115. name: "Front",
  36116. image: {
  36117. source: "./media/characters/silvy/front.svg",
  36118. extra: 1995/1836,
  36119. bottom: 225/2220
  36120. }
  36121. },
  36122. },
  36123. [
  36124. {
  36125. name: "Normal",
  36126. height: math.unit(6 + 3/12, "feet"),
  36127. default: true
  36128. },
  36129. ]
  36130. ))
  36131. characterMakers.push(() => makeCharacter(
  36132. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36133. {
  36134. front: {
  36135. height: math.unit(3 + 8/12, "feet"),
  36136. name: "Front",
  36137. image: {
  36138. source: "./media/characters/rodney/front.svg",
  36139. extra: 1956/1747,
  36140. bottom: 31/1987
  36141. }
  36142. },
  36143. frontDressed: {
  36144. height: math.unit(2.9, "feet"),
  36145. name: "Front (Dressed)",
  36146. image: {
  36147. source: "./media/characters/rodney/front-dressed.svg",
  36148. extra: 1382/1241,
  36149. bottom: 385/1767
  36150. }
  36151. },
  36152. },
  36153. [
  36154. {
  36155. name: "Normal",
  36156. height: math.unit(3 + 8/12, "feet"),
  36157. default: true
  36158. },
  36159. ]
  36160. ))
  36161. characterMakers.push(() => makeCharacter(
  36162. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36163. {
  36164. front: {
  36165. height: math.unit(5 + 9/12, "feet"),
  36166. weight: math.unit(194, "lbs"),
  36167. name: "Front",
  36168. image: {
  36169. source: "./media/characters/zakail-sudekai/front.svg",
  36170. extra: 2696/2533,
  36171. bottom: 248/2944
  36172. }
  36173. },
  36174. maw: {
  36175. height: math.unit(1.35, "feet"),
  36176. name: "Maw",
  36177. image: {
  36178. source: "./media/characters/zakail-sudekai/maw.svg"
  36179. }
  36180. },
  36181. },
  36182. [
  36183. {
  36184. name: "Normal",
  36185. height: math.unit(5 + 9/12, "feet"),
  36186. default: true
  36187. },
  36188. ]
  36189. ))
  36190. characterMakers.push(() => makeCharacter(
  36191. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36192. {
  36193. front: {
  36194. height: math.unit(8 + 4/12, "feet"),
  36195. weight: math.unit(1200, "lb"),
  36196. name: "Front",
  36197. image: {
  36198. source: "./media/characters/eleanor/front.svg",
  36199. extra: 1226/1192,
  36200. bottom: 52/1278
  36201. }
  36202. },
  36203. back: {
  36204. height: math.unit(8 + 4/12, "feet"),
  36205. weight: math.unit(1200, "lb"),
  36206. name: "Back",
  36207. image: {
  36208. source: "./media/characters/eleanor/back.svg",
  36209. extra: 1242/1184,
  36210. bottom: 60/1302
  36211. }
  36212. },
  36213. head: {
  36214. height: math.unit(2.62, "feet"),
  36215. name: "Head",
  36216. image: {
  36217. source: "./media/characters/eleanor/head.svg"
  36218. }
  36219. },
  36220. },
  36221. [
  36222. {
  36223. name: "Normal",
  36224. height: math.unit(8 + 4/12, "feet"),
  36225. default: true
  36226. },
  36227. ]
  36228. ))
  36229. characterMakers.push(() => makeCharacter(
  36230. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36231. {
  36232. front: {
  36233. height: math.unit(8 + 4/12, "feet"),
  36234. weight: math.unit(750, "lb"),
  36235. name: "Front",
  36236. image: {
  36237. source: "./media/characters/tanya/front.svg",
  36238. extra: 1749/1615,
  36239. bottom: 33/1782
  36240. }
  36241. },
  36242. },
  36243. [
  36244. {
  36245. name: "Normal",
  36246. height: math.unit(8 + 4/12, "feet"),
  36247. default: true
  36248. },
  36249. ]
  36250. ))
  36251. characterMakers.push(() => makeCharacter(
  36252. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36253. {
  36254. front: {
  36255. height: math.unit(5, "feet"),
  36256. weight: math.unit(225, "lb"),
  36257. name: "Front",
  36258. image: {
  36259. source: "./media/characters/cindy/front.svg",
  36260. extra: 1320/1250,
  36261. bottom: 42/1362
  36262. }
  36263. },
  36264. frontDressed: {
  36265. height: math.unit(5, "feet"),
  36266. weight: math.unit(225, "lb"),
  36267. name: "Front (Dressed)",
  36268. image: {
  36269. source: "./media/characters/cindy/front-dressed.svg",
  36270. extra: 1320/1250,
  36271. bottom: 42/1362
  36272. }
  36273. },
  36274. back: {
  36275. height: math.unit(5, "feet"),
  36276. weight: math.unit(225, "lb"),
  36277. name: "Back",
  36278. image: {
  36279. source: "./media/characters/cindy/back.svg",
  36280. extra: 1384/1346,
  36281. bottom: 14/1398
  36282. }
  36283. },
  36284. },
  36285. [
  36286. {
  36287. name: "Normal",
  36288. height: math.unit(5, "feet"),
  36289. default: true
  36290. },
  36291. ]
  36292. ))
  36293. characterMakers.push(() => makeCharacter(
  36294. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36295. {
  36296. front: {
  36297. height: math.unit(6 + 9/12, "feet"),
  36298. weight: math.unit(440, "lb"),
  36299. name: "Front",
  36300. image: {
  36301. source: "./media/characters/wilbur-owen/front.svg",
  36302. extra: 1575/1448,
  36303. bottom: 72/1647
  36304. }
  36305. },
  36306. back: {
  36307. height: math.unit(6 + 9/12, "feet"),
  36308. weight: math.unit(440, "lb"),
  36309. name: "Back",
  36310. image: {
  36311. source: "./media/characters/wilbur-owen/back.svg",
  36312. extra: 1578/1445,
  36313. bottom: 36/1614
  36314. }
  36315. },
  36316. },
  36317. [
  36318. {
  36319. name: "Normal",
  36320. height: math.unit(6 + 9/12, "feet"),
  36321. default: true
  36322. },
  36323. ]
  36324. ))
  36325. characterMakers.push(() => makeCharacter(
  36326. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36327. {
  36328. front: {
  36329. height: math.unit(6 + 5/12, "feet"),
  36330. weight: math.unit(650, "lb"),
  36331. name: "Front",
  36332. image: {
  36333. source: "./media/characters/keegan/front.svg",
  36334. extra: 2387/2198,
  36335. bottom: 33/2420
  36336. }
  36337. },
  36338. side: {
  36339. height: math.unit(6 + 5/12, "feet"),
  36340. weight: math.unit(650, "lb"),
  36341. name: "Side",
  36342. image: {
  36343. source: "./media/characters/keegan/side.svg",
  36344. extra: 2390/2202,
  36345. bottom: 47/2437
  36346. }
  36347. },
  36348. back: {
  36349. height: math.unit(6 + 5/12, "feet"),
  36350. weight: math.unit(650, "lb"),
  36351. name: "Back",
  36352. image: {
  36353. source: "./media/characters/keegan/back.svg",
  36354. extra: 2418/2268,
  36355. bottom: 15/2433
  36356. }
  36357. },
  36358. frontSfw: {
  36359. height: math.unit(6 + 5/12, "feet"),
  36360. weight: math.unit(650, "lb"),
  36361. name: "Front (SFW)",
  36362. image: {
  36363. source: "./media/characters/keegan/front-sfw.svg",
  36364. extra: 2387/2198,
  36365. bottom: 33/2420
  36366. }
  36367. },
  36368. beans: {
  36369. height: math.unit(1.85, "feet"),
  36370. name: "Beans",
  36371. image: {
  36372. source: "./media/characters/keegan/beans.svg"
  36373. }
  36374. },
  36375. },
  36376. [
  36377. {
  36378. name: "Normal",
  36379. height: math.unit(6 + 5/12, "feet"),
  36380. default: true
  36381. },
  36382. ]
  36383. ))
  36384. characterMakers.push(() => makeCharacter(
  36385. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36386. {
  36387. front: {
  36388. height: math.unit(9, "feet"),
  36389. name: "Front",
  36390. image: {
  36391. source: "./media/characters/colton/front.svg",
  36392. extra: 1589/1326,
  36393. bottom: 139/1728
  36394. }
  36395. },
  36396. },
  36397. [
  36398. {
  36399. name: "Normal",
  36400. height: math.unit(9, "feet"),
  36401. default: true
  36402. },
  36403. ]
  36404. ))
  36405. characterMakers.push(() => makeCharacter(
  36406. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36407. {
  36408. front: {
  36409. height: math.unit(2 + 9/12, "feet"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/bora/front.svg",
  36413. extra: 1265/1250,
  36414. bottom: 24/1289
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(2 + 9/12, "feet"),
  36422. default: true
  36423. },
  36424. ]
  36425. ))
  36426. characterMakers.push(() => makeCharacter(
  36427. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36428. {
  36429. front: {
  36430. height: math.unit(8, "feet"),
  36431. name: "Front",
  36432. image: {
  36433. source: "./media/characters/myu-myu/front.svg",
  36434. extra: 1949/1857,
  36435. bottom: 90/2039
  36436. }
  36437. },
  36438. },
  36439. [
  36440. {
  36441. name: "Normal",
  36442. height: math.unit(8, "feet"),
  36443. default: true
  36444. },
  36445. {
  36446. name: "Big",
  36447. height: math.unit(15, "feet")
  36448. },
  36449. {
  36450. name: "BIG",
  36451. height: math.unit(25, "feet")
  36452. },
  36453. ]
  36454. ))
  36455. characterMakers.push(() => makeCharacter(
  36456. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36457. {
  36458. side: {
  36459. height: math.unit(7 + 5/12, "feet"),
  36460. weight: math.unit(2800, "lb"),
  36461. name: "Side",
  36462. image: {
  36463. source: "./media/characters/haloren/side.svg",
  36464. extra: 1793/409,
  36465. bottom: 59/1852
  36466. }
  36467. },
  36468. frontPaw: {
  36469. height: math.unit(2.36, "feet"),
  36470. name: "Front paw",
  36471. image: {
  36472. source: "./media/characters/haloren/front-paw.svg"
  36473. }
  36474. },
  36475. hindPaw: {
  36476. height: math.unit(3.18, "feet"),
  36477. name: "Hind paw",
  36478. image: {
  36479. source: "./media/characters/haloren/hind-paw.svg"
  36480. }
  36481. },
  36482. maw: {
  36483. height: math.unit(5.05, "feet"),
  36484. name: "Maw",
  36485. image: {
  36486. source: "./media/characters/haloren/maw.svg"
  36487. }
  36488. },
  36489. dick: {
  36490. height: math.unit(2.90, "feet"),
  36491. name: "Dick",
  36492. image: {
  36493. source: "./media/characters/haloren/dick.svg"
  36494. }
  36495. },
  36496. },
  36497. [
  36498. {
  36499. name: "Normal",
  36500. height: math.unit(7 + 5/12, "feet"),
  36501. default: true
  36502. },
  36503. {
  36504. name: "Enhanced",
  36505. height: math.unit(14 + 3/12, "feet")
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36511. {
  36512. front: {
  36513. height: math.unit(171, "cm"),
  36514. name: "Front",
  36515. image: {
  36516. source: "./media/characters/kimmy/front.svg",
  36517. extra: 1491/1435,
  36518. bottom: 53/1544
  36519. }
  36520. },
  36521. },
  36522. [
  36523. {
  36524. name: "Small",
  36525. height: math.unit(9, "cm")
  36526. },
  36527. {
  36528. name: "Normal",
  36529. height: math.unit(171, "cm"),
  36530. default: true
  36531. },
  36532. ]
  36533. ))
  36534. characterMakers.push(() => makeCharacter(
  36535. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36536. {
  36537. front: {
  36538. height: math.unit(8, "feet"),
  36539. weight: math.unit(300, "lb"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/galeboomer/front.svg",
  36543. extra: 4651/4415,
  36544. bottom: 162/4813
  36545. }
  36546. },
  36547. back: {
  36548. height: math.unit(8, "feet"),
  36549. weight: math.unit(300, "lb"),
  36550. name: "Back",
  36551. image: {
  36552. source: "./media/characters/galeboomer/back.svg",
  36553. extra: 4544/4314,
  36554. bottom: 16/4560
  36555. }
  36556. },
  36557. frontAlt: {
  36558. height: math.unit(8, "feet"),
  36559. weight: math.unit(300, "lb"),
  36560. name: "Front (Alt)",
  36561. image: {
  36562. source: "./media/characters/galeboomer/front-alt.svg",
  36563. extra: 4458/4228,
  36564. bottom: 68/4526
  36565. }
  36566. },
  36567. maw: {
  36568. height: math.unit(1.2, "feet"),
  36569. name: "Maw",
  36570. image: {
  36571. source: "./media/characters/galeboomer/maw.svg"
  36572. }
  36573. },
  36574. },
  36575. [
  36576. {
  36577. name: "Normal",
  36578. height: math.unit(8, "feet"),
  36579. default: true
  36580. },
  36581. ]
  36582. ))
  36583. characterMakers.push(() => makeCharacter(
  36584. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36585. {
  36586. front: {
  36587. height: math.unit(5 + 9/12, "feet"),
  36588. weight: math.unit(120, "lb"),
  36589. name: "Front",
  36590. image: {
  36591. source: "./media/characters/chyr/front.svg",
  36592. extra: 1323/1254,
  36593. bottom: 63/1386
  36594. }
  36595. },
  36596. back: {
  36597. height: math.unit(5 + 9/12, "feet"),
  36598. weight: math.unit(120, "lb"),
  36599. name: "Back",
  36600. image: {
  36601. source: "./media/characters/chyr/back.svg",
  36602. extra: 1323/1252,
  36603. bottom: 48/1371
  36604. }
  36605. },
  36606. },
  36607. [
  36608. {
  36609. name: "Normal",
  36610. height: math.unit(5 + 9/12, "feet"),
  36611. default: true
  36612. },
  36613. ]
  36614. ))
  36615. characterMakers.push(() => makeCharacter(
  36616. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36617. {
  36618. front: {
  36619. height: math.unit(7, "feet"),
  36620. weight: math.unit(310, "lb"),
  36621. name: "Front",
  36622. image: {
  36623. source: "./media/characters/solarus/front.svg",
  36624. extra: 2415/2021,
  36625. bottom: 103/2518
  36626. }
  36627. },
  36628. back: {
  36629. height: math.unit(7, "feet"),
  36630. weight: math.unit(310, "lb"),
  36631. name: "Back",
  36632. image: {
  36633. source: "./media/characters/solarus/back.svg",
  36634. extra: 2463/2089,
  36635. bottom: 79/2542
  36636. }
  36637. },
  36638. },
  36639. [
  36640. {
  36641. name: "Normal",
  36642. height: math.unit(7, "feet"),
  36643. default: true
  36644. },
  36645. ]
  36646. ))
  36647. characterMakers.push(() => makeCharacter(
  36648. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36649. {
  36650. front: {
  36651. height: math.unit(16, "feet"),
  36652. name: "Front",
  36653. image: {
  36654. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36655. extra: 1844/1780,
  36656. bottom: 58/1902
  36657. }
  36658. },
  36659. winterCoat: {
  36660. height: math.unit(16, "feet"),
  36661. name: "Winter Coat",
  36662. image: {
  36663. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36664. extra: 1807/1775,
  36665. bottom: 69/1876
  36666. }
  36667. },
  36668. },
  36669. [
  36670. {
  36671. name: "Normal",
  36672. height: math.unit(16, "feet"),
  36673. default: true
  36674. },
  36675. {
  36676. name: "Chicago Size",
  36677. height: math.unit(560, "feet")
  36678. },
  36679. ]
  36680. ))
  36681. characterMakers.push(() => makeCharacter(
  36682. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36683. {
  36684. front: {
  36685. height: math.unit(11 + 6/12, "feet"),
  36686. weight: math.unit(1366, "lb"),
  36687. name: "Front",
  36688. image: {
  36689. source: "./media/characters/lexor/front.svg",
  36690. extra: 1560/1481,
  36691. bottom: 211/1771
  36692. }
  36693. },
  36694. back: {
  36695. height: math.unit(11 + 6/12, "feet"),
  36696. weight: math.unit(1366, "lb"),
  36697. name: "Back",
  36698. image: {
  36699. source: "./media/characters/lexor/back.svg",
  36700. extra: 1614/1533,
  36701. bottom: 76/1690
  36702. }
  36703. },
  36704. maw: {
  36705. height: math.unit(3, "feet"),
  36706. name: "Maw",
  36707. image: {
  36708. source: "./media/characters/lexor/maw.svg"
  36709. }
  36710. },
  36711. dick: {
  36712. height: math.unit(2.59, "feet"),
  36713. name: "Dick",
  36714. image: {
  36715. source: "./media/characters/lexor/dick.svg"
  36716. }
  36717. },
  36718. },
  36719. [
  36720. {
  36721. name: "Normal",
  36722. height: math.unit(11 + 6/12, "feet"),
  36723. default: true
  36724. },
  36725. ]
  36726. ))
  36727. characterMakers.push(() => makeCharacter(
  36728. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36729. {
  36730. front: {
  36731. height: math.unit(5 + 8/12, "feet"),
  36732. name: "Front",
  36733. image: {
  36734. source: "./media/characters/magnum/front.svg",
  36735. extra: 942/855,
  36736. bottom: 26/968
  36737. }
  36738. },
  36739. },
  36740. [
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(5 + 8/12, "feet"),
  36744. default: true
  36745. },
  36746. ]
  36747. ))
  36748. characterMakers.push(() => makeCharacter(
  36749. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36750. {
  36751. front: {
  36752. height: math.unit(18 + 4/12, "feet"),
  36753. weight: math.unit(1500, "kg"),
  36754. name: "Front",
  36755. image: {
  36756. source: "./media/characters/solas-sharpsman/front.svg",
  36757. extra: 1698/1589,
  36758. bottom: 0/1698
  36759. }
  36760. },
  36761. },
  36762. [
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(18 + 4/12, "feet"),
  36766. default: true
  36767. },
  36768. ]
  36769. ))
  36770. characterMakers.push(() => makeCharacter(
  36771. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36772. {
  36773. front: {
  36774. height: math.unit(5 + 5/12, "feet"),
  36775. weight: math.unit(180, "lb"),
  36776. name: "Front",
  36777. image: {
  36778. source: "./media/characters/october/front.svg",
  36779. extra: 1800/1650,
  36780. bottom: 0/1800
  36781. }
  36782. },
  36783. frontNsfw: {
  36784. height: math.unit(5 + 5/12, "feet"),
  36785. weight: math.unit(180, "lb"),
  36786. name: "Front (NSFW)",
  36787. image: {
  36788. source: "./media/characters/october/front-nsfw.svg",
  36789. extra: 1392/1307,
  36790. bottom: 42/1434
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Normal",
  36797. height: math.unit(5 + 5/12, "feet"),
  36798. default: true
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(8 + 6/12, "feet"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/essynkardi/front.svg",
  36810. extra: 1914/1846,
  36811. bottom: 22/1936
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(8 + 6/12, "feet"),
  36819. default: true
  36820. },
  36821. ]
  36822. ))
  36823. characterMakers.push(() => makeCharacter(
  36824. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36825. {
  36826. front: {
  36827. height: math.unit(6 + 6/12, "feet"),
  36828. weight: math.unit(7, "lb"),
  36829. name: "Front",
  36830. image: {
  36831. source: "./media/characters/icky/front.svg",
  36832. extra: 813/782,
  36833. bottom: 66/879
  36834. }
  36835. },
  36836. back: {
  36837. height: math.unit(6 + 6/12, "feet"),
  36838. weight: math.unit(7, "lb"),
  36839. name: "Back",
  36840. image: {
  36841. source: "./media/characters/icky/back.svg",
  36842. extra: 754/735,
  36843. bottom: 56/810
  36844. }
  36845. },
  36846. },
  36847. [
  36848. {
  36849. name: "Normal",
  36850. height: math.unit(6 + 6/12, "feet"),
  36851. default: true
  36852. },
  36853. ]
  36854. ))
  36855. characterMakers.push(() => makeCharacter(
  36856. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36857. {
  36858. front: {
  36859. height: math.unit(15, "feet"),
  36860. name: "Front",
  36861. image: {
  36862. source: "./media/characters/rojas/front.svg",
  36863. extra: 1462/1408,
  36864. bottom: 95/1557
  36865. }
  36866. },
  36867. back: {
  36868. height: math.unit(15, "feet"),
  36869. name: "Back",
  36870. image: {
  36871. source: "./media/characters/rojas/back.svg",
  36872. extra: 1023/954,
  36873. bottom: 28/1051
  36874. }
  36875. },
  36876. },
  36877. [
  36878. {
  36879. name: "Normal",
  36880. height: math.unit(15, "feet"),
  36881. default: true
  36882. },
  36883. ]
  36884. ))
  36885. characterMakers.push(() => makeCharacter(
  36886. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36887. {
  36888. frontHuman: {
  36889. height: math.unit(5 + 7/12, "feet"),
  36890. name: "Front (Human)",
  36891. image: {
  36892. source: "./media/characters/alek-dryagan/front-human.svg",
  36893. extra: 1687/1667,
  36894. bottom: 69/1756
  36895. }
  36896. },
  36897. backHuman: {
  36898. height: math.unit(5 + 7/12, "feet"),
  36899. name: "Back (Human)",
  36900. image: {
  36901. source: "./media/characters/alek-dryagan/back-human.svg",
  36902. extra: 1670/1649,
  36903. bottom: 65/1735
  36904. }
  36905. },
  36906. frontDemi: {
  36907. height: math.unit(65, "feet"),
  36908. name: "Front (Demi)",
  36909. image: {
  36910. source: "./media/characters/alek-dryagan/front-demi.svg",
  36911. extra: 1669/1642,
  36912. bottom: 49/1718
  36913. }
  36914. },
  36915. backDemi: {
  36916. height: math.unit(65, "feet"),
  36917. name: "Back (Demi)",
  36918. image: {
  36919. source: "./media/characters/alek-dryagan/back-demi.svg",
  36920. extra: 1658/1637,
  36921. bottom: 40/1698
  36922. }
  36923. },
  36924. mawHuman: {
  36925. height: math.unit(0.3, "feet"),
  36926. name: "Maw (Human)",
  36927. image: {
  36928. source: "./media/characters/alek-dryagan/maw-human.svg"
  36929. }
  36930. },
  36931. mawDemi: {
  36932. height: math.unit(3.8, "feet"),
  36933. name: "Maw (Demi)",
  36934. image: {
  36935. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36936. }
  36937. },
  36938. },
  36939. [
  36940. {
  36941. name: "Normal",
  36942. height: math.unit(5 + 7/12, "feet"),
  36943. default: true
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36949. {
  36950. frontHuman: {
  36951. height: math.unit(5 + 2/12, "feet"),
  36952. name: "Front (Human)",
  36953. image: {
  36954. source: "./media/characters/gen/front-human.svg",
  36955. extra: 1627/1538,
  36956. bottom: 71/1698
  36957. }
  36958. },
  36959. backHuman: {
  36960. height: math.unit(5 + 2/12, "feet"),
  36961. name: "Back (Human)",
  36962. image: {
  36963. source: "./media/characters/gen/back-human.svg",
  36964. extra: 1638/1548,
  36965. bottom: 69/1707
  36966. }
  36967. },
  36968. frontDemi: {
  36969. height: math.unit(5 + 2/12, "feet"),
  36970. name: "Front (Demi)",
  36971. image: {
  36972. source: "./media/characters/gen/front-demi.svg",
  36973. extra: 1627/1538,
  36974. bottom: 71/1698
  36975. }
  36976. },
  36977. backDemi: {
  36978. height: math.unit(5 + 2/12, "feet"),
  36979. name: "Back (Demi)",
  36980. image: {
  36981. source: "./media/characters/gen/back-demi.svg",
  36982. extra: 1638/1548,
  36983. bottom: 69/1707
  36984. }
  36985. },
  36986. },
  36987. [
  36988. {
  36989. name: "Normal",
  36990. height: math.unit(5 + 2/12, "feet"),
  36991. default: true
  36992. },
  36993. ]
  36994. ))
  36995. characterMakers.push(() => makeCharacter(
  36996. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36997. {
  36998. frontImp: {
  36999. height: math.unit(1 + 11/12, "feet"),
  37000. name: "Front (Imp)",
  37001. image: {
  37002. source: "./media/characters/max-kobold/front-imp.svg",
  37003. extra: 1238/1134,
  37004. bottom: 81/1319
  37005. }
  37006. },
  37007. backImp: {
  37008. height: math.unit(1 + 11/12, "feet"),
  37009. name: "Back (Imp)",
  37010. image: {
  37011. source: "./media/characters/max-kobold/back-imp.svg",
  37012. extra: 1334/1175,
  37013. bottom: 34/1368
  37014. }
  37015. },
  37016. frontDemi: {
  37017. height: math.unit(5 + 9/12, "feet"),
  37018. name: "Front (Demi)",
  37019. image: {
  37020. source: "./media/characters/max-kobold/front-demi.svg",
  37021. extra: 1715/1685,
  37022. bottom: 54/1769
  37023. }
  37024. },
  37025. backDemi: {
  37026. height: math.unit(5 + 9/12, "feet"),
  37027. name: "Back (Demi)",
  37028. image: {
  37029. source: "./media/characters/max-kobold/back-demi.svg",
  37030. extra: 1752/1729,
  37031. bottom: 41/1793
  37032. }
  37033. },
  37034. handImp: {
  37035. height: math.unit(0.45, "feet"),
  37036. name: "Hand (Imp)",
  37037. image: {
  37038. source: "./media/characters/max-kobold/hand.svg"
  37039. }
  37040. },
  37041. pawImp: {
  37042. height: math.unit(0.46, "feet"),
  37043. name: "Paw (Imp)",
  37044. image: {
  37045. source: "./media/characters/max-kobold/paw.svg"
  37046. }
  37047. },
  37048. handDemi: {
  37049. height: math.unit(0.80, "feet"),
  37050. name: "Hand (Demi)",
  37051. image: {
  37052. source: "./media/characters/max-kobold/hand.svg"
  37053. }
  37054. },
  37055. pawDemi: {
  37056. height: math.unit(1.1, "feet"),
  37057. name: "Paw (Demi)",
  37058. image: {
  37059. source: "./media/characters/max-kobold/paw.svg"
  37060. }
  37061. },
  37062. headImp: {
  37063. height: math.unit(1.33, "feet"),
  37064. name: "Head (Imp)",
  37065. image: {
  37066. source: "./media/characters/max-kobold/head-imp.svg"
  37067. }
  37068. },
  37069. mawImp: {
  37070. height: math.unit(0.75, "feet"),
  37071. name: "Maw (Imp)",
  37072. image: {
  37073. source: "./media/characters/max-kobold/maw-imp.svg"
  37074. }
  37075. },
  37076. mawDemi: {
  37077. height: math.unit(0.42, "feet"),
  37078. name: "Maw (Demi)",
  37079. image: {
  37080. source: "./media/characters/max-kobold/maw-demi.svg"
  37081. }
  37082. },
  37083. },
  37084. [
  37085. {
  37086. name: "Normal",
  37087. height: math.unit(1 + 11/12, "feet"),
  37088. default: true
  37089. },
  37090. ]
  37091. ))
  37092. characterMakers.push(() => makeCharacter(
  37093. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37094. {
  37095. front: {
  37096. height: math.unit(7 + 5/12, "feet"),
  37097. name: "Front",
  37098. image: {
  37099. source: "./media/characters/carbon/front.svg",
  37100. extra: 1754/1689,
  37101. bottom: 65/1819
  37102. }
  37103. },
  37104. back: {
  37105. height: math.unit(7 + 5/12, "feet"),
  37106. name: "Back",
  37107. image: {
  37108. source: "./media/characters/carbon/back.svg",
  37109. extra: 1762/1695,
  37110. bottom: 24/1786
  37111. }
  37112. },
  37113. frontGigantamax: {
  37114. height: math.unit(150, "feet"),
  37115. name: "Front (Gigantamax)",
  37116. image: {
  37117. source: "./media/characters/carbon/front-gigantamax.svg",
  37118. extra: 1826/1669,
  37119. bottom: 59/1885
  37120. }
  37121. },
  37122. backGigantamax: {
  37123. height: math.unit(150, "feet"),
  37124. name: "Back (Gigantamax)",
  37125. image: {
  37126. source: "./media/characters/carbon/back-gigantamax.svg",
  37127. extra: 1796/1653,
  37128. bottom: 53/1849
  37129. }
  37130. },
  37131. maw: {
  37132. height: math.unit(0.48, "feet"),
  37133. name: "Maw",
  37134. image: {
  37135. source: "./media/characters/carbon/maw.svg"
  37136. }
  37137. },
  37138. mawGigantamax: {
  37139. height: math.unit(7.5, "feet"),
  37140. name: "Maw (Gigantamax)",
  37141. image: {
  37142. source: "./media/characters/carbon/maw-gigantamax.svg"
  37143. }
  37144. },
  37145. },
  37146. [
  37147. {
  37148. name: "Normal",
  37149. height: math.unit(7 + 5/12, "feet"),
  37150. default: true
  37151. },
  37152. ]
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37156. {
  37157. front: {
  37158. height: math.unit(6, "feet"),
  37159. name: "Front",
  37160. image: {
  37161. source: "./media/characters/maverick/front.svg",
  37162. extra: 1672/1661,
  37163. bottom: 85/1757
  37164. }
  37165. },
  37166. back: {
  37167. height: math.unit(6, "feet"),
  37168. name: "Back",
  37169. image: {
  37170. source: "./media/characters/maverick/back.svg",
  37171. extra: 1642/1631,
  37172. bottom: 38/1680
  37173. }
  37174. },
  37175. },
  37176. [
  37177. {
  37178. name: "Normal",
  37179. height: math.unit(6, "feet"),
  37180. default: true
  37181. },
  37182. ]
  37183. ))
  37184. characterMakers.push(() => makeCharacter(
  37185. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37186. {
  37187. front: {
  37188. height: math.unit(15, "feet"),
  37189. weight: math.unit(615, "lb"),
  37190. name: "Front",
  37191. image: {
  37192. source: "./media/characters/grockle/front.svg",
  37193. extra: 1535/1427,
  37194. bottom: 56/1591
  37195. }
  37196. },
  37197. },
  37198. [
  37199. {
  37200. name: "Normal",
  37201. height: math.unit(15, "feet"),
  37202. default: true
  37203. },
  37204. {
  37205. name: "Large",
  37206. height: math.unit(150, "feet")
  37207. },
  37208. {
  37209. name: "Macro",
  37210. height: math.unit(1876, "feet")
  37211. },
  37212. {
  37213. name: "Mega Macro",
  37214. height: math.unit(121940, "feet")
  37215. },
  37216. {
  37217. name: "Giga Macro",
  37218. height: math.unit(750, "km")
  37219. },
  37220. {
  37221. name: "Tera Macro",
  37222. height: math.unit(750000, "km")
  37223. },
  37224. {
  37225. name: "Galactic",
  37226. height: math.unit(1.4e5, "km")
  37227. },
  37228. {
  37229. name: "Godlike",
  37230. height: math.unit(9.8e280, "galaxies")
  37231. },
  37232. ]
  37233. ))
  37234. characterMakers.push(() => makeCharacter(
  37235. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37236. {
  37237. front: {
  37238. height: math.unit(11, "meters"),
  37239. weight: math.unit(20, "tonnes"),
  37240. name: "Front",
  37241. image: {
  37242. source: "./media/characters/alistair/front.svg",
  37243. extra: 1265/1009,
  37244. bottom: 93/1358
  37245. }
  37246. },
  37247. },
  37248. [
  37249. {
  37250. name: "Normal",
  37251. height: math.unit(11, "meters"),
  37252. default: true
  37253. },
  37254. ]
  37255. ))
  37256. characterMakers.push(() => makeCharacter(
  37257. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37258. {
  37259. front: {
  37260. height: math.unit(5 + 8/12, "feet"),
  37261. name: "Front",
  37262. image: {
  37263. source: "./media/characters/haruka/front.svg",
  37264. extra: 2012/1952,
  37265. bottom: 0/2012
  37266. }
  37267. },
  37268. },
  37269. [
  37270. {
  37271. name: "Normal",
  37272. height: math.unit(5 + 8/12, "feet"),
  37273. default: true
  37274. },
  37275. ]
  37276. ))
  37277. characterMakers.push(() => makeCharacter(
  37278. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37279. {
  37280. back: {
  37281. height: math.unit(9, "feet"),
  37282. name: "Back",
  37283. image: {
  37284. source: "./media/characters/vivian-sylveon/back.svg",
  37285. extra: 1853/1714,
  37286. bottom: 0/1853
  37287. }
  37288. },
  37289. },
  37290. [
  37291. {
  37292. name: "Normal",
  37293. height: math.unit(9, "feet"),
  37294. default: true
  37295. },
  37296. {
  37297. name: "Macro",
  37298. height: math.unit(500, "feet")
  37299. },
  37300. {
  37301. name: "Megamacro",
  37302. height: math.unit(600, "miles")
  37303. },
  37304. {
  37305. name: "Gigamacro",
  37306. height: math.unit(30000, "miles")
  37307. },
  37308. ]
  37309. ))
  37310. characterMakers.push(() => makeCharacter(
  37311. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37312. {
  37313. anthro: {
  37314. height: math.unit(5 + 10/12, "feet"),
  37315. weight: math.unit(100, "lb"),
  37316. name: "Anthro",
  37317. image: {
  37318. source: "./media/characters/daiki/anthro.svg",
  37319. extra: 1115/1027,
  37320. bottom: 69/1184
  37321. }
  37322. },
  37323. feral: {
  37324. height: math.unit(200, "feet"),
  37325. name: "Feral",
  37326. image: {
  37327. source: "./media/characters/daiki/feral.svg",
  37328. extra: 1256/313,
  37329. bottom: 39/1295
  37330. }
  37331. },
  37332. feralHead: {
  37333. height: math.unit(171, "feet"),
  37334. name: "Feral Head",
  37335. image: {
  37336. source: "./media/characters/daiki/feral-head.svg"
  37337. }
  37338. },
  37339. manaDragon: {
  37340. height: math.unit(170, "meters"),
  37341. name: "Mana-dragon",
  37342. image: {
  37343. source: "./media/characters/daiki/mana-dragon.svg",
  37344. extra: 763/420,
  37345. bottom: 97/860
  37346. }
  37347. },
  37348. },
  37349. [
  37350. {
  37351. name: "Normal",
  37352. height: math.unit(5 + 10/12, "feet"),
  37353. default: true
  37354. },
  37355. ]
  37356. ))
  37357. characterMakers.push(() => makeCharacter(
  37358. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37359. {
  37360. fullyEquippedFront: {
  37361. height: math.unit(3 + 1/12, "feet"),
  37362. weight: math.unit(24, "lb"),
  37363. name: "Fully Equipped (Front)",
  37364. image: {
  37365. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37366. extra: 687/605,
  37367. bottom: 18/705
  37368. }
  37369. },
  37370. fullyEquippedBack: {
  37371. height: math.unit(3 + 1/12, "feet"),
  37372. weight: math.unit(24, "lb"),
  37373. name: "Fully Equipped (Back)",
  37374. image: {
  37375. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37376. extra: 689/590,
  37377. bottom: 18/707
  37378. }
  37379. },
  37380. dailyWear: {
  37381. height: math.unit(3 + 1/12, "feet"),
  37382. weight: math.unit(24, "lb"),
  37383. name: "Daily Wear",
  37384. image: {
  37385. source: "./media/characters/tea-spot/daily-wear.svg",
  37386. extra: 701/620,
  37387. bottom: 21/722
  37388. }
  37389. },
  37390. maidWork: {
  37391. height: math.unit(3 + 1/12, "feet"),
  37392. weight: math.unit(24, "lb"),
  37393. name: "Maid Work",
  37394. image: {
  37395. source: "./media/characters/tea-spot/maid-work.svg",
  37396. extra: 693/609,
  37397. bottom: 15/708
  37398. }
  37399. },
  37400. },
  37401. [
  37402. {
  37403. name: "Normal",
  37404. height: math.unit(3 + 1/12, "feet"),
  37405. default: true
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37411. {
  37412. front: {
  37413. height: math.unit(175, "cm"),
  37414. weight: math.unit(75, "kg"),
  37415. name: "Front",
  37416. image: {
  37417. source: "./media/characters/chee/front.svg",
  37418. extra: 1796/1740,
  37419. bottom: 40/1836
  37420. }
  37421. },
  37422. },
  37423. [
  37424. {
  37425. name: "Micro-Micro",
  37426. height: math.unit(1, "nm")
  37427. },
  37428. {
  37429. name: "Micro-erst",
  37430. height: math.unit(1, "micrometer")
  37431. },
  37432. {
  37433. name: "Micro-er",
  37434. height: math.unit(1, "cm")
  37435. },
  37436. {
  37437. name: "Normal",
  37438. height: math.unit(175, "cm"),
  37439. default: true
  37440. },
  37441. {
  37442. name: "Macro",
  37443. height: math.unit(100, "m")
  37444. },
  37445. {
  37446. name: "Macro-er",
  37447. height: math.unit(1, "km")
  37448. },
  37449. {
  37450. name: "Macro-erst",
  37451. height: math.unit(10, "km")
  37452. },
  37453. {
  37454. name: "Macro-Macro",
  37455. height: math.unit(100, "km")
  37456. },
  37457. ]
  37458. ))
  37459. characterMakers.push(() => makeCharacter(
  37460. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37461. {
  37462. front: {
  37463. height: math.unit(11 + 9/12, "feet"),
  37464. weight: math.unit(935, "lb"),
  37465. name: "Front",
  37466. image: {
  37467. source: "./media/characters/kingsley/front.svg",
  37468. extra: 1803/1674,
  37469. bottom: 127/1930
  37470. }
  37471. },
  37472. frontNude: {
  37473. height: math.unit(11 + 9/12, "feet"),
  37474. weight: math.unit(935, "lb"),
  37475. name: "Front (Nude)",
  37476. image: {
  37477. source: "./media/characters/kingsley/front-nude.svg",
  37478. extra: 1803/1674,
  37479. bottom: 127/1930
  37480. }
  37481. },
  37482. },
  37483. [
  37484. {
  37485. name: "Normal",
  37486. height: math.unit(11 + 9/12, "feet"),
  37487. default: true
  37488. },
  37489. ]
  37490. ))
  37491. characterMakers.push(() => makeCharacter(
  37492. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37493. {
  37494. side: {
  37495. height: math.unit(9, "feet"),
  37496. name: "Side",
  37497. image: {
  37498. source: "./media/characters/rymel/side.svg",
  37499. extra: 792/469,
  37500. bottom: 121/913
  37501. }
  37502. },
  37503. maw: {
  37504. height: math.unit(2.4, "meters"),
  37505. name: "Maw",
  37506. image: {
  37507. source: "./media/characters/rymel/maw.svg"
  37508. }
  37509. },
  37510. },
  37511. [
  37512. {
  37513. name: "House Drake",
  37514. height: math.unit(2, "feet")
  37515. },
  37516. {
  37517. name: "Reduced",
  37518. height: math.unit(4.5, "feet")
  37519. },
  37520. {
  37521. name: "Normal",
  37522. height: math.unit(9, "feet"),
  37523. default: true
  37524. },
  37525. ]
  37526. ))
  37527. characterMakers.push(() => makeCharacter(
  37528. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37529. {
  37530. front: {
  37531. height: math.unit(1.74, "meters"),
  37532. weight: math.unit(55, "kg"),
  37533. name: "Front",
  37534. image: {
  37535. source: "./media/characters/rubus/front.svg",
  37536. extra: 1894/1742,
  37537. bottom: 44/1938
  37538. }
  37539. },
  37540. },
  37541. [
  37542. {
  37543. name: "Normal",
  37544. height: math.unit(1.74, "meters"),
  37545. default: true
  37546. },
  37547. ]
  37548. ))
  37549. characterMakers.push(() => makeCharacter(
  37550. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37551. {
  37552. front: {
  37553. height: math.unit(5 + 2/12, "feet"),
  37554. weight: math.unit(112, "lb"),
  37555. name: "Front",
  37556. image: {
  37557. source: "./media/characters/cassie-kingston/front.svg",
  37558. extra: 1438/1390,
  37559. bottom: 47/1485
  37560. }
  37561. },
  37562. },
  37563. [
  37564. {
  37565. name: "Normal",
  37566. height: math.unit(5 + 2/12, "feet"),
  37567. default: true
  37568. },
  37569. {
  37570. name: "Macro",
  37571. height: math.unit(128, "feet")
  37572. },
  37573. {
  37574. name: "Megamacro",
  37575. height: math.unit(2.56, "miles")
  37576. },
  37577. ]
  37578. ))
  37579. characterMakers.push(() => makeCharacter(
  37580. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37581. {
  37582. front: {
  37583. height: math.unit(7, "feet"),
  37584. name: "Front",
  37585. image: {
  37586. source: "./media/characters/fox/front.svg",
  37587. extra: 1798/1703,
  37588. bottom: 55/1853
  37589. }
  37590. },
  37591. back: {
  37592. height: math.unit(7, "feet"),
  37593. name: "Back",
  37594. image: {
  37595. source: "./media/characters/fox/back.svg",
  37596. extra: 1748/1649,
  37597. bottom: 32/1780
  37598. }
  37599. },
  37600. head: {
  37601. height: math.unit(1.95, "feet"),
  37602. name: "Head",
  37603. image: {
  37604. source: "./media/characters/fox/head.svg"
  37605. }
  37606. },
  37607. dick: {
  37608. height: math.unit(1.33, "feet"),
  37609. name: "Dick",
  37610. image: {
  37611. source: "./media/characters/fox/dick.svg"
  37612. }
  37613. },
  37614. foot: {
  37615. height: math.unit(1, "feet"),
  37616. name: "Foot",
  37617. image: {
  37618. source: "./media/characters/fox/foot.svg"
  37619. }
  37620. },
  37621. paw: {
  37622. height: math.unit(0.92, "feet"),
  37623. name: "Paw",
  37624. image: {
  37625. source: "./media/characters/fox/paw.svg"
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Small",
  37632. height: math.unit(3, "inches")
  37633. },
  37634. {
  37635. name: "\"Realistic\"",
  37636. height: math.unit(7, "feet")
  37637. },
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(150, "feet"),
  37641. default: true
  37642. },
  37643. {
  37644. name: "BIG",
  37645. height: math.unit(1200, "feet")
  37646. },
  37647. {
  37648. name: "👀",
  37649. height: math.unit(5, "miles")
  37650. },
  37651. {
  37652. name: "👀👀👀",
  37653. height: math.unit(64, "miles")
  37654. },
  37655. ]
  37656. ))
  37657. characterMakers.push(() => makeCharacter(
  37658. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37659. {
  37660. front: {
  37661. height: math.unit(625, "feet"),
  37662. name: "Front",
  37663. image: {
  37664. source: "./media/characters/asonja-rossa/front.svg",
  37665. extra: 1833/1686,
  37666. bottom: 24/1857
  37667. }
  37668. },
  37669. back: {
  37670. height: math.unit(625, "feet"),
  37671. name: "Back",
  37672. image: {
  37673. source: "./media/characters/asonja-rossa/back.svg",
  37674. extra: 1852/1753,
  37675. bottom: 26/1878
  37676. }
  37677. },
  37678. },
  37679. [
  37680. {
  37681. name: "Macro",
  37682. height: math.unit(625, "feet"),
  37683. default: true
  37684. },
  37685. ]
  37686. ))
  37687. characterMakers.push(() => makeCharacter(
  37688. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37689. {
  37690. side: {
  37691. height: math.unit(8, "feet"),
  37692. name: "Side",
  37693. image: {
  37694. source: "./media/characters/rezukii/side.svg",
  37695. extra: 979/542,
  37696. bottom: 87/1066
  37697. }
  37698. },
  37699. sitting: {
  37700. height: math.unit(14.6, "feet"),
  37701. name: "Sitting",
  37702. image: {
  37703. source: "./media/characters/rezukii/sitting.svg",
  37704. extra: 1023/813,
  37705. bottom: 45/1068
  37706. }
  37707. },
  37708. },
  37709. [
  37710. {
  37711. name: "Tiny",
  37712. height: math.unit(2, "feet")
  37713. },
  37714. {
  37715. name: "Smol",
  37716. height: math.unit(4, "feet")
  37717. },
  37718. {
  37719. name: "Normal",
  37720. height: math.unit(8, "feet"),
  37721. default: true
  37722. },
  37723. {
  37724. name: "Big",
  37725. height: math.unit(12, "feet")
  37726. },
  37727. {
  37728. name: "Macro",
  37729. height: math.unit(30, "feet")
  37730. },
  37731. ]
  37732. ))
  37733. characterMakers.push(() => makeCharacter(
  37734. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37735. {
  37736. front: {
  37737. height: math.unit(14, "feet"),
  37738. weight: math.unit(9.5, "tonnes"),
  37739. name: "Front",
  37740. image: {
  37741. source: "./media/characters/dawnheart/front.svg",
  37742. extra: 2792/2675,
  37743. bottom: 64/2856
  37744. }
  37745. },
  37746. },
  37747. [
  37748. {
  37749. name: "Normal",
  37750. height: math.unit(14, "feet"),
  37751. default: true
  37752. },
  37753. ]
  37754. ))
  37755. characterMakers.push(() => makeCharacter(
  37756. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37757. {
  37758. front: {
  37759. height: math.unit(1.7, "m"),
  37760. name: "Front",
  37761. image: {
  37762. source: "./media/characters/gladi/front.svg",
  37763. extra: 1460/1362,
  37764. bottom: 19/1479
  37765. }
  37766. },
  37767. back: {
  37768. height: math.unit(1.7, "m"),
  37769. name: "Back",
  37770. image: {
  37771. source: "./media/characters/gladi/back.svg",
  37772. extra: 1459/1357,
  37773. bottom: 12/1471
  37774. }
  37775. },
  37776. feral: {
  37777. height: math.unit(2.05, "m"),
  37778. name: "Feral",
  37779. image: {
  37780. source: "./media/characters/gladi/feral.svg",
  37781. extra: 821/557,
  37782. bottom: 91/912
  37783. }
  37784. },
  37785. },
  37786. [
  37787. {
  37788. name: "Shortest",
  37789. height: math.unit(70, "cm")
  37790. },
  37791. {
  37792. name: "Normal",
  37793. height: math.unit(1.7, "m")
  37794. },
  37795. {
  37796. name: "Macro",
  37797. height: math.unit(10, "m"),
  37798. default: true
  37799. },
  37800. {
  37801. name: "Tallest",
  37802. height: math.unit(200, "m")
  37803. },
  37804. ]
  37805. ))
  37806. characterMakers.push(() => makeCharacter(
  37807. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37808. {
  37809. front: {
  37810. height: math.unit(5 + 7/12, "feet"),
  37811. weight: math.unit(2, "tons"),
  37812. name: "Front",
  37813. image: {
  37814. source: "./media/characters/erdno/front.svg",
  37815. extra: 1234/1129,
  37816. bottom: 35/1269
  37817. }
  37818. },
  37819. angled: {
  37820. height: math.unit(5 + 7/12, "feet"),
  37821. weight: math.unit(2, "tons"),
  37822. name: "Angled",
  37823. image: {
  37824. source: "./media/characters/erdno/angled.svg",
  37825. extra: 1185/1139,
  37826. bottom: 36/1221
  37827. }
  37828. },
  37829. side: {
  37830. height: math.unit(5 + 7/12, "feet"),
  37831. weight: math.unit(2, "tons"),
  37832. name: "Side",
  37833. image: {
  37834. source: "./media/characters/erdno/side.svg",
  37835. extra: 1191/1144,
  37836. bottom: 40/1231
  37837. }
  37838. },
  37839. back: {
  37840. height: math.unit(5 + 7/12, "feet"),
  37841. weight: math.unit(2, "tons"),
  37842. name: "Back",
  37843. image: {
  37844. source: "./media/characters/erdno/back.svg",
  37845. extra: 1202/1146,
  37846. bottom: 17/1219
  37847. }
  37848. },
  37849. frontNsfw: {
  37850. height: math.unit(5 + 7/12, "feet"),
  37851. weight: math.unit(2, "tons"),
  37852. name: "Front (NSFW)",
  37853. image: {
  37854. source: "./media/characters/erdno/front-nsfw.svg",
  37855. extra: 1234/1129,
  37856. bottom: 35/1269
  37857. }
  37858. },
  37859. angledNsfw: {
  37860. height: math.unit(5 + 7/12, "feet"),
  37861. weight: math.unit(2, "tons"),
  37862. name: "Angled (NSFW)",
  37863. image: {
  37864. source: "./media/characters/erdno/angled-nsfw.svg",
  37865. extra: 1185/1139,
  37866. bottom: 36/1221
  37867. }
  37868. },
  37869. sideNsfw: {
  37870. height: math.unit(5 + 7/12, "feet"),
  37871. weight: math.unit(2, "tons"),
  37872. name: "Side (NSFW)",
  37873. image: {
  37874. source: "./media/characters/erdno/side-nsfw.svg",
  37875. extra: 1191/1144,
  37876. bottom: 40/1231
  37877. }
  37878. },
  37879. backNsfw: {
  37880. height: math.unit(5 + 7/12, "feet"),
  37881. weight: math.unit(2, "tons"),
  37882. name: "Back (NSFW)",
  37883. image: {
  37884. source: "./media/characters/erdno/back-nsfw.svg",
  37885. extra: 1202/1146,
  37886. bottom: 17/1219
  37887. }
  37888. },
  37889. frontHyper: {
  37890. height: math.unit(5 + 7/12, "feet"),
  37891. weight: math.unit(2, "tons"),
  37892. name: "Front (Hyper)",
  37893. image: {
  37894. source: "./media/characters/erdno/front-hyper.svg",
  37895. extra: 1298/1136,
  37896. bottom: 35/1333
  37897. }
  37898. },
  37899. },
  37900. [
  37901. {
  37902. name: "Normal",
  37903. height: math.unit(5 + 7/12, "feet"),
  37904. default: true
  37905. },
  37906. {
  37907. name: "Big",
  37908. height: math.unit(5.7, "meters")
  37909. },
  37910. {
  37911. name: "Macro",
  37912. height: math.unit(5.7, "kilometers")
  37913. },
  37914. {
  37915. name: "Megamacro",
  37916. height: math.unit(5.7, "earths")
  37917. },
  37918. ]
  37919. ))
  37920. characterMakers.push(() => makeCharacter(
  37921. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37922. {
  37923. front: {
  37924. height: math.unit(5 + 10/12, "feet"),
  37925. weight: math.unit(150, "lb"),
  37926. name: "Front",
  37927. image: {
  37928. source: "./media/characters/jamie/front.svg",
  37929. extra: 1908/1768,
  37930. bottom: 19/1927
  37931. }
  37932. },
  37933. },
  37934. [
  37935. {
  37936. name: "Minimum",
  37937. height: math.unit(2, "cm")
  37938. },
  37939. {
  37940. name: "Micro",
  37941. height: math.unit(3, "inches")
  37942. },
  37943. {
  37944. name: "Normal",
  37945. height: math.unit(5 + 10/12, "feet"),
  37946. default: true
  37947. },
  37948. {
  37949. name: "Macro",
  37950. height: math.unit(150, "feet")
  37951. },
  37952. {
  37953. name: "Megamacro",
  37954. height: math.unit(10000, "m")
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37960. {
  37961. front: {
  37962. height: math.unit(2, "meters"),
  37963. weight: math.unit(100, "kg"),
  37964. name: "Front",
  37965. image: {
  37966. source: "./media/characters/shiron/front.svg",
  37967. extra: 2103/1985,
  37968. bottom: 98/2201
  37969. }
  37970. },
  37971. back: {
  37972. height: math.unit(2, "meters"),
  37973. weight: math.unit(100, "kg"),
  37974. name: "Back",
  37975. image: {
  37976. source: "./media/characters/shiron/back.svg",
  37977. extra: 2110/2015,
  37978. bottom: 89/2199
  37979. }
  37980. },
  37981. hand: {
  37982. height: math.unit(0.96, "feet"),
  37983. name: "Hand",
  37984. image: {
  37985. source: "./media/characters/shiron/hand.svg"
  37986. }
  37987. },
  37988. foot: {
  37989. height: math.unit(1.464, "feet"),
  37990. name: "Foot",
  37991. image: {
  37992. source: "./media/characters/shiron/foot.svg"
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Normal",
  37999. height: math.unit(2, "meters")
  38000. },
  38001. {
  38002. name: "Macro",
  38003. height: math.unit(500, "meters"),
  38004. default: true
  38005. },
  38006. {
  38007. name: "Megamacro",
  38008. height: math.unit(20, "km")
  38009. },
  38010. ]
  38011. ))
  38012. characterMakers.push(() => makeCharacter(
  38013. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38014. {
  38015. front: {
  38016. height: math.unit(6, "feet"),
  38017. name: "Front",
  38018. image: {
  38019. source: "./media/characters/sam/front.svg",
  38020. extra: 849/826,
  38021. bottom: 19/868
  38022. }
  38023. },
  38024. },
  38025. [
  38026. {
  38027. name: "Normal",
  38028. height: math.unit(6, "feet"),
  38029. default: true
  38030. },
  38031. ]
  38032. ))
  38033. characterMakers.push(() => makeCharacter(
  38034. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38035. {
  38036. front: {
  38037. height: math.unit(8 + 4/12, "feet"),
  38038. weight: math.unit(122, "kg"),
  38039. name: "Front",
  38040. image: {
  38041. source: "./media/characters/namori-kurogawa/front.svg",
  38042. extra: 1894/1576,
  38043. bottom: 34/1928
  38044. }
  38045. },
  38046. },
  38047. [
  38048. {
  38049. name: "Normal",
  38050. height: math.unit(8 + 4/12, "feet"),
  38051. default: true
  38052. },
  38053. ]
  38054. ))
  38055. characterMakers.push(() => makeCharacter(
  38056. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38057. {
  38058. front: {
  38059. height: math.unit(9, "feet"),
  38060. weight: math.unit(621, "lb"),
  38061. name: "Front",
  38062. image: {
  38063. source: "./media/characters/unmru/front.svg",
  38064. extra: 1853/1747,
  38065. bottom: 73/1926
  38066. }
  38067. },
  38068. side: {
  38069. height: math.unit(9, "feet"),
  38070. weight: math.unit(621, "lb"),
  38071. name: "Side",
  38072. image: {
  38073. source: "./media/characters/unmru/side.svg",
  38074. extra: 1781/1671,
  38075. bottom: 127/1908
  38076. }
  38077. },
  38078. back: {
  38079. height: math.unit(9, "feet"),
  38080. weight: math.unit(621, "lb"),
  38081. name: "Back",
  38082. image: {
  38083. source: "./media/characters/unmru/back.svg",
  38084. extra: 1894/1765,
  38085. bottom: 75/1969
  38086. }
  38087. },
  38088. dick: {
  38089. height: math.unit(3, "feet"),
  38090. weight: math.unit(35, "lb"),
  38091. name: "Dick",
  38092. image: {
  38093. source: "./media/characters/unmru/dick.svg"
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(9, "feet")
  38101. },
  38102. {
  38103. name: "Natural",
  38104. height: math.unit(27, "feet"),
  38105. default: true
  38106. },
  38107. {
  38108. name: "Giant",
  38109. height: math.unit(90, "feet")
  38110. },
  38111. {
  38112. name: "Kaiju",
  38113. height: math.unit(270, "feet")
  38114. },
  38115. {
  38116. name: "Macro",
  38117. height: math.unit(900, "feet")
  38118. },
  38119. {
  38120. name: "Macro+",
  38121. height: math.unit(2700, "feet")
  38122. },
  38123. {
  38124. name: "Megamacro",
  38125. height: math.unit(9000, "feet")
  38126. },
  38127. {
  38128. name: "City-Crushing",
  38129. height: math.unit(27000, "feet")
  38130. },
  38131. {
  38132. name: "Mountain-Mashing",
  38133. height: math.unit(90000, "feet")
  38134. },
  38135. {
  38136. name: "Earth-Eclipsing",
  38137. height: math.unit(2.7e8, "feet")
  38138. },
  38139. {
  38140. name: "Sol-Swallowing",
  38141. height: math.unit(9e10, "feet")
  38142. },
  38143. {
  38144. name: "Majoris-Munching",
  38145. height: math.unit(2.7e13, "feet")
  38146. },
  38147. ]
  38148. ))
  38149. characterMakers.push(() => makeCharacter(
  38150. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38151. {
  38152. front: {
  38153. height: math.unit(1, "inch"),
  38154. name: "Front",
  38155. image: {
  38156. source: "./media/characters/squeaks-mouse/front.svg",
  38157. extra: 352/308,
  38158. bottom: 25/377
  38159. }
  38160. },
  38161. },
  38162. [
  38163. {
  38164. name: "Micro",
  38165. height: math.unit(1, "inch"),
  38166. default: true
  38167. },
  38168. ]
  38169. ))
  38170. characterMakers.push(() => makeCharacter(
  38171. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38172. {
  38173. side: {
  38174. height: math.unit(35, "feet"),
  38175. name: "Side",
  38176. image: {
  38177. source: "./media/characters/sayko/side.svg",
  38178. extra: 1697/1021,
  38179. bottom: 82/1779
  38180. }
  38181. },
  38182. head: {
  38183. height: math.unit(16, "feet"),
  38184. name: "Head",
  38185. image: {
  38186. source: "./media/characters/sayko/head.svg"
  38187. }
  38188. },
  38189. forepaw: {
  38190. height: math.unit(7.85, "feet"),
  38191. name: "Forepaw",
  38192. image: {
  38193. source: "./media/characters/sayko/forepaw.svg"
  38194. }
  38195. },
  38196. hindpaw: {
  38197. height: math.unit(8.8, "feet"),
  38198. name: "Hindpaw",
  38199. image: {
  38200. source: "./media/characters/sayko/hindpaw.svg"
  38201. }
  38202. },
  38203. },
  38204. [
  38205. {
  38206. name: "Normal",
  38207. height: math.unit(35, "feet"),
  38208. default: true
  38209. },
  38210. {
  38211. name: "Colossus",
  38212. height: math.unit(100, "meters")
  38213. },
  38214. {
  38215. name: "\"Small\" Deity",
  38216. height: math.unit(1, "km")
  38217. },
  38218. {
  38219. name: "\"Large\" Deity",
  38220. height: math.unit(15, "km")
  38221. },
  38222. ]
  38223. ))
  38224. characterMakers.push(() => makeCharacter(
  38225. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38226. {
  38227. front: {
  38228. height: math.unit(6, "feet"),
  38229. weight: math.unit(250, "lb"),
  38230. name: "Front",
  38231. image: {
  38232. source: "./media/characters/mukiro/front.svg",
  38233. extra: 1368/1310,
  38234. bottom: 34/1402
  38235. }
  38236. },
  38237. },
  38238. [
  38239. {
  38240. name: "Normal",
  38241. height: math.unit(6, "feet"),
  38242. default: true
  38243. },
  38244. ]
  38245. ))
  38246. characterMakers.push(() => makeCharacter(
  38247. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38248. {
  38249. front: {
  38250. height: math.unit(12 + 4/12, "feet"),
  38251. name: "Front",
  38252. image: {
  38253. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38254. extra: 1346/1311,
  38255. bottom: 65/1411
  38256. }
  38257. },
  38258. },
  38259. [
  38260. {
  38261. name: "Base",
  38262. height: math.unit(12 + 4/12, "feet"),
  38263. default: true
  38264. },
  38265. {
  38266. name: "Macro",
  38267. height: math.unit(150, "feet")
  38268. },
  38269. {
  38270. name: "Mega",
  38271. height: math.unit(2, "miles")
  38272. },
  38273. {
  38274. name: "Demi God",
  38275. height: math.unit(4, "AU")
  38276. },
  38277. {
  38278. name: "God Size",
  38279. height: math.unit(1, "universe")
  38280. },
  38281. ]
  38282. ))
  38283. characterMakers.push(() => makeCharacter(
  38284. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38285. {
  38286. front: {
  38287. height: math.unit(3 + 3/12, "feet"),
  38288. weight: math.unit(88, "lb"),
  38289. name: "Front",
  38290. image: {
  38291. source: "./media/characters/trey/front.svg",
  38292. extra: 1815/1509,
  38293. bottom: 60/1875
  38294. }
  38295. },
  38296. },
  38297. [
  38298. {
  38299. name: "Normal",
  38300. height: math.unit(3 + 3/12, "feet"),
  38301. default: true
  38302. },
  38303. ]
  38304. ))
  38305. characterMakers.push(() => makeCharacter(
  38306. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38307. {
  38308. front: {
  38309. height: math.unit(4, "meters"),
  38310. name: "Front",
  38311. image: {
  38312. source: "./media/characters/adelonda/front.svg",
  38313. extra: 1077/982,
  38314. bottom: 39/1116
  38315. }
  38316. },
  38317. back: {
  38318. height: math.unit(4, "meters"),
  38319. name: "Back",
  38320. image: {
  38321. source: "./media/characters/adelonda/back.svg",
  38322. extra: 1105/1003,
  38323. bottom: 25/1130
  38324. }
  38325. },
  38326. feral: {
  38327. height: math.unit(40/1.5, "meters"),
  38328. name: "Feral",
  38329. image: {
  38330. source: "./media/characters/adelonda/feral.svg",
  38331. extra: 597/271,
  38332. bottom: 387/984
  38333. }
  38334. },
  38335. },
  38336. [
  38337. {
  38338. name: "Normal",
  38339. height: math.unit(4, "meters"),
  38340. default: true
  38341. },
  38342. ]
  38343. ))
  38344. characterMakers.push(() => makeCharacter(
  38345. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38346. {
  38347. front: {
  38348. height: math.unit(8 + 4/12, "feet"),
  38349. weight: math.unit(670, "lb"),
  38350. name: "Front",
  38351. image: {
  38352. source: "./media/characters/acadiel/front.svg",
  38353. extra: 1901/1595,
  38354. bottom: 142/2043
  38355. }
  38356. },
  38357. },
  38358. [
  38359. {
  38360. name: "Normal",
  38361. height: math.unit(8 + 4/12, "feet"),
  38362. default: true
  38363. },
  38364. {
  38365. name: "Macro",
  38366. height: math.unit(200, "feet")
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(6 + 2/12, "feet"),
  38375. weight: math.unit(185, "lb"),
  38376. name: "Front",
  38377. image: {
  38378. source: "./media/characters/kayne-ein/front.svg",
  38379. extra: 1780/1560,
  38380. bottom: 81/1861
  38381. }
  38382. },
  38383. },
  38384. [
  38385. {
  38386. name: "Normal",
  38387. height: math.unit(6 + 2/12, "feet"),
  38388. default: true
  38389. },
  38390. {
  38391. name: "Transformation Stage",
  38392. height: math.unit(15, "feet")
  38393. },
  38394. {
  38395. name: "Macro",
  38396. height: math.unit(150, "feet")
  38397. },
  38398. {
  38399. name: "Earth's Shadow",
  38400. height: math.unit(6200, "miles")
  38401. },
  38402. {
  38403. name: "Universal Demon",
  38404. height: math.unit(28e9, "parsecs")
  38405. },
  38406. {
  38407. name: "Multiverse God",
  38408. height: math.unit(3, "multiverses")
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38414. {
  38415. front: {
  38416. height: math.unit(5 + 5/12, "feet"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/fawn/front.svg",
  38420. extra: 1873/1731,
  38421. bottom: 95/1968
  38422. }
  38423. },
  38424. back: {
  38425. height: math.unit(5 + 5/12, "feet"),
  38426. name: "Back",
  38427. image: {
  38428. source: "./media/characters/fawn/back.svg",
  38429. extra: 1813/1700,
  38430. bottom: 14/1827
  38431. }
  38432. },
  38433. hoof: {
  38434. height: math.unit(1.45, "feet"),
  38435. name: "Hoof",
  38436. image: {
  38437. source: "./media/characters/fawn/hoof.svg"
  38438. }
  38439. },
  38440. },
  38441. [
  38442. {
  38443. name: "Normal",
  38444. height: math.unit(5 + 5/12, "feet"),
  38445. default: true
  38446. },
  38447. ]
  38448. ))
  38449. characterMakers.push(() => makeCharacter(
  38450. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38451. {
  38452. front: {
  38453. height: math.unit(2 + 5/12, "feet"),
  38454. name: "Front",
  38455. image: {
  38456. source: "./media/characters/orion/front.svg",
  38457. extra: 1366/1304,
  38458. bottom: 43/1409
  38459. }
  38460. },
  38461. paw: {
  38462. height: math.unit(0.52, "feet"),
  38463. name: "Paw",
  38464. image: {
  38465. source: "./media/characters/orion/paw.svg"
  38466. }
  38467. },
  38468. },
  38469. [
  38470. {
  38471. name: "Normal",
  38472. height: math.unit(2 + 5/12, "feet"),
  38473. default: true
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38479. {
  38480. front: {
  38481. height: math.unit(5 + 10/12, "feet"),
  38482. name: "Front",
  38483. image: {
  38484. source: "./media/characters/vera/front.svg",
  38485. extra: 1680/1575,
  38486. bottom: 49/1729
  38487. }
  38488. },
  38489. back: {
  38490. height: math.unit(5 + 10/12, "feet"),
  38491. name: "Back",
  38492. image: {
  38493. source: "./media/characters/vera/back.svg",
  38494. extra: 1700/1588,
  38495. bottom: 18/1718
  38496. }
  38497. },
  38498. arcanine: {
  38499. height: math.unit(6 + 8/12, "feet"),
  38500. name: "Arcanine",
  38501. image: {
  38502. source: "./media/characters/vera/arcanine.svg",
  38503. extra: 1590/1511,
  38504. bottom: 71/1661
  38505. }
  38506. },
  38507. maw: {
  38508. height: math.unit(0.82, "feet"),
  38509. name: "Maw",
  38510. image: {
  38511. source: "./media/characters/vera/maw.svg"
  38512. }
  38513. },
  38514. mawArcanine: {
  38515. height: math.unit(0.97, "feet"),
  38516. name: "Maw (Arcanine)",
  38517. image: {
  38518. source: "./media/characters/vera/maw-arcanine.svg"
  38519. }
  38520. },
  38521. paw: {
  38522. height: math.unit(0.75, "feet"),
  38523. name: "Paw",
  38524. image: {
  38525. source: "./media/characters/vera/paw.svg"
  38526. }
  38527. },
  38528. pawprint: {
  38529. height: math.unit(0.52, "feet"),
  38530. name: "Pawprint",
  38531. image: {
  38532. source: "./media/characters/vera/pawprint.svg"
  38533. }
  38534. },
  38535. },
  38536. [
  38537. {
  38538. name: "Normal",
  38539. height: math.unit(5 + 10/12, "feet"),
  38540. default: true
  38541. },
  38542. {
  38543. name: "Macro",
  38544. height: math.unit(75, "feet")
  38545. },
  38546. ]
  38547. ))
  38548. characterMakers.push(() => makeCharacter(
  38549. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38550. {
  38551. front: {
  38552. height: math.unit(4, "feet"),
  38553. weight: math.unit(40, "lb"),
  38554. name: "Front",
  38555. image: {
  38556. source: "./media/characters/orvan-rabbit/front.svg",
  38557. extra: 1896/1642,
  38558. bottom: 29/1925
  38559. }
  38560. },
  38561. },
  38562. [
  38563. {
  38564. name: "Normal",
  38565. height: math.unit(4, "feet"),
  38566. default: true
  38567. },
  38568. ]
  38569. ))
  38570. characterMakers.push(() => makeCharacter(
  38571. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38572. {
  38573. front: {
  38574. height: math.unit(6, "feet"),
  38575. weight: math.unit(168, "lb"),
  38576. name: "Front",
  38577. image: {
  38578. source: "./media/characters/lisa/front.svg",
  38579. extra: 2065/1867,
  38580. bottom: 46/2111
  38581. }
  38582. },
  38583. back: {
  38584. height: math.unit(6, "feet"),
  38585. weight: math.unit(168, "lb"),
  38586. name: "Back",
  38587. image: {
  38588. source: "./media/characters/lisa/back.svg",
  38589. extra: 1982/1838,
  38590. bottom: 29/2011
  38591. }
  38592. },
  38593. maw: {
  38594. height: math.unit(0.81, "feet"),
  38595. name: "Maw",
  38596. image: {
  38597. source: "./media/characters/lisa/maw.svg"
  38598. }
  38599. },
  38600. paw: {
  38601. height: math.unit(0.9, "feet"),
  38602. name: "Paw",
  38603. image: {
  38604. source: "./media/characters/lisa/paw.svg"
  38605. }
  38606. },
  38607. caribousune: {
  38608. height: math.unit(7 + 2/12, "feet"),
  38609. weight: math.unit(268, "lb"),
  38610. name: "Caribousune",
  38611. image: {
  38612. source: "./media/characters/lisa/caribousune.svg",
  38613. extra: 1843/1633,
  38614. bottom: 29/1872
  38615. }
  38616. },
  38617. frontCaribousune: {
  38618. height: math.unit(7 + 2/12, "feet"),
  38619. weight: math.unit(268, "lb"),
  38620. name: "Front (Caribousune)",
  38621. image: {
  38622. source: "./media/characters/lisa/front-caribousune.svg",
  38623. extra: 1818/1638,
  38624. bottom: 52/1870
  38625. }
  38626. },
  38627. sideCaribousune: {
  38628. height: math.unit(7 + 2/12, "feet"),
  38629. weight: math.unit(268, "lb"),
  38630. name: "Side (Caribousune)",
  38631. image: {
  38632. source: "./media/characters/lisa/side-caribousune.svg",
  38633. extra: 1851/1635,
  38634. bottom: 16/1867
  38635. }
  38636. },
  38637. backCaribousune: {
  38638. height: math.unit(7 + 2/12, "feet"),
  38639. weight: math.unit(268, "lb"),
  38640. name: "Back (Caribousune)",
  38641. image: {
  38642. source: "./media/characters/lisa/back-caribousune.svg",
  38643. extra: 1801/1604,
  38644. bottom: 44/1845
  38645. }
  38646. },
  38647. caribou: {
  38648. height: math.unit(7 + 2/12, "feet"),
  38649. weight: math.unit(268, "lb"),
  38650. name: "Caribou",
  38651. image: {
  38652. source: "./media/characters/lisa/caribou.svg",
  38653. extra: 1843/1633,
  38654. bottom: 29/1872
  38655. }
  38656. },
  38657. frontCaribou: {
  38658. height: math.unit(7 + 2/12, "feet"),
  38659. weight: math.unit(268, "lb"),
  38660. name: "Front (Caribou)",
  38661. image: {
  38662. source: "./media/characters/lisa/front-caribou.svg",
  38663. extra: 1818/1638,
  38664. bottom: 52/1870
  38665. }
  38666. },
  38667. sideCaribou: {
  38668. height: math.unit(7 + 2/12, "feet"),
  38669. weight: math.unit(268, "lb"),
  38670. name: "Side (Caribou)",
  38671. image: {
  38672. source: "./media/characters/lisa/side-caribou.svg",
  38673. extra: 1851/1635,
  38674. bottom: 16/1867
  38675. }
  38676. },
  38677. backCaribou: {
  38678. height: math.unit(7 + 2/12, "feet"),
  38679. weight: math.unit(268, "lb"),
  38680. name: "Back (Caribou)",
  38681. image: {
  38682. source: "./media/characters/lisa/back-caribou.svg",
  38683. extra: 1801/1604,
  38684. bottom: 44/1845
  38685. }
  38686. },
  38687. mawCaribou: {
  38688. height: math.unit(1.45, "feet"),
  38689. name: "Maw (Caribou)",
  38690. image: {
  38691. source: "./media/characters/lisa/maw-caribou.svg"
  38692. }
  38693. },
  38694. mawCaribousune: {
  38695. height: math.unit(1.45, "feet"),
  38696. name: "Maw (Caribousune)",
  38697. image: {
  38698. source: "./media/characters/lisa/maw-caribousune.svg"
  38699. }
  38700. },
  38701. pawCaribousune: {
  38702. height: math.unit(1.61, "feet"),
  38703. name: "Paw (Caribou)",
  38704. image: {
  38705. source: "./media/characters/lisa/paw-caribousune.svg"
  38706. }
  38707. },
  38708. },
  38709. [
  38710. {
  38711. name: "Normal",
  38712. height: math.unit(6, "feet")
  38713. },
  38714. {
  38715. name: "God Size",
  38716. height: math.unit(72, "feet"),
  38717. default: true
  38718. },
  38719. {
  38720. name: "Towering",
  38721. height: math.unit(288, "feet")
  38722. },
  38723. {
  38724. name: "City Size",
  38725. height: math.unit(48384, "feet")
  38726. },
  38727. {
  38728. name: "Continental",
  38729. height: math.unit(4200, "miles")
  38730. },
  38731. {
  38732. name: "Planet Eater",
  38733. height: math.unit(42, "earths")
  38734. },
  38735. {
  38736. name: "Star Swallower",
  38737. height: math.unit(42, "solarradii")
  38738. },
  38739. {
  38740. name: "System Swallower",
  38741. height: math.unit(84000, "AU")
  38742. },
  38743. {
  38744. name: "Galaxy Gobbler",
  38745. height: math.unit(42, "galaxies")
  38746. },
  38747. {
  38748. name: "Universe Devourer",
  38749. height: math.unit(42, "universes")
  38750. },
  38751. {
  38752. name: "Multiverse Muncher",
  38753. height: math.unit(42, "multiverses")
  38754. },
  38755. ]
  38756. ))
  38757. characterMakers.push(() => makeCharacter(
  38758. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38759. {
  38760. front: {
  38761. height: math.unit(36, "feet"),
  38762. name: "Front",
  38763. image: {
  38764. source: "./media/characters/shadow-rat/front.svg",
  38765. extra: 1845/1758,
  38766. bottom: 83/1928
  38767. }
  38768. },
  38769. },
  38770. [
  38771. {
  38772. name: "Macro",
  38773. height: math.unit(36, "feet"),
  38774. default: true
  38775. },
  38776. ]
  38777. ))
  38778. characterMakers.push(() => makeCharacter(
  38779. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38780. {
  38781. side: {
  38782. height: math.unit(8, "feet"),
  38783. weight: math.unit(2630, "lb"),
  38784. name: "Side",
  38785. image: {
  38786. source: "./media/characters/torallia/side.svg",
  38787. extra: 2164/2021,
  38788. bottom: 371/2535
  38789. }
  38790. },
  38791. },
  38792. [
  38793. {
  38794. name: "Mortal Interaction",
  38795. height: math.unit(8, "feet")
  38796. },
  38797. {
  38798. name: "Natural",
  38799. height: math.unit(24, "feet"),
  38800. default: true
  38801. },
  38802. {
  38803. name: "Giant",
  38804. height: math.unit(80, "feet")
  38805. },
  38806. {
  38807. name: "Kaiju",
  38808. height: math.unit(240, "feet")
  38809. },
  38810. {
  38811. name: "Macro",
  38812. height: math.unit(800, "feet")
  38813. },
  38814. {
  38815. name: "Macro+",
  38816. height: math.unit(2400, "feet")
  38817. },
  38818. {
  38819. name: "Macro++",
  38820. height: math.unit(8000, "feet")
  38821. },
  38822. {
  38823. name: "City-Crushing",
  38824. height: math.unit(24000, "feet")
  38825. },
  38826. {
  38827. name: "Mountain-Mashing",
  38828. height: math.unit(80000, "feet")
  38829. },
  38830. {
  38831. name: "District Demolisher",
  38832. height: math.unit(240000, "feet")
  38833. },
  38834. {
  38835. name: "Tri-County Terror",
  38836. height: math.unit(800000, "feet")
  38837. },
  38838. {
  38839. name: "State Smasher",
  38840. height: math.unit(2.4e6, "feet")
  38841. },
  38842. {
  38843. name: "Nation Nemesis",
  38844. height: math.unit(8e6, "feet")
  38845. },
  38846. {
  38847. name: "Continent Cracker",
  38848. height: math.unit(2.4e7, "feet")
  38849. },
  38850. {
  38851. name: "Planet-Pillaging",
  38852. height: math.unit(8e7, "feet")
  38853. },
  38854. {
  38855. name: "Earth-Eclipsing",
  38856. height: math.unit(2.4e8, "feet")
  38857. },
  38858. {
  38859. name: "Jovian-Jostling",
  38860. height: math.unit(8e8, "feet")
  38861. },
  38862. {
  38863. name: "Gas Giant Gulper",
  38864. height: math.unit(2.4e9, "feet")
  38865. },
  38866. {
  38867. name: "Astral Annihilator",
  38868. height: math.unit(8e9, "feet")
  38869. },
  38870. {
  38871. name: "Celestial Conqueror",
  38872. height: math.unit(2.4e10, "feet")
  38873. },
  38874. {
  38875. name: "Sol-Swallowing",
  38876. height: math.unit(8e10, "feet")
  38877. },
  38878. {
  38879. name: "Hunter of the Heavens",
  38880. height: math.unit(2.4e13, "feet")
  38881. },
  38882. ]
  38883. ))
  38884. characterMakers.push(() => makeCharacter(
  38885. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38886. {
  38887. front: {
  38888. height: math.unit(6 + 8/12, "feet"),
  38889. name: "Front",
  38890. image: {
  38891. source: "./media/characters/rebecca-pawlson/front.svg",
  38892. extra: 1737/1596,
  38893. bottom: 107/1844
  38894. }
  38895. },
  38896. back: {
  38897. height: math.unit(6 + 8/12, "feet"),
  38898. name: "Back",
  38899. image: {
  38900. source: "./media/characters/rebecca-pawlson/back.svg",
  38901. extra: 1702/1523,
  38902. bottom: 86/1788
  38903. }
  38904. },
  38905. },
  38906. [
  38907. {
  38908. name: "Normal",
  38909. height: math.unit(6 + 8/12, "feet")
  38910. },
  38911. {
  38912. name: "Mini Macro",
  38913. height: math.unit(10, "feet"),
  38914. default: true
  38915. },
  38916. {
  38917. name: "Macro",
  38918. height: math.unit(100, "feet")
  38919. },
  38920. {
  38921. name: "Mega Macro",
  38922. height: math.unit(2500, "feet")
  38923. },
  38924. {
  38925. name: "Giga Macro",
  38926. height: math.unit(50, "miles")
  38927. },
  38928. ]
  38929. ))
  38930. characterMakers.push(() => makeCharacter(
  38931. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38932. {
  38933. front: {
  38934. height: math.unit(7 + 6/12, "feet"),
  38935. weight: math.unit(600, "lb"),
  38936. name: "Front",
  38937. image: {
  38938. source: "./media/characters/moxie-nova/front.svg",
  38939. extra: 1734/1652,
  38940. bottom: 41/1775
  38941. }
  38942. },
  38943. },
  38944. [
  38945. {
  38946. name: "Normal",
  38947. height: math.unit(7 + 6/12, "feet"),
  38948. default: true
  38949. },
  38950. ]
  38951. ))
  38952. characterMakers.push(() => makeCharacter(
  38953. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38954. {
  38955. goat: {
  38956. height: math.unit(4, "feet"),
  38957. weight: math.unit(180, "lb"),
  38958. name: "Goat",
  38959. image: {
  38960. source: "./media/characters/tiffany/goat.svg",
  38961. extra: 1845/1595,
  38962. bottom: 106/1951
  38963. }
  38964. },
  38965. front: {
  38966. height: math.unit(5, "feet"),
  38967. weight: math.unit(150, "lb"),
  38968. name: "Foxcoon",
  38969. image: {
  38970. source: "./media/characters/tiffany/foxcoon.svg",
  38971. extra: 1941/1845,
  38972. bottom: 58/1999
  38973. }
  38974. },
  38975. },
  38976. [
  38977. {
  38978. name: "Normal",
  38979. height: math.unit(5, "feet"),
  38980. default: true
  38981. },
  38982. ]
  38983. ))
  38984. characterMakers.push(() => makeCharacter(
  38985. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38986. {
  38987. front: {
  38988. height: math.unit(8, "feet"),
  38989. weight: math.unit(300, "lb"),
  38990. name: "Front",
  38991. image: {
  38992. source: "./media/characters/raxinath/front.svg",
  38993. extra: 1407/1309,
  38994. bottom: 39/1446
  38995. }
  38996. },
  38997. back: {
  38998. height: math.unit(8, "feet"),
  38999. weight: math.unit(300, "lb"),
  39000. name: "Back",
  39001. image: {
  39002. source: "./media/characters/raxinath/back.svg",
  39003. extra: 1405/1315,
  39004. bottom: 9/1414
  39005. }
  39006. },
  39007. },
  39008. [
  39009. {
  39010. name: "Speck",
  39011. height: math.unit(0.5, "nm")
  39012. },
  39013. {
  39014. name: "Micro",
  39015. height: math.unit(3, "inches")
  39016. },
  39017. {
  39018. name: "Kobold",
  39019. height: math.unit(3, "feet")
  39020. },
  39021. {
  39022. name: "Normal",
  39023. height: math.unit(8, "feet"),
  39024. default: true
  39025. },
  39026. {
  39027. name: "Giant",
  39028. height: math.unit(50, "feet")
  39029. },
  39030. {
  39031. name: "Macro",
  39032. height: math.unit(1000, "feet")
  39033. },
  39034. {
  39035. name: "Megamacro",
  39036. height: math.unit(1, "mile")
  39037. },
  39038. ]
  39039. ))
  39040. characterMakers.push(() => makeCharacter(
  39041. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39042. {
  39043. front: {
  39044. height: math.unit(10, "feet"),
  39045. weight: math.unit(1442, "lb"),
  39046. name: "Front",
  39047. image: {
  39048. source: "./media/characters/mal-dragon/front.svg",
  39049. extra: 1515/1444,
  39050. bottom: 113/1628
  39051. }
  39052. },
  39053. back: {
  39054. height: math.unit(10, "feet"),
  39055. weight: math.unit(1442, "lb"),
  39056. name: "Back",
  39057. image: {
  39058. source: "./media/characters/mal-dragon/back.svg",
  39059. extra: 1527/1434,
  39060. bottom: 25/1552
  39061. }
  39062. },
  39063. },
  39064. [
  39065. {
  39066. name: "Mortal Interaction",
  39067. height: math.unit(10, "feet"),
  39068. default: true
  39069. },
  39070. {
  39071. name: "Large",
  39072. height: math.unit(30, "feet")
  39073. },
  39074. {
  39075. name: "Kaiju",
  39076. height: math.unit(300, "feet")
  39077. },
  39078. {
  39079. name: "Megamacro",
  39080. height: math.unit(10000, "feet")
  39081. },
  39082. {
  39083. name: "Continent Cracker",
  39084. height: math.unit(30000000, "feet")
  39085. },
  39086. {
  39087. name: "Sol-Swallowing",
  39088. height: math.unit(1e11, "feet")
  39089. },
  39090. {
  39091. name: "Light Universal",
  39092. height: math.unit(5, "universes")
  39093. },
  39094. {
  39095. name: "Universe Atoms",
  39096. height: math.unit(1.829e9, "universes")
  39097. },
  39098. {
  39099. name: "Light Multiversal",
  39100. height: math.unit(5, "multiverses")
  39101. },
  39102. {
  39103. name: "Multiverse Atoms",
  39104. height: math.unit(1.829e9, "multiverses")
  39105. },
  39106. {
  39107. name: "Fabric of Time",
  39108. height: math.unit(1e262, "multiverses")
  39109. },
  39110. ]
  39111. ))
  39112. characterMakers.push(() => makeCharacter(
  39113. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39114. {
  39115. front: {
  39116. height: math.unit(9, "feet"),
  39117. weight: math.unit(1050, "lb"),
  39118. name: "Front",
  39119. image: {
  39120. source: "./media/characters/tabitha/front.svg",
  39121. extra: 2083/1994,
  39122. bottom: 68/2151
  39123. }
  39124. },
  39125. },
  39126. [
  39127. {
  39128. name: "Baseline",
  39129. height: math.unit(9, "feet"),
  39130. default: true
  39131. },
  39132. {
  39133. name: "Giant",
  39134. height: math.unit(90, "feet")
  39135. },
  39136. {
  39137. name: "Macro",
  39138. height: math.unit(900, "feet")
  39139. },
  39140. {
  39141. name: "Megamacro",
  39142. height: math.unit(9000, "feet")
  39143. },
  39144. {
  39145. name: "City-Crushing",
  39146. height: math.unit(27000, "feet")
  39147. },
  39148. {
  39149. name: "Mountain-Mashing",
  39150. height: math.unit(90000, "feet")
  39151. },
  39152. {
  39153. name: "Nation Nemesis",
  39154. height: math.unit(9e6, "feet")
  39155. },
  39156. {
  39157. name: "Continent Cracker",
  39158. height: math.unit(27e6, "feet")
  39159. },
  39160. {
  39161. name: "Earth-Eclipsing",
  39162. height: math.unit(2.7e8, "feet")
  39163. },
  39164. {
  39165. name: "Gas Giant Gulper",
  39166. height: math.unit(2.7e9, "feet")
  39167. },
  39168. {
  39169. name: "Sol-Swallowing",
  39170. height: math.unit(9e10, "feet")
  39171. },
  39172. {
  39173. name: "Galaxy Gulper",
  39174. height: math.unit(9, "galaxies")
  39175. },
  39176. {
  39177. name: "Cosmos Churner",
  39178. height: math.unit(9, "universes")
  39179. },
  39180. ]
  39181. ))
  39182. characterMakers.push(() => makeCharacter(
  39183. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39184. {
  39185. front: {
  39186. height: math.unit(160, "cm"),
  39187. weight: math.unit(55, "kg"),
  39188. name: "Front",
  39189. image: {
  39190. source: "./media/characters/tow/front.svg",
  39191. extra: 1751/1722,
  39192. bottom: 74/1825
  39193. }
  39194. },
  39195. },
  39196. [
  39197. {
  39198. name: "Norm",
  39199. height: math.unit(160, "cm")
  39200. },
  39201. {
  39202. name: "Casual",
  39203. height: math.unit(3200, "m"),
  39204. default: true
  39205. },
  39206. {
  39207. name: "Show-Off",
  39208. height: math.unit(160, "km")
  39209. },
  39210. ]
  39211. ))
  39212. characterMakers.push(() => makeCharacter(
  39213. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39214. {
  39215. front: {
  39216. height: math.unit(7 + 11/12, "feet"),
  39217. weight: math.unit(342.8, "lb"),
  39218. name: "Front",
  39219. image: {
  39220. source: "./media/characters/vivian-orca-dragon/front.svg",
  39221. extra: 1890/1865,
  39222. bottom: 28/1918
  39223. }
  39224. },
  39225. },
  39226. [
  39227. {
  39228. name: "Micro",
  39229. height: math.unit(5, "inches")
  39230. },
  39231. {
  39232. name: "Normal",
  39233. height: math.unit(7 + 11/12, "feet"),
  39234. default: true
  39235. },
  39236. {
  39237. name: "Macro",
  39238. height: math.unit(395 + 7/12, "feet")
  39239. },
  39240. ]
  39241. ))
  39242. characterMakers.push(() => makeCharacter(
  39243. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39244. {
  39245. side: {
  39246. height: math.unit(10, "feet"),
  39247. weight: math.unit(1442, "lb"),
  39248. name: "Side",
  39249. image: {
  39250. source: "./media/characters/lotherakon/side.svg",
  39251. extra: 1604/1497,
  39252. bottom: 89/1693
  39253. }
  39254. },
  39255. },
  39256. [
  39257. {
  39258. name: "Mortal Interaction",
  39259. height: math.unit(10, "feet")
  39260. },
  39261. {
  39262. name: "Large",
  39263. height: math.unit(30, "feet"),
  39264. default: true
  39265. },
  39266. {
  39267. name: "Giant",
  39268. height: math.unit(100, "feet")
  39269. },
  39270. {
  39271. name: "Kaiju",
  39272. height: math.unit(300, "feet")
  39273. },
  39274. {
  39275. name: "Macro",
  39276. height: math.unit(1000, "feet")
  39277. },
  39278. {
  39279. name: "Macro+",
  39280. height: math.unit(3000, "feet")
  39281. },
  39282. {
  39283. name: "Megamacro",
  39284. height: math.unit(10000, "feet")
  39285. },
  39286. {
  39287. name: "City-Crushing",
  39288. height: math.unit(30000, "feet")
  39289. },
  39290. {
  39291. name: "Continent Cracker",
  39292. height: math.unit(30e6, "feet")
  39293. },
  39294. {
  39295. name: "Earth Eclipsing",
  39296. height: math.unit(3e8, "feet")
  39297. },
  39298. {
  39299. name: "Gas Giant Gulper",
  39300. height: math.unit(3e9, "feet")
  39301. },
  39302. {
  39303. name: "Sol-Swallowing",
  39304. height: math.unit(1e11, "feet")
  39305. },
  39306. {
  39307. name: "System Swallower",
  39308. height: math.unit(3e14, "feet")
  39309. },
  39310. {
  39311. name: "Galaxy Gulper",
  39312. height: math.unit(10, "galaxies")
  39313. },
  39314. {
  39315. name: "Light Universal",
  39316. height: math.unit(5, "universes")
  39317. },
  39318. {
  39319. name: "Universe Palm",
  39320. height: math.unit(20, "universes")
  39321. },
  39322. {
  39323. name: "Light Multiversal",
  39324. height: math.unit(5, "multiverses")
  39325. },
  39326. {
  39327. name: "Multiverse Palm",
  39328. height: math.unit(20, "multiverses")
  39329. },
  39330. {
  39331. name: "Inferno Incarnate",
  39332. height: math.unit(1e7, "multiverses")
  39333. },
  39334. ]
  39335. ))
  39336. characterMakers.push(() => makeCharacter(
  39337. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39338. {
  39339. front: {
  39340. height: math.unit(8, "feet"),
  39341. weight: math.unit(1200, "lb"),
  39342. name: "Front",
  39343. image: {
  39344. source: "./media/characters/malithee/front.svg",
  39345. extra: 1675/1640,
  39346. bottom: 162/1837
  39347. }
  39348. },
  39349. },
  39350. [
  39351. {
  39352. name: "Mortal Interaction",
  39353. height: math.unit(8, "feet"),
  39354. default: true
  39355. },
  39356. {
  39357. name: "Large",
  39358. height: math.unit(24, "feet")
  39359. },
  39360. {
  39361. name: "Kaiju",
  39362. height: math.unit(240, "feet")
  39363. },
  39364. {
  39365. name: "Megamacro",
  39366. height: math.unit(8000, "feet")
  39367. },
  39368. {
  39369. name: "Continent Cracker",
  39370. height: math.unit(24e6, "feet")
  39371. },
  39372. {
  39373. name: "Earth-Eclipsing",
  39374. height: math.unit(2.4e8, "feet")
  39375. },
  39376. {
  39377. name: "Sol-Swallowing",
  39378. height: math.unit(8e10, "feet")
  39379. },
  39380. {
  39381. name: "Galaxy Gulper",
  39382. height: math.unit(8, "galaxies")
  39383. },
  39384. {
  39385. name: "Light Universal",
  39386. height: math.unit(4, "universes")
  39387. },
  39388. {
  39389. name: "Universe Atoms",
  39390. height: math.unit(1.829e9, "universes")
  39391. },
  39392. {
  39393. name: "Light Multiversal",
  39394. height: math.unit(4, "multiverses")
  39395. },
  39396. {
  39397. name: "Multiverse Atoms",
  39398. height: math.unit(1.829e9, "multiverses")
  39399. },
  39400. {
  39401. name: "Nigh-Omnipresence",
  39402. height: math.unit(8e261, "multiverses")
  39403. },
  39404. ]
  39405. ))
  39406. characterMakers.push(() => makeCharacter(
  39407. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39408. {
  39409. front: {
  39410. height: math.unit(10, "feet"),
  39411. weight: math.unit(1500, "lb"),
  39412. name: "Front",
  39413. image: {
  39414. source: "./media/characters/miles-thestia/front.svg",
  39415. extra: 1812/1727,
  39416. bottom: 86/1898
  39417. }
  39418. },
  39419. back: {
  39420. height: math.unit(10, "feet"),
  39421. weight: math.unit(1500, "lb"),
  39422. name: "Back",
  39423. image: {
  39424. source: "./media/characters/miles-thestia/back.svg",
  39425. extra: 1799/1690,
  39426. bottom: 47/1846
  39427. }
  39428. },
  39429. frontNsfw: {
  39430. height: math.unit(10, "feet"),
  39431. weight: math.unit(1500, "lb"),
  39432. name: "Front (NSFW)",
  39433. image: {
  39434. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39435. extra: 1812/1727,
  39436. bottom: 86/1898
  39437. }
  39438. },
  39439. },
  39440. [
  39441. {
  39442. name: "Mini-Macro",
  39443. height: math.unit(10, "feet"),
  39444. default: true
  39445. },
  39446. ]
  39447. ))
  39448. characterMakers.push(() => makeCharacter(
  39449. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39450. {
  39451. front: {
  39452. height: math.unit(25, "feet"),
  39453. name: "Front",
  39454. image: {
  39455. source: "./media/characters/titan-s-wulf/front.svg",
  39456. extra: 1560/1484,
  39457. bottom: 76/1636
  39458. }
  39459. },
  39460. },
  39461. [
  39462. {
  39463. name: "Smallest",
  39464. height: math.unit(25, "feet"),
  39465. default: true
  39466. },
  39467. {
  39468. name: "Normal",
  39469. height: math.unit(200, "feet")
  39470. },
  39471. {
  39472. name: "Macro",
  39473. height: math.unit(200000, "feet")
  39474. },
  39475. {
  39476. name: "Multiversal Original",
  39477. height: math.unit(10000, "multiverses")
  39478. },
  39479. ]
  39480. ))
  39481. characterMakers.push(() => makeCharacter(
  39482. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39483. {
  39484. front: {
  39485. height: math.unit(8, "feet"),
  39486. weight: math.unit(553, "lb"),
  39487. name: "Front",
  39488. image: {
  39489. source: "./media/characters/tawendeh/front.svg",
  39490. extra: 2365/2268,
  39491. bottom: 83/2448
  39492. }
  39493. },
  39494. frontClothed: {
  39495. height: math.unit(8, "feet"),
  39496. weight: math.unit(553, "lb"),
  39497. name: "Front (Clothed)",
  39498. image: {
  39499. source: "./media/characters/tawendeh/front-clothed.svg",
  39500. extra: 2365/2268,
  39501. bottom: 83/2448
  39502. }
  39503. },
  39504. back: {
  39505. height: math.unit(8, "feet"),
  39506. weight: math.unit(553, "lb"),
  39507. name: "Back",
  39508. image: {
  39509. source: "./media/characters/tawendeh/back.svg",
  39510. extra: 2397/2294,
  39511. bottom: 42/2439
  39512. }
  39513. },
  39514. },
  39515. [
  39516. {
  39517. name: "Mortal Interaction",
  39518. height: math.unit(8, "feet"),
  39519. default: true
  39520. },
  39521. {
  39522. name: "Giant",
  39523. height: math.unit(80, "feet")
  39524. },
  39525. {
  39526. name: "Macro",
  39527. height: math.unit(800, "feet")
  39528. },
  39529. {
  39530. name: "Megamacro",
  39531. height: math.unit(8000, "feet")
  39532. },
  39533. {
  39534. name: "City-Crushing",
  39535. height: math.unit(24000, "feet")
  39536. },
  39537. {
  39538. name: "Mountain-Mashing",
  39539. height: math.unit(80000, "feet")
  39540. },
  39541. {
  39542. name: "Nation Nemesis",
  39543. height: math.unit(8e6, "feet")
  39544. },
  39545. {
  39546. name: "Continent Cracker",
  39547. height: math.unit(24e6, "feet")
  39548. },
  39549. {
  39550. name: "Earth-Eclipsing",
  39551. height: math.unit(2.4e8, "feet")
  39552. },
  39553. {
  39554. name: "Gas Giant Gulper",
  39555. height: math.unit(2.4e9, "feet")
  39556. },
  39557. {
  39558. name: "Sol-Swallowing",
  39559. height: math.unit(8e10, "feet")
  39560. },
  39561. {
  39562. name: "Galaxy Gulper",
  39563. height: math.unit(8, "galaxies")
  39564. },
  39565. {
  39566. name: "Cosmos Churner",
  39567. height: math.unit(8, "universes")
  39568. },
  39569. {
  39570. name: "Omnipotent Otter",
  39571. height: math.unit(80, "universes")
  39572. },
  39573. ]
  39574. ))
  39575. characterMakers.push(() => makeCharacter(
  39576. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39577. {
  39578. front: {
  39579. height: math.unit(2.6, "meters"),
  39580. weight: math.unit(900, "kg"),
  39581. name: "Front",
  39582. image: {
  39583. source: "./media/characters/neesha/front.svg",
  39584. extra: 1803/1653,
  39585. bottom: 128/1931
  39586. }
  39587. },
  39588. },
  39589. [
  39590. {
  39591. name: "Normal",
  39592. height: math.unit(2.6, "meters"),
  39593. default: true
  39594. },
  39595. {
  39596. name: "Macro",
  39597. height: math.unit(50, "meters")
  39598. },
  39599. ]
  39600. ))
  39601. characterMakers.push(() => makeCharacter(
  39602. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39603. {
  39604. front: {
  39605. height: math.unit(5, "feet"),
  39606. weight: math.unit(185, "lb"),
  39607. name: "Front",
  39608. image: {
  39609. source: "./media/characters/kyera/front.svg",
  39610. extra: 1875/1790,
  39611. bottom: 96/1971
  39612. }
  39613. },
  39614. },
  39615. [
  39616. {
  39617. name: "Normal",
  39618. height: math.unit(5, "feet"),
  39619. default: true
  39620. },
  39621. ]
  39622. ))
  39623. characterMakers.push(() => makeCharacter(
  39624. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39625. {
  39626. front: {
  39627. height: math.unit(7 + 6/12, "feet"),
  39628. weight: math.unit(540, "lb"),
  39629. name: "Front",
  39630. image: {
  39631. source: "./media/characters/yuko/front.svg",
  39632. extra: 1282/1222,
  39633. bottom: 101/1383
  39634. }
  39635. },
  39636. frontClothed: {
  39637. height: math.unit(7 + 6/12, "feet"),
  39638. weight: math.unit(540, "lb"),
  39639. name: "Front (Clothed)",
  39640. image: {
  39641. source: "./media/characters/yuko/front-clothed.svg",
  39642. extra: 1282/1222,
  39643. bottom: 101/1383
  39644. }
  39645. },
  39646. },
  39647. [
  39648. {
  39649. name: "Normal",
  39650. height: math.unit(7 + 6/12, "feet"),
  39651. default: true
  39652. },
  39653. {
  39654. name: "Macro",
  39655. height: math.unit(26 + 9/12, "feet")
  39656. },
  39657. {
  39658. name: "Megamacro",
  39659. height: math.unit(300, "feet")
  39660. },
  39661. {
  39662. name: "Gigamacro",
  39663. height: math.unit(5000, "feet")
  39664. },
  39665. {
  39666. name: "Planetary",
  39667. height: math.unit(10000, "miles")
  39668. },
  39669. ]
  39670. ))
  39671. characterMakers.push(() => makeCharacter(
  39672. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39673. {
  39674. front: {
  39675. height: math.unit(8 + 2/12, "feet"),
  39676. weight: math.unit(600, "lb"),
  39677. name: "Front",
  39678. image: {
  39679. source: "./media/characters/deam-nitrel/front.svg",
  39680. extra: 1308/1234,
  39681. bottom: 125/1433
  39682. }
  39683. },
  39684. },
  39685. [
  39686. {
  39687. name: "Normal",
  39688. height: math.unit(8 + 2/12, "feet"),
  39689. default: true
  39690. },
  39691. ]
  39692. ))
  39693. characterMakers.push(() => makeCharacter(
  39694. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39695. {
  39696. front: {
  39697. height: math.unit(6.1, "feet"),
  39698. weight: math.unit(180, "lb"),
  39699. name: "Front",
  39700. image: {
  39701. source: "./media/characters/skyress/front.svg",
  39702. extra: 1045/915,
  39703. bottom: 28/1073
  39704. }
  39705. },
  39706. maw: {
  39707. height: math.unit(1, "feet"),
  39708. name: "Maw",
  39709. image: {
  39710. source: "./media/characters/skyress/maw.svg"
  39711. }
  39712. },
  39713. },
  39714. [
  39715. {
  39716. name: "Normal",
  39717. height: math.unit(6.1, "feet"),
  39718. default: true
  39719. },
  39720. {
  39721. name: "Macro",
  39722. height: math.unit(200, "feet")
  39723. },
  39724. ]
  39725. ))
  39726. characterMakers.push(() => makeCharacter(
  39727. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39728. {
  39729. front: {
  39730. height: math.unit(4 + 2/12, "feet"),
  39731. weight: math.unit(40, "kg"),
  39732. name: "Front",
  39733. image: {
  39734. source: "./media/characters/amethyst-jones/front.svg",
  39735. extra: 1220/1150,
  39736. bottom: 101/1321
  39737. }
  39738. },
  39739. },
  39740. [
  39741. {
  39742. name: "Normal",
  39743. height: math.unit(4 + 2/12, "feet"),
  39744. default: true
  39745. },
  39746. ]
  39747. ))
  39748. characterMakers.push(() => makeCharacter(
  39749. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39750. {
  39751. front: {
  39752. height: math.unit(1.7, "m"),
  39753. weight: math.unit(135, "lb"),
  39754. name: "Front",
  39755. image: {
  39756. source: "./media/characters/jade/front.svg",
  39757. extra: 1818/1767,
  39758. bottom: 32/1850
  39759. }
  39760. },
  39761. back: {
  39762. height: math.unit(1.7, "m"),
  39763. weight: math.unit(135, "lb"),
  39764. name: "Back",
  39765. image: {
  39766. source: "./media/characters/jade/back.svg",
  39767. extra: 1869/1809,
  39768. bottom: 35/1904
  39769. }
  39770. },
  39771. hand: {
  39772. height: math.unit(0.24, "m"),
  39773. name: "Hand",
  39774. image: {
  39775. source: "./media/characters/jade/hand.svg"
  39776. }
  39777. },
  39778. foot: {
  39779. height: math.unit(0.263, "m"),
  39780. name: "Foot",
  39781. image: {
  39782. source: "./media/characters/jade/foot.svg"
  39783. }
  39784. },
  39785. dick: {
  39786. height: math.unit(0.47, "m"),
  39787. name: "Dick",
  39788. image: {
  39789. source: "./media/characters/jade/dick.svg"
  39790. }
  39791. },
  39792. },
  39793. [
  39794. {
  39795. name: "Micro",
  39796. height: math.unit(22, "cm")
  39797. },
  39798. {
  39799. name: "Normal",
  39800. height: math.unit(1.7, "m"),
  39801. default: true
  39802. },
  39803. {
  39804. name: "Macro",
  39805. height: math.unit(152, "m")
  39806. },
  39807. ]
  39808. ))
  39809. characterMakers.push(() => makeCharacter(
  39810. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39811. {
  39812. front: {
  39813. height: math.unit(100, "miles"),
  39814. weight: math.unit(20000, "tons"),
  39815. name: "Front",
  39816. image: {
  39817. source: "./media/characters/cookie/front.svg",
  39818. extra: 1125/1070,
  39819. bottom: 30/1155
  39820. }
  39821. },
  39822. },
  39823. [
  39824. {
  39825. name: "Big",
  39826. height: math.unit(50, "feet")
  39827. },
  39828. {
  39829. name: "Macro",
  39830. height: math.unit(100, "miles"),
  39831. default: true
  39832. },
  39833. {
  39834. name: "Megamacro",
  39835. height: math.unit(90000, "miles")
  39836. },
  39837. ]
  39838. ))
  39839. characterMakers.push(() => makeCharacter(
  39840. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39841. {
  39842. front: {
  39843. height: math.unit(6, "feet"),
  39844. weight: math.unit(145, "lb"),
  39845. name: "Front",
  39846. image: {
  39847. source: "./media/characters/farzian/front.svg",
  39848. extra: 1902/1693,
  39849. bottom: 108/2010
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Macro",
  39856. height: math.unit(500, "feet"),
  39857. default: true
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39863. {
  39864. front: {
  39865. height: math.unit(3 + 6/12, "feet"),
  39866. weight: math.unit(50, "lb"),
  39867. name: "Front",
  39868. image: {
  39869. source: "./media/characters/kimberly-tilson/front.svg",
  39870. extra: 1400/1322,
  39871. bottom: 36/1436
  39872. }
  39873. },
  39874. back: {
  39875. height: math.unit(3 + 6/12, "feet"),
  39876. weight: math.unit(50, "lb"),
  39877. name: "Back",
  39878. image: {
  39879. source: "./media/characters/kimberly-tilson/back.svg",
  39880. extra: 1370/1307,
  39881. bottom: 20/1390
  39882. }
  39883. },
  39884. },
  39885. [
  39886. {
  39887. name: "Normal",
  39888. height: math.unit(3 + 6/12, "feet"),
  39889. default: true
  39890. },
  39891. ]
  39892. ))
  39893. characterMakers.push(() => makeCharacter(
  39894. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39895. {
  39896. front: {
  39897. height: math.unit(1148, "feet"),
  39898. weight: math.unit(34057, "lb"),
  39899. name: "Front",
  39900. image: {
  39901. source: "./media/characters/harthos/front.svg",
  39902. extra: 1391/1339,
  39903. bottom: 13/1404
  39904. }
  39905. },
  39906. },
  39907. [
  39908. {
  39909. name: "Macro",
  39910. height: math.unit(1148, "feet"),
  39911. default: true
  39912. },
  39913. ]
  39914. ))
  39915. characterMakers.push(() => makeCharacter(
  39916. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39917. {
  39918. front: {
  39919. height: math.unit(15, "feet"),
  39920. name: "Front",
  39921. image: {
  39922. source: "./media/characters/hypatia/front.svg",
  39923. extra: 1653/1591,
  39924. bottom: 79/1732
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Normal",
  39931. height: math.unit(15, "feet")
  39932. },
  39933. {
  39934. name: "Small",
  39935. height: math.unit(300, "feet")
  39936. },
  39937. {
  39938. name: "Macro",
  39939. height: math.unit(2500, "feet"),
  39940. default: true
  39941. },
  39942. {
  39943. name: "Mega Macro",
  39944. height: math.unit(1500, "miles")
  39945. },
  39946. {
  39947. name: "Giga Macro",
  39948. height: math.unit(1.5e6, "miles")
  39949. },
  39950. ]
  39951. ))
  39952. characterMakers.push(() => makeCharacter(
  39953. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39954. {
  39955. front: {
  39956. height: math.unit(6, "feet"),
  39957. weight: math.unit(200, "lb"),
  39958. name: "Front",
  39959. image: {
  39960. source: "./media/characters/wulver/front.svg",
  39961. extra: 1724/1632,
  39962. bottom: 130/1854
  39963. }
  39964. },
  39965. frontNsfw: {
  39966. height: math.unit(6, "feet"),
  39967. weight: math.unit(200, "lb"),
  39968. name: "Front (NSFW)",
  39969. image: {
  39970. source: "./media/characters/wulver/front-nsfw.svg",
  39971. extra: 1724/1632,
  39972. bottom: 130/1854
  39973. }
  39974. },
  39975. },
  39976. [
  39977. {
  39978. name: "Human-Sized",
  39979. height: math.unit(6, "feet")
  39980. },
  39981. {
  39982. name: "Normal",
  39983. height: math.unit(4, "meters"),
  39984. default: true
  39985. },
  39986. {
  39987. name: "Large",
  39988. height: math.unit(6, "m")
  39989. },
  39990. ]
  39991. ))
  39992. characterMakers.push(() => makeCharacter(
  39993. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39994. {
  39995. front: {
  39996. height: math.unit(7, "feet"),
  39997. name: "Front",
  39998. image: {
  39999. source: "./media/characters/maru/front.svg",
  40000. extra: 1595/1570,
  40001. bottom: 0/1595
  40002. }
  40003. },
  40004. },
  40005. [
  40006. {
  40007. name: "Normal",
  40008. height: math.unit(7, "feet"),
  40009. default: true
  40010. },
  40011. {
  40012. name: "Macro",
  40013. height: math.unit(700, "feet")
  40014. },
  40015. {
  40016. name: "Mega Macro",
  40017. height: math.unit(25, "miles")
  40018. },
  40019. ]
  40020. ))
  40021. characterMakers.push(() => makeCharacter(
  40022. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40023. {
  40024. front: {
  40025. height: math.unit(6, "feet"),
  40026. weight: math.unit(170, "lb"),
  40027. name: "Front",
  40028. image: {
  40029. source: "./media/characters/xenon/front.svg",
  40030. extra: 1376/1305,
  40031. bottom: 56/1432
  40032. }
  40033. },
  40034. back: {
  40035. height: math.unit(6, "feet"),
  40036. weight: math.unit(170, "lb"),
  40037. name: "Back",
  40038. image: {
  40039. source: "./media/characters/xenon/back.svg",
  40040. extra: 1328/1259,
  40041. bottom: 95/1423
  40042. }
  40043. },
  40044. maw: {
  40045. height: math.unit(0.52, "feet"),
  40046. name: "Maw",
  40047. image: {
  40048. source: "./media/characters/xenon/maw.svg"
  40049. }
  40050. },
  40051. hand: {
  40052. height: math.unit(0.82, "feet"),
  40053. name: "Hand",
  40054. image: {
  40055. source: "./media/characters/xenon/hand.svg"
  40056. }
  40057. },
  40058. foot: {
  40059. height: math.unit(1.13, "feet"),
  40060. name: "Foot",
  40061. image: {
  40062. source: "./media/characters/xenon/foot.svg"
  40063. }
  40064. },
  40065. },
  40066. [
  40067. {
  40068. name: "Micro",
  40069. height: math.unit(0.8, "inches")
  40070. },
  40071. {
  40072. name: "Normal",
  40073. height: math.unit(6, "feet")
  40074. },
  40075. {
  40076. name: "Macro",
  40077. height: math.unit(50, "feet"),
  40078. default: true
  40079. },
  40080. {
  40081. name: "Macro+",
  40082. height: math.unit(250, "feet")
  40083. },
  40084. {
  40085. name: "Megamacro",
  40086. height: math.unit(1500, "feet")
  40087. },
  40088. ]
  40089. ))
  40090. characterMakers.push(() => makeCharacter(
  40091. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40092. {
  40093. front: {
  40094. height: math.unit(7 + 5/12, "feet"),
  40095. name: "Front",
  40096. image: {
  40097. source: "./media/characters/zane/front.svg",
  40098. extra: 1260/1203,
  40099. bottom: 94/1354
  40100. }
  40101. },
  40102. back: {
  40103. height: math.unit(5.05, "feet"),
  40104. name: "Back",
  40105. image: {
  40106. source: "./media/characters/zane/back.svg",
  40107. extra: 893/829,
  40108. bottom: 30/923
  40109. }
  40110. },
  40111. werewolf: {
  40112. height: math.unit(11, "feet"),
  40113. name: "Werewolf",
  40114. image: {
  40115. source: "./media/characters/zane/werewolf.svg",
  40116. extra: 1383/1323,
  40117. bottom: 89/1472
  40118. }
  40119. },
  40120. foot: {
  40121. height: math.unit(1.46, "feet"),
  40122. name: "Foot",
  40123. image: {
  40124. source: "./media/characters/zane/foot.svg"
  40125. }
  40126. },
  40127. footFront: {
  40128. height: math.unit(0.784, "feet"),
  40129. name: "Foot (Front)",
  40130. image: {
  40131. source: "./media/characters/zane/foot-front.svg"
  40132. }
  40133. },
  40134. dick: {
  40135. height: math.unit(1.95, "feet"),
  40136. name: "Dick",
  40137. image: {
  40138. source: "./media/characters/zane/dick.svg"
  40139. }
  40140. },
  40141. dickWerewolf: {
  40142. height: math.unit(3.77, "feet"),
  40143. name: "Dick (Werewolf)",
  40144. image: {
  40145. source: "./media/characters/zane/dick.svg"
  40146. }
  40147. },
  40148. },
  40149. [
  40150. {
  40151. name: "Normal",
  40152. height: math.unit(7 + 5/12, "feet"),
  40153. default: true
  40154. },
  40155. ]
  40156. ))
  40157. characterMakers.push(() => makeCharacter(
  40158. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40159. {
  40160. front: {
  40161. height: math.unit(6 + 2/12, "feet"),
  40162. weight: math.unit(284, "lb"),
  40163. name: "Front",
  40164. image: {
  40165. source: "./media/characters/benni-desparque/front.svg",
  40166. extra: 1353/1126,
  40167. bottom: 69/1422
  40168. }
  40169. },
  40170. },
  40171. [
  40172. {
  40173. name: "Civilian",
  40174. height: math.unit(6 + 2/12, "feet")
  40175. },
  40176. {
  40177. name: "Normal",
  40178. height: math.unit(98, "feet"),
  40179. default: true
  40180. },
  40181. {
  40182. name: "Kaiju Fighter",
  40183. height: math.unit(268, "feet")
  40184. },
  40185. ]
  40186. ))
  40187. characterMakers.push(() => makeCharacter(
  40188. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40189. {
  40190. front: {
  40191. height: math.unit(5, "feet"),
  40192. weight: math.unit(105, "lb"),
  40193. name: "Front",
  40194. image: {
  40195. source: "./media/characters/maxine/front.svg",
  40196. extra: 1386/1250,
  40197. bottom: 71/1457
  40198. }
  40199. },
  40200. },
  40201. [
  40202. {
  40203. name: "Normal",
  40204. height: math.unit(5, "feet"),
  40205. default: true
  40206. },
  40207. ]
  40208. ))
  40209. characterMakers.push(() => makeCharacter(
  40210. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40211. {
  40212. front: {
  40213. height: math.unit(11 + 7/12, "feet"),
  40214. weight: math.unit(9576, "lb"),
  40215. name: "Front",
  40216. image: {
  40217. source: "./media/characters/scaly/front.svg",
  40218. extra: 888/867,
  40219. bottom: 36/924
  40220. }
  40221. },
  40222. },
  40223. [
  40224. {
  40225. name: "Normal",
  40226. height: math.unit(11 + 7/12, "feet"),
  40227. default: true
  40228. },
  40229. ]
  40230. ))
  40231. characterMakers.push(() => makeCharacter(
  40232. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40233. {
  40234. front: {
  40235. height: math.unit(6 + 3/12, "feet"),
  40236. name: "Front",
  40237. image: {
  40238. source: "./media/characters/saelria/front.svg",
  40239. extra: 1243/1138,
  40240. bottom: 46/1289
  40241. }
  40242. },
  40243. },
  40244. [
  40245. {
  40246. name: "Micro",
  40247. height: math.unit(6, "inches"),
  40248. },
  40249. {
  40250. name: "Normal",
  40251. height: math.unit(6 + 3/12, "feet"),
  40252. default: true
  40253. },
  40254. {
  40255. name: "Macro",
  40256. height: math.unit(25, "feet")
  40257. },
  40258. ]
  40259. ))
  40260. characterMakers.push(() => makeCharacter(
  40261. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40262. {
  40263. front: {
  40264. height: math.unit(80, "meters"),
  40265. weight: math.unit(7000, "tonnes"),
  40266. name: "Front",
  40267. image: {
  40268. source: "./media/characters/tef/front.svg",
  40269. extra: 2036/1991,
  40270. bottom: 54/2090
  40271. }
  40272. },
  40273. back: {
  40274. height: math.unit(80, "meters"),
  40275. weight: math.unit(7000, "tonnes"),
  40276. name: "Back",
  40277. image: {
  40278. source: "./media/characters/tef/back.svg",
  40279. extra: 2036/1991,
  40280. bottom: 54/2090
  40281. }
  40282. },
  40283. },
  40284. [
  40285. {
  40286. name: "Macro",
  40287. height: math.unit(80, "meters"),
  40288. default: true
  40289. },
  40290. ]
  40291. ))
  40292. characterMakers.push(() => makeCharacter(
  40293. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40294. {
  40295. front: {
  40296. height: math.unit(13, "feet"),
  40297. weight: math.unit(6, "tons"),
  40298. name: "Front",
  40299. image: {
  40300. source: "./media/characters/rover/front.svg",
  40301. extra: 1233/1156,
  40302. bottom: 50/1283
  40303. }
  40304. },
  40305. back: {
  40306. height: math.unit(13, "feet"),
  40307. weight: math.unit(6, "tons"),
  40308. name: "Back",
  40309. image: {
  40310. source: "./media/characters/rover/back.svg",
  40311. extra: 1327/1258,
  40312. bottom: 39/1366
  40313. }
  40314. },
  40315. },
  40316. [
  40317. {
  40318. name: "Normal",
  40319. height: math.unit(13, "feet"),
  40320. default: true
  40321. },
  40322. {
  40323. name: "Macro",
  40324. height: math.unit(1300, "feet")
  40325. },
  40326. {
  40327. name: "Megamacro",
  40328. height: math.unit(1300, "miles")
  40329. },
  40330. {
  40331. name: "Gigamacro",
  40332. height: math.unit(1300000, "miles")
  40333. },
  40334. ]
  40335. ))
  40336. characterMakers.push(() => makeCharacter(
  40337. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40338. {
  40339. front: {
  40340. height: math.unit(6, "feet"),
  40341. weight: math.unit(150, "lb"),
  40342. name: "Front",
  40343. image: {
  40344. source: "./media/characters/ariz/front.svg",
  40345. extra: 1401/1346,
  40346. bottom: 5/1406
  40347. }
  40348. },
  40349. },
  40350. [
  40351. {
  40352. name: "Normal",
  40353. height: math.unit(10, "feet"),
  40354. default: true
  40355. },
  40356. ]
  40357. ))
  40358. characterMakers.push(() => makeCharacter(
  40359. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40360. {
  40361. front: {
  40362. height: math.unit(6, "feet"),
  40363. weight: math.unit(140, "lb"),
  40364. name: "Front",
  40365. image: {
  40366. source: "./media/characters/sigrun/front.svg",
  40367. extra: 1418/1359,
  40368. bottom: 27/1445
  40369. }
  40370. },
  40371. },
  40372. [
  40373. {
  40374. name: "Macro",
  40375. height: math.unit(35, "feet"),
  40376. default: true
  40377. },
  40378. ]
  40379. ))
  40380. characterMakers.push(() => makeCharacter(
  40381. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40382. {
  40383. front: {
  40384. height: math.unit(6, "feet"),
  40385. weight: math.unit(150, "lb"),
  40386. name: "Front",
  40387. image: {
  40388. source: "./media/characters/numin/front.svg",
  40389. extra: 1433/1388,
  40390. bottom: 12/1445
  40391. }
  40392. },
  40393. },
  40394. [
  40395. {
  40396. name: "Macro",
  40397. height: math.unit(21.5, "km"),
  40398. default: true
  40399. },
  40400. ]
  40401. ))
  40402. characterMakers.push(() => makeCharacter(
  40403. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40404. {
  40405. front: {
  40406. height: math.unit(6, "feet"),
  40407. weight: math.unit(463, "lb"),
  40408. name: "Front",
  40409. image: {
  40410. source: "./media/characters/melwa/front.svg",
  40411. extra: 1307/1248,
  40412. bottom: 93/1400
  40413. }
  40414. },
  40415. },
  40416. [
  40417. {
  40418. name: "Macro",
  40419. height: math.unit(50, "meters"),
  40420. default: true
  40421. },
  40422. ]
  40423. ))
  40424. characterMakers.push(() => makeCharacter(
  40425. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40426. {
  40427. front: {
  40428. height: math.unit(325, "feet"),
  40429. name: "Front",
  40430. image: {
  40431. source: "./media/characters/zorkaiju/front.svg",
  40432. extra: 1955/1814,
  40433. bottom: 40/1995
  40434. }
  40435. },
  40436. frontExtended: {
  40437. height: math.unit(325, "feet"),
  40438. name: "Front (Extended)",
  40439. image: {
  40440. source: "./media/characters/zorkaiju/front-extended.svg",
  40441. extra: 1955/1814,
  40442. bottom: 40/1995
  40443. }
  40444. },
  40445. side: {
  40446. height: math.unit(325, "feet"),
  40447. name: "Side",
  40448. image: {
  40449. source: "./media/characters/zorkaiju/side.svg",
  40450. extra: 1495/1396,
  40451. bottom: 17/1512
  40452. }
  40453. },
  40454. sideExtended: {
  40455. height: math.unit(325, "feet"),
  40456. name: "Side (Extended)",
  40457. image: {
  40458. source: "./media/characters/zorkaiju/side-extended.svg",
  40459. extra: 1495/1396,
  40460. bottom: 17/1512
  40461. }
  40462. },
  40463. back: {
  40464. height: math.unit(325, "feet"),
  40465. name: "Back",
  40466. image: {
  40467. source: "./media/characters/zorkaiju/back.svg",
  40468. extra: 1959/1821,
  40469. bottom: 31/1990
  40470. }
  40471. },
  40472. backExtended: {
  40473. height: math.unit(325, "feet"),
  40474. name: "Back (Extended)",
  40475. image: {
  40476. source: "./media/characters/zorkaiju/back-extended.svg",
  40477. extra: 1959/1821,
  40478. bottom: 31/1990
  40479. }
  40480. },
  40481. hand: {
  40482. height: math.unit(58.4, "feet"),
  40483. name: "Hand",
  40484. image: {
  40485. source: "./media/characters/zorkaiju/hand.svg"
  40486. }
  40487. },
  40488. handExtended: {
  40489. height: math.unit(61.4, "feet"),
  40490. name: "Hand (Extended)",
  40491. image: {
  40492. source: "./media/characters/zorkaiju/hand-extended.svg"
  40493. }
  40494. },
  40495. foot: {
  40496. height: math.unit(95, "feet"),
  40497. name: "Foot",
  40498. image: {
  40499. source: "./media/characters/zorkaiju/foot.svg"
  40500. }
  40501. },
  40502. leftArm: {
  40503. height: math.unit(59, "feet"),
  40504. name: "Left Arm",
  40505. image: {
  40506. source: "./media/characters/zorkaiju/left-arm.svg"
  40507. }
  40508. },
  40509. rightArm: {
  40510. height: math.unit(59, "feet"),
  40511. name: "Right Arm",
  40512. image: {
  40513. source: "./media/characters/zorkaiju/right-arm.svg"
  40514. }
  40515. },
  40516. tail: {
  40517. height: math.unit(104, "feet"),
  40518. name: "Tail",
  40519. image: {
  40520. source: "./media/characters/zorkaiju/tail.svg"
  40521. }
  40522. },
  40523. tailExtended: {
  40524. height: math.unit(104, "feet"),
  40525. name: "Tail (Extended)",
  40526. image: {
  40527. source: "./media/characters/zorkaiju/tail-extended.svg"
  40528. }
  40529. },
  40530. tailBottom: {
  40531. height: math.unit(104, "feet"),
  40532. name: "Tail Bottom",
  40533. image: {
  40534. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40535. }
  40536. },
  40537. crystal: {
  40538. height: math.unit(27.54, "feet"),
  40539. name: "Crystal",
  40540. image: {
  40541. source: "./media/characters/zorkaiju/crystal.svg"
  40542. }
  40543. },
  40544. },
  40545. [
  40546. {
  40547. name: "Kaiju",
  40548. height: math.unit(325, "feet"),
  40549. default: true
  40550. },
  40551. ]
  40552. ))
  40553. characterMakers.push(() => makeCharacter(
  40554. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40555. {
  40556. front: {
  40557. height: math.unit(6 + 1/12, "feet"),
  40558. weight: math.unit(115, "lb"),
  40559. name: "Front",
  40560. image: {
  40561. source: "./media/characters/bailey-belfry/front.svg",
  40562. extra: 1240/1121,
  40563. bottom: 101/1341
  40564. }
  40565. },
  40566. },
  40567. [
  40568. {
  40569. name: "Normal",
  40570. height: math.unit(6 + 1/12, "feet"),
  40571. default: true
  40572. },
  40573. ]
  40574. ))
  40575. characterMakers.push(() => makeCharacter(
  40576. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40577. {
  40578. side: {
  40579. height: math.unit(4, "meters"),
  40580. weight: math.unit(250, "kg"),
  40581. name: "Side",
  40582. image: {
  40583. source: "./media/characters/blacky/side.svg",
  40584. extra: 1027/919,
  40585. bottom: 43/1070
  40586. }
  40587. },
  40588. maw: {
  40589. height: math.unit(1, "meters"),
  40590. name: "Maw",
  40591. image: {
  40592. source: "./media/characters/blacky/maw.svg"
  40593. }
  40594. },
  40595. paw: {
  40596. height: math.unit(1, "meters"),
  40597. name: "Paw",
  40598. image: {
  40599. source: "./media/characters/blacky/paw.svg"
  40600. }
  40601. },
  40602. },
  40603. [
  40604. {
  40605. name: "Normal",
  40606. height: math.unit(4, "meters"),
  40607. default: true
  40608. },
  40609. ]
  40610. ))
  40611. characterMakers.push(() => makeCharacter(
  40612. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40613. {
  40614. front: {
  40615. height: math.unit(170, "cm"),
  40616. weight: math.unit(66, "kg"),
  40617. name: "Front",
  40618. image: {
  40619. source: "./media/characters/thux-ei/front.svg",
  40620. extra: 1109/1011,
  40621. bottom: 8/1117
  40622. }
  40623. },
  40624. },
  40625. [
  40626. {
  40627. name: "Normal",
  40628. height: math.unit(170, "cm"),
  40629. default: true
  40630. },
  40631. ]
  40632. ))
  40633. characterMakers.push(() => makeCharacter(
  40634. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40635. {
  40636. front: {
  40637. height: math.unit(5, "feet"),
  40638. weight: math.unit(120, "lb"),
  40639. name: "Front",
  40640. image: {
  40641. source: "./media/characters/roxanne-voltaire/front.svg",
  40642. extra: 1901/1779,
  40643. bottom: 53/1954
  40644. }
  40645. },
  40646. },
  40647. [
  40648. {
  40649. name: "Normal",
  40650. height: math.unit(5, "feet"),
  40651. default: true
  40652. },
  40653. {
  40654. name: "Giant",
  40655. height: math.unit(50, "feet")
  40656. },
  40657. {
  40658. name: "Titan",
  40659. height: math.unit(500, "feet")
  40660. },
  40661. {
  40662. name: "Macro",
  40663. height: math.unit(5000, "feet")
  40664. },
  40665. {
  40666. name: "Megamacro",
  40667. height: math.unit(50000, "feet")
  40668. },
  40669. {
  40670. name: "Gigamacro",
  40671. height: math.unit(500000, "feet")
  40672. },
  40673. {
  40674. name: "Teramacro",
  40675. height: math.unit(5e6, "feet")
  40676. },
  40677. ]
  40678. ))
  40679. characterMakers.push(() => makeCharacter(
  40680. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40681. {
  40682. front: {
  40683. height: math.unit(6 + 2/12, "feet"),
  40684. name: "Front",
  40685. image: {
  40686. source: "./media/characters/squeaks/front.svg",
  40687. extra: 1823/1768,
  40688. bottom: 138/1961
  40689. }
  40690. },
  40691. },
  40692. [
  40693. {
  40694. name: "Micro",
  40695. height: math.unit(0.5, "inches")
  40696. },
  40697. {
  40698. name: "Normal",
  40699. height: math.unit(6 + 2/12, "feet"),
  40700. default: true
  40701. },
  40702. {
  40703. name: "Macro",
  40704. height: math.unit(600, "feet")
  40705. },
  40706. ]
  40707. ))
  40708. characterMakers.push(() => makeCharacter(
  40709. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40710. {
  40711. front: {
  40712. height: math.unit(1.72, "meters"),
  40713. name: "Front",
  40714. image: {
  40715. source: "./media/characters/archinger/front.svg",
  40716. extra: 1861/1675,
  40717. bottom: 125/1986
  40718. }
  40719. },
  40720. back: {
  40721. height: math.unit(1.72, "meters"),
  40722. name: "Back",
  40723. image: {
  40724. source: "./media/characters/archinger/back.svg",
  40725. extra: 1844/1701,
  40726. bottom: 104/1948
  40727. }
  40728. },
  40729. cock: {
  40730. height: math.unit(0.59, "feet"),
  40731. name: "Cock",
  40732. image: {
  40733. source: "./media/characters/archinger/cock.svg"
  40734. }
  40735. },
  40736. },
  40737. [
  40738. {
  40739. name: "Normal",
  40740. height: math.unit(1.72, "meters"),
  40741. default: true
  40742. },
  40743. {
  40744. name: "Macro",
  40745. height: math.unit(84, "meters")
  40746. },
  40747. {
  40748. name: "Macro+",
  40749. height: math.unit(112, "meters")
  40750. },
  40751. {
  40752. name: "Macro++",
  40753. height: math.unit(960, "meters")
  40754. },
  40755. {
  40756. name: "Macro+++",
  40757. height: math.unit(4, "km")
  40758. },
  40759. {
  40760. name: "Macro++++",
  40761. height: math.unit(48, "km")
  40762. },
  40763. {
  40764. name: "Macro+++++",
  40765. height: math.unit(4500, "km")
  40766. },
  40767. ]
  40768. ))
  40769. characterMakers.push(() => makeCharacter(
  40770. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40771. {
  40772. front: {
  40773. height: math.unit(5 + 5/12, "feet"),
  40774. name: "Front",
  40775. image: {
  40776. source: "./media/characters/alsnapz/front.svg",
  40777. extra: 1157/1065,
  40778. bottom: 42/1199
  40779. }
  40780. },
  40781. },
  40782. [
  40783. {
  40784. name: "Normal",
  40785. height: math.unit(5 + 5/12, "feet"),
  40786. default: true
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40792. {
  40793. side: {
  40794. height: math.unit(3.2, "earths"),
  40795. name: "Side",
  40796. image: {
  40797. source: "./media/characters/mag/side.svg",
  40798. extra: 1331/1008,
  40799. bottom: 52/1383
  40800. }
  40801. },
  40802. wing: {
  40803. height: math.unit(1.94, "earths"),
  40804. name: "Wing",
  40805. image: {
  40806. source: "./media/characters/mag/wing.svg"
  40807. }
  40808. },
  40809. dick: {
  40810. height: math.unit(1.8, "earths"),
  40811. name: "Dick",
  40812. image: {
  40813. source: "./media/characters/mag/dick.svg"
  40814. }
  40815. },
  40816. ass: {
  40817. height: math.unit(1.33, "earths"),
  40818. name: "Ass",
  40819. image: {
  40820. source: "./media/characters/mag/ass.svg"
  40821. }
  40822. },
  40823. head: {
  40824. height: math.unit(1.1, "earths"),
  40825. name: "Head",
  40826. image: {
  40827. source: "./media/characters/mag/head.svg"
  40828. }
  40829. },
  40830. maw: {
  40831. height: math.unit(1.62, "earths"),
  40832. name: "Maw",
  40833. image: {
  40834. source: "./media/characters/mag/maw.svg"
  40835. }
  40836. },
  40837. },
  40838. [
  40839. {
  40840. name: "Small",
  40841. height: math.unit(162, "feet")
  40842. },
  40843. {
  40844. name: "Normal",
  40845. height: math.unit(3.2, "earths"),
  40846. default: true
  40847. },
  40848. ]
  40849. ))
  40850. characterMakers.push(() => makeCharacter(
  40851. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40852. {
  40853. front: {
  40854. height: math.unit(512, "feet"),
  40855. weight: math.unit(63509, "tonnes"),
  40856. name: "Front",
  40857. image: {
  40858. source: "./media/characters/vorrel-harroc/front.svg",
  40859. extra: 1075/1063,
  40860. bottom: 62/1137
  40861. }
  40862. },
  40863. },
  40864. [
  40865. {
  40866. name: "Normal",
  40867. height: math.unit(10, "feet")
  40868. },
  40869. {
  40870. name: "Macro",
  40871. height: math.unit(512, "feet"),
  40872. default: true
  40873. },
  40874. {
  40875. name: "Megamacro",
  40876. height: math.unit(256, "miles")
  40877. },
  40878. {
  40879. name: "Gigamacro",
  40880. height: math.unit(4096, "miles")
  40881. },
  40882. ]
  40883. ))
  40884. characterMakers.push(() => makeCharacter(
  40885. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40886. {
  40887. side: {
  40888. height: math.unit(50, "feet"),
  40889. name: "Side",
  40890. image: {
  40891. source: "./media/characters/froimar/side.svg",
  40892. extra: 855/638,
  40893. bottom: 99/954
  40894. }
  40895. },
  40896. },
  40897. [
  40898. {
  40899. name: "Macro",
  40900. height: math.unit(50, "feet"),
  40901. default: true
  40902. },
  40903. ]
  40904. ))
  40905. characterMakers.push(() => makeCharacter(
  40906. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40907. {
  40908. front: {
  40909. height: math.unit(210, "miles"),
  40910. name: "Front",
  40911. image: {
  40912. source: "./media/characters/timothy/front.svg",
  40913. extra: 1007/943,
  40914. bottom: 62/1069
  40915. }
  40916. },
  40917. frontSkirt: {
  40918. height: math.unit(210, "miles"),
  40919. name: "Front (Skirt)",
  40920. image: {
  40921. source: "./media/characters/timothy/front-skirt.svg",
  40922. extra: 1007/943,
  40923. bottom: 62/1069
  40924. }
  40925. },
  40926. frontCoat: {
  40927. height: math.unit(210, "miles"),
  40928. name: "Front (Coat)",
  40929. image: {
  40930. source: "./media/characters/timothy/front-coat.svg",
  40931. extra: 1007/943,
  40932. bottom: 62/1069
  40933. }
  40934. },
  40935. },
  40936. [
  40937. {
  40938. name: "Macro",
  40939. height: math.unit(210, "miles"),
  40940. default: true
  40941. },
  40942. {
  40943. name: "Megamacro",
  40944. height: math.unit(210000, "miles")
  40945. },
  40946. ]
  40947. ))
  40948. characterMakers.push(() => makeCharacter(
  40949. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40950. {
  40951. front: {
  40952. height: math.unit(188, "feet"),
  40953. name: "Front",
  40954. image: {
  40955. source: "./media/characters/pyotr/front.svg",
  40956. extra: 1912/1826,
  40957. bottom: 18/1930
  40958. }
  40959. },
  40960. },
  40961. [
  40962. {
  40963. name: "Macro",
  40964. height: math.unit(188, "feet"),
  40965. default: true
  40966. },
  40967. {
  40968. name: "Megamacro",
  40969. height: math.unit(8, "miles")
  40970. },
  40971. ]
  40972. ))
  40973. characterMakers.push(() => makeCharacter(
  40974. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40975. {
  40976. side: {
  40977. height: math.unit(10, "feet"),
  40978. weight: math.unit(4500, "lb"),
  40979. name: "Side",
  40980. image: {
  40981. source: "./media/characters/ackart/side.svg",
  40982. extra: 1776/1668,
  40983. bottom: 116/1892
  40984. }
  40985. },
  40986. },
  40987. [
  40988. {
  40989. name: "Normal",
  40990. height: math.unit(10, "feet"),
  40991. default: true
  40992. },
  40993. ]
  40994. ))
  40995. characterMakers.push(() => makeCharacter(
  40996. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40997. {
  40998. side: {
  40999. height: math.unit(21, "feet"),
  41000. name: "Side",
  41001. image: {
  41002. source: "./media/characters/nolow/side.svg",
  41003. extra: 1484/1434,
  41004. bottom: 85/1569
  41005. }
  41006. },
  41007. sideErect: {
  41008. height: math.unit(21, "feet"),
  41009. name: "Side-erect",
  41010. image: {
  41011. source: "./media/characters/nolow/side-erect.svg",
  41012. extra: 1484/1434,
  41013. bottom: 85/1569
  41014. }
  41015. },
  41016. },
  41017. [
  41018. {
  41019. name: "Regular",
  41020. height: math.unit(12, "feet")
  41021. },
  41022. {
  41023. name: "Big Chee",
  41024. height: math.unit(21, "feet"),
  41025. default: true
  41026. },
  41027. ]
  41028. ))
  41029. characterMakers.push(() => makeCharacter(
  41030. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41031. {
  41032. front: {
  41033. height: math.unit(7, "feet"),
  41034. weight: math.unit(250, "lb"),
  41035. name: "Front",
  41036. image: {
  41037. source: "./media/characters/nines/front.svg",
  41038. extra: 1741/1607,
  41039. bottom: 41/1782
  41040. }
  41041. },
  41042. side: {
  41043. height: math.unit(7, "feet"),
  41044. weight: math.unit(250, "lb"),
  41045. name: "Side",
  41046. image: {
  41047. source: "./media/characters/nines/side.svg",
  41048. extra: 1854/1735,
  41049. bottom: 93/1947
  41050. }
  41051. },
  41052. back: {
  41053. height: math.unit(7, "feet"),
  41054. weight: math.unit(250, "lb"),
  41055. name: "Back",
  41056. image: {
  41057. source: "./media/characters/nines/back.svg",
  41058. extra: 1748/1615,
  41059. bottom: 20/1768
  41060. }
  41061. },
  41062. },
  41063. [
  41064. {
  41065. name: "Megamacro",
  41066. height: math.unit(99, "km"),
  41067. default: true
  41068. },
  41069. ]
  41070. ))
  41071. characterMakers.push(() => makeCharacter(
  41072. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41073. {
  41074. front: {
  41075. height: math.unit(5 + 10/12, "feet"),
  41076. weight: math.unit(210, "lb"),
  41077. name: "Front",
  41078. image: {
  41079. source: "./media/characters/zenith/front.svg",
  41080. extra: 1531/1452,
  41081. bottom: 198/1729
  41082. }
  41083. },
  41084. back: {
  41085. height: math.unit(5 + 10/12, "feet"),
  41086. weight: math.unit(210, "lb"),
  41087. name: "Back",
  41088. image: {
  41089. source: "./media/characters/zenith/back.svg",
  41090. extra: 1571/1487,
  41091. bottom: 75/1646
  41092. }
  41093. },
  41094. },
  41095. [
  41096. {
  41097. name: "Normal",
  41098. height: math.unit(5 + 10/12, "feet"),
  41099. default: true
  41100. }
  41101. ]
  41102. ))
  41103. characterMakers.push(() => makeCharacter(
  41104. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41105. {
  41106. front: {
  41107. height: math.unit(4, "feet"),
  41108. weight: math.unit(60, "lb"),
  41109. name: "Front",
  41110. image: {
  41111. source: "./media/characters/jasper/front.svg",
  41112. extra: 1450/1379,
  41113. bottom: 19/1469
  41114. }
  41115. },
  41116. },
  41117. [
  41118. {
  41119. name: "Normal",
  41120. height: math.unit(4, "feet"),
  41121. default: true
  41122. },
  41123. ]
  41124. ))
  41125. characterMakers.push(() => makeCharacter(
  41126. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41127. {
  41128. front: {
  41129. height: math.unit(6 + 5/12, "feet"),
  41130. weight: math.unit(290, "lb"),
  41131. name: "Front",
  41132. image: {
  41133. source: "./media/characters/tiberius-thyben/front.svg",
  41134. extra: 757/739,
  41135. bottom: 39/796
  41136. }
  41137. },
  41138. },
  41139. [
  41140. {
  41141. name: "Micro",
  41142. height: math.unit(1.5, "inches")
  41143. },
  41144. {
  41145. name: "Normal",
  41146. height: math.unit(6 + 5/12, "feet"),
  41147. default: true
  41148. },
  41149. {
  41150. name: "Macro",
  41151. height: math.unit(300, "feet")
  41152. },
  41153. ]
  41154. ))
  41155. characterMakers.push(() => makeCharacter(
  41156. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41157. {
  41158. front: {
  41159. height: math.unit(5 + 6/12, "feet"),
  41160. weight: math.unit(60, "kg"),
  41161. name: "Front",
  41162. image: {
  41163. source: "./media/characters/sabre/front.svg",
  41164. extra: 738/671,
  41165. bottom: 27/765
  41166. }
  41167. },
  41168. },
  41169. [
  41170. {
  41171. name: "Teeny",
  41172. height: math.unit(2, "inches")
  41173. },
  41174. {
  41175. name: "Smol",
  41176. height: math.unit(8, "inches")
  41177. },
  41178. {
  41179. name: "Normal",
  41180. height: math.unit(5 + 6/12, "feet"),
  41181. default: true
  41182. },
  41183. {
  41184. name: "Mini-Macro",
  41185. height: math.unit(15, "feet")
  41186. },
  41187. {
  41188. name: "Macro",
  41189. height: math.unit(50, "feet")
  41190. },
  41191. ]
  41192. ))
  41193. characterMakers.push(() => makeCharacter(
  41194. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41195. {
  41196. front: {
  41197. height: math.unit(6 + 4/12, "feet"),
  41198. weight: math.unit(170, "lb"),
  41199. name: "Front",
  41200. image: {
  41201. source: "./media/characters/charlie/front.svg",
  41202. extra: 1348/1228,
  41203. bottom: 15/1363
  41204. }
  41205. },
  41206. },
  41207. [
  41208. {
  41209. name: "Macro",
  41210. height: math.unit(1700, "meters"),
  41211. default: true
  41212. },
  41213. {
  41214. name: "MegaMacro",
  41215. height: math.unit(20400, "meters")
  41216. },
  41217. ]
  41218. ))
  41219. characterMakers.push(() => makeCharacter(
  41220. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41221. {
  41222. front: {
  41223. height: math.unit(6 + 3/12, "feet"),
  41224. weight: math.unit(185, "lb"),
  41225. name: "Front",
  41226. image: {
  41227. source: "./media/characters/susan-grant/front.svg",
  41228. extra: 1351/1327,
  41229. bottom: 26/1377
  41230. }
  41231. },
  41232. },
  41233. [
  41234. {
  41235. name: "Normal",
  41236. height: math.unit(6 + 3/12, "feet"),
  41237. default: true
  41238. },
  41239. {
  41240. name: "Macro",
  41241. height: math.unit(225, "feet")
  41242. },
  41243. {
  41244. name: "Macro+",
  41245. height: math.unit(900, "feet")
  41246. },
  41247. {
  41248. name: "MegaMacro",
  41249. height: math.unit(14400, "feet")
  41250. },
  41251. ]
  41252. ))
  41253. characterMakers.push(() => makeCharacter(
  41254. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41255. {
  41256. front: {
  41257. height: math.unit(5 + 4/12, "feet"),
  41258. weight: math.unit(110, "lb"),
  41259. name: "Front",
  41260. image: {
  41261. source: "./media/characters/axel-isanov/front.svg",
  41262. extra: 1096/1065,
  41263. bottom: 13/1109
  41264. }
  41265. },
  41266. },
  41267. [
  41268. {
  41269. name: "Normal",
  41270. height: math.unit(5 + 4/12, "feet"),
  41271. default: true
  41272. },
  41273. ]
  41274. ))
  41275. characterMakers.push(() => makeCharacter(
  41276. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41277. {
  41278. front: {
  41279. height: math.unit(9, "feet"),
  41280. weight: math.unit(467, "lb"),
  41281. name: "Front",
  41282. image: {
  41283. source: "./media/characters/necahual/front.svg",
  41284. extra: 920/873,
  41285. bottom: 26/946
  41286. }
  41287. },
  41288. back: {
  41289. height: math.unit(9, "feet"),
  41290. weight: math.unit(467, "lb"),
  41291. name: "Back",
  41292. image: {
  41293. source: "./media/characters/necahual/back.svg",
  41294. extra: 930/884,
  41295. bottom: 16/946
  41296. }
  41297. },
  41298. frontUnderwear: {
  41299. height: math.unit(9, "feet"),
  41300. weight: math.unit(467, "lb"),
  41301. name: "Front (Underwear)",
  41302. image: {
  41303. source: "./media/characters/necahual/front-underwear.svg",
  41304. extra: 920/873,
  41305. bottom: 26/946
  41306. }
  41307. },
  41308. frontDressed: {
  41309. height: math.unit(9, "feet"),
  41310. weight: math.unit(467, "lb"),
  41311. name: "Front (Dressed)",
  41312. image: {
  41313. source: "./media/characters/necahual/front-dressed.svg",
  41314. extra: 920/873,
  41315. bottom: 26/946
  41316. }
  41317. },
  41318. },
  41319. [
  41320. {
  41321. name: "Comprsesed",
  41322. height: math.unit(9, "feet")
  41323. },
  41324. {
  41325. name: "Natural",
  41326. height: math.unit(15, "feet"),
  41327. default: true
  41328. },
  41329. {
  41330. name: "Boosted",
  41331. height: math.unit(50, "feet")
  41332. },
  41333. {
  41334. name: "Boosted+",
  41335. height: math.unit(150, "feet")
  41336. },
  41337. {
  41338. name: "Max",
  41339. height: math.unit(500, "feet")
  41340. },
  41341. ]
  41342. ))
  41343. characterMakers.push(() => makeCharacter(
  41344. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41345. {
  41346. front: {
  41347. height: math.unit(22 + 1/12, "feet"),
  41348. weight: math.unit(3200, "lb"),
  41349. name: "Front",
  41350. image: {
  41351. source: "./media/characters/theo-acacia/front.svg",
  41352. extra: 1796/1741,
  41353. bottom: 83/1879
  41354. }
  41355. },
  41356. frontUnderwear: {
  41357. height: math.unit(22 + 1/12, "feet"),
  41358. weight: math.unit(3200, "lb"),
  41359. name: "Front (Underwear)",
  41360. image: {
  41361. source: "./media/characters/theo-acacia/front-underwear.svg",
  41362. extra: 1796/1741,
  41363. bottom: 83/1879
  41364. }
  41365. },
  41366. frontNude: {
  41367. height: math.unit(22 + 1/12, "feet"),
  41368. weight: math.unit(3200, "lb"),
  41369. name: "Front (Nude)",
  41370. image: {
  41371. source: "./media/characters/theo-acacia/front-nude.svg",
  41372. extra: 1796/1741,
  41373. bottom: 83/1879
  41374. }
  41375. },
  41376. },
  41377. [
  41378. {
  41379. name: "Normal",
  41380. height: math.unit(22 + 1/12, "feet"),
  41381. default: true
  41382. },
  41383. ]
  41384. ))
  41385. characterMakers.push(() => makeCharacter(
  41386. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41387. {
  41388. front: {
  41389. height: math.unit(20, "feet"),
  41390. name: "Front",
  41391. image: {
  41392. source: "./media/characters/astra/front.svg",
  41393. extra: 1850/1714,
  41394. bottom: 106/1956
  41395. }
  41396. },
  41397. frontUndressed: {
  41398. height: math.unit(20, "feet"),
  41399. name: "Front (Undressed)",
  41400. image: {
  41401. source: "./media/characters/astra/front-undressed.svg",
  41402. extra: 1926/1749,
  41403. bottom: 0/1926
  41404. }
  41405. },
  41406. hand: {
  41407. height: math.unit(1.53, "feet"),
  41408. name: "Hand",
  41409. image: {
  41410. source: "./media/characters/astra/hand.svg"
  41411. }
  41412. },
  41413. paw: {
  41414. height: math.unit(1.53, "feet"),
  41415. name: "Paw",
  41416. image: {
  41417. source: "./media/characters/astra/paw.svg"
  41418. }
  41419. },
  41420. },
  41421. [
  41422. {
  41423. name: "Smallest",
  41424. height: math.unit(20, "feet")
  41425. },
  41426. {
  41427. name: "Normal",
  41428. height: math.unit(1e9, "miles"),
  41429. default: true
  41430. },
  41431. {
  41432. name: "Larger",
  41433. height: math.unit(5, "multiverses")
  41434. },
  41435. {
  41436. name: "Largest",
  41437. height: math.unit(1e9, "multiverses")
  41438. },
  41439. ]
  41440. ))
  41441. characterMakers.push(() => makeCharacter(
  41442. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41443. {
  41444. front: {
  41445. height: math.unit(8, "feet"),
  41446. name: "Front",
  41447. image: {
  41448. source: "./media/characters/breanna/front.svg",
  41449. extra: 1912/1632,
  41450. bottom: 33/1945
  41451. }
  41452. },
  41453. },
  41454. [
  41455. {
  41456. name: "Smallest",
  41457. height: math.unit(8, "feet")
  41458. },
  41459. {
  41460. name: "Normal",
  41461. height: math.unit(1, "mile"),
  41462. default: true
  41463. },
  41464. {
  41465. name: "Maximum",
  41466. height: math.unit(1500000000000, "lightyears")
  41467. },
  41468. ]
  41469. ))
  41470. characterMakers.push(() => makeCharacter(
  41471. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41472. {
  41473. front: {
  41474. height: math.unit(5 + 11/12, "feet"),
  41475. weight: math.unit(155, "lb"),
  41476. name: "Front",
  41477. image: {
  41478. source: "./media/characters/cai/front.svg",
  41479. extra: 1823/1702,
  41480. bottom: 32/1855
  41481. }
  41482. },
  41483. back: {
  41484. height: math.unit(5 + 11/12, "feet"),
  41485. weight: math.unit(155, "lb"),
  41486. name: "Back",
  41487. image: {
  41488. source: "./media/characters/cai/back.svg",
  41489. extra: 1809/1708,
  41490. bottom: 31/1840
  41491. }
  41492. },
  41493. },
  41494. [
  41495. {
  41496. name: "Normal",
  41497. height: math.unit(5 + 11/12, "feet"),
  41498. default: true
  41499. },
  41500. {
  41501. name: "Big",
  41502. height: math.unit(15, "feet")
  41503. },
  41504. {
  41505. name: "Macro",
  41506. height: math.unit(200, "feet")
  41507. },
  41508. ]
  41509. ))
  41510. characterMakers.push(() => makeCharacter(
  41511. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41512. {
  41513. front: {
  41514. height: math.unit(5 + 6/12, "feet"),
  41515. weight: math.unit(160, "lb"),
  41516. name: "Front",
  41517. image: {
  41518. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41519. extra: 1227/1174,
  41520. bottom: 37/1264
  41521. }
  41522. },
  41523. },
  41524. [
  41525. {
  41526. name: "Macro",
  41527. height: math.unit(444, "meters"),
  41528. default: true
  41529. },
  41530. ]
  41531. ))
  41532. characterMakers.push(() => makeCharacter(
  41533. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41534. {
  41535. front: {
  41536. height: math.unit(18 + 7/12, "feet"),
  41537. name: "Front",
  41538. image: {
  41539. source: "./media/characters/rex/front.svg",
  41540. extra: 1941/1807,
  41541. bottom: 66/2007
  41542. }
  41543. },
  41544. back: {
  41545. height: math.unit(18 + 7/12, "feet"),
  41546. name: "Back",
  41547. image: {
  41548. source: "./media/characters/rex/back.svg",
  41549. extra: 1937/1822,
  41550. bottom: 42/1979
  41551. }
  41552. },
  41553. boot: {
  41554. height: math.unit(3.45, "feet"),
  41555. name: "Boot",
  41556. image: {
  41557. source: "./media/characters/rex/boot.svg"
  41558. }
  41559. },
  41560. paw: {
  41561. height: math.unit(4.17, "feet"),
  41562. name: "Paw",
  41563. image: {
  41564. source: "./media/characters/rex/paw.svg"
  41565. }
  41566. },
  41567. head: {
  41568. height: math.unit(6.728, "feet"),
  41569. name: "Head",
  41570. image: {
  41571. source: "./media/characters/rex/head.svg"
  41572. }
  41573. },
  41574. },
  41575. [
  41576. {
  41577. name: "Nano",
  41578. height: math.unit(18 + 7/12, "feet")
  41579. },
  41580. {
  41581. name: "Micro",
  41582. height: math.unit(1.5, "megameters")
  41583. },
  41584. {
  41585. name: "Normal",
  41586. height: math.unit(440, "megameters"),
  41587. default: true
  41588. },
  41589. {
  41590. name: "Macro",
  41591. height: math.unit(2.5, "gigameters")
  41592. },
  41593. {
  41594. name: "Gigamacro",
  41595. height: math.unit(2, "galaxies")
  41596. },
  41597. ]
  41598. ))
  41599. characterMakers.push(() => makeCharacter(
  41600. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41601. {
  41602. side: {
  41603. height: math.unit(32, "feet"),
  41604. weight: math.unit(250000, "lb"),
  41605. name: "Side",
  41606. image: {
  41607. source: "./media/characters/silverwing/side.svg",
  41608. extra: 1100/1019,
  41609. bottom: 204/1304
  41610. }
  41611. },
  41612. },
  41613. [
  41614. {
  41615. name: "Normal",
  41616. height: math.unit(32, "feet"),
  41617. default: true
  41618. },
  41619. ]
  41620. ))
  41621. characterMakers.push(() => makeCharacter(
  41622. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41623. {
  41624. front: {
  41625. height: math.unit(6 + 6/12, "feet"),
  41626. weight: math.unit(350, "lb"),
  41627. name: "Front",
  41628. image: {
  41629. source: "./media/characters/tristan-hawthorne/front.svg",
  41630. extra: 1159/1124,
  41631. bottom: 37/1196
  41632. }
  41633. },
  41634. },
  41635. [
  41636. {
  41637. name: "Normal",
  41638. height: math.unit(6 + 6/12, "feet"),
  41639. default: true
  41640. },
  41641. ]
  41642. ))
  41643. characterMakers.push(() => makeCharacter(
  41644. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41645. {
  41646. front: {
  41647. height: math.unit(5 + 11/12, "feet"),
  41648. weight: math.unit(190, "lb"),
  41649. name: "Front",
  41650. image: {
  41651. source: "./media/characters/mizu/front.svg",
  41652. extra: 1988/1788,
  41653. bottom: 14/2002
  41654. }
  41655. },
  41656. },
  41657. [
  41658. {
  41659. name: "Normal",
  41660. height: math.unit(5 + 11/12, "feet"),
  41661. default: true
  41662. },
  41663. ]
  41664. ))
  41665. characterMakers.push(() => makeCharacter(
  41666. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41667. {
  41668. front: {
  41669. height: math.unit(1.7, "feet"),
  41670. weight: math.unit(50, "lb"),
  41671. name: "Front",
  41672. image: {
  41673. source: "./media/characters/dechroma/front.svg",
  41674. extra: 1095/859,
  41675. bottom: 64/1159
  41676. }
  41677. },
  41678. },
  41679. [
  41680. {
  41681. name: "Normal",
  41682. height: math.unit(1.7, "feet"),
  41683. default: true
  41684. },
  41685. ]
  41686. ))
  41687. characterMakers.push(() => makeCharacter(
  41688. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41689. {
  41690. side: {
  41691. height: math.unit(30, "feet"),
  41692. name: "Side",
  41693. image: {
  41694. source: "./media/characters/veluren-thanazel/side.svg",
  41695. extra: 1611/633,
  41696. bottom: 118/1729
  41697. }
  41698. },
  41699. front: {
  41700. height: math.unit(30, "feet"),
  41701. name: "Front",
  41702. image: {
  41703. source: "./media/characters/veluren-thanazel/front.svg",
  41704. extra: 1486/636,
  41705. bottom: 238/1724
  41706. }
  41707. },
  41708. head: {
  41709. height: math.unit(21.4, "feet"),
  41710. name: "Head",
  41711. image: {
  41712. source: "./media/characters/veluren-thanazel/head.svg"
  41713. }
  41714. },
  41715. genitals: {
  41716. height: math.unit(19.4, "feet"),
  41717. name: "Genitals",
  41718. image: {
  41719. source: "./media/characters/veluren-thanazel/genitals.svg"
  41720. }
  41721. },
  41722. },
  41723. [
  41724. {
  41725. name: "Social",
  41726. height: math.unit(6, "feet")
  41727. },
  41728. {
  41729. name: "Play",
  41730. height: math.unit(12, "feet")
  41731. },
  41732. {
  41733. name: "True",
  41734. height: math.unit(30, "feet"),
  41735. default: true
  41736. },
  41737. ]
  41738. ))
  41739. characterMakers.push(() => makeCharacter(
  41740. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41741. {
  41742. front: {
  41743. height: math.unit(7 + 6/12, "feet"),
  41744. weight: math.unit(500, "kg"),
  41745. name: "Front",
  41746. image: {
  41747. source: "./media/characters/arcturas/front.svg",
  41748. extra: 1700/1500,
  41749. bottom: 145/1845
  41750. }
  41751. },
  41752. },
  41753. [
  41754. {
  41755. name: "Normal",
  41756. height: math.unit(7 + 6/12, "feet"),
  41757. default: true
  41758. },
  41759. ]
  41760. ))
  41761. characterMakers.push(() => makeCharacter(
  41762. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41763. {
  41764. side: {
  41765. height: math.unit(6, "feet"),
  41766. weight: math.unit(2, "tons"),
  41767. name: "Side",
  41768. image: {
  41769. source: "./media/characters/vitaen/side.svg",
  41770. extra: 1157/617,
  41771. bottom: 122/1279
  41772. }
  41773. },
  41774. },
  41775. [
  41776. {
  41777. name: "Normal",
  41778. height: math.unit(6, "feet"),
  41779. default: true
  41780. },
  41781. ]
  41782. ))
  41783. characterMakers.push(() => makeCharacter(
  41784. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41785. {
  41786. front: {
  41787. height: math.unit(19, "feet"),
  41788. name: "Front",
  41789. image: {
  41790. source: "./media/characters/fia-dreamweaver/front.svg",
  41791. extra: 1630/1504,
  41792. bottom: 25/1655
  41793. }
  41794. },
  41795. },
  41796. [
  41797. {
  41798. name: "Normal",
  41799. height: math.unit(19, "feet"),
  41800. default: true
  41801. },
  41802. ]
  41803. ))
  41804. characterMakers.push(() => makeCharacter(
  41805. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41806. {
  41807. front: {
  41808. height: math.unit(5 + 4/12, "feet"),
  41809. name: "Front",
  41810. image: {
  41811. source: "./media/characters/artan/front.svg",
  41812. extra: 1618/1535,
  41813. bottom: 46/1664
  41814. }
  41815. },
  41816. back: {
  41817. height: math.unit(5 + 4/12, "feet"),
  41818. name: "Back",
  41819. image: {
  41820. source: "./media/characters/artan/back.svg",
  41821. extra: 1618/1543,
  41822. bottom: 31/1649
  41823. }
  41824. },
  41825. },
  41826. [
  41827. {
  41828. name: "Normal",
  41829. height: math.unit(5 + 4/12, "feet"),
  41830. default: true
  41831. },
  41832. ]
  41833. ))
  41834. characterMakers.push(() => makeCharacter(
  41835. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41836. {
  41837. side: {
  41838. height: math.unit(182, "cm"),
  41839. weight: math.unit(1000, "lb"),
  41840. name: "Side",
  41841. image: {
  41842. source: "./media/characters/silver-dragon/side.svg",
  41843. extra: 710/287,
  41844. bottom: 88/798
  41845. }
  41846. },
  41847. },
  41848. [
  41849. {
  41850. name: "Normal",
  41851. height: math.unit(182, "cm"),
  41852. default: true
  41853. },
  41854. ]
  41855. ))
  41856. characterMakers.push(() => makeCharacter(
  41857. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41858. {
  41859. side: {
  41860. height: math.unit(6 + 6/12, "feet"),
  41861. weight: math.unit(1.5, "tons"),
  41862. name: "Side",
  41863. image: {
  41864. source: "./media/characters/zephyr/side.svg",
  41865. extra: 1433/586,
  41866. bottom: 109/1542
  41867. }
  41868. },
  41869. },
  41870. [
  41871. {
  41872. name: "Normal",
  41873. height: math.unit(6 + 6/12, "feet"),
  41874. default: true
  41875. },
  41876. ]
  41877. ))
  41878. characterMakers.push(() => makeCharacter(
  41879. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41880. {
  41881. side: {
  41882. height: math.unit(1, "feet"),
  41883. name: "Side",
  41884. image: {
  41885. source: "./media/characters/vixye/side.svg",
  41886. extra: 632/541,
  41887. bottom: 0/632
  41888. }
  41889. },
  41890. },
  41891. [
  41892. {
  41893. name: "Normal",
  41894. height: math.unit(1, "feet"),
  41895. default: true
  41896. },
  41897. {
  41898. name: "True",
  41899. height: math.unit(1e15, "multiverses")
  41900. },
  41901. ]
  41902. ))
  41903. characterMakers.push(() => makeCharacter(
  41904. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41905. {
  41906. front: {
  41907. height: math.unit(8 + 2/12, "feet"),
  41908. weight: math.unit(650, "lb"),
  41909. name: "Front",
  41910. image: {
  41911. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41912. extra: 1174/1137,
  41913. bottom: 82/1256
  41914. }
  41915. },
  41916. back: {
  41917. height: math.unit(8 + 2/12, "feet"),
  41918. weight: math.unit(650, "lb"),
  41919. name: "Back",
  41920. image: {
  41921. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41922. extra: 1204/1157,
  41923. bottom: 46/1250
  41924. }
  41925. },
  41926. },
  41927. [
  41928. {
  41929. name: "Wildform",
  41930. height: math.unit(8 + 2/12, "feet"),
  41931. default: true
  41932. },
  41933. ]
  41934. ))
  41935. characterMakers.push(() => makeCharacter(
  41936. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41937. {
  41938. front: {
  41939. height: math.unit(18, "feet"),
  41940. name: "Front",
  41941. image: {
  41942. source: "./media/characters/cyphin/front.svg",
  41943. extra: 970/886,
  41944. bottom: 42/1012
  41945. }
  41946. },
  41947. back: {
  41948. height: math.unit(18, "feet"),
  41949. name: "Back",
  41950. image: {
  41951. source: "./media/characters/cyphin/back.svg",
  41952. extra: 1009/894,
  41953. bottom: 24/1033
  41954. }
  41955. },
  41956. head: {
  41957. height: math.unit(5.05, "feet"),
  41958. name: "Head",
  41959. image: {
  41960. source: "./media/characters/cyphin/head.svg"
  41961. }
  41962. },
  41963. tailbud: {
  41964. height: math.unit(5, "feet"),
  41965. name: "Tailbud",
  41966. image: {
  41967. source: "./media/characters/cyphin/tailbud.svg"
  41968. }
  41969. },
  41970. },
  41971. [
  41972. ]
  41973. ))
  41974. characterMakers.push(() => makeCharacter(
  41975. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41976. {
  41977. side: {
  41978. height: math.unit(10, "feet"),
  41979. weight: math.unit(6, "tons"),
  41980. name: "Side",
  41981. image: {
  41982. source: "./media/characters/raijin/side.svg",
  41983. extra: 1529/613,
  41984. bottom: 337/1866
  41985. }
  41986. },
  41987. },
  41988. [
  41989. {
  41990. name: "Normal",
  41991. height: math.unit(10, "feet"),
  41992. default: true
  41993. },
  41994. ]
  41995. ))
  41996. characterMakers.push(() => makeCharacter(
  41997. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41998. {
  41999. side: {
  42000. height: math.unit(9, "feet"),
  42001. name: "Side",
  42002. image: {
  42003. source: "./media/characters/nilghais/side.svg",
  42004. extra: 1047/744,
  42005. bottom: 91/1138
  42006. }
  42007. },
  42008. head: {
  42009. height: math.unit(3.14, "feet"),
  42010. name: "Head",
  42011. image: {
  42012. source: "./media/characters/nilghais/head.svg"
  42013. }
  42014. },
  42015. mouth: {
  42016. height: math.unit(4.6, "feet"),
  42017. name: "Mouth",
  42018. image: {
  42019. source: "./media/characters/nilghais/mouth.svg"
  42020. }
  42021. },
  42022. wings: {
  42023. height: math.unit(24, "feet"),
  42024. name: "Wings",
  42025. image: {
  42026. source: "./media/characters/nilghais/wings.svg"
  42027. }
  42028. },
  42029. ass: {
  42030. height: math.unit(6.12, "feet"),
  42031. name: "Ass",
  42032. image: {
  42033. source: "./media/characters/nilghais/ass.svg"
  42034. }
  42035. },
  42036. },
  42037. [
  42038. {
  42039. name: "Normal",
  42040. height: math.unit(9, "feet"),
  42041. default: true
  42042. },
  42043. ]
  42044. ))
  42045. characterMakers.push(() => makeCharacter(
  42046. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42047. {
  42048. regular: {
  42049. height: math.unit(16 + 2/12, "feet"),
  42050. weight: math.unit(2300, "lb"),
  42051. name: "Regular",
  42052. image: {
  42053. source: "./media/characters/zolgar/regular.svg",
  42054. extra: 1246/1004,
  42055. bottom: 124/1370
  42056. }
  42057. },
  42058. boxers: {
  42059. height: math.unit(16 + 2/12, "feet"),
  42060. weight: math.unit(2300, "lb"),
  42061. name: "Boxers",
  42062. image: {
  42063. source: "./media/characters/zolgar/boxers.svg",
  42064. extra: 1246/1004,
  42065. bottom: 124/1370
  42066. }
  42067. },
  42068. armored: {
  42069. height: math.unit(16 + 2/12, "feet"),
  42070. weight: math.unit(2300, "lb"),
  42071. name: "Armored",
  42072. image: {
  42073. source: "./media/characters/zolgar/armored.svg",
  42074. extra: 1246/1004,
  42075. bottom: 124/1370
  42076. }
  42077. },
  42078. goth: {
  42079. height: math.unit(16 + 2/12, "feet"),
  42080. weight: math.unit(2300, "lb"),
  42081. name: "Goth",
  42082. image: {
  42083. source: "./media/characters/zolgar/goth.svg",
  42084. extra: 1246/1004,
  42085. bottom: 124/1370
  42086. }
  42087. },
  42088. },
  42089. [
  42090. {
  42091. name: "Shrunken Down",
  42092. height: math.unit(9 + 2/12, "feet")
  42093. },
  42094. {
  42095. name: "Normal",
  42096. height: math.unit(16 + 2/12, "feet"),
  42097. default: true
  42098. },
  42099. ]
  42100. ))
  42101. characterMakers.push(() => makeCharacter(
  42102. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42103. {
  42104. front: {
  42105. height: math.unit(6, "feet"),
  42106. weight: math.unit(168, "lb"),
  42107. name: "Front",
  42108. image: {
  42109. source: "./media/characters/luca/front.svg",
  42110. extra: 841/667,
  42111. bottom: 102/943
  42112. }
  42113. },
  42114. },
  42115. [
  42116. {
  42117. name: "Normal",
  42118. height: math.unit(6, "feet"),
  42119. default: true
  42120. },
  42121. ]
  42122. ))
  42123. characterMakers.push(() => makeCharacter(
  42124. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42125. {
  42126. side: {
  42127. height: math.unit(7 + 3/12, "feet"),
  42128. weight: math.unit(312, "lb"),
  42129. name: "Side",
  42130. image: {
  42131. source: "./media/characters/zezo/side.svg",
  42132. extra: 1192/1067,
  42133. bottom: 63/1255
  42134. }
  42135. },
  42136. },
  42137. [
  42138. {
  42139. name: "Normal",
  42140. height: math.unit(7 + 3/12, "feet"),
  42141. default: true
  42142. },
  42143. ]
  42144. ))
  42145. characterMakers.push(() => makeCharacter(
  42146. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42147. {
  42148. front: {
  42149. height: math.unit(5 + 5/12, "feet"),
  42150. weight: math.unit(170, "lb"),
  42151. name: "Front",
  42152. image: {
  42153. source: "./media/characters/mayso/front.svg",
  42154. extra: 1215/1108,
  42155. bottom: 16/1231
  42156. }
  42157. },
  42158. },
  42159. [
  42160. {
  42161. name: "Normal",
  42162. height: math.unit(5 + 5/12, "feet"),
  42163. default: true
  42164. },
  42165. ]
  42166. ))
  42167. characterMakers.push(() => makeCharacter(
  42168. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42169. {
  42170. front: {
  42171. height: math.unit(4 + 3/12, "feet"),
  42172. weight: math.unit(80, "lb"),
  42173. name: "Front",
  42174. image: {
  42175. source: "./media/characters/hess/front.svg",
  42176. extra: 1200/1123,
  42177. bottom: 16/1216
  42178. }
  42179. },
  42180. },
  42181. [
  42182. {
  42183. name: "Normal",
  42184. height: math.unit(4 + 3/12, "feet"),
  42185. default: true
  42186. },
  42187. ]
  42188. ))
  42189. characterMakers.push(() => makeCharacter(
  42190. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42191. {
  42192. front: {
  42193. height: math.unit(1.9, "meters"),
  42194. name: "Front",
  42195. image: {
  42196. source: "./media/characters/ashgar/front.svg",
  42197. extra: 1177/1146,
  42198. bottom: 99/1276
  42199. }
  42200. },
  42201. back: {
  42202. height: math.unit(1.9, "meters"),
  42203. name: "Back",
  42204. image: {
  42205. source: "./media/characters/ashgar/back.svg",
  42206. extra: 1201/1183,
  42207. bottom: 53/1254
  42208. }
  42209. },
  42210. feral: {
  42211. height: math.unit(1.4, "meters"),
  42212. name: "Feral",
  42213. image: {
  42214. source: "./media/characters/ashgar/feral.svg",
  42215. extra: 370/345,
  42216. bottom: 45/415
  42217. }
  42218. },
  42219. },
  42220. [
  42221. {
  42222. name: "Normal",
  42223. height: math.unit(1.9, "meters"),
  42224. default: true
  42225. },
  42226. ]
  42227. ))
  42228. characterMakers.push(() => makeCharacter(
  42229. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42230. {
  42231. regular: {
  42232. height: math.unit(6, "feet"),
  42233. weight: math.unit(220, "lb"),
  42234. name: "Regular",
  42235. image: {
  42236. source: "./media/characters/phillip/regular.svg",
  42237. extra: 1373/1277,
  42238. bottom: 75/1448
  42239. }
  42240. },
  42241. dressed: {
  42242. height: math.unit(6, "feet"),
  42243. weight: math.unit(220, "lb"),
  42244. name: "Dressed",
  42245. image: {
  42246. source: "./media/characters/phillip/dressed.svg",
  42247. extra: 1373/1277,
  42248. bottom: 75/1448
  42249. }
  42250. },
  42251. paw: {
  42252. height: math.unit(1.44, "feet"),
  42253. name: "Paw",
  42254. image: {
  42255. source: "./media/characters/phillip/paw.svg"
  42256. }
  42257. },
  42258. },
  42259. [
  42260. {
  42261. name: "Normal",
  42262. height: math.unit(6, "feet"),
  42263. default: true
  42264. },
  42265. ]
  42266. ))
  42267. characterMakers.push(() => makeCharacter(
  42268. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42269. {
  42270. side: {
  42271. height: math.unit(42, "feet"),
  42272. name: "Side",
  42273. image: {
  42274. source: "./media/characters/uvula/side.svg",
  42275. extra: 683/586,
  42276. bottom: 60/743
  42277. }
  42278. },
  42279. front: {
  42280. height: math.unit(42, "feet"),
  42281. name: "Front",
  42282. image: {
  42283. source: "./media/characters/uvula/front.svg",
  42284. extra: 705/613,
  42285. bottom: 54/759
  42286. }
  42287. },
  42288. maw: {
  42289. height: math.unit(23.5, "feet"),
  42290. name: "Maw",
  42291. image: {
  42292. source: "./media/characters/uvula/maw.svg"
  42293. }
  42294. },
  42295. },
  42296. [
  42297. {
  42298. name: "Original Size",
  42299. height: math.unit(14, "inches")
  42300. },
  42301. {
  42302. name: "Human Size",
  42303. height: math.unit(6, "feet")
  42304. },
  42305. {
  42306. name: "Big",
  42307. height: math.unit(42, "feet"),
  42308. default: true
  42309. },
  42310. {
  42311. name: "Bigger",
  42312. height: math.unit(100, "feet")
  42313. },
  42314. ]
  42315. ))
  42316. characterMakers.push(() => makeCharacter(
  42317. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42318. {
  42319. front: {
  42320. height: math.unit(5 + 11/12, "feet"),
  42321. name: "Front",
  42322. image: {
  42323. source: "./media/characters/lannah/front.svg",
  42324. extra: 1208/1113,
  42325. bottom: 97/1305
  42326. }
  42327. },
  42328. },
  42329. [
  42330. {
  42331. name: "Normal",
  42332. height: math.unit(5 + 11/12, "feet"),
  42333. default: true
  42334. },
  42335. ]
  42336. ))
  42337. characterMakers.push(() => makeCharacter(
  42338. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42339. {
  42340. front: {
  42341. height: math.unit(6 + 3/12, "feet"),
  42342. weight: math.unit(3.5, "tons"),
  42343. name: "Front",
  42344. image: {
  42345. source: "./media/characters/emberflame/front.svg",
  42346. extra: 1198/672,
  42347. bottom: 82/1280
  42348. }
  42349. },
  42350. side: {
  42351. height: math.unit(6 + 3/12, "feet"),
  42352. weight: math.unit(3.5, "tons"),
  42353. name: "Side",
  42354. image: {
  42355. source: "./media/characters/emberflame/side.svg",
  42356. extra: 938/527,
  42357. bottom: 56/994
  42358. }
  42359. },
  42360. },
  42361. [
  42362. {
  42363. name: "Normal",
  42364. height: math.unit(6 + 3/12, "feet"),
  42365. default: true
  42366. },
  42367. ]
  42368. ))
  42369. characterMakers.push(() => makeCharacter(
  42370. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42371. {
  42372. side: {
  42373. height: math.unit(17.5, "feet"),
  42374. weight: math.unit(35, "tons"),
  42375. name: "Side",
  42376. image: {
  42377. source: "./media/characters/sophie-ambrose/side.svg",
  42378. extra: 1573/1242,
  42379. bottom: 71/1644
  42380. }
  42381. },
  42382. maw: {
  42383. height: math.unit(7.4, "feet"),
  42384. name: "Maw",
  42385. image: {
  42386. source: "./media/characters/sophie-ambrose/maw.svg"
  42387. }
  42388. },
  42389. },
  42390. [
  42391. {
  42392. name: "Normal",
  42393. height: math.unit(17.5, "feet"),
  42394. default: true
  42395. },
  42396. ]
  42397. ))
  42398. characterMakers.push(() => makeCharacter(
  42399. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42400. {
  42401. front: {
  42402. height: math.unit(280, "feet"),
  42403. weight: math.unit(550, "tons"),
  42404. name: "Front",
  42405. image: {
  42406. source: "./media/characters/king-mugi/front.svg",
  42407. extra: 1102/947,
  42408. bottom: 104/1206
  42409. }
  42410. },
  42411. },
  42412. [
  42413. {
  42414. name: "King Mugi",
  42415. height: math.unit(280, "feet"),
  42416. default: true
  42417. },
  42418. ]
  42419. ))
  42420. characterMakers.push(() => makeCharacter(
  42421. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42422. {
  42423. front: {
  42424. height: math.unit(64, "meters"),
  42425. name: "Front",
  42426. image: {
  42427. source: "./media/characters/nova-fox/front.svg",
  42428. extra: 1310/1246,
  42429. bottom: 65/1375
  42430. }
  42431. },
  42432. },
  42433. [
  42434. {
  42435. name: "Macro",
  42436. height: math.unit(64, "meters"),
  42437. default: true
  42438. },
  42439. ]
  42440. ))
  42441. characterMakers.push(() => makeCharacter(
  42442. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42443. {
  42444. front: {
  42445. height: math.unit(6 + 3/12, "feet"),
  42446. weight: math.unit(170, "lb"),
  42447. name: "Front",
  42448. image: {
  42449. source: "./media/characters/sam-bat/front.svg",
  42450. extra: 1601/1411,
  42451. bottom: 125/1726
  42452. }
  42453. },
  42454. back: {
  42455. height: math.unit(6 + 3/12, "feet"),
  42456. weight: math.unit(170, "lb"),
  42457. name: "Back",
  42458. image: {
  42459. source: "./media/characters/sam-bat/back.svg",
  42460. extra: 1577/1405,
  42461. bottom: 58/1635
  42462. }
  42463. },
  42464. },
  42465. [
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(6 + 3/12, "feet"),
  42469. default: true
  42470. },
  42471. ]
  42472. ))
  42473. characterMakers.push(() => makeCharacter(
  42474. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42475. {
  42476. front: {
  42477. height: math.unit(59, "feet"),
  42478. weight: math.unit(40000, "lb"),
  42479. name: "Front",
  42480. image: {
  42481. source: "./media/characters/inari/front.svg",
  42482. extra: 1884/1350,
  42483. bottom: 95/1979
  42484. }
  42485. },
  42486. },
  42487. [
  42488. {
  42489. name: "Gigantamax",
  42490. height: math.unit(59, "feet"),
  42491. default: true
  42492. },
  42493. ]
  42494. ))
  42495. characterMakers.push(() => makeCharacter(
  42496. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42497. {
  42498. front: {
  42499. height: math.unit(5 + 8/12, "feet"),
  42500. name: "Front",
  42501. image: {
  42502. source: "./media/characters/elizabeth/front.svg",
  42503. extra: 1395/1298,
  42504. bottom: 54/1449
  42505. }
  42506. },
  42507. mouth: {
  42508. height: math.unit(1.97, "feet"),
  42509. name: "Mouth",
  42510. image: {
  42511. source: "./media/characters/elizabeth/mouth.svg"
  42512. }
  42513. },
  42514. foot: {
  42515. height: math.unit(1.17, "feet"),
  42516. name: "Foot",
  42517. image: {
  42518. source: "./media/characters/elizabeth/foot.svg"
  42519. }
  42520. },
  42521. },
  42522. [
  42523. {
  42524. name: "Normal",
  42525. height: math.unit(5 + 8/12, "feet"),
  42526. default: true
  42527. },
  42528. {
  42529. name: "Minimacro",
  42530. height: math.unit(18, "feet")
  42531. },
  42532. {
  42533. name: "Macro",
  42534. height: math.unit(180, "feet")
  42535. },
  42536. ]
  42537. ))
  42538. characterMakers.push(() => makeCharacter(
  42539. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42540. {
  42541. front: {
  42542. height: math.unit(5 + 2/12, "feet"),
  42543. name: "Front",
  42544. image: {
  42545. source: "./media/characters/october-gossamer/front.svg",
  42546. extra: 505/454,
  42547. bottom: 7/512
  42548. }
  42549. },
  42550. back: {
  42551. height: math.unit(5 + 2/12, "feet"),
  42552. name: "Back",
  42553. image: {
  42554. source: "./media/characters/october-gossamer/back.svg",
  42555. extra: 501/454,
  42556. bottom: 11/512
  42557. }
  42558. },
  42559. },
  42560. [
  42561. {
  42562. name: "Normal",
  42563. height: math.unit(5 + 2/12, "feet"),
  42564. default: true
  42565. },
  42566. ]
  42567. ))
  42568. characterMakers.push(() => makeCharacter(
  42569. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42570. {
  42571. front: {
  42572. height: math.unit(5, "feet"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/epiglottis/front.svg",
  42576. extra: 923/849,
  42577. bottom: 17/940
  42578. }
  42579. },
  42580. },
  42581. [
  42582. {
  42583. name: "Original Size",
  42584. height: math.unit(10, "inches")
  42585. },
  42586. {
  42587. name: "Human Size",
  42588. height: math.unit(5, "feet"),
  42589. default: true
  42590. },
  42591. {
  42592. name: "Big",
  42593. height: math.unit(25, "feet")
  42594. },
  42595. {
  42596. name: "Bigger",
  42597. height: math.unit(50, "feet")
  42598. },
  42599. {
  42600. name: "oh lawd",
  42601. height: math.unit(75, "feet")
  42602. },
  42603. ]
  42604. ))
  42605. characterMakers.push(() => makeCharacter(
  42606. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42607. {
  42608. front: {
  42609. height: math.unit(2 + 4/12, "feet"),
  42610. weight: math.unit(60, "lb"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/lerm/front.svg",
  42614. extra: 796/790,
  42615. bottom: 79/875
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Normal",
  42622. height: math.unit(2 + 4/12, "feet"),
  42623. default: true
  42624. },
  42625. ]
  42626. ))
  42627. characterMakers.push(() => makeCharacter(
  42628. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42629. {
  42630. front: {
  42631. height: math.unit(5.5, "feet"),
  42632. weight: math.unit(130, "lb"),
  42633. name: "Front",
  42634. image: {
  42635. source: "./media/characters/xena-nebadon/front.svg",
  42636. extra: 1828/1730,
  42637. bottom: 79/1907
  42638. }
  42639. },
  42640. },
  42641. [
  42642. {
  42643. name: "Tiny Puppy",
  42644. height: math.unit(3, "inches")
  42645. },
  42646. {
  42647. name: "Normal",
  42648. height: math.unit(5.5, "feet"),
  42649. default: true
  42650. },
  42651. {
  42652. name: "Lotta Lady",
  42653. height: math.unit(12, "feet")
  42654. },
  42655. {
  42656. name: "Pretty Big",
  42657. height: math.unit(100, "feet")
  42658. },
  42659. {
  42660. name: "Big",
  42661. height: math.unit(500, "feet")
  42662. },
  42663. {
  42664. name: "Skyscraper Toys",
  42665. height: math.unit(2500, "feet")
  42666. },
  42667. {
  42668. name: "Plane Catcher",
  42669. height: math.unit(8, "miles")
  42670. },
  42671. {
  42672. name: "Planet Toys",
  42673. height: math.unit(15, "earths")
  42674. },
  42675. {
  42676. name: "Stardust",
  42677. height: math.unit(0.25, "galaxies")
  42678. },
  42679. {
  42680. name: "Snacks",
  42681. height: math.unit(70, "universes")
  42682. },
  42683. ]
  42684. ))
  42685. characterMakers.push(() => makeCharacter(
  42686. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42687. {
  42688. front: {
  42689. height: math.unit(1.6, "meters"),
  42690. weight: math.unit(60, "kg"),
  42691. name: "Front",
  42692. image: {
  42693. source: "./media/characters/bounty/front.svg",
  42694. extra: 1426/1308,
  42695. bottom: 15/1441
  42696. }
  42697. },
  42698. back: {
  42699. height: math.unit(1.6, "meters"),
  42700. weight: math.unit(60, "kg"),
  42701. name: "Back",
  42702. image: {
  42703. source: "./media/characters/bounty/back.svg",
  42704. extra: 1417/1307,
  42705. bottom: 8/1425
  42706. }
  42707. },
  42708. },
  42709. [
  42710. {
  42711. name: "Normal",
  42712. height: math.unit(1.6, "meters"),
  42713. default: true
  42714. },
  42715. {
  42716. name: "Macro",
  42717. height: math.unit(300, "meters")
  42718. },
  42719. ]
  42720. ))
  42721. characterMakers.push(() => makeCharacter(
  42722. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42723. {
  42724. front: {
  42725. height: math.unit(2 + 8/12, "feet"),
  42726. weight: math.unit(15, "lb"),
  42727. name: "Front",
  42728. image: {
  42729. source: "./media/characters/mochi/front.svg",
  42730. extra: 1022/852,
  42731. bottom: 435/1457
  42732. }
  42733. },
  42734. back: {
  42735. height: math.unit(2 + 8/12, "feet"),
  42736. weight: math.unit(15, "lb"),
  42737. name: "Back",
  42738. image: {
  42739. source: "./media/characters/mochi/back.svg",
  42740. extra: 1335/1119,
  42741. bottom: 39/1374
  42742. }
  42743. },
  42744. bird: {
  42745. height: math.unit(2 + 8/12, "feet"),
  42746. weight: math.unit(15, "lb"),
  42747. name: "Bird",
  42748. image: {
  42749. source: "./media/characters/mochi/bird.svg",
  42750. extra: 1251/1113,
  42751. bottom: 178/1429
  42752. }
  42753. },
  42754. kaiju: {
  42755. height: math.unit(154, "feet"),
  42756. weight: math.unit(1e7, "lb"),
  42757. name: "Kaiju",
  42758. image: {
  42759. source: "./media/characters/mochi/kaiju.svg",
  42760. extra: 460/324,
  42761. bottom: 40/500
  42762. }
  42763. },
  42764. head: {
  42765. height: math.unit(1.21, "feet"),
  42766. name: "Head",
  42767. image: {
  42768. source: "./media/characters/mochi/head.svg"
  42769. }
  42770. },
  42771. alternateTail: {
  42772. height: math.unit(2 + 8/12, "feet"),
  42773. weight: math.unit(45, "lb"),
  42774. name: "Alternate Tail",
  42775. image: {
  42776. source: "./media/characters/mochi/alternate-tail.svg",
  42777. extra: 139/76,
  42778. bottom: 45/184
  42779. }
  42780. },
  42781. },
  42782. [
  42783. {
  42784. name: "Micro",
  42785. height: math.unit(2, "inches")
  42786. },
  42787. {
  42788. name: "Normal",
  42789. height: math.unit(2 + 8/12, "feet"),
  42790. default: true
  42791. },
  42792. {
  42793. name: "Macro",
  42794. height: math.unit(106, "feet")
  42795. },
  42796. ]
  42797. ))
  42798. characterMakers.push(() => makeCharacter(
  42799. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42800. {
  42801. front: {
  42802. height: math.unit(5.67, "feet"),
  42803. weight: math.unit(135, "lb"),
  42804. name: "Front",
  42805. image: {
  42806. source: "./media/characters/sarel/front.svg",
  42807. extra: 865/788,
  42808. bottom: 97/962
  42809. }
  42810. },
  42811. back: {
  42812. height: math.unit(5.67, "feet"),
  42813. weight: math.unit(135, "lb"),
  42814. name: "Back",
  42815. image: {
  42816. source: "./media/characters/sarel/back.svg",
  42817. extra: 857/777,
  42818. bottom: 32/889
  42819. }
  42820. },
  42821. chozoan: {
  42822. height: math.unit(5.67, "feet"),
  42823. weight: math.unit(135, "lb"),
  42824. name: "Chozoan",
  42825. image: {
  42826. source: "./media/characters/sarel/chozoan.svg",
  42827. extra: 865/788,
  42828. bottom: 97/962
  42829. }
  42830. },
  42831. current: {
  42832. height: math.unit(5.67, "feet"),
  42833. weight: math.unit(135, "lb"),
  42834. name: "Current",
  42835. image: {
  42836. source: "./media/characters/sarel/current.svg",
  42837. extra: 865/788,
  42838. bottom: 97/962
  42839. }
  42840. },
  42841. head: {
  42842. height: math.unit(1.77, "feet"),
  42843. name: "Head",
  42844. image: {
  42845. source: "./media/characters/sarel/head.svg"
  42846. }
  42847. },
  42848. claws: {
  42849. height: math.unit(1.8, "feet"),
  42850. name: "Claws",
  42851. image: {
  42852. source: "./media/characters/sarel/claws.svg"
  42853. }
  42854. },
  42855. clawsAlt: {
  42856. height: math.unit(1.8, "feet"),
  42857. name: "Claws-alt",
  42858. image: {
  42859. source: "./media/characters/sarel/claws-alt.svg"
  42860. }
  42861. },
  42862. },
  42863. [
  42864. {
  42865. name: "Normal",
  42866. height: math.unit(5.67, "feet"),
  42867. default: true
  42868. },
  42869. ]
  42870. ))
  42871. characterMakers.push(() => makeCharacter(
  42872. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42873. {
  42874. front: {
  42875. height: math.unit(5500, "feet"),
  42876. name: "Front",
  42877. image: {
  42878. source: "./media/characters/alyonia/front.svg",
  42879. extra: 1200/1135,
  42880. bottom: 29/1229
  42881. }
  42882. },
  42883. back: {
  42884. height: math.unit(5500, "feet"),
  42885. name: "Back",
  42886. image: {
  42887. source: "./media/characters/alyonia/back.svg",
  42888. extra: 1205/1138,
  42889. bottom: 10/1215
  42890. }
  42891. },
  42892. },
  42893. [
  42894. {
  42895. name: "Small",
  42896. height: math.unit(10, "feet")
  42897. },
  42898. {
  42899. name: "Macro",
  42900. height: math.unit(500, "feet")
  42901. },
  42902. {
  42903. name: "Mega Macro",
  42904. height: math.unit(5500, "feet"),
  42905. default: true
  42906. },
  42907. {
  42908. name: "Mega Macro+",
  42909. height: math.unit(500000, "feet")
  42910. },
  42911. {
  42912. name: "Giga Macro",
  42913. height: math.unit(3000, "miles")
  42914. },
  42915. {
  42916. name: "Tera Macro",
  42917. height: math.unit(2.8e6, "miles")
  42918. },
  42919. {
  42920. name: "Galactic",
  42921. height: math.unit(120000, "lightyears")
  42922. },
  42923. ]
  42924. ))
  42925. characterMakers.push(() => makeCharacter(
  42926. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42927. {
  42928. werewolf: {
  42929. height: math.unit(8, "feet"),
  42930. weight: math.unit(425, "lb"),
  42931. name: "Werewolf",
  42932. image: {
  42933. source: "./media/characters/autumn/werewolf.svg",
  42934. extra: 2154/2031,
  42935. bottom: 160/2314
  42936. }
  42937. },
  42938. human: {
  42939. height: math.unit(5 + 8/12, "feet"),
  42940. weight: math.unit(150, "lb"),
  42941. name: "Human",
  42942. image: {
  42943. source: "./media/characters/autumn/human.svg",
  42944. extra: 1200/1149,
  42945. bottom: 30/1230
  42946. }
  42947. },
  42948. },
  42949. [
  42950. {
  42951. name: "Normal",
  42952. height: math.unit(8, "feet"),
  42953. default: true
  42954. },
  42955. ]
  42956. ))
  42957. characterMakers.push(() => makeCharacter(
  42958. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42959. {
  42960. front: {
  42961. height: math.unit(8 + 5/12, "feet"),
  42962. weight: math.unit(825, "lb"),
  42963. name: "Front",
  42964. image: {
  42965. source: "./media/characters/cobalt-charizard/front.svg",
  42966. extra: 1268/1155,
  42967. bottom: 122/1390
  42968. }
  42969. },
  42970. side: {
  42971. height: math.unit(8 + 5/12, "feet"),
  42972. weight: math.unit(825, "lb"),
  42973. name: "Side",
  42974. image: {
  42975. source: "./media/characters/cobalt-charizard/side.svg",
  42976. extra: 1348/1257,
  42977. bottom: 58/1406
  42978. }
  42979. },
  42980. gMax: {
  42981. height: math.unit(134 + 11/12, "feet"),
  42982. name: "G-Max",
  42983. image: {
  42984. source: "./media/characters/cobalt-charizard/g-max.svg",
  42985. extra: 1835/1541,
  42986. bottom: 151/1986
  42987. }
  42988. },
  42989. },
  42990. [
  42991. {
  42992. name: "Normal",
  42993. height: math.unit(8 + 5/12, "feet"),
  42994. default: true
  42995. },
  42996. ]
  42997. ))
  42998. characterMakers.push(() => makeCharacter(
  42999. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43000. {
  43001. front: {
  43002. height: math.unit(6 + 3/12, "feet"),
  43003. weight: math.unit(210, "lb"),
  43004. name: "Front",
  43005. image: {
  43006. source: "./media/characters/stella/front.svg",
  43007. extra: 3549/3335,
  43008. bottom: 51/3600
  43009. }
  43010. },
  43011. },
  43012. [
  43013. {
  43014. name: "Normal",
  43015. height: math.unit(6 + 3/12, "feet"),
  43016. default: true
  43017. },
  43018. ]
  43019. ))
  43020. characterMakers.push(() => makeCharacter(
  43021. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43022. {
  43023. front: {
  43024. height: math.unit(5, "feet"),
  43025. weight: math.unit(90, "lb"),
  43026. name: "Front",
  43027. image: {
  43028. source: "./media/characters/riley-bishop/front.svg",
  43029. extra: 1450/1428,
  43030. bottom: 152/1602
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "Normal",
  43037. height: math.unit(5, "feet"),
  43038. default: true
  43039. },
  43040. ]
  43041. ))
  43042. characterMakers.push(() => makeCharacter(
  43043. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43044. {
  43045. side: {
  43046. height: math.unit(8 + 2/12, "feet"),
  43047. weight: math.unit(500, "kg"),
  43048. name: "Side",
  43049. image: {
  43050. source: "./media/characters/theo-arcanine/side.svg",
  43051. extra: 1342/1074,
  43052. bottom: 111/1453
  43053. }
  43054. },
  43055. },
  43056. [
  43057. {
  43058. name: "Normal",
  43059. height: math.unit(8 + 2/12, "feet"),
  43060. default: true
  43061. },
  43062. ]
  43063. ))
  43064. characterMakers.push(() => makeCharacter(
  43065. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43066. {
  43067. front: {
  43068. height: math.unit(4, "feet"),
  43069. name: "Front",
  43070. image: {
  43071. source: "./media/characters/kali/front.svg",
  43072. extra: 1921/1357,
  43073. bottom: 70/1991
  43074. }
  43075. },
  43076. },
  43077. [
  43078. {
  43079. name: "Normal",
  43080. height: math.unit(4, "feet"),
  43081. default: true
  43082. },
  43083. {
  43084. name: "Macro",
  43085. height: math.unit(32, "meters")
  43086. },
  43087. {
  43088. name: "Macro+",
  43089. height: math.unit(150, "meters")
  43090. },
  43091. {
  43092. name: "Megamacro",
  43093. height: math.unit(7500, "meters")
  43094. },
  43095. {
  43096. name: "Megamacro+",
  43097. height: math.unit(80, "kilometers")
  43098. },
  43099. ]
  43100. ))
  43101. characterMakers.push(() => makeCharacter(
  43102. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43103. {
  43104. side: {
  43105. height: math.unit(5 + 11/12, "feet"),
  43106. weight: math.unit(236, "lb"),
  43107. name: "Side",
  43108. image: {
  43109. source: "./media/characters/gapp/side.svg",
  43110. extra: 775/340,
  43111. bottom: 58/833
  43112. }
  43113. },
  43114. mouth: {
  43115. height: math.unit(2.98, "feet"),
  43116. name: "Mouth",
  43117. image: {
  43118. source: "./media/characters/gapp/mouth.svg"
  43119. }
  43120. },
  43121. },
  43122. [
  43123. {
  43124. name: "Normal",
  43125. height: math.unit(5 + 1/12, "feet"),
  43126. default: true
  43127. },
  43128. ]
  43129. ))
  43130. characterMakers.push(() => makeCharacter(
  43131. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43132. {
  43133. front: {
  43134. height: math.unit(6, "feet"),
  43135. name: "Front",
  43136. image: {
  43137. source: "./media/characters/persephone/front.svg",
  43138. extra: 1895/1717,
  43139. bottom: 96/1991
  43140. }
  43141. },
  43142. back: {
  43143. height: math.unit(6, "feet"),
  43144. name: "Back",
  43145. image: {
  43146. source: "./media/characters/persephone/back.svg",
  43147. extra: 1868/1679,
  43148. bottom: 26/1894
  43149. }
  43150. },
  43151. casual: {
  43152. height: math.unit(6, "feet"),
  43153. name: "Casual",
  43154. image: {
  43155. source: "./media/characters/persephone/casual.svg",
  43156. extra: 1713/1541,
  43157. bottom: 76/1789
  43158. }
  43159. },
  43160. },
  43161. [
  43162. {
  43163. name: "Human Size",
  43164. height: math.unit(6, "feet")
  43165. },
  43166. {
  43167. name: "Big Steppy",
  43168. height: math.unit(600, "meters"),
  43169. default: true
  43170. },
  43171. {
  43172. name: "Galaxy Brain",
  43173. height: math.unit(1, "zettameter")
  43174. },
  43175. ]
  43176. ))
  43177. characterMakers.push(() => makeCharacter(
  43178. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43179. {
  43180. front: {
  43181. height: math.unit(1.85, "meters"),
  43182. name: "Front",
  43183. image: {
  43184. source: "./media/characters/riley-foxthing/front.svg",
  43185. extra: 1495/1354,
  43186. bottom: 122/1617
  43187. }
  43188. },
  43189. frontAlt: {
  43190. height: math.unit(1.85, "meters"),
  43191. name: "Front (Alt)",
  43192. image: {
  43193. source: "./media/characters/riley-foxthing/front-alt.svg",
  43194. extra: 1572/1389,
  43195. bottom: 116/1688
  43196. }
  43197. },
  43198. },
  43199. [
  43200. {
  43201. name: "Normal Sized",
  43202. height: math.unit(1.85, "meters"),
  43203. default: true
  43204. },
  43205. {
  43206. name: "Quite Sizable",
  43207. height: math.unit(5, "meters")
  43208. },
  43209. {
  43210. name: "Rather Large",
  43211. height: math.unit(20, "meters")
  43212. },
  43213. {
  43214. name: "Macro",
  43215. height: math.unit(450, "meters")
  43216. },
  43217. {
  43218. name: "Giga",
  43219. height: math.unit(5, "km")
  43220. },
  43221. ]
  43222. ))
  43223. characterMakers.push(() => makeCharacter(
  43224. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43225. {
  43226. front: {
  43227. height: math.unit(6, "feet"),
  43228. weight: math.unit(200, "lb"),
  43229. name: "Front",
  43230. image: {
  43231. source: "./media/characters/blizzard/front.svg",
  43232. extra: 1136/990,
  43233. bottom: 136/1272
  43234. }
  43235. },
  43236. back: {
  43237. height: math.unit(6, "feet"),
  43238. weight: math.unit(200, "lb"),
  43239. name: "Back",
  43240. image: {
  43241. source: "./media/characters/blizzard/back.svg",
  43242. extra: 1175/1034,
  43243. bottom: 97/1272
  43244. }
  43245. },
  43246. sitting: {
  43247. height: math.unit(3.725, "feet"),
  43248. weight: math.unit(200, "lb"),
  43249. name: "Sitting",
  43250. image: {
  43251. source: "./media/characters/blizzard/sitting.svg",
  43252. extra: 581/485,
  43253. bottom: 90/671
  43254. }
  43255. },
  43256. frontWizard: {
  43257. height: math.unit(7.9, "feet"),
  43258. weight: math.unit(200, "lb"),
  43259. name: "Front (Wizard)",
  43260. image: {
  43261. source: "./media/characters/blizzard/front-wizard.svg"
  43262. }
  43263. },
  43264. backWizard: {
  43265. height: math.unit(7.9, "feet"),
  43266. weight: math.unit(200, "lb"),
  43267. name: "Back (Wizard)",
  43268. image: {
  43269. source: "./media/characters/blizzard/back-wizard.svg"
  43270. }
  43271. },
  43272. frontNsfw: {
  43273. height: math.unit(6, "feet"),
  43274. weight: math.unit(200, "lb"),
  43275. name: "Front (NSFW)",
  43276. image: {
  43277. source: "./media/characters/blizzard/front-nsfw.svg",
  43278. extra: 1136/990,
  43279. bottom: 136/1272
  43280. }
  43281. },
  43282. backNsfw: {
  43283. height: math.unit(6, "feet"),
  43284. weight: math.unit(200, "lb"),
  43285. name: "Back (NSFW)",
  43286. image: {
  43287. source: "./media/characters/blizzard/back-nsfw.svg",
  43288. extra: 1175/1034,
  43289. bottom: 97/1272
  43290. }
  43291. },
  43292. sittingNsfw: {
  43293. height: math.unit(3.725, "feet"),
  43294. weight: math.unit(200, "lb"),
  43295. name: "Sitting (NSFW)",
  43296. image: {
  43297. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43298. extra: 581/485,
  43299. bottom: 90/671
  43300. }
  43301. },
  43302. wizardFrontNsfw: {
  43303. height: math.unit(7.9, "feet"),
  43304. weight: math.unit(200, "lb"),
  43305. name: "Wizard (Front, NSFW)",
  43306. image: {
  43307. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43308. }
  43309. },
  43310. },
  43311. [
  43312. {
  43313. name: "Normal",
  43314. height: math.unit(6, "feet"),
  43315. default: true
  43316. },
  43317. ]
  43318. ))
  43319. characterMakers.push(() => makeCharacter(
  43320. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43321. {
  43322. front: {
  43323. height: math.unit(5 + 2/12, "feet"),
  43324. name: "Front",
  43325. image: {
  43326. source: "./media/characters/lumi/front.svg",
  43327. extra: 1328/1268,
  43328. bottom: 103/1431
  43329. }
  43330. },
  43331. back: {
  43332. height: math.unit(5 + 2/12, "feet"),
  43333. name: "Back",
  43334. image: {
  43335. source: "./media/characters/lumi/back.svg",
  43336. extra: 1381/1327,
  43337. bottom: 43/1424
  43338. }
  43339. },
  43340. },
  43341. [
  43342. {
  43343. name: "Normal",
  43344. height: math.unit(5 + 2/12, "feet"),
  43345. default: true
  43346. },
  43347. ]
  43348. ))
  43349. characterMakers.push(() => makeCharacter(
  43350. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43351. {
  43352. front: {
  43353. height: math.unit(5 + 9/12, "feet"),
  43354. name: "Front",
  43355. image: {
  43356. source: "./media/characters/aliya-cotton/front.svg",
  43357. extra: 577/564,
  43358. bottom: 29/606
  43359. }
  43360. },
  43361. },
  43362. [
  43363. {
  43364. name: "Normal",
  43365. height: math.unit(5 + 9/12, "feet"),
  43366. default: true
  43367. },
  43368. ]
  43369. ))
  43370. characterMakers.push(() => makeCharacter(
  43371. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43372. {
  43373. front: {
  43374. height: math.unit(2.7, "meters"),
  43375. weight: math.unit(25000, "lb"),
  43376. name: "Front",
  43377. image: {
  43378. source: "./media/characters/noah-luxray/front.svg",
  43379. extra: 1644/825,
  43380. bottom: 339/1983
  43381. }
  43382. },
  43383. side: {
  43384. height: math.unit(2.97, "meters"),
  43385. weight: math.unit(25000, "lb"),
  43386. name: "Side",
  43387. image: {
  43388. source: "./media/characters/noah-luxray/side.svg",
  43389. extra: 1319/650,
  43390. bottom: 163/1482
  43391. }
  43392. },
  43393. dick: {
  43394. height: math.unit(7.4, "feet"),
  43395. weight: math.unit(2500, "lb"),
  43396. name: "Dick",
  43397. image: {
  43398. source: "./media/characters/noah-luxray/dick.svg"
  43399. }
  43400. },
  43401. dickAlt: {
  43402. height: math.unit(10.83, "feet"),
  43403. weight: math.unit(2500, "lb"),
  43404. name: "Dick-alt",
  43405. image: {
  43406. source: "./media/characters/noah-luxray/dick-alt.svg"
  43407. }
  43408. },
  43409. },
  43410. [
  43411. {
  43412. name: "BIG",
  43413. height: math.unit(2.7, "meters"),
  43414. default: true
  43415. },
  43416. ]
  43417. ))
  43418. characterMakers.push(() => makeCharacter(
  43419. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43420. {
  43421. standing: {
  43422. height: math.unit(183, "cm"),
  43423. weight: math.unit(68, "kg"),
  43424. name: "Standing",
  43425. image: {
  43426. source: "./media/characters/arion/standing.svg",
  43427. extra: 1869/1807,
  43428. bottom: 93/1962
  43429. }
  43430. },
  43431. reclining: {
  43432. height: math.unit(70.5, "cm"),
  43433. weight: math.unit(68, "lb"),
  43434. name: "Reclining",
  43435. image: {
  43436. source: "./media/characters/arion/reclining.svg",
  43437. extra: 937/870,
  43438. bottom: 63/1000
  43439. }
  43440. },
  43441. },
  43442. [
  43443. {
  43444. name: "Colossus Size, Low",
  43445. height: math.unit(33, "meters"),
  43446. default: true
  43447. },
  43448. {
  43449. name: "Colossus Size, Mid",
  43450. height: math.unit(52, "meters")
  43451. },
  43452. {
  43453. name: "Colossus Size, High",
  43454. height: math.unit(60, "meters")
  43455. },
  43456. {
  43457. name: "Titan Size, Low",
  43458. height: math.unit(91, "meters"),
  43459. },
  43460. {
  43461. name: "Titan Size, Mid",
  43462. height: math.unit(122, "meters")
  43463. },
  43464. {
  43465. name: "Titan Size, High",
  43466. height: math.unit(162, "meters")
  43467. },
  43468. ]
  43469. ))
  43470. characterMakers.push(() => makeCharacter(
  43471. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43472. {
  43473. front: {
  43474. height: math.unit(53, "meters"),
  43475. name: "Front",
  43476. image: {
  43477. source: "./media/characters/stellar-marbey/front.svg",
  43478. extra: 1913/1805,
  43479. bottom: 92/2005
  43480. }
  43481. },
  43482. back: {
  43483. height: math.unit(53, "meters"),
  43484. name: "Back",
  43485. image: {
  43486. source: "./media/characters/stellar-marbey/back.svg",
  43487. extra: 1960/1851,
  43488. bottom: 28/1988
  43489. }
  43490. },
  43491. mouth: {
  43492. height: math.unit(3.5, "meters"),
  43493. name: "Mouth",
  43494. image: {
  43495. source: "./media/characters/stellar-marbey/mouth.svg"
  43496. }
  43497. },
  43498. },
  43499. [
  43500. {
  43501. name: "Macro",
  43502. height: math.unit(53, "meters"),
  43503. default: true
  43504. },
  43505. ]
  43506. ))
  43507. characterMakers.push(() => makeCharacter(
  43508. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43509. {
  43510. front: {
  43511. height: math.unit(8 + 1/12, "feet"),
  43512. weight: math.unit(233, "lb"),
  43513. name: "Front",
  43514. image: {
  43515. source: "./media/characters/matsu/front.svg",
  43516. extra: 832/772,
  43517. bottom: 40/872
  43518. }
  43519. },
  43520. back: {
  43521. height: math.unit(8 + 1/12, "feet"),
  43522. weight: math.unit(233, "lb"),
  43523. name: "Back",
  43524. image: {
  43525. source: "./media/characters/matsu/back.svg",
  43526. extra: 839/780,
  43527. bottom: 47/886
  43528. }
  43529. },
  43530. },
  43531. [
  43532. {
  43533. name: "Normal",
  43534. height: math.unit(8 + 1/12, "feet"),
  43535. default: true
  43536. },
  43537. ]
  43538. ))
  43539. characterMakers.push(() => makeCharacter(
  43540. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43541. {
  43542. front: {
  43543. height: math.unit(4, "feet"),
  43544. weight: math.unit(148, "lb"),
  43545. name: "Front",
  43546. image: {
  43547. source: "./media/characters/thiz/front.svg",
  43548. extra: 1913/1748,
  43549. bottom: 62/1975
  43550. }
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(4, "feet"),
  43557. default: true
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43563. {
  43564. front: {
  43565. height: math.unit(7 + 6/12, "feet"),
  43566. weight: math.unit(267, "lb"),
  43567. name: "Front",
  43568. image: {
  43569. source: "./media/characters/marcel/front.svg",
  43570. extra: 1221/1096,
  43571. bottom: 76/1297
  43572. }
  43573. },
  43574. },
  43575. [
  43576. {
  43577. name: "Normal",
  43578. height: math.unit(7 + 6/12, "feet"),
  43579. default: true
  43580. },
  43581. ]
  43582. ))
  43583. characterMakers.push(() => makeCharacter(
  43584. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43585. {
  43586. side: {
  43587. height: math.unit(42, "meters"),
  43588. name: "Side",
  43589. image: {
  43590. source: "./media/characters/flake/side.svg",
  43591. extra: 1525/1306,
  43592. bottom: 209/1734
  43593. }
  43594. },
  43595. },
  43596. [
  43597. {
  43598. name: "Normal",
  43599. height: math.unit(42, "meters"),
  43600. default: true
  43601. },
  43602. ]
  43603. ))
  43604. characterMakers.push(() => makeCharacter(
  43605. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43606. {
  43607. dressed: {
  43608. height: math.unit(6 + 4/12, "feet"),
  43609. weight: math.unit(520, "lb"),
  43610. name: "Dressed",
  43611. image: {
  43612. source: "./media/characters/someonne/dressed.svg",
  43613. extra: 1020/1010,
  43614. bottom: 178/1198
  43615. }
  43616. },
  43617. undressed: {
  43618. height: math.unit(6 + 4/12, "feet"),
  43619. weight: math.unit(520, "lb"),
  43620. name: "Undressed",
  43621. image: {
  43622. source: "./media/characters/someonne/undressed.svg",
  43623. extra: 1019/1014,
  43624. bottom: 169/1188
  43625. }
  43626. },
  43627. },
  43628. [
  43629. {
  43630. name: "Normal",
  43631. height: math.unit(6 + 4/12, "feet"),
  43632. default: true
  43633. },
  43634. ]
  43635. ))
  43636. characterMakers.push(() => makeCharacter(
  43637. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43638. {
  43639. front: {
  43640. height: math.unit(3, "feet"),
  43641. weight: math.unit(30, "lb"),
  43642. name: "Front",
  43643. image: {
  43644. source: "./media/characters/till/front.svg",
  43645. extra: 892/823,
  43646. bottom: 55/947
  43647. }
  43648. },
  43649. },
  43650. [
  43651. {
  43652. name: "Normal",
  43653. height: math.unit(3, "feet"),
  43654. default: true
  43655. },
  43656. ]
  43657. ))
  43658. characterMakers.push(() => makeCharacter(
  43659. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43660. {
  43661. front: {
  43662. height: math.unit(9 + 8/12, "feet"),
  43663. weight: math.unit(800, "lb"),
  43664. name: "Front",
  43665. image: {
  43666. source: "./media/characters/sydney-heki/front.svg",
  43667. extra: 1360/1300,
  43668. bottom: 22/1382
  43669. }
  43670. },
  43671. back: {
  43672. height: math.unit(9 + 8/12, "feet"),
  43673. weight: math.unit(800, "lb"),
  43674. name: "Back",
  43675. image: {
  43676. source: "./media/characters/sydney-heki/back.svg",
  43677. extra: 1356/1293,
  43678. bottom: 12/1368
  43679. }
  43680. },
  43681. frontDressed: {
  43682. height: math.unit(9 + 8/12, "feet"),
  43683. weight: math.unit(800, "lb"),
  43684. name: "Front-dressed",
  43685. image: {
  43686. source: "./media/characters/sydney-heki/front-dressed.svg",
  43687. extra: 1360/1300,
  43688. bottom: 22/1382
  43689. }
  43690. },
  43691. },
  43692. [
  43693. {
  43694. name: "Normal",
  43695. height: math.unit(9 + 8/12, "feet"),
  43696. default: true
  43697. },
  43698. {
  43699. name: "Macro",
  43700. height: math.unit(500, "feet")
  43701. },
  43702. {
  43703. name: "Megamacro",
  43704. height: math.unit(3.6, "miles")
  43705. },
  43706. ]
  43707. ))
  43708. characterMakers.push(() => makeCharacter(
  43709. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43710. {
  43711. front: {
  43712. height: math.unit(200, "cm"),
  43713. weight: math.unit(250, "lb"),
  43714. name: "Front",
  43715. image: {
  43716. source: "./media/characters/fowler-karlsson/front.svg",
  43717. extra: 897/845,
  43718. bottom: 123/1020
  43719. }
  43720. },
  43721. back: {
  43722. height: math.unit(200, "cm"),
  43723. weight: math.unit(250, "lb"),
  43724. name: "Back",
  43725. image: {
  43726. source: "./media/characters/fowler-karlsson/back.svg",
  43727. extra: 999/944,
  43728. bottom: 26/1025
  43729. }
  43730. },
  43731. dick: {
  43732. height: math.unit(1.92, "feet"),
  43733. weight: math.unit(150, "lb"),
  43734. name: "Dick",
  43735. image: {
  43736. source: "./media/characters/fowler-karlsson/dick.svg"
  43737. }
  43738. },
  43739. },
  43740. [
  43741. {
  43742. name: "Normal",
  43743. height: math.unit(200, "cm"),
  43744. default: true
  43745. },
  43746. {
  43747. name: "Smaller Macro",
  43748. height: math.unit(90, "m")
  43749. },
  43750. {
  43751. name: "Macro",
  43752. height: math.unit(150, "m")
  43753. },
  43754. {
  43755. name: "Bigger Macro",
  43756. height: math.unit(300, "m")
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43762. {
  43763. side: {
  43764. height: math.unit(8 + 2/12, "feet"),
  43765. weight: math.unit(1, "tonne"),
  43766. name: "Side",
  43767. image: {
  43768. source: "./media/characters/rylide/side.svg",
  43769. extra: 1318/1034,
  43770. bottom: 106/1424
  43771. }
  43772. },
  43773. sitting: {
  43774. height: math.unit(303, "cm"),
  43775. weight: math.unit(1, "tonne"),
  43776. name: "Sitting",
  43777. image: {
  43778. source: "./media/characters/rylide/sitting.svg",
  43779. extra: 1303/1103,
  43780. bottom: 36/1339
  43781. }
  43782. },
  43783. },
  43784. [
  43785. {
  43786. name: "Normal",
  43787. height: math.unit(8 + 2/12, "feet"),
  43788. default: true
  43789. },
  43790. ]
  43791. ))
  43792. characterMakers.push(() => makeCharacter(
  43793. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43794. {
  43795. front: {
  43796. height: math.unit(5 + 10/12, "feet"),
  43797. weight: math.unit(160, "lb"),
  43798. name: "Front",
  43799. image: {
  43800. source: "./media/characters/pudask/front.svg",
  43801. extra: 1616/1590,
  43802. bottom: 161/1777
  43803. }
  43804. },
  43805. },
  43806. [
  43807. {
  43808. name: "Ferret Height",
  43809. height: math.unit(2 + 5/12, "feet")
  43810. },
  43811. {
  43812. name: "Canon Height",
  43813. height: math.unit(5 + 10/12, "feet"),
  43814. default: true
  43815. },
  43816. ]
  43817. ))
  43818. characterMakers.push(() => makeCharacter(
  43819. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43820. {
  43821. front: {
  43822. height: math.unit(3 + 6/12, "feet"),
  43823. weight: math.unit(60, "lb"),
  43824. name: "Front",
  43825. image: {
  43826. source: "./media/characters/ramita/front.svg",
  43827. extra: 1402/1232,
  43828. bottom: 62/1464
  43829. }
  43830. },
  43831. dressed: {
  43832. height: math.unit(3 + 6/12, "feet"),
  43833. weight: math.unit(60, "lb"),
  43834. name: "Dressed",
  43835. image: {
  43836. source: "./media/characters/ramita/dressed.svg",
  43837. extra: 1534/1249,
  43838. bottom: 50/1584
  43839. }
  43840. },
  43841. },
  43842. [
  43843. {
  43844. name: "Normal",
  43845. height: math.unit(3 + 6/12, "feet"),
  43846. default: true
  43847. },
  43848. ]
  43849. ))
  43850. characterMakers.push(() => makeCharacter(
  43851. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43852. {
  43853. front: {
  43854. height: math.unit(8, "feet"),
  43855. name: "Front",
  43856. image: {
  43857. source: "./media/characters/ark/front.svg",
  43858. extra: 772/693,
  43859. bottom: 45/817
  43860. }
  43861. },
  43862. },
  43863. [
  43864. {
  43865. name: "Normal",
  43866. height: math.unit(8, "feet"),
  43867. default: true
  43868. },
  43869. ]
  43870. ))
  43871. characterMakers.push(() => makeCharacter(
  43872. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43873. {
  43874. front: {
  43875. height: math.unit(6, "feet"),
  43876. weight: math.unit(250, "lb"),
  43877. volume: math.unit(5/8, "gallons"),
  43878. name: "Front",
  43879. image: {
  43880. source: "./media/characters/ludwig-horn/front.svg",
  43881. extra: 1782/1635,
  43882. bottom: 96/1878
  43883. }
  43884. },
  43885. back: {
  43886. height: math.unit(6, "feet"),
  43887. weight: math.unit(250, "lb"),
  43888. volume: math.unit(5/8, "gallons"),
  43889. name: "Back",
  43890. image: {
  43891. source: "./media/characters/ludwig-horn/back.svg",
  43892. extra: 1874/1729,
  43893. bottom: 27/1901
  43894. }
  43895. },
  43896. dick: {
  43897. height: math.unit(1.05, "feet"),
  43898. weight: math.unit(15, "lb"),
  43899. volume: math.unit(5/8, "gallons"),
  43900. name: "Dick",
  43901. image: {
  43902. source: "./media/characters/ludwig-horn/dick.svg"
  43903. }
  43904. },
  43905. },
  43906. [
  43907. {
  43908. name: "Small",
  43909. height: math.unit(6, "feet")
  43910. },
  43911. {
  43912. name: "Typical",
  43913. height: math.unit(12, "feet"),
  43914. default: true
  43915. },
  43916. {
  43917. name: "Building",
  43918. height: math.unit(80, "feet")
  43919. },
  43920. {
  43921. name: "Town",
  43922. height: math.unit(800, "feet")
  43923. },
  43924. {
  43925. name: "Kingdom",
  43926. height: math.unit(80000, "feet")
  43927. },
  43928. {
  43929. name: "Planet",
  43930. height: math.unit(8000000, "feet")
  43931. },
  43932. {
  43933. name: "Universe",
  43934. height: math.unit(8000000000, "feet")
  43935. },
  43936. {
  43937. name: "Transcended",
  43938. height: math.unit(8e27, "feet")
  43939. },
  43940. ]
  43941. ))
  43942. characterMakers.push(() => makeCharacter(
  43943. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43944. {
  43945. front: {
  43946. height: math.unit(5, "feet"),
  43947. weight: math.unit(50, "kg"),
  43948. name: "Front",
  43949. image: {
  43950. source: "./media/characters/biot-avery/front.svg",
  43951. extra: 1295/1232,
  43952. bottom: 86/1381
  43953. }
  43954. },
  43955. },
  43956. [
  43957. {
  43958. name: "Normal",
  43959. height: math.unit(5, "feet"),
  43960. default: true
  43961. },
  43962. ]
  43963. ))
  43964. characterMakers.push(() => makeCharacter(
  43965. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43966. {
  43967. front: {
  43968. height: math.unit(6, "feet"),
  43969. name: "Front",
  43970. image: {
  43971. source: "./media/characters/kitsune-kiro/front.svg",
  43972. extra: 1270/1158,
  43973. bottom: 42/1312
  43974. }
  43975. },
  43976. frontAlt: {
  43977. height: math.unit(6, "feet"),
  43978. name: "Front-alt",
  43979. image: {
  43980. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43981. extra: 1130/1081,
  43982. bottom: 36/1166
  43983. }
  43984. },
  43985. },
  43986. [
  43987. {
  43988. name: "Smol",
  43989. height: math.unit(3, "feet")
  43990. },
  43991. {
  43992. name: "Normal",
  43993. height: math.unit(6, "feet"),
  43994. default: true
  43995. },
  43996. ]
  43997. ))
  43998. characterMakers.push(() => makeCharacter(
  43999. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44000. {
  44001. front: {
  44002. height: math.unit(6, "feet"),
  44003. weight: math.unit(125, "lb"),
  44004. name: "Front",
  44005. image: {
  44006. source: "./media/characters/jack-thatcher/front.svg",
  44007. extra: 1474/1370,
  44008. bottom: 26/1500
  44009. }
  44010. },
  44011. back: {
  44012. height: math.unit(6, "feet"),
  44013. weight: math.unit(125, "lb"),
  44014. name: "Back",
  44015. image: {
  44016. source: "./media/characters/jack-thatcher/back.svg",
  44017. extra: 1489/1384,
  44018. bottom: 18/1507
  44019. }
  44020. },
  44021. },
  44022. [
  44023. {
  44024. name: "Normal",
  44025. height: math.unit(6, "feet"),
  44026. default: true
  44027. },
  44028. {
  44029. name: "Macro",
  44030. height: math.unit(75, "feet")
  44031. },
  44032. {
  44033. name: "Macro-er",
  44034. height: math.unit(250, "feet")
  44035. },
  44036. ]
  44037. ))
  44038. characterMakers.push(() => makeCharacter(
  44039. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44040. {
  44041. front: {
  44042. height: math.unit(7, "feet"),
  44043. weight: math.unit(110, "kg"),
  44044. name: "Front",
  44045. image: {
  44046. source: "./media/characters/max-hyper/front.svg",
  44047. extra: 1969/1881,
  44048. bottom: 49/2018
  44049. }
  44050. },
  44051. },
  44052. [
  44053. {
  44054. name: "Normal",
  44055. height: math.unit(7, "feet"),
  44056. default: true
  44057. },
  44058. ]
  44059. ))
  44060. characterMakers.push(() => makeCharacter(
  44061. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44062. {
  44063. front: {
  44064. height: math.unit(5 + 5/12, "feet"),
  44065. weight: math.unit(160, "lb"),
  44066. name: "Front",
  44067. image: {
  44068. source: "./media/characters/spook/front.svg",
  44069. extra: 794/791,
  44070. bottom: 54/848
  44071. }
  44072. },
  44073. back: {
  44074. height: math.unit(5 + 5/12, "feet"),
  44075. weight: math.unit(160, "lb"),
  44076. name: "Back",
  44077. image: {
  44078. source: "./media/characters/spook/back.svg",
  44079. extra: 812/798,
  44080. bottom: 32/844
  44081. }
  44082. },
  44083. },
  44084. [
  44085. {
  44086. name: "Normal",
  44087. height: math.unit(5 + 5/12, "feet"),
  44088. default: true
  44089. },
  44090. ]
  44091. ))
  44092. characterMakers.push(() => makeCharacter(
  44093. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44094. {
  44095. front: {
  44096. height: math.unit(18, "feet"),
  44097. name: "Front",
  44098. image: {
  44099. source: "./media/characters/xeaduulix/front.svg",
  44100. extra: 1380/1166,
  44101. bottom: 110/1490
  44102. }
  44103. },
  44104. back: {
  44105. height: math.unit(18, "feet"),
  44106. name: "Back",
  44107. image: {
  44108. source: "./media/characters/xeaduulix/back.svg",
  44109. extra: 1592/1170,
  44110. bottom: 128/1720
  44111. }
  44112. },
  44113. frontNsfw: {
  44114. height: math.unit(18, "feet"),
  44115. name: "Front (NSFW)",
  44116. image: {
  44117. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44118. extra: 1380/1166,
  44119. bottom: 110/1490
  44120. }
  44121. },
  44122. backNsfw: {
  44123. height: math.unit(18, "feet"),
  44124. name: "Back (NSFW)",
  44125. image: {
  44126. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44127. extra: 1592/1170,
  44128. bottom: 128/1720
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Normal",
  44135. height: math.unit(18, "feet"),
  44136. default: true
  44137. },
  44138. ]
  44139. ))
  44140. characterMakers.push(() => makeCharacter(
  44141. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44142. {
  44143. spreadWings: {
  44144. height: math.unit(20, "feet"),
  44145. name: "Spread Wings",
  44146. image: {
  44147. source: "./media/characters/fledge/spread-wings.svg",
  44148. extra: 693/635,
  44149. bottom: 26/719
  44150. }
  44151. },
  44152. front: {
  44153. height: math.unit(20, "feet"),
  44154. name: "Front",
  44155. image: {
  44156. source: "./media/characters/fledge/front.svg",
  44157. extra: 684/637,
  44158. bottom: 18/702
  44159. }
  44160. },
  44161. frontAlt: {
  44162. height: math.unit(20, "feet"),
  44163. name: "Front (Alt)",
  44164. image: {
  44165. source: "./media/characters/fledge/front-alt.svg",
  44166. extra: 708/664,
  44167. bottom: 13/721
  44168. }
  44169. },
  44170. back: {
  44171. height: math.unit(20, "feet"),
  44172. name: "Back",
  44173. image: {
  44174. source: "./media/characters/fledge/back.svg",
  44175. extra: 718/634,
  44176. bottom: 22/740
  44177. }
  44178. },
  44179. head: {
  44180. height: math.unit(5.55, "feet"),
  44181. name: "Head",
  44182. image: {
  44183. source: "./media/characters/fledge/head.svg"
  44184. }
  44185. },
  44186. headAlt: {
  44187. height: math.unit(5.1, "feet"),
  44188. name: "Head (Alt)",
  44189. image: {
  44190. source: "./media/characters/fledge/head-alt.svg"
  44191. }
  44192. },
  44193. },
  44194. [
  44195. {
  44196. name: "Small",
  44197. height: math.unit(6 + 2/12, "feet")
  44198. },
  44199. {
  44200. name: "Big",
  44201. height: math.unit(20, "feet"),
  44202. default: true
  44203. },
  44204. {
  44205. name: "Giant",
  44206. height: math.unit(100, "feet")
  44207. },
  44208. {
  44209. name: "Macro",
  44210. height: math.unit(200, "feet")
  44211. },
  44212. ]
  44213. ))
  44214. characterMakers.push(() => makeCharacter(
  44215. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44216. {
  44217. front: {
  44218. height: math.unit(1, "meter"),
  44219. name: "Front",
  44220. image: {
  44221. source: "./media/characters/atlas-morenai/front.svg",
  44222. extra: 1275/1043,
  44223. bottom: 19/1294
  44224. }
  44225. },
  44226. back: {
  44227. height: math.unit(1, "meter"),
  44228. name: "Back",
  44229. image: {
  44230. source: "./media/characters/atlas-morenai/back.svg",
  44231. extra: 1141/1001,
  44232. bottom: 25/1166
  44233. }
  44234. },
  44235. },
  44236. [
  44237. {
  44238. name: "Normal",
  44239. height: math.unit(1, "meter"),
  44240. default: true
  44241. },
  44242. {
  44243. name: "Magic-Infused",
  44244. height: math.unit(5, "meters")
  44245. },
  44246. ]
  44247. ))
  44248. characterMakers.push(() => makeCharacter(
  44249. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44250. {
  44251. front: {
  44252. height: math.unit(5, "meters"),
  44253. name: "Front",
  44254. image: {
  44255. source: "./media/characters/cintia/front.svg",
  44256. extra: 1312/1228,
  44257. bottom: 38/1350
  44258. }
  44259. },
  44260. back: {
  44261. height: math.unit(5, "meters"),
  44262. name: "Back",
  44263. image: {
  44264. source: "./media/characters/cintia/back.svg",
  44265. extra: 1260/1166,
  44266. bottom: 98/1358
  44267. }
  44268. },
  44269. frontDick: {
  44270. height: math.unit(5, "meters"),
  44271. name: "Front (Dick)",
  44272. image: {
  44273. source: "./media/characters/cintia/front-dick.svg",
  44274. extra: 1312/1228,
  44275. bottom: 38/1350
  44276. }
  44277. },
  44278. backDick: {
  44279. height: math.unit(5, "meters"),
  44280. name: "Back (Dick)",
  44281. image: {
  44282. source: "./media/characters/cintia/back-dick.svg",
  44283. extra: 1260/1166,
  44284. bottom: 98/1358
  44285. }
  44286. },
  44287. bust: {
  44288. height: math.unit(1.97, "meters"),
  44289. name: "Bust",
  44290. image: {
  44291. source: "./media/characters/cintia/bust.svg",
  44292. extra: 617/565,
  44293. bottom: 0/617
  44294. }
  44295. },
  44296. },
  44297. [
  44298. {
  44299. name: "Normal",
  44300. height: math.unit(5, "meters"),
  44301. default: true
  44302. },
  44303. ]
  44304. ))
  44305. characterMakers.push(() => makeCharacter(
  44306. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44307. {
  44308. side: {
  44309. height: math.unit(100, "feet"),
  44310. name: "Side",
  44311. image: {
  44312. source: "./media/characters/denora/side.svg",
  44313. extra: 875/803,
  44314. bottom: 9/884
  44315. }
  44316. },
  44317. },
  44318. [
  44319. {
  44320. name: "Standard",
  44321. height: math.unit(100, "feet"),
  44322. default: true
  44323. },
  44324. {
  44325. name: "Grand",
  44326. height: math.unit(1000, "feet")
  44327. },
  44328. {
  44329. name: "Conquering",
  44330. height: math.unit(10000, "feet")
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44336. {
  44337. dressed: {
  44338. height: math.unit(8 + 5/12, "feet"),
  44339. weight: math.unit(700, "lb"),
  44340. name: "Dressed",
  44341. image: {
  44342. source: "./media/characters/kiva/dressed.svg",
  44343. extra: 1102/1055,
  44344. bottom: 60/1162
  44345. }
  44346. },
  44347. nude: {
  44348. height: math.unit(8 + 5/12, "feet"),
  44349. weight: math.unit(700, "lb"),
  44350. name: "Nude",
  44351. image: {
  44352. source: "./media/characters/kiva/nude.svg",
  44353. extra: 1102/1055,
  44354. bottom: 60/1162
  44355. }
  44356. },
  44357. },
  44358. [
  44359. {
  44360. name: "Base Height",
  44361. height: math.unit(8 + 5/12, "feet"),
  44362. default: true
  44363. },
  44364. {
  44365. name: "Macro",
  44366. height: math.unit(100, "feet")
  44367. },
  44368. {
  44369. name: "Max",
  44370. height: math.unit(3280, "feet")
  44371. },
  44372. ]
  44373. ))
  44374. characterMakers.push(() => makeCharacter(
  44375. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44376. {
  44377. front: {
  44378. height: math.unit(6 + 8/12, "feet"),
  44379. weight: math.unit(250, "lb"),
  44380. name: "Front",
  44381. image: {
  44382. source: "./media/characters/ztragon/front.svg",
  44383. extra: 1825/1684,
  44384. bottom: 98/1923
  44385. }
  44386. },
  44387. },
  44388. [
  44389. {
  44390. name: "Normal",
  44391. height: math.unit(6 + 8/12, "feet"),
  44392. default: true
  44393. },
  44394. {
  44395. name: "Macro",
  44396. height: math.unit(80, "feet")
  44397. },
  44398. ]
  44399. ))
  44400. characterMakers.push(() => makeCharacter(
  44401. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44402. {
  44403. front: {
  44404. height: math.unit(10.4, "feet"),
  44405. weight: math.unit(2, "tons"),
  44406. name: "Front",
  44407. image: {
  44408. source: "./media/characters/yesenia/front.svg",
  44409. extra: 1479/1474,
  44410. bottom: 233/1712
  44411. }
  44412. },
  44413. },
  44414. [
  44415. {
  44416. name: "Normal",
  44417. height: math.unit(10.4, "feet"),
  44418. default: true
  44419. },
  44420. ]
  44421. ))
  44422. characterMakers.push(() => makeCharacter(
  44423. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44424. {
  44425. normal: {
  44426. height: math.unit(6 + 1/12, "feet"),
  44427. weight: math.unit(180, "lb"),
  44428. name: "Normal",
  44429. image: {
  44430. source: "./media/characters/leanne-lycheborne/normal.svg",
  44431. extra: 1748/1660,
  44432. bottom: 98/1846
  44433. }
  44434. },
  44435. were: {
  44436. height: math.unit(12, "feet"),
  44437. weight: math.unit(1600, "lb"),
  44438. name: "Were",
  44439. image: {
  44440. source: "./media/characters/leanne-lycheborne/were.svg",
  44441. extra: 1485/1432,
  44442. bottom: 66/1551
  44443. }
  44444. },
  44445. },
  44446. [
  44447. {
  44448. name: "Normal",
  44449. height: math.unit(6 + 1/12, "feet"),
  44450. default: true
  44451. },
  44452. ]
  44453. ))
  44454. characterMakers.push(() => makeCharacter(
  44455. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44456. {
  44457. side: {
  44458. height: math.unit(13, "feet"),
  44459. name: "Side",
  44460. image: {
  44461. source: "./media/characters/kira-tyler/side.svg",
  44462. extra: 693/393,
  44463. bottom: 58/751
  44464. }
  44465. },
  44466. },
  44467. [
  44468. {
  44469. name: "Normal",
  44470. height: math.unit(13, "feet"),
  44471. default: true
  44472. },
  44473. ]
  44474. ))
  44475. characterMakers.push(() => makeCharacter(
  44476. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44477. {
  44478. front: {
  44479. height: math.unit(10.3, "feet"),
  44480. weight: math.unit(150, "lb"),
  44481. name: "Front",
  44482. image: {
  44483. source: "./media/characters/blaze/front.svg",
  44484. extra: 1378/1286,
  44485. bottom: 172/1550
  44486. }
  44487. },
  44488. },
  44489. [
  44490. {
  44491. name: "Normal",
  44492. height: math.unit(10.3, "feet"),
  44493. default: true
  44494. },
  44495. ]
  44496. ))
  44497. characterMakers.push(() => makeCharacter(
  44498. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44499. {
  44500. side: {
  44501. height: math.unit(2, "meters"),
  44502. weight: math.unit(400, "kg"),
  44503. name: "Side",
  44504. image: {
  44505. source: "./media/characters/anu/side.svg",
  44506. extra: 506/394,
  44507. bottom: 18/524
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Humanoid",
  44514. height: math.unit(2, "meters")
  44515. },
  44516. {
  44517. name: "Normal",
  44518. height: math.unit(5, "meters"),
  44519. default: true
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44525. {
  44526. front: {
  44527. height: math.unit(5 + 5/12, "feet"),
  44528. weight: math.unit(170, "lb"),
  44529. name: "Front",
  44530. image: {
  44531. source: "./media/characters/synx-the-lynx/front.svg",
  44532. extra: 1893/1745,
  44533. bottom: 17/1910
  44534. }
  44535. },
  44536. side: {
  44537. height: math.unit(5 + 5/12, "feet"),
  44538. weight: math.unit(170, "lb"),
  44539. name: "Side",
  44540. image: {
  44541. source: "./media/characters/synx-the-lynx/side.svg",
  44542. extra: 1884/1740,
  44543. bottom: 39/1923
  44544. }
  44545. },
  44546. back: {
  44547. height: math.unit(5 + 5/12, "feet"),
  44548. weight: math.unit(170, "lb"),
  44549. name: "Back",
  44550. image: {
  44551. source: "./media/characters/synx-the-lynx/back.svg",
  44552. extra: 1903/1755,
  44553. bottom: 14/1917
  44554. }
  44555. },
  44556. },
  44557. [
  44558. {
  44559. name: "Normal",
  44560. height: math.unit(5 + 5/12, "feet"),
  44561. default: true
  44562. },
  44563. ]
  44564. ))
  44565. characterMakers.push(() => makeCharacter(
  44566. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44567. {
  44568. back: {
  44569. height: math.unit(15, "feet"),
  44570. name: "Back",
  44571. image: {
  44572. source: "./media/characters/nadezda-fex/back.svg",
  44573. extra: 1695/1481,
  44574. bottom: 25/1720
  44575. }
  44576. },
  44577. },
  44578. [
  44579. {
  44580. name: "Normal",
  44581. height: math.unit(15, "feet"),
  44582. default: true
  44583. },
  44584. {
  44585. name: "Macro",
  44586. height: math.unit(2.5, "miles")
  44587. },
  44588. {
  44589. name: "Goddess",
  44590. height: math.unit(2, "multiverses")
  44591. },
  44592. ]
  44593. ))
  44594. characterMakers.push(() => makeCharacter(
  44595. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44596. {
  44597. front: {
  44598. height: math.unit(216, "cm"),
  44599. name: "Front",
  44600. image: {
  44601. source: "./media/characters/lev/front.svg",
  44602. extra: 1728/1670,
  44603. bottom: 82/1810
  44604. }
  44605. },
  44606. back: {
  44607. height: math.unit(216, "cm"),
  44608. name: "Back",
  44609. image: {
  44610. source: "./media/characters/lev/back.svg",
  44611. extra: 1738/1675,
  44612. bottom: 24/1762
  44613. }
  44614. },
  44615. dressed: {
  44616. height: math.unit(216, "cm"),
  44617. name: "Dressed",
  44618. image: {
  44619. source: "./media/characters/lev/dressed.svg",
  44620. extra: 1397/1351,
  44621. bottom: 73/1470
  44622. }
  44623. },
  44624. head: {
  44625. height: math.unit(0.51, "meter"),
  44626. name: "Head",
  44627. image: {
  44628. source: "./media/characters/lev/head.svg"
  44629. }
  44630. },
  44631. },
  44632. [
  44633. {
  44634. name: "Normal",
  44635. height: math.unit(216, "cm"),
  44636. default: true
  44637. },
  44638. {
  44639. name: "Relatively Macro",
  44640. height: math.unit(80, "meters")
  44641. },
  44642. {
  44643. name: "Megamacro",
  44644. height: math.unit(21600, "meters")
  44645. },
  44646. {
  44647. name: "Megamacro+",
  44648. height: math.unit(64800, "meters")
  44649. },
  44650. ]
  44651. ))
  44652. characterMakers.push(() => makeCharacter(
  44653. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44654. {
  44655. front: {
  44656. height: math.unit(2, "meters"),
  44657. weight: math.unit(80, "kg"),
  44658. name: "Front",
  44659. image: {
  44660. source: "./media/characters/moka/front.svg",
  44661. extra: 1337/1255,
  44662. bottom: 58/1395
  44663. }
  44664. },
  44665. },
  44666. [
  44667. {
  44668. name: "Micro",
  44669. height: math.unit(15, "cm")
  44670. },
  44671. {
  44672. name: "Normal",
  44673. height: math.unit(2, "meters"),
  44674. default: true
  44675. },
  44676. {
  44677. name: "Macro",
  44678. height: math.unit(20, "meters"),
  44679. },
  44680. ]
  44681. ))
  44682. characterMakers.push(() => makeCharacter(
  44683. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44684. {
  44685. front: {
  44686. height: math.unit(9, "feet"),
  44687. weight: math.unit(240, "lb"),
  44688. name: "Front",
  44689. image: {
  44690. source: "./media/characters/kuzco/front.svg",
  44691. extra: 1593/1487,
  44692. bottom: 32/1625
  44693. }
  44694. },
  44695. side: {
  44696. height: math.unit(9, "feet"),
  44697. weight: math.unit(240, "lb"),
  44698. name: "Side",
  44699. image: {
  44700. source: "./media/characters/kuzco/side.svg",
  44701. extra: 1575/1485,
  44702. bottom: 30/1605
  44703. }
  44704. },
  44705. back: {
  44706. height: math.unit(9, "feet"),
  44707. weight: math.unit(240, "lb"),
  44708. name: "Back",
  44709. image: {
  44710. source: "./media/characters/kuzco/back.svg",
  44711. extra: 1603/1514,
  44712. bottom: 14/1617
  44713. }
  44714. },
  44715. },
  44716. [
  44717. {
  44718. name: "Normal",
  44719. height: math.unit(9, "feet"),
  44720. default: true
  44721. },
  44722. ]
  44723. ))
  44724. characterMakers.push(() => makeCharacter(
  44725. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44726. {
  44727. side: {
  44728. height: math.unit(2, "meters"),
  44729. weight: math.unit(300, "kg"),
  44730. name: "Side",
  44731. image: {
  44732. source: "./media/characters/ceruleus/side.svg",
  44733. extra: 1068/974,
  44734. bottom: 126/1194
  44735. }
  44736. },
  44737. },
  44738. [
  44739. {
  44740. name: "Normal",
  44741. height: math.unit(16, "meters"),
  44742. default: true
  44743. },
  44744. ]
  44745. ))
  44746. characterMakers.push(() => makeCharacter(
  44747. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44748. {
  44749. front: {
  44750. height: math.unit(9, "feet"),
  44751. weight: math.unit(500, "kg"),
  44752. name: "Front",
  44753. image: {
  44754. source: "./media/characters/acouya/front.svg",
  44755. extra: 1660/1473,
  44756. bottom: 28/1688
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Normal",
  44763. height: math.unit(9, "feet"),
  44764. default: true
  44765. },
  44766. ]
  44767. ))
  44768. characterMakers.push(() => makeCharacter(
  44769. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44770. {
  44771. front: {
  44772. height: math.unit(5 + 6/12, "feet"),
  44773. weight: math.unit(195, "lb"),
  44774. name: "Front",
  44775. image: {
  44776. source: "./media/characters/vant/front.svg",
  44777. extra: 1396/1320,
  44778. bottom: 20/1416
  44779. }
  44780. },
  44781. back: {
  44782. height: math.unit(5 + 6/12, "feet"),
  44783. weight: math.unit(195, "lb"),
  44784. name: "Back",
  44785. image: {
  44786. source: "./media/characters/vant/back.svg",
  44787. extra: 1396/1320,
  44788. bottom: 20/1416
  44789. }
  44790. },
  44791. maw: {
  44792. height: math.unit(0.75, "feet"),
  44793. name: "Maw",
  44794. image: {
  44795. source: "./media/characters/vant/maw.svg"
  44796. }
  44797. },
  44798. paw: {
  44799. height: math.unit(1.07, "feet"),
  44800. name: "Paw",
  44801. image: {
  44802. source: "./media/characters/vant/paw.svg"
  44803. }
  44804. },
  44805. },
  44806. [
  44807. {
  44808. name: "Micro",
  44809. height: math.unit(0.25, "inches")
  44810. },
  44811. {
  44812. name: "Normal",
  44813. height: math.unit(5 + 6/12, "feet"),
  44814. default: true
  44815. },
  44816. {
  44817. name: "Macro",
  44818. height: math.unit(75, "feet")
  44819. },
  44820. ]
  44821. ))
  44822. characterMakers.push(() => makeCharacter(
  44823. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44824. {
  44825. front: {
  44826. height: math.unit(30, "meters"),
  44827. weight: math.unit(363, "tons"),
  44828. name: "Front",
  44829. image: {
  44830. source: "./media/characters/ahra/front.svg",
  44831. extra: 1914/1814,
  44832. bottom: 46/1960
  44833. }
  44834. },
  44835. },
  44836. [
  44837. {
  44838. name: "Macro",
  44839. height: math.unit(30, "meters"),
  44840. default: true
  44841. },
  44842. ]
  44843. ))
  44844. characterMakers.push(() => makeCharacter(
  44845. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44846. {
  44847. undressed: {
  44848. height: math.unit(2, "m"),
  44849. weight: math.unit(250, "kg"),
  44850. name: "Undressed",
  44851. image: {
  44852. source: "./media/characters/coriander/undressed.svg",
  44853. extra: 1757/1606,
  44854. bottom: 107/1864
  44855. }
  44856. },
  44857. dressed: {
  44858. height: math.unit(2, "m"),
  44859. weight: math.unit(250, "kg"),
  44860. name: "Dressed",
  44861. image: {
  44862. source: "./media/characters/coriander/dressed.svg",
  44863. extra: 1757/1606,
  44864. bottom: 107/1864
  44865. }
  44866. },
  44867. },
  44868. [
  44869. {
  44870. name: "Normal",
  44871. height: math.unit(4, "meters"),
  44872. default: true
  44873. },
  44874. {
  44875. name: "XL",
  44876. height: math.unit(6, "meters")
  44877. },
  44878. {
  44879. name: "XXL",
  44880. height: math.unit(8, "meters")
  44881. },
  44882. ]
  44883. ))
  44884. characterMakers.push(() => makeCharacter(
  44885. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44886. {
  44887. front: {
  44888. height: math.unit(6, "feet"),
  44889. name: "Front",
  44890. image: {
  44891. source: "./media/characters/syrinx/front.svg",
  44892. extra: 1557/1259,
  44893. bottom: 171/1728
  44894. }
  44895. },
  44896. },
  44897. [
  44898. {
  44899. name: "Normal",
  44900. height: math.unit(6 + 3/12, "feet"),
  44901. default: true
  44902. },
  44903. ]
  44904. ))
  44905. characterMakers.push(() => makeCharacter(
  44906. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44907. {
  44908. front: {
  44909. height: math.unit(11 + 6/12, "feet"),
  44910. weight: math.unit(1.5, "tons"),
  44911. name: "Front",
  44912. image: {
  44913. source: "./media/characters/bor/front.svg",
  44914. extra: 1189/1109,
  44915. bottom: 170/1359
  44916. }
  44917. },
  44918. },
  44919. [
  44920. {
  44921. name: "Normal",
  44922. height: math.unit(11 + 6/12, "feet"),
  44923. default: true
  44924. },
  44925. {
  44926. name: "Macro",
  44927. height: math.unit(32 + 9/12, "feet")
  44928. },
  44929. ]
  44930. ))
  44931. characterMakers.push(() => makeCharacter(
  44932. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44933. {
  44934. anthro: {
  44935. height: math.unit(9, "feet"),
  44936. weight: math.unit(2076, "lb"),
  44937. name: "Anthro",
  44938. image: {
  44939. source: "./media/characters/abacus/anthro.svg",
  44940. extra: 1540/1494,
  44941. bottom: 233/1773
  44942. }
  44943. },
  44944. pigeon: {
  44945. height: math.unit(1, "feet"),
  44946. name: "Pigeon",
  44947. image: {
  44948. source: "./media/characters/abacus/pigeon.svg",
  44949. extra: 528/525,
  44950. bottom: 46/574
  44951. }
  44952. },
  44953. },
  44954. [
  44955. {
  44956. name: "Normal",
  44957. height: math.unit(9, "feet"),
  44958. default: true
  44959. },
  44960. ]
  44961. ))
  44962. characterMakers.push(() => makeCharacter(
  44963. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44964. {
  44965. side: {
  44966. height: math.unit(6, "feet"),
  44967. name: "Side",
  44968. image: {
  44969. source: "./media/characters/delkhan/side.svg",
  44970. extra: 1884/1786,
  44971. bottom: 308/2192
  44972. }
  44973. },
  44974. head: {
  44975. height: math.unit(3.38, "feet"),
  44976. name: "Head",
  44977. image: {
  44978. source: "./media/characters/delkhan/head.svg"
  44979. }
  44980. },
  44981. },
  44982. [
  44983. {
  44984. name: "Normal",
  44985. height: math.unit(72, "feet"),
  44986. default: true
  44987. },
  44988. {
  44989. name: "Giant",
  44990. height: math.unit(172, "feet")
  44991. },
  44992. ]
  44993. ))
  44994. characterMakers.push(() => makeCharacter(
  44995. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44996. {
  44997. standing: {
  44998. height: math.unit(6, "feet"),
  44999. name: "Standing",
  45000. image: {
  45001. source: "./media/characters/euchidat/standing.svg",
  45002. extra: 1612/1553,
  45003. bottom: 116/1728
  45004. }
  45005. },
  45006. leaning: {
  45007. height: math.unit(6, "feet"),
  45008. name: "Leaning",
  45009. image: {
  45010. source: "./media/characters/euchidat/leaning.svg",
  45011. extra: 1719/1674,
  45012. bottom: 27/1746
  45013. }
  45014. },
  45015. },
  45016. [
  45017. {
  45018. name: "Normal",
  45019. height: math.unit(175, "feet"),
  45020. default: true
  45021. },
  45022. {
  45023. name: "Megamacro",
  45024. height: math.unit(190, "miles")
  45025. },
  45026. {
  45027. name: "Gigamacro",
  45028. height: math.unit(190000, "miles")
  45029. },
  45030. ]
  45031. ))
  45032. characterMakers.push(() => makeCharacter(
  45033. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45034. {
  45035. front: {
  45036. height: math.unit(6, "feet"),
  45037. weight: math.unit(150, "lb"),
  45038. name: "Front",
  45039. image: {
  45040. source: "./media/characters/rebecca-stack/front.svg",
  45041. extra: 1256/1201,
  45042. bottom: 18/1274
  45043. }
  45044. },
  45045. },
  45046. [
  45047. {
  45048. name: "Normal",
  45049. height: math.unit(5 + 8/12, "feet"),
  45050. default: true
  45051. },
  45052. {
  45053. name: "Demolitionist",
  45054. height: math.unit(200, "feet")
  45055. },
  45056. {
  45057. name: "Out of Control",
  45058. height: math.unit(2, "miles")
  45059. },
  45060. {
  45061. name: "Giga",
  45062. height: math.unit(7200, "miles")
  45063. },
  45064. ]
  45065. ))
  45066. characterMakers.push(() => makeCharacter(
  45067. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45068. {
  45069. front: {
  45070. height: math.unit(6, "feet"),
  45071. weight: math.unit(150, "lb"),
  45072. name: "Front",
  45073. image: {
  45074. source: "./media/characters/jenny-cartwright/front.svg",
  45075. extra: 1384/1376,
  45076. bottom: 58/1442
  45077. }
  45078. },
  45079. },
  45080. [
  45081. {
  45082. name: "Normal",
  45083. height: math.unit(6 + 7/12, "feet"),
  45084. default: true
  45085. },
  45086. {
  45087. name: "Librarian",
  45088. height: math.unit(55, "feet")
  45089. },
  45090. {
  45091. name: "Sightseer",
  45092. height: math.unit(50, "miles")
  45093. },
  45094. {
  45095. name: "Giga",
  45096. height: math.unit(30000, "miles")
  45097. },
  45098. ]
  45099. ))
  45100. characterMakers.push(() => makeCharacter(
  45101. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45102. {
  45103. nude: {
  45104. height: math.unit(8, "feet"),
  45105. weight: math.unit(225, "lb"),
  45106. name: "Nude",
  45107. image: {
  45108. source: "./media/characters/marvy/nude.svg",
  45109. extra: 1900/1683,
  45110. bottom: 89/1989
  45111. }
  45112. },
  45113. dressed: {
  45114. height: math.unit(8, "feet"),
  45115. weight: math.unit(225, "lb"),
  45116. name: "Dressed",
  45117. image: {
  45118. source: "./media/characters/marvy/dressed.svg",
  45119. extra: 1900/1683,
  45120. bottom: 89/1989
  45121. }
  45122. },
  45123. head: {
  45124. height: math.unit(2.85, "feet"),
  45125. name: "Head",
  45126. image: {
  45127. source: "./media/characters/marvy/head.svg"
  45128. }
  45129. },
  45130. },
  45131. [
  45132. {
  45133. name: "Normal",
  45134. height: math.unit(8, "feet"),
  45135. default: true
  45136. },
  45137. ]
  45138. ))
  45139. characterMakers.push(() => makeCharacter(
  45140. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45141. {
  45142. front: {
  45143. height: math.unit(8, "feet"),
  45144. weight: math.unit(250, "lb"),
  45145. name: "Front",
  45146. image: {
  45147. source: "./media/characters/leah/front.svg",
  45148. extra: 1257/1149,
  45149. bottom: 109/1366
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Normal",
  45156. height: math.unit(8, "feet"),
  45157. default: true
  45158. },
  45159. {
  45160. name: "Minimacro",
  45161. height: math.unit(40, "feet")
  45162. },
  45163. {
  45164. name: "Macro",
  45165. height: math.unit(124, "feet")
  45166. },
  45167. {
  45168. name: "Megamacro",
  45169. height: math.unit(850, "feet")
  45170. },
  45171. ]
  45172. ))
  45173. characterMakers.push(() => makeCharacter(
  45174. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45175. {
  45176. side: {
  45177. height: math.unit(13 + 6/12, "feet"),
  45178. weight: math.unit(3200, "lb"),
  45179. name: "Side",
  45180. image: {
  45181. source: "./media/characters/alvir/side.svg",
  45182. extra: 896/589,
  45183. bottom: 26/922
  45184. }
  45185. },
  45186. },
  45187. [
  45188. {
  45189. name: "Normal",
  45190. height: math.unit(13 + 6/12, "feet"),
  45191. default: true
  45192. },
  45193. ]
  45194. ))
  45195. characterMakers.push(() => makeCharacter(
  45196. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45197. {
  45198. front: {
  45199. height: math.unit(5 + 4/12, "feet"),
  45200. weight: math.unit(236, "lb"),
  45201. name: "Front",
  45202. image: {
  45203. source: "./media/characters/zaina-khalil/front.svg",
  45204. extra: 1533/1485,
  45205. bottom: 94/1627
  45206. }
  45207. },
  45208. side: {
  45209. height: math.unit(5 + 4/12, "feet"),
  45210. weight: math.unit(236, "lb"),
  45211. name: "Side",
  45212. image: {
  45213. source: "./media/characters/zaina-khalil/side.svg",
  45214. extra: 1537/1498,
  45215. bottom: 66/1603
  45216. }
  45217. },
  45218. back: {
  45219. height: math.unit(5 + 4/12, "feet"),
  45220. weight: math.unit(236, "lb"),
  45221. name: "Back",
  45222. image: {
  45223. source: "./media/characters/zaina-khalil/back.svg",
  45224. extra: 1546/1494,
  45225. bottom: 89/1635
  45226. }
  45227. },
  45228. },
  45229. [
  45230. {
  45231. name: "Normal",
  45232. height: math.unit(5 + 4/12, "feet"),
  45233. default: true
  45234. },
  45235. ]
  45236. ))
  45237. characterMakers.push(() => makeCharacter(
  45238. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45239. {
  45240. side: {
  45241. height: math.unit(12, "feet"),
  45242. weight: math.unit(4000, "lb"),
  45243. name: "Side",
  45244. image: {
  45245. source: "./media/characters/terry/side.svg",
  45246. extra: 1518/1439,
  45247. bottom: 149/1667
  45248. }
  45249. },
  45250. },
  45251. [
  45252. {
  45253. name: "Normal",
  45254. height: math.unit(12, "feet"),
  45255. default: true
  45256. },
  45257. ]
  45258. ))
  45259. characterMakers.push(() => makeCharacter(
  45260. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45261. {
  45262. front: {
  45263. height: math.unit(12, "feet"),
  45264. weight: math.unit(1500, "lb"),
  45265. name: "Front",
  45266. image: {
  45267. source: "./media/characters/kahea/front.svg",
  45268. extra: 1722/1617,
  45269. bottom: 179/1901
  45270. }
  45271. },
  45272. },
  45273. [
  45274. {
  45275. name: "Normal",
  45276. height: math.unit(12, "feet"),
  45277. default: true
  45278. },
  45279. ]
  45280. ))
  45281. characterMakers.push(() => makeCharacter(
  45282. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45283. {
  45284. demonFront: {
  45285. height: math.unit(36, "feet"),
  45286. name: "Front",
  45287. image: {
  45288. source: "./media/characters/alex-xuria/demon-front.svg",
  45289. extra: 1705/1673,
  45290. bottom: 198/1903
  45291. },
  45292. form: "demon",
  45293. default: true
  45294. },
  45295. demonBack: {
  45296. height: math.unit(36, "feet"),
  45297. name: "Back",
  45298. image: {
  45299. source: "./media/characters/alex-xuria/demon-back.svg",
  45300. extra: 1725/1693,
  45301. bottom: 70/1795
  45302. },
  45303. form: "demon"
  45304. },
  45305. demonHead: {
  45306. height: math.unit(2.14, "meters"),
  45307. name: "Head",
  45308. image: {
  45309. source: "./media/characters/alex-xuria/demon-head.svg"
  45310. },
  45311. form: "demon"
  45312. },
  45313. demonHand: {
  45314. height: math.unit(1.61, "meters"),
  45315. name: "Hand",
  45316. image: {
  45317. source: "./media/characters/alex-xuria/demon-hand.svg"
  45318. },
  45319. form: "demon"
  45320. },
  45321. demonPaw: {
  45322. height: math.unit(1.35, "meters"),
  45323. name: "Paw",
  45324. image: {
  45325. source: "./media/characters/alex-xuria/demon-paw.svg"
  45326. },
  45327. form: "demon"
  45328. },
  45329. demonFoot: {
  45330. height: math.unit(2.2, "meters"),
  45331. name: "Foot",
  45332. image: {
  45333. source: "./media/characters/alex-xuria/demon-foot.svg"
  45334. },
  45335. form: "demon"
  45336. },
  45337. demonCock: {
  45338. height: math.unit(1.74, "meters"),
  45339. name: "Cock",
  45340. image: {
  45341. source: "./media/characters/alex-xuria/demon-cock.svg"
  45342. },
  45343. form: "demon"
  45344. },
  45345. demonTailClosed: {
  45346. height: math.unit(1.47, "meters"),
  45347. name: "Tail (Closed)",
  45348. image: {
  45349. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45350. },
  45351. form: "demon"
  45352. },
  45353. demonTailOpen: {
  45354. height: math.unit(2.85, "meters"),
  45355. name: "Tail (Open)",
  45356. image: {
  45357. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45358. },
  45359. form: "demon"
  45360. },
  45361. incubusFront: {
  45362. height: math.unit(12, "feet"),
  45363. name: "Front",
  45364. image: {
  45365. source: "./media/characters/alex-xuria/incubus-front.svg",
  45366. extra: 1754/1677,
  45367. bottom: 125/1879
  45368. },
  45369. form: "incubus",
  45370. default: true
  45371. },
  45372. incubusBack: {
  45373. height: math.unit(12, "feet"),
  45374. name: "Back",
  45375. image: {
  45376. source: "./media/characters/alex-xuria/incubus-back.svg",
  45377. extra: 1702/1647,
  45378. bottom: 30/1732
  45379. },
  45380. form: "incubus"
  45381. },
  45382. incubusHead: {
  45383. height: math.unit(3.45, "feet"),
  45384. name: "Head",
  45385. image: {
  45386. source: "./media/characters/alex-xuria/incubus-head.svg"
  45387. },
  45388. form: "incubus"
  45389. },
  45390. rabbitFront: {
  45391. height: math.unit(6, "feet"),
  45392. name: "Front",
  45393. image: {
  45394. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45395. extra: 1369/1349,
  45396. bottom: 45/1414
  45397. },
  45398. form: "rabbit",
  45399. default: true
  45400. },
  45401. rabbitSide: {
  45402. height: math.unit(6, "feet"),
  45403. name: "Side",
  45404. image: {
  45405. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45406. extra: 1370/1356,
  45407. bottom: 37/1407
  45408. },
  45409. form: "rabbit"
  45410. },
  45411. rabbitBack: {
  45412. height: math.unit(6, "feet"),
  45413. name: "Back",
  45414. image: {
  45415. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45416. extra: 1375/1358,
  45417. bottom: 43/1418
  45418. },
  45419. form: "rabbit"
  45420. },
  45421. },
  45422. [
  45423. {
  45424. name: "Normal",
  45425. height: math.unit(6, "feet"),
  45426. default: true,
  45427. form: "rabbit"
  45428. },
  45429. {
  45430. name: "Incubus",
  45431. height: math.unit(12, "feet"),
  45432. default: true,
  45433. form: "incubus"
  45434. },
  45435. {
  45436. name: "Demon",
  45437. height: math.unit(36, "feet"),
  45438. default: true,
  45439. form: "demon"
  45440. }
  45441. ],
  45442. {
  45443. "demon": {
  45444. name: "Demon",
  45445. default: true
  45446. },
  45447. "incubus": {
  45448. name: "Incubus",
  45449. },
  45450. "rabbit": {
  45451. name: "Rabbit"
  45452. }
  45453. }
  45454. ))
  45455. characterMakers.push(() => makeCharacter(
  45456. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45457. {
  45458. front: {
  45459. height: math.unit(7 + 5/12, "feet"),
  45460. weight: math.unit(510, "lb"),
  45461. name: "Front",
  45462. image: {
  45463. source: "./media/characters/syrup/front.svg",
  45464. extra: 932/916,
  45465. bottom: 26/958
  45466. }
  45467. },
  45468. },
  45469. [
  45470. {
  45471. name: "Normal",
  45472. height: math.unit(7 + 5/12, "feet"),
  45473. default: true
  45474. },
  45475. {
  45476. name: "Big",
  45477. height: math.unit(50, "feet")
  45478. },
  45479. {
  45480. name: "Macro",
  45481. height: math.unit(300, "feet")
  45482. },
  45483. {
  45484. name: "Megamacro",
  45485. height: math.unit(1, "mile")
  45486. },
  45487. ]
  45488. ))
  45489. characterMakers.push(() => makeCharacter(
  45490. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45491. {
  45492. front: {
  45493. height: math.unit(6 + 9/12, "feet"),
  45494. name: "Front",
  45495. image: {
  45496. source: "./media/characters/zeimne/front.svg",
  45497. extra: 1969/1806,
  45498. bottom: 53/2022
  45499. }
  45500. },
  45501. },
  45502. [
  45503. {
  45504. name: "Normal",
  45505. height: math.unit(6 + 9/12, "feet"),
  45506. default: true
  45507. },
  45508. {
  45509. name: "Giant",
  45510. height: math.unit(550, "feet")
  45511. },
  45512. {
  45513. name: "Mega",
  45514. height: math.unit(3, "miles")
  45515. },
  45516. {
  45517. name: "Giga",
  45518. height: math.unit(250, "miles")
  45519. },
  45520. {
  45521. name: "Tera",
  45522. height: math.unit(1, "AU")
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45528. {
  45529. front: {
  45530. height: math.unit(5 + 2/12, "feet"),
  45531. name: "Front",
  45532. image: {
  45533. source: "./media/characters/grar/front.svg",
  45534. extra: 1331/1119,
  45535. bottom: 60/1391
  45536. }
  45537. },
  45538. back: {
  45539. height: math.unit(5 + 2/12, "feet"),
  45540. name: "Back",
  45541. image: {
  45542. source: "./media/characters/grar/back.svg",
  45543. extra: 1385/1169,
  45544. bottom: 23/1408
  45545. }
  45546. },
  45547. },
  45548. [
  45549. {
  45550. name: "Normal",
  45551. height: math.unit(5 + 2/12, "feet"),
  45552. default: true
  45553. },
  45554. ]
  45555. ))
  45556. characterMakers.push(() => makeCharacter(
  45557. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45558. {
  45559. front: {
  45560. height: math.unit(13 + 7/12, "feet"),
  45561. weight: math.unit(2200, "lb"),
  45562. name: "Front",
  45563. image: {
  45564. source: "./media/characters/endraya/front.svg",
  45565. extra: 1289/1215,
  45566. bottom: 50/1339
  45567. }
  45568. },
  45569. nude: {
  45570. height: math.unit(13 + 7/12, "feet"),
  45571. weight: math.unit(2200, "lb"),
  45572. name: "Nude",
  45573. image: {
  45574. source: "./media/characters/endraya/nude.svg",
  45575. extra: 1247/1171,
  45576. bottom: 40/1287
  45577. }
  45578. },
  45579. head: {
  45580. height: math.unit(2.6, "feet"),
  45581. name: "Head",
  45582. image: {
  45583. source: "./media/characters/endraya/head.svg"
  45584. }
  45585. },
  45586. slit: {
  45587. height: math.unit(3.4, "feet"),
  45588. name: "Slit",
  45589. image: {
  45590. source: "./media/characters/endraya/slit.svg"
  45591. }
  45592. },
  45593. },
  45594. [
  45595. {
  45596. name: "Normal",
  45597. height: math.unit(13 + 7/12, "feet"),
  45598. default: true
  45599. },
  45600. {
  45601. name: "Macro",
  45602. height: math.unit(200, "feet")
  45603. },
  45604. ]
  45605. ))
  45606. characterMakers.push(() => makeCharacter(
  45607. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45608. {
  45609. front: {
  45610. height: math.unit(412, "meters"),
  45611. name: "Front",
  45612. image: {
  45613. source: "./media/characters/rodryana/front.svg",
  45614. extra: 2002/1921,
  45615. bottom: 53/2055
  45616. }
  45617. },
  45618. back: {
  45619. height: math.unit(412, "meters"),
  45620. name: "Back",
  45621. image: {
  45622. source: "./media/characters/rodryana/back.svg",
  45623. extra: 1993/1926,
  45624. bottom: 48/2041
  45625. }
  45626. },
  45627. maw: {
  45628. height: math.unit(45, "meters"),
  45629. name: "Maw",
  45630. image: {
  45631. source: "./media/characters/rodryana/maw.svg"
  45632. }
  45633. },
  45634. slit: {
  45635. height: math.unit(72, "meters"),
  45636. name: "Slit",
  45637. image: {
  45638. source: "./media/characters/rodryana/slit.svg"
  45639. }
  45640. },
  45641. },
  45642. [
  45643. {
  45644. name: "Macro",
  45645. height: math.unit(412, "meters"),
  45646. default: true
  45647. },
  45648. ]
  45649. ))
  45650. characterMakers.push(() => makeCharacter(
  45651. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45652. {
  45653. front: {
  45654. height: math.unit(6, "feet"),
  45655. weight: math.unit(1000, "lb"),
  45656. name: "Front",
  45657. image: {
  45658. source: "./media/characters/asaya/front.svg",
  45659. extra: 1460/1200,
  45660. bottom: 71/1531
  45661. }
  45662. },
  45663. },
  45664. [
  45665. {
  45666. name: "Normal",
  45667. height: math.unit(8, "km"),
  45668. default: true
  45669. },
  45670. ]
  45671. ))
  45672. characterMakers.push(() => makeCharacter(
  45673. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45674. {
  45675. front: {
  45676. height: math.unit(3.5, "meters"),
  45677. name: "Front",
  45678. image: {
  45679. source: "./media/characters/sarzu-and-israz/front.svg",
  45680. extra: 1570/1558,
  45681. bottom: 150/1720
  45682. },
  45683. },
  45684. back: {
  45685. height: math.unit(3.5, "meters"),
  45686. name: "Back",
  45687. image: {
  45688. source: "./media/characters/sarzu-and-israz/back.svg",
  45689. extra: 1523/1509,
  45690. bottom: 132/1655
  45691. },
  45692. },
  45693. frontFemale: {
  45694. height: math.unit(3.5, "meters"),
  45695. name: "Front (Female)",
  45696. image: {
  45697. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45698. extra: 1570/1558,
  45699. bottom: 150/1720
  45700. },
  45701. },
  45702. frontHerm: {
  45703. height: math.unit(3.5, "meters"),
  45704. name: "Front (Herm)",
  45705. image: {
  45706. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45707. extra: 1570/1558,
  45708. bottom: 150/1720
  45709. },
  45710. },
  45711. },
  45712. [
  45713. {
  45714. name: "Normal",
  45715. height: math.unit(3.5, "meters"),
  45716. default: true,
  45717. },
  45718. {
  45719. name: "Macro",
  45720. height: math.unit(65.5, "meters"),
  45721. },
  45722. ],
  45723. ))
  45724. characterMakers.push(() => makeCharacter(
  45725. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45726. {
  45727. front: {
  45728. height: math.unit(6, "feet"),
  45729. weight: math.unit(250, "lb"),
  45730. name: "Front",
  45731. image: {
  45732. source: "./media/characters/zenimma/front.svg",
  45733. extra: 1346/1320,
  45734. bottom: 58/1404
  45735. }
  45736. },
  45737. back: {
  45738. height: math.unit(6, "feet"),
  45739. weight: math.unit(250, "lb"),
  45740. name: "Back",
  45741. image: {
  45742. source: "./media/characters/zenimma/back.svg",
  45743. extra: 1324/1308,
  45744. bottom: 44/1368
  45745. }
  45746. },
  45747. dick: {
  45748. height: math.unit(1.44, "feet"),
  45749. name: "Dick",
  45750. image: {
  45751. source: "./media/characters/zenimma/dick.svg"
  45752. }
  45753. },
  45754. },
  45755. [
  45756. {
  45757. name: "Canon Height",
  45758. height: math.unit(66, "miles"),
  45759. default: true
  45760. },
  45761. ]
  45762. ))
  45763. characterMakers.push(() => makeCharacter(
  45764. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45765. {
  45766. nude: {
  45767. height: math.unit(6, "feet"),
  45768. weight: math.unit(150, "lb"),
  45769. name: "Nude",
  45770. image: {
  45771. source: "./media/characters/shavon/nude.svg",
  45772. extra: 1242/1096,
  45773. bottom: 98/1340
  45774. }
  45775. },
  45776. dressed: {
  45777. height: math.unit(6, "feet"),
  45778. weight: math.unit(150, "lb"),
  45779. name: "Dressed",
  45780. image: {
  45781. source: "./media/characters/shavon/dressed.svg",
  45782. extra: 1242/1096,
  45783. bottom: 98/1340
  45784. }
  45785. },
  45786. },
  45787. [
  45788. {
  45789. name: "Macro",
  45790. height: math.unit(255, "feet"),
  45791. default: true
  45792. },
  45793. ]
  45794. ))
  45795. characterMakers.push(() => makeCharacter(
  45796. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45797. {
  45798. front: {
  45799. height: math.unit(6, "feet"),
  45800. name: "Front",
  45801. image: {
  45802. source: "./media/characters/steph/front.svg",
  45803. extra: 1430/1330,
  45804. bottom: 54/1484
  45805. }
  45806. },
  45807. },
  45808. [
  45809. {
  45810. name: "Normal",
  45811. height: math.unit(6, "feet"),
  45812. default: true
  45813. },
  45814. ]
  45815. ))
  45816. characterMakers.push(() => makeCharacter(
  45817. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45818. {
  45819. front: {
  45820. height: math.unit(9, "feet"),
  45821. weight: math.unit(400, "lb"),
  45822. name: "Front",
  45823. image: {
  45824. source: "./media/characters/kil'aman/front.svg",
  45825. extra: 1210/1159,
  45826. bottom: 109/1319
  45827. }
  45828. },
  45829. head: {
  45830. height: math.unit(2.14, "feet"),
  45831. name: "Head",
  45832. image: {
  45833. source: "./media/characters/kil'aman/head.svg"
  45834. }
  45835. },
  45836. maw: {
  45837. height: math.unit(1.21, "feet"),
  45838. name: "Maw",
  45839. image: {
  45840. source: "./media/characters/kil'aman/maw.svg"
  45841. }
  45842. },
  45843. foot: {
  45844. height: math.unit(1.7, "feet"),
  45845. name: "Foot",
  45846. image: {
  45847. source: "./media/characters/kil'aman/foot.svg"
  45848. }
  45849. },
  45850. dick: {
  45851. height: math.unit(2.1, "feet"),
  45852. name: "Dick",
  45853. image: {
  45854. source: "./media/characters/kil'aman/dick.svg"
  45855. }
  45856. },
  45857. },
  45858. [
  45859. {
  45860. name: "Normal",
  45861. height: math.unit(9, "feet")
  45862. },
  45863. {
  45864. name: "Canon Height",
  45865. height: math.unit(10, "miles"),
  45866. default: true
  45867. },
  45868. {
  45869. name: "Maximum",
  45870. height: math.unit(6e9, "miles")
  45871. },
  45872. ]
  45873. ))
  45874. characterMakers.push(() => makeCharacter(
  45875. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45876. {
  45877. front: {
  45878. height: math.unit(90, "feet"),
  45879. weight: math.unit(675000, "lb"),
  45880. name: "Front",
  45881. image: {
  45882. source: "./media/characters/qadan/front.svg",
  45883. extra: 1012/1004,
  45884. bottom: 78/1090
  45885. }
  45886. },
  45887. back: {
  45888. height: math.unit(90, "feet"),
  45889. weight: math.unit(675000, "lb"),
  45890. name: "Back",
  45891. image: {
  45892. source: "./media/characters/qadan/back.svg",
  45893. extra: 1042/1031,
  45894. bottom: 55/1097
  45895. }
  45896. },
  45897. armored: {
  45898. height: math.unit(90, "feet"),
  45899. weight: math.unit(675000, "lb"),
  45900. name: "Armored",
  45901. image: {
  45902. source: "./media/characters/qadan/armored.svg",
  45903. extra: 1047/1037,
  45904. bottom: 48/1095
  45905. }
  45906. },
  45907. },
  45908. [
  45909. {
  45910. name: "Normal",
  45911. height: math.unit(90, "feet"),
  45912. default: true
  45913. },
  45914. ]
  45915. ))
  45916. characterMakers.push(() => makeCharacter(
  45917. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45918. {
  45919. front: {
  45920. height: math.unit(6, "feet"),
  45921. weight: math.unit(225, "lb"),
  45922. name: "Front",
  45923. image: {
  45924. source: "./media/characters/brooke/front.svg",
  45925. extra: 1050/1010,
  45926. bottom: 66/1116
  45927. }
  45928. },
  45929. back: {
  45930. height: math.unit(6, "feet"),
  45931. weight: math.unit(225, "lb"),
  45932. name: "Back",
  45933. image: {
  45934. source: "./media/characters/brooke/back.svg",
  45935. extra: 1053/1013,
  45936. bottom: 41/1094
  45937. }
  45938. },
  45939. dressed: {
  45940. height: math.unit(6, "feet"),
  45941. weight: math.unit(225, "lb"),
  45942. name: "Dressed",
  45943. image: {
  45944. source: "./media/characters/brooke/dressed.svg",
  45945. extra: 1050/1010,
  45946. bottom: 66/1116
  45947. }
  45948. },
  45949. },
  45950. [
  45951. {
  45952. name: "Canon Height",
  45953. height: math.unit(500, "miles"),
  45954. default: true
  45955. },
  45956. ]
  45957. ))
  45958. characterMakers.push(() => makeCharacter(
  45959. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  45960. {
  45961. front: {
  45962. height: math.unit(6 + 2/12, "feet"),
  45963. weight: math.unit(210, "lb"),
  45964. name: "Front",
  45965. image: {
  45966. source: "./media/characters/wubs/front.svg",
  45967. extra: 1345/1325,
  45968. bottom: 70/1415
  45969. }
  45970. },
  45971. back: {
  45972. height: math.unit(6 + 2/12, "feet"),
  45973. weight: math.unit(210, "lb"),
  45974. name: "Back",
  45975. image: {
  45976. source: "./media/characters/wubs/back.svg",
  45977. extra: 1296/1275,
  45978. bottom: 58/1354
  45979. }
  45980. },
  45981. },
  45982. [
  45983. {
  45984. name: "Normal",
  45985. height: math.unit(6 + 2/12, "feet"),
  45986. default: true
  45987. },
  45988. {
  45989. name: "Macro",
  45990. height: math.unit(1000, "feet")
  45991. },
  45992. {
  45993. name: "Megamacro",
  45994. height: math.unit(1, "mile")
  45995. },
  45996. ]
  45997. ))
  45998. characterMakers.push(() => makeCharacter(
  45999. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46000. {
  46001. front: {
  46002. height: math.unit(4, "feet"),
  46003. weight: math.unit(120, "lb"),
  46004. name: "Front",
  46005. image: {
  46006. source: "./media/characters/blue/front.svg",
  46007. extra: 1636/1525,
  46008. bottom: 43/1679
  46009. }
  46010. },
  46011. back: {
  46012. height: math.unit(4, "feet"),
  46013. weight: math.unit(120, "lb"),
  46014. name: "Back",
  46015. image: {
  46016. source: "./media/characters/blue/back.svg",
  46017. extra: 1660/1560,
  46018. bottom: 57/1717
  46019. }
  46020. },
  46021. paws: {
  46022. height: math.unit(0.826, "feet"),
  46023. name: "Paws",
  46024. image: {
  46025. source: "./media/characters/blue/paws.svg"
  46026. }
  46027. },
  46028. },
  46029. [
  46030. {
  46031. name: "Micro",
  46032. height: math.unit(3, "inches")
  46033. },
  46034. {
  46035. name: "Normal",
  46036. height: math.unit(4, "feet"),
  46037. default: true
  46038. },
  46039. {
  46040. name: "Femenine Form",
  46041. height: math.unit(14, "feet")
  46042. },
  46043. {
  46044. name: "Werebat Form",
  46045. height: math.unit(18, "feet")
  46046. },
  46047. ]
  46048. ))
  46049. characterMakers.push(() => makeCharacter(
  46050. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46051. {
  46052. female: {
  46053. height: math.unit(7 + 4/12, "feet"),
  46054. weight: math.unit(243, "lb"),
  46055. name: "Female",
  46056. image: {
  46057. source: "./media/characters/kaya/female.svg",
  46058. extra: 975/898,
  46059. bottom: 34/1009
  46060. }
  46061. },
  46062. herm: {
  46063. height: math.unit(7 + 4/12, "feet"),
  46064. weight: math.unit(243, "lb"),
  46065. name: "Herm",
  46066. image: {
  46067. source: "./media/characters/kaya/herm.svg",
  46068. extra: 975/898,
  46069. bottom: 34/1009
  46070. }
  46071. },
  46072. },
  46073. [
  46074. {
  46075. name: "Normal",
  46076. height: math.unit(7 + 4/12, "feet"),
  46077. default: true
  46078. },
  46079. ]
  46080. ))
  46081. characterMakers.push(() => makeCharacter(
  46082. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46083. {
  46084. female: {
  46085. height: math.unit(9 + 4/12, "feet"),
  46086. weight: math.unit(398, "lb"),
  46087. name: "Female",
  46088. image: {
  46089. source: "./media/characters/kassandra/female.svg",
  46090. extra: 908/839,
  46091. bottom: 61/969
  46092. }
  46093. },
  46094. intersex: {
  46095. height: math.unit(9 + 4/12, "feet"),
  46096. weight: math.unit(398, "lb"),
  46097. name: "Intersex",
  46098. image: {
  46099. source: "./media/characters/kassandra/intersex.svg",
  46100. extra: 908/839,
  46101. bottom: 61/969
  46102. }
  46103. },
  46104. },
  46105. [
  46106. {
  46107. name: "Normal",
  46108. height: math.unit(9 + 4/12, "feet"),
  46109. default: true
  46110. },
  46111. ]
  46112. ))
  46113. characterMakers.push(() => makeCharacter(
  46114. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46115. {
  46116. front: {
  46117. height: math.unit(3, "meters"),
  46118. name: "Front",
  46119. image: {
  46120. source: "./media/characters/amy/front.svg",
  46121. extra: 1380/1343,
  46122. bottom: 70/1450
  46123. }
  46124. },
  46125. back: {
  46126. height: math.unit(3, "meters"),
  46127. name: "Back",
  46128. image: {
  46129. source: "./media/characters/amy/back.svg",
  46130. extra: 1380/1347,
  46131. bottom: 66/1446
  46132. }
  46133. },
  46134. },
  46135. [
  46136. {
  46137. name: "Normal",
  46138. height: math.unit(3, "meters"),
  46139. default: true
  46140. },
  46141. ]
  46142. ))
  46143. characterMakers.push(() => makeCharacter(
  46144. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46145. {
  46146. side: {
  46147. height: math.unit(47, "cm"),
  46148. weight: math.unit(10.8, "kg"),
  46149. name: "Side",
  46150. image: {
  46151. source: "./media/characters/alphaschakal/side.svg",
  46152. extra: 1058/568,
  46153. bottom: 62/1120
  46154. }
  46155. },
  46156. back: {
  46157. height: math.unit(78, "cm"),
  46158. weight: math.unit(10.8, "kg"),
  46159. name: "Back",
  46160. image: {
  46161. source: "./media/characters/alphaschakal/back.svg",
  46162. extra: 1102/942,
  46163. bottom: 185/1287
  46164. }
  46165. },
  46166. head: {
  46167. height: math.unit(28, "cm"),
  46168. name: "Head",
  46169. image: {
  46170. source: "./media/characters/alphaschakal/head.svg",
  46171. extra: 696/508,
  46172. bottom: 0/696
  46173. }
  46174. },
  46175. paw: {
  46176. height: math.unit(16, "cm"),
  46177. name: "Paw",
  46178. image: {
  46179. source: "./media/characters/alphaschakal/paw.svg"
  46180. }
  46181. },
  46182. },
  46183. [
  46184. {
  46185. name: "Normal",
  46186. height: math.unit(47, "cm"),
  46187. default: true
  46188. },
  46189. {
  46190. name: "Macro",
  46191. height: math.unit(340, "cm")
  46192. },
  46193. ]
  46194. ))
  46195. characterMakers.push(() => makeCharacter(
  46196. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46197. {
  46198. front: {
  46199. height: math.unit(36, "earths"),
  46200. name: "Front",
  46201. image: {
  46202. source: "./media/characters/ecobyss/front.svg",
  46203. extra: 1282/1215,
  46204. bottom: 11/1293
  46205. }
  46206. },
  46207. back: {
  46208. height: math.unit(36, "earths"),
  46209. name: "Back",
  46210. image: {
  46211. source: "./media/characters/ecobyss/back.svg",
  46212. extra: 1291/1222,
  46213. bottom: 8/1299
  46214. }
  46215. },
  46216. },
  46217. [
  46218. {
  46219. name: "Normal",
  46220. height: math.unit(36, "earths"),
  46221. default: true
  46222. },
  46223. ]
  46224. ))
  46225. characterMakers.push(() => makeCharacter(
  46226. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46227. {
  46228. front: {
  46229. height: math.unit(12, "feet"),
  46230. name: "Front",
  46231. image: {
  46232. source: "./media/characters/vasuk/front.svg",
  46233. extra: 1326/1207,
  46234. bottom: 64/1390
  46235. }
  46236. },
  46237. },
  46238. [
  46239. {
  46240. name: "Normal",
  46241. height: math.unit(12, "feet"),
  46242. default: true
  46243. },
  46244. ]
  46245. ))
  46246. characterMakers.push(() => makeCharacter(
  46247. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46248. {
  46249. side: {
  46250. height: math.unit(100, "feet"),
  46251. name: "Side",
  46252. image: {
  46253. source: "./media/characters/linneaus/side.svg",
  46254. extra: 987/807,
  46255. bottom: 47/1034
  46256. }
  46257. },
  46258. },
  46259. [
  46260. {
  46261. name: "Macro",
  46262. height: math.unit(100, "feet"),
  46263. default: true
  46264. },
  46265. ]
  46266. ))
  46267. characterMakers.push(() => makeCharacter(
  46268. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46269. {
  46270. front: {
  46271. height: math.unit(8, "feet"),
  46272. weight: math.unit(1200, "lb"),
  46273. name: "Front",
  46274. image: {
  46275. source: "./media/characters/nyterious-daligdig/front.svg",
  46276. extra: 1284/1094,
  46277. bottom: 84/1368
  46278. }
  46279. },
  46280. back: {
  46281. height: math.unit(8, "feet"),
  46282. weight: math.unit(1200, "lb"),
  46283. name: "Back",
  46284. image: {
  46285. source: "./media/characters/nyterious-daligdig/back.svg",
  46286. extra: 1301/1121,
  46287. bottom: 129/1430
  46288. }
  46289. },
  46290. mouth: {
  46291. height: math.unit(1.464, "feet"),
  46292. name: "Mouth",
  46293. image: {
  46294. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Small",
  46301. height: math.unit(8, "feet"),
  46302. default: true
  46303. },
  46304. {
  46305. name: "Normal",
  46306. height: math.unit(15, "feet")
  46307. },
  46308. {
  46309. name: "Macro",
  46310. height: math.unit(90, "feet")
  46311. },
  46312. ]
  46313. ))
  46314. characterMakers.push(() => makeCharacter(
  46315. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46316. {
  46317. front: {
  46318. height: math.unit(7 + 4/12, "feet"),
  46319. weight: math.unit(252, "lb"),
  46320. name: "Front",
  46321. image: {
  46322. source: "./media/characters/bandel/front.svg",
  46323. extra: 1946/1775,
  46324. bottom: 26/1972
  46325. }
  46326. },
  46327. back: {
  46328. height: math.unit(7 + 4/12, "feet"),
  46329. weight: math.unit(252, "lb"),
  46330. name: "Back",
  46331. image: {
  46332. source: "./media/characters/bandel/back.svg",
  46333. extra: 1940/1770,
  46334. bottom: 25/1965
  46335. }
  46336. },
  46337. maw: {
  46338. height: math.unit(2.15, "feet"),
  46339. name: "Maw",
  46340. image: {
  46341. source: "./media/characters/bandel/maw.svg"
  46342. }
  46343. },
  46344. stomach: {
  46345. height: math.unit(1.95, "feet"),
  46346. name: "Stomach",
  46347. image: {
  46348. source: "./media/characters/bandel/stomach.svg"
  46349. }
  46350. },
  46351. },
  46352. [
  46353. {
  46354. name: "Normal",
  46355. height: math.unit(7 + 4/12, "feet"),
  46356. default: true
  46357. },
  46358. ]
  46359. ))
  46360. characterMakers.push(() => makeCharacter(
  46361. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46362. {
  46363. front: {
  46364. height: math.unit(10 + 5/12, "feet"),
  46365. weight: math.unit(773.5, "kg"),
  46366. name: "Front",
  46367. image: {
  46368. source: "./media/characters/zed/front.svg",
  46369. extra: 987/941,
  46370. bottom: 52/1039
  46371. }
  46372. },
  46373. },
  46374. [
  46375. {
  46376. name: "Short",
  46377. height: math.unit(5 + 4/12, "feet")
  46378. },
  46379. {
  46380. name: "Average",
  46381. height: math.unit(10 + 5/12, "feet"),
  46382. default: true
  46383. },
  46384. {
  46385. name: "Mini-Macro",
  46386. height: math.unit(24 + 9/12, "feet")
  46387. },
  46388. {
  46389. name: "Macro",
  46390. height: math.unit(249, "feet")
  46391. },
  46392. {
  46393. name: "Mega-Macro",
  46394. height: math.unit(12490, "feet")
  46395. },
  46396. {
  46397. name: "Giga-Macro",
  46398. height: math.unit(24.9, "miles")
  46399. },
  46400. {
  46401. name: "Tera-Macro",
  46402. height: math.unit(24900, "miles")
  46403. },
  46404. {
  46405. name: "Cosmic Scale",
  46406. height: math.unit(38.9, "lightyears")
  46407. },
  46408. {
  46409. name: "Universal Scale",
  46410. height: math.unit(138e12, "lightyears")
  46411. },
  46412. ]
  46413. ))
  46414. characterMakers.push(() => makeCharacter(
  46415. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46416. {
  46417. front: {
  46418. height: math.unit(1561, "inches"),
  46419. name: "Front",
  46420. image: {
  46421. source: "./media/characters/ivan/front.svg",
  46422. extra: 1126/1071,
  46423. bottom: 26/1152
  46424. }
  46425. },
  46426. back: {
  46427. height: math.unit(1561, "inches"),
  46428. name: "Back",
  46429. image: {
  46430. source: "./media/characters/ivan/back.svg",
  46431. extra: 1134/1079,
  46432. bottom: 30/1164
  46433. }
  46434. },
  46435. },
  46436. [
  46437. {
  46438. name: "Normal",
  46439. height: math.unit(1561, "inches"),
  46440. default: true
  46441. },
  46442. ]
  46443. ))
  46444. characterMakers.push(() => makeCharacter(
  46445. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46446. {
  46447. front: {
  46448. height: math.unit(5 + 7/12, "feet"),
  46449. weight: math.unit(150, "lb"),
  46450. name: "Front",
  46451. image: {
  46452. source: "./media/characters/robin-arctic-hare/front.svg",
  46453. extra: 1148/974,
  46454. bottom: 20/1168
  46455. }
  46456. },
  46457. },
  46458. [
  46459. {
  46460. name: "Normal",
  46461. height: math.unit(5 + 7/12, "feet"),
  46462. default: true
  46463. },
  46464. ]
  46465. ))
  46466. characterMakers.push(() => makeCharacter(
  46467. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46468. {
  46469. side: {
  46470. height: math.unit(5, "feet"),
  46471. name: "Side",
  46472. image: {
  46473. source: "./media/characters/birch/side.svg",
  46474. extra: 985/796,
  46475. bottom: 111/1096
  46476. }
  46477. },
  46478. },
  46479. [
  46480. {
  46481. name: "Normal",
  46482. height: math.unit(5, "feet"),
  46483. default: true
  46484. },
  46485. ]
  46486. ))
  46487. characterMakers.push(() => makeCharacter(
  46488. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46489. {
  46490. front: {
  46491. height: math.unit(4, "feet"),
  46492. name: "Front",
  46493. image: {
  46494. source: "./media/characters/rasp/front.svg",
  46495. extra: 561/478,
  46496. bottom: 74/635
  46497. }
  46498. },
  46499. },
  46500. [
  46501. {
  46502. name: "Normal",
  46503. height: math.unit(4, "feet"),
  46504. default: true
  46505. },
  46506. ]
  46507. ))
  46508. characterMakers.push(() => makeCharacter(
  46509. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46510. {
  46511. front: {
  46512. height: math.unit(4 + 6/12, "feet"),
  46513. name: "Front",
  46514. image: {
  46515. source: "./media/characters/agatha/front.svg",
  46516. extra: 947/933,
  46517. bottom: 42/989
  46518. }
  46519. },
  46520. back: {
  46521. height: math.unit(4 + 6/12, "feet"),
  46522. name: "Back",
  46523. image: {
  46524. source: "./media/characters/agatha/back.svg",
  46525. extra: 935/922,
  46526. bottom: 48/983
  46527. }
  46528. },
  46529. },
  46530. [
  46531. {
  46532. name: "Normal",
  46533. height: math.unit(4 + 6 /12, "feet"),
  46534. default: true
  46535. },
  46536. {
  46537. name: "Max Size",
  46538. height: math.unit(500, "feet")
  46539. },
  46540. ]
  46541. ))
  46542. characterMakers.push(() => makeCharacter(
  46543. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46544. {
  46545. side: {
  46546. height: math.unit(30, "feet"),
  46547. name: "Side",
  46548. image: {
  46549. source: "./media/characters/roggy/side.svg",
  46550. extra: 909/643,
  46551. bottom: 63/972
  46552. }
  46553. },
  46554. lounging: {
  46555. height: math.unit(20, "feet"),
  46556. name: "Lounging",
  46557. image: {
  46558. source: "./media/characters/roggy/lounging.svg",
  46559. extra: 643/479,
  46560. bottom: 145/788
  46561. }
  46562. },
  46563. handpaw: {
  46564. height: math.unit(13.1, "feet"),
  46565. name: "Handpaw",
  46566. image: {
  46567. source: "./media/characters/roggy/handpaw.svg"
  46568. }
  46569. },
  46570. footpaw: {
  46571. height: math.unit(15.8, "feet"),
  46572. name: "Footpaw",
  46573. image: {
  46574. source: "./media/characters/roggy/footpaw.svg"
  46575. }
  46576. },
  46577. },
  46578. [
  46579. {
  46580. name: "Menacing",
  46581. height: math.unit(30, "feet"),
  46582. default: true
  46583. },
  46584. ]
  46585. ))
  46586. characterMakers.push(() => makeCharacter(
  46587. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46588. {
  46589. front: {
  46590. height: math.unit(5 + 7/12, "feet"),
  46591. weight: math.unit(135, "lb"),
  46592. name: "Front",
  46593. image: {
  46594. source: "./media/characters/naomi/front.svg",
  46595. extra: 1209/1154,
  46596. bottom: 129/1338
  46597. }
  46598. },
  46599. back: {
  46600. height: math.unit(5 + 7/12, "feet"),
  46601. weight: math.unit(135, "lb"),
  46602. name: "Back",
  46603. image: {
  46604. source: "./media/characters/naomi/back.svg",
  46605. extra: 1252/1190,
  46606. bottom: 23/1275
  46607. }
  46608. },
  46609. },
  46610. [
  46611. {
  46612. name: "Normal",
  46613. height: math.unit(5 + 7 /12, "feet"),
  46614. default: true
  46615. },
  46616. ]
  46617. ))
  46618. //characters
  46619. function makeCharacters() {
  46620. const results = [];
  46621. characterMakers.forEach(character => {
  46622. results.push(character());
  46623. });
  46624. return results;
  46625. }