less copy protection, more size visualization
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

43512 líneas
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. }
  1759. //species
  1760. function getSpeciesInfo(speciesList) {
  1761. let result = new Set();
  1762. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1763. result.add(entry)
  1764. });
  1765. return Array.from(result);
  1766. };
  1767. function getSpeciesInfoHelper(species) {
  1768. if (!speciesData[species]) {
  1769. console.warn(species + " doesn't exist");
  1770. return [];
  1771. }
  1772. if (speciesData[species].parents) {
  1773. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1774. } else {
  1775. return [species];
  1776. }
  1777. }
  1778. characterMakers.push(() => makeCharacter(
  1779. {
  1780. name: "Fen",
  1781. species: ["crux"],
  1782. description: {
  1783. title: "Bio",
  1784. text: "Very furry. Sheds on everything."
  1785. },
  1786. tags: [
  1787. "anthro",
  1788. "goo"
  1789. ]
  1790. },
  1791. {
  1792. back: {
  1793. height: math.unit(2.2428, "meter"),
  1794. weight: math.unit(124.738, "kg"),
  1795. name: "Back",
  1796. image: {
  1797. source: "./media/characters/fen/back.svg",
  1798. },
  1799. info: {
  1800. description: {
  1801. mode: "append",
  1802. text: "\n\nHe is not currently looking at you."
  1803. }
  1804. }
  1805. },
  1806. full: {
  1807. height: math.unit(1.34, "meter"),
  1808. weight: math.unit(225, "kg"),
  1809. name: "Full",
  1810. image: {
  1811. source: "./media/characters/fen/full.svg"
  1812. },
  1813. info: {
  1814. description: {
  1815. mode: "append",
  1816. text: "\n\nMunch."
  1817. }
  1818. }
  1819. },
  1820. kneeling: {
  1821. height: math.unit(5.4, "feet"),
  1822. weight: math.unit(124.738, "kg"),
  1823. name: "Kneeling",
  1824. image: {
  1825. source: "./media/characters/fen/kneeling.svg",
  1826. extra: 563 / 507
  1827. }
  1828. },
  1829. goo: {
  1830. height: math.unit(2.8, "feet"),
  1831. weight: math.unit(125, "kg"),
  1832. capacity: math.unit(1, "people"),
  1833. name: "Goo",
  1834. image: {
  1835. source: "./media/characters/fen/goo.svg",
  1836. bottom: 116 / 613
  1837. }
  1838. },
  1839. lounging: {
  1840. height: math.unit(6.5, "feet"),
  1841. weight: math.unit(125, "kg"),
  1842. name: "Lounging",
  1843. image: {
  1844. source: "./media/characters/fen/lounging.svg"
  1845. }
  1846. },
  1847. },
  1848. [
  1849. {
  1850. name: "Normal",
  1851. height: math.unit(2.2428, "meter")
  1852. },
  1853. {
  1854. name: "Big",
  1855. height: math.unit(12, "feet")
  1856. },
  1857. {
  1858. name: "Minimacro",
  1859. height: math.unit(40, "feet"),
  1860. default: true,
  1861. info: {
  1862. description: {
  1863. mode: "append",
  1864. text: "\n\nTOO DAMN BIG"
  1865. }
  1866. }
  1867. },
  1868. {
  1869. name: "Macro",
  1870. height: math.unit(100, "feet"),
  1871. info: {
  1872. description: {
  1873. mode: "append",
  1874. text: "\n\nTOO DAMN BIG"
  1875. }
  1876. }
  1877. },
  1878. {
  1879. name: "Macro+",
  1880. height: math.unit(300, "feet")
  1881. },
  1882. {
  1883. name: "Megamacro",
  1884. height: math.unit(2, "miles")
  1885. }
  1886. ]
  1887. ))
  1888. characterMakers.push(() => makeCharacter(
  1889. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1890. {
  1891. front: {
  1892. height: math.unit(183, "cm"),
  1893. weight: math.unit(80, "kg"),
  1894. name: "Front",
  1895. image: {
  1896. source: "./media/characters/sofia-fluttertail/front.svg",
  1897. bottom: 0.01,
  1898. extra: 2154 / 2081
  1899. }
  1900. },
  1901. frontAlt: {
  1902. height: math.unit(183, "cm"),
  1903. weight: math.unit(80, "kg"),
  1904. name: "Front (alt)",
  1905. image: {
  1906. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1907. }
  1908. },
  1909. back: {
  1910. height: math.unit(183, "cm"),
  1911. weight: math.unit(80, "kg"),
  1912. name: "Back",
  1913. image: {
  1914. source: "./media/characters/sofia-fluttertail/back.svg"
  1915. }
  1916. },
  1917. kneeling: {
  1918. height: math.unit(125, "cm"),
  1919. weight: math.unit(80, "kg"),
  1920. name: "Kneeling",
  1921. image: {
  1922. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1923. extra: 1033 / 977,
  1924. bottom: 23.7 / 1057
  1925. }
  1926. },
  1927. maw: {
  1928. height: math.unit(183 / 5, "cm"),
  1929. name: "Maw",
  1930. image: {
  1931. source: "./media/characters/sofia-fluttertail/maw.svg"
  1932. }
  1933. },
  1934. mawcloseup: {
  1935. height: math.unit(183 / 5 * 0.41, "cm"),
  1936. name: "Maw (Closeup)",
  1937. image: {
  1938. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1939. }
  1940. },
  1941. paws: {
  1942. height: math.unit(1.17, "feet"),
  1943. name: "Paws",
  1944. image: {
  1945. source: "./media/characters/sofia-fluttertail/paws.svg",
  1946. extra: 851 / 851,
  1947. bottom: 17 / 868
  1948. }
  1949. },
  1950. },
  1951. [
  1952. {
  1953. name: "Normal",
  1954. height: math.unit(1.83, "meter")
  1955. },
  1956. {
  1957. name: "Size Thief",
  1958. height: math.unit(18, "feet")
  1959. },
  1960. {
  1961. name: "50 Foot Collie",
  1962. height: math.unit(50, "feet")
  1963. },
  1964. {
  1965. name: "Macro",
  1966. height: math.unit(96, "feet"),
  1967. default: true
  1968. },
  1969. {
  1970. name: "Megamerger",
  1971. height: math.unit(650, "feet")
  1972. },
  1973. ]
  1974. ))
  1975. characterMakers.push(() => makeCharacter(
  1976. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1977. {
  1978. front: {
  1979. height: math.unit(7, "feet"),
  1980. weight: math.unit(100, "kg"),
  1981. name: "Front",
  1982. image: {
  1983. source: "./media/characters/march/front.svg",
  1984. extra: 1992/1851,
  1985. bottom: 39/2031
  1986. }
  1987. },
  1988. foot: {
  1989. height: math.unit(0.9, "feet"),
  1990. name: "Foot",
  1991. image: {
  1992. source: "./media/characters/march/foot.svg"
  1993. }
  1994. },
  1995. },
  1996. [
  1997. {
  1998. name: "Normal",
  1999. height: math.unit(7.9, "feet")
  2000. },
  2001. {
  2002. name: "Macro",
  2003. height: math.unit(220, "meters")
  2004. },
  2005. {
  2006. name: "Megamacro",
  2007. height: math.unit(2.98, "km"),
  2008. default: true
  2009. },
  2010. {
  2011. name: "Gigamacro",
  2012. height: math.unit(15963, "km")
  2013. },
  2014. {
  2015. name: "Teramacro",
  2016. height: math.unit(2980000000, "km")
  2017. },
  2018. {
  2019. name: "Examacro",
  2020. height: math.unit(250, "parsecs")
  2021. },
  2022. ]
  2023. ))
  2024. characterMakers.push(() => makeCharacter(
  2025. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2026. {
  2027. front: {
  2028. height: math.unit(6, "feet"),
  2029. weight: math.unit(60, "kg"),
  2030. name: "Front",
  2031. image: {
  2032. source: "./media/characters/noir/front.svg",
  2033. extra: 1,
  2034. bottom: 0.032
  2035. }
  2036. },
  2037. },
  2038. [
  2039. {
  2040. name: "Normal",
  2041. height: math.unit(6.6, "feet")
  2042. },
  2043. {
  2044. name: "Macro",
  2045. height: math.unit(500, "feet")
  2046. },
  2047. {
  2048. name: "Megamacro",
  2049. height: math.unit(2.5, "km"),
  2050. default: true
  2051. },
  2052. {
  2053. name: "Gigamacro",
  2054. height: math.unit(22500, "km")
  2055. },
  2056. {
  2057. name: "Teramacro",
  2058. height: math.unit(2500000000, "km")
  2059. },
  2060. {
  2061. name: "Examacro",
  2062. height: math.unit(200, "parsecs")
  2063. },
  2064. ]
  2065. ))
  2066. characterMakers.push(() => makeCharacter(
  2067. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2068. {
  2069. front: {
  2070. height: math.unit(7, "feet"),
  2071. weight: math.unit(100, "kg"),
  2072. name: "Front",
  2073. image: {
  2074. source: "./media/characters/okuri/front.svg",
  2075. extra: 1,
  2076. bottom: 0.037
  2077. }
  2078. },
  2079. back: {
  2080. height: math.unit(7, "feet"),
  2081. weight: math.unit(100, "kg"),
  2082. name: "Back",
  2083. image: {
  2084. source: "./media/characters/okuri/back.svg",
  2085. extra: 1,
  2086. bottom: 0.007
  2087. }
  2088. },
  2089. },
  2090. [
  2091. {
  2092. name: "Megamacro",
  2093. height: math.unit(100, "miles"),
  2094. default: true
  2095. },
  2096. ]
  2097. ))
  2098. characterMakers.push(() => makeCharacter(
  2099. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2100. {
  2101. front: {
  2102. height: math.unit(7, "feet"),
  2103. weight: math.unit(100, "kg"),
  2104. name: "Front",
  2105. image: {
  2106. source: "./media/characters/manny/front.svg",
  2107. extra: 1,
  2108. bottom: 0.06
  2109. }
  2110. },
  2111. back: {
  2112. height: math.unit(7, "feet"),
  2113. weight: math.unit(100, "kg"),
  2114. name: "Back",
  2115. image: {
  2116. source: "./media/characters/manny/back.svg",
  2117. extra: 1,
  2118. bottom: 0.014
  2119. }
  2120. },
  2121. },
  2122. [
  2123. {
  2124. name: "Normal",
  2125. height: math.unit(7, "feet"),
  2126. },
  2127. {
  2128. name: "Macro",
  2129. height: math.unit(78, "feet"),
  2130. default: true
  2131. },
  2132. {
  2133. name: "Macro+",
  2134. height: math.unit(300, "meters")
  2135. },
  2136. {
  2137. name: "Macro++",
  2138. height: math.unit(2400, "meters")
  2139. },
  2140. {
  2141. name: "Megamacro",
  2142. height: math.unit(5167, "meters")
  2143. },
  2144. {
  2145. name: "Gigamacro",
  2146. height: math.unit(41769, "miles")
  2147. },
  2148. ]
  2149. ))
  2150. characterMakers.push(() => makeCharacter(
  2151. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2152. {
  2153. front: {
  2154. height: math.unit(7, "feet"),
  2155. weight: math.unit(100, "kg"),
  2156. name: "Front",
  2157. image: {
  2158. source: "./media/characters/adake/front-1.svg"
  2159. }
  2160. },
  2161. frontAlt: {
  2162. height: math.unit(7, "feet"),
  2163. weight: math.unit(100, "kg"),
  2164. name: "Front (Alt)",
  2165. image: {
  2166. source: "./media/characters/adake/front-2.svg",
  2167. extra: 1,
  2168. bottom: 0.01
  2169. }
  2170. },
  2171. back: {
  2172. height: math.unit(7, "feet"),
  2173. weight: math.unit(100, "kg"),
  2174. name: "Back",
  2175. image: {
  2176. source: "./media/characters/adake/back.svg",
  2177. }
  2178. },
  2179. kneel: {
  2180. height: math.unit(5.385, "feet"),
  2181. weight: math.unit(100, "kg"),
  2182. name: "Kneeling",
  2183. image: {
  2184. source: "./media/characters/adake/kneel.svg",
  2185. bottom: 0.052
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(7, "feet"),
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(78, "feet"),
  2197. default: true
  2198. },
  2199. {
  2200. name: "Macro+",
  2201. height: math.unit(300, "meters")
  2202. },
  2203. {
  2204. name: "Macro++",
  2205. height: math.unit(2400, "meters")
  2206. },
  2207. {
  2208. name: "Megamacro",
  2209. height: math.unit(5167, "meters")
  2210. },
  2211. {
  2212. name: "Gigamacro",
  2213. height: math.unit(41769, "miles")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(1.65, "meters"),
  2222. weight: math.unit(50, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/elijah/front.svg",
  2226. extra: 858 / 830,
  2227. bottom: 95.5 / 953.8559
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(1.65, "meters"),
  2232. weight: math.unit(50, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/elijah/back.svg",
  2236. extra: 895 / 850,
  2237. bottom: 5.3 / 897.956
  2238. }
  2239. },
  2240. frontNsfw: {
  2241. height: math.unit(1.65, "meters"),
  2242. weight: math.unit(50, "kg"),
  2243. name: "Front (NSFW)",
  2244. image: {
  2245. source: "./media/characters/elijah/front-nsfw.svg",
  2246. extra: 858 / 830,
  2247. bottom: 95.5 / 953.8559
  2248. }
  2249. },
  2250. backNsfw: {
  2251. height: math.unit(1.65, "meters"),
  2252. weight: math.unit(50, "kg"),
  2253. name: "Back (NSFW)",
  2254. image: {
  2255. source: "./media/characters/elijah/back-nsfw.svg",
  2256. extra: 895 / 850,
  2257. bottom: 5.3 / 897.956
  2258. }
  2259. },
  2260. dick: {
  2261. height: math.unit(1, "feet"),
  2262. name: "Dick",
  2263. image: {
  2264. source: "./media/characters/elijah/dick.svg"
  2265. }
  2266. },
  2267. beakOpen: {
  2268. height: math.unit(1.25, "feet"),
  2269. name: "Beak (Open)",
  2270. image: {
  2271. source: "./media/characters/elijah/beak-open.svg"
  2272. }
  2273. },
  2274. beakShut: {
  2275. height: math.unit(1.25, "feet"),
  2276. name: "Beak (Shut)",
  2277. image: {
  2278. source: "./media/characters/elijah/beak-shut.svg"
  2279. }
  2280. },
  2281. footFlexing: {
  2282. height: math.unit(1.61, "feet"),
  2283. name: "Foot (Flexing)",
  2284. image: {
  2285. source: "./media/characters/elijah/foot-flexing.svg"
  2286. }
  2287. },
  2288. footStepping: {
  2289. height: math.unit(1.44, "feet"),
  2290. name: "Foot (Stepping)",
  2291. image: {
  2292. source: "./media/characters/elijah/foot-stepping.svg"
  2293. }
  2294. },
  2295. plantigradeLeg: {
  2296. height: math.unit(2.34, "feet"),
  2297. name: "Plantigrade Leg",
  2298. image: {
  2299. source: "./media/characters/elijah/plantigrade-leg.svg"
  2300. }
  2301. },
  2302. plantigradeFootLeft: {
  2303. height: math.unit(0.9, "feet"),
  2304. name: "Plantigrade Foot (Left)",
  2305. image: {
  2306. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2307. }
  2308. },
  2309. plantigradeFootRight: {
  2310. height: math.unit(0.9, "feet"),
  2311. name: "Plantigrade Foot (Right)",
  2312. image: {
  2313. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2314. }
  2315. },
  2316. },
  2317. [
  2318. {
  2319. name: "Normal",
  2320. height: math.unit(1.65, "meters")
  2321. },
  2322. {
  2323. name: "Macro",
  2324. height: math.unit(55, "meters"),
  2325. default: true
  2326. },
  2327. {
  2328. name: "Macro+",
  2329. height: math.unit(105, "meters")
  2330. },
  2331. ]
  2332. ))
  2333. characterMakers.push(() => makeCharacter(
  2334. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2335. {
  2336. front: {
  2337. height: math.unit(11, "feet"),
  2338. weight: math.unit(320, "kg"),
  2339. name: "Front",
  2340. image: {
  2341. source: "./media/characters/rai/front.svg",
  2342. extra: 1802/1696,
  2343. bottom: 68/1870
  2344. }
  2345. },
  2346. frontDressed: {
  2347. height: math.unit(11, "feet"),
  2348. weight: math.unit(320, "kg"),
  2349. name: "Front (Dressed)",
  2350. image: {
  2351. source: "./media/characters/rai/front-dressed.svg",
  2352. extra: 1802/1696,
  2353. bottom: 68/1870
  2354. }
  2355. },
  2356. side: {
  2357. height: math.unit(11, "feet"),
  2358. weight: math.unit(320, "kg"),
  2359. name: "Side",
  2360. image: {
  2361. source: "./media/characters/rai/side.svg",
  2362. extra: 1789/1710,
  2363. bottom: 115/1904
  2364. }
  2365. },
  2366. back: {
  2367. height: math.unit(11, "feet"),
  2368. weight: math.unit(320, "kg"),
  2369. name: "Back",
  2370. image: {
  2371. source: "./media/characters/rai/back.svg",
  2372. extra: 1770/1707,
  2373. bottom: 28/1798
  2374. }
  2375. },
  2376. feral: {
  2377. height: math.unit(11, "feet"),
  2378. weight: math.unit(640, "kg"),
  2379. name: "Feral",
  2380. image: {
  2381. source: "./media/characters/rai/feral.svg",
  2382. extra: 1035/642,
  2383. bottom: 86/1121
  2384. }
  2385. },
  2386. dragon: {
  2387. height: math.unit(23, "feet"),
  2388. weight: math.unit(50000, "lb"),
  2389. name: "Dragon",
  2390. image: {
  2391. source: "./media/characters/rai/dragon.svg",
  2392. extra: 2498 / 2030,
  2393. bottom: 85.2 / 2584
  2394. }
  2395. },
  2396. maw: {
  2397. height: math.unit(6 / 3.81416, "feet"),
  2398. name: "Maw",
  2399. image: {
  2400. source: "./media/characters/rai/maw.svg"
  2401. }
  2402. },
  2403. },
  2404. [
  2405. {
  2406. name: "Normal",
  2407. height: math.unit(11, "feet")
  2408. },
  2409. {
  2410. name: "Macro",
  2411. height: math.unit(302, "feet"),
  2412. default: true
  2413. },
  2414. ]
  2415. ))
  2416. characterMakers.push(() => makeCharacter(
  2417. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2418. {
  2419. frontDressed: {
  2420. height: math.unit(216, "feet"),
  2421. weight: math.unit(7000000, "lb"),
  2422. name: "Front (Dressed)",
  2423. image: {
  2424. source: "./media/characters/jazzy/front-dressed.svg",
  2425. extra: 2738 / 2651,
  2426. bottom: 41.8 / 2786
  2427. }
  2428. },
  2429. backDressed: {
  2430. height: math.unit(216, "feet"),
  2431. weight: math.unit(7000000, "lb"),
  2432. name: "Back (Dressed)",
  2433. image: {
  2434. source: "./media/characters/jazzy/back-dressed.svg",
  2435. extra: 2775 / 2673,
  2436. bottom: 36.8 / 2817
  2437. }
  2438. },
  2439. front: {
  2440. height: math.unit(216, "feet"),
  2441. weight: math.unit(7000000, "lb"),
  2442. name: "Front",
  2443. image: {
  2444. source: "./media/characters/jazzy/front.svg",
  2445. extra: 2738 / 2651,
  2446. bottom: 41.8 / 2786
  2447. }
  2448. },
  2449. back: {
  2450. height: math.unit(216, "feet"),
  2451. weight: math.unit(7000000, "lb"),
  2452. name: "Back",
  2453. image: {
  2454. source: "./media/characters/jazzy/back.svg",
  2455. extra: 2775 / 2673,
  2456. bottom: 36.8 / 2817
  2457. }
  2458. },
  2459. maw: {
  2460. height: math.unit(20, "feet"),
  2461. name: "Maw",
  2462. image: {
  2463. source: "./media/characters/jazzy/maw.svg"
  2464. }
  2465. },
  2466. paws: {
  2467. height: math.unit(27.5, "feet"),
  2468. name: "Paws",
  2469. image: {
  2470. source: "./media/characters/jazzy/paws.svg"
  2471. }
  2472. },
  2473. eye: {
  2474. height: math.unit(4.4, "feet"),
  2475. name: "Eye",
  2476. image: {
  2477. source: "./media/characters/jazzy/eye.svg"
  2478. }
  2479. },
  2480. droneOffense: {
  2481. height: math.unit(9.5, "inches"),
  2482. name: "Drone (Offense)",
  2483. image: {
  2484. source: "./media/characters/jazzy/drone-offense.svg"
  2485. }
  2486. },
  2487. droneRecon: {
  2488. height: math.unit(9.5, "inches"),
  2489. name: "Drone (Recon)",
  2490. image: {
  2491. source: "./media/characters/jazzy/drone-recon.svg"
  2492. }
  2493. },
  2494. droneDefense: {
  2495. height: math.unit(9.5, "inches"),
  2496. name: "Drone (Defense)",
  2497. image: {
  2498. source: "./media/characters/jazzy/drone-defense.svg"
  2499. }
  2500. },
  2501. },
  2502. [
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(216, "feet"),
  2506. default: true
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(9 + 6/12, "feet"),
  2515. weight: math.unit(700, "lb"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/flamm/front.svg",
  2519. extra: 1751/1632,
  2520. bottom: 46/1797
  2521. }
  2522. },
  2523. buff: {
  2524. height: math.unit(9 + 6/12, "feet"),
  2525. weight: math.unit(950, "lb"),
  2526. name: "Buff",
  2527. image: {
  2528. source: "./media/characters/flamm/buff.svg",
  2529. extra: 3018/2874,
  2530. bottom: 221/3239
  2531. }
  2532. },
  2533. },
  2534. [
  2535. {
  2536. name: "Normal",
  2537. height: math.unit(9.5, "feet")
  2538. },
  2539. {
  2540. name: "Macro",
  2541. height: math.unit(200, "feet"),
  2542. default: true
  2543. },
  2544. ]
  2545. ))
  2546. characterMakers.push(() => makeCharacter(
  2547. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2548. {
  2549. front: {
  2550. height: math.unit(5 + 3/12, "feet"),
  2551. weight: math.unit(60, "kg"),
  2552. name: "Front",
  2553. image: {
  2554. source: "./media/characters/zephiro/front.svg",
  2555. extra: 2309 / 2162,
  2556. bottom: 0.069
  2557. }
  2558. },
  2559. side: {
  2560. height: math.unit(5 + 3/12, "feet"),
  2561. weight: math.unit(60, "kg"),
  2562. name: "Side",
  2563. image: {
  2564. source: "./media/characters/zephiro/side.svg",
  2565. extra: 2403 / 2279,
  2566. bottom: 0.015
  2567. }
  2568. },
  2569. back: {
  2570. height: math.unit(5 + 3/12, "feet"),
  2571. weight: math.unit(60, "kg"),
  2572. name: "Back",
  2573. image: {
  2574. source: "./media/characters/zephiro/back.svg",
  2575. extra: 2373 / 2244,
  2576. bottom: 0.013
  2577. }
  2578. },
  2579. hand: {
  2580. height: math.unit(0.68, "feet"),
  2581. name: "Hand",
  2582. image: {
  2583. source: "./media/characters/zephiro/hand.svg"
  2584. }
  2585. },
  2586. paw: {
  2587. height: math.unit(1, "feet"),
  2588. name: "Paw",
  2589. image: {
  2590. source: "./media/characters/zephiro/paw.svg"
  2591. }
  2592. },
  2593. beans: {
  2594. height: math.unit(0.93, "feet"),
  2595. name: "Beans",
  2596. image: {
  2597. source: "./media/characters/zephiro/beans.svg"
  2598. }
  2599. },
  2600. },
  2601. [
  2602. {
  2603. name: "Micro",
  2604. height: math.unit(3, "inches")
  2605. },
  2606. {
  2607. name: "Normal",
  2608. height: math.unit(5 + 3 / 12, "feet"),
  2609. default: true
  2610. },
  2611. {
  2612. name: "Macro",
  2613. height: math.unit(118, "feet")
  2614. },
  2615. ]
  2616. ))
  2617. characterMakers.push(() => makeCharacter(
  2618. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2619. {
  2620. front: {
  2621. height: math.unit(5, "feet"),
  2622. weight: math.unit(90, "kg"),
  2623. name: "Front",
  2624. image: {
  2625. source: "./media/characters/fory/front.svg",
  2626. extra: 2862 / 2674,
  2627. bottom: 180 / 3043.8
  2628. }
  2629. },
  2630. back: {
  2631. height: math.unit(5, "feet"),
  2632. weight: math.unit(90, "kg"),
  2633. name: "Back",
  2634. image: {
  2635. source: "./media/characters/fory/back.svg",
  2636. extra: 2962 / 2791,
  2637. bottom: 106 / 3071.8
  2638. }
  2639. },
  2640. foot: {
  2641. height: math.unit(2.14, "feet"),
  2642. name: "Foot",
  2643. image: {
  2644. source: "./media/characters/fory/foot.svg"
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(5, "feet")
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(50, "feet"),
  2656. default: true
  2657. },
  2658. {
  2659. name: "Megamacro",
  2660. height: math.unit(10, "miles")
  2661. },
  2662. {
  2663. name: "Gigamacro",
  2664. height: math.unit(5, "earths")
  2665. },
  2666. ]
  2667. ))
  2668. characterMakers.push(() => makeCharacter(
  2669. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2670. {
  2671. front: {
  2672. height: math.unit(7, "feet"),
  2673. weight: math.unit(90, "kg"),
  2674. name: "Front",
  2675. image: {
  2676. source: "./media/characters/kurrikage/front.svg",
  2677. extra: 1,
  2678. bottom: 0.035
  2679. }
  2680. },
  2681. back: {
  2682. height: math.unit(7, "feet"),
  2683. weight: math.unit(90, "lb"),
  2684. name: "Back",
  2685. image: {
  2686. source: "./media/characters/kurrikage/back.svg"
  2687. }
  2688. },
  2689. paw: {
  2690. height: math.unit(1.5, "feet"),
  2691. name: "Paw",
  2692. image: {
  2693. source: "./media/characters/kurrikage/paw.svg"
  2694. }
  2695. },
  2696. staff: {
  2697. height: math.unit(6.7, "feet"),
  2698. name: "Staff",
  2699. image: {
  2700. source: "./media/characters/kurrikage/staff.svg"
  2701. }
  2702. },
  2703. peek: {
  2704. height: math.unit(1.05, "feet"),
  2705. name: "Peeking",
  2706. image: {
  2707. source: "./media/characters/kurrikage/peek.svg",
  2708. bottom: 0.08
  2709. }
  2710. },
  2711. },
  2712. [
  2713. {
  2714. name: "Normal",
  2715. height: math.unit(12, "feet"),
  2716. default: true
  2717. },
  2718. {
  2719. name: "Big",
  2720. height: math.unit(20, "feet")
  2721. },
  2722. {
  2723. name: "Macro",
  2724. height: math.unit(500, "feet")
  2725. },
  2726. {
  2727. name: "Megamacro",
  2728. height: math.unit(20, "miles")
  2729. },
  2730. ]
  2731. ))
  2732. characterMakers.push(() => makeCharacter(
  2733. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2734. {
  2735. front: {
  2736. height: math.unit(6, "feet"),
  2737. weight: math.unit(75, "kg"),
  2738. name: "Front",
  2739. image: {
  2740. source: "./media/characters/shingo/front.svg",
  2741. extra: 1900/1825,
  2742. bottom: 82/1982
  2743. }
  2744. },
  2745. side: {
  2746. height: math.unit(6, "feet"),
  2747. weight: math.unit(75, "kg"),
  2748. name: "Side",
  2749. image: {
  2750. source: "./media/characters/shingo/side.svg",
  2751. extra: 1930/1865,
  2752. bottom: 16/1946
  2753. }
  2754. },
  2755. back: {
  2756. height: math.unit(6, "feet"),
  2757. weight: math.unit(75, "kg"),
  2758. name: "Back",
  2759. image: {
  2760. source: "./media/characters/shingo/back.svg",
  2761. extra: 1922/1852,
  2762. bottom: 16/1938
  2763. }
  2764. },
  2765. frontDressed: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(150, "lb"),
  2768. name: "Front-dressed",
  2769. image: {
  2770. source: "./media/characters/shingo/front-dressed.svg",
  2771. extra: 1900/1825,
  2772. bottom: 82/1982
  2773. }
  2774. },
  2775. paw: {
  2776. height: math.unit(1.29, "feet"),
  2777. name: "Paw",
  2778. image: {
  2779. source: "./media/characters/shingo/paw.svg"
  2780. }
  2781. },
  2782. hand: {
  2783. height: math.unit(1.07, "feet"),
  2784. name: "Hand",
  2785. image: {
  2786. source: "./media/characters/shingo/hand.svg"
  2787. }
  2788. },
  2789. frontAlt: {
  2790. height: math.unit(6, "feet"),
  2791. weight: math.unit(75, "kg"),
  2792. name: "Front (Alt)",
  2793. image: {
  2794. source: "./media/characters/shingo/front-alt.svg",
  2795. extra: 3511 / 3338,
  2796. bottom: 0.005
  2797. }
  2798. },
  2799. frontAlt2: {
  2800. height: math.unit(6, "feet"),
  2801. weight: math.unit(75, "kg"),
  2802. name: "Front (Alt 2)",
  2803. image: {
  2804. source: "./media/characters/shingo/front-alt-2.svg",
  2805. extra: 706/681,
  2806. bottom: 11/717
  2807. }
  2808. },
  2809. pawAlt: {
  2810. height: math.unit(1, "feet"),
  2811. name: "Paw (Alt)",
  2812. image: {
  2813. source: "./media/characters/shingo/paw-alt.svg"
  2814. }
  2815. },
  2816. },
  2817. [
  2818. {
  2819. name: "Micro",
  2820. height: math.unit(4, "inches")
  2821. },
  2822. {
  2823. name: "Normal",
  2824. height: math.unit(6, "feet"),
  2825. default: true
  2826. },
  2827. {
  2828. name: "Macro",
  2829. height: math.unit(108, "feet")
  2830. },
  2831. {
  2832. name: "Macro+",
  2833. height: math.unit(1500, "feet")
  2834. },
  2835. ]
  2836. ))
  2837. characterMakers.push(() => makeCharacter(
  2838. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2839. {
  2840. side: {
  2841. height: math.unit(6, "feet"),
  2842. weight: math.unit(75, "kg"),
  2843. name: "Side",
  2844. image: {
  2845. source: "./media/characters/aigey/side.svg"
  2846. }
  2847. },
  2848. },
  2849. [
  2850. {
  2851. name: "Macro",
  2852. height: math.unit(200, "feet"),
  2853. default: true
  2854. },
  2855. {
  2856. name: "Megamacro",
  2857. height: math.unit(100, "miles")
  2858. },
  2859. ]
  2860. )
  2861. )
  2862. characterMakers.push(() => makeCharacter(
  2863. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2864. {
  2865. front: {
  2866. height: math.unit(5 + 5 / 12, "feet"),
  2867. weight: math.unit(75, "kg"),
  2868. name: "Front",
  2869. image: {
  2870. source: "./media/characters/natasha/front.svg",
  2871. extra: 859 / 824,
  2872. bottom: 23 / 879.6
  2873. }
  2874. },
  2875. frontNsfw: {
  2876. height: math.unit(5 + 5 / 12, "feet"),
  2877. weight: math.unit(75, "kg"),
  2878. name: "Front (NSFW)",
  2879. image: {
  2880. source: "./media/characters/natasha/front-nsfw.svg",
  2881. extra: 859 / 824,
  2882. bottom: 23 / 879.6
  2883. }
  2884. },
  2885. frontErect: {
  2886. height: math.unit(5 + 5 / 12, "feet"),
  2887. weight: math.unit(75, "kg"),
  2888. name: "Front (Erect)",
  2889. image: {
  2890. source: "./media/characters/natasha/front-erect.svg",
  2891. extra: 859 / 824,
  2892. bottom: 23 / 879.6
  2893. }
  2894. },
  2895. back: {
  2896. height: math.unit(5 + 5 / 12, "feet"),
  2897. weight: math.unit(75, "kg"),
  2898. name: "Back",
  2899. image: {
  2900. source: "./media/characters/natasha/back.svg",
  2901. extra: 887.9 / 852.6,
  2902. bottom: 9.7 / 896.4
  2903. }
  2904. },
  2905. backAlt: {
  2906. height: math.unit(5 + 5 / 12, "feet"),
  2907. weight: math.unit(75, "kg"),
  2908. name: "Back (Alt)",
  2909. image: {
  2910. source: "./media/characters/natasha/back-alt.svg",
  2911. extra: 1236.7 / 1192,
  2912. bottom: 22.3 / 1258.2
  2913. }
  2914. },
  2915. dick: {
  2916. height: math.unit(1.772, "feet"),
  2917. name: "Dick",
  2918. image: {
  2919. source: "./media/characters/natasha/dick.svg"
  2920. }
  2921. },
  2922. paw: {
  2923. height: math.unit(0.250, "meters"),
  2924. name: "Paw",
  2925. image: {
  2926. source: "./media/characters/natasha/paw.svg"
  2927. }
  2928. },
  2929. },
  2930. [
  2931. {
  2932. name: "Normal",
  2933. height: math.unit(5 + 5 / 12, "feet")
  2934. },
  2935. {
  2936. name: "Large",
  2937. height: math.unit(12, "feet")
  2938. },
  2939. {
  2940. name: "Macro",
  2941. height: math.unit(100, "feet"),
  2942. default: true
  2943. },
  2944. {
  2945. name: "Macro+",
  2946. height: math.unit(260, "feet")
  2947. },
  2948. {
  2949. name: "Macro++",
  2950. height: math.unit(1, "mile")
  2951. },
  2952. ]
  2953. ))
  2954. characterMakers.push(() => makeCharacter(
  2955. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2956. {
  2957. front: {
  2958. height: math.unit(6, "feet"),
  2959. weight: math.unit(75, "kg"),
  2960. name: "Front",
  2961. image: {
  2962. source: "./media/characters/malik/front.svg"
  2963. }
  2964. },
  2965. side: {
  2966. height: math.unit(6, "feet"),
  2967. weight: math.unit(75, "kg"),
  2968. name: "Side",
  2969. image: {
  2970. source: "./media/characters/malik/side.svg",
  2971. extra: 1.1539
  2972. }
  2973. },
  2974. back: {
  2975. height: math.unit(6, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Back",
  2978. image: {
  2979. source: "./media/characters/malik/back.svg"
  2980. }
  2981. },
  2982. },
  2983. [
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(156, "feet"),
  2987. default: true
  2988. },
  2989. {
  2990. name: "Macro+",
  2991. height: math.unit(1188, "feet")
  2992. },
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2997. {
  2998. front: {
  2999. height: math.unit(6, "feet"),
  3000. weight: math.unit(75, "kg"),
  3001. name: "Front",
  3002. image: {
  3003. source: "./media/characters/sefer/front.svg",
  3004. extra: 848 / 659,
  3005. bottom: 28.3 / 876.442
  3006. }
  3007. },
  3008. back: {
  3009. height: math.unit(6, "feet"),
  3010. weight: math.unit(75, "kg"),
  3011. name: "Back",
  3012. image: {
  3013. source: "./media/characters/sefer/back.svg",
  3014. extra: 864 / 695,
  3015. bottom: 10 / 871
  3016. }
  3017. },
  3018. frontDressed: {
  3019. height: math.unit(6, "feet"),
  3020. weight: math.unit(75, "kg"),
  3021. name: "Front (Dressed)",
  3022. image: {
  3023. source: "./media/characters/sefer/front-dressed.svg",
  3024. extra: 839 / 653,
  3025. bottom: 37.6 / 878
  3026. }
  3027. },
  3028. },
  3029. [
  3030. {
  3031. name: "Normal",
  3032. height: math.unit(6, "feet"),
  3033. default: true
  3034. },
  3035. ]
  3036. ))
  3037. characterMakers.push(() => makeCharacter(
  3038. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3039. {
  3040. body: {
  3041. height: math.unit(2.2428, "meter"),
  3042. weight: math.unit(124.738, "kg"),
  3043. name: "Body",
  3044. image: {
  3045. extra: 1225 / 1050,
  3046. source: "./media/characters/north/front.svg"
  3047. }
  3048. }
  3049. },
  3050. [
  3051. {
  3052. name: "Micro",
  3053. height: math.unit(4, "inches")
  3054. },
  3055. {
  3056. name: "Macro",
  3057. height: math.unit(63, "meters")
  3058. },
  3059. {
  3060. name: "Megamacro",
  3061. height: math.unit(101, "miles"),
  3062. default: true
  3063. }
  3064. ]
  3065. ))
  3066. characterMakers.push(() => makeCharacter(
  3067. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3068. {
  3069. angled: {
  3070. height: math.unit(4, "meter"),
  3071. weight: math.unit(150, "kg"),
  3072. name: "Angled",
  3073. image: {
  3074. source: "./media/characters/talan/angled-sfw.svg",
  3075. bottom: 29 / 3734
  3076. }
  3077. },
  3078. angledNsfw: {
  3079. height: math.unit(4, "meter"),
  3080. weight: math.unit(150, "kg"),
  3081. name: "Angled (NSFW)",
  3082. image: {
  3083. source: "./media/characters/talan/angled-nsfw.svg",
  3084. bottom: 29 / 3734
  3085. }
  3086. },
  3087. frontNsfw: {
  3088. height: math.unit(4, "meter"),
  3089. weight: math.unit(150, "kg"),
  3090. name: "Front (NSFW)",
  3091. image: {
  3092. source: "./media/characters/talan/front-nsfw.svg",
  3093. bottom: 29 / 3734
  3094. }
  3095. },
  3096. sideNsfw: {
  3097. height: math.unit(4, "meter"),
  3098. weight: math.unit(150, "kg"),
  3099. name: "Side (NSFW)",
  3100. image: {
  3101. source: "./media/characters/talan/side-nsfw.svg",
  3102. bottom: 29 / 3734
  3103. }
  3104. },
  3105. back: {
  3106. height: math.unit(4, "meter"),
  3107. weight: math.unit(150, "kg"),
  3108. name: "Back",
  3109. image: {
  3110. source: "./media/characters/talan/back.svg"
  3111. }
  3112. },
  3113. dickBottom: {
  3114. height: math.unit(0.621, "meter"),
  3115. name: "Dick (Bottom)",
  3116. image: {
  3117. source: "./media/characters/talan/dick-bottom.svg"
  3118. }
  3119. },
  3120. dickTop: {
  3121. height: math.unit(0.621, "meter"),
  3122. name: "Dick (Top)",
  3123. image: {
  3124. source: "./media/characters/talan/dick-top.svg"
  3125. }
  3126. },
  3127. dickSide: {
  3128. height: math.unit(0.305, "meter"),
  3129. name: "Dick (Side)",
  3130. image: {
  3131. source: "./media/characters/talan/dick-side.svg"
  3132. }
  3133. },
  3134. dickFront: {
  3135. height: math.unit(0.305, "meter"),
  3136. name: "Dick (Front)",
  3137. image: {
  3138. source: "./media/characters/talan/dick-front.svg"
  3139. }
  3140. },
  3141. },
  3142. [
  3143. {
  3144. name: "Normal",
  3145. height: math.unit(4, "meters")
  3146. },
  3147. {
  3148. name: "Macro",
  3149. height: math.unit(100, "meters")
  3150. },
  3151. {
  3152. name: "Megamacro",
  3153. height: math.unit(2, "miles"),
  3154. default: true
  3155. },
  3156. {
  3157. name: "Gigamacro",
  3158. height: math.unit(5000, "miles")
  3159. },
  3160. {
  3161. name: "Teramacro",
  3162. height: math.unit(100, "parsecs")
  3163. }
  3164. ]
  3165. ))
  3166. characterMakers.push(() => makeCharacter(
  3167. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3168. {
  3169. front: {
  3170. height: math.unit(2, "meter"),
  3171. weight: math.unit(90, "kg"),
  3172. name: "Front",
  3173. image: {
  3174. source: "./media/characters/gael'rathus/front.svg"
  3175. }
  3176. },
  3177. frontAlt: {
  3178. height: math.unit(2, "meter"),
  3179. weight: math.unit(90, "kg"),
  3180. name: "Front (alt)",
  3181. image: {
  3182. source: "./media/characters/gael'rathus/front-alt.svg"
  3183. }
  3184. },
  3185. frontAlt2: {
  3186. height: math.unit(2, "meter"),
  3187. weight: math.unit(90, "kg"),
  3188. name: "Front (alt 2)",
  3189. image: {
  3190. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3191. }
  3192. }
  3193. },
  3194. [
  3195. {
  3196. name: "Normal",
  3197. height: math.unit(9, "feet"),
  3198. default: true
  3199. },
  3200. {
  3201. name: "Large",
  3202. height: math.unit(25, "feet")
  3203. },
  3204. {
  3205. name: "Macro",
  3206. height: math.unit(0.25, "miles")
  3207. },
  3208. {
  3209. name: "Megamacro",
  3210. height: math.unit(10, "miles")
  3211. }
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3216. {
  3217. side: {
  3218. height: math.unit(2, "meter"),
  3219. weight: math.unit(140, "kg"),
  3220. name: "Side",
  3221. image: {
  3222. source: "./media/characters/sosha/side.svg",
  3223. bottom: 0.042
  3224. }
  3225. },
  3226. },
  3227. [
  3228. {
  3229. name: "Normal",
  3230. height: math.unit(12, "feet"),
  3231. default: true
  3232. }
  3233. ]
  3234. ))
  3235. characterMakers.push(() => makeCharacter(
  3236. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3237. {
  3238. side: {
  3239. height: math.unit(5 + 5 / 12, "feet"),
  3240. weight: math.unit(170, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/runnola/side.svg",
  3244. extra: 741 / 448,
  3245. bottom: 0.05
  3246. }
  3247. },
  3248. },
  3249. [
  3250. {
  3251. name: "Small",
  3252. height: math.unit(3, "feet")
  3253. },
  3254. {
  3255. name: "Normal",
  3256. height: math.unit(5 + 5 / 12, "feet"),
  3257. default: true
  3258. },
  3259. {
  3260. name: "Big",
  3261. height: math.unit(10, "feet")
  3262. },
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(50, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/kurribird/front.svg",
  3274. bottom: 0.015
  3275. }
  3276. },
  3277. frontAlt: {
  3278. height: math.unit(1.5, "meter"),
  3279. weight: math.unit(50, "kg"),
  3280. name: "Front (Alt)",
  3281. image: {
  3282. source: "./media/characters/kurribird/front-alt.svg",
  3283. extra: 1.45
  3284. }
  3285. },
  3286. },
  3287. [
  3288. {
  3289. name: "Normal",
  3290. height: math.unit(7, "feet")
  3291. },
  3292. {
  3293. name: "Big",
  3294. height: math.unit(12, "feet"),
  3295. default: true
  3296. },
  3297. {
  3298. name: "Macro",
  3299. height: math.unit(1500, "feet")
  3300. },
  3301. {
  3302. name: "Megamacro",
  3303. height: math.unit(2, "miles")
  3304. }
  3305. ]
  3306. ))
  3307. characterMakers.push(() => makeCharacter(
  3308. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3309. {
  3310. front: {
  3311. height: math.unit(2, "meter"),
  3312. weight: math.unit(80, "kg"),
  3313. name: "Front",
  3314. image: {
  3315. source: "./media/characters/elbial/front.svg",
  3316. extra: 1643 / 1556,
  3317. bottom: 60.2 / 1696
  3318. }
  3319. },
  3320. side: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(80, "kg"),
  3323. name: "Side",
  3324. image: {
  3325. source: "./media/characters/elbial/side.svg",
  3326. extra: 1630 / 1565,
  3327. bottom: 71.5 / 1697
  3328. }
  3329. },
  3330. back: {
  3331. height: math.unit(2, "meter"),
  3332. weight: math.unit(80, "kg"),
  3333. name: "Back",
  3334. image: {
  3335. source: "./media/characters/elbial/back.svg",
  3336. extra: 1668 / 1595,
  3337. bottom: 5.6 / 1672
  3338. }
  3339. },
  3340. frontDressed: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(80, "kg"),
  3343. name: "Front (Dressed)",
  3344. image: {
  3345. source: "./media/characters/elbial/front-dressed.svg",
  3346. extra: 1653 / 1584,
  3347. bottom: 57 / 1708
  3348. }
  3349. },
  3350. genitals: {
  3351. height: math.unit(2 / 3.367, "meter"),
  3352. name: "Genitals",
  3353. image: {
  3354. source: "./media/characters/elbial/genitals.svg"
  3355. }
  3356. },
  3357. },
  3358. [
  3359. {
  3360. name: "Large",
  3361. height: math.unit(100, "feet")
  3362. },
  3363. {
  3364. name: "Macro",
  3365. height: math.unit(500, "feet"),
  3366. default: true
  3367. },
  3368. {
  3369. name: "Megamacro",
  3370. height: math.unit(10, "miles")
  3371. },
  3372. {
  3373. name: "Gigamacro",
  3374. height: math.unit(25000, "miles")
  3375. },
  3376. {
  3377. name: "Full-Size",
  3378. height: math.unit(8000000, "gigaparsecs")
  3379. }
  3380. ]
  3381. ))
  3382. characterMakers.push(() => makeCharacter(
  3383. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3384. {
  3385. front: {
  3386. height: math.unit(2, "meter"),
  3387. weight: math.unit(60, "kg"),
  3388. name: "Front",
  3389. image: {
  3390. source: "./media/characters/noah/front.svg"
  3391. }
  3392. },
  3393. talons: {
  3394. height: math.unit(0.315, "meter"),
  3395. name: "Talons",
  3396. image: {
  3397. source: "./media/characters/noah/talons.svg"
  3398. }
  3399. }
  3400. },
  3401. [
  3402. {
  3403. name: "Large",
  3404. height: math.unit(50, "feet")
  3405. },
  3406. {
  3407. name: "Macro",
  3408. height: math.unit(750, "feet"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Megamacro",
  3413. height: math.unit(50, "miles")
  3414. },
  3415. {
  3416. name: "Gigamacro",
  3417. height: math.unit(100000, "miles")
  3418. },
  3419. {
  3420. name: "Full-Size",
  3421. height: math.unit(3000000000, "miles")
  3422. }
  3423. ]
  3424. ))
  3425. characterMakers.push(() => makeCharacter(
  3426. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3427. {
  3428. front: {
  3429. height: math.unit(2, "meter"),
  3430. weight: math.unit(80, "kg"),
  3431. name: "Front",
  3432. image: {
  3433. source: "./media/characters/natalya/front.svg"
  3434. }
  3435. },
  3436. back: {
  3437. height: math.unit(2, "meter"),
  3438. weight: math.unit(80, "kg"),
  3439. name: "Back",
  3440. image: {
  3441. source: "./media/characters/natalya/back.svg"
  3442. }
  3443. }
  3444. },
  3445. [
  3446. {
  3447. name: "Normal",
  3448. height: math.unit(150, "feet"),
  3449. default: true
  3450. },
  3451. {
  3452. name: "Megamacro",
  3453. height: math.unit(5, "miles")
  3454. },
  3455. {
  3456. name: "Full-Size",
  3457. height: math.unit(600, "kiloparsecs")
  3458. }
  3459. ]
  3460. ))
  3461. characterMakers.push(() => makeCharacter(
  3462. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3463. {
  3464. front: {
  3465. height: math.unit(2, "meter"),
  3466. weight: math.unit(50, "kg"),
  3467. name: "Front",
  3468. image: {
  3469. source: "./media/characters/erestrebah/front.svg",
  3470. extra: 208 / 193,
  3471. bottom: 0.055
  3472. }
  3473. },
  3474. back: {
  3475. height: math.unit(2, "meter"),
  3476. weight: math.unit(50, "kg"),
  3477. name: "Back",
  3478. image: {
  3479. source: "./media/characters/erestrebah/back.svg",
  3480. extra: 1.3
  3481. }
  3482. }
  3483. },
  3484. [
  3485. {
  3486. name: "Normal",
  3487. height: math.unit(10, "feet")
  3488. },
  3489. {
  3490. name: "Large",
  3491. height: math.unit(50, "feet"),
  3492. default: true
  3493. },
  3494. {
  3495. name: "Macro",
  3496. height: math.unit(300, "feet")
  3497. },
  3498. {
  3499. name: "Macro+",
  3500. height: math.unit(750, "feet")
  3501. },
  3502. {
  3503. name: "Megamacro",
  3504. height: math.unit(3, "miles")
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(2, "meter"),
  3513. weight: math.unit(80, "kg"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/jennifer/front.svg",
  3517. bottom: 0.11,
  3518. extra: 1.16
  3519. }
  3520. },
  3521. frontAlt: {
  3522. height: math.unit(2, "meter"),
  3523. weight: math.unit(80, "kg"),
  3524. name: "Front (Alt)",
  3525. image: {
  3526. source: "./media/characters/jennifer/front-alt.svg"
  3527. }
  3528. }
  3529. },
  3530. [
  3531. {
  3532. name: "Canon Height",
  3533. height: math.unit(120, "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Macro+",
  3538. height: math.unit(300, "feet")
  3539. },
  3540. {
  3541. name: "Megamacro",
  3542. height: math.unit(20000, "feet")
  3543. }
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(2, "meter"),
  3551. weight: math.unit(50, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/kalista/front.svg",
  3555. extra: 1947 / 1700,
  3556. bottom: 76.6 / 1412.98
  3557. }
  3558. },
  3559. back: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(50, "kg"),
  3562. name: "Back",
  3563. image: {
  3564. source: "./media/characters/kalista/back.svg",
  3565. extra: 1366 / 1156,
  3566. bottom: 33.9 / 1362.78
  3567. }
  3568. }
  3569. },
  3570. [
  3571. {
  3572. name: "Uncomfortably Small",
  3573. height: math.unit(10, "feet")
  3574. },
  3575. {
  3576. name: "Small",
  3577. height: math.unit(30, "feet")
  3578. },
  3579. {
  3580. name: "Macro",
  3581. height: math.unit(100, "feet"),
  3582. default: true
  3583. },
  3584. {
  3585. name: "Macro+",
  3586. height: math.unit(2000, "feet")
  3587. },
  3588. {
  3589. name: "True Form",
  3590. height: math.unit(8924, "miles")
  3591. }
  3592. ]
  3593. ))
  3594. characterMakers.push(() => makeCharacter(
  3595. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3596. {
  3597. front: {
  3598. height: math.unit(2, "meter"),
  3599. weight: math.unit(120, "kg"),
  3600. name: "Front",
  3601. image: {
  3602. source: "./media/characters/ggv/front.svg"
  3603. }
  3604. },
  3605. side: {
  3606. height: math.unit(2, "meter"),
  3607. weight: math.unit(120, "kg"),
  3608. name: "Side",
  3609. image: {
  3610. source: "./media/characters/ggv/side.svg"
  3611. }
  3612. }
  3613. },
  3614. [
  3615. {
  3616. name: "Extremely Puny",
  3617. height: math.unit(9 + 5 / 12, "feet")
  3618. },
  3619. {
  3620. name: "Horribly Small",
  3621. height: math.unit(47.7, "miles"),
  3622. default: true
  3623. },
  3624. {
  3625. name: "Reasonably Sized",
  3626. height: math.unit(25000, "parsecs")
  3627. },
  3628. {
  3629. name: "Slightly Uncompressed",
  3630. height: math.unit(7.77e31, "parsecs")
  3631. },
  3632. {
  3633. name: "Omniversal",
  3634. height: math.unit(1e300, "meters")
  3635. },
  3636. ]
  3637. ))
  3638. characterMakers.push(() => makeCharacter(
  3639. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3640. {
  3641. front: {
  3642. height: math.unit(2, "meter"),
  3643. weight: math.unit(75, "lb"),
  3644. name: "Front",
  3645. image: {
  3646. source: "./media/characters/napalm/front.svg"
  3647. }
  3648. },
  3649. back: {
  3650. height: math.unit(2, "meter"),
  3651. weight: math.unit(75, "lb"),
  3652. name: "Back",
  3653. image: {
  3654. source: "./media/characters/napalm/back.svg"
  3655. }
  3656. }
  3657. },
  3658. [
  3659. {
  3660. name: "Standard",
  3661. height: math.unit(55, "feet"),
  3662. default: true
  3663. }
  3664. ]
  3665. ))
  3666. characterMakers.push(() => makeCharacter(
  3667. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3668. {
  3669. front: {
  3670. height: math.unit(7 + 5 / 6, "feet"),
  3671. weight: math.unit(325, "lb"),
  3672. name: "Front",
  3673. image: {
  3674. source: "./media/characters/asana/front.svg",
  3675. extra: 1133 / 1060,
  3676. bottom: 15.2 / 1148.6
  3677. }
  3678. },
  3679. back: {
  3680. height: math.unit(7 + 5 / 6, "feet"),
  3681. weight: math.unit(325, "lb"),
  3682. name: "Back",
  3683. image: {
  3684. source: "./media/characters/asana/back.svg",
  3685. extra: 1114 / 1043,
  3686. bottom: 5 / 1120
  3687. }
  3688. },
  3689. dressedDark: {
  3690. height: math.unit(7 + 5 / 6, "feet"),
  3691. weight: math.unit(325, "lb"),
  3692. name: "Dressed (Dark)",
  3693. image: {
  3694. source: "./media/characters/asana/dressed-dark.svg",
  3695. extra: 1133 / 1060,
  3696. bottom: 15.2 / 1148.6
  3697. }
  3698. },
  3699. dressedLight: {
  3700. height: math.unit(7 + 5 / 6, "feet"),
  3701. weight: math.unit(325, "lb"),
  3702. name: "Dressed (Light)",
  3703. image: {
  3704. source: "./media/characters/asana/dressed-light.svg",
  3705. extra: 1133 / 1060,
  3706. bottom: 15.2 / 1148.6
  3707. }
  3708. },
  3709. },
  3710. [
  3711. {
  3712. name: "Standard",
  3713. height: math.unit(7 + 5 / 6, "feet"),
  3714. default: true
  3715. },
  3716. {
  3717. name: "Large",
  3718. height: math.unit(10, "meters")
  3719. },
  3720. {
  3721. name: "Macro",
  3722. height: math.unit(2500, "meters")
  3723. },
  3724. {
  3725. name: "Megamacro",
  3726. height: math.unit(5e6, "meters")
  3727. },
  3728. {
  3729. name: "Examacro",
  3730. height: math.unit(5e12, "lightyears")
  3731. },
  3732. {
  3733. name: "Max Size",
  3734. height: math.unit(1e31, "lightyears")
  3735. }
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3740. {
  3741. front: {
  3742. height: math.unit(2, "meter"),
  3743. weight: math.unit(60, "kg"),
  3744. name: "Front",
  3745. image: {
  3746. source: "./media/characters/ebony/front.svg",
  3747. bottom: 0.03,
  3748. extra: 1045 / 810 + 0.03
  3749. }
  3750. },
  3751. side: {
  3752. height: math.unit(2, "meter"),
  3753. weight: math.unit(60, "kg"),
  3754. name: "Side",
  3755. image: {
  3756. source: "./media/characters/ebony/side.svg",
  3757. bottom: 0.03,
  3758. extra: 1045 / 810 + 0.03
  3759. }
  3760. },
  3761. back: {
  3762. height: math.unit(2, "meter"),
  3763. weight: math.unit(60, "kg"),
  3764. name: "Back",
  3765. image: {
  3766. source: "./media/characters/ebony/back.svg",
  3767. bottom: 0.01,
  3768. extra: 1045 / 810 + 0.01
  3769. }
  3770. },
  3771. },
  3772. [
  3773. // TODO check why I did this lol
  3774. {
  3775. name: "Standard",
  3776. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3777. default: true
  3778. },
  3779. {
  3780. name: "Macro",
  3781. height: math.unit(200, "feet")
  3782. },
  3783. {
  3784. name: "Gigamacro",
  3785. height: math.unit(13000, "km")
  3786. }
  3787. ]
  3788. ))
  3789. characterMakers.push(() => makeCharacter(
  3790. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3791. {
  3792. front: {
  3793. height: math.unit(6, "feet"),
  3794. weight: math.unit(175, "lb"),
  3795. name: "Front",
  3796. image: {
  3797. source: "./media/characters/mountain/front.svg",
  3798. extra: 972 / 955,
  3799. bottom: 64 / 1036.6
  3800. }
  3801. },
  3802. back: {
  3803. height: math.unit(6, "feet"),
  3804. weight: math.unit(175, "lb"),
  3805. name: "Back",
  3806. image: {
  3807. source: "./media/characters/mountain/back.svg",
  3808. extra: 970 / 950,
  3809. bottom: 28.25 / 999
  3810. }
  3811. },
  3812. },
  3813. [
  3814. {
  3815. name: "Large",
  3816. height: math.unit(20, "meters")
  3817. },
  3818. {
  3819. name: "Macro",
  3820. height: math.unit(300, "meters")
  3821. },
  3822. {
  3823. name: "Gigamacro",
  3824. height: math.unit(10000, "km"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Examacro",
  3829. height: math.unit(10e9, "lightyears")
  3830. }
  3831. ]
  3832. ))
  3833. characterMakers.push(() => makeCharacter(
  3834. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3835. {
  3836. front: {
  3837. height: math.unit(8, "feet"),
  3838. weight: math.unit(500, "lb"),
  3839. name: "Front",
  3840. image: {
  3841. source: "./media/characters/rick/front.svg"
  3842. }
  3843. }
  3844. },
  3845. [
  3846. {
  3847. name: "Normal",
  3848. height: math.unit(8, "feet"),
  3849. default: true
  3850. },
  3851. {
  3852. name: "Macro",
  3853. height: math.unit(5, "km")
  3854. }
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(8, "feet"),
  3862. weight: math.unit(120, "lb"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/ona/front.svg"
  3866. }
  3867. },
  3868. frontAlt: {
  3869. height: math.unit(8, "feet"),
  3870. weight: math.unit(120, "lb"),
  3871. name: "Front (Alt)",
  3872. image: {
  3873. source: "./media/characters/ona/front-alt.svg"
  3874. }
  3875. },
  3876. back: {
  3877. height: math.unit(8, "feet"),
  3878. weight: math.unit(120, "lb"),
  3879. name: "Back",
  3880. image: {
  3881. source: "./media/characters/ona/back.svg"
  3882. }
  3883. },
  3884. foot: {
  3885. height: math.unit(1.1, "feet"),
  3886. name: "Foot",
  3887. image: {
  3888. source: "./media/characters/ona/foot.svg"
  3889. }
  3890. }
  3891. },
  3892. [
  3893. {
  3894. name: "Megamacro",
  3895. height: math.unit(70, "km"),
  3896. default: true
  3897. },
  3898. {
  3899. name: "Gigamacro",
  3900. height: math.unit(681818, "miles")
  3901. },
  3902. {
  3903. name: "Examacro",
  3904. height: math.unit(3800000, "lightyears")
  3905. },
  3906. ]
  3907. ))
  3908. characterMakers.push(() => makeCharacter(
  3909. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3910. {
  3911. front: {
  3912. height: math.unit(12, "feet"),
  3913. weight: math.unit(3000, "lb"),
  3914. name: "Front",
  3915. image: {
  3916. source: "./media/characters/mech/front.svg",
  3917. extra: 2900 / 2770,
  3918. bottom: 110 / 3010
  3919. }
  3920. },
  3921. back: {
  3922. height: math.unit(12, "feet"),
  3923. weight: math.unit(3000, "lb"),
  3924. name: "Back",
  3925. image: {
  3926. source: "./media/characters/mech/back.svg",
  3927. extra: 3011 / 2890,
  3928. bottom: 94 / 3105
  3929. }
  3930. },
  3931. maw: {
  3932. height: math.unit(3.07, "feet"),
  3933. name: "Maw",
  3934. image: {
  3935. source: "./media/characters/mech/maw.svg"
  3936. }
  3937. },
  3938. head: {
  3939. height: math.unit(2.82, "feet"),
  3940. name: "Head",
  3941. image: {
  3942. source: "./media/characters/mech/head.svg"
  3943. }
  3944. },
  3945. dick: {
  3946. height: math.unit(1.43, "feet"),
  3947. name: "Dick",
  3948. image: {
  3949. source: "./media/characters/mech/dick.svg"
  3950. }
  3951. },
  3952. },
  3953. [
  3954. {
  3955. name: "Normal",
  3956. height: math.unit(12, "feet")
  3957. },
  3958. {
  3959. name: "Macro",
  3960. height: math.unit(300, "feet"),
  3961. default: true
  3962. },
  3963. {
  3964. name: "Macro+",
  3965. height: math.unit(1500, "feet")
  3966. },
  3967. ]
  3968. ))
  3969. characterMakers.push(() => makeCharacter(
  3970. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3971. {
  3972. front: {
  3973. height: math.unit(1.3, "meter"),
  3974. weight: math.unit(30, "kg"),
  3975. name: "Front",
  3976. image: {
  3977. source: "./media/characters/gregory/front.svg",
  3978. }
  3979. }
  3980. },
  3981. [
  3982. {
  3983. name: "Normal",
  3984. height: math.unit(1.3, "meter"),
  3985. default: true
  3986. },
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(20, "meter")
  3990. }
  3991. ]
  3992. ))
  3993. characterMakers.push(() => makeCharacter(
  3994. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3995. {
  3996. front: {
  3997. height: math.unit(2.8, "meter"),
  3998. weight: math.unit(200, "kg"),
  3999. name: "Front",
  4000. image: {
  4001. source: "./media/characters/elory/front.svg",
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Normal",
  4008. height: math.unit(2.8, "meter"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(38, "meter")
  4014. }
  4015. ]
  4016. ))
  4017. characterMakers.push(() => makeCharacter(
  4018. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4019. {
  4020. front: {
  4021. height: math.unit(470, "feet"),
  4022. weight: math.unit(924, "tons"),
  4023. name: "Front",
  4024. image: {
  4025. source: "./media/characters/angelpatamon/front.svg",
  4026. }
  4027. }
  4028. },
  4029. [
  4030. {
  4031. name: "Normal",
  4032. height: math.unit(470, "feet"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Deity Size I",
  4037. height: math.unit(28651.2, "km")
  4038. },
  4039. {
  4040. name: "Deity Size II",
  4041. height: math.unit(171907.2, "km")
  4042. }
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4047. {
  4048. side: {
  4049. height: math.unit(7.2, "meter"),
  4050. weight: math.unit(8.2, "tons"),
  4051. name: "Side",
  4052. image: {
  4053. source: "./media/characters/cryae/side.svg",
  4054. extra: 3500 / 1500
  4055. }
  4056. }
  4057. },
  4058. [
  4059. {
  4060. name: "Normal",
  4061. height: math.unit(7.2, "meter"),
  4062. default: true
  4063. }
  4064. ]
  4065. ))
  4066. characterMakers.push(() => makeCharacter(
  4067. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4068. {
  4069. front: {
  4070. height: math.unit(6, "feet"),
  4071. weight: math.unit(175, "lb"),
  4072. name: "Front",
  4073. image: {
  4074. source: "./media/characters/xera/front.svg",
  4075. extra: 2377 / 1972,
  4076. bottom: 75.5 / 2452
  4077. }
  4078. },
  4079. side: {
  4080. height: math.unit(6, "feet"),
  4081. weight: math.unit(175, "lb"),
  4082. name: "Side",
  4083. image: {
  4084. source: "./media/characters/xera/side.svg",
  4085. extra: 2345 / 2019,
  4086. bottom: 39.7 / 2384
  4087. }
  4088. },
  4089. back: {
  4090. height: math.unit(6, "feet"),
  4091. weight: math.unit(175, "lb"),
  4092. name: "Back",
  4093. image: {
  4094. source: "./media/characters/xera/back.svg",
  4095. extra: 2095 / 1984,
  4096. bottom: 67 / 2166
  4097. }
  4098. },
  4099. },
  4100. [
  4101. {
  4102. name: "Small",
  4103. height: math.unit(10, "feet")
  4104. },
  4105. {
  4106. name: "Macro",
  4107. height: math.unit(500, "meters"),
  4108. default: true
  4109. },
  4110. {
  4111. name: "Macro+",
  4112. height: math.unit(10, "km")
  4113. },
  4114. {
  4115. name: "Gigamacro",
  4116. height: math.unit(25000, "km")
  4117. },
  4118. {
  4119. name: "Teramacro",
  4120. height: math.unit(3e6, "km")
  4121. }
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4126. {
  4127. front: {
  4128. height: math.unit(6, "feet"),
  4129. weight: math.unit(175, "lb"),
  4130. name: "Front",
  4131. image: {
  4132. source: "./media/characters/nebula/front.svg",
  4133. extra: 2566 / 2362,
  4134. bottom: 81 / 2644
  4135. }
  4136. }
  4137. },
  4138. [
  4139. {
  4140. name: "Small",
  4141. height: math.unit(4.5, "meters")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(1500, "meters"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Megamacro",
  4150. height: math.unit(150, "km")
  4151. },
  4152. {
  4153. name: "Gigamacro",
  4154. height: math.unit(27000, "km")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4160. {
  4161. front: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(225, "lb"),
  4164. name: "Front",
  4165. image: {
  4166. source: "./media/characters/abysgar/front.svg"
  4167. }
  4168. }
  4169. },
  4170. [
  4171. {
  4172. name: "Small",
  4173. height: math.unit(4.5, "meters")
  4174. },
  4175. {
  4176. name: "Macro",
  4177. height: math.unit(1250, "meters"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "Megamacro",
  4182. height: math.unit(125, "km")
  4183. },
  4184. {
  4185. name: "Gigamacro",
  4186. height: math.unit(26000, "km")
  4187. }
  4188. ]
  4189. ))
  4190. characterMakers.push(() => makeCharacter(
  4191. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4192. {
  4193. front: {
  4194. height: math.unit(6, "feet"),
  4195. weight: math.unit(180, "lb"),
  4196. name: "Front",
  4197. image: {
  4198. source: "./media/characters/yakuz/front.svg"
  4199. }
  4200. }
  4201. },
  4202. [
  4203. {
  4204. name: "Small",
  4205. height: math.unit(5, "meters")
  4206. },
  4207. {
  4208. name: "Macro",
  4209. height: math.unit(1500, "meters"),
  4210. default: true
  4211. },
  4212. {
  4213. name: "Megamacro",
  4214. height: math.unit(200, "km")
  4215. },
  4216. {
  4217. name: "Gigamacro",
  4218. height: math.unit(100000, "km")
  4219. }
  4220. ]
  4221. ))
  4222. characterMakers.push(() => makeCharacter(
  4223. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4224. {
  4225. front: {
  4226. height: math.unit(6, "feet"),
  4227. weight: math.unit(175, "lb"),
  4228. name: "Front",
  4229. image: {
  4230. source: "./media/characters/mirova/front.svg",
  4231. extra: 3334 / 3071,
  4232. bottom: 42 / 3375.6
  4233. }
  4234. }
  4235. },
  4236. [
  4237. {
  4238. name: "Small",
  4239. height: math.unit(5, "meters")
  4240. },
  4241. {
  4242. name: "Macro",
  4243. height: math.unit(900, "meters"),
  4244. default: true
  4245. },
  4246. {
  4247. name: "Megamacro",
  4248. height: math.unit(135, "km")
  4249. },
  4250. {
  4251. name: "Gigamacro",
  4252. height: math.unit(20000, "km")
  4253. }
  4254. ]
  4255. ))
  4256. characterMakers.push(() => makeCharacter(
  4257. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4258. {
  4259. side: {
  4260. height: math.unit(28.35, "feet"),
  4261. weight: math.unit(99.75, "tons"),
  4262. name: "Side",
  4263. image: {
  4264. source: "./media/characters/asana-mech/side.svg",
  4265. extra: 923 / 699,
  4266. bottom: 50 / 975
  4267. }
  4268. },
  4269. chaingun: {
  4270. height: math.unit(7, "feet"),
  4271. weight: math.unit(2400, "lb"),
  4272. name: "Chaingun",
  4273. image: {
  4274. source: "./media/characters/asana-mech/chaingun.svg"
  4275. }
  4276. },
  4277. laser: {
  4278. height: math.unit(7.12, "feet"),
  4279. weight: math.unit(2000, "lb"),
  4280. name: "Laser",
  4281. image: {
  4282. source: "./media/characters/asana-mech/laser.svg"
  4283. }
  4284. },
  4285. },
  4286. [
  4287. {
  4288. name: "Normal",
  4289. height: math.unit(28.35, "feet"),
  4290. default: true
  4291. },
  4292. {
  4293. name: "Macro",
  4294. height: math.unit(2500, "feet")
  4295. },
  4296. {
  4297. name: "Megamacro",
  4298. height: math.unit(25, "miles")
  4299. },
  4300. {
  4301. name: "Examacro",
  4302. height: math.unit(6e8, "lightyears")
  4303. },
  4304. ]
  4305. ))
  4306. characterMakers.push(() => makeCharacter(
  4307. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4308. {
  4309. front: {
  4310. height: math.unit(5, "meters"),
  4311. weight: math.unit(1000, "kg"),
  4312. name: "Front",
  4313. image: {
  4314. source: "./media/characters/asche/front.svg",
  4315. extra: 1258 / 1190,
  4316. bottom: 47 / 1305
  4317. }
  4318. },
  4319. frontUnderwear: {
  4320. height: math.unit(5, "meters"),
  4321. weight: math.unit(1000, "kg"),
  4322. name: "Front (Underwear)",
  4323. image: {
  4324. source: "./media/characters/asche/front-underwear.svg",
  4325. extra: 1258 / 1190,
  4326. bottom: 47 / 1305
  4327. }
  4328. },
  4329. frontDressed: {
  4330. height: math.unit(5, "meters"),
  4331. weight: math.unit(1000, "kg"),
  4332. name: "Front (Dressed)",
  4333. image: {
  4334. source: "./media/characters/asche/front-dressed.svg",
  4335. extra: 1258 / 1190,
  4336. bottom: 47 / 1305
  4337. }
  4338. },
  4339. frontArmor: {
  4340. height: math.unit(5, "meters"),
  4341. weight: math.unit(1000, "kg"),
  4342. name: "Front (Armored)",
  4343. image: {
  4344. source: "./media/characters/asche/front-armored.svg",
  4345. extra: 1374 / 1308,
  4346. bottom: 23 / 1397
  4347. }
  4348. },
  4349. mp724: {
  4350. height: math.unit(0.96, "meters"),
  4351. weight: math.unit(38, "kg"),
  4352. name: "H&K MP724",
  4353. image: {
  4354. source: "./media/characters/asche/h&k-mp724.svg"
  4355. }
  4356. },
  4357. side: {
  4358. height: math.unit(5, "meters"),
  4359. weight: math.unit(1000, "kg"),
  4360. name: "Side",
  4361. image: {
  4362. source: "./media/characters/asche/side.svg",
  4363. extra: 1717 / 1609,
  4364. bottom: 0.005
  4365. }
  4366. },
  4367. back: {
  4368. height: math.unit(5, "meters"),
  4369. weight: math.unit(1000, "kg"),
  4370. name: "Back",
  4371. image: {
  4372. source: "./media/characters/asche/back.svg",
  4373. extra: 1570 / 1501
  4374. }
  4375. },
  4376. },
  4377. [
  4378. {
  4379. name: "DEFCON 5",
  4380. height: math.unit(5, "meters")
  4381. },
  4382. {
  4383. name: "DEFCON 4",
  4384. height: math.unit(500, "meters"),
  4385. default: true
  4386. },
  4387. {
  4388. name: "DEFCON 3",
  4389. height: math.unit(5, "km")
  4390. },
  4391. {
  4392. name: "DEFCON 2",
  4393. height: math.unit(500, "km")
  4394. },
  4395. {
  4396. name: "DEFCON 1",
  4397. height: math.unit(500000, "km")
  4398. },
  4399. {
  4400. name: "DEFCON 0",
  4401. height: math.unit(3, "gigaparsecs")
  4402. },
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4407. {
  4408. front: {
  4409. height: math.unit(2, "meters"),
  4410. weight: math.unit(76, "kg"),
  4411. name: "Front",
  4412. image: {
  4413. source: "./media/characters/gale/front.svg"
  4414. }
  4415. },
  4416. frontAlt1: {
  4417. height: math.unit(2, "meters"),
  4418. weight: math.unit(76, "kg"),
  4419. name: "Front (Alt 1)",
  4420. image: {
  4421. source: "./media/characters/gale/front-alt-1.svg"
  4422. }
  4423. },
  4424. frontAlt2: {
  4425. height: math.unit(2, "meters"),
  4426. weight: math.unit(76, "kg"),
  4427. name: "Front (Alt 2)",
  4428. image: {
  4429. source: "./media/characters/gale/front-alt-2.svg"
  4430. }
  4431. },
  4432. },
  4433. [
  4434. {
  4435. name: "Normal",
  4436. height: math.unit(7, "feet")
  4437. },
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(150, "feet"),
  4441. default: true
  4442. },
  4443. {
  4444. name: "Macro+",
  4445. height: math.unit(300, "feet")
  4446. },
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4451. {
  4452. front: {
  4453. height: math.unit(2, "meters"),
  4454. weight: math.unit(76, "kg"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/draylen/front.svg"
  4458. }
  4459. }
  4460. },
  4461. [
  4462. {
  4463. name: "Macro",
  4464. height: math.unit(150, "feet"),
  4465. default: true
  4466. }
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4471. {
  4472. front: {
  4473. height: math.unit(7 + 9 / 12, "feet"),
  4474. weight: math.unit(379, "lbs"),
  4475. name: "Front",
  4476. image: {
  4477. source: "./media/characters/chez/front.svg"
  4478. }
  4479. },
  4480. side: {
  4481. height: math.unit(7 + 9 / 12, "feet"),
  4482. weight: math.unit(379, "lbs"),
  4483. name: "Side",
  4484. image: {
  4485. source: "./media/characters/chez/side.svg"
  4486. }
  4487. }
  4488. },
  4489. [
  4490. {
  4491. name: "Normal",
  4492. height: math.unit(7 + 9 / 12, "feet"),
  4493. default: true
  4494. },
  4495. {
  4496. name: "God King",
  4497. height: math.unit(9750000, "meters")
  4498. }
  4499. ]
  4500. ))
  4501. characterMakers.push(() => makeCharacter(
  4502. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4503. {
  4504. front: {
  4505. height: math.unit(6, "feet"),
  4506. weight: math.unit(275, "lbs"),
  4507. name: "Front",
  4508. image: {
  4509. source: "./media/characters/kaylum/front.svg",
  4510. bottom: 0.01,
  4511. extra: 1166 / 1031
  4512. }
  4513. },
  4514. frontWingless: {
  4515. height: math.unit(6, "feet"),
  4516. weight: math.unit(275, "lbs"),
  4517. name: "Front (Wingless)",
  4518. image: {
  4519. source: "./media/characters/kaylum/front-wingless.svg",
  4520. bottom: 0.01,
  4521. extra: 1117 / 1031
  4522. }
  4523. }
  4524. },
  4525. [
  4526. {
  4527. name: "Normal",
  4528. height: math.unit(3.05, "meters")
  4529. },
  4530. {
  4531. name: "Master",
  4532. height: math.unit(5.5, "meters")
  4533. },
  4534. {
  4535. name: "Rampage",
  4536. height: math.unit(19, "meters")
  4537. },
  4538. {
  4539. name: "Macro Lite",
  4540. height: math.unit(37, "meters")
  4541. },
  4542. {
  4543. name: "Hyper Predator",
  4544. height: math.unit(61, "meters")
  4545. },
  4546. {
  4547. name: "Macro",
  4548. height: math.unit(138, "meters"),
  4549. default: true
  4550. }
  4551. ]
  4552. ))
  4553. characterMakers.push(() => makeCharacter(
  4554. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4555. {
  4556. front: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(150, "lbs"),
  4559. name: "Front",
  4560. image: {
  4561. source: "./media/characters/geta/front.svg"
  4562. }
  4563. }
  4564. },
  4565. [
  4566. {
  4567. name: "Micro",
  4568. height: math.unit(3, "inches"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Normal",
  4573. height: math.unit(5 + 5 / 12, "feet")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(300, "lbs"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/tyrnn/front.svg"
  4586. }
  4587. }
  4588. },
  4589. [
  4590. {
  4591. name: "Main Height",
  4592. height: math.unit(355, "feet"),
  4593. default: true
  4594. },
  4595. {
  4596. name: "Fave. Height",
  4597. height: math.unit(2400, "feet")
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(300, "lbs"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/appledectomy/front.svg"
  4610. }
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Macro",
  4616. height: math.unit(2500, "feet")
  4617. },
  4618. {
  4619. name: "Megamacro",
  4620. height: math.unit(50, "miles"),
  4621. default: true
  4622. },
  4623. {
  4624. name: "Gigamacro",
  4625. height: math.unit(5000, "miles")
  4626. },
  4627. {
  4628. name: "Teramacro",
  4629. height: math.unit(250000, "miles")
  4630. },
  4631. ]
  4632. ))
  4633. characterMakers.push(() => makeCharacter(
  4634. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4635. {
  4636. front: {
  4637. height: math.unit(6, "feet"),
  4638. weight: math.unit(200, "lbs"),
  4639. name: "Front",
  4640. image: {
  4641. source: "./media/characters/vulpes/front.svg",
  4642. extra: 573 / 543,
  4643. bottom: 0.033
  4644. }
  4645. },
  4646. side: {
  4647. height: math.unit(6, "feet"),
  4648. weight: math.unit(200, "lbs"),
  4649. name: "Side",
  4650. image: {
  4651. source: "./media/characters/vulpes/side.svg",
  4652. extra: 577 / 549,
  4653. bottom: 11 / 588
  4654. }
  4655. },
  4656. back: {
  4657. height: math.unit(6, "feet"),
  4658. weight: math.unit(200, "lbs"),
  4659. name: "Back",
  4660. image: {
  4661. source: "./media/characters/vulpes/back.svg",
  4662. extra: 573 / 549,
  4663. bottom: 20 / 593
  4664. }
  4665. },
  4666. feet: {
  4667. height: math.unit(1.276, "feet"),
  4668. name: "Feet",
  4669. image: {
  4670. source: "./media/characters/vulpes/feet.svg"
  4671. }
  4672. },
  4673. maw: {
  4674. height: math.unit(1.18, "feet"),
  4675. name: "Maw",
  4676. image: {
  4677. source: "./media/characters/vulpes/maw.svg"
  4678. }
  4679. },
  4680. },
  4681. [
  4682. {
  4683. name: "Micro",
  4684. height: math.unit(2, "inches")
  4685. },
  4686. {
  4687. name: "Normal",
  4688. height: math.unit(6.3, "feet")
  4689. },
  4690. {
  4691. name: "Macro",
  4692. height: math.unit(850, "feet")
  4693. },
  4694. {
  4695. name: "Megamacro",
  4696. height: math.unit(7500, "feet"),
  4697. default: true
  4698. },
  4699. {
  4700. name: "Gigamacro",
  4701. height: math.unit(570000, "miles")
  4702. }
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4707. {
  4708. front: {
  4709. height: math.unit(6, "feet"),
  4710. weight: math.unit(210, "lbs"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/rain-fallen/front.svg"
  4714. }
  4715. },
  4716. side: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(210, "lbs"),
  4719. name: "Side",
  4720. image: {
  4721. source: "./media/characters/rain-fallen/side.svg"
  4722. }
  4723. },
  4724. back: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(210, "lbs"),
  4727. name: "Back",
  4728. image: {
  4729. source: "./media/characters/rain-fallen/back.svg"
  4730. }
  4731. },
  4732. feral: {
  4733. height: math.unit(9, "feet"),
  4734. weight: math.unit(700, "lbs"),
  4735. name: "Feral",
  4736. image: {
  4737. source: "./media/characters/rain-fallen/feral.svg"
  4738. }
  4739. },
  4740. },
  4741. [
  4742. {
  4743. name: "Meddling with Mortals",
  4744. height: math.unit(8 + 8/12, "feet")
  4745. },
  4746. {
  4747. name: "Normal",
  4748. height: math.unit(5, "meter")
  4749. },
  4750. {
  4751. name: "Macro",
  4752. height: math.unit(150, "meter"),
  4753. default: true
  4754. },
  4755. {
  4756. name: "Megamacro",
  4757. height: math.unit(278e6, "meter")
  4758. },
  4759. {
  4760. name: "Gigamacro",
  4761. height: math.unit(2e9, "meter")
  4762. },
  4763. {
  4764. name: "Teramacro",
  4765. height: math.unit(8e12, "meter")
  4766. },
  4767. {
  4768. name: "Devourer",
  4769. height: math.unit(14, "zettameters")
  4770. },
  4771. {
  4772. name: "Scarlet King",
  4773. height: math.unit(18, "yottameters")
  4774. },
  4775. {
  4776. name: "Void",
  4777. height: math.unit(1e88, "yottameters")
  4778. }
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4783. {
  4784. standing: {
  4785. height: math.unit(6, "feet"),
  4786. weight: math.unit(180, "lbs"),
  4787. name: "Standing",
  4788. image: {
  4789. source: "./media/characters/zaakira/standing.svg",
  4790. extra: 1599/1504,
  4791. bottom: 39/1638
  4792. }
  4793. },
  4794. laying: {
  4795. height: math.unit(3, "feet"),
  4796. weight: math.unit(180, "lbs"),
  4797. name: "Laying",
  4798. image: {
  4799. source: "./media/characters/zaakira/laying.svg"
  4800. }
  4801. },
  4802. },
  4803. [
  4804. {
  4805. name: "Normal",
  4806. height: math.unit(12, "feet")
  4807. },
  4808. {
  4809. name: "Macro",
  4810. height: math.unit(279, "feet"),
  4811. default: true
  4812. }
  4813. ]
  4814. ))
  4815. characterMakers.push(() => makeCharacter(
  4816. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4817. {
  4818. femSfw: {
  4819. height: math.unit(8, "feet"),
  4820. weight: math.unit(350, "lb"),
  4821. name: "Fem",
  4822. image: {
  4823. source: "./media/characters/sigvald/fem-sfw.svg",
  4824. extra: 182 / 164,
  4825. bottom: 8.7 / 190.5
  4826. }
  4827. },
  4828. femNsfw: {
  4829. height: math.unit(8, "feet"),
  4830. weight: math.unit(350, "lb"),
  4831. name: "Fem (NSFW)",
  4832. image: {
  4833. source: "./media/characters/sigvald/fem-nsfw.svg",
  4834. extra: 182 / 164,
  4835. bottom: 8.7 / 190.5
  4836. }
  4837. },
  4838. maleNsfw: {
  4839. height: math.unit(8, "feet"),
  4840. weight: math.unit(350, "lb"),
  4841. name: "Male (NSFW)",
  4842. image: {
  4843. source: "./media/characters/sigvald/male-nsfw.svg",
  4844. extra: 182 / 164,
  4845. bottom: 8.7 / 190.5
  4846. }
  4847. },
  4848. hermNsfw: {
  4849. height: math.unit(8, "feet"),
  4850. weight: math.unit(350, "lb"),
  4851. name: "Herm (NSFW)",
  4852. image: {
  4853. source: "./media/characters/sigvald/herm-nsfw.svg",
  4854. extra: 182 / 164,
  4855. bottom: 8.7 / 190.5
  4856. }
  4857. },
  4858. dick: {
  4859. height: math.unit(2.36, "feet"),
  4860. name: "Dick",
  4861. image: {
  4862. source: "./media/characters/sigvald/dick.svg"
  4863. }
  4864. },
  4865. eye: {
  4866. height: math.unit(0.31, "feet"),
  4867. name: "Eye",
  4868. image: {
  4869. source: "./media/characters/sigvald/eye.svg"
  4870. }
  4871. },
  4872. mouth: {
  4873. height: math.unit(0.92, "feet"),
  4874. name: "Mouth",
  4875. image: {
  4876. source: "./media/characters/sigvald/mouth.svg"
  4877. }
  4878. },
  4879. paws: {
  4880. height: math.unit(2.2, "feet"),
  4881. name: "Paws",
  4882. image: {
  4883. source: "./media/characters/sigvald/paws.svg"
  4884. }
  4885. }
  4886. },
  4887. [
  4888. {
  4889. name: "Normal",
  4890. height: math.unit(8, "feet")
  4891. },
  4892. {
  4893. name: "Large",
  4894. height: math.unit(12, "feet")
  4895. },
  4896. {
  4897. name: "Larger",
  4898. height: math.unit(20, "feet")
  4899. },
  4900. {
  4901. name: "Macro",
  4902. height: math.unit(150, "feet")
  4903. },
  4904. {
  4905. name: "Macro+",
  4906. height: math.unit(200, "feet"),
  4907. default: true
  4908. },
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4913. {
  4914. side: {
  4915. height: math.unit(12, "feet"),
  4916. weight: math.unit(2000, "kg"),
  4917. name: "Side",
  4918. image: {
  4919. source: "./media/characters/scott/side.svg",
  4920. extra: 754 / 724,
  4921. bottom: 0.069
  4922. }
  4923. },
  4924. upright: {
  4925. height: math.unit(12, "feet"),
  4926. weight: math.unit(2000, "kg"),
  4927. name: "Upright",
  4928. image: {
  4929. source: "./media/characters/scott/upright.svg",
  4930. extra: 3881 / 3722,
  4931. bottom: 0.05
  4932. }
  4933. },
  4934. },
  4935. [
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(12, "feet"),
  4939. default: true
  4940. },
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4945. {
  4946. side: {
  4947. height: math.unit(8, "meters"),
  4948. weight: math.unit(84755, "lbs"),
  4949. name: "Side",
  4950. image: {
  4951. source: "./media/characters/tobias/side.svg",
  4952. extra: 1474 / 1096,
  4953. bottom: 38.9 / 1513.1235
  4954. }
  4955. },
  4956. },
  4957. [
  4958. {
  4959. name: "Normal",
  4960. height: math.unit(8, "meters"),
  4961. default: true
  4962. },
  4963. ]
  4964. ))
  4965. characterMakers.push(() => makeCharacter(
  4966. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4967. {
  4968. front: {
  4969. height: math.unit(5.5, "feet"),
  4970. weight: math.unit(400, "lbs"),
  4971. name: "Front",
  4972. image: {
  4973. source: "./media/characters/kieran/front.svg",
  4974. extra: 2694 / 2364,
  4975. bottom: 217 / 2908
  4976. }
  4977. },
  4978. side: {
  4979. height: math.unit(5.5, "feet"),
  4980. weight: math.unit(400, "lbs"),
  4981. name: "Side",
  4982. image: {
  4983. source: "./media/characters/kieran/side.svg",
  4984. extra: 875 / 777,
  4985. bottom: 84.6 / 959
  4986. }
  4987. },
  4988. },
  4989. [
  4990. {
  4991. name: "Normal",
  4992. height: math.unit(5.5, "feet"),
  4993. default: true
  4994. },
  4995. ]
  4996. ))
  4997. characterMakers.push(() => makeCharacter(
  4998. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4999. {
  5000. side: {
  5001. height: math.unit(2, "meters"),
  5002. weight: math.unit(70, "kg"),
  5003. name: "Side",
  5004. image: {
  5005. source: "./media/characters/sanya/side.svg",
  5006. bottom: 0.02,
  5007. extra: 1.02
  5008. }
  5009. },
  5010. },
  5011. [
  5012. {
  5013. name: "Small",
  5014. height: math.unit(2, "meters")
  5015. },
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(3, "meters")
  5019. },
  5020. {
  5021. name: "Macro",
  5022. height: math.unit(16, "meters"),
  5023. default: true
  5024. },
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5029. {
  5030. front: {
  5031. height: math.unit(2, "meters"),
  5032. weight: math.unit(120, "kg"),
  5033. name: "Front",
  5034. image: {
  5035. source: "./media/characters/miranda/front.svg",
  5036. extra: 195 / 185,
  5037. bottom: 10.9 / 206.5
  5038. }
  5039. },
  5040. back: {
  5041. height: math.unit(2, "meters"),
  5042. weight: math.unit(120, "kg"),
  5043. name: "Back",
  5044. image: {
  5045. source: "./media/characters/miranda/back.svg",
  5046. extra: 201 / 193,
  5047. bottom: 2.3 / 203.7
  5048. }
  5049. },
  5050. },
  5051. [
  5052. {
  5053. name: "Normal",
  5054. height: math.unit(10, "feet"),
  5055. default: true
  5056. }
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "James", species: ["deer"], tags: ["anthro"] },
  5061. {
  5062. side: {
  5063. height: math.unit(2, "meters"),
  5064. weight: math.unit(100, "kg"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/james/front.svg",
  5068. extra: 10 / 8.5
  5069. }
  5070. },
  5071. },
  5072. [
  5073. {
  5074. name: "Normal",
  5075. height: math.unit(8.5, "feet"),
  5076. default: true
  5077. }
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5082. {
  5083. side: {
  5084. height: math.unit(9.5, "feet"),
  5085. weight: math.unit(2500, "lbs"),
  5086. name: "Side",
  5087. image: {
  5088. source: "./media/characters/heather/side.svg"
  5089. }
  5090. },
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(9.5, "feet"),
  5096. default: true
  5097. }
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5102. {
  5103. side: {
  5104. height: math.unit(6.5, "feet"),
  5105. weight: math.unit(400, "lbs"),
  5106. name: "Side",
  5107. image: {
  5108. source: "./media/characters/lukas/side.svg",
  5109. extra: 7.25 / 6.5
  5110. }
  5111. },
  5112. },
  5113. [
  5114. {
  5115. name: "Normal",
  5116. height: math.unit(6.5, "feet"),
  5117. default: true
  5118. }
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5123. {
  5124. side: {
  5125. height: math.unit(5, "feet"),
  5126. weight: math.unit(3000, "lbs"),
  5127. name: "Side",
  5128. image: {
  5129. source: "./media/characters/louise/side.svg"
  5130. }
  5131. },
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(5, "feet"),
  5137. default: true
  5138. }
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5143. {
  5144. side: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(150, "lbs"),
  5147. name: "Side",
  5148. image: {
  5149. source: "./media/characters/ramona/side.svg"
  5150. }
  5151. },
  5152. },
  5153. [
  5154. {
  5155. name: "Normal",
  5156. height: math.unit(5.3, "meters"),
  5157. default: true
  5158. },
  5159. {
  5160. name: "Macro",
  5161. height: math.unit(20, "stories")
  5162. },
  5163. {
  5164. name: "Macro+",
  5165. height: math.unit(50, "stories")
  5166. },
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5171. {
  5172. standing: {
  5173. height: math.unit(5.75, "feet"),
  5174. weight: math.unit(160, "lbs"),
  5175. name: "Standing",
  5176. image: {
  5177. source: "./media/characters/deerpuff/standing.svg",
  5178. extra: 682 / 624
  5179. }
  5180. },
  5181. sitting: {
  5182. height: math.unit(5.75 / 1.79, "feet"),
  5183. weight: math.unit(160, "lbs"),
  5184. name: "Sitting",
  5185. image: {
  5186. source: "./media/characters/deerpuff/sitting.svg",
  5187. bottom: 44 / 400,
  5188. extra: 1
  5189. }
  5190. },
  5191. taurLaying: {
  5192. height: math.unit(6, "feet"),
  5193. weight: math.unit(400, "lbs"),
  5194. name: "Taur (Laying)",
  5195. image: {
  5196. source: "./media/characters/deerpuff/taur-laying.svg"
  5197. }
  5198. },
  5199. },
  5200. [
  5201. {
  5202. name: "Puffball",
  5203. height: math.unit(6, "inches")
  5204. },
  5205. {
  5206. name: "Normalpuff",
  5207. height: math.unit(5.75, "feet")
  5208. },
  5209. {
  5210. name: "Macropuff",
  5211. height: math.unit(1500, "feet"),
  5212. default: true
  5213. },
  5214. {
  5215. name: "Megapuff",
  5216. height: math.unit(500, "miles")
  5217. },
  5218. {
  5219. name: "Gigapuff",
  5220. height: math.unit(250000, "miles")
  5221. },
  5222. {
  5223. name: "Omegapuff",
  5224. height: math.unit(1000, "lightyears")
  5225. },
  5226. ]
  5227. ))
  5228. characterMakers.push(() => makeCharacter(
  5229. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5230. {
  5231. stomping: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(170, "lbs"),
  5234. name: "Stomping",
  5235. image: {
  5236. source: "./media/characters/vivian/stomping.svg"
  5237. }
  5238. },
  5239. sitting: {
  5240. height: math.unit(6 / 1.75, "feet"),
  5241. weight: math.unit(170, "lbs"),
  5242. name: "Sitting",
  5243. image: {
  5244. source: "./media/characters/vivian/sitting.svg",
  5245. bottom: 1 / 6.4,
  5246. extra: 1,
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(7, "feet"),
  5254. default: true
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(10, "stories")
  5259. },
  5260. {
  5261. name: "Macro+",
  5262. height: math.unit(30, "stories")
  5263. },
  5264. {
  5265. name: "Megamacro",
  5266. height: math.unit(10, "miles")
  5267. },
  5268. {
  5269. name: "Megamacro+",
  5270. height: math.unit(2750000, "meters")
  5271. },
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(160, "lbs"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/prince/front.svg",
  5283. extra: 3400 / 3000
  5284. }
  5285. },
  5286. jumping: {
  5287. height: math.unit(6, "feet"),
  5288. weight: math.unit(160, "lbs"),
  5289. name: "Jumping",
  5290. image: {
  5291. source: "./media/characters/prince/jump.svg",
  5292. extra: 2555 / 2134
  5293. }
  5294. },
  5295. },
  5296. [
  5297. {
  5298. name: "Normal",
  5299. height: math.unit(7.75, "feet"),
  5300. default: true
  5301. },
  5302. {
  5303. name: "Not cute",
  5304. height: math.unit(17, "feet")
  5305. },
  5306. {
  5307. name: "I said NOT",
  5308. height: math.unit(91, "feet")
  5309. },
  5310. {
  5311. name: "Please stop",
  5312. height: math.unit(560, "feet")
  5313. },
  5314. {
  5315. name: "What have you done",
  5316. height: math.unit(2200, "feet")
  5317. },
  5318. {
  5319. name: "Deer God",
  5320. height: math.unit(3.6, "miles")
  5321. },
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5326. {
  5327. standing: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(300, "lbs"),
  5330. name: "Standing",
  5331. image: {
  5332. source: "./media/characters/psymon/standing.svg",
  5333. extra: 1888 / 1810,
  5334. bottom: 0.05
  5335. }
  5336. },
  5337. slithering: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(300, "lbs"),
  5340. name: "Slithering",
  5341. image: {
  5342. source: "./media/characters/psymon/slithering.svg",
  5343. extra: 1330 / 1224
  5344. }
  5345. },
  5346. slitheringAlt: {
  5347. height: math.unit(6, "feet"),
  5348. weight: math.unit(300, "lbs"),
  5349. name: "Slithering (Alt)",
  5350. image: {
  5351. source: "./media/characters/psymon/slithering-alt.svg",
  5352. extra: 1330 / 1224
  5353. }
  5354. },
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(11.25, "feet"),
  5360. default: true
  5361. },
  5362. {
  5363. name: "Large",
  5364. height: math.unit(27, "feet")
  5365. },
  5366. {
  5367. name: "Giant",
  5368. height: math.unit(87, "feet")
  5369. },
  5370. {
  5371. name: "Macro",
  5372. height: math.unit(365, "feet")
  5373. },
  5374. {
  5375. name: "Megamacro",
  5376. height: math.unit(3, "miles")
  5377. },
  5378. {
  5379. name: "World Serpent",
  5380. height: math.unit(8000, "miles")
  5381. },
  5382. ]
  5383. ))
  5384. characterMakers.push(() => makeCharacter(
  5385. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5386. {
  5387. front: {
  5388. height: math.unit(6, "feet"),
  5389. weight: math.unit(180, "lbs"),
  5390. name: "Front",
  5391. image: {
  5392. source: "./media/characters/daimos/front.svg",
  5393. extra: 4160 / 3897,
  5394. bottom: 0.021
  5395. }
  5396. }
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(8, "feet"),
  5402. default: true
  5403. },
  5404. {
  5405. name: "Big Dog",
  5406. height: math.unit(22, "feet")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(127, "feet")
  5411. },
  5412. {
  5413. name: "Megamacro",
  5414. height: math.unit(3600, "feet")
  5415. },
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5420. {
  5421. side: {
  5422. height: math.unit(6, "feet"),
  5423. weight: math.unit(180, "lbs"),
  5424. name: "Side",
  5425. image: {
  5426. source: "./media/characters/blake/side.svg",
  5427. extra: 1212 / 1120,
  5428. bottom: 0.05
  5429. }
  5430. },
  5431. crouched: {
  5432. height: math.unit(6 * 0.57, "feet"),
  5433. weight: math.unit(180, "lbs"),
  5434. name: "Crouched",
  5435. image: {
  5436. source: "./media/characters/blake/crouched.svg",
  5437. extra: 840 / 587,
  5438. bottom: 0.04
  5439. }
  5440. },
  5441. bent: {
  5442. height: math.unit(6 * 0.75, "feet"),
  5443. weight: math.unit(180, "lbs"),
  5444. name: "Bent",
  5445. image: {
  5446. source: "./media/characters/blake/bent.svg",
  5447. extra: 592 / 544,
  5448. bottom: 0.035
  5449. }
  5450. },
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(8 + 1 / 6, "feet"),
  5456. default: true
  5457. },
  5458. {
  5459. name: "Big Backside",
  5460. height: math.unit(37, "feet")
  5461. },
  5462. {
  5463. name: "Subway Shredder",
  5464. height: math.unit(72, "feet")
  5465. },
  5466. {
  5467. name: "City Carver",
  5468. height: math.unit(1675, "feet")
  5469. },
  5470. {
  5471. name: "Tectonic Tweaker",
  5472. height: math.unit(2300, "miles")
  5473. },
  5474. ]
  5475. ))
  5476. characterMakers.push(() => makeCharacter(
  5477. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5478. {
  5479. front: {
  5480. height: math.unit(6, "feet"),
  5481. weight: math.unit(180, "lbs"),
  5482. name: "Front",
  5483. image: {
  5484. source: "./media/characters/guisetto/front.svg",
  5485. extra: 856 / 817,
  5486. bottom: 0.06
  5487. }
  5488. },
  5489. airborne: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(180, "lbs"),
  5492. name: "Airborne",
  5493. image: {
  5494. source: "./media/characters/guisetto/airborne.svg",
  5495. extra: 584 / 525
  5496. }
  5497. },
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(10 + 11 / 12, "feet"),
  5503. default: true
  5504. },
  5505. {
  5506. name: "Large",
  5507. height: math.unit(35, "feet")
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(475, "feet")
  5512. },
  5513. ]
  5514. ))
  5515. characterMakers.push(() => makeCharacter(
  5516. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5517. {
  5518. front: {
  5519. height: math.unit(6, "feet"),
  5520. weight: math.unit(180, "lbs"),
  5521. name: "Front",
  5522. image: {
  5523. source: "./media/characters/luxor/front.svg",
  5524. extra: 2940 / 2152
  5525. }
  5526. },
  5527. back: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(180, "lbs"),
  5530. name: "Back",
  5531. image: {
  5532. source: "./media/characters/luxor/back.svg",
  5533. extra: 1083 / 960
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(5 + 5 / 6, "feet"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Lamp",
  5545. height: math.unit(50, "feet")
  5546. },
  5547. {
  5548. name: "Lämp",
  5549. height: math.unit(300, "feet")
  5550. },
  5551. {
  5552. name: "The sun is a lamp",
  5553. height: math.unit(250000, "miles")
  5554. },
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5559. {
  5560. front: {
  5561. height: math.unit(6, "feet"),
  5562. weight: math.unit(50, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/huoyan/front.svg"
  5566. }
  5567. },
  5568. side: {
  5569. height: math.unit(6, "feet"),
  5570. weight: math.unit(180, "lbs"),
  5571. name: "Side",
  5572. image: {
  5573. source: "./media/characters/huoyan/side.svg"
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Chef",
  5580. height: math.unit(9, "feet")
  5581. },
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(65, "feet"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Macro",
  5589. height: math.unit(780, "feet")
  5590. },
  5591. {
  5592. name: "Flaming Mountain",
  5593. height: math.unit(4.8, "miles")
  5594. },
  5595. {
  5596. name: "Celestial",
  5597. height: math.unit(765000, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(5 + 3 / 4, "feet"),
  5606. weight: math.unit(120, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/tails/front.svg"
  5610. }
  5611. }
  5612. },
  5613. [
  5614. {
  5615. name: "Normal",
  5616. height: math.unit(5 + 3 / 4, "feet"),
  5617. default: true
  5618. }
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(4, "feet"),
  5626. weight: math.unit(50, "lbs"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/rainy/front.svg"
  5630. }
  5631. }
  5632. },
  5633. [
  5634. {
  5635. name: "Macro",
  5636. height: math.unit(800, "feet"),
  5637. default: true
  5638. }
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5643. {
  5644. front: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(150, "lbs"),
  5647. name: "Front",
  5648. image: {
  5649. source: "./media/characters/rainier/front.svg"
  5650. }
  5651. }
  5652. },
  5653. [
  5654. {
  5655. name: "Micro",
  5656. height: math.unit(2, "mm"),
  5657. default: true
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(8 + 4/12, "feet"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/andy-renard/front.svg",
  5669. extra: 1839/1726,
  5670. bottom: 134/1973
  5671. }
  5672. },
  5673. back: {
  5674. height: math.unit(8 + 4/12, "feet"),
  5675. name: "Back",
  5676. image: {
  5677. source: "./media/characters/andy-renard/back.svg",
  5678. extra: 1838/1710,
  5679. bottom: 105/1943
  5680. }
  5681. },
  5682. },
  5683. [
  5684. {
  5685. name: "Tall",
  5686. height: math.unit(8 + 4/12, "feet")
  5687. },
  5688. {
  5689. name: "Mini Macro",
  5690. height: math.unit(15, "feet"),
  5691. default: true
  5692. },
  5693. {
  5694. name: "Macro",
  5695. height: math.unit(100, "feet")
  5696. },
  5697. {
  5698. name: "Mega Macro",
  5699. height: math.unit(1000, "feet")
  5700. },
  5701. {
  5702. name: "Giga Macro",
  5703. height: math.unit(10, "miles")
  5704. },
  5705. {
  5706. name: "God Macro",
  5707. height: math.unit(1, "multiverse")
  5708. },
  5709. ]
  5710. ))
  5711. characterMakers.push(() => makeCharacter(
  5712. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5713. {
  5714. front: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(210, "lbs"),
  5717. name: "Front",
  5718. image: {
  5719. source: "./media/characters/cimmaron/front-sfw.svg",
  5720. extra: 701 / 676,
  5721. bottom: 0.046
  5722. }
  5723. },
  5724. back: {
  5725. height: math.unit(6, "feet"),
  5726. weight: math.unit(210, "lbs"),
  5727. name: "Back",
  5728. image: {
  5729. source: "./media/characters/cimmaron/back-sfw.svg",
  5730. extra: 701 / 676,
  5731. bottom: 0.046
  5732. }
  5733. },
  5734. frontNsfw: {
  5735. height: math.unit(6, "feet"),
  5736. weight: math.unit(210, "lbs"),
  5737. name: "Front (NSFW)",
  5738. image: {
  5739. source: "./media/characters/cimmaron/front-nsfw.svg",
  5740. extra: 701 / 676,
  5741. bottom: 0.046
  5742. }
  5743. },
  5744. backNsfw: {
  5745. height: math.unit(6, "feet"),
  5746. weight: math.unit(210, "lbs"),
  5747. name: "Back (NSFW)",
  5748. image: {
  5749. source: "./media/characters/cimmaron/back-nsfw.svg",
  5750. extra: 701 / 676,
  5751. bottom: 0.046
  5752. }
  5753. },
  5754. dick: {
  5755. height: math.unit(1.714, "feet"),
  5756. name: "Dick",
  5757. image: {
  5758. source: "./media/characters/cimmaron/dick.svg"
  5759. }
  5760. },
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(6, "feet"),
  5766. default: true
  5767. },
  5768. {
  5769. name: "Macro Mayor",
  5770. height: math.unit(350, "meters")
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5776. {
  5777. front: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(200, "lbs"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/akari/front.svg",
  5783. extra: 962 / 901,
  5784. bottom: 0.04
  5785. }
  5786. }
  5787. },
  5788. [
  5789. {
  5790. name: "Micro",
  5791. height: math.unit(5, "inches"),
  5792. default: true
  5793. },
  5794. {
  5795. name: "Normal",
  5796. height: math.unit(7, "feet")
  5797. },
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5802. {
  5803. front: {
  5804. height: math.unit(6, "feet"),
  5805. weight: math.unit(140, "lbs"),
  5806. name: "Front",
  5807. image: {
  5808. source: "./media/characters/cynosura/front.svg",
  5809. extra: 896 / 847
  5810. }
  5811. },
  5812. back: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(140, "lbs"),
  5815. name: "Back",
  5816. image: {
  5817. source: "./media/characters/cynosura/back.svg",
  5818. extra: 1365 / 1250
  5819. }
  5820. },
  5821. },
  5822. [
  5823. {
  5824. name: "Micro",
  5825. height: math.unit(4, "inches")
  5826. },
  5827. {
  5828. name: "Normal",
  5829. height: math.unit(5.75, "feet"),
  5830. default: true
  5831. },
  5832. {
  5833. name: "Tall",
  5834. height: math.unit(10, "feet")
  5835. },
  5836. {
  5837. name: "Big",
  5838. height: math.unit(20, "feet")
  5839. },
  5840. {
  5841. name: "Macro",
  5842. height: math.unit(50, "feet")
  5843. },
  5844. ]
  5845. ))
  5846. characterMakers.push(() => makeCharacter(
  5847. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5848. {
  5849. front: {
  5850. height: math.unit(13 + 2/12, "feet"),
  5851. weight: math.unit(800, "kg"),
  5852. name: "Front",
  5853. image: {
  5854. source: "./media/characters/gin/front.svg",
  5855. extra: 1312/1191,
  5856. bottom: 45/1357
  5857. }
  5858. },
  5859. mouth: {
  5860. height: math.unit(2.39 * 1.8, "feet"),
  5861. name: "Mouth",
  5862. image: {
  5863. source: "./media/characters/gin/mouth.svg"
  5864. }
  5865. },
  5866. hand: {
  5867. height: math.unit(1.57 * 2.19, "feet"),
  5868. name: "Hand",
  5869. image: {
  5870. source: "./media/characters/gin/hand.svg"
  5871. }
  5872. },
  5873. foot: {
  5874. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5875. name: "Foot",
  5876. image: {
  5877. source: "./media/characters/gin/foot.svg"
  5878. }
  5879. },
  5880. sole: {
  5881. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5882. name: "Sole",
  5883. image: {
  5884. source: "./media/characters/gin/sole.svg"
  5885. }
  5886. },
  5887. },
  5888. [
  5889. {
  5890. name: "Very Small",
  5891. height: math.unit(13 + 2 / 12, "feet")
  5892. },
  5893. {
  5894. name: "Micro",
  5895. height: math.unit(600, "miles")
  5896. },
  5897. {
  5898. name: "Regular",
  5899. height: math.unit(20, "earths"),
  5900. default: true
  5901. },
  5902. {
  5903. name: "Macro",
  5904. height: math.unit(2.2, "solarradii")
  5905. },
  5906. {
  5907. name: "Teramacro",
  5908. height: math.unit(1.2, "galaxies")
  5909. },
  5910. {
  5911. name: "Omegamacro",
  5912. height: math.unit(200, "universes")
  5913. },
  5914. ]
  5915. ))
  5916. characterMakers.push(() => makeCharacter(
  5917. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5918. {
  5919. front: {
  5920. height: math.unit(6 + 1 / 6, "feet"),
  5921. weight: math.unit(178, "lbs"),
  5922. name: "Front",
  5923. image: {
  5924. source: "./media/characters/guy/front.svg"
  5925. }
  5926. }
  5927. },
  5928. [
  5929. {
  5930. name: "Normal",
  5931. height: math.unit(6 + 1 / 6, "feet"),
  5932. default: true
  5933. },
  5934. {
  5935. name: "Large",
  5936. height: math.unit(25 + 7 / 12, "feet")
  5937. },
  5938. {
  5939. name: "Macro",
  5940. height: math.unit(60 + 9 / 12, "feet")
  5941. },
  5942. {
  5943. name: "Macro+",
  5944. height: math.unit(246, "feet")
  5945. },
  5946. {
  5947. name: "Macro++",
  5948. height: math.unit(878, "feet")
  5949. }
  5950. ]
  5951. ))
  5952. characterMakers.push(() => makeCharacter(
  5953. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5954. {
  5955. front: {
  5956. height: math.unit(9, "feet"),
  5957. weight: math.unit(800, "lbs"),
  5958. name: "Front",
  5959. image: {
  5960. source: "./media/characters/tiberius/front.svg",
  5961. extra: 2295 / 2071
  5962. }
  5963. },
  5964. back: {
  5965. height: math.unit(9, "feet"),
  5966. weight: math.unit(800, "lbs"),
  5967. name: "Back",
  5968. image: {
  5969. source: "./media/characters/tiberius/back.svg",
  5970. extra: 2373 / 2160
  5971. }
  5972. },
  5973. },
  5974. [
  5975. {
  5976. name: "Normal",
  5977. height: math.unit(9, "feet"),
  5978. default: true
  5979. }
  5980. ]
  5981. ))
  5982. characterMakers.push(() => makeCharacter(
  5983. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5984. {
  5985. front: {
  5986. height: math.unit(6, "feet"),
  5987. weight: math.unit(600, "lbs"),
  5988. name: "Front",
  5989. image: {
  5990. source: "./media/characters/surgo/front.svg",
  5991. extra: 3591 / 2227
  5992. }
  5993. },
  5994. back: {
  5995. height: math.unit(6, "feet"),
  5996. weight: math.unit(600, "lbs"),
  5997. name: "Back",
  5998. image: {
  5999. source: "./media/characters/surgo/back.svg",
  6000. extra: 3557 / 2228
  6001. }
  6002. },
  6003. laying: {
  6004. height: math.unit(6 * 0.85, "feet"),
  6005. weight: math.unit(600, "lbs"),
  6006. name: "Laying",
  6007. image: {
  6008. source: "./media/characters/surgo/laying.svg"
  6009. }
  6010. },
  6011. },
  6012. [
  6013. {
  6014. name: "Normal",
  6015. height: math.unit(6, "feet"),
  6016. default: true
  6017. }
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6022. {
  6023. side: {
  6024. height: math.unit(6, "feet"),
  6025. weight: math.unit(150, "lbs"),
  6026. name: "Side",
  6027. image: {
  6028. source: "./media/characters/cibus/side.svg",
  6029. extra: 800 / 400
  6030. }
  6031. },
  6032. },
  6033. [
  6034. {
  6035. name: "Normal",
  6036. height: math.unit(6, "feet"),
  6037. default: true
  6038. }
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6043. {
  6044. front: {
  6045. height: math.unit(6, "feet"),
  6046. weight: math.unit(240, "lbs"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/nibbles/front.svg"
  6050. }
  6051. },
  6052. side: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(240, "lbs"),
  6055. name: "Side",
  6056. image: {
  6057. source: "./media/characters/nibbles/side.svg"
  6058. }
  6059. },
  6060. },
  6061. [
  6062. {
  6063. name: "Normal",
  6064. height: math.unit(9, "feet"),
  6065. default: true
  6066. }
  6067. ]
  6068. ))
  6069. characterMakers.push(() => makeCharacter(
  6070. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6071. {
  6072. side: {
  6073. height: math.unit(5 + 1 / 6, "feet"),
  6074. weight: math.unit(130, "lbs"),
  6075. name: "Side",
  6076. image: {
  6077. source: "./media/characters/rikky/side.svg",
  6078. extra: 851 / 801
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(5 + 1 / 6, "feet")
  6086. },
  6087. {
  6088. name: "Macro",
  6089. height: math.unit(152, "feet"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Megamacro",
  6094. height: math.unit(7, "miles")
  6095. }
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6100. {
  6101. side: {
  6102. height: math.unit(370, "cm"),
  6103. weight: math.unit(350, "lbs"),
  6104. name: "Side",
  6105. image: {
  6106. source: "./media/characters/malfressa/side.svg"
  6107. }
  6108. },
  6109. walking: {
  6110. height: math.unit(370, "cm"),
  6111. weight: math.unit(350, "lbs"),
  6112. name: "Walking",
  6113. image: {
  6114. source: "./media/characters/malfressa/walking.svg"
  6115. }
  6116. },
  6117. feral: {
  6118. height: math.unit(2500, "cm"),
  6119. weight: math.unit(100000, "lbs"),
  6120. name: "Feral",
  6121. image: {
  6122. source: "./media/characters/malfressa/feral.svg",
  6123. extra: 2108 / 837,
  6124. bottom: 0.02
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(370, "cm")
  6132. },
  6133. {
  6134. name: "Macro",
  6135. height: math.unit(300, "meters"),
  6136. default: true
  6137. }
  6138. ]
  6139. ))
  6140. characterMakers.push(() => makeCharacter(
  6141. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6142. {
  6143. front: {
  6144. height: math.unit(6, "feet"),
  6145. weight: math.unit(60, "kg"),
  6146. name: "Front",
  6147. image: {
  6148. source: "./media/characters/jaro/front.svg"
  6149. }
  6150. },
  6151. back: {
  6152. height: math.unit(6, "feet"),
  6153. weight: math.unit(60, "kg"),
  6154. name: "Back",
  6155. image: {
  6156. source: "./media/characters/jaro/back.svg"
  6157. }
  6158. },
  6159. },
  6160. [
  6161. {
  6162. name: "Micro",
  6163. height: math.unit(7, "inches")
  6164. },
  6165. {
  6166. name: "Normal",
  6167. height: math.unit(5.5, "feet"),
  6168. default: true
  6169. },
  6170. {
  6171. name: "Minimacro",
  6172. height: math.unit(20, "feet")
  6173. },
  6174. {
  6175. name: "Macro",
  6176. height: math.unit(200, "meters")
  6177. }
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(6, "feet"),
  6185. weight: math.unit(195, "lb"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/rogue/front.svg"
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Macro",
  6195. height: math.unit(90, "feet"),
  6196. default: true
  6197. },
  6198. ]
  6199. ))
  6200. characterMakers.push(() => makeCharacter(
  6201. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6202. {
  6203. front: {
  6204. height: math.unit(5 + 8 / 12, "feet"),
  6205. weight: math.unit(140, "lb"),
  6206. name: "Front",
  6207. image: {
  6208. source: "./media/characters/piper/front.svg",
  6209. extra: 3948/3655,
  6210. bottom: 0/3948
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Micro",
  6217. height: math.unit(2, "inches")
  6218. },
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(5 + 8 / 12, "feet")
  6222. },
  6223. {
  6224. name: "Macro",
  6225. height: math.unit(250, "feet"),
  6226. default: true
  6227. },
  6228. {
  6229. name: "Megamacro",
  6230. height: math.unit(7, "miles")
  6231. },
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6236. {
  6237. front: {
  6238. height: math.unit(6, "feet"),
  6239. weight: math.unit(220, "lb"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/gemini/front.svg"
  6243. }
  6244. },
  6245. back: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(220, "lb"),
  6248. name: "Back",
  6249. image: {
  6250. source: "./media/characters/gemini/back.svg"
  6251. }
  6252. },
  6253. kneeling: {
  6254. height: math.unit(6 / 1.5, "feet"),
  6255. weight: math.unit(220, "lb"),
  6256. name: "Kneeling",
  6257. image: {
  6258. source: "./media/characters/gemini/kneeling.svg",
  6259. bottom: 0.02
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Macro",
  6266. height: math.unit(300, "meters"),
  6267. default: true
  6268. },
  6269. {
  6270. name: "Megamacro",
  6271. height: math.unit(6900, "meters")
  6272. },
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6277. {
  6278. anthro: {
  6279. height: math.unit(2.35, "meters"),
  6280. weight: math.unit(73, "kg"),
  6281. name: "Anthro",
  6282. image: {
  6283. source: "./media/characters/alicia/anthro.svg",
  6284. extra: 2571 / 2385,
  6285. bottom: 75 / 2648
  6286. }
  6287. },
  6288. paw: {
  6289. height: math.unit(1.32, "feet"),
  6290. name: "Paw",
  6291. image: {
  6292. source: "./media/characters/alicia/paw.svg"
  6293. }
  6294. },
  6295. feral: {
  6296. height: math.unit(1.69, "meters"),
  6297. weight: math.unit(73, "kg"),
  6298. name: "Feral",
  6299. image: {
  6300. source: "./media/characters/alicia/feral.svg",
  6301. extra: 2123 / 1715,
  6302. bottom: 222 / 2349
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(2.35, "meters")
  6310. },
  6311. {
  6312. name: "Macro",
  6313. height: math.unit(60, "meters"),
  6314. default: true
  6315. },
  6316. {
  6317. name: "Megamacro",
  6318. height: math.unit(10000, "kilometers")
  6319. },
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(7, "feet"),
  6327. weight: math.unit(250, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/archy/front.svg"
  6331. }
  6332. }
  6333. },
  6334. [
  6335. {
  6336. name: "Micro",
  6337. height: math.unit(1, "inch")
  6338. },
  6339. {
  6340. name: "Shorty",
  6341. height: math.unit(5, "feet")
  6342. },
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(7, "feet")
  6346. },
  6347. {
  6348. name: "Macro",
  6349. height: math.unit(600, "meters"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Megamacro",
  6354. height: math.unit(1, "mile")
  6355. },
  6356. ]
  6357. ))
  6358. characterMakers.push(() => makeCharacter(
  6359. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6360. {
  6361. front: {
  6362. height: math.unit(1.65, "meters"),
  6363. weight: math.unit(74, "kg"),
  6364. name: "Front",
  6365. image: {
  6366. source: "./media/characters/berri/front.svg",
  6367. extra: 857 / 837,
  6368. bottom: 18 / 877
  6369. }
  6370. },
  6371. bum: {
  6372. height: math.unit(1.46, "feet"),
  6373. name: "Bum",
  6374. image: {
  6375. source: "./media/characters/berri/bum.svg"
  6376. }
  6377. },
  6378. mouth: {
  6379. height: math.unit(0.44, "feet"),
  6380. name: "Mouth",
  6381. image: {
  6382. source: "./media/characters/berri/mouth.svg"
  6383. }
  6384. },
  6385. paw: {
  6386. height: math.unit(0.826, "feet"),
  6387. name: "Paw",
  6388. image: {
  6389. source: "./media/characters/berri/paw.svg"
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(1.65, "meters")
  6397. },
  6398. {
  6399. name: "Macro",
  6400. height: math.unit(60, "m"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "Megamacro",
  6405. height: math.unit(9.213, "km")
  6406. },
  6407. {
  6408. name: "Planet Eater",
  6409. height: math.unit(489, "megameters")
  6410. },
  6411. {
  6412. name: "Teramacro",
  6413. height: math.unit(2471635000000, "meters")
  6414. },
  6415. {
  6416. name: "Examacro",
  6417. height: math.unit(8.0624e+26, "meters")
  6418. }
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6423. {
  6424. front: {
  6425. height: math.unit(1.72, "meters"),
  6426. weight: math.unit(68, "kg"),
  6427. name: "Front",
  6428. image: {
  6429. source: "./media/characters/lexi/front.svg"
  6430. }
  6431. }
  6432. },
  6433. [
  6434. {
  6435. name: "Very Smol",
  6436. height: math.unit(10, "mm")
  6437. },
  6438. {
  6439. name: "Micro",
  6440. height: math.unit(6.8, "cm"),
  6441. default: true
  6442. },
  6443. {
  6444. name: "Normal",
  6445. height: math.unit(1.72, "m")
  6446. }
  6447. ]
  6448. ))
  6449. characterMakers.push(() => makeCharacter(
  6450. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6451. {
  6452. front: {
  6453. height: math.unit(1.69, "meters"),
  6454. weight: math.unit(68, "kg"),
  6455. name: "Front",
  6456. image: {
  6457. source: "./media/characters/martin/front.svg",
  6458. extra: 596 / 581
  6459. }
  6460. }
  6461. },
  6462. [
  6463. {
  6464. name: "Micro",
  6465. height: math.unit(6.85, "cm"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(1.69, "m")
  6471. }
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(1.69, "meters"),
  6479. weight: math.unit(68, "kg"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/juno/front.svg"
  6483. }
  6484. }
  6485. },
  6486. [
  6487. {
  6488. name: "Micro",
  6489. height: math.unit(7, "cm")
  6490. },
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(1.89, "m")
  6494. },
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(353, "meters"),
  6498. default: true
  6499. }
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(1.93, "meters"),
  6507. weight: math.unit(83, "kg"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/samantha/front.svg"
  6511. }
  6512. },
  6513. frontClothed: {
  6514. height: math.unit(1.93, "meters"),
  6515. weight: math.unit(83, "kg"),
  6516. name: "Front (Clothed)",
  6517. image: {
  6518. source: "./media/characters/samantha/front-clothed.svg"
  6519. }
  6520. },
  6521. back: {
  6522. height: math.unit(1.93, "meters"),
  6523. weight: math.unit(83, "kg"),
  6524. name: "Back",
  6525. image: {
  6526. source: "./media/characters/samantha/back.svg"
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(1.93, "m")
  6534. },
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(74, "meters"),
  6538. default: true
  6539. },
  6540. {
  6541. name: "Macro+",
  6542. height: math.unit(223, "meters"),
  6543. },
  6544. {
  6545. name: "Megamacro",
  6546. height: math.unit(8381, "meters"),
  6547. },
  6548. {
  6549. name: "Megamacro+",
  6550. height: math.unit(12000, "kilometers")
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6556. {
  6557. front: {
  6558. height: math.unit(1.92, "meters"),
  6559. weight: math.unit(80, "kg"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/dr-clay/front.svg"
  6563. }
  6564. },
  6565. frontClothed: {
  6566. height: math.unit(1.92, "meters"),
  6567. weight: math.unit(80, "kg"),
  6568. name: "Front (Clothed)",
  6569. image: {
  6570. source: "./media/characters/dr-clay/front-clothed.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(1.92, "m")
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(214, "meters"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Macro+",
  6586. height: math.unit(12.237, "meters"),
  6587. },
  6588. {
  6589. name: "Megamacro",
  6590. height: math.unit(557, "megameters"),
  6591. },
  6592. {
  6593. name: "Unimaginable",
  6594. height: math.unit(120e9, "lightyears")
  6595. },
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(2, "meters"),
  6603. weight: math.unit(80, "kg"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6607. }
  6608. }
  6609. },
  6610. [
  6611. {
  6612. name: "Teramacro",
  6613. height: math.unit(500000, "lightyears"),
  6614. default: true
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6620. {
  6621. crux: {
  6622. height: math.unit(2, "meters"),
  6623. weight: math.unit(150, "kg"),
  6624. name: "Crux",
  6625. image: {
  6626. source: "./media/characters/vemus/crux.svg",
  6627. extra: 1074/936,
  6628. bottom: 23/1097
  6629. }
  6630. },
  6631. skunkTanuki: {
  6632. height: math.unit(2, "meters"),
  6633. weight: math.unit(150, "kg"),
  6634. name: "Skunk-Tanuki",
  6635. image: {
  6636. source: "./media/characters/vemus/skunk-tanuki.svg",
  6637. extra: 926/893,
  6638. bottom: 20/946
  6639. }
  6640. },
  6641. },
  6642. [
  6643. {
  6644. name: "Normal",
  6645. height: math.unit(3.75, "meters"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Big",
  6650. height: math.unit(8, "meters")
  6651. },
  6652. {
  6653. name: "Macro",
  6654. height: math.unit(100, "meters")
  6655. },
  6656. {
  6657. name: "Macro+",
  6658. height: math.unit(1500, "meters")
  6659. },
  6660. {
  6661. name: "Stellar",
  6662. height: math.unit(14e8, "meters")
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6668. {
  6669. front: {
  6670. height: math.unit(2, "meters"),
  6671. weight: math.unit(70, "kg"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/beherit/front.svg",
  6675. extra: 1408 / 1242
  6676. }
  6677. }
  6678. },
  6679. [
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(6, "feet")
  6683. },
  6684. {
  6685. name: "Lorg",
  6686. height: math.unit(25, "feet"),
  6687. default: true
  6688. },
  6689. {
  6690. name: "Lorger",
  6691. height: math.unit(75, "feet")
  6692. },
  6693. {
  6694. name: "Macro",
  6695. height: math.unit(200, "meters")
  6696. },
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(2, "meters"),
  6704. weight: math.unit(150, "kg"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/everett/front.svg",
  6708. extra: 2038 / 1737,
  6709. bottom: 0.03
  6710. }
  6711. },
  6712. paw: {
  6713. height: math.unit(2 / 3.6, "meters"),
  6714. name: "Paw",
  6715. image: {
  6716. source: "./media/characters/everett/paw.svg"
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(15, "feet"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Lorg",
  6728. height: math.unit(70, "feet"),
  6729. default: true
  6730. },
  6731. {
  6732. name: "Lorger",
  6733. height: math.unit(250, "feet")
  6734. },
  6735. {
  6736. name: "Macro",
  6737. height: math.unit(500, "meters")
  6738. },
  6739. ]
  6740. ))
  6741. characterMakers.push(() => makeCharacter(
  6742. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6743. {
  6744. front: {
  6745. height: math.unit(2, "meters"),
  6746. weight: math.unit(86, "kg"),
  6747. name: "Front",
  6748. image: {
  6749. source: "./media/characters/rose/front.svg",
  6750. extra: 1785/1636,
  6751. bottom: 30/1815
  6752. }
  6753. },
  6754. frontSporty: {
  6755. height: math.unit(2, "meters"),
  6756. weight: math.unit(86, "kg"),
  6757. name: "Front (Sporty)",
  6758. image: {
  6759. source: "./media/characters/rose/front-sporty.svg",
  6760. extra: 350/335,
  6761. bottom: 10/360
  6762. }
  6763. },
  6764. frontAlt: {
  6765. height: math.unit(1.6, "meters"),
  6766. weight: math.unit(86, "kg"),
  6767. name: "Front (Alt)",
  6768. image: {
  6769. source: "./media/characters/rose/front-alt.svg",
  6770. extra: 299/283,
  6771. bottom: 3/302
  6772. }
  6773. },
  6774. plush: {
  6775. height: math.unit(2, "meters"),
  6776. weight: math.unit(86/3, "kg"),
  6777. name: "Plush",
  6778. image: {
  6779. source: "./media/characters/rose/plush.svg",
  6780. extra: 361/337,
  6781. bottom: 11/372
  6782. }
  6783. },
  6784. },
  6785. [
  6786. {
  6787. name: "True Micro",
  6788. height: math.unit(9, "cm")
  6789. },
  6790. {
  6791. name: "Micro",
  6792. height: math.unit(16, "cm")
  6793. },
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(1.85, "meters"),
  6797. default: true
  6798. },
  6799. {
  6800. name: "Mini-Macro",
  6801. height: math.unit(5, "meters")
  6802. },
  6803. {
  6804. name: "Macro",
  6805. height: math.unit(15, "meters")
  6806. },
  6807. {
  6808. name: "True Macro",
  6809. height: math.unit(40, "meters")
  6810. },
  6811. {
  6812. name: "City Scale",
  6813. height: math.unit(1, "km")
  6814. },
  6815. ]
  6816. ))
  6817. characterMakers.push(() => makeCharacter(
  6818. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6819. {
  6820. front: {
  6821. height: math.unit(2, "meters"),
  6822. weight: math.unit(350, "lbs"),
  6823. name: "Front",
  6824. image: {
  6825. source: "./media/characters/regal/front.svg"
  6826. }
  6827. },
  6828. back: {
  6829. height: math.unit(2, "meters"),
  6830. weight: math.unit(350, "lbs"),
  6831. name: "Back",
  6832. image: {
  6833. source: "./media/characters/regal/back.svg"
  6834. }
  6835. },
  6836. },
  6837. [
  6838. {
  6839. name: "Macro",
  6840. height: math.unit(350, "feet"),
  6841. default: true
  6842. }
  6843. ]
  6844. ))
  6845. characterMakers.push(() => makeCharacter(
  6846. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6847. {
  6848. front: {
  6849. height: math.unit(4 + 11 / 12, "feet"),
  6850. weight: math.unit(100, "lbs"),
  6851. name: "Front",
  6852. image: {
  6853. source: "./media/characters/opal/front.svg"
  6854. }
  6855. },
  6856. frontAlt: {
  6857. height: math.unit(4 + 11 / 12, "feet"),
  6858. weight: math.unit(100, "lbs"),
  6859. name: "Front (Alt)",
  6860. image: {
  6861. source: "./media/characters/opal/front-alt.svg"
  6862. }
  6863. },
  6864. },
  6865. [
  6866. {
  6867. name: "Small",
  6868. height: math.unit(4 + 11 / 12, "feet")
  6869. },
  6870. {
  6871. name: "Normal",
  6872. height: math.unit(20, "feet"),
  6873. default: true
  6874. },
  6875. {
  6876. name: "Macro",
  6877. height: math.unit(120, "feet")
  6878. },
  6879. {
  6880. name: "Megamacro",
  6881. height: math.unit(80, "miles")
  6882. },
  6883. {
  6884. name: "True Size",
  6885. height: math.unit(100000, "lightyears")
  6886. },
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6891. {
  6892. front: {
  6893. height: math.unit(6, "feet"),
  6894. weight: math.unit(200, "lbs"),
  6895. name: "Front",
  6896. image: {
  6897. source: "./media/characters/vector-wuff/front.svg"
  6898. }
  6899. }
  6900. },
  6901. [
  6902. {
  6903. name: "Normal",
  6904. height: math.unit(2.8, "meters")
  6905. },
  6906. {
  6907. name: "Macro",
  6908. height: math.unit(450, "meters"),
  6909. default: true
  6910. },
  6911. {
  6912. name: "Megamacro",
  6913. height: math.unit(15, "kilometers")
  6914. }
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6919. {
  6920. front: {
  6921. height: math.unit(6, "feet"),
  6922. weight: math.unit(256, "lbs"),
  6923. name: "Front",
  6924. image: {
  6925. source: "./media/characters/dannik/front.svg"
  6926. }
  6927. }
  6928. },
  6929. [
  6930. {
  6931. name: "Macro",
  6932. height: math.unit(69.57, "meters"),
  6933. default: true
  6934. },
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6939. {
  6940. front: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(120, "lbs"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/azura-saharah/front.svg"
  6946. }
  6947. },
  6948. back: {
  6949. height: math.unit(6, "feet"),
  6950. weight: math.unit(120, "lbs"),
  6951. name: "Back",
  6952. image: {
  6953. source: "./media/characters/azura-saharah/back.svg"
  6954. }
  6955. },
  6956. },
  6957. [
  6958. {
  6959. name: "Macro",
  6960. height: math.unit(100, "feet"),
  6961. default: true
  6962. },
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6967. {
  6968. side: {
  6969. height: math.unit(5 + 4 / 12, "feet"),
  6970. weight: math.unit(163, "lbs"),
  6971. name: "Side",
  6972. image: {
  6973. source: "./media/characters/kennedy/side.svg"
  6974. }
  6975. }
  6976. },
  6977. [
  6978. {
  6979. name: "Standard Doggo",
  6980. height: math.unit(5 + 4 / 12, "feet")
  6981. },
  6982. {
  6983. name: "Big Doggo",
  6984. height: math.unit(25 + 3 / 12, "feet"),
  6985. default: true
  6986. },
  6987. ]
  6988. ))
  6989. characterMakers.push(() => makeCharacter(
  6990. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6991. {
  6992. front: {
  6993. height: math.unit(6, "feet"),
  6994. weight: math.unit(90, "lbs"),
  6995. name: "Front",
  6996. image: {
  6997. source: "./media/characters/odi-lunar/front.svg"
  6998. }
  6999. }
  7000. },
  7001. [
  7002. {
  7003. name: "Micro",
  7004. height: math.unit(3, "inches"),
  7005. default: true
  7006. },
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(5.5, "feet")
  7010. }
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7015. {
  7016. back: {
  7017. height: math.unit(6, "feet"),
  7018. weight: math.unit(220, "lbs"),
  7019. name: "Back",
  7020. image: {
  7021. source: "./media/characters/mandake/back.svg"
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Normal",
  7028. height: math.unit(7, "feet"),
  7029. default: true
  7030. },
  7031. {
  7032. name: "Macro",
  7033. height: math.unit(78, "feet")
  7034. },
  7035. {
  7036. name: "Macro+",
  7037. height: math.unit(300, "meters")
  7038. },
  7039. {
  7040. name: "Macro++",
  7041. height: math.unit(2400, "feet")
  7042. },
  7043. {
  7044. name: "Megamacro",
  7045. height: math.unit(5167, "meters")
  7046. },
  7047. {
  7048. name: "Gigamacro",
  7049. height: math.unit(41769, "miles")
  7050. },
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7055. {
  7056. front: {
  7057. height: math.unit(6, "feet"),
  7058. weight: math.unit(120, "lbs"),
  7059. name: "Front",
  7060. image: {
  7061. source: "./media/characters/yozey/front.svg"
  7062. }
  7063. },
  7064. frontAlt: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(120, "lbs"),
  7067. name: "Front (Alt)",
  7068. image: {
  7069. source: "./media/characters/yozey/front-alt.svg"
  7070. }
  7071. },
  7072. side: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(120, "lbs"),
  7075. name: "Side",
  7076. image: {
  7077. source: "./media/characters/yozey/side.svg"
  7078. }
  7079. },
  7080. },
  7081. [
  7082. {
  7083. name: "Micro",
  7084. height: math.unit(3, "inches"),
  7085. default: true
  7086. },
  7087. {
  7088. name: "Normal",
  7089. height: math.unit(6, "feet")
  7090. }
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7095. {
  7096. front: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(103, "lbs"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/valeska-voss/front.svg"
  7102. }
  7103. }
  7104. },
  7105. [
  7106. {
  7107. name: "Mini-Sized Sub",
  7108. height: math.unit(3.1, "inches")
  7109. },
  7110. {
  7111. name: "Mid-Sized Sub",
  7112. height: math.unit(6.2, "inches")
  7113. },
  7114. {
  7115. name: "Full-Sized Sub",
  7116. height: math.unit(9.3, "inches")
  7117. },
  7118. {
  7119. name: "Normal",
  7120. height: math.unit(5 + 2 / 12, "foot"),
  7121. default: true
  7122. },
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7127. {
  7128. front: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(160, "lbs"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/gene-zeta/front.svg",
  7134. extra: 3006 / 2826,
  7135. bottom: 182 / 3188
  7136. }
  7137. }
  7138. },
  7139. [
  7140. {
  7141. name: "Micro",
  7142. height: math.unit(6, "inches")
  7143. },
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(5 + 11 / 12, "foot"),
  7147. default: true
  7148. },
  7149. {
  7150. name: "Macro",
  7151. height: math.unit(140, "feet")
  7152. },
  7153. {
  7154. name: "Supercharged",
  7155. height: math.unit(2500, "feet")
  7156. },
  7157. ]
  7158. ))
  7159. characterMakers.push(() => makeCharacter(
  7160. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7161. {
  7162. front: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(350, "lbs"),
  7165. name: "Front",
  7166. image: {
  7167. source: "./media/characters/razinox/front.svg",
  7168. extra: 1686 / 1548,
  7169. bottom: 28.2 / 1868
  7170. }
  7171. },
  7172. back: {
  7173. height: math.unit(6, "feet"),
  7174. weight: math.unit(350, "lbs"),
  7175. name: "Back",
  7176. image: {
  7177. source: "./media/characters/razinox/back.svg",
  7178. extra: 1660 / 1590,
  7179. bottom: 15 / 1665
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Normal",
  7186. height: math.unit(10 + 8 / 12, "foot")
  7187. },
  7188. {
  7189. name: "Minimacro",
  7190. height: math.unit(15, "foot")
  7191. },
  7192. {
  7193. name: "Macro",
  7194. height: math.unit(60, "foot"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Megamacro",
  7199. height: math.unit(5, "miles")
  7200. },
  7201. {
  7202. name: "Gigamacro",
  7203. height: math.unit(6000, "miles")
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(150, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/cobalt/front.svg"
  7216. }
  7217. }
  7218. },
  7219. [
  7220. {
  7221. name: "Normal",
  7222. height: math.unit(8 + 1 / 12, "foot")
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(111, "foot"),
  7227. default: true
  7228. },
  7229. {
  7230. name: "Supracosmic",
  7231. height: math.unit(1e42, "feet")
  7232. },
  7233. ]
  7234. ))
  7235. characterMakers.push(() => makeCharacter(
  7236. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7237. {
  7238. front: {
  7239. height: math.unit(6, "feet"),
  7240. weight: math.unit(140, "lbs"),
  7241. name: "Front",
  7242. image: {
  7243. source: "./media/characters/amanda/front.svg"
  7244. }
  7245. }
  7246. },
  7247. [
  7248. {
  7249. name: "Micro",
  7250. height: math.unit(5, "inches"),
  7251. default: true
  7252. },
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(2.75, "meters"),
  7260. weight: math.unit(1200, "lb"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/teal/front.svg",
  7264. extra: 2463 / 2320,
  7265. bottom: 166 / 2629
  7266. }
  7267. },
  7268. back: {
  7269. height: math.unit(2.75, "meters"),
  7270. weight: math.unit(1200, "lb"),
  7271. name: "Back",
  7272. image: {
  7273. source: "./media/characters/teal/back.svg",
  7274. extra: 2580 / 2489,
  7275. bottom: 151 / 2731
  7276. }
  7277. },
  7278. sitting: {
  7279. height: math.unit(1.9, "meters"),
  7280. weight: math.unit(1200, "lb"),
  7281. name: "Sitting",
  7282. image: {
  7283. source: "./media/characters/teal/sitting.svg",
  7284. extra: 623 / 590,
  7285. bottom: 121 / 744
  7286. }
  7287. },
  7288. standing: {
  7289. height: math.unit(2.75, "meters"),
  7290. weight: math.unit(1200, "lb"),
  7291. name: "Standing",
  7292. image: {
  7293. source: "./media/characters/teal/standing.svg",
  7294. extra: 923 / 893,
  7295. bottom: 60 / 983
  7296. }
  7297. },
  7298. stretching: {
  7299. height: math.unit(3.65, "meters"),
  7300. weight: math.unit(1200, "lb"),
  7301. name: "Stretching",
  7302. image: {
  7303. source: "./media/characters/teal/stretching.svg",
  7304. extra: 1276 / 1244,
  7305. bottom: 0 / 1276
  7306. }
  7307. },
  7308. legged: {
  7309. height: math.unit(1.3, "meters"),
  7310. weight: math.unit(100, "lb"),
  7311. name: "Legged",
  7312. image: {
  7313. source: "./media/characters/teal/legged.svg",
  7314. extra: 462 / 437,
  7315. bottom: 24 / 486
  7316. }
  7317. },
  7318. naga: {
  7319. height: math.unit(5.4, "meters"),
  7320. weight: math.unit(4000, "lb"),
  7321. name: "Naga",
  7322. image: {
  7323. source: "./media/characters/teal/naga.svg",
  7324. extra: 1902 / 1858,
  7325. bottom: 0 / 1902
  7326. }
  7327. },
  7328. hand: {
  7329. height: math.unit(0.52, "meters"),
  7330. name: "Hand",
  7331. image: {
  7332. source: "./media/characters/teal/hand.svg"
  7333. }
  7334. },
  7335. maw: {
  7336. height: math.unit(0.43, "meters"),
  7337. name: "Maw",
  7338. image: {
  7339. source: "./media/characters/teal/maw.svg"
  7340. }
  7341. },
  7342. slit: {
  7343. height: math.unit(0.25, "meters"),
  7344. name: "Slit",
  7345. image: {
  7346. source: "./media/characters/teal/slit.svg"
  7347. }
  7348. },
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(2.75, "meters"),
  7354. default: true
  7355. },
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(300, "feet")
  7359. },
  7360. {
  7361. name: "Macro+",
  7362. height: math.unit(2000, "feet")
  7363. },
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7368. {
  7369. frontCat: {
  7370. height: math.unit(6, "feet"),
  7371. weight: math.unit(180, "lbs"),
  7372. name: "Front (Cat)",
  7373. image: {
  7374. source: "./media/characters/ravin-amulet/front-cat.svg"
  7375. }
  7376. },
  7377. frontCatAlt: {
  7378. height: math.unit(6, "feet"),
  7379. weight: math.unit(180, "lbs"),
  7380. name: "Front (Alt, Cat)",
  7381. image: {
  7382. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7383. }
  7384. },
  7385. frontWerewolf: {
  7386. height: math.unit(6 * 1.2, "feet"),
  7387. weight: math.unit(225, "lbs"),
  7388. name: "Front (Werewolf)",
  7389. image: {
  7390. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7391. }
  7392. },
  7393. backWerewolf: {
  7394. height: math.unit(6 * 1.2, "feet"),
  7395. weight: math.unit(225, "lbs"),
  7396. name: "Back (Werewolf)",
  7397. image: {
  7398. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Nano",
  7405. height: math.unit(1, "micrometer")
  7406. },
  7407. {
  7408. name: "Micro",
  7409. height: math.unit(1, "inch")
  7410. },
  7411. {
  7412. name: "Normal",
  7413. height: math.unit(6, "feet"),
  7414. default: true
  7415. },
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(60, "feet")
  7419. }
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7424. {
  7425. front: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(165, "lbs"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/fluoresce/front.svg"
  7431. }
  7432. }
  7433. },
  7434. [
  7435. {
  7436. name: "Micro",
  7437. height: math.unit(6, "cm")
  7438. },
  7439. {
  7440. name: "Normal",
  7441. height: math.unit(5 + 7 / 12, "feet"),
  7442. default: true
  7443. },
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(56, "feet")
  7447. },
  7448. {
  7449. name: "Megamacro",
  7450. height: math.unit(1.9, "miles")
  7451. },
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7456. {
  7457. front: {
  7458. height: math.unit(9 + 6 / 12, "feet"),
  7459. weight: math.unit(523, "lbs"),
  7460. name: "Side",
  7461. image: {
  7462. source: "./media/characters/aurora/side.svg"
  7463. }
  7464. }
  7465. },
  7466. [
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(9 + 6 / 12, "feet")
  7470. },
  7471. {
  7472. name: "Macro",
  7473. height: math.unit(96, "feet"),
  7474. default: true
  7475. },
  7476. {
  7477. name: "Macro+",
  7478. height: math.unit(243, "feet")
  7479. },
  7480. ]
  7481. ))
  7482. characterMakers.push(() => makeCharacter(
  7483. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7484. {
  7485. front: {
  7486. height: math.unit(194, "cm"),
  7487. weight: math.unit(90, "kg"),
  7488. name: "Front",
  7489. image: {
  7490. source: "./media/characters/ranek/front.svg"
  7491. }
  7492. },
  7493. side: {
  7494. height: math.unit(194, "cm"),
  7495. weight: math.unit(90, "kg"),
  7496. name: "Side",
  7497. image: {
  7498. source: "./media/characters/ranek/side.svg"
  7499. }
  7500. },
  7501. back: {
  7502. height: math.unit(194, "cm"),
  7503. weight: math.unit(90, "kg"),
  7504. name: "Back",
  7505. image: {
  7506. source: "./media/characters/ranek/back.svg"
  7507. }
  7508. },
  7509. feral: {
  7510. height: math.unit(30, "cm"),
  7511. weight: math.unit(1.6, "lbs"),
  7512. name: "Feral",
  7513. image: {
  7514. source: "./media/characters/ranek/feral.svg"
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(194, "cm"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro",
  7526. height: math.unit(100, "meters")
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(5 + 6 / 12, "feet"),
  7535. weight: math.unit(153, "lbs"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/andrew-cooper/front.svg"
  7539. }
  7540. },
  7541. },
  7542. [
  7543. {
  7544. name: "Nano",
  7545. height: math.unit(1, "mm")
  7546. },
  7547. {
  7548. name: "Micro",
  7549. height: math.unit(2, "inches")
  7550. },
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(5 + 6 / 12, "feet"),
  7554. default: true
  7555. }
  7556. ]
  7557. ))
  7558. characterMakers.push(() => makeCharacter(
  7559. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7560. {
  7561. front: {
  7562. height: math.unit(6, "feet"),
  7563. weight: math.unit(180, "lbs"),
  7564. name: "Front",
  7565. image: {
  7566. source: "./media/characters/akane-sato/front.svg",
  7567. extra: 1219 / 1140
  7568. }
  7569. },
  7570. back: {
  7571. height: math.unit(6, "feet"),
  7572. weight: math.unit(180, "lbs"),
  7573. name: "Back",
  7574. image: {
  7575. source: "./media/characters/akane-sato/back.svg",
  7576. extra: 1219 / 1170
  7577. }
  7578. },
  7579. },
  7580. [
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(2.5, "meters")
  7584. },
  7585. {
  7586. name: "Macro",
  7587. height: math.unit(250, "meters"),
  7588. default: true
  7589. },
  7590. {
  7591. name: "Megamacro",
  7592. height: math.unit(25, "km")
  7593. },
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7598. {
  7599. front: {
  7600. height: math.unit(6, "feet"),
  7601. weight: math.unit(65, "kg"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/rook/front.svg",
  7605. extra: 960 / 950
  7606. }
  7607. }
  7608. },
  7609. [
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(8.8, "feet")
  7613. },
  7614. {
  7615. name: "Macro",
  7616. height: math.unit(88, "feet"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Megamacro",
  7621. height: math.unit(8, "miles")
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7627. {
  7628. front: {
  7629. height: math.unit(12 + 2 / 12, "feet"),
  7630. weight: math.unit(808, "lbs"),
  7631. name: "Front",
  7632. image: {
  7633. source: "./media/characters/prodigy/front.svg"
  7634. }
  7635. }
  7636. },
  7637. [
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(12 + 2 / 12, "feet"),
  7641. default: true
  7642. },
  7643. {
  7644. name: "Macro",
  7645. height: math.unit(143, "feet")
  7646. },
  7647. {
  7648. name: "Macro+",
  7649. height: math.unit(400, "feet")
  7650. },
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7655. {
  7656. front: {
  7657. height: math.unit(6, "feet"),
  7658. weight: math.unit(225, "lbs"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/daniel/front.svg"
  7662. }
  7663. },
  7664. leaning: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(225, "lbs"),
  7667. name: "Leaning",
  7668. image: {
  7669. source: "./media/characters/daniel/leaning.svg"
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(1000, "feet"),
  7677. default: true
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(6, "feet"),
  7686. weight: math.unit(88, "lbs"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/chiros/front.svg",
  7690. extra: 306 / 226
  7691. }
  7692. },
  7693. side: {
  7694. height: math.unit(6, "feet"),
  7695. weight: math.unit(88, "lbs"),
  7696. name: "Side",
  7697. image: {
  7698. source: "./media/characters/chiros/side.svg",
  7699. extra: 306 / 226
  7700. }
  7701. },
  7702. },
  7703. [
  7704. {
  7705. name: "Normal",
  7706. height: math.unit(6, "cm"),
  7707. default: true
  7708. },
  7709. ]
  7710. ))
  7711. characterMakers.push(() => makeCharacter(
  7712. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7713. {
  7714. front: {
  7715. height: math.unit(6, "feet"),
  7716. weight: math.unit(100, "lbs"),
  7717. name: "Front",
  7718. image: {
  7719. source: "./media/characters/selka/front.svg",
  7720. extra: 947 / 887
  7721. }
  7722. }
  7723. },
  7724. [
  7725. {
  7726. name: "Normal",
  7727. height: math.unit(5, "cm"),
  7728. default: true
  7729. },
  7730. ]
  7731. ))
  7732. characterMakers.push(() => makeCharacter(
  7733. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7734. {
  7735. front: {
  7736. height: math.unit(8 + 3 / 12, "feet"),
  7737. weight: math.unit(424, "lbs"),
  7738. name: "Front",
  7739. image: {
  7740. source: "./media/characters/verin/front.svg",
  7741. extra: 1845 / 1550
  7742. }
  7743. },
  7744. frontArmored: {
  7745. height: math.unit(8 + 3 / 12, "feet"),
  7746. weight: math.unit(424, "lbs"),
  7747. name: "Front (Armored)",
  7748. image: {
  7749. source: "./media/characters/verin/front-armor.svg",
  7750. extra: 1845 / 1550,
  7751. bottom: 0.01
  7752. }
  7753. },
  7754. back: {
  7755. height: math.unit(8 + 3 / 12, "feet"),
  7756. weight: math.unit(424, "lbs"),
  7757. name: "Back",
  7758. image: {
  7759. source: "./media/characters/verin/back.svg",
  7760. bottom: 0.1,
  7761. extra: 1
  7762. }
  7763. },
  7764. foot: {
  7765. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7766. name: "Foot",
  7767. image: {
  7768. source: "./media/characters/verin/foot.svg"
  7769. }
  7770. },
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(8 + 3 / 12, "feet")
  7776. },
  7777. {
  7778. name: "Minimacro",
  7779. height: math.unit(21, "feet"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(626, "feet")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(2.718, "meters"),
  7793. weight: math.unit(150, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/sovrim-terraquian/front.svg"
  7797. }
  7798. },
  7799. back: {
  7800. height: math.unit(2.718, "meters"),
  7801. weight: math.unit(150, "lbs"),
  7802. name: "Back",
  7803. image: {
  7804. source: "./media/characters/sovrim-terraquian/back.svg"
  7805. }
  7806. }
  7807. },
  7808. [
  7809. {
  7810. name: "Micro",
  7811. height: math.unit(2, "inches")
  7812. },
  7813. {
  7814. name: "Small",
  7815. height: math.unit(1, "meter")
  7816. },
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(Math.E, "meters"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Macro",
  7824. height: math.unit(20, "meters")
  7825. },
  7826. {
  7827. name: "Macro+",
  7828. height: math.unit(400, "meters")
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(7, "feet"),
  7837. weight: math.unit(489, "lbs"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/reece-silvermane/front.svg",
  7841. bottom: 0.02,
  7842. extra: 1
  7843. }
  7844. },
  7845. },
  7846. [
  7847. {
  7848. name: "Macro",
  7849. height: math.unit(1.5, "miles"),
  7850. default: true
  7851. },
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(6, "feet"),
  7859. weight: math.unit(78, "kg"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/kane/front.svg",
  7863. extra: 978 / 899
  7864. }
  7865. },
  7866. },
  7867. [
  7868. {
  7869. name: "Normal",
  7870. height: math.unit(2.1, "m"),
  7871. },
  7872. {
  7873. name: "Macro",
  7874. height: math.unit(1, "km"),
  7875. default: true
  7876. },
  7877. ]
  7878. ))
  7879. characterMakers.push(() => makeCharacter(
  7880. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7881. {
  7882. front: {
  7883. height: math.unit(6, "feet"),
  7884. weight: math.unit(200, "kg"),
  7885. name: "Front",
  7886. image: {
  7887. source: "./media/characters/tegon/front.svg",
  7888. bottom: 0.01,
  7889. extra: 1
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Micro",
  7896. height: math.unit(1, "inch")
  7897. },
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(6 + 3 / 12, "feet"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Macro",
  7905. height: math.unit(300, "feet")
  7906. },
  7907. {
  7908. name: "Megamacro",
  7909. height: math.unit(69, "miles")
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7915. {
  7916. side: {
  7917. height: math.unit(6, "feet"),
  7918. weight: math.unit(2304, "lbs"),
  7919. name: "Side",
  7920. image: {
  7921. source: "./media/characters/arcturax/side.svg",
  7922. extra: 790 / 376,
  7923. bottom: 0.01
  7924. }
  7925. },
  7926. },
  7927. [
  7928. {
  7929. name: "Micro",
  7930. height: math.unit(2, "inch")
  7931. },
  7932. {
  7933. name: "Normal",
  7934. height: math.unit(6, "feet")
  7935. },
  7936. {
  7937. name: "Macro",
  7938. height: math.unit(39, "feet"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Megamacro",
  7943. height: math.unit(7, "miles")
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7949. {
  7950. front: {
  7951. height: math.unit(6, "feet"),
  7952. weight: math.unit(50, "lbs"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/sentri/front.svg",
  7956. extra: 1750 / 1570,
  7957. bottom: 0.025
  7958. }
  7959. },
  7960. frontAlt: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(50, "lbs"),
  7963. name: "Front (Alt)",
  7964. image: {
  7965. source: "./media/characters/sentri/front-alt.svg",
  7966. extra: 1750 / 1570,
  7967. bottom: 0.025
  7968. }
  7969. },
  7970. },
  7971. [
  7972. {
  7973. name: "Normal",
  7974. height: math.unit(15, "feet"),
  7975. default: true
  7976. },
  7977. {
  7978. name: "Macro",
  7979. height: math.unit(2500, "feet")
  7980. }
  7981. ]
  7982. ))
  7983. characterMakers.push(() => makeCharacter(
  7984. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7985. {
  7986. front: {
  7987. height: math.unit(5 + 8 / 12, "feet"),
  7988. weight: math.unit(130, "lbs"),
  7989. name: "Front",
  7990. image: {
  7991. source: "./media/characters/corvin/front.svg",
  7992. extra: 1803 / 1629
  7993. }
  7994. },
  7995. frontShirt: {
  7996. height: math.unit(5 + 8 / 12, "feet"),
  7997. weight: math.unit(130, "lbs"),
  7998. name: "Front (Shirt)",
  7999. image: {
  8000. source: "./media/characters/corvin/front-shirt.svg",
  8001. extra: 1803 / 1629
  8002. }
  8003. },
  8004. frontPoncho: {
  8005. height: math.unit(5 + 8 / 12, "feet"),
  8006. weight: math.unit(130, "lbs"),
  8007. name: "Front (Poncho)",
  8008. image: {
  8009. source: "./media/characters/corvin/front-poncho.svg",
  8010. extra: 1803 / 1629
  8011. }
  8012. },
  8013. side: {
  8014. height: math.unit(5 + 8 / 12, "feet"),
  8015. weight: math.unit(130, "lbs"),
  8016. name: "Side",
  8017. image: {
  8018. source: "./media/characters/corvin/side.svg",
  8019. extra: 1012 / 945
  8020. }
  8021. },
  8022. back: {
  8023. height: math.unit(5 + 8 / 12, "feet"),
  8024. weight: math.unit(130, "lbs"),
  8025. name: "Back",
  8026. image: {
  8027. source: "./media/characters/corvin/back.svg",
  8028. extra: 1803 / 1629
  8029. }
  8030. },
  8031. },
  8032. [
  8033. {
  8034. name: "Micro",
  8035. height: math.unit(3, "inches")
  8036. },
  8037. {
  8038. name: "Normal",
  8039. height: math.unit(5 + 8 / 12, "feet")
  8040. },
  8041. {
  8042. name: "Macro",
  8043. height: math.unit(300, "feet"),
  8044. default: true
  8045. },
  8046. {
  8047. name: "Megamacro",
  8048. height: math.unit(500, "miles")
  8049. }
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8054. {
  8055. front: {
  8056. height: math.unit(6, "feet"),
  8057. weight: math.unit(135, "lbs"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/q/front.svg",
  8061. extra: 854 / 752,
  8062. bottom: 0.005
  8063. }
  8064. },
  8065. back: {
  8066. height: math.unit(6, "feet"),
  8067. weight: math.unit(130, "lbs"),
  8068. name: "Back",
  8069. image: {
  8070. source: "./media/characters/q/back.svg",
  8071. extra: 854 / 752
  8072. }
  8073. },
  8074. },
  8075. [
  8076. {
  8077. name: "Macro",
  8078. height: math.unit(90, "feet"),
  8079. default: true
  8080. },
  8081. {
  8082. name: "Extra Macro",
  8083. height: math.unit(300, "feet"),
  8084. },
  8085. {
  8086. name: "BIG WALF",
  8087. height: math.unit(750, "feet"),
  8088. },
  8089. ]
  8090. ))
  8091. characterMakers.push(() => makeCharacter(
  8092. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8093. {
  8094. front: {
  8095. height: math.unit(6, "feet"),
  8096. weight: math.unit(150, "lbs"),
  8097. name: "Front",
  8098. image: {
  8099. source: "./media/characters/carley/front.svg",
  8100. extra: 3927 / 3540,
  8101. bottom: 29.2 / 735
  8102. }
  8103. }
  8104. },
  8105. [
  8106. {
  8107. name: "Normal",
  8108. height: math.unit(6 + 3 / 12, "feet")
  8109. },
  8110. {
  8111. name: "Macro",
  8112. height: math.unit(185, "feet"),
  8113. default: true
  8114. },
  8115. {
  8116. name: "Megamacro",
  8117. height: math.unit(8, "miles"),
  8118. },
  8119. ]
  8120. ))
  8121. characterMakers.push(() => makeCharacter(
  8122. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8123. {
  8124. front: {
  8125. height: math.unit(3, "feet"),
  8126. weight: math.unit(28, "lbs"),
  8127. name: "Front",
  8128. image: {
  8129. source: "./media/characters/citrine/front.svg"
  8130. }
  8131. }
  8132. },
  8133. [
  8134. {
  8135. name: "Normal",
  8136. height: math.unit(3, "feet"),
  8137. default: true
  8138. }
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8143. {
  8144. front: {
  8145. height: math.unit(14, "feet"),
  8146. weight: math.unit(1450, "kg"),
  8147. capacity: math.unit(15, "people"),
  8148. name: "Front",
  8149. image: {
  8150. source: "./media/characters/aura-starwind/front.svg",
  8151. extra: 1455 / 1335
  8152. }
  8153. },
  8154. side: {
  8155. height: math.unit(14, "feet"),
  8156. weight: math.unit(1450, "kg"),
  8157. capacity: math.unit(15, "people"),
  8158. name: "Side",
  8159. image: {
  8160. source: "./media/characters/aura-starwind/side.svg",
  8161. extra: 1654 / 1497
  8162. }
  8163. },
  8164. taur: {
  8165. height: math.unit(18, "feet"),
  8166. weight: math.unit(5500, "kg"),
  8167. capacity: math.unit(50, "people"),
  8168. name: "Taur",
  8169. image: {
  8170. source: "./media/characters/aura-starwind/taur.svg",
  8171. extra: 1760 / 1650
  8172. }
  8173. },
  8174. feral: {
  8175. height: math.unit(46, "feet"),
  8176. weight: math.unit(25000, "kg"),
  8177. capacity: math.unit(120, "people"),
  8178. name: "Feral",
  8179. image: {
  8180. source: "./media/characters/aura-starwind/feral.svg"
  8181. }
  8182. },
  8183. },
  8184. [
  8185. {
  8186. name: "Normal",
  8187. height: math.unit(14, "feet"),
  8188. default: true
  8189. },
  8190. {
  8191. name: "Macro",
  8192. height: math.unit(50, "meters")
  8193. },
  8194. {
  8195. name: "Megamacro",
  8196. height: math.unit(5000, "meters")
  8197. },
  8198. {
  8199. name: "Gigamacro",
  8200. height: math.unit(100000, "kilometers")
  8201. },
  8202. ]
  8203. ))
  8204. characterMakers.push(() => makeCharacter(
  8205. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8206. {
  8207. front: {
  8208. height: math.unit(2 + 7 / 12, "feet"),
  8209. weight: math.unit(32, "lbs"),
  8210. name: "Front",
  8211. image: {
  8212. source: "./media/characters/rivet/front.svg",
  8213. extra: 1716 / 1658,
  8214. bottom: 0.03
  8215. }
  8216. },
  8217. foot: {
  8218. height: math.unit(0.551, "feet"),
  8219. name: "Rivet's Foot",
  8220. image: {
  8221. source: "./media/characters/rivet/foot.svg"
  8222. },
  8223. rename: true
  8224. }
  8225. },
  8226. [
  8227. {
  8228. name: "Micro",
  8229. height: math.unit(1.5, "inches"),
  8230. },
  8231. {
  8232. name: "Normal",
  8233. height: math.unit(2 + 7 / 12, "feet"),
  8234. default: true
  8235. },
  8236. {
  8237. name: "Macro",
  8238. height: math.unit(85, "feet")
  8239. },
  8240. {
  8241. name: "Megamacro",
  8242. height: math.unit(2.2, "km")
  8243. }
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(5 + 9 / 12, "feet"),
  8251. weight: math.unit(150, "lbs"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/coffee/front.svg",
  8255. extra: 3666 / 3032,
  8256. bottom: 0.04
  8257. }
  8258. },
  8259. foot: {
  8260. height: math.unit(1.29, "feet"),
  8261. name: "Foot",
  8262. image: {
  8263. source: "./media/characters/coffee/foot.svg"
  8264. }
  8265. },
  8266. },
  8267. [
  8268. {
  8269. name: "Micro",
  8270. height: math.unit(2, "inches"),
  8271. },
  8272. {
  8273. name: "Normal",
  8274. height: math.unit(5 + 9 / 12, "feet"),
  8275. default: true
  8276. },
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(800, "feet")
  8280. },
  8281. {
  8282. name: "Megamacro",
  8283. height: math.unit(25, "miles")
  8284. }
  8285. ]
  8286. ))
  8287. characterMakers.push(() => makeCharacter(
  8288. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8289. {
  8290. front: {
  8291. height: math.unit(6, "feet"),
  8292. weight: math.unit(200, "lbs"),
  8293. name: "Front",
  8294. image: {
  8295. source: "./media/characters/chari-gal/front.svg",
  8296. extra: 1568 / 1385,
  8297. bottom: 0.047
  8298. }
  8299. },
  8300. gigantamax: {
  8301. height: math.unit(6 * 16, "feet"),
  8302. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8303. name: "Gigantamax",
  8304. image: {
  8305. source: "./media/characters/chari-gal/gigantamax.svg",
  8306. extra: 1124 / 888,
  8307. bottom: 0.03
  8308. }
  8309. },
  8310. },
  8311. [
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(5 + 7 / 12, "feet")
  8315. },
  8316. {
  8317. name: "Macro",
  8318. height: math.unit(200, "feet"),
  8319. default: true
  8320. }
  8321. ]
  8322. ))
  8323. characterMakers.push(() => makeCharacter(
  8324. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8325. {
  8326. front: {
  8327. height: math.unit(6, "feet"),
  8328. weight: math.unit(150, "lbs"),
  8329. name: "Front",
  8330. image: {
  8331. source: "./media/characters/nova/front.svg",
  8332. extra: 5000 / 4722,
  8333. bottom: 0.02
  8334. }
  8335. }
  8336. },
  8337. [
  8338. {
  8339. name: "Micro-",
  8340. height: math.unit(0.8, "inches")
  8341. },
  8342. {
  8343. name: "Micro",
  8344. height: math.unit(2, "inches"),
  8345. default: true
  8346. },
  8347. ]
  8348. ))
  8349. characterMakers.push(() => makeCharacter(
  8350. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8351. {
  8352. front: {
  8353. height: math.unit(3 + 1 / 12, "feet"),
  8354. weight: math.unit(21.7, "lbs"),
  8355. name: "Front",
  8356. image: {
  8357. source: "./media/characters/argent/front.svg",
  8358. extra: 1471 / 1331,
  8359. bottom: 100.8 / 1575.5
  8360. }
  8361. }
  8362. },
  8363. [
  8364. {
  8365. name: "Micro",
  8366. height: math.unit(2, "inches")
  8367. },
  8368. {
  8369. name: "Normal",
  8370. height: math.unit(3 + 1 / 12, "feet"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Macro",
  8375. height: math.unit(120, "feet")
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8381. {
  8382. lamp: {
  8383. height: math.unit(7 * 1559 / 989, "feet"),
  8384. name: "Magic Lamp",
  8385. image: {
  8386. source: "./media/characters/mira-al-cul/lamp.svg",
  8387. extra: 1617 / 1559
  8388. }
  8389. },
  8390. front: {
  8391. height: math.unit(7, "feet"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/mira-al-cul/front.svg",
  8395. extra: 1044 / 990
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Heavily Restricted",
  8402. height: math.unit(7 * 1559 / 989, "feet")
  8403. },
  8404. {
  8405. name: "Freshly Freed",
  8406. height: math.unit(50 * 1559 / 989, "feet")
  8407. },
  8408. {
  8409. name: "World Encompassing",
  8410. height: math.unit(10000 * 1559 / 989, "miles")
  8411. },
  8412. {
  8413. name: "Galactic",
  8414. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8415. },
  8416. {
  8417. name: "Palmed Universe",
  8418. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8419. default: true
  8420. },
  8421. {
  8422. name: "Multiversal Matriarch",
  8423. height: math.unit(8.87e10, "yottameters")
  8424. },
  8425. {
  8426. name: "Void Mother",
  8427. height: math.unit(3.14e110, "yottaparsecs")
  8428. },
  8429. {
  8430. name: "Toying with Transcendence",
  8431. height: math.unit(1e307, "meters")
  8432. },
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8437. {
  8438. front: {
  8439. height: math.unit(17 + 1 / 12, "feet"),
  8440. weight: math.unit(476.2 * 5, "lbs"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/kuro-shi-uchū/front.svg",
  8444. extra: 2329 / 1835,
  8445. bottom: 0.02
  8446. }
  8447. },
  8448. },
  8449. [
  8450. {
  8451. name: "Micro",
  8452. height: math.unit(2, "inches")
  8453. },
  8454. {
  8455. name: "Normal",
  8456. height: math.unit(12, "meters")
  8457. },
  8458. {
  8459. name: "Planetary",
  8460. height: math.unit(0.00929, "AU"),
  8461. default: true
  8462. },
  8463. {
  8464. name: "Universal",
  8465. height: math.unit(20, "gigaparsecs")
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8471. {
  8472. front: {
  8473. height: math.unit(5 + 2 / 12, "feet"),
  8474. weight: math.unit(120, "lbs"),
  8475. name: "Front",
  8476. image: {
  8477. source: "./media/characters/katherine/front.svg",
  8478. extra: 2075 / 1969
  8479. }
  8480. },
  8481. dress: {
  8482. height: math.unit(5 + 2 / 12, "feet"),
  8483. weight: math.unit(120, "lbs"),
  8484. name: "Dress",
  8485. image: {
  8486. source: "./media/characters/katherine/dress.svg",
  8487. extra: 2258 / 2064
  8488. }
  8489. },
  8490. },
  8491. [
  8492. {
  8493. name: "Micro",
  8494. height: math.unit(1, "inches"),
  8495. default: true
  8496. },
  8497. {
  8498. name: "Normal",
  8499. height: math.unit(5 + 2 / 12, "feet")
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(100, "meters")
  8504. },
  8505. {
  8506. name: "Megamacro",
  8507. height: math.unit(80, "miles")
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(7 + 8 / 12, "feet"),
  8516. weight: math.unit(250, "lbs"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/yevis/front.svg",
  8520. extra: 1938 / 1755
  8521. }
  8522. }
  8523. },
  8524. [
  8525. {
  8526. name: "Mortal",
  8527. height: math.unit(7 + 8 / 12, "feet")
  8528. },
  8529. {
  8530. name: "Battle",
  8531. height: math.unit(25 + 11 / 12, "feet")
  8532. },
  8533. {
  8534. name: "Wrath",
  8535. height: math.unit(1654 + 11 / 12, "feet")
  8536. },
  8537. {
  8538. name: "Planet Destroyer",
  8539. height: math.unit(12000, "miles")
  8540. },
  8541. {
  8542. name: "Galaxy Conqueror",
  8543. height: math.unit(1.45, "zettameters"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Universal War",
  8548. height: math.unit(184, "gigaparsecs")
  8549. },
  8550. {
  8551. name: "Eternity War",
  8552. height: math.unit(1.98e55, "yottaparsecs")
  8553. },
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8558. {
  8559. front: {
  8560. height: math.unit(5 + 8 / 12, "feet"),
  8561. weight: math.unit(63, "kg"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/xavier/front.svg",
  8565. extra: 944 / 883
  8566. }
  8567. },
  8568. frontStretch: {
  8569. height: math.unit(5 + 8 / 12, "feet"),
  8570. weight: math.unit(63, "kg"),
  8571. name: "Stretching",
  8572. image: {
  8573. source: "./media/characters/xavier/front-stretch.svg",
  8574. extra: 962 / 820
  8575. }
  8576. },
  8577. },
  8578. [
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(5 + 8 / 12, "feet")
  8582. },
  8583. {
  8584. name: "Macro",
  8585. height: math.unit(100, "meters"),
  8586. default: true
  8587. },
  8588. {
  8589. name: "McLargeHuge",
  8590. height: math.unit(10, "miles")
  8591. },
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(5 + 5 / 12, "feet"),
  8599. weight: math.unit(150, "lb"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/joshii/front.svg",
  8603. extra: 765 / 653,
  8604. bottom: 51 / 816
  8605. }
  8606. },
  8607. foot: {
  8608. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8609. name: "Foot",
  8610. image: {
  8611. source: "./media/characters/joshii/foot.svg"
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Micro",
  8618. height: math.unit(2, "inches"),
  8619. default: true
  8620. },
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(5 + 5 / 12, "feet")
  8624. },
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(785, "feet")
  8628. },
  8629. {
  8630. name: "Megamacro",
  8631. height: math.unit(24.5, "miles")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(6, "feet"),
  8640. weight: math.unit(150, "lb"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/goddess-elizabeth/front.svg",
  8644. extra: 1800 / 1525,
  8645. bottom: 0.005
  8646. }
  8647. },
  8648. foot: {
  8649. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8650. name: "Foot",
  8651. image: {
  8652. source: "./media/characters/goddess-elizabeth/foot.svg"
  8653. }
  8654. },
  8655. mouth: {
  8656. height: math.unit(6, "feet"),
  8657. name: "Mouth",
  8658. image: {
  8659. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Micro",
  8666. height: math.unit(12, "feet")
  8667. },
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(80, "miles"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Macro",
  8675. height: math.unit(15000, "parsecs")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(5 + 9 / 12, "feet"),
  8684. weight: math.unit(144, "lb"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/kara/front.svg"
  8688. }
  8689. },
  8690. feet: {
  8691. height: math.unit(6 / 6.765, "feet"),
  8692. name: "Kara's Feet",
  8693. rename: true,
  8694. image: {
  8695. source: "./media/characters/kara/feet.svg"
  8696. }
  8697. },
  8698. },
  8699. [
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(5 + 9 / 12, "feet")
  8703. },
  8704. {
  8705. name: "Macro",
  8706. height: math.unit(174, "feet"),
  8707. default: true
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(18, "feet"),
  8716. weight: math.unit(4050, "lb"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/tyrone/front.svg",
  8720. extra: 2405 / 2270,
  8721. bottom: 182 / 2587
  8722. }
  8723. },
  8724. },
  8725. [
  8726. {
  8727. name: "Normal",
  8728. height: math.unit(18, "feet"),
  8729. default: true
  8730. },
  8731. {
  8732. name: "Macro",
  8733. height: math.unit(300, "feet")
  8734. },
  8735. {
  8736. name: "Megamacro",
  8737. height: math.unit(15, "km")
  8738. },
  8739. {
  8740. name: "Gigamacro",
  8741. height: math.unit(500, "km")
  8742. },
  8743. {
  8744. name: "Teramacro",
  8745. height: math.unit(0.5, "gigameters")
  8746. },
  8747. {
  8748. name: "Omnimacro",
  8749. height: math.unit(1e252, "yottauniverse")
  8750. },
  8751. ]
  8752. ))
  8753. characterMakers.push(() => makeCharacter(
  8754. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8755. {
  8756. front: {
  8757. height: math.unit(7 + 8 / 12, "feet"),
  8758. weight: math.unit(120, "lb"),
  8759. name: "Front",
  8760. image: {
  8761. source: "./media/characters/danny/front.svg",
  8762. extra: 1490 / 1350
  8763. }
  8764. },
  8765. back: {
  8766. height: math.unit(7 + 8 / 12, "feet"),
  8767. weight: math.unit(120, "lb"),
  8768. name: "Back",
  8769. image: {
  8770. source: "./media/characters/danny/back.svg",
  8771. extra: 1490 / 1350
  8772. }
  8773. },
  8774. },
  8775. [
  8776. {
  8777. name: "Normal",
  8778. height: math.unit(7 + 8 / 12, "feet"),
  8779. default: true
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(3.5, "inches"),
  8788. weight: math.unit(19, "grams"),
  8789. name: "Front",
  8790. image: {
  8791. source: "./media/characters/mallow/front.svg",
  8792. extra: 471 / 431
  8793. }
  8794. },
  8795. back: {
  8796. height: math.unit(3.5, "inches"),
  8797. weight: math.unit(19, "grams"),
  8798. name: "Back",
  8799. image: {
  8800. source: "./media/characters/mallow/back.svg",
  8801. extra: 471 / 431
  8802. }
  8803. },
  8804. },
  8805. [
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(3.5, "inches"),
  8809. default: true
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(9, "feet"),
  8818. weight: math.unit(230, "kg"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/starry-aqua/front.svg"
  8822. }
  8823. },
  8824. back: {
  8825. height: math.unit(9, "feet"),
  8826. weight: math.unit(230, "kg"),
  8827. name: "Back",
  8828. image: {
  8829. source: "./media/characters/starry-aqua/back.svg"
  8830. }
  8831. },
  8832. hand: {
  8833. height: math.unit(9 * 0.1168, "feet"),
  8834. name: "Hand",
  8835. image: {
  8836. source: "./media/characters/starry-aqua/hand.svg"
  8837. }
  8838. },
  8839. foot: {
  8840. height: math.unit(9 * 0.18, "feet"),
  8841. name: "Foot",
  8842. image: {
  8843. source: "./media/characters/starry-aqua/foot.svg"
  8844. }
  8845. }
  8846. },
  8847. [
  8848. {
  8849. name: "Micro",
  8850. height: math.unit(3, "inches")
  8851. },
  8852. {
  8853. name: "Normal",
  8854. height: math.unit(9, "feet")
  8855. },
  8856. {
  8857. name: "Macro",
  8858. height: math.unit(300, "feet"),
  8859. default: true
  8860. },
  8861. {
  8862. name: "Megamacro",
  8863. height: math.unit(3200, "feet")
  8864. }
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8869. {
  8870. front: {
  8871. height: math.unit(6, "feet"),
  8872. weight: math.unit(230, "lb"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/luka/front.svg",
  8876. extra: 1,
  8877. bottom: 0.025
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(12 + 8 / 12, "feet"),
  8885. default: true
  8886. },
  8887. {
  8888. name: "Minimacro",
  8889. height: math.unit(20, "feet")
  8890. },
  8891. {
  8892. name: "Macro",
  8893. height: math.unit(250, "feet")
  8894. },
  8895. {
  8896. name: "Megamacro",
  8897. height: math.unit(5, "miles")
  8898. },
  8899. {
  8900. name: "Gigamacro",
  8901. height: math.unit(8000, "miles")
  8902. },
  8903. ]
  8904. ))
  8905. characterMakers.push(() => makeCharacter(
  8906. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8907. {
  8908. front: {
  8909. height: math.unit(6, "feet"),
  8910. weight: math.unit(150, "lb"),
  8911. name: "Front",
  8912. image: {
  8913. source: "./media/characters/natalie-nightring/front.svg",
  8914. extra: 1,
  8915. bottom: 0.06
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Uh Oh",
  8922. height: math.unit(0.1, "mm")
  8923. },
  8924. {
  8925. name: "Small",
  8926. height: math.unit(3, "inches")
  8927. },
  8928. {
  8929. name: "Human Scale",
  8930. height: math.unit(6, "feet")
  8931. },
  8932. {
  8933. name: "Librarian",
  8934. height: math.unit(50, "feet"),
  8935. default: true
  8936. },
  8937. {
  8938. name: "Immense",
  8939. height: math.unit(200, "miles")
  8940. },
  8941. ]
  8942. ))
  8943. characterMakers.push(() => makeCharacter(
  8944. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8945. {
  8946. front: {
  8947. height: math.unit(6, "feet"),
  8948. weight: math.unit(180, "lbs"),
  8949. name: "Front",
  8950. image: {
  8951. source: "./media/characters/danni-rosie/front.svg",
  8952. extra: 1260 / 1128,
  8953. bottom: 0.022
  8954. }
  8955. },
  8956. },
  8957. [
  8958. {
  8959. name: "Micro",
  8960. height: math.unit(2, "inches"),
  8961. default: true
  8962. },
  8963. ]
  8964. ))
  8965. characterMakers.push(() => makeCharacter(
  8966. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8967. {
  8968. front: {
  8969. height: math.unit(5 + 9 / 12, "feet"),
  8970. weight: math.unit(220, "lb"),
  8971. name: "Front",
  8972. image: {
  8973. source: "./media/characters/samantha-kruse/front.svg",
  8974. extra: (985 / 935),
  8975. bottom: 0.03
  8976. }
  8977. },
  8978. frontUndressed: {
  8979. height: math.unit(5 + 9 / 12, "feet"),
  8980. weight: math.unit(220, "lb"),
  8981. name: "Front (Undressed)",
  8982. image: {
  8983. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8984. extra: (973 / 923),
  8985. bottom: 0.025
  8986. }
  8987. },
  8988. fat: {
  8989. height: math.unit(5 + 9 / 12, "feet"),
  8990. weight: math.unit(900, "lb"),
  8991. name: "Front (Fat)",
  8992. image: {
  8993. source: "./media/characters/samantha-kruse/fat.svg",
  8994. extra: 2688 / 2561
  8995. }
  8996. },
  8997. },
  8998. [
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(5 + 9 / 12, "feet"),
  9002. default: true
  9003. }
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9008. {
  9009. back: {
  9010. height: math.unit(5 + 4 / 12, "feet"),
  9011. weight: math.unit(4963, "lb"),
  9012. name: "Back",
  9013. image: {
  9014. source: "./media/characters/amelia-rosie/back.svg",
  9015. extra: 1113 / 963,
  9016. bottom: 0.01
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Level 0",
  9023. height: math.unit(5 + 4 / 12, "feet")
  9024. },
  9025. {
  9026. name: "Level 1",
  9027. height: math.unit(164597, "feet"),
  9028. default: true
  9029. },
  9030. {
  9031. name: "Level 2",
  9032. height: math.unit(956243, "miles")
  9033. },
  9034. {
  9035. name: "Level 3",
  9036. height: math.unit(29421709423, "miles")
  9037. },
  9038. {
  9039. name: "Level 4",
  9040. height: math.unit(154, "lightyears")
  9041. },
  9042. {
  9043. name: "Level 5",
  9044. height: math.unit(4738272, "lightyears")
  9045. },
  9046. {
  9047. name: "Level 6",
  9048. height: math.unit(145787152896, "lightyears")
  9049. },
  9050. ]
  9051. ))
  9052. characterMakers.push(() => makeCharacter(
  9053. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9054. {
  9055. front: {
  9056. height: math.unit(5 + 11 / 12, "feet"),
  9057. weight: math.unit(65, "kg"),
  9058. name: "Front",
  9059. image: {
  9060. source: "./media/characters/rook-kitara/front.svg",
  9061. extra: 1347 / 1274,
  9062. bottom: 0.005
  9063. }
  9064. },
  9065. },
  9066. [
  9067. {
  9068. name: "Totally Unfair",
  9069. height: math.unit(1.8, "mm")
  9070. },
  9071. {
  9072. name: "Lap Rookie",
  9073. height: math.unit(1.4, "feet")
  9074. },
  9075. {
  9076. name: "Normal",
  9077. height: math.unit(5 + 11 / 12, "feet"),
  9078. default: true
  9079. },
  9080. {
  9081. name: "How Did This Happen",
  9082. height: math.unit(80, "miles")
  9083. }
  9084. ]
  9085. ))
  9086. characterMakers.push(() => makeCharacter(
  9087. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9088. {
  9089. front: {
  9090. height: math.unit(7, "feet"),
  9091. weight: math.unit(300, "lb"),
  9092. name: "Front",
  9093. image: {
  9094. source: "./media/characters/pisces/front.svg",
  9095. extra: 2255 / 2115,
  9096. bottom: 0.03
  9097. }
  9098. },
  9099. back: {
  9100. height: math.unit(7, "feet"),
  9101. weight: math.unit(300, "lb"),
  9102. name: "Back",
  9103. image: {
  9104. source: "./media/characters/pisces/back.svg",
  9105. extra: 2146 / 2055,
  9106. bottom: 0.04
  9107. }
  9108. },
  9109. },
  9110. [
  9111. {
  9112. name: "Normal",
  9113. height: math.unit(7, "feet"),
  9114. default: true
  9115. },
  9116. {
  9117. name: "Swimming Pool",
  9118. height: math.unit(12.2, "meters")
  9119. },
  9120. {
  9121. name: "Olympic Swimming Pool",
  9122. height: math.unit(56.3, "meters")
  9123. },
  9124. {
  9125. name: "Lake Superior",
  9126. height: math.unit(93900, "meters")
  9127. },
  9128. {
  9129. name: "Mediterranean Sea",
  9130. height: math.unit(644457, "meters")
  9131. },
  9132. {
  9133. name: "World's Oceans",
  9134. height: math.unit(4567491, "meters")
  9135. },
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9140. {
  9141. front: {
  9142. height: math.unit(2.3, "meters"),
  9143. weight: math.unit(120, "kg"),
  9144. name: "Front",
  9145. image: {
  9146. source: "./media/characters/zelas/front.svg"
  9147. }
  9148. },
  9149. side: {
  9150. height: math.unit(2.3, "meters"),
  9151. weight: math.unit(120, "kg"),
  9152. name: "Side",
  9153. image: {
  9154. source: "./media/characters/zelas/side.svg"
  9155. }
  9156. },
  9157. back: {
  9158. height: math.unit(2.3, "meters"),
  9159. weight: math.unit(120, "kg"),
  9160. name: "Back",
  9161. image: {
  9162. source: "./media/characters/zelas/back.svg"
  9163. }
  9164. },
  9165. foot: {
  9166. height: math.unit(1.116, "feet"),
  9167. name: "Foot",
  9168. image: {
  9169. source: "./media/characters/zelas/foot.svg"
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(2.3, "meters")
  9177. },
  9178. {
  9179. name: "Macro",
  9180. height: math.unit(30, "meters"),
  9181. default: true
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9187. {
  9188. front: {
  9189. height: math.unit(1, "inch"),
  9190. weight: math.unit(0.21, "grams"),
  9191. name: "Front",
  9192. image: {
  9193. source: "./media/characters/talbot/front.svg",
  9194. extra: 594 / 544
  9195. }
  9196. },
  9197. },
  9198. [
  9199. {
  9200. name: "Micro",
  9201. height: math.unit(1, "inch"),
  9202. default: true
  9203. },
  9204. ]
  9205. ))
  9206. characterMakers.push(() => makeCharacter(
  9207. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9208. {
  9209. front: {
  9210. height: math.unit(3 + 3 / 12, "feet"),
  9211. weight: math.unit(51.8, "lb"),
  9212. name: "Front",
  9213. image: {
  9214. source: "./media/characters/fliss/front.svg",
  9215. extra: 840 / 640
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Teeny Tiny",
  9222. height: math.unit(1, "mm")
  9223. },
  9224. {
  9225. name: "Small",
  9226. height: math.unit(1, "inch"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Standard Sylveon",
  9231. height: math.unit(3 + 3 / 12, "feet")
  9232. },
  9233. {
  9234. name: "Large Nuisance",
  9235. height: math.unit(33, "feet")
  9236. },
  9237. {
  9238. name: "City Filler",
  9239. height: math.unit(3000, "feet")
  9240. },
  9241. {
  9242. name: "New Horizon",
  9243. height: math.unit(6000, "miles")
  9244. },
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9249. {
  9250. front: {
  9251. height: math.unit(5, "cm"),
  9252. weight: math.unit(1.94, "g"),
  9253. name: "Front",
  9254. image: {
  9255. source: "./media/characters/fleta/front.svg",
  9256. extra: 835 / 803
  9257. }
  9258. },
  9259. back: {
  9260. height: math.unit(5, "cm"),
  9261. weight: math.unit(1.94, "g"),
  9262. name: "Back",
  9263. image: {
  9264. source: "./media/characters/fleta/back.svg",
  9265. extra: 835 / 803
  9266. }
  9267. },
  9268. },
  9269. [
  9270. {
  9271. name: "Micro",
  9272. height: math.unit(5, "cm"),
  9273. default: true
  9274. },
  9275. ]
  9276. ))
  9277. characterMakers.push(() => makeCharacter(
  9278. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9279. {
  9280. front: {
  9281. height: math.unit(6, "feet"),
  9282. weight: math.unit(225, "lb"),
  9283. name: "Front",
  9284. image: {
  9285. source: "./media/characters/dominic/front.svg",
  9286. extra: 1770 / 1620,
  9287. bottom: 0.025
  9288. }
  9289. },
  9290. back: {
  9291. height: math.unit(6, "feet"),
  9292. weight: math.unit(225, "lb"),
  9293. name: "Back",
  9294. image: {
  9295. source: "./media/characters/dominic/back.svg",
  9296. extra: 1745 / 1620,
  9297. bottom: 0.065
  9298. }
  9299. },
  9300. },
  9301. [
  9302. {
  9303. name: "Nano",
  9304. height: math.unit(0.1, "mm")
  9305. },
  9306. {
  9307. name: "Micro-",
  9308. height: math.unit(1, "mm")
  9309. },
  9310. {
  9311. name: "Micro",
  9312. height: math.unit(4, "inches")
  9313. },
  9314. {
  9315. name: "Normal",
  9316. height: math.unit(6 + 4 / 12, "feet"),
  9317. default: true
  9318. },
  9319. {
  9320. name: "Macro",
  9321. height: math.unit(115, "feet")
  9322. },
  9323. {
  9324. name: "Macro+",
  9325. height: math.unit(955, "feet")
  9326. },
  9327. {
  9328. name: "Megamacro",
  9329. height: math.unit(8990, "feet")
  9330. },
  9331. {
  9332. name: "Gigmacro",
  9333. height: math.unit(9310, "miles")
  9334. },
  9335. {
  9336. name: "Teramacro",
  9337. height: math.unit(1567005010, "miles")
  9338. },
  9339. {
  9340. name: "Examacro",
  9341. height: math.unit(1425, "parsecs")
  9342. },
  9343. ]
  9344. ))
  9345. characterMakers.push(() => makeCharacter(
  9346. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9347. {
  9348. front: {
  9349. height: math.unit(400, "feet"),
  9350. weight: math.unit(44444444, "lb"),
  9351. name: "Front",
  9352. image: {
  9353. source: "./media/characters/major-colonel/front.svg"
  9354. }
  9355. },
  9356. back: {
  9357. height: math.unit(400, "feet"),
  9358. weight: math.unit(44444444, "lb"),
  9359. name: "Back",
  9360. image: {
  9361. source: "./media/characters/major-colonel/back.svg"
  9362. }
  9363. },
  9364. },
  9365. [
  9366. {
  9367. name: "Macro",
  9368. height: math.unit(400, "feet"),
  9369. default: true
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9375. {
  9376. catFront: {
  9377. height: math.unit(6, "feet"),
  9378. weight: math.unit(120, "lb"),
  9379. name: "Front (Cat Side)",
  9380. image: {
  9381. source: "./media/characters/axel-lycan/cat-front.svg",
  9382. extra: 430 / 402,
  9383. bottom: 43 / 472.35
  9384. }
  9385. },
  9386. catBack: {
  9387. height: math.unit(6, "feet"),
  9388. weight: math.unit(120, "lb"),
  9389. name: "Back (Cat Side)",
  9390. image: {
  9391. source: "./media/characters/axel-lycan/cat-back.svg",
  9392. extra: 447 / 419,
  9393. bottom: 23.3 / 469
  9394. }
  9395. },
  9396. wolfFront: {
  9397. height: math.unit(6, "feet"),
  9398. weight: math.unit(120, "lb"),
  9399. name: "Front (Wolf Side)",
  9400. image: {
  9401. source: "./media/characters/axel-lycan/wolf-front.svg",
  9402. extra: 485 / 456,
  9403. bottom: 19 / 504
  9404. }
  9405. },
  9406. wolfBack: {
  9407. height: math.unit(6, "feet"),
  9408. weight: math.unit(120, "lb"),
  9409. name: "Back (Wolf Side)",
  9410. image: {
  9411. source: "./media/characters/axel-lycan/wolf-back.svg",
  9412. extra: 475 / 438,
  9413. bottom: 39.2 / 514
  9414. }
  9415. },
  9416. },
  9417. [
  9418. {
  9419. name: "Macro",
  9420. height: math.unit(1, "km"),
  9421. default: true
  9422. },
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9427. {
  9428. front: {
  9429. height: math.unit(5 + 9 / 12, "feet"),
  9430. weight: math.unit(175, "lb"),
  9431. name: "Front",
  9432. image: {
  9433. source: "./media/characters/vanrel-hyena/front.svg",
  9434. extra: 1086 / 1010,
  9435. bottom: 0.04
  9436. }
  9437. },
  9438. },
  9439. [
  9440. {
  9441. name: "Normal",
  9442. height: math.unit(5 + 9 / 12, "feet"),
  9443. default: true
  9444. },
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9449. {
  9450. front: {
  9451. height: math.unit(6, "feet"),
  9452. weight: math.unit(103, "lb"),
  9453. name: "Front",
  9454. image: {
  9455. source: "./media/characters/abbott-absol/front.svg",
  9456. extra: 2010 / 1842
  9457. }
  9458. },
  9459. },
  9460. [
  9461. {
  9462. name: "Megamicro",
  9463. height: math.unit(0.1, "mm")
  9464. },
  9465. {
  9466. name: "Micro",
  9467. height: math.unit(1, "inch")
  9468. },
  9469. {
  9470. name: "Normal",
  9471. height: math.unit(6, "feet"),
  9472. default: true
  9473. },
  9474. ]
  9475. ))
  9476. characterMakers.push(() => makeCharacter(
  9477. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9478. {
  9479. front: {
  9480. height: math.unit(6, "feet"),
  9481. weight: math.unit(264, "lb"),
  9482. name: "Front",
  9483. image: {
  9484. source: "./media/characters/hector/front.svg",
  9485. extra: 2280 / 2130,
  9486. bottom: 0.07
  9487. }
  9488. },
  9489. },
  9490. [
  9491. {
  9492. name: "Normal",
  9493. height: math.unit(12.25, "foot"),
  9494. default: true
  9495. },
  9496. {
  9497. name: "Macro",
  9498. height: math.unit(160, "feet")
  9499. },
  9500. ]
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9504. {
  9505. front: {
  9506. height: math.unit(6, "feet"),
  9507. weight: math.unit(150, "lb"),
  9508. name: "Front",
  9509. image: {
  9510. source: "./media/characters/sal/front.svg",
  9511. extra: 1846 / 1699,
  9512. bottom: 0.04
  9513. }
  9514. },
  9515. },
  9516. [
  9517. {
  9518. name: "Megamacro",
  9519. height: math.unit(10, "miles"),
  9520. default: true
  9521. },
  9522. ]
  9523. ))
  9524. characterMakers.push(() => makeCharacter(
  9525. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9526. {
  9527. front: {
  9528. height: math.unit(3, "meters"),
  9529. weight: math.unit(450, "kg"),
  9530. name: "front",
  9531. image: {
  9532. source: "./media/characters/ranger/front.svg",
  9533. extra: 2401 / 2243,
  9534. bottom: 0.05
  9535. }
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Normal",
  9541. height: math.unit(3, "meters"),
  9542. default: true
  9543. },
  9544. ]
  9545. ))
  9546. characterMakers.push(() => makeCharacter(
  9547. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9548. {
  9549. front: {
  9550. height: math.unit(14, "feet"),
  9551. weight: math.unit(800, "kg"),
  9552. name: "Front",
  9553. image: {
  9554. source: "./media/characters/theresa/front.svg",
  9555. extra: 3575 / 3346,
  9556. bottom: 0.03
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Normal",
  9563. height: math.unit(14, "feet"),
  9564. default: true
  9565. },
  9566. ]
  9567. ))
  9568. characterMakers.push(() => makeCharacter(
  9569. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9570. {
  9571. front: {
  9572. height: math.unit(6, "feet"),
  9573. weight: math.unit(3, "kg"),
  9574. name: "Front",
  9575. image: {
  9576. source: "./media/characters/ine/front.svg",
  9577. extra: 678 / 539,
  9578. bottom: 0.023
  9579. }
  9580. },
  9581. },
  9582. [
  9583. {
  9584. name: "Normal",
  9585. height: math.unit(2.265, "feet"),
  9586. default: true
  9587. },
  9588. ]
  9589. ))
  9590. characterMakers.push(() => makeCharacter(
  9591. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9592. {
  9593. front: {
  9594. height: math.unit(5, "feet"),
  9595. weight: math.unit(30, "kg"),
  9596. name: "Front",
  9597. image: {
  9598. source: "./media/characters/vial/front.svg",
  9599. extra: 1365 / 1277,
  9600. bottom: 0.04
  9601. }
  9602. },
  9603. },
  9604. [
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(5, "feet"),
  9608. default: true
  9609. },
  9610. ]
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9614. {
  9615. side: {
  9616. height: math.unit(3.4, "meters"),
  9617. weight: math.unit(1000, "lb"),
  9618. name: "Side",
  9619. image: {
  9620. source: "./media/characters/rovoska/side.svg",
  9621. extra: 4403 / 1515
  9622. }
  9623. },
  9624. },
  9625. [
  9626. {
  9627. name: "Normal",
  9628. height: math.unit(3.4, "meters"),
  9629. default: true
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9635. {
  9636. front: {
  9637. height: math.unit(8, "feet"),
  9638. weight: math.unit(315, "lb"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/gunner-rotthbauer/front.svg"
  9642. }
  9643. },
  9644. back: {
  9645. height: math.unit(8, "feet"),
  9646. weight: math.unit(315, "lb"),
  9647. name: "Back",
  9648. image: {
  9649. source: "./media/characters/gunner-rotthbauer/back.svg"
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Micro",
  9656. height: math.unit(3.5, "inches")
  9657. },
  9658. {
  9659. name: "Normal",
  9660. height: math.unit(8, "feet"),
  9661. default: true
  9662. },
  9663. {
  9664. name: "Macro",
  9665. height: math.unit(250, "feet")
  9666. },
  9667. {
  9668. name: "Megamacro",
  9669. height: math.unit(1, "AU")
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(5 + 5 / 12, "feet"),
  9678. weight: math.unit(140, "lb"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/allatia/front.svg",
  9682. extra: 1227 / 1180,
  9683. bottom: 0.027
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(5 + 5 / 12, "feet")
  9691. },
  9692. {
  9693. name: "Macro",
  9694. height: math.unit(250, "feet"),
  9695. default: true
  9696. },
  9697. {
  9698. name: "Megamacro",
  9699. height: math.unit(8, "miles")
  9700. }
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(6, "feet"),
  9708. weight: math.unit(120, "lb"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/tene/front.svg",
  9712. extra: 1728 / 1578,
  9713. bottom: 0.022
  9714. }
  9715. },
  9716. stomping: {
  9717. height: math.unit(2.025, "meters"),
  9718. weight: math.unit(120, "lb"),
  9719. name: "Stomping",
  9720. image: {
  9721. source: "./media/characters/tene/stomping.svg",
  9722. extra: 938 / 873,
  9723. bottom: 0.01
  9724. }
  9725. },
  9726. sitting: {
  9727. height: math.unit(1, "meter"),
  9728. weight: math.unit(120, "lb"),
  9729. name: "Sitting",
  9730. image: {
  9731. source: "./media/characters/tene/sitting.svg",
  9732. extra: 437 / 415,
  9733. bottom: 0.1
  9734. }
  9735. },
  9736. feral: {
  9737. height: math.unit(3.9, "feet"),
  9738. weight: math.unit(250, "lb"),
  9739. name: "Feral",
  9740. image: {
  9741. source: "./media/characters/tene/feral.svg",
  9742. extra: 717 / 458,
  9743. bottom: 0.179
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(6, "feet")
  9751. },
  9752. {
  9753. name: "Macro",
  9754. height: math.unit(300, "feet"),
  9755. default: true
  9756. },
  9757. {
  9758. name: "Megamacro",
  9759. height: math.unit(5, "miles")
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9765. {
  9766. side: {
  9767. height: math.unit(6, "feet"),
  9768. name: "Side",
  9769. image: {
  9770. source: "./media/characters/evander/side.svg",
  9771. extra: 877 / 477
  9772. }
  9773. },
  9774. },
  9775. [
  9776. {
  9777. name: "Normal",
  9778. height: math.unit(0.83, "meters"),
  9779. default: true
  9780. },
  9781. ]
  9782. ))
  9783. characterMakers.push(() => makeCharacter(
  9784. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9785. {
  9786. front: {
  9787. height: math.unit(12, "feet"),
  9788. weight: math.unit(1000, "lb"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9792. extra: 1762 / 1611
  9793. }
  9794. },
  9795. back: {
  9796. height: math.unit(12, "feet"),
  9797. weight: math.unit(1000, "lb"),
  9798. name: "Back",
  9799. image: {
  9800. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9801. extra: 1762 / 1611
  9802. }
  9803. },
  9804. },
  9805. [
  9806. {
  9807. name: "Normal",
  9808. height: math.unit(12, "feet"),
  9809. default: true
  9810. },
  9811. {
  9812. name: "Kaiju",
  9813. height: math.unit(150, "feet")
  9814. },
  9815. ]
  9816. ))
  9817. characterMakers.push(() => makeCharacter(
  9818. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9819. {
  9820. front: {
  9821. height: math.unit(6, "feet"),
  9822. weight: math.unit(150, "lb"),
  9823. name: "Front",
  9824. image: {
  9825. source: "./media/characters/zero-alurus/front.svg"
  9826. }
  9827. },
  9828. back: {
  9829. height: math.unit(6, "feet"),
  9830. weight: math.unit(150, "lb"),
  9831. name: "Back",
  9832. image: {
  9833. source: "./media/characters/zero-alurus/back.svg"
  9834. }
  9835. },
  9836. },
  9837. [
  9838. {
  9839. name: "Normal",
  9840. height: math.unit(5 + 10 / 12, "feet")
  9841. },
  9842. {
  9843. name: "Macro",
  9844. height: math.unit(60, "feet"),
  9845. default: true
  9846. },
  9847. {
  9848. name: "Macro+",
  9849. height: math.unit(450, "feet")
  9850. },
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9855. {
  9856. front: {
  9857. height: math.unit(6, "feet"),
  9858. weight: math.unit(200, "lb"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/mega-shi/front.svg",
  9862. extra: 1279 / 1250,
  9863. bottom: 0.02
  9864. }
  9865. },
  9866. back: {
  9867. height: math.unit(6, "feet"),
  9868. weight: math.unit(200, "lb"),
  9869. name: "Back",
  9870. image: {
  9871. source: "./media/characters/mega-shi/back.svg",
  9872. extra: 1279 / 1250,
  9873. bottom: 0.02
  9874. }
  9875. },
  9876. },
  9877. [
  9878. {
  9879. name: "Micro",
  9880. height: math.unit(16 + 6 / 12, "feet")
  9881. },
  9882. {
  9883. name: "Third Dimension",
  9884. height: math.unit(40, "meters")
  9885. },
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(660, "feet"),
  9889. default: true
  9890. },
  9891. {
  9892. name: "Megamacro",
  9893. height: math.unit(10, "miles")
  9894. },
  9895. {
  9896. name: "Planetary Launch",
  9897. height: math.unit(500, "miles")
  9898. },
  9899. {
  9900. name: "Interstellar",
  9901. height: math.unit(1e9, "miles")
  9902. },
  9903. {
  9904. name: "Leaving the Universe",
  9905. height: math.unit(1, "gigaparsec")
  9906. },
  9907. {
  9908. name: "Travelling Universes",
  9909. height: math.unit(30e15, "parsecs")
  9910. },
  9911. ]
  9912. ))
  9913. characterMakers.push(() => makeCharacter(
  9914. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9915. {
  9916. front: {
  9917. height: math.unit(6, "feet"),
  9918. weight: math.unit(150, "lb"),
  9919. name: "Front",
  9920. image: {
  9921. source: "./media/characters/odyssey/front.svg",
  9922. extra: 1782 / 1582,
  9923. bottom: 0.01
  9924. }
  9925. },
  9926. side: {
  9927. height: math.unit(5.7, "feet"),
  9928. weight: math.unit(140, "lb"),
  9929. name: "Side",
  9930. image: {
  9931. source: "./media/characters/odyssey/side.svg",
  9932. extra: 6462 / 5700
  9933. }
  9934. },
  9935. },
  9936. [
  9937. {
  9938. name: "Normal",
  9939. height: math.unit(5 + 4 / 12, "feet")
  9940. },
  9941. {
  9942. name: "Macro",
  9943. height: math.unit(1, "km")
  9944. },
  9945. {
  9946. name: "Megamacro",
  9947. height: math.unit(3000, "km")
  9948. },
  9949. {
  9950. name: "Gigamacro",
  9951. height: math.unit(1, "AU"),
  9952. default: true
  9953. },
  9954. {
  9955. name: "Omniversal",
  9956. height: math.unit(100e14, "lightyears")
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(6, "feet"),
  9965. weight: math.unit(300, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/mekuto/front.svg",
  9969. extra: 921 / 832,
  9970. bottom: 0.03
  9971. }
  9972. },
  9973. hand: {
  9974. height: math.unit(6 / 10.24, "feet"),
  9975. name: "Hand",
  9976. image: {
  9977. source: "./media/characters/mekuto/hand.svg"
  9978. }
  9979. },
  9980. foot: {
  9981. height: math.unit(6 / 5.05, "feet"),
  9982. name: "Foot",
  9983. image: {
  9984. source: "./media/characters/mekuto/foot.svg"
  9985. }
  9986. },
  9987. },
  9988. [
  9989. {
  9990. name: "Minimicro",
  9991. height: math.unit(0.2, "inches")
  9992. },
  9993. {
  9994. name: "Micro",
  9995. height: math.unit(1.5, "inches")
  9996. },
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(5 + 11 / 12, "feet"),
  10000. default: true
  10001. },
  10002. {
  10003. name: "Minimacro",
  10004. height: math.unit(17 + 9 / 12, "feet")
  10005. },
  10006. {
  10007. name: "Macro",
  10008. height: math.unit(177.5, "feet")
  10009. },
  10010. {
  10011. name: "Megamacro",
  10012. height: math.unit(152, "miles")
  10013. },
  10014. ]
  10015. ))
  10016. characterMakers.push(() => makeCharacter(
  10017. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10018. {
  10019. front: {
  10020. height: math.unit(6.5, "inches"),
  10021. weight: math.unit(13, "oz"),
  10022. name: "Front",
  10023. image: {
  10024. source: "./media/characters/dafydd-tomos/front.svg",
  10025. extra: 2990 / 2603,
  10026. bottom: 0.03
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Micro",
  10033. height: math.unit(6.5, "inches"),
  10034. default: true
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10040. {
  10041. front: {
  10042. height: math.unit(6, "feet"),
  10043. weight: math.unit(150, "lb"),
  10044. name: "Front",
  10045. image: {
  10046. source: "./media/characters/splinter/front.svg",
  10047. extra: 2990 / 2882,
  10048. bottom: 0.04
  10049. }
  10050. },
  10051. back: {
  10052. height: math.unit(6, "feet"),
  10053. weight: math.unit(150, "lb"),
  10054. name: "Back",
  10055. image: {
  10056. source: "./media/characters/splinter/back.svg",
  10057. extra: 2990 / 2882,
  10058. bottom: 0.04
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(6, "feet")
  10066. },
  10067. {
  10068. name: "Macro",
  10069. height: math.unit(230, "meters"),
  10070. default: true
  10071. },
  10072. ]
  10073. ))
  10074. characterMakers.push(() => makeCharacter(
  10075. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10076. {
  10077. front: {
  10078. height: math.unit(4 + 10 / 12, "feet"),
  10079. weight: math.unit(480, "lb"),
  10080. name: "Front",
  10081. image: {
  10082. source: "./media/characters/snow-gabumon/front.svg",
  10083. extra: 1140 / 963,
  10084. bottom: 0.058
  10085. }
  10086. },
  10087. back: {
  10088. height: math.unit(4 + 10 / 12, "feet"),
  10089. weight: math.unit(480, "lb"),
  10090. name: "Back",
  10091. image: {
  10092. source: "./media/characters/snow-gabumon/back.svg",
  10093. extra: 1115 / 962,
  10094. bottom: 0.041
  10095. }
  10096. },
  10097. frontUndresed: {
  10098. height: math.unit(4 + 10 / 12, "feet"),
  10099. weight: math.unit(480, "lb"),
  10100. name: "Front (Undressed)",
  10101. image: {
  10102. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10103. extra: 1061 / 960,
  10104. bottom: 0.045
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Micro",
  10111. height: math.unit(1, "inch")
  10112. },
  10113. {
  10114. name: "Normal",
  10115. height: math.unit(4 + 10 / 12, "feet"),
  10116. default: true
  10117. },
  10118. {
  10119. name: "Macro",
  10120. height: math.unit(200, "feet")
  10121. },
  10122. {
  10123. name: "Megamacro",
  10124. height: math.unit(120, "miles")
  10125. },
  10126. {
  10127. name: "Gigamacro",
  10128. height: math.unit(9800, "miles")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(1.7, "meters"),
  10137. weight: math.unit(140, "lb"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/moody/front.svg",
  10141. extra: 3226 / 3007,
  10142. bottom: 0.087
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Micro",
  10149. height: math.unit(1, "mm")
  10150. },
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(1.7, "meters"),
  10154. default: true
  10155. },
  10156. {
  10157. name: "Macro",
  10158. height: math.unit(80, "meters")
  10159. },
  10160. {
  10161. name: "Macro+",
  10162. height: math.unit(500, "meters")
  10163. },
  10164. ]
  10165. ))
  10166. characterMakers.push(() => makeCharacter(
  10167. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10168. {
  10169. front: {
  10170. height: math.unit(6, "feet"),
  10171. weight: math.unit(150, "lb"),
  10172. name: "Front",
  10173. image: {
  10174. source: "./media/characters/zyas/front.svg",
  10175. extra: 1180 / 1120,
  10176. bottom: 0.045
  10177. }
  10178. },
  10179. },
  10180. [
  10181. {
  10182. name: "Normal",
  10183. height: math.unit(10, "feet"),
  10184. default: true
  10185. },
  10186. {
  10187. name: "Macro",
  10188. height: math.unit(500, "feet")
  10189. },
  10190. {
  10191. name: "Megamacro",
  10192. height: math.unit(5, "miles")
  10193. },
  10194. {
  10195. name: "Teramacro",
  10196. height: math.unit(150000, "miles")
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(6, "feet"),
  10205. weight: math.unit(150, "lb"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/cuon/front.svg",
  10209. extra: 1390 / 1320,
  10210. bottom: 0.008
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Micro",
  10217. height: math.unit(3, "inches")
  10218. },
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(18 + 9 / 12, "feet"),
  10222. default: true
  10223. },
  10224. {
  10225. name: "Macro",
  10226. height: math.unit(360, "feet")
  10227. },
  10228. {
  10229. name: "Megamacro",
  10230. height: math.unit(360, "miles")
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(2.4, "meters"),
  10239. weight: math.unit(70, "kg"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/nyanuxk/front.svg",
  10243. extra: 1172 / 1084,
  10244. bottom: 0.065
  10245. }
  10246. },
  10247. side: {
  10248. height: math.unit(2.4, "meters"),
  10249. weight: math.unit(70, "kg"),
  10250. name: "Side",
  10251. image: {
  10252. source: "./media/characters/nyanuxk/side.svg",
  10253. extra: 1190 / 1132,
  10254. bottom: 0.007
  10255. }
  10256. },
  10257. back: {
  10258. height: math.unit(2.4, "meters"),
  10259. weight: math.unit(70, "kg"),
  10260. name: "Back",
  10261. image: {
  10262. source: "./media/characters/nyanuxk/back.svg",
  10263. extra: 1200 / 1141,
  10264. bottom: 0.015
  10265. }
  10266. },
  10267. foot: {
  10268. height: math.unit(0.52, "meters"),
  10269. name: "Foot",
  10270. image: {
  10271. source: "./media/characters/nyanuxk/foot.svg"
  10272. }
  10273. },
  10274. },
  10275. [
  10276. {
  10277. name: "Micro",
  10278. height: math.unit(2, "cm")
  10279. },
  10280. {
  10281. name: "Normal",
  10282. height: math.unit(2.4, "meters"),
  10283. default: true
  10284. },
  10285. {
  10286. name: "Smaller Macro",
  10287. height: math.unit(120, "meters")
  10288. },
  10289. {
  10290. name: "Bigger Macro",
  10291. height: math.unit(1.2, "km")
  10292. },
  10293. {
  10294. name: "Megamacro",
  10295. height: math.unit(15, "kilometers")
  10296. },
  10297. {
  10298. name: "Gigamacro",
  10299. height: math.unit(2000, "km")
  10300. },
  10301. {
  10302. name: "Teramacro",
  10303. height: math.unit(500000, "km")
  10304. },
  10305. ]
  10306. ))
  10307. characterMakers.push(() => makeCharacter(
  10308. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10309. {
  10310. side: {
  10311. height: math.unit(6, "feet"),
  10312. name: "Side",
  10313. image: {
  10314. source: "./media/characters/ailbhe/side.svg",
  10315. extra: 757 / 464,
  10316. bottom: 0.041
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(1.07, "meters"),
  10324. default: true
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(120, "kg"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/zevulfius/front.svg",
  10337. extra: 965 / 903
  10338. }
  10339. },
  10340. side: {
  10341. height: math.unit(6, "feet"),
  10342. weight: math.unit(120, "kg"),
  10343. name: "Side",
  10344. image: {
  10345. source: "./media/characters/zevulfius/side.svg",
  10346. extra: 939 / 900
  10347. }
  10348. },
  10349. back: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(120, "kg"),
  10352. name: "Back",
  10353. image: {
  10354. source: "./media/characters/zevulfius/back.svg",
  10355. extra: 918 / 854,
  10356. bottom: 0.005
  10357. }
  10358. },
  10359. foot: {
  10360. height: math.unit(6 / 3.72, "feet"),
  10361. name: "Foot",
  10362. image: {
  10363. source: "./media/characters/zevulfius/foot.svg"
  10364. }
  10365. },
  10366. },
  10367. [
  10368. {
  10369. name: "Macro",
  10370. height: math.unit(750, "meters")
  10371. },
  10372. {
  10373. name: "Megamacro",
  10374. height: math.unit(20, "km"),
  10375. default: true
  10376. },
  10377. {
  10378. name: "Gigamacro",
  10379. height: math.unit(2000, "km")
  10380. },
  10381. {
  10382. name: "Teramacro",
  10383. height: math.unit(250000, "km")
  10384. },
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(100, "feet"),
  10392. weight: math.unit(350, "kg"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/rikes/front.svg",
  10396. extra: 1565 / 1483,
  10397. bottom: 0.017
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Macro",
  10404. height: math.unit(100, "feet"),
  10405. default: true
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10411. {
  10412. anthro: {
  10413. height: math.unit(8, "feet"),
  10414. weight: math.unit(120, "kg"),
  10415. name: "Anthro",
  10416. image: {
  10417. source: "./media/characters/adam-silver-mane/anthro.svg",
  10418. extra: 5743 / 5339,
  10419. bottom: 0.07
  10420. }
  10421. },
  10422. taur: {
  10423. height: math.unit(16, "feet"),
  10424. weight: math.unit(1500, "kg"),
  10425. name: "Taur",
  10426. image: {
  10427. source: "./media/characters/adam-silver-mane/taur.svg",
  10428. extra: 1713 / 1571,
  10429. bottom: 0.01
  10430. }
  10431. },
  10432. },
  10433. [
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(8, "feet")
  10437. },
  10438. {
  10439. name: "Minimacro",
  10440. height: math.unit(80, "feet")
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(800, "feet"),
  10445. default: true
  10446. },
  10447. {
  10448. name: "Megamacro",
  10449. height: math.unit(8000, "feet")
  10450. },
  10451. {
  10452. name: "Gigamacro",
  10453. height: math.unit(800, "miles")
  10454. },
  10455. {
  10456. name: "Teramacro",
  10457. height: math.unit(80000, "miles")
  10458. },
  10459. {
  10460. name: "Celestial",
  10461. height: math.unit(8e6, "miles")
  10462. },
  10463. {
  10464. name: "Star Dragon",
  10465. height: math.unit(800000, "parsecs")
  10466. },
  10467. {
  10468. name: "Godly",
  10469. height: math.unit(800, "teraparsecs")
  10470. },
  10471. ]
  10472. ))
  10473. characterMakers.push(() => makeCharacter(
  10474. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10475. {
  10476. front: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(150, "lb"),
  10479. name: "Front",
  10480. image: {
  10481. source: "./media/characters/ky'owin/front.svg",
  10482. extra: 3888 / 3068,
  10483. bottom: 0.015
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(6 + 8 / 12, "feet")
  10491. },
  10492. {
  10493. name: "Large",
  10494. height: math.unit(68, "feet")
  10495. },
  10496. {
  10497. name: "Macro",
  10498. height: math.unit(132, "feet")
  10499. },
  10500. {
  10501. name: "Macro+",
  10502. height: math.unit(340, "feet")
  10503. },
  10504. {
  10505. name: "Macro++",
  10506. height: math.unit(680, "feet"),
  10507. default: true
  10508. },
  10509. {
  10510. name: "Megamacro",
  10511. height: math.unit(1, "mile")
  10512. },
  10513. {
  10514. name: "Megamacro+",
  10515. height: math.unit(10, "miles")
  10516. },
  10517. ]
  10518. ))
  10519. characterMakers.push(() => makeCharacter(
  10520. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10521. {
  10522. front: {
  10523. height: math.unit(4, "feet"),
  10524. weight: math.unit(50, "lb"),
  10525. name: "Front",
  10526. image: {
  10527. source: "./media/characters/mal/front.svg",
  10528. extra: 785 / 724,
  10529. bottom: 0.07
  10530. }
  10531. },
  10532. },
  10533. [
  10534. {
  10535. name: "Micro",
  10536. height: math.unit(4, "inches")
  10537. },
  10538. {
  10539. name: "Normal",
  10540. height: math.unit(4, "feet"),
  10541. default: true
  10542. },
  10543. {
  10544. name: "Macro",
  10545. height: math.unit(200, "feet")
  10546. },
  10547. ]
  10548. ))
  10549. characterMakers.push(() => makeCharacter(
  10550. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10551. {
  10552. front: {
  10553. height: math.unit(6, "feet"),
  10554. weight: math.unit(150, "lb"),
  10555. name: "Front",
  10556. image: {
  10557. source: "./media/characters/jordan-deware/front.svg",
  10558. extra: 1191 / 1012
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Nano",
  10565. height: math.unit(0.01, "mm")
  10566. },
  10567. {
  10568. name: "Minimicro",
  10569. height: math.unit(1, "mm")
  10570. },
  10571. {
  10572. name: "Micro",
  10573. height: math.unit(0.5, "inches")
  10574. },
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(4, "feet"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Minimacro",
  10582. height: math.unit(40, "meters")
  10583. },
  10584. {
  10585. name: "Small Macro",
  10586. height: math.unit(400, "meters")
  10587. },
  10588. {
  10589. name: "Macro",
  10590. height: math.unit(4, "miles")
  10591. },
  10592. {
  10593. name: "Megamacro",
  10594. height: math.unit(40, "miles")
  10595. },
  10596. {
  10597. name: "Megamacro+",
  10598. height: math.unit(400, "miles")
  10599. },
  10600. {
  10601. name: "Gigamacro",
  10602. height: math.unit(400000, "miles")
  10603. },
  10604. ]
  10605. ))
  10606. characterMakers.push(() => makeCharacter(
  10607. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10608. {
  10609. side: {
  10610. height: math.unit(6, "feet"),
  10611. weight: math.unit(150, "lb"),
  10612. name: "Side",
  10613. image: {
  10614. source: "./media/characters/kimiko/side.svg",
  10615. extra: 600 / 358
  10616. }
  10617. },
  10618. },
  10619. [
  10620. {
  10621. name: "Normal",
  10622. height: math.unit(15, "feet"),
  10623. default: true
  10624. },
  10625. {
  10626. name: "Macro",
  10627. height: math.unit(220, "feet")
  10628. },
  10629. {
  10630. name: "Macro+",
  10631. height: math.unit(1450, "feet")
  10632. },
  10633. {
  10634. name: "Megamacro",
  10635. height: math.unit(11500, "feet")
  10636. },
  10637. {
  10638. name: "Gigamacro",
  10639. height: math.unit(9500, "miles")
  10640. },
  10641. {
  10642. name: "Teramacro",
  10643. height: math.unit(2208005005, "miles")
  10644. },
  10645. {
  10646. name: "Examacro",
  10647. height: math.unit(2750, "parsecs")
  10648. },
  10649. {
  10650. name: "Zettamacro",
  10651. height: math.unit(101500, "parsecs")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(6, "feet"),
  10660. weight: math.unit(70, "kg"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/andrew-sleepy/front.svg"
  10664. }
  10665. },
  10666. side: {
  10667. height: math.unit(6, "feet"),
  10668. weight: math.unit(70, "kg"),
  10669. name: "Side",
  10670. image: {
  10671. source: "./media/characters/andrew-sleepy/side.svg"
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Micro",
  10678. height: math.unit(1, "mm"),
  10679. default: true
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10685. {
  10686. front: {
  10687. height: math.unit(6, "feet"),
  10688. weight: math.unit(150, "lb"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/judio/front.svg",
  10692. extra: 1258 / 1110
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Normal",
  10699. height: math.unit(5 + 6 / 12, "feet")
  10700. },
  10701. {
  10702. name: "Macro",
  10703. height: math.unit(1000, "feet"),
  10704. default: true
  10705. },
  10706. {
  10707. name: "Megamacro",
  10708. height: math.unit(10, "miles")
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(6, "feet"),
  10717. weight: math.unit(68, "kg"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/nomaxice/front.svg",
  10721. extra: 1498 / 1073,
  10722. bottom: 0.075
  10723. }
  10724. },
  10725. foot: {
  10726. height: math.unit(1.1, "feet"),
  10727. name: "Foot",
  10728. image: {
  10729. source: "./media/characters/nomaxice/foot.svg"
  10730. }
  10731. },
  10732. },
  10733. [
  10734. {
  10735. name: "Micro",
  10736. height: math.unit(8, "cm")
  10737. },
  10738. {
  10739. name: "Norm",
  10740. height: math.unit(1.82, "m")
  10741. },
  10742. {
  10743. name: "Norm+",
  10744. height: math.unit(8.8, "feet")
  10745. },
  10746. {
  10747. name: "Big",
  10748. height: math.unit(8, "meters"),
  10749. default: true
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(18, "meters")
  10754. },
  10755. {
  10756. name: "Macro+",
  10757. height: math.unit(88, "meters")
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10763. {
  10764. front: {
  10765. height: math.unit(12, "feet"),
  10766. weight: math.unit(1.5, "tons"),
  10767. name: "Front",
  10768. image: {
  10769. source: "./media/characters/dydros/front.svg",
  10770. extra: 863 / 800,
  10771. bottom: 0.015
  10772. }
  10773. },
  10774. back: {
  10775. height: math.unit(12, "feet"),
  10776. weight: math.unit(1.5, "tons"),
  10777. name: "Back",
  10778. image: {
  10779. source: "./media/characters/dydros/back.svg",
  10780. extra: 900 / 843,
  10781. bottom: 0.005
  10782. }
  10783. },
  10784. },
  10785. [
  10786. {
  10787. name: "Normal",
  10788. height: math.unit(12, "feet"),
  10789. default: true
  10790. },
  10791. ]
  10792. ))
  10793. characterMakers.push(() => makeCharacter(
  10794. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10795. {
  10796. front: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(100, "kg"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/riggi/front.svg",
  10802. extra: 5787 / 5303
  10803. }
  10804. },
  10805. hyper: {
  10806. height: math.unit(6 * 5 / 3, "feet"),
  10807. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10808. name: "Hyper",
  10809. image: {
  10810. source: "./media/characters/riggi/hyper.svg",
  10811. extra: 3595 / 3485
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Small Macro",
  10818. height: math.unit(50, "feet")
  10819. },
  10820. {
  10821. name: "Default",
  10822. height: math.unit(200, "feet"),
  10823. default: true
  10824. },
  10825. {
  10826. name: "Loom",
  10827. height: math.unit(10000, "feet")
  10828. },
  10829. {
  10830. name: "Cruising Altitude",
  10831. height: math.unit(30000, "feet")
  10832. },
  10833. {
  10834. name: "Megamacro",
  10835. height: math.unit(100, "miles")
  10836. },
  10837. {
  10838. name: "Continent Sized",
  10839. height: math.unit(2800, "miles")
  10840. },
  10841. {
  10842. name: "Earth Sized",
  10843. height: math.unit(8000, "miles")
  10844. },
  10845. ]
  10846. ))
  10847. characterMakers.push(() => makeCharacter(
  10848. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10849. {
  10850. front: {
  10851. height: math.unit(6, "feet"),
  10852. weight: math.unit(250, "lb"),
  10853. name: "Front",
  10854. image: {
  10855. source: "./media/characters/alexi/front.svg",
  10856. extra: 3483 / 3291,
  10857. bottom: 0.04
  10858. }
  10859. },
  10860. back: {
  10861. height: math.unit(6, "feet"),
  10862. weight: math.unit(250, "lb"),
  10863. name: "Back",
  10864. image: {
  10865. source: "./media/characters/alexi/back.svg",
  10866. extra: 3533 / 3356,
  10867. bottom: 0.021
  10868. }
  10869. },
  10870. frontTransforming: {
  10871. height: math.unit(8.58, "feet"),
  10872. weight: math.unit(1300, "lb"),
  10873. name: "Transforming",
  10874. image: {
  10875. source: "./media/characters/alexi/front-transforming.svg",
  10876. extra: 437 / 409,
  10877. bottom: 19 / 458.66
  10878. }
  10879. },
  10880. frontTransformed: {
  10881. height: math.unit(12.5, "feet"),
  10882. weight: math.unit(4000, "lb"),
  10883. name: "Transformed",
  10884. image: {
  10885. source: "./media/characters/alexi/front-transformed.svg",
  10886. extra: 639 / 614,
  10887. bottom: 30.55 / 671
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(14, "feet"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Minimacro",
  10899. height: math.unit(30, "meters")
  10900. },
  10901. {
  10902. name: "Macro",
  10903. height: math.unit(500, "meters")
  10904. },
  10905. {
  10906. name: "Megamacro",
  10907. height: math.unit(9000, "km")
  10908. },
  10909. {
  10910. name: "Teramacro",
  10911. height: math.unit(384000, "km")
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(150, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/kayroo/front.svg",
  10924. extra: 1153 / 1038,
  10925. bottom: 0.06
  10926. }
  10927. },
  10928. foot: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(150, "lb"),
  10931. name: "Foot",
  10932. image: {
  10933. source: "./media/characters/kayroo/foot.svg"
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Normal",
  10940. height: math.unit(8, "feet"),
  10941. default: true
  10942. },
  10943. {
  10944. name: "Minimacro",
  10945. height: math.unit(250, "feet")
  10946. },
  10947. {
  10948. name: "Macro",
  10949. height: math.unit(2800, "feet")
  10950. },
  10951. {
  10952. name: "Megamacro",
  10953. height: math.unit(5200, "feet")
  10954. },
  10955. {
  10956. name: "Gigamacro",
  10957. height: math.unit(27000, "feet")
  10958. },
  10959. {
  10960. name: "Omega",
  10961. height: math.unit(45000, "feet")
  10962. },
  10963. ]
  10964. ))
  10965. characterMakers.push(() => makeCharacter(
  10966. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10967. {
  10968. front: {
  10969. height: math.unit(18, "feet"),
  10970. weight: math.unit(5800, "lb"),
  10971. name: "Front",
  10972. image: {
  10973. source: "./media/characters/rhys/front.svg",
  10974. extra: 3386 / 3090,
  10975. bottom: 0.07
  10976. }
  10977. },
  10978. },
  10979. [
  10980. {
  10981. name: "Normal",
  10982. height: math.unit(18, "feet"),
  10983. default: true
  10984. },
  10985. {
  10986. name: "Working Size",
  10987. height: math.unit(200, "feet")
  10988. },
  10989. {
  10990. name: "Demolition Size",
  10991. height: math.unit(2000, "feet")
  10992. },
  10993. {
  10994. name: "Maximum Licensed Size",
  10995. height: math.unit(5, "miles")
  10996. },
  10997. {
  10998. name: "Maximum Observed Size",
  10999. height: math.unit(10, "yottameters")
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11005. {
  11006. front: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(250, "lb"),
  11009. name: "Front",
  11010. image: {
  11011. source: "./media/characters/toto/front.svg",
  11012. extra: 527 / 479,
  11013. bottom: 0.05
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Micro",
  11020. height: math.unit(3, "feet")
  11021. },
  11022. {
  11023. name: "Normal",
  11024. height: math.unit(10, "feet")
  11025. },
  11026. {
  11027. name: "Macro",
  11028. height: math.unit(150, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Megamacro",
  11033. height: math.unit(1200, "feet")
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "King", species: ["lion"], tags: ["anthro"] },
  11039. {
  11040. back: {
  11041. height: math.unit(6, "feet"),
  11042. weight: math.unit(150, "lb"),
  11043. name: "Back",
  11044. image: {
  11045. source: "./media/characters/king/back.svg"
  11046. }
  11047. },
  11048. },
  11049. [
  11050. {
  11051. name: "Micro",
  11052. height: math.unit(2, "inches")
  11053. },
  11054. {
  11055. name: "Normal",
  11056. height: math.unit(8, "feet")
  11057. },
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(200, "feet"),
  11061. default: true
  11062. },
  11063. {
  11064. name: "Megamacro",
  11065. height: math.unit(50, "miles")
  11066. },
  11067. ]
  11068. ))
  11069. characterMakers.push(() => makeCharacter(
  11070. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11071. {
  11072. anthro: {
  11073. height: math.unit(6 + 5 / 12, "feet"),
  11074. weight: math.unit(280, "lb"),
  11075. name: "Anthro",
  11076. image: {
  11077. source: "./media/characters/cordite/anthro.svg",
  11078. extra: 1986 / 1905,
  11079. bottom: 0.025
  11080. }
  11081. },
  11082. feral: {
  11083. height: math.unit(2, "feet"),
  11084. weight: math.unit(90, "lb"),
  11085. name: "Feral",
  11086. image: {
  11087. source: "./media/characters/cordite/feral.svg",
  11088. extra: 1260 / 755,
  11089. bottom: 0.05
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Normal",
  11096. height: math.unit(6 + 5 / 12, "feet"),
  11097. default: true
  11098. },
  11099. ]
  11100. ))
  11101. characterMakers.push(() => makeCharacter(
  11102. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11103. {
  11104. front: {
  11105. height: math.unit(6, "feet"),
  11106. weight: math.unit(150, "lb"),
  11107. name: "Front",
  11108. image: {
  11109. source: "./media/characters/pianostrong/front.svg",
  11110. extra: 6577 / 6254,
  11111. bottom: 0.02
  11112. }
  11113. },
  11114. side: {
  11115. height: math.unit(6, "feet"),
  11116. weight: math.unit(150, "lb"),
  11117. name: "Side",
  11118. image: {
  11119. source: "./media/characters/pianostrong/side.svg",
  11120. extra: 6106 / 5730
  11121. }
  11122. },
  11123. back: {
  11124. height: math.unit(6, "feet"),
  11125. weight: math.unit(150, "lb"),
  11126. name: "Back",
  11127. image: {
  11128. source: "./media/characters/pianostrong/back.svg",
  11129. extra: 6085 / 5733,
  11130. bottom: 0.01
  11131. }
  11132. },
  11133. },
  11134. [
  11135. {
  11136. name: "Macro",
  11137. height: math.unit(100, "feet")
  11138. },
  11139. {
  11140. name: "Macro+",
  11141. height: math.unit(300, "feet"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Macro++",
  11146. height: math.unit(1000, "feet")
  11147. },
  11148. ]
  11149. ))
  11150. characterMakers.push(() => makeCharacter(
  11151. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11152. {
  11153. front: {
  11154. height: math.unit(6, "feet"),
  11155. weight: math.unit(150, "lb"),
  11156. name: "Front",
  11157. image: {
  11158. source: "./media/characters/kona/front.svg",
  11159. extra: 2960 / 2629,
  11160. bottom: 0.005
  11161. }
  11162. },
  11163. },
  11164. [
  11165. {
  11166. name: "Normal",
  11167. height: math.unit(11 + 8 / 12, "feet")
  11168. },
  11169. {
  11170. name: "Macro",
  11171. height: math.unit(850, "feet"),
  11172. default: true
  11173. },
  11174. {
  11175. name: "Macro+",
  11176. height: math.unit(1.5, "km"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Megamacro",
  11181. height: math.unit(80, "miles")
  11182. },
  11183. {
  11184. name: "Gigamacro",
  11185. height: math.unit(3500, "miles")
  11186. },
  11187. ]
  11188. ))
  11189. characterMakers.push(() => makeCharacter(
  11190. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11191. {
  11192. side: {
  11193. height: math.unit(1.9, "meters"),
  11194. weight: math.unit(326, "kg"),
  11195. name: "Side",
  11196. image: {
  11197. source: "./media/characters/levi/side.svg",
  11198. extra: 1704 / 1334,
  11199. bottom: 0.02
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(1.9, "meters"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Macro",
  11211. height: math.unit(20, "meters")
  11212. },
  11213. {
  11214. name: "Macro+",
  11215. height: math.unit(200, "meters")
  11216. },
  11217. {
  11218. name: "Megamacro",
  11219. height: math.unit(2, "km")
  11220. },
  11221. {
  11222. name: "Megamacro+",
  11223. height: math.unit(20, "km")
  11224. },
  11225. {
  11226. name: "Gigamacro",
  11227. height: math.unit(2500, "km")
  11228. },
  11229. {
  11230. name: "Gigamacro+",
  11231. height: math.unit(120000, "km")
  11232. },
  11233. {
  11234. name: "Teramacro",
  11235. height: math.unit(7.77e6, "km")
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11241. {
  11242. front: {
  11243. height: math.unit(6 + 4/12, "feet"),
  11244. weight: math.unit(190, "lb"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/bmc/front.svg",
  11248. extra: 1626/1472,
  11249. bottom: 79/1705
  11250. }
  11251. },
  11252. back: {
  11253. height: math.unit(6 + 4/12, "feet"),
  11254. weight: math.unit(190, "lb"),
  11255. name: "Back",
  11256. image: {
  11257. source: "./media/characters/bmc/back.svg",
  11258. extra: 1640/1479,
  11259. bottom: 45/1685
  11260. }
  11261. },
  11262. frontArmor: {
  11263. height: math.unit(6 + 4/12, "feet"),
  11264. weight: math.unit(190, "lb"),
  11265. name: "Front-armor",
  11266. image: {
  11267. source: "./media/characters/bmc/front-armor.svg",
  11268. extra: 1538/1468,
  11269. bottom: 79/1617
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Human-sized",
  11276. height: math.unit(6 + 4 / 12, "feet")
  11277. },
  11278. {
  11279. name: "Interactive Size",
  11280. height: math.unit(25, "feet")
  11281. },
  11282. {
  11283. name: "Small",
  11284. height: math.unit(250, "feet")
  11285. },
  11286. {
  11287. name: "Normal",
  11288. height: math.unit(1250, "feet"),
  11289. default: true
  11290. },
  11291. {
  11292. name: "Good Day",
  11293. height: math.unit(88, "miles")
  11294. },
  11295. {
  11296. name: "Largest Measured Size",
  11297. height: math.unit(105.960, "galaxies")
  11298. },
  11299. ]
  11300. ))
  11301. characterMakers.push(() => makeCharacter(
  11302. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11303. {
  11304. front: {
  11305. height: math.unit(20, "feet"),
  11306. weight: math.unit(2016, "kg"),
  11307. name: "Front",
  11308. image: {
  11309. source: "./media/characters/sven-the-kaiju/front.svg",
  11310. extra: 1277/1250,
  11311. bottom: 35/1312
  11312. }
  11313. },
  11314. mouth: {
  11315. height: math.unit(1.85, "feet"),
  11316. name: "Mouth",
  11317. image: {
  11318. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Fairy",
  11325. height: math.unit(6, "inches")
  11326. },
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(20, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Rampage",
  11334. height: math.unit(200, "feet")
  11335. },
  11336. {
  11337. name: "Archfey Forest Guardian",
  11338. height: math.unit(1, "mile")
  11339. },
  11340. ]
  11341. ))
  11342. characterMakers.push(() => makeCharacter(
  11343. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11344. {
  11345. front: {
  11346. height: math.unit(4, "meters"),
  11347. weight: math.unit(2, "tons"),
  11348. name: "Front",
  11349. image: {
  11350. source: "./media/characters/marik/front.svg",
  11351. extra: 1057 / 1003,
  11352. bottom: 0.08
  11353. }
  11354. },
  11355. },
  11356. [
  11357. {
  11358. name: "Normal",
  11359. height: math.unit(4, "meters"),
  11360. default: true
  11361. },
  11362. {
  11363. name: "Macro",
  11364. height: math.unit(20, "meters")
  11365. },
  11366. {
  11367. name: "Megamacro",
  11368. height: math.unit(50, "km")
  11369. },
  11370. {
  11371. name: "Gigamacro",
  11372. height: math.unit(100, "km")
  11373. },
  11374. {
  11375. name: "Alpha Macro",
  11376. height: math.unit(7.88e7, "yottameters")
  11377. },
  11378. ]
  11379. ))
  11380. characterMakers.push(() => makeCharacter(
  11381. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11382. {
  11383. front: {
  11384. height: math.unit(6, "feet"),
  11385. weight: math.unit(110, "lb"),
  11386. name: "Front",
  11387. image: {
  11388. source: "./media/characters/mel/front.svg",
  11389. extra: 736 / 617,
  11390. bottom: 0.017
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Pico",
  11397. height: math.unit(3, "pm")
  11398. },
  11399. {
  11400. name: "Nano",
  11401. height: math.unit(3, "nm")
  11402. },
  11403. {
  11404. name: "Micro",
  11405. height: math.unit(0.3, "mm"),
  11406. default: true
  11407. },
  11408. {
  11409. name: "Micro+",
  11410. height: math.unit(3, "mm")
  11411. },
  11412. {
  11413. name: "Normal",
  11414. height: math.unit(5 + 10.5 / 12, "feet")
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11420. {
  11421. kaiju: {
  11422. height: math.unit(1.75, "meters"),
  11423. weight: math.unit(55, "kg"),
  11424. name: "Kaiju",
  11425. image: {
  11426. source: "./media/characters/lykonous/kaiju.svg",
  11427. extra: 1055 / 946,
  11428. bottom: 0.135
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(2.5, "meters"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Kaiju Dragon",
  11440. height: math.unit(60, "meters")
  11441. },
  11442. {
  11443. name: "Mega Kaiju",
  11444. height: math.unit(120, "km")
  11445. },
  11446. {
  11447. name: "Giga Kaiju",
  11448. height: math.unit(200, "megameters")
  11449. },
  11450. {
  11451. name: "Terra Kaiju",
  11452. height: math.unit(400, "gigameters")
  11453. },
  11454. {
  11455. name: "Kaiju Dragon God",
  11456. height: math.unit(13000, "exaparsecs")
  11457. },
  11458. ]
  11459. ))
  11460. characterMakers.push(() => makeCharacter(
  11461. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11462. {
  11463. front: {
  11464. height: math.unit(6, "feet"),
  11465. weight: math.unit(150, "lb"),
  11466. name: "Front",
  11467. image: {
  11468. source: "./media/characters/blü/front.svg",
  11469. extra: 1883 / 1564,
  11470. bottom: 0.031
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Normal",
  11477. height: math.unit(13, "feet"),
  11478. default: true
  11479. },
  11480. {
  11481. name: "Big Boi",
  11482. height: math.unit(150, "meters")
  11483. },
  11484. {
  11485. name: "Mini Stomper",
  11486. height: math.unit(300, "meters")
  11487. },
  11488. {
  11489. name: "Macro",
  11490. height: math.unit(1000, "meters")
  11491. },
  11492. {
  11493. name: "Megamacro",
  11494. height: math.unit(11000, "meters")
  11495. },
  11496. {
  11497. name: "Gigamacro",
  11498. height: math.unit(11000, "km")
  11499. },
  11500. {
  11501. name: "Teramacro",
  11502. height: math.unit(420000, "km")
  11503. },
  11504. {
  11505. name: "Examacro",
  11506. height: math.unit(120, "parsecs")
  11507. },
  11508. {
  11509. name: "God Tho",
  11510. height: math.unit(98000000000, "parsecs")
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11516. {
  11517. taurFront: {
  11518. height: math.unit(6, "feet"),
  11519. weight: math.unit(200, "lb"),
  11520. name: "Taur (Front)",
  11521. image: {
  11522. source: "./media/characters/scales/taur-front.svg",
  11523. extra: 1,
  11524. bottom: 0.05
  11525. }
  11526. },
  11527. taurBack: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(200, "lb"),
  11530. name: "Taur (Back)",
  11531. image: {
  11532. source: "./media/characters/scales/taur-back.svg",
  11533. extra: 1,
  11534. bottom: 0.08
  11535. }
  11536. },
  11537. anthro: {
  11538. height: math.unit(6 * 7 / 12, "feet"),
  11539. weight: math.unit(100, "lb"),
  11540. name: "Anthro",
  11541. image: {
  11542. source: "./media/characters/scales/anthro.svg",
  11543. extra: 1,
  11544. bottom: 0.06
  11545. }
  11546. },
  11547. },
  11548. [
  11549. {
  11550. name: "Normal",
  11551. height: math.unit(12, "feet"),
  11552. default: true
  11553. },
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11558. {
  11559. front: {
  11560. height: math.unit(6, "feet"),
  11561. weight: math.unit(150, "lb"),
  11562. name: "Front",
  11563. image: {
  11564. source: "./media/characters/koragos/front.svg",
  11565. extra: 841 / 794,
  11566. bottom: 0.035
  11567. }
  11568. },
  11569. back: {
  11570. height: math.unit(6, "feet"),
  11571. weight: math.unit(150, "lb"),
  11572. name: "Back",
  11573. image: {
  11574. source: "./media/characters/koragos/back.svg",
  11575. extra: 841 / 810,
  11576. bottom: 0.022
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(6 + 11 / 12, "feet"),
  11584. default: true
  11585. },
  11586. {
  11587. name: "Macro",
  11588. height: math.unit(490, "feet")
  11589. },
  11590. {
  11591. name: "Megamacro",
  11592. height: math.unit(10, "miles")
  11593. },
  11594. {
  11595. name: "Gigamacro",
  11596. height: math.unit(50, "miles")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(250, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/xylrem/front.svg",
  11609. extra: 3323 / 3050,
  11610. bottom: 0.065
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Micro",
  11617. height: math.unit(4, "feet")
  11618. },
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(16, "feet"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(2720, "feet")
  11627. },
  11628. {
  11629. name: "Megamacro",
  11630. height: math.unit(25000, "miles")
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11636. {
  11637. front: {
  11638. height: math.unit(8, "feet"),
  11639. weight: math.unit(250, "kg"),
  11640. name: "Front",
  11641. image: {
  11642. source: "./media/characters/ikideru/front.svg",
  11643. extra: 930 / 870,
  11644. bottom: 0.087
  11645. }
  11646. },
  11647. back: {
  11648. height: math.unit(8, "feet"),
  11649. weight: math.unit(250, "kg"),
  11650. name: "Back",
  11651. image: {
  11652. source: "./media/characters/ikideru/back.svg",
  11653. extra: 919 / 852,
  11654. bottom: 0.055
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Rare",
  11661. height: math.unit(8, "feet"),
  11662. default: true
  11663. },
  11664. {
  11665. name: "Playful Loom",
  11666. height: math.unit(80, "feet")
  11667. },
  11668. {
  11669. name: "City Leaner",
  11670. height: math.unit(230, "feet")
  11671. },
  11672. {
  11673. name: "Megamacro",
  11674. height: math.unit(2500, "feet")
  11675. },
  11676. {
  11677. name: "Gigamacro",
  11678. height: math.unit(26400, "feet")
  11679. },
  11680. {
  11681. name: "Tectonic Shifter",
  11682. height: math.unit(1.7, "megameters")
  11683. },
  11684. {
  11685. name: "Planet Carer",
  11686. height: math.unit(21, "megameters")
  11687. },
  11688. {
  11689. name: "God",
  11690. height: math.unit(11157.22, "parsecs")
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11696. {
  11697. front: {
  11698. height: math.unit(6, "feet"),
  11699. weight: math.unit(120, "lb"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/neo/front.svg"
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Micro",
  11709. height: math.unit(2, "inches"),
  11710. default: true
  11711. },
  11712. {
  11713. name: "Human Size",
  11714. height: math.unit(5 + 8 / 12, "feet")
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(13 + 10 / 12, "feet"),
  11723. weight: math.unit(5320, "lb"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/chauncey-chantz/front.svg",
  11727. extra: 1587 / 1435,
  11728. bottom: 0.02
  11729. }
  11730. },
  11731. },
  11732. [
  11733. {
  11734. name: "Normal",
  11735. height: math.unit(13 + 10 / 12, "feet"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Macro",
  11740. height: math.unit(45, "feet")
  11741. },
  11742. {
  11743. name: "Megamacro",
  11744. height: math.unit(250, "miles")
  11745. },
  11746. {
  11747. name: "Planetary",
  11748. height: math.unit(10000, "miles")
  11749. },
  11750. {
  11751. name: "Galactic",
  11752. height: math.unit(40000, "parsecs")
  11753. },
  11754. {
  11755. name: "Universal",
  11756. height: math.unit(1, "yottameter")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11762. {
  11763. front: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Front",
  11767. image: {
  11768. source: "./media/characters/epifox/front.svg",
  11769. extra: 1,
  11770. bottom: 0.075
  11771. }
  11772. },
  11773. },
  11774. [
  11775. {
  11776. name: "Micro",
  11777. height: math.unit(6, "inches")
  11778. },
  11779. {
  11780. name: "Normal",
  11781. height: math.unit(12, "feet"),
  11782. default: true
  11783. },
  11784. {
  11785. name: "Macro",
  11786. height: math.unit(3810, "feet")
  11787. },
  11788. {
  11789. name: "Megamacro",
  11790. height: math.unit(500, "miles")
  11791. },
  11792. ]
  11793. ))
  11794. characterMakers.push(() => makeCharacter(
  11795. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11796. {
  11797. front: {
  11798. height: math.unit(1.8796, "m"),
  11799. weight: math.unit(230, "lb"),
  11800. name: "Front",
  11801. image: {
  11802. source: "./media/characters/colin-t/front.svg",
  11803. extra: 1272 / 1193,
  11804. bottom: 0.07
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Micro",
  11811. height: math.unit(0.571, "meters")
  11812. },
  11813. {
  11814. name: "Normal",
  11815. height: math.unit(1.8796, "meters"),
  11816. default: true
  11817. },
  11818. {
  11819. name: "Tall",
  11820. height: math.unit(4, "meters")
  11821. },
  11822. {
  11823. name: "Macro",
  11824. height: math.unit(67.241, "meters")
  11825. },
  11826. {
  11827. name: "Megamacro",
  11828. height: math.unit(371.856, "meters")
  11829. },
  11830. {
  11831. name: "Planetary",
  11832. height: math.unit(12631.5689, "km")
  11833. },
  11834. ]
  11835. ))
  11836. characterMakers.push(() => makeCharacter(
  11837. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11838. {
  11839. front: {
  11840. height: math.unit(1.85, "meters"),
  11841. weight: math.unit(80, "kg"),
  11842. name: "Front",
  11843. image: {
  11844. source: "./media/characters/matvei/front.svg",
  11845. extra: 614 / 594,
  11846. bottom: 0.01
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(1.85, "meters"),
  11854. default: true
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(5 + 9 / 12, "feet"),
  11863. weight: math.unit(70, "lb"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/quincy/front.svg",
  11867. extra: 3041 / 2751
  11868. }
  11869. },
  11870. back: {
  11871. height: math.unit(5 + 9 / 12, "feet"),
  11872. weight: math.unit(70, "lb"),
  11873. name: "Back",
  11874. image: {
  11875. source: "./media/characters/quincy/back.svg",
  11876. extra: 3041 / 2751
  11877. }
  11878. },
  11879. flying: {
  11880. height: math.unit(5 + 4 / 12, "feet"),
  11881. weight: math.unit(70, "lb"),
  11882. name: "Flying",
  11883. image: {
  11884. source: "./media/characters/quincy/flying.svg",
  11885. extra: 1044 / 930
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Micro",
  11892. height: math.unit(3, "cm")
  11893. },
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(5 + 9 / 12, "feet")
  11897. },
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(200, "meters"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Megamacro",
  11905. height: math.unit(1000, "meters")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(3 + 11/12, "feet"),
  11914. weight: math.unit(50, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/vanrel/front.svg",
  11918. extra: 1104/949,
  11919. bottom: 52/1156
  11920. }
  11921. },
  11922. back: {
  11923. height: math.unit(3 + 11/12, "feet"),
  11924. weight: math.unit(50, "lb"),
  11925. name: "Back",
  11926. image: {
  11927. source: "./media/characters/vanrel/back.svg",
  11928. extra: 1119/976,
  11929. bottom: 37/1156
  11930. }
  11931. },
  11932. tome: {
  11933. height: math.unit(1.35, "feet"),
  11934. weight: math.unit(10, "lb"),
  11935. name: "Vanrel's Tome",
  11936. rename: true,
  11937. image: {
  11938. source: "./media/characters/vanrel/tome.svg"
  11939. }
  11940. },
  11941. beans: {
  11942. height: math.unit(0.89, "feet"),
  11943. name: "Beans",
  11944. image: {
  11945. source: "./media/characters/vanrel/beans.svg"
  11946. }
  11947. },
  11948. },
  11949. [
  11950. {
  11951. name: "Normal",
  11952. height: math.unit(3 + 11/12, "feet"),
  11953. default: true
  11954. },
  11955. ]
  11956. ))
  11957. characterMakers.push(() => makeCharacter(
  11958. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11959. {
  11960. front: {
  11961. height: math.unit(7 + 5 / 12, "feet"),
  11962. name: "Front",
  11963. image: {
  11964. source: "./media/characters/kuiper-vanrel/front.svg",
  11965. extra: 1219/1169,
  11966. bottom: 69/1288
  11967. }
  11968. },
  11969. back: {
  11970. height: math.unit(7 + 5 / 12, "feet"),
  11971. name: "Back",
  11972. image: {
  11973. source: "./media/characters/kuiper-vanrel/back.svg",
  11974. extra: 1236/1193,
  11975. bottom: 27/1263
  11976. }
  11977. },
  11978. foot: {
  11979. height: math.unit(0.55, "meters"),
  11980. name: "Foot",
  11981. image: {
  11982. source: "./media/characters/kuiper-vanrel/foot.svg",
  11983. }
  11984. },
  11985. battle: {
  11986. height: math.unit(6.824, "feet"),
  11987. name: "Battle",
  11988. image: {
  11989. source: "./media/characters/kuiper-vanrel/battle.svg",
  11990. extra: 1466 / 1327,
  11991. bottom: 29 / 1492.5
  11992. }
  11993. },
  11994. },
  11995. [
  11996. {
  11997. name: "Normal",
  11998. height: math.unit(7 + 5 / 12, "feet"),
  11999. default: true
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12005. {
  12006. front: {
  12007. height: math.unit(8 + 5 / 12, "feet"),
  12008. name: "Front",
  12009. image: {
  12010. source: "./media/characters/keset-vanrel/front.svg",
  12011. extra: 1231/1148,
  12012. bottom: 82/1313
  12013. }
  12014. },
  12015. back: {
  12016. height: math.unit(8 + 5 / 12, "feet"),
  12017. name: "Back",
  12018. image: {
  12019. source: "./media/characters/keset-vanrel/back.svg",
  12020. extra: 1240/1174,
  12021. bottom: 33/1273
  12022. }
  12023. },
  12024. hand: {
  12025. height: math.unit(0.6, "meters"),
  12026. name: "Hand",
  12027. image: {
  12028. source: "./media/characters/keset-vanrel/hand.svg"
  12029. }
  12030. },
  12031. foot: {
  12032. height: math.unit(0.94978, "meters"),
  12033. name: "Foot",
  12034. image: {
  12035. source: "./media/characters/keset-vanrel/foot.svg"
  12036. }
  12037. },
  12038. battle: {
  12039. height: math.unit(7.408, "feet"),
  12040. name: "Battle",
  12041. image: {
  12042. source: "./media/characters/keset-vanrel/battle.svg",
  12043. extra: 1890 / 1386,
  12044. bottom: 73.28 / 1970
  12045. }
  12046. },
  12047. },
  12048. [
  12049. {
  12050. name: "Normal",
  12051. height: math.unit(8 + 5 / 12, "feet"),
  12052. default: true
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12058. {
  12059. front: {
  12060. height: math.unit(6, "feet"),
  12061. weight: math.unit(150, "lb"),
  12062. name: "Front",
  12063. image: {
  12064. source: "./media/characters/neos/front.svg",
  12065. extra: 1696 / 992,
  12066. bottom: 0.14
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(54, "cm"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Macro",
  12078. height: math.unit(100, "m")
  12079. },
  12080. {
  12081. name: "Megamacro",
  12082. height: math.unit(10, "km")
  12083. },
  12084. {
  12085. name: "Megamacro+",
  12086. height: math.unit(100, "km")
  12087. },
  12088. {
  12089. name: "Gigamacro",
  12090. height: math.unit(100, "Mm")
  12091. },
  12092. {
  12093. name: "Teramacro",
  12094. height: math.unit(100, "Gm")
  12095. },
  12096. {
  12097. name: "Examacro",
  12098. height: math.unit(100, "Em")
  12099. },
  12100. {
  12101. name: "Godly",
  12102. height: math.unit(10000, "Ym")
  12103. },
  12104. {
  12105. name: "Beyond Godly",
  12106. height: math.unit(25, "multiverses")
  12107. },
  12108. ]
  12109. ))
  12110. characterMakers.push(() => makeCharacter(
  12111. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12112. {
  12113. feminine: {
  12114. height: math.unit(5, "feet"),
  12115. weight: math.unit(100, "lb"),
  12116. name: "Feminine",
  12117. image: {
  12118. source: "./media/characters/sammy-mouse/feminine.svg",
  12119. extra: 2526 / 2425,
  12120. bottom: 0.123
  12121. }
  12122. },
  12123. masculine: {
  12124. height: math.unit(5, "feet"),
  12125. weight: math.unit(100, "lb"),
  12126. name: "Masculine",
  12127. image: {
  12128. source: "./media/characters/sammy-mouse/masculine.svg",
  12129. extra: 2526 / 2425,
  12130. bottom: 0.123
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "Micro",
  12137. height: math.unit(5, "inches")
  12138. },
  12139. {
  12140. name: "Normal",
  12141. height: math.unit(5, "feet"),
  12142. default: true
  12143. },
  12144. {
  12145. name: "Macro",
  12146. height: math.unit(60, "feet")
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12152. {
  12153. front: {
  12154. height: math.unit(4, "feet"),
  12155. weight: math.unit(50, "lb"),
  12156. name: "Front",
  12157. image: {
  12158. source: "./media/characters/kole/front.svg",
  12159. extra: 1423 / 1303,
  12160. bottom: 0.025
  12161. }
  12162. },
  12163. back: {
  12164. height: math.unit(4, "feet"),
  12165. weight: math.unit(50, "lb"),
  12166. name: "Back",
  12167. image: {
  12168. source: "./media/characters/kole/back.svg",
  12169. extra: 1426 / 1280,
  12170. bottom: 0.02
  12171. }
  12172. },
  12173. },
  12174. [
  12175. {
  12176. name: "Normal",
  12177. height: math.unit(4, "feet"),
  12178. default: true
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(2.5, "feet"),
  12187. weight: math.unit(32, "lb"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/rufran/front.svg",
  12191. extra: 1313/885,
  12192. bottom: 94/1407
  12193. }
  12194. },
  12195. side: {
  12196. height: math.unit(2.5, "feet"),
  12197. weight: math.unit(32, "lb"),
  12198. name: "Side",
  12199. image: {
  12200. source: "./media/characters/rufran/side.svg",
  12201. extra: 1109/852,
  12202. bottom: 118/1227
  12203. }
  12204. },
  12205. back: {
  12206. height: math.unit(2.5, "feet"),
  12207. weight: math.unit(32, "lb"),
  12208. name: "Back",
  12209. image: {
  12210. source: "./media/characters/rufran/back.svg",
  12211. extra: 1280/878,
  12212. bottom: 131/1411
  12213. }
  12214. },
  12215. mouth: {
  12216. height: math.unit(1.13, "feet"),
  12217. name: "Mouth",
  12218. image: {
  12219. source: "./media/characters/rufran/mouth.svg"
  12220. }
  12221. },
  12222. foot: {
  12223. height: math.unit(1.33, "feet"),
  12224. name: "Foot",
  12225. image: {
  12226. source: "./media/characters/rufran/foot.svg"
  12227. }
  12228. },
  12229. koboldFront: {
  12230. height: math.unit(2 + 6 / 12, "feet"),
  12231. weight: math.unit(20, "lb"),
  12232. name: "Front (Kobold)",
  12233. image: {
  12234. source: "./media/characters/rufran/kobold-front.svg",
  12235. extra: 2041 / 1839,
  12236. bottom: 0.055
  12237. }
  12238. },
  12239. koboldBack: {
  12240. height: math.unit(2 + 6 / 12, "feet"),
  12241. weight: math.unit(20, "lb"),
  12242. name: "Back (Kobold)",
  12243. image: {
  12244. source: "./media/characters/rufran/kobold-back.svg",
  12245. extra: 2054 / 1839,
  12246. bottom: 0.01
  12247. }
  12248. },
  12249. koboldHand: {
  12250. height: math.unit(0.2166, "meters"),
  12251. name: "Hand (Kobold)",
  12252. image: {
  12253. source: "./media/characters/rufran/kobold-hand.svg"
  12254. }
  12255. },
  12256. koboldFoot: {
  12257. height: math.unit(0.185, "meters"),
  12258. name: "Foot (Kobold)",
  12259. image: {
  12260. source: "./media/characters/rufran/kobold-foot.svg"
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Micro",
  12267. height: math.unit(1, "inch")
  12268. },
  12269. {
  12270. name: "Normal",
  12271. height: math.unit(2 + 6 / 12, "feet"),
  12272. default: true
  12273. },
  12274. {
  12275. name: "Big",
  12276. height: math.unit(60, "feet")
  12277. },
  12278. {
  12279. name: "Macro",
  12280. height: math.unit(325, "feet")
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12286. {
  12287. front: {
  12288. height: math.unit(0.3, "meters"),
  12289. weight: math.unit(3.5, "kg"),
  12290. name: "Front",
  12291. image: {
  12292. source: "./media/characters/chip/front.svg",
  12293. extra: 748 / 674
  12294. }
  12295. },
  12296. },
  12297. [
  12298. {
  12299. name: "Micro",
  12300. height: math.unit(1, "inch"),
  12301. default: true
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12307. {
  12308. side: {
  12309. height: math.unit(2.3, "meters"),
  12310. weight: math.unit(3500, "lb"),
  12311. name: "Side",
  12312. image: {
  12313. source: "./media/characters/torvid/side.svg",
  12314. extra: 1972 / 722,
  12315. bottom: 0.035
  12316. }
  12317. },
  12318. },
  12319. [
  12320. {
  12321. name: "Normal",
  12322. height: math.unit(2.3, "meters"),
  12323. default: true
  12324. },
  12325. ]
  12326. ))
  12327. characterMakers.push(() => makeCharacter(
  12328. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12329. {
  12330. front: {
  12331. height: math.unit(2, "meters"),
  12332. weight: math.unit(150.5, "kg"),
  12333. name: "Front",
  12334. image: {
  12335. source: "./media/characters/susan/front.svg",
  12336. extra: 693 / 635,
  12337. bottom: 0.05
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Megamacro",
  12344. height: math.unit(505, "miles"),
  12345. default: true
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12351. {
  12352. front: {
  12353. height: math.unit(6, "feet"),
  12354. weight: math.unit(150, "lb"),
  12355. name: "Front",
  12356. image: {
  12357. source: "./media/characters/raindrops/front.svg",
  12358. extra: 2655 / 2461,
  12359. bottom: 49 / 2705
  12360. }
  12361. },
  12362. back: {
  12363. height: math.unit(6, "feet"),
  12364. weight: math.unit(150, "lb"),
  12365. name: "Back",
  12366. image: {
  12367. source: "./media/characters/raindrops/back.svg",
  12368. extra: 2574 / 2400,
  12369. bottom: 65 / 2634
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Micro",
  12376. height: math.unit(6, "inches")
  12377. },
  12378. {
  12379. name: "Normal",
  12380. height: math.unit(6 + 2 / 12, "feet")
  12381. },
  12382. {
  12383. name: "Macro",
  12384. height: math.unit(131, "feet"),
  12385. default: true
  12386. },
  12387. {
  12388. name: "Megamacro",
  12389. height: math.unit(15, "miles")
  12390. },
  12391. {
  12392. name: "Gigamacro",
  12393. height: math.unit(4000, "miles")
  12394. },
  12395. {
  12396. name: "Teramacro",
  12397. height: math.unit(315000, "miles")
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(2.794, "meters"),
  12406. weight: math.unit(325, "kg"),
  12407. name: "Front",
  12408. image: {
  12409. source: "./media/characters/tezwa/front.svg",
  12410. extra: 2083 / 1906,
  12411. bottom: 0.031
  12412. }
  12413. },
  12414. foot: {
  12415. height: math.unit(0.687, "meters"),
  12416. name: "Foot",
  12417. image: {
  12418. source: "./media/characters/tezwa/foot.svg"
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Normal",
  12425. height: math.unit(9 + 2 / 12, "feet"),
  12426. default: true
  12427. },
  12428. ]
  12429. ))
  12430. characterMakers.push(() => makeCharacter(
  12431. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12432. {
  12433. front: {
  12434. height: math.unit(58, "feet"),
  12435. weight: math.unit(89000, "lb"),
  12436. name: "Front",
  12437. image: {
  12438. source: "./media/characters/typhus/front.svg",
  12439. extra: 816 / 800,
  12440. bottom: 0.065
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(58, "feet"),
  12448. default: true
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(12, "feet"),
  12457. weight: math.unit(6, "tonnes"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/lyra-von-wulf/front.svg",
  12461. extra: 1,
  12462. bottom: 0.10
  12463. }
  12464. },
  12465. frontMecha: {
  12466. height: math.unit(12, "feet"),
  12467. weight: math.unit(12, "tonnes"),
  12468. name: "Front (Mecha)",
  12469. image: {
  12470. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12471. extra: 1,
  12472. bottom: 0.042
  12473. }
  12474. },
  12475. maw: {
  12476. height: math.unit(2.2, "feet"),
  12477. name: "Maw",
  12478. image: {
  12479. source: "./media/characters/lyra-von-wulf/maw.svg"
  12480. }
  12481. },
  12482. },
  12483. [
  12484. {
  12485. name: "Normal",
  12486. height: math.unit(12, "feet"),
  12487. default: true
  12488. },
  12489. {
  12490. name: "Classic",
  12491. height: math.unit(50, "feet")
  12492. },
  12493. {
  12494. name: "Macro",
  12495. height: math.unit(500, "feet")
  12496. },
  12497. {
  12498. name: "Megamacro",
  12499. height: math.unit(1, "mile")
  12500. },
  12501. {
  12502. name: "Gigamacro",
  12503. height: math.unit(400, "miles")
  12504. },
  12505. {
  12506. name: "Teramacro",
  12507. height: math.unit(22000, "miles")
  12508. },
  12509. {
  12510. name: "Solarmacro",
  12511. height: math.unit(8600000, "miles")
  12512. },
  12513. {
  12514. name: "Galactic",
  12515. height: math.unit(1057000, "lightyears")
  12516. },
  12517. ]
  12518. ))
  12519. characterMakers.push(() => makeCharacter(
  12520. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12521. {
  12522. front: {
  12523. height: math.unit(6 + 10 / 12, "feet"),
  12524. weight: math.unit(150, "lb"),
  12525. name: "Front",
  12526. image: {
  12527. source: "./media/characters/dixon/front.svg",
  12528. extra: 3361 / 3209,
  12529. bottom: 0.01
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Normal",
  12536. height: math.unit(6 + 10 / 12, "feet"),
  12537. default: true
  12538. },
  12539. {
  12540. name: "Big",
  12541. height: math.unit(12, "meters")
  12542. },
  12543. {
  12544. name: "Macro",
  12545. height: math.unit(500, "meters")
  12546. },
  12547. {
  12548. name: "Megamacro",
  12549. height: math.unit(2, "km")
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12555. {
  12556. front: {
  12557. height: math.unit(185, "cm"),
  12558. weight: math.unit(68, "kg"),
  12559. name: "Front",
  12560. image: {
  12561. source: "./media/characters/kauko/front.svg",
  12562. extra: 1455 / 1421,
  12563. bottom: 0.03
  12564. }
  12565. },
  12566. back: {
  12567. height: math.unit(185, "cm"),
  12568. weight: math.unit(68, "kg"),
  12569. name: "Back",
  12570. image: {
  12571. source: "./media/characters/kauko/back.svg",
  12572. extra: 1455 / 1421,
  12573. bottom: 0.004
  12574. }
  12575. },
  12576. },
  12577. [
  12578. {
  12579. name: "Normal",
  12580. height: math.unit(185, "cm"),
  12581. default: true
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12587. {
  12588. front: {
  12589. height: math.unit(6, "feet"),
  12590. weight: math.unit(150, "kg"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/varg/front.svg",
  12594. extra: 1108 / 1018,
  12595. bottom: 0.0375
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Normal",
  12602. height: math.unit(5, "meters")
  12603. },
  12604. {
  12605. name: "Macro",
  12606. height: math.unit(200, "meters")
  12607. },
  12608. {
  12609. name: "Megamacro",
  12610. height: math.unit(20, "kilometers")
  12611. },
  12612. {
  12613. name: "True Size",
  12614. height: math.unit(211, "km"),
  12615. default: true
  12616. },
  12617. {
  12618. name: "Gigamacro",
  12619. height: math.unit(1000, "km")
  12620. },
  12621. {
  12622. name: "Gigamacro+",
  12623. height: math.unit(8000, "km")
  12624. },
  12625. {
  12626. name: "Teramacro",
  12627. height: math.unit(1000000, "km")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(7 + 7 / 12, "feet"),
  12636. weight: math.unit(267, "lb"),
  12637. name: "Front",
  12638. image: {
  12639. source: "./media/characters/dayza/front.svg",
  12640. extra: 1262 / 1200,
  12641. bottom: 0.035
  12642. }
  12643. },
  12644. side: {
  12645. height: math.unit(7 + 7 / 12, "feet"),
  12646. weight: math.unit(267, "lb"),
  12647. name: "Side",
  12648. image: {
  12649. source: "./media/characters/dayza/side.svg",
  12650. extra: 1295 / 1245,
  12651. bottom: 0.05
  12652. }
  12653. },
  12654. back: {
  12655. height: math.unit(7 + 7 / 12, "feet"),
  12656. weight: math.unit(267, "lb"),
  12657. name: "Back",
  12658. image: {
  12659. source: "./media/characters/dayza/back.svg",
  12660. extra: 1241 / 1170
  12661. }
  12662. },
  12663. },
  12664. [
  12665. {
  12666. name: "Normal",
  12667. height: math.unit(7 + 7 / 12, "feet"),
  12668. default: true
  12669. },
  12670. {
  12671. name: "Macro",
  12672. height: math.unit(155, "feet")
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(6 + 5 / 12, "feet"),
  12681. weight: math.unit(160, "lb"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/xanthos/front.svg",
  12685. extra: 1,
  12686. bottom: 0.04
  12687. }
  12688. },
  12689. back: {
  12690. height: math.unit(6 + 5 / 12, "feet"),
  12691. weight: math.unit(160, "lb"),
  12692. name: "Back",
  12693. image: {
  12694. source: "./media/characters/xanthos/back.svg",
  12695. extra: 1,
  12696. bottom: 0.03
  12697. }
  12698. },
  12699. hand: {
  12700. height: math.unit(0.928, "feet"),
  12701. name: "Hand",
  12702. image: {
  12703. source: "./media/characters/xanthos/hand.svg"
  12704. }
  12705. },
  12706. foot: {
  12707. height: math.unit(1.286, "feet"),
  12708. name: "Foot",
  12709. image: {
  12710. source: "./media/characters/xanthos/foot.svg"
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Normal",
  12717. height: math.unit(6 + 5 / 12, "feet"),
  12718. default: true
  12719. },
  12720. {
  12721. name: "Normal+",
  12722. height: math.unit(6, "meters")
  12723. },
  12724. {
  12725. name: "Macro",
  12726. height: math.unit(40, "feet")
  12727. },
  12728. {
  12729. name: "Macro+",
  12730. height: math.unit(200, "meters")
  12731. },
  12732. {
  12733. name: "Megamacro",
  12734. height: math.unit(20, "km")
  12735. },
  12736. {
  12737. name: "Megamacro+",
  12738. height: math.unit(100, "km")
  12739. },
  12740. {
  12741. name: "Gigamacro",
  12742. height: math.unit(200, "megameters")
  12743. },
  12744. {
  12745. name: "Gigamacro+",
  12746. height: math.unit(1.5, "gigameters")
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12752. {
  12753. front: {
  12754. height: math.unit(6 + 3 / 12, "feet"),
  12755. weight: math.unit(215, "lb"),
  12756. name: "Front",
  12757. image: {
  12758. source: "./media/characters/grynn/front.svg",
  12759. extra: 4627 / 4209,
  12760. bottom: 0.047
  12761. }
  12762. },
  12763. },
  12764. [
  12765. {
  12766. name: "Micro",
  12767. height: math.unit(6, "inches")
  12768. },
  12769. {
  12770. name: "Normal",
  12771. height: math.unit(6 + 3 / 12, "feet"),
  12772. default: true
  12773. },
  12774. {
  12775. name: "Big",
  12776. height: math.unit(104, "feet")
  12777. },
  12778. {
  12779. name: "Macro",
  12780. height: math.unit(944, "feet")
  12781. },
  12782. {
  12783. name: "Macro+",
  12784. height: math.unit(9480, "feet")
  12785. },
  12786. {
  12787. name: "Megamacro",
  12788. height: math.unit(78752, "feet")
  12789. },
  12790. {
  12791. name: "Megamacro+",
  12792. height: math.unit(630128, "feet")
  12793. },
  12794. {
  12795. name: "Megamacro++",
  12796. height: math.unit(3150695, "feet")
  12797. },
  12798. ]
  12799. ))
  12800. characterMakers.push(() => makeCharacter(
  12801. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12802. {
  12803. front: {
  12804. height: math.unit(7 + 5 / 12, "feet"),
  12805. weight: math.unit(450, "lb"),
  12806. name: "Front",
  12807. image: {
  12808. source: "./media/characters/mocha-aura/front.svg",
  12809. extra: 1907 / 1817,
  12810. bottom: 0.04
  12811. }
  12812. },
  12813. back: {
  12814. height: math.unit(7 + 5 / 12, "feet"),
  12815. weight: math.unit(450, "lb"),
  12816. name: "Back",
  12817. image: {
  12818. source: "./media/characters/mocha-aura/back.svg",
  12819. extra: 1900 / 1825,
  12820. bottom: 0.045
  12821. }
  12822. },
  12823. },
  12824. [
  12825. {
  12826. name: "Nano",
  12827. height: math.unit(1, "nm")
  12828. },
  12829. {
  12830. name: "Megamicro",
  12831. height: math.unit(1, "mm")
  12832. },
  12833. {
  12834. name: "Micro",
  12835. height: math.unit(3, "inches")
  12836. },
  12837. {
  12838. name: "Normal",
  12839. height: math.unit(7 + 5 / 12, "feet"),
  12840. default: true
  12841. },
  12842. {
  12843. name: "Macro",
  12844. height: math.unit(30, "feet")
  12845. },
  12846. {
  12847. name: "Megamacro",
  12848. height: math.unit(3500, "feet")
  12849. },
  12850. {
  12851. name: "Teramacro",
  12852. height: math.unit(500000, "miles")
  12853. },
  12854. {
  12855. name: "Petamacro",
  12856. height: math.unit(50000000000000000, "parsecs")
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12862. {
  12863. front: {
  12864. height: math.unit(6, "feet"),
  12865. weight: math.unit(150, "lb"),
  12866. name: "Front",
  12867. image: {
  12868. source: "./media/characters/ilisha-devya/front.svg",
  12869. extra: 1,
  12870. bottom: 0.175
  12871. }
  12872. },
  12873. back: {
  12874. height: math.unit(6, "feet"),
  12875. weight: math.unit(150, "lb"),
  12876. name: "Back",
  12877. image: {
  12878. source: "./media/characters/ilisha-devya/back.svg",
  12879. extra: 1,
  12880. bottom: 0.015
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Macro",
  12887. height: math.unit(500, "feet"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Megamacro",
  12892. height: math.unit(10, "miles")
  12893. },
  12894. {
  12895. name: "Gigamacro",
  12896. height: math.unit(100000, "miles")
  12897. },
  12898. {
  12899. name: "Examacro",
  12900. height: math.unit(1e9, "lightyears")
  12901. },
  12902. {
  12903. name: "Omniversal",
  12904. height: math.unit(1e33, "lightyears")
  12905. },
  12906. {
  12907. name: "Beyond Infinite",
  12908. height: math.unit(1e100, "lightyears")
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12914. {
  12915. Side: {
  12916. height: math.unit(6, "feet"),
  12917. weight: math.unit(150, "lb"),
  12918. name: "Side",
  12919. image: {
  12920. source: "./media/characters/mira/side.svg",
  12921. extra: 900 / 799,
  12922. bottom: 0.02
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Human Size",
  12929. height: math.unit(6, "feet")
  12930. },
  12931. {
  12932. name: "Macro",
  12933. height: math.unit(100, "feet"),
  12934. default: true
  12935. },
  12936. {
  12937. name: "Megamacro",
  12938. height: math.unit(10, "miles")
  12939. },
  12940. {
  12941. name: "Gigamacro",
  12942. height: math.unit(25000, "miles")
  12943. },
  12944. {
  12945. name: "Teramacro",
  12946. height: math.unit(300, "AU")
  12947. },
  12948. {
  12949. name: "Full Size",
  12950. height: math.unit(4.5e10, "lightyears")
  12951. },
  12952. ]
  12953. ))
  12954. characterMakers.push(() => makeCharacter(
  12955. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12956. {
  12957. front: {
  12958. height: math.unit(6, "feet"),
  12959. weight: math.unit(150, "lb"),
  12960. name: "Front",
  12961. image: {
  12962. source: "./media/characters/holly/front.svg",
  12963. extra: 639 / 606
  12964. }
  12965. },
  12966. back: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(150, "lb"),
  12969. name: "Back",
  12970. image: {
  12971. source: "./media/characters/holly/back.svg",
  12972. extra: 623 / 598
  12973. }
  12974. },
  12975. frontWorking: {
  12976. height: math.unit(6, "feet"),
  12977. weight: math.unit(150, "lb"),
  12978. name: "Front (Working)",
  12979. image: {
  12980. source: "./media/characters/holly/front-working.svg",
  12981. extra: 607 / 577,
  12982. bottom: 0.048
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(12 + 3 / 12, "feet"),
  12990. default: true
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12996. {
  12997. front: {
  12998. height: math.unit(6, "feet"),
  12999. weight: math.unit(150, "lb"),
  13000. name: "Front",
  13001. image: {
  13002. source: "./media/characters/porter/front.svg",
  13003. extra: 1,
  13004. bottom: 0.01
  13005. }
  13006. },
  13007. frontRobes: {
  13008. height: math.unit(6, "feet"),
  13009. weight: math.unit(150, "lb"),
  13010. name: "Front (Robes)",
  13011. image: {
  13012. source: "./media/characters/porter/front-robes.svg",
  13013. extra: 1.01,
  13014. bottom: 0.01
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Normal",
  13021. height: math.unit(11 + 9 / 12, "feet"),
  13022. default: true
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13028. {
  13029. legendary: {
  13030. height: math.unit(6, "feet"),
  13031. weight: math.unit(150, "lb"),
  13032. name: "Legendary",
  13033. image: {
  13034. source: "./media/characters/lucy/legendary.svg",
  13035. extra: 1355 / 1100,
  13036. bottom: 0.045
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Legendary",
  13043. height: math.unit(86882 * 2, "miles"),
  13044. default: true
  13045. },
  13046. ]
  13047. ))
  13048. characterMakers.push(() => makeCharacter(
  13049. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13050. {
  13051. front: {
  13052. height: math.unit(6, "feet"),
  13053. weight: math.unit(150, "lb"),
  13054. name: "Front",
  13055. image: {
  13056. source: "./media/characters/drusilla/front.svg",
  13057. extra: 678 / 635,
  13058. bottom: 0.03
  13059. }
  13060. },
  13061. back: {
  13062. height: math.unit(6, "feet"),
  13063. weight: math.unit(150, "lb"),
  13064. name: "Back",
  13065. image: {
  13066. source: "./media/characters/drusilla/back.svg",
  13067. extra: 678 / 635,
  13068. bottom: 0.005
  13069. }
  13070. },
  13071. },
  13072. [
  13073. {
  13074. name: "Macro",
  13075. height: math.unit(100, "feet")
  13076. },
  13077. {
  13078. name: "Canon Height",
  13079. height: math.unit(2000, "feet"),
  13080. default: true
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(6, "feet"),
  13089. weight: math.unit(180, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/renard-thatch/front.svg",
  13093. extra: 2411 / 2275,
  13094. bottom: 0.01
  13095. }
  13096. },
  13097. frontPosing: {
  13098. height: math.unit(6, "feet"),
  13099. weight: math.unit(180, "lb"),
  13100. name: "Front (Posing)",
  13101. image: {
  13102. source: "./media/characters/renard-thatch/front-posing.svg",
  13103. extra: 2381 / 2261,
  13104. bottom: 0.01
  13105. }
  13106. },
  13107. back: {
  13108. height: math.unit(6, "feet"),
  13109. weight: math.unit(180, "lb"),
  13110. name: "Back",
  13111. image: {
  13112. source: "./media/characters/renard-thatch/back.svg",
  13113. extra: 2428 / 2288
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Micro",
  13120. height: math.unit(3, "inches")
  13121. },
  13122. {
  13123. name: "Default",
  13124. height: math.unit(6, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(75, "feet")
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13135. {
  13136. front: {
  13137. height: math.unit(1450, "feet"),
  13138. weight: math.unit(1.21e6, "tons"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/sekvra/front.svg",
  13142. extra: 1,
  13143. bottom: 0.03
  13144. }
  13145. },
  13146. frontClothed: {
  13147. height: math.unit(1450, "feet"),
  13148. weight: math.unit(1.21e6, "tons"),
  13149. name: "Front (Clothed)",
  13150. image: {
  13151. source: "./media/characters/sekvra/front-clothed.svg",
  13152. extra: 1,
  13153. bottom: 0.03
  13154. }
  13155. },
  13156. side: {
  13157. height: math.unit(1450, "feet"),
  13158. weight: math.unit(1.21e6, "tons"),
  13159. name: "Side",
  13160. image: {
  13161. source: "./media/characters/sekvra/side.svg",
  13162. extra: 1,
  13163. bottom: 0.025
  13164. }
  13165. },
  13166. back: {
  13167. height: math.unit(1450, "feet"),
  13168. weight: math.unit(1.21e6, "tons"),
  13169. name: "Back",
  13170. image: {
  13171. source: "./media/characters/sekvra/back.svg",
  13172. extra: 1,
  13173. bottom: 0.005
  13174. }
  13175. },
  13176. },
  13177. [
  13178. {
  13179. name: "Macro",
  13180. height: math.unit(1450, "feet"),
  13181. default: true
  13182. },
  13183. {
  13184. name: "Megamacro",
  13185. height: math.unit(15000, "feet")
  13186. },
  13187. ]
  13188. ))
  13189. characterMakers.push(() => makeCharacter(
  13190. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13191. {
  13192. front: {
  13193. height: math.unit(6, "feet"),
  13194. weight: math.unit(150, "lb"),
  13195. name: "Front",
  13196. image: {
  13197. source: "./media/characters/carmine/front.svg",
  13198. extra: 1,
  13199. bottom: 0.035
  13200. }
  13201. },
  13202. frontArmor: {
  13203. height: math.unit(6, "feet"),
  13204. weight: math.unit(150, "lb"),
  13205. name: "Front (Armor)",
  13206. image: {
  13207. source: "./media/characters/carmine/front-armor.svg",
  13208. extra: 1,
  13209. bottom: 0.035
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Large",
  13216. height: math.unit(1, "mile")
  13217. },
  13218. {
  13219. name: "Huge",
  13220. height: math.unit(40, "miles"),
  13221. default: true
  13222. },
  13223. {
  13224. name: "Colossal",
  13225. height: math.unit(2500, "miles")
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13231. {
  13232. front: {
  13233. height: math.unit(6, "feet"),
  13234. weight: math.unit(150, "lb"),
  13235. name: "Front",
  13236. image: {
  13237. source: "./media/characters/elyssia/front.svg",
  13238. extra: 2201 / 2035,
  13239. bottom: 0.05
  13240. }
  13241. },
  13242. frontClothed: {
  13243. height: math.unit(6, "feet"),
  13244. weight: math.unit(150, "lb"),
  13245. name: "Front (Clothed)",
  13246. image: {
  13247. source: "./media/characters/elyssia/front-clothed.svg",
  13248. extra: 2201 / 2035,
  13249. bottom: 0.05
  13250. }
  13251. },
  13252. back: {
  13253. height: math.unit(6, "feet"),
  13254. weight: math.unit(150, "lb"),
  13255. name: "Back",
  13256. image: {
  13257. source: "./media/characters/elyssia/back.svg",
  13258. extra: 2201 / 2035,
  13259. bottom: 0.013
  13260. }
  13261. },
  13262. },
  13263. [
  13264. {
  13265. name: "Smaller",
  13266. height: math.unit(150, "feet")
  13267. },
  13268. {
  13269. name: "Standard",
  13270. height: math.unit(1400, "feet"),
  13271. default: true
  13272. },
  13273. {
  13274. name: "Distracted",
  13275. height: math.unit(15000, "feet")
  13276. },
  13277. ]
  13278. ))
  13279. characterMakers.push(() => makeCharacter(
  13280. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13281. {
  13282. front: {
  13283. height: math.unit(7 + 4 / 12, "feet"),
  13284. weight: math.unit(500, "lb"),
  13285. name: "Front",
  13286. image: {
  13287. source: "./media/characters/geno-maxwell/front.svg",
  13288. extra: 2207 / 2040,
  13289. bottom: 0.015
  13290. }
  13291. },
  13292. },
  13293. [
  13294. {
  13295. name: "Micro",
  13296. height: math.unit(3, "inches")
  13297. },
  13298. {
  13299. name: "Normal",
  13300. height: math.unit(7 + 4 / 12, "feet"),
  13301. default: true
  13302. },
  13303. {
  13304. name: "Macro",
  13305. height: math.unit(220, "feet")
  13306. },
  13307. {
  13308. name: "Megamacro",
  13309. height: math.unit(11, "miles")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(7 + 4 / 12, "feet"),
  13318. weight: math.unit(500, "lb"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/regena-maxwell/front.svg",
  13322. extra: 3115 / 2770,
  13323. bottom: 0.02
  13324. }
  13325. },
  13326. },
  13327. [
  13328. {
  13329. name: "Normal",
  13330. height: math.unit(7 + 4 / 12, "feet"),
  13331. default: true
  13332. },
  13333. {
  13334. name: "Macro",
  13335. height: math.unit(220, "feet")
  13336. },
  13337. {
  13338. name: "Megamacro",
  13339. height: math.unit(11, "miles")
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13345. {
  13346. front: {
  13347. height: math.unit(6, "feet"),
  13348. weight: math.unit(150, "lb"),
  13349. name: "Front",
  13350. image: {
  13351. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13352. extra: 860 / 690,
  13353. bottom: 0.03
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Normal",
  13360. height: math.unit(1.7, "meters"),
  13361. default: true
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13367. {
  13368. front: {
  13369. height: math.unit(6, "feet"),
  13370. weight: math.unit(150, "lb"),
  13371. name: "Front",
  13372. image: {
  13373. source: "./media/characters/quilly/front.svg",
  13374. extra: 890 / 776
  13375. }
  13376. },
  13377. },
  13378. [
  13379. {
  13380. name: "Gigamacro",
  13381. height: math.unit(404090, "miles"),
  13382. default: true
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13388. {
  13389. front: {
  13390. height: math.unit(7 + 8 / 12, "feet"),
  13391. weight: math.unit(350, "lb"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/tempest/front.svg",
  13395. extra: 1175 / 1086,
  13396. bottom: 0.02
  13397. }
  13398. },
  13399. },
  13400. [
  13401. {
  13402. name: "Normal",
  13403. height: math.unit(7 + 8 / 12, "feet"),
  13404. default: true
  13405. },
  13406. ]
  13407. ))
  13408. characterMakers.push(() => makeCharacter(
  13409. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13410. {
  13411. side: {
  13412. height: math.unit(4 + 5 / 12, "feet"),
  13413. weight: math.unit(80, "lb"),
  13414. name: "Side",
  13415. image: {
  13416. source: "./media/characters/rodger/side.svg",
  13417. extra: 1235 / 1118
  13418. }
  13419. },
  13420. },
  13421. [
  13422. {
  13423. name: "Micro",
  13424. height: math.unit(1, "inch")
  13425. },
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(4 + 5 / 12, "feet"),
  13429. default: true
  13430. },
  13431. {
  13432. name: "Macro",
  13433. height: math.unit(120, "feet")
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13439. {
  13440. front: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "lb"),
  13443. name: "Front",
  13444. image: {
  13445. source: "./media/characters/danyel/front.svg",
  13446. extra: 1185 / 1123,
  13447. bottom: 0.05
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Shrunken",
  13454. height: math.unit(0.5, "mm")
  13455. },
  13456. {
  13457. name: "Micro",
  13458. height: math.unit(1, "mm"),
  13459. default: true
  13460. },
  13461. {
  13462. name: "Upsized",
  13463. height: math.unit(5 + 5 / 12, "feet")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(5 + 6 / 12, "feet"),
  13472. weight: math.unit(200, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/vivian-bijoux/front.svg",
  13476. extra: 1,
  13477. bottom: 0.072
  13478. }
  13479. },
  13480. },
  13481. [
  13482. {
  13483. name: "Normal",
  13484. height: math.unit(5 + 6 / 12, "feet"),
  13485. default: true
  13486. },
  13487. {
  13488. name: "Bad Dream",
  13489. height: math.unit(500, "feet")
  13490. },
  13491. {
  13492. name: "Nightmare",
  13493. height: math.unit(500, "miles")
  13494. },
  13495. ]
  13496. ))
  13497. characterMakers.push(() => makeCharacter(
  13498. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13499. {
  13500. front: {
  13501. height: math.unit(6 + 1 / 12, "feet"),
  13502. weight: math.unit(260, "lb"),
  13503. name: "Front",
  13504. image: {
  13505. source: "./media/characters/zeta/front.svg",
  13506. extra: 1968 / 1889,
  13507. bottom: 0.06
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(6 + 1 / 12, "feet"),
  13512. weight: math.unit(260, "lb"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/zeta/back.svg",
  13516. extra: 1944 / 1858,
  13517. bottom: 0.03
  13518. }
  13519. },
  13520. hand: {
  13521. height: math.unit(1.112, "feet"),
  13522. name: "Hand",
  13523. image: {
  13524. source: "./media/characters/zeta/hand.svg"
  13525. }
  13526. },
  13527. foot: {
  13528. height: math.unit(1.48, "feet"),
  13529. name: "Foot",
  13530. image: {
  13531. source: "./media/characters/zeta/foot.svg"
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Micro",
  13538. height: math.unit(6, "inches")
  13539. },
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(6 + 1 / 12, "feet"),
  13543. default: true
  13544. },
  13545. {
  13546. name: "Macro",
  13547. height: math.unit(20, "feet")
  13548. },
  13549. ]
  13550. ))
  13551. characterMakers.push(() => makeCharacter(
  13552. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13553. {
  13554. front: {
  13555. height: math.unit(6, "feet"),
  13556. weight: math.unit(150, "lb"),
  13557. name: "Front",
  13558. image: {
  13559. source: "./media/characters/jamie-larsen/front.svg",
  13560. extra: 962 / 933,
  13561. bottom: 0.02
  13562. }
  13563. },
  13564. back: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(150, "lb"),
  13567. name: "Back",
  13568. image: {
  13569. source: "./media/characters/jamie-larsen/back.svg",
  13570. extra: 997 / 946
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Macro",
  13577. height: math.unit(28 + 7 / 12, "feet"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Macro+",
  13582. height: math.unit(180, "feet")
  13583. },
  13584. {
  13585. name: "Megamacro",
  13586. height: math.unit(10, "miles")
  13587. },
  13588. {
  13589. name: "Gigamacro",
  13590. height: math.unit(200000, "miles")
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(6, "feet"),
  13599. weight: math.unit(120, "lb"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/vance/front.svg",
  13603. extra: 1980 / 1890,
  13604. bottom: 0.09
  13605. }
  13606. },
  13607. back: {
  13608. height: math.unit(6, "feet"),
  13609. weight: math.unit(120, "lb"),
  13610. name: "Back",
  13611. image: {
  13612. source: "./media/characters/vance/back.svg",
  13613. extra: 2081 / 1994,
  13614. bottom: 0.014
  13615. }
  13616. },
  13617. hand: {
  13618. height: math.unit(0.88, "feet"),
  13619. name: "Hand",
  13620. image: {
  13621. source: "./media/characters/vance/hand.svg"
  13622. }
  13623. },
  13624. foot: {
  13625. height: math.unit(0.64, "feet"),
  13626. name: "Foot",
  13627. image: {
  13628. source: "./media/characters/vance/foot.svg"
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Small",
  13635. height: math.unit(90, "feet"),
  13636. default: true
  13637. },
  13638. {
  13639. name: "Macro",
  13640. height: math.unit(100, "meters")
  13641. },
  13642. {
  13643. name: "Megamacro",
  13644. height: math.unit(15, "miles")
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(180, "lb"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/xochitl/front.svg",
  13657. extra: 2297 / 2261,
  13658. bottom: 0.065
  13659. }
  13660. },
  13661. back: {
  13662. height: math.unit(6, "feet"),
  13663. weight: math.unit(180, "lb"),
  13664. name: "Back",
  13665. image: {
  13666. source: "./media/characters/xochitl/back.svg",
  13667. extra: 2386 / 2354,
  13668. bottom: 0.01
  13669. }
  13670. },
  13671. foot: {
  13672. height: math.unit(6 / 5 * 1.15, "feet"),
  13673. weight: math.unit(150, "lb"),
  13674. name: "Foot",
  13675. image: {
  13676. source: "./media/characters/xochitl/foot.svg"
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Macro",
  13683. height: math.unit(80, "feet")
  13684. },
  13685. {
  13686. name: "Macro+",
  13687. height: math.unit(400, "feet"),
  13688. default: true
  13689. },
  13690. {
  13691. name: "Gigamacro",
  13692. height: math.unit(80000, "miles")
  13693. },
  13694. {
  13695. name: "Gigamacro+",
  13696. height: math.unit(400000, "miles")
  13697. },
  13698. {
  13699. name: "Teramacro",
  13700. height: math.unit(300, "AU")
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13706. {
  13707. front: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/vincent/front.svg",
  13713. extra: 1130 / 1080,
  13714. bottom: 0.055
  13715. }
  13716. },
  13717. beak: {
  13718. height: math.unit(6 * 0.1, "feet"),
  13719. name: "Beak",
  13720. image: {
  13721. source: "./media/characters/vincent/beak.svg"
  13722. }
  13723. },
  13724. hand: {
  13725. height: math.unit(6 * 0.85, "feet"),
  13726. weight: math.unit(150, "lb"),
  13727. name: "Hand",
  13728. image: {
  13729. source: "./media/characters/vincent/hand.svg"
  13730. }
  13731. },
  13732. foot: {
  13733. height: math.unit(6 * 0.19, "feet"),
  13734. weight: math.unit(150, "lb"),
  13735. name: "Foot",
  13736. image: {
  13737. source: "./media/characters/vincent/foot.svg"
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Base",
  13744. height: math.unit(6 + 5 / 12, "feet"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Macro",
  13749. height: math.unit(300, "feet")
  13750. },
  13751. {
  13752. name: "Megamacro",
  13753. height: math.unit(2, "miles")
  13754. },
  13755. {
  13756. name: "Gigamacro",
  13757. height: math.unit(1000, "miles")
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13763. {
  13764. front: {
  13765. height: math.unit(2, "meters"),
  13766. weight: math.unit(500, "kg"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/coatl/front.svg",
  13770. extra: 3948 / 3500,
  13771. bottom: 0.082
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Normal",
  13778. height: math.unit(4, "meters")
  13779. },
  13780. {
  13781. name: "Macro",
  13782. height: math.unit(100, "meters"),
  13783. default: true
  13784. },
  13785. {
  13786. name: "Macro+",
  13787. height: math.unit(300, "meters")
  13788. },
  13789. {
  13790. name: "Megamacro",
  13791. height: math.unit(3, "gigameters")
  13792. },
  13793. {
  13794. name: "Megamacro+",
  13795. height: math.unit(300, "terameters")
  13796. },
  13797. {
  13798. name: "Megamacro++",
  13799. height: math.unit(3, "lightyears")
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(6, "feet"),
  13808. weight: math.unit(50, "kg"),
  13809. name: "front",
  13810. image: {
  13811. source: "./media/characters/shiroryu/front.svg",
  13812. extra: 1990 / 1935
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Mortal Mingling",
  13819. height: math.unit(3, "meters")
  13820. },
  13821. {
  13822. name: "Kaiju-ish",
  13823. height: math.unit(250, "meters")
  13824. },
  13825. {
  13826. name: "Somewhat Godly",
  13827. height: math.unit(400, "km"),
  13828. default: true
  13829. },
  13830. {
  13831. name: "Planetary",
  13832. height: math.unit(300, "megameters")
  13833. },
  13834. {
  13835. name: "Galaxy-dwarfing",
  13836. height: math.unit(450, "kiloparsecs")
  13837. },
  13838. {
  13839. name: "Universe Eater",
  13840. height: math.unit(150, "gigaparsecs")
  13841. },
  13842. {
  13843. name: "Almost Immeasurable",
  13844. height: math.unit(1.3e266, "yottaparsecs")
  13845. },
  13846. ]
  13847. ))
  13848. characterMakers.push(() => makeCharacter(
  13849. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13850. {
  13851. front: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Front",
  13855. image: {
  13856. source: "./media/characters/umeko/front.svg",
  13857. extra: 1,
  13858. bottom: 0.019
  13859. }
  13860. },
  13861. frontArmored: {
  13862. height: math.unit(6, "feet"),
  13863. weight: math.unit(150, "lb"),
  13864. name: "Front (Armored)",
  13865. image: {
  13866. source: "./media/characters/umeko/front-armored.svg",
  13867. extra: 1,
  13868. bottom: 0.021
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Macro",
  13875. height: math.unit(220, "feet"),
  13876. default: true
  13877. },
  13878. {
  13879. name: "Guardian Dragon",
  13880. height: math.unit(50, "miles")
  13881. },
  13882. {
  13883. name: "Cosmic",
  13884. height: math.unit(800000, "miles")
  13885. },
  13886. ]
  13887. ))
  13888. characterMakers.push(() => makeCharacter(
  13889. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13890. {
  13891. front: {
  13892. height: math.unit(6, "feet"),
  13893. weight: math.unit(150, "lb"),
  13894. name: "Front",
  13895. image: {
  13896. source: "./media/characters/cassidy/front.svg",
  13897. extra: 1,
  13898. bottom: 0.043
  13899. }
  13900. },
  13901. },
  13902. [
  13903. {
  13904. name: "Canon Height",
  13905. height: math.unit(120, "feet"),
  13906. default: true
  13907. },
  13908. {
  13909. name: "Macro+",
  13910. height: math.unit(400, "feet")
  13911. },
  13912. {
  13913. name: "Macro++",
  13914. height: math.unit(4000, "feet")
  13915. },
  13916. {
  13917. name: "Megamacro",
  13918. height: math.unit(3, "miles")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(150, "lb"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/isaac/front.svg",
  13931. extra: 896 / 815,
  13932. bottom: 0.11
  13933. }
  13934. },
  13935. },
  13936. [
  13937. {
  13938. name: "Human Size",
  13939. height: math.unit(8, "feet"),
  13940. default: true
  13941. },
  13942. {
  13943. name: "Macro",
  13944. height: math.unit(400, "feet")
  13945. },
  13946. {
  13947. name: "Megamacro",
  13948. height: math.unit(50, "miles")
  13949. },
  13950. {
  13951. name: "Canon Height",
  13952. height: math.unit(200, "AU")
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(6, "feet"),
  13961. weight: math.unit(72, "kg"),
  13962. name: "Front",
  13963. image: {
  13964. source: "./media/characters/sleekit/front.svg",
  13965. extra: 4693 / 4487,
  13966. bottom: 0.012
  13967. }
  13968. },
  13969. },
  13970. [
  13971. {
  13972. name: "Minimum Height",
  13973. height: math.unit(10, "meters")
  13974. },
  13975. {
  13976. name: "Smaller",
  13977. height: math.unit(25, "meters")
  13978. },
  13979. {
  13980. name: "Larger",
  13981. height: math.unit(38, "meters"),
  13982. default: true
  13983. },
  13984. {
  13985. name: "Maximum height",
  13986. height: math.unit(100, "meters")
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(6, "feet"),
  13995. weight: math.unit(150, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/nillia/front.svg",
  13999. extra: 2195 / 2037,
  14000. bottom: 0.005
  14001. }
  14002. },
  14003. back: {
  14004. height: math.unit(6, "feet"),
  14005. weight: math.unit(150, "lb"),
  14006. name: "Back",
  14007. image: {
  14008. source: "./media/characters/nillia/back.svg",
  14009. extra: 2195 / 2037,
  14010. bottom: 0.005
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Canon Height",
  14017. height: math.unit(489, "feet"),
  14018. default: true
  14019. }
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14024. {
  14025. front: {
  14026. height: math.unit(6, "feet"),
  14027. weight: math.unit(150, "lb"),
  14028. name: "Front",
  14029. image: {
  14030. source: "./media/characters/mesmyriza/front.svg",
  14031. extra: 2067 / 1784,
  14032. bottom: 0.035
  14033. }
  14034. },
  14035. foot: {
  14036. height: math.unit(6 / (250 / 35), "feet"),
  14037. name: "Foot",
  14038. image: {
  14039. source: "./media/characters/mesmyriza/foot.svg"
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Macro",
  14046. height: math.unit(457, "meters"),
  14047. default: true
  14048. },
  14049. {
  14050. name: "Megamacro",
  14051. height: math.unit(8, "megameters")
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(6, "feet"),
  14060. weight: math.unit(250, "lb"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/saudade/front.svg",
  14064. extra: 1172 / 1139,
  14065. bottom: 0.035
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Micro",
  14072. height: math.unit(3, "inches")
  14073. },
  14074. {
  14075. name: "Normal",
  14076. height: math.unit(6, "feet"),
  14077. default: true
  14078. },
  14079. {
  14080. name: "Macro",
  14081. height: math.unit(50, "feet")
  14082. },
  14083. {
  14084. name: "Megamacro",
  14085. height: math.unit(2800, "feet")
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14091. {
  14092. front: {
  14093. height: math.unit(5 + 4 / 12, "feet"),
  14094. weight: math.unit(100, "lb"),
  14095. name: "Front",
  14096. image: {
  14097. source: "./media/characters/keireer/front.svg",
  14098. extra: 716 / 666,
  14099. bottom: 0.05
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Normal",
  14106. height: math.unit(5 + 4 / 12, "feet"),
  14107. default: true
  14108. },
  14109. ]
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14113. {
  14114. front: {
  14115. height: math.unit(6, "feet"),
  14116. weight: math.unit(90, "kg"),
  14117. name: "Front",
  14118. image: {
  14119. source: "./media/characters/mirja/front.svg",
  14120. extra: 1789 / 1683,
  14121. bottom: 0.05
  14122. }
  14123. },
  14124. frontDressed: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(90, "lb"),
  14127. name: "Front (Dressed)",
  14128. image: {
  14129. source: "./media/characters/mirja/front-dressed.svg",
  14130. extra: 1789 / 1683,
  14131. bottom: 0.05
  14132. }
  14133. },
  14134. back: {
  14135. height: math.unit(6, "feet"),
  14136. weight: math.unit(90, "lb"),
  14137. name: "Back",
  14138. image: {
  14139. source: "./media/characters/mirja/back.svg",
  14140. extra: 953 / 917,
  14141. bottom: 0.017
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "\"Incognito\"",
  14148. height: math.unit(3, "meters")
  14149. },
  14150. {
  14151. name: "Strolling Size",
  14152. height: math.unit(15, "km")
  14153. },
  14154. {
  14155. name: "Larger Strolling Size",
  14156. height: math.unit(400, "km")
  14157. },
  14158. {
  14159. name: "Preferred Size",
  14160. height: math.unit(5000, "km")
  14161. },
  14162. {
  14163. name: "True Size",
  14164. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14165. default: true
  14166. },
  14167. ]
  14168. ))
  14169. characterMakers.push(() => makeCharacter(
  14170. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14171. {
  14172. front: {
  14173. height: math.unit(15, "feet"),
  14174. weight: math.unit(880, "kg"),
  14175. name: "Front",
  14176. image: {
  14177. source: "./media/characters/nightraver/front.svg",
  14178. extra: 2444 / 2160,
  14179. bottom: 0.027
  14180. }
  14181. },
  14182. back: {
  14183. height: math.unit(15, "feet"),
  14184. weight: math.unit(880, "kg"),
  14185. name: "Back",
  14186. image: {
  14187. source: "./media/characters/nightraver/back.svg",
  14188. extra: 2309 / 2180,
  14189. bottom: 0.005
  14190. }
  14191. },
  14192. sole: {
  14193. height: math.unit(2.878, "feet"),
  14194. name: "Sole",
  14195. image: {
  14196. source: "./media/characters/nightraver/sole.svg"
  14197. }
  14198. },
  14199. foot: {
  14200. height: math.unit(2.285, "feet"),
  14201. name: "Foot",
  14202. image: {
  14203. source: "./media/characters/nightraver/foot.svg"
  14204. }
  14205. },
  14206. maw: {
  14207. height: math.unit(2.67, "feet"),
  14208. name: "Maw",
  14209. image: {
  14210. source: "./media/characters/nightraver/maw.svg"
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Micro",
  14217. height: math.unit(1, "cm")
  14218. },
  14219. {
  14220. name: "Normal",
  14221. height: math.unit(15, "feet"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Macro",
  14226. height: math.unit(300, "feet")
  14227. },
  14228. {
  14229. name: "Megamacro",
  14230. height: math.unit(300, "miles")
  14231. },
  14232. {
  14233. name: "Gigamacro",
  14234. height: math.unit(10000, "miles")
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14240. {
  14241. side: {
  14242. height: math.unit(2, "inches"),
  14243. weight: math.unit(5, "grams"),
  14244. name: "Side",
  14245. image: {
  14246. source: "./media/characters/arc/side.svg"
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Micro",
  14253. height: math.unit(2, "inches"),
  14254. default: true
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(1.1938, "meters"),
  14263. weight: math.unit(54, "kg"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/nebula-shahar/front.svg",
  14267. extra: 1642 / 1436,
  14268. bottom: 0.06
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Megamicro",
  14275. height: math.unit(0.3, "mm")
  14276. },
  14277. {
  14278. name: "Micro",
  14279. height: math.unit(3, "cm")
  14280. },
  14281. {
  14282. name: "Normal",
  14283. height: math.unit(138, "cm"),
  14284. default: true
  14285. },
  14286. {
  14287. name: "Macro",
  14288. height: math.unit(30, "m")
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14294. {
  14295. front: {
  14296. height: math.unit(5.24, "feet"),
  14297. weight: math.unit(150, "lb"),
  14298. name: "Front",
  14299. image: {
  14300. source: "./media/characters/shayla/front.svg",
  14301. extra: 1512 / 1414,
  14302. bottom: 0.01
  14303. }
  14304. },
  14305. back: {
  14306. height: math.unit(5.24, "feet"),
  14307. weight: math.unit(150, "lb"),
  14308. name: "Back",
  14309. image: {
  14310. source: "./media/characters/shayla/back.svg",
  14311. extra: 1512 / 1414
  14312. }
  14313. },
  14314. hand: {
  14315. height: math.unit(0.7781496062992126, "feet"),
  14316. name: "Hand",
  14317. image: {
  14318. source: "./media/characters/shayla/hand.svg"
  14319. }
  14320. },
  14321. foot: {
  14322. height: math.unit(1.4206036745406823, "feet"),
  14323. name: "Foot",
  14324. image: {
  14325. source: "./media/characters/shayla/foot.svg"
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Micro",
  14332. height: math.unit(0.32, "feet")
  14333. },
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(5.24, "feet"),
  14337. default: true
  14338. },
  14339. {
  14340. name: "Macro",
  14341. height: math.unit(492.12, "feet")
  14342. },
  14343. {
  14344. name: "Megamacro",
  14345. height: math.unit(186.41, "miles")
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14351. {
  14352. front: {
  14353. height: math.unit(2.2, "m"),
  14354. weight: math.unit(120, "kg"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/pia-jr/front.svg",
  14358. extra: 1000 / 970,
  14359. bottom: 0.035
  14360. }
  14361. },
  14362. hand: {
  14363. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14364. name: "Hand",
  14365. image: {
  14366. source: "./media/characters/pia-jr/hand.svg"
  14367. }
  14368. },
  14369. paw: {
  14370. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14371. name: "Paw",
  14372. image: {
  14373. source: "./media/characters/pia-jr/paw.svg"
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Micro",
  14380. height: math.unit(1.2, "cm")
  14381. },
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(2.2, "m"),
  14385. default: true
  14386. },
  14387. {
  14388. name: "Macro",
  14389. height: math.unit(180, "m")
  14390. },
  14391. {
  14392. name: "Megamacro",
  14393. height: math.unit(420, "km")
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(2, "m"),
  14402. weight: math.unit(115, "kg"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/pia-sr/front.svg",
  14406. extra: 760 / 730,
  14407. bottom: 0.015
  14408. }
  14409. },
  14410. back: {
  14411. height: math.unit(2, "m"),
  14412. weight: math.unit(115, "kg"),
  14413. name: "Back",
  14414. image: {
  14415. source: "./media/characters/pia-sr/back.svg",
  14416. extra: 760 / 730,
  14417. bottom: 0.01
  14418. }
  14419. },
  14420. hand: {
  14421. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14422. name: "Hand",
  14423. image: {
  14424. source: "./media/characters/pia-sr/hand.svg"
  14425. }
  14426. },
  14427. foot: {
  14428. height: math.unit(1.83, "feet"),
  14429. name: "Foot",
  14430. image: {
  14431. source: "./media/characters/pia-sr/foot.svg"
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Micro",
  14438. height: math.unit(88, "mm")
  14439. },
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(2, "m"),
  14443. default: true
  14444. },
  14445. {
  14446. name: "Macro",
  14447. height: math.unit(200, "m")
  14448. },
  14449. {
  14450. name: "Megamacro",
  14451. height: math.unit(420, "km")
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(8 + 2 / 12, "feet"),
  14460. weight: math.unit(300, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/kibibyte/front.svg",
  14464. extra: 2221 / 2098,
  14465. bottom: 0.04
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(8 + 2 / 12, "feet"),
  14473. default: true
  14474. },
  14475. {
  14476. name: "Socialable Macro",
  14477. height: math.unit(50, "feet")
  14478. },
  14479. {
  14480. name: "Macro",
  14481. height: math.unit(300, "feet")
  14482. },
  14483. {
  14484. name: "Megamacro",
  14485. height: math.unit(500, "miles")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(150, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/felix/front.svg",
  14498. extra: 762 / 722,
  14499. bottom: 0.02
  14500. }
  14501. },
  14502. frontClothed: {
  14503. height: math.unit(6, "feet"),
  14504. weight: math.unit(150, "lb"),
  14505. name: "Front (Clothed)",
  14506. image: {
  14507. source: "./media/characters/felix/front-clothed.svg",
  14508. extra: 762 / 722,
  14509. bottom: 0.02
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(6 + 8 / 12, "feet"),
  14517. default: true
  14518. },
  14519. {
  14520. name: "Macro",
  14521. height: math.unit(2600, "feet")
  14522. },
  14523. {
  14524. name: "Megamacro",
  14525. height: math.unit(450, "miles")
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(6 + 1 / 12, "feet"),
  14534. weight: math.unit(250, "lb"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/tobo/front.svg",
  14538. extra: 608 / 586,
  14539. bottom: 0.023
  14540. }
  14541. },
  14542. back: {
  14543. height: math.unit(6 + 1 / 12, "feet"),
  14544. weight: math.unit(250, "lb"),
  14545. name: "Back",
  14546. image: {
  14547. source: "./media/characters/tobo/back.svg",
  14548. extra: 608 / 586
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Nano",
  14555. height: math.unit(2, "nm")
  14556. },
  14557. {
  14558. name: "Megamicro",
  14559. height: math.unit(0.1, "mm")
  14560. },
  14561. {
  14562. name: "Micro",
  14563. height: math.unit(1, "inch"),
  14564. default: true
  14565. },
  14566. {
  14567. name: "Human-sized",
  14568. height: math.unit(6 + 1 / 12, "feet")
  14569. },
  14570. {
  14571. name: "Macro",
  14572. height: math.unit(250, "feet")
  14573. },
  14574. {
  14575. name: "Megamacro",
  14576. height: math.unit(75, "miles")
  14577. },
  14578. {
  14579. name: "Texas-sized",
  14580. height: math.unit(750, "miles")
  14581. },
  14582. {
  14583. name: "Teramacro",
  14584. height: math.unit(50000, "miles")
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(269, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/danny-kapowsky/front.svg",
  14597. extra: 766 / 736,
  14598. bottom: 0.044
  14599. }
  14600. },
  14601. back: {
  14602. height: math.unit(6, "feet"),
  14603. weight: math.unit(269, "lb"),
  14604. name: "Back",
  14605. image: {
  14606. source: "./media/characters/danny-kapowsky/back.svg",
  14607. extra: 797 / 760,
  14608. bottom: 0.025
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Macro",
  14615. height: math.unit(150, "feet"),
  14616. default: true
  14617. },
  14618. {
  14619. name: "Macro+",
  14620. height: math.unit(200, "feet")
  14621. },
  14622. {
  14623. name: "Macro++",
  14624. height: math.unit(300, "feet")
  14625. },
  14626. {
  14627. name: "Macro+++",
  14628. height: math.unit(400, "feet")
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14634. {
  14635. side: {
  14636. height: math.unit(6, "feet"),
  14637. weight: math.unit(170, "lb"),
  14638. name: "Side",
  14639. image: {
  14640. source: "./media/characters/finn/side.svg",
  14641. extra: 1953 / 1807,
  14642. bottom: 0.057
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Megamacro",
  14649. height: math.unit(14445, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(5 + 6 / 12, "feet"),
  14659. weight: math.unit(125, "lb"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/roy/front.svg",
  14663. extra: 1,
  14664. bottom: 0.11
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Micro",
  14671. height: math.unit(3, "inches"),
  14672. default: true
  14673. },
  14674. {
  14675. name: "Normal",
  14676. height: math.unit(5 + 6 / 12, "feet")
  14677. },
  14678. {
  14679. name: "Lesser Macro",
  14680. height: math.unit(60, "feet")
  14681. },
  14682. {
  14683. name: "Greater Macro",
  14684. height: math.unit(120, "feet")
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14690. {
  14691. front: {
  14692. height: math.unit(6, "feet"),
  14693. weight: math.unit(100, "lb"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/aevsivs/front.svg",
  14697. extra: 1,
  14698. bottom: 0.03
  14699. }
  14700. },
  14701. back: {
  14702. height: math.unit(6, "feet"),
  14703. weight: math.unit(100, "lb"),
  14704. name: "Back",
  14705. image: {
  14706. source: "./media/characters/aevsivs/back.svg"
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Micro",
  14713. height: math.unit(2, "inches"),
  14714. default: true
  14715. },
  14716. {
  14717. name: "Normal",
  14718. height: math.unit(5, "feet")
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(5 + 7 / 12, "feet"),
  14727. weight: math.unit(159, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/hildegard/front.svg",
  14731. extra: 289 / 269,
  14732. bottom: 7.63 / 297.8
  14733. }
  14734. },
  14735. back: {
  14736. height: math.unit(5 + 7 / 12, "feet"),
  14737. weight: math.unit(159, "lb"),
  14738. name: "Back",
  14739. image: {
  14740. source: "./media/characters/hildegard/back.svg",
  14741. extra: 280 / 260,
  14742. bottom: 2.3 / 282
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(5 + 7 / 12, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14756. {
  14757. bernard: {
  14758. height: math.unit(2 + 7 / 12, "feet"),
  14759. weight: math.unit(66, "lb"),
  14760. name: "Bernard",
  14761. rename: true,
  14762. image: {
  14763. source: "./media/characters/bernard-wilder/bernard.svg",
  14764. extra: 192 / 128,
  14765. bottom: 0.05
  14766. }
  14767. },
  14768. wilder: {
  14769. height: math.unit(5 + 8 / 12, "feet"),
  14770. weight: math.unit(143, "lb"),
  14771. name: "Wilder",
  14772. rename: true,
  14773. image: {
  14774. source: "./media/characters/bernard-wilder/wilder.svg",
  14775. extra: 361 / 312,
  14776. bottom: 0.02
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(2 + 7 / 12, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14790. {
  14791. anthro: {
  14792. height: math.unit(6 + 1 / 12, "feet"),
  14793. weight: math.unit(155, "lb"),
  14794. name: "Anthro",
  14795. image: {
  14796. source: "./media/characters/hearth/anthro.svg",
  14797. extra: 260 / 250,
  14798. bottom: 0.02
  14799. }
  14800. },
  14801. feral: {
  14802. height: math.unit(3.78, "feet"),
  14803. weight: math.unit(35, "kg"),
  14804. name: "Feral",
  14805. image: {
  14806. source: "./media/characters/hearth/feral.svg",
  14807. extra: 153 / 135,
  14808. bottom: 0.03
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(6 + 1 / 12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(6, "feet"),
  14825. weight: math.unit(182, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/ingrid/front.svg",
  14829. extra: 294 / 268,
  14830. bottom: 0.027
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(6, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14844. {
  14845. eevee: {
  14846. height: math.unit(2 + 10 / 12, "feet"),
  14847. weight: math.unit(86, "lb"),
  14848. name: "Malgam",
  14849. image: {
  14850. source: "./media/characters/malgam/eevee.svg",
  14851. extra: 218 / 180,
  14852. bottom: 0.2
  14853. }
  14854. },
  14855. sylveon: {
  14856. height: math.unit(4, "feet"),
  14857. weight: math.unit(101, "lb"),
  14858. name: "Future Malgam",
  14859. rename: true,
  14860. image: {
  14861. source: "./media/characters/malgam/sylveon.svg",
  14862. extra: 371 / 325,
  14863. bottom: 0.015
  14864. }
  14865. },
  14866. gigantamax: {
  14867. height: math.unit(50, "feet"),
  14868. name: "Gigantamax Malgam",
  14869. rename: true,
  14870. image: {
  14871. source: "./media/characters/malgam/gigantamax.svg"
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Normal",
  14878. height: math.unit(2 + 10 / 12, "feet"),
  14879. default: true
  14880. },
  14881. ]
  14882. ))
  14883. characterMakers.push(() => makeCharacter(
  14884. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14885. {
  14886. front: {
  14887. height: math.unit(5 + 11 / 12, "feet"),
  14888. weight: math.unit(188, "lb"),
  14889. name: "Front",
  14890. image: {
  14891. source: "./media/characters/fleur/front.svg",
  14892. extra: 309 / 283,
  14893. bottom: 0.007
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Normal",
  14900. height: math.unit(5 + 11 / 12, "feet"),
  14901. default: true
  14902. },
  14903. ]
  14904. ))
  14905. characterMakers.push(() => makeCharacter(
  14906. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14907. {
  14908. front: {
  14909. height: math.unit(5 + 4 / 12, "feet"),
  14910. weight: math.unit(122, "lb"),
  14911. name: "Front",
  14912. image: {
  14913. source: "./media/characters/jude/front.svg",
  14914. extra: 288 / 273,
  14915. bottom: 0.03
  14916. }
  14917. },
  14918. },
  14919. [
  14920. {
  14921. name: "Normal",
  14922. height: math.unit(5 + 4 / 12, "feet"),
  14923. default: true
  14924. },
  14925. ]
  14926. ))
  14927. characterMakers.push(() => makeCharacter(
  14928. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14929. {
  14930. front: {
  14931. height: math.unit(5 + 11 / 12, "feet"),
  14932. weight: math.unit(190, "lb"),
  14933. name: "Front",
  14934. image: {
  14935. source: "./media/characters/seara/front.svg",
  14936. extra: 1,
  14937. bottom: 0.05
  14938. }
  14939. },
  14940. },
  14941. [
  14942. {
  14943. name: "Normal",
  14944. height: math.unit(5 + 11 / 12, "feet"),
  14945. default: true
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14951. {
  14952. front: {
  14953. height: math.unit(16 + 5 / 12, "feet"),
  14954. weight: math.unit(524, "lb"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/caspian/front.svg",
  14958. extra: 1,
  14959. bottom: 0.04
  14960. }
  14961. },
  14962. },
  14963. [
  14964. {
  14965. name: "Normal",
  14966. height: math.unit(16 + 5 / 12, "feet"),
  14967. default: true
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14973. {
  14974. front: {
  14975. height: math.unit(5 + 7 / 12, "feet"),
  14976. weight: math.unit(170, "lb"),
  14977. name: "Front",
  14978. image: {
  14979. source: "./media/characters/mika/front.svg",
  14980. extra: 1,
  14981. bottom: 0.016
  14982. }
  14983. },
  14984. },
  14985. [
  14986. {
  14987. name: "Normal",
  14988. height: math.unit(5 + 7 / 12, "feet"),
  14989. default: true
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14995. {
  14996. front: {
  14997. height: math.unit(6 + 2 / 12, "feet"),
  14998. weight: math.unit(268, "lb"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/sol/front.svg",
  15002. extra: 247 / 231,
  15003. bottom: 0.05
  15004. }
  15005. },
  15006. },
  15007. [
  15008. {
  15009. name: "Normal",
  15010. height: math.unit(6 + 2 / 12, "feet"),
  15011. default: true
  15012. },
  15013. ]
  15014. ))
  15015. characterMakers.push(() => makeCharacter(
  15016. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15017. {
  15018. buizel: {
  15019. height: math.unit(2 + 5 / 12, "feet"),
  15020. weight: math.unit(87, "lb"),
  15021. name: "Buizel",
  15022. image: {
  15023. source: "./media/characters/umiko/buizel.svg",
  15024. extra: 172 / 157,
  15025. bottom: 0.01
  15026. }
  15027. },
  15028. floatzel: {
  15029. height: math.unit(5 + 9 / 12, "feet"),
  15030. weight: math.unit(250, "lb"),
  15031. name: "Floatzel",
  15032. image: {
  15033. source: "./media/characters/umiko/floatzel.svg",
  15034. extra: 262 / 248
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(2 + 5 / 12, "feet"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15048. {
  15049. front: {
  15050. height: math.unit(6 + 2 / 12, "feet"),
  15051. weight: math.unit(146, "lb"),
  15052. name: "Front",
  15053. image: {
  15054. source: "./media/characters/iliac/front.svg",
  15055. extra: 389 / 365,
  15056. bottom: 0.035
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(6 + 2 / 12, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(6, "feet"),
  15073. weight: math.unit(170, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/topaz/front.svg",
  15077. extra: 317 / 303,
  15078. bottom: 0.055
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(6, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(5 + 11 / 12, "feet"),
  15095. weight: math.unit(144, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/gabriel/front.svg",
  15099. extra: 285 / 262,
  15100. bottom: 0.004
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(5 + 11 / 12, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15114. {
  15115. side: {
  15116. height: math.unit(6 + 5 / 12, "feet"),
  15117. weight: math.unit(300, "lb"),
  15118. name: "Side",
  15119. image: {
  15120. source: "./media/characters/tempest-suicune/side.svg",
  15121. extra: 195 / 154,
  15122. bottom: 0.04
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(6 + 5 / 12, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(7 + 2 / 12, "feet"),
  15139. weight: math.unit(322, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/vulcan/front.svg",
  15143. extra: 154 / 147,
  15144. bottom: 0.04
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(7 + 2 / 12, "feet"),
  15152. default: true
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(5 + 10 / 12, "feet"),
  15161. weight: math.unit(264, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/gault/front.svg",
  15165. extra: 161 / 140,
  15166. bottom: 0.028
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(5 + 10 / 12, "feet"),
  15174. default: true
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(6, "feet"),
  15183. weight: math.unit(150, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/shard/front.svg",
  15187. extra: 273 / 238,
  15188. bottom: 0.02
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(3 + 6 / 12, "feet"),
  15196. default: true
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(5 + 11 / 12, "feet"),
  15205. weight: math.unit(146, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/ashe/front.svg",
  15209. extra: 400 / 373,
  15210. bottom: 0.01
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(5 + 11 / 12, "feet"),
  15218. default: true
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(5 + 5 / 12, "feet"),
  15227. weight: math.unit(135, "lb"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/beatrix/front.svg",
  15231. extra: 392 / 379,
  15232. bottom: 0.01
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Normal",
  15239. height: math.unit(6, "feet"),
  15240. default: true
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(6, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/ignatius/front.svg",
  15253. extra: 245 / 222,
  15254. bottom: 0.01
  15255. }
  15256. },
  15257. },
  15258. [
  15259. {
  15260. name: "Normal",
  15261. height: math.unit(5 + 5 / 12, "feet"),
  15262. default: true
  15263. },
  15264. ]
  15265. ))
  15266. characterMakers.push(() => makeCharacter(
  15267. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15268. {
  15269. front: {
  15270. height: math.unit(6 + 2 / 12, "feet"),
  15271. weight: math.unit(138, "lb"),
  15272. name: "Front",
  15273. image: {
  15274. source: "./media/characters/mei-li/front.svg",
  15275. extra: 237 / 229,
  15276. bottom: 0.03
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(6 + 2 / 12, "feet"),
  15284. default: true
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(2 + 4 / 12, "feet"),
  15293. weight: math.unit(62, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/puru/front.svg",
  15297. extra: 206 / 149,
  15298. bottom: 0.06
  15299. }
  15300. },
  15301. },
  15302. [
  15303. {
  15304. name: "Normal",
  15305. height: math.unit(2 + 4 / 12, "feet"),
  15306. default: true
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15312. {
  15313. anthro: {
  15314. height: math.unit(5 + 8/12, "feet"),
  15315. weight: math.unit(200, "lb"),
  15316. energyNeed: math.unit(2000, "kcal"),
  15317. name: "Anthro",
  15318. image: {
  15319. source: "./media/characters/kee/anthro.svg",
  15320. extra: 3251/3184,
  15321. bottom: 250/3501
  15322. }
  15323. },
  15324. taur: {
  15325. height: math.unit(11, "feet"),
  15326. weight: math.unit(500, "lb"),
  15327. energyNeed: math.unit(5000, "kcal"),
  15328. name: "Taur",
  15329. image: {
  15330. source: "./media/characters/kee/taur.svg",
  15331. extra: 1362/1320,
  15332. bottom: 83/1445
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Normal",
  15339. height: math.unit(5 + 8/12, "feet"),
  15340. default: true
  15341. },
  15342. {
  15343. name: "Macro",
  15344. height: math.unit(35, "feet")
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15350. {
  15351. anthro: {
  15352. height: math.unit(7, "feet"),
  15353. weight: math.unit(190, "lb"),
  15354. name: "Anthro",
  15355. image: {
  15356. source: "./media/characters/cobalt-dracha/anthro.svg",
  15357. extra: 231 / 225,
  15358. bottom: 0.04
  15359. }
  15360. },
  15361. feral: {
  15362. height: math.unit(9 + 7 / 12, "feet"),
  15363. weight: math.unit(294, "lb"),
  15364. name: "Feral",
  15365. image: {
  15366. source: "./media/characters/cobalt-dracha/feral.svg",
  15367. extra: 692 / 633,
  15368. bottom: 0.05
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Normal",
  15375. height: math.unit(7, "feet"),
  15376. default: true
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15382. {
  15383. fallen: {
  15384. height: math.unit(11 + 8 / 12, "feet"),
  15385. weight: math.unit(485, "lb"),
  15386. name: "Java (Fallen)",
  15387. rename: true,
  15388. image: {
  15389. source: "./media/characters/java/fallen.svg",
  15390. extra: 226 / 208,
  15391. bottom: 0.005
  15392. }
  15393. },
  15394. godkin: {
  15395. height: math.unit(10 + 6 / 12, "feet"),
  15396. weight: math.unit(328, "lb"),
  15397. name: "Java (Godkin)",
  15398. rename: true,
  15399. image: {
  15400. source: "./media/characters/java/godkin.svg",
  15401. extra: 270 / 262,
  15402. bottom: 0.02
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(11 + 8 / 12, "feet"),
  15410. default: true
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(7 + 8 / 12, "feet"),
  15419. weight: math.unit(320, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/skoll/front.svg",
  15423. extra: 232 / 220,
  15424. bottom: 0.02
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(7 + 8 / 12, "feet"),
  15432. default: true
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(5 + 9 / 12, "feet"),
  15441. weight: math.unit(170, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/purna/front.svg",
  15445. extra: 239 / 229,
  15446. bottom: 0.01
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(5 + 9 / 12, "feet"),
  15454. default: true
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(5 + 9 / 12, "feet"),
  15463. weight: math.unit(142, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/kuva/front.svg",
  15467. extra: 281 / 271,
  15468. bottom: 0.006
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(5 + 9 / 12, "feet"),
  15476. default: true
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15482. {
  15483. anthro: {
  15484. height: math.unit(9 + 2 / 12, "feet"),
  15485. weight: math.unit(270, "lb"),
  15486. name: "Anthro",
  15487. image: {
  15488. source: "./media/characters/embra/anthro.svg",
  15489. extra: 200 / 187,
  15490. bottom: 0.02
  15491. }
  15492. },
  15493. feral: {
  15494. height: math.unit(18 + 8 / 12, "feet"),
  15495. weight: math.unit(576, "lb"),
  15496. name: "Feral",
  15497. image: {
  15498. source: "./media/characters/embra/feral.svg",
  15499. extra: 152 / 137,
  15500. bottom: 0.037
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(9 + 2 / 12, "feet"),
  15508. default: true
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15514. {
  15515. anthro: {
  15516. height: math.unit(10 + 9 / 12, "feet"),
  15517. weight: math.unit(224, "lb"),
  15518. name: "Anthro",
  15519. image: {
  15520. source: "./media/characters/grottos/anthro.svg",
  15521. extra: 350 / 332,
  15522. bottom: 0.045
  15523. }
  15524. },
  15525. feral: {
  15526. height: math.unit(20 + 7 / 12, "feet"),
  15527. weight: math.unit(629, "lb"),
  15528. name: "Feral",
  15529. image: {
  15530. source: "./media/characters/grottos/feral.svg",
  15531. extra: 207 / 190,
  15532. bottom: 0.05
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(10 + 9 / 12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15546. {
  15547. anthro: {
  15548. height: math.unit(9 + 6 / 12, "feet"),
  15549. weight: math.unit(298, "lb"),
  15550. name: "Anthro",
  15551. image: {
  15552. source: "./media/characters/frifna/anthro.svg",
  15553. extra: 282 / 269,
  15554. bottom: 0.015
  15555. }
  15556. },
  15557. feral: {
  15558. height: math.unit(16 + 2 / 12, "feet"),
  15559. weight: math.unit(624, "lb"),
  15560. name: "Feral",
  15561. image: {
  15562. source: "./media/characters/frifna/feral.svg"
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(9 + 6 / 12, "feet"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(6 + 2 / 12, "feet"),
  15579. weight: math.unit(168, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/elise/front.svg",
  15583. extra: 276 / 271
  15584. }
  15585. },
  15586. },
  15587. [
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(6 + 2 / 12, "feet"),
  15591. default: true
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(5 + 10 / 12, "feet"),
  15600. weight: math.unit(210, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/glade/front.svg",
  15604. extra: 258 / 247,
  15605. bottom: 0.008
  15606. }
  15607. },
  15608. },
  15609. [
  15610. {
  15611. name: "Normal",
  15612. height: math.unit(5 + 10 / 12, "feet"),
  15613. default: true
  15614. },
  15615. ]
  15616. ))
  15617. characterMakers.push(() => makeCharacter(
  15618. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15619. {
  15620. front: {
  15621. height: math.unit(5 + 10 / 12, "feet"),
  15622. weight: math.unit(129, "lb"),
  15623. name: "Front",
  15624. image: {
  15625. source: "./media/characters/rina/front.svg",
  15626. extra: 266 / 255,
  15627. bottom: 0.005
  15628. }
  15629. },
  15630. },
  15631. [
  15632. {
  15633. name: "Normal",
  15634. height: math.unit(5 + 10 / 12, "feet"),
  15635. default: true
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15641. {
  15642. front: {
  15643. height: math.unit(6 + 1 / 12, "feet"),
  15644. weight: math.unit(192, "lb"),
  15645. name: "Front",
  15646. image: {
  15647. source: "./media/characters/veronica/front.svg",
  15648. extra: 319 / 309,
  15649. bottom: 0.005
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Normal",
  15656. height: math.unit(6 + 1 / 12, "feet"),
  15657. default: true
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(9 + 3 / 12, "feet"),
  15666. weight: math.unit(1100, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/braxton/front.svg",
  15670. extra: 1057 / 984,
  15671. bottom: 0.05
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Normal",
  15678. height: math.unit(9 + 3 / 12, "feet")
  15679. },
  15680. {
  15681. name: "Giant",
  15682. height: math.unit(300, "feet"),
  15683. default: true
  15684. },
  15685. {
  15686. name: "Macro",
  15687. height: math.unit(700, "feet")
  15688. },
  15689. {
  15690. name: "Megamacro",
  15691. height: math.unit(6000, "feet")
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(6 + 7 / 12, "feet"),
  15700. weight: math.unit(150, "lb"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/blue-feyonics/front.svg",
  15704. extra: 1403 / 1306,
  15705. bottom: 0.047
  15706. }
  15707. },
  15708. },
  15709. [
  15710. {
  15711. name: "Normal",
  15712. height: math.unit(6 + 7 / 12, "feet"),
  15713. default: true
  15714. },
  15715. ]
  15716. ))
  15717. characterMakers.push(() => makeCharacter(
  15718. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15719. {
  15720. front: {
  15721. height: math.unit(1.8, "meters"),
  15722. weight: math.unit(60, "kg"),
  15723. name: "Front",
  15724. image: {
  15725. source: "./media/characters/maxwell/front.svg",
  15726. extra: 2060 / 1873
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Micro",
  15733. height: math.unit(1, "mm")
  15734. },
  15735. {
  15736. name: "Normal",
  15737. height: math.unit(1.8, "meter"),
  15738. default: true
  15739. },
  15740. {
  15741. name: "Macro",
  15742. height: math.unit(30, "meters")
  15743. },
  15744. {
  15745. name: "Megamacro",
  15746. height: math.unit(10, "km")
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15752. {
  15753. front: {
  15754. height: math.unit(6, "feet"),
  15755. weight: math.unit(150, "lb"),
  15756. name: "Front",
  15757. image: {
  15758. source: "./media/characters/jack/front.svg",
  15759. extra: 1754 / 1640,
  15760. bottom: 0.01
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(80000, "feet"),
  15768. default: true
  15769. },
  15770. {
  15771. name: "Max size",
  15772. height: math.unit(10, "lightyears")
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15778. {
  15779. urban: {
  15780. height: math.unit(5, "feet"),
  15781. weight: math.unit(240, "lb"),
  15782. name: "Urban",
  15783. image: {
  15784. source: "./media/characters/cafat/urban.svg",
  15785. extra: 1223/1126,
  15786. bottom: 205/1428
  15787. }
  15788. },
  15789. summer: {
  15790. height: math.unit(5, "feet"),
  15791. weight: math.unit(240, "lb"),
  15792. name: "Summer",
  15793. image: {
  15794. source: "./media/characters/cafat/summer.svg",
  15795. extra: 1223/1126,
  15796. bottom: 205/1428
  15797. }
  15798. },
  15799. winter: {
  15800. height: math.unit(5, "feet"),
  15801. weight: math.unit(240, "lb"),
  15802. name: "Winter",
  15803. image: {
  15804. source: "./media/characters/cafat/winter.svg",
  15805. extra: 1223/1126,
  15806. bottom: 205/1428
  15807. }
  15808. },
  15809. lingerie: {
  15810. height: math.unit(5, "feet"),
  15811. weight: math.unit(240, "lb"),
  15812. name: "Lingerie",
  15813. image: {
  15814. source: "./media/characters/cafat/lingerie.svg",
  15815. extra: 1223/1126,
  15816. bottom: 205/1428
  15817. }
  15818. },
  15819. upright: {
  15820. height: math.unit(6.3, "feet"),
  15821. weight: math.unit(240, "lb"),
  15822. name: "Upright",
  15823. image: {
  15824. source: "./media/characters/cafat/upright.svg",
  15825. bottom: 0.01
  15826. }
  15827. },
  15828. uprightFull: {
  15829. height: math.unit(6.3, "feet"),
  15830. weight: math.unit(240, "lb"),
  15831. name: "Upright (Full)",
  15832. image: {
  15833. source: "./media/characters/cafat/upright-full.svg",
  15834. bottom: 0.01
  15835. }
  15836. },
  15837. },
  15838. [
  15839. {
  15840. name: "Small",
  15841. height: math.unit(5, "feet"),
  15842. default: true
  15843. },
  15844. {
  15845. name: "Large",
  15846. height: math.unit(13, "feet")
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(6, "feet"),
  15855. weight: math.unit(150, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/verin-raharra/front.svg",
  15859. extra: 5019 / 4835,
  15860. bottom: 0.023
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(7 + 5 / 12, "feet"),
  15868. default: true
  15869. },
  15870. {
  15871. name: "Upsized",
  15872. height: math.unit(20, "feet")
  15873. },
  15874. ]
  15875. ))
  15876. characterMakers.push(() => makeCharacter(
  15877. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15878. {
  15879. front: {
  15880. height: math.unit(7, "feet"),
  15881. weight: math.unit(230, "lb"),
  15882. name: "Front",
  15883. image: {
  15884. source: "./media/characters/nakata/front.svg",
  15885. extra: 1.005,
  15886. bottom: 0.01
  15887. }
  15888. },
  15889. },
  15890. [
  15891. {
  15892. name: "Normal",
  15893. height: math.unit(7, "feet"),
  15894. default: true
  15895. },
  15896. {
  15897. name: "Big",
  15898. height: math.unit(14, "feet")
  15899. },
  15900. {
  15901. name: "Macro",
  15902. height: math.unit(400, "feet")
  15903. },
  15904. ]
  15905. ))
  15906. characterMakers.push(() => makeCharacter(
  15907. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15908. {
  15909. front: {
  15910. height: math.unit(4.91, "feet"),
  15911. weight: math.unit(100, "lb"),
  15912. name: "Front",
  15913. image: {
  15914. source: "./media/characters/lily/front.svg",
  15915. extra: 1585 / 1415,
  15916. bottom: 0.02
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Normal",
  15923. height: math.unit(4.91, "feet"),
  15924. default: true
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15930. {
  15931. laying: {
  15932. height: math.unit(4 + 4 / 12, "feet"),
  15933. weight: math.unit(600, "lb"),
  15934. name: "Laying",
  15935. image: {
  15936. source: "./media/characters/sheila/laying.svg",
  15937. extra: 1333 / 1265,
  15938. bottom: 0.16
  15939. }
  15940. },
  15941. },
  15942. [
  15943. {
  15944. name: "Normal",
  15945. height: math.unit(4 + 4 / 12, "feet"),
  15946. default: true
  15947. },
  15948. ]
  15949. ))
  15950. characterMakers.push(() => makeCharacter(
  15951. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15952. {
  15953. front: {
  15954. height: math.unit(6, "feet"),
  15955. weight: math.unit(190, "lb"),
  15956. name: "Front",
  15957. image: {
  15958. source: "./media/characters/sax/front.svg",
  15959. extra: 1187 / 973,
  15960. bottom: 0.042
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Micro",
  15967. height: math.unit(4, "inches"),
  15968. default: true
  15969. },
  15970. ]
  15971. ))
  15972. characterMakers.push(() => makeCharacter(
  15973. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15974. {
  15975. front: {
  15976. height: math.unit(6, "feet"),
  15977. weight: math.unit(150, "lb"),
  15978. name: "Front",
  15979. image: {
  15980. source: "./media/characters/pandora/front.svg",
  15981. extra: 2720 / 2556,
  15982. bottom: 0.015
  15983. }
  15984. },
  15985. back: {
  15986. height: math.unit(6, "feet"),
  15987. weight: math.unit(150, "lb"),
  15988. name: "Back",
  15989. image: {
  15990. source: "./media/characters/pandora/back.svg",
  15991. extra: 2720 / 2556,
  15992. bottom: 0.01
  15993. }
  15994. },
  15995. beans: {
  15996. height: math.unit(6 / 8, "feet"),
  15997. name: "Beans",
  15998. image: {
  15999. source: "./media/characters/pandora/beans.svg"
  16000. }
  16001. },
  16002. collar: {
  16003. height: math.unit(0.31, "feet"),
  16004. name: "Collar",
  16005. image: {
  16006. source: "./media/characters/pandora/collar.svg"
  16007. }
  16008. },
  16009. skirt: {
  16010. height: math.unit(6, "feet"),
  16011. weight: math.unit(150, "lb"),
  16012. name: "Skirt",
  16013. image: {
  16014. source: "./media/characters/pandora/skirt.svg",
  16015. extra: 1622 / 1525,
  16016. bottom: 0.015
  16017. }
  16018. },
  16019. hoodie: {
  16020. height: math.unit(6, "feet"),
  16021. weight: math.unit(150, "lb"),
  16022. name: "Hoodie",
  16023. image: {
  16024. source: "./media/characters/pandora/hoodie.svg",
  16025. extra: 1622 / 1525,
  16026. bottom: 0.015
  16027. }
  16028. },
  16029. casual: {
  16030. height: math.unit(6, "feet"),
  16031. weight: math.unit(150, "lb"),
  16032. name: "Casual",
  16033. image: {
  16034. source: "./media/characters/pandora/casual.svg",
  16035. extra: 1622 / 1525,
  16036. bottom: 0.015
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Normal",
  16043. height: math.unit(6, "feet")
  16044. },
  16045. {
  16046. name: "Big Steppy",
  16047. height: math.unit(1, "km"),
  16048. default: true
  16049. },
  16050. {
  16051. name: "Galactic Steppy",
  16052. height: math.unit(2, "gigameters")
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16058. {
  16059. side: {
  16060. height: math.unit(10, "feet"),
  16061. weight: math.unit(800, "kg"),
  16062. name: "Side",
  16063. image: {
  16064. source: "./media/characters/venio-darcony/side.svg",
  16065. extra: 1373 / 1003,
  16066. bottom: 0.037
  16067. }
  16068. },
  16069. front: {
  16070. height: math.unit(19, "feet"),
  16071. weight: math.unit(800, "kg"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/venio-darcony/front.svg"
  16075. }
  16076. },
  16077. back: {
  16078. height: math.unit(19, "feet"),
  16079. weight: math.unit(800, "kg"),
  16080. name: "Back",
  16081. image: {
  16082. source: "./media/characters/venio-darcony/back.svg"
  16083. }
  16084. },
  16085. sideNsfw: {
  16086. height: math.unit(10, "feet"),
  16087. weight: math.unit(800, "kg"),
  16088. name: "Side (NSFW)",
  16089. image: {
  16090. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16091. extra: 1373 / 1003,
  16092. bottom: 0.037
  16093. }
  16094. },
  16095. frontNsfw: {
  16096. height: math.unit(19, "feet"),
  16097. weight: math.unit(800, "kg"),
  16098. name: "Front (NSFW)",
  16099. image: {
  16100. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16101. }
  16102. },
  16103. backNsfw: {
  16104. height: math.unit(19, "feet"),
  16105. weight: math.unit(800, "kg"),
  16106. name: "Back (NSFW)",
  16107. image: {
  16108. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16109. }
  16110. },
  16111. sideArmored: {
  16112. height: math.unit(10, "feet"),
  16113. weight: math.unit(800, "kg"),
  16114. name: "Side (Armored)",
  16115. image: {
  16116. source: "./media/characters/venio-darcony/side-armored.svg",
  16117. extra: 1373 / 1003,
  16118. bottom: 0.037
  16119. }
  16120. },
  16121. frontArmored: {
  16122. height: math.unit(19, "feet"),
  16123. weight: math.unit(900, "kg"),
  16124. name: "Front (Armored)",
  16125. image: {
  16126. source: "./media/characters/venio-darcony/front-armored.svg"
  16127. }
  16128. },
  16129. backArmored: {
  16130. height: math.unit(19, "feet"),
  16131. weight: math.unit(900, "kg"),
  16132. name: "Back (Armored)",
  16133. image: {
  16134. source: "./media/characters/venio-darcony/back-armored.svg"
  16135. }
  16136. },
  16137. sword: {
  16138. height: math.unit(10, "feet"),
  16139. weight: math.unit(50, "lb"),
  16140. name: "Sword",
  16141. image: {
  16142. source: "./media/characters/venio-darcony/sword.svg"
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(10, "feet")
  16150. },
  16151. {
  16152. name: "Macro",
  16153. height: math.unit(130, "feet"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "Macro+",
  16158. height: math.unit(240, "feet")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(150, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/veski/front.svg",
  16171. extra: 1299 / 1225,
  16172. bottom: 0.04
  16173. }
  16174. },
  16175. back: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(150, "lb"),
  16178. name: "Back",
  16179. image: {
  16180. source: "./media/characters/veski/back.svg",
  16181. extra: 1299 / 1225,
  16182. bottom: 0.008
  16183. }
  16184. },
  16185. maw: {
  16186. height: math.unit(1.5 * 1.21, "feet"),
  16187. name: "Maw",
  16188. image: {
  16189. source: "./media/characters/veski/maw.svg"
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Macro",
  16196. height: math.unit(2, "km"),
  16197. default: true
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16203. {
  16204. front: {
  16205. height: math.unit(5 + 7 / 12, "feet"),
  16206. name: "Front",
  16207. image: {
  16208. source: "./media/characters/isabelle/front.svg",
  16209. extra: 2130 / 1976,
  16210. bottom: 0.05
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Supermicro",
  16217. height: math.unit(10, "micrometers")
  16218. },
  16219. {
  16220. name: "Micro",
  16221. height: math.unit(1, "inch")
  16222. },
  16223. {
  16224. name: "Tiny",
  16225. height: math.unit(5, "inches")
  16226. },
  16227. {
  16228. name: "Standard",
  16229. height: math.unit(5 + 7 / 12, "inches")
  16230. },
  16231. {
  16232. name: "Macro",
  16233. height: math.unit(80, "meters"),
  16234. default: true
  16235. },
  16236. {
  16237. name: "Megamacro",
  16238. height: math.unit(250, "meters")
  16239. },
  16240. {
  16241. name: "Gigamacro",
  16242. height: math.unit(5, "km")
  16243. },
  16244. {
  16245. name: "Cosmic",
  16246. height: math.unit(2.5e6, "miles")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(6, "feet"),
  16255. weight: math.unit(150, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/hanzo/front.svg",
  16259. extra: 374 / 344,
  16260. bottom: 0.02
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(8, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(7, "feet"),
  16277. weight: math.unit(130, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/anna/front.svg",
  16281. extra: 169 / 145,
  16282. bottom: 0.06
  16283. }
  16284. },
  16285. full: {
  16286. height: math.unit(4.96, "feet"),
  16287. weight: math.unit(220, "lb"),
  16288. name: "Full",
  16289. image: {
  16290. source: "./media/characters/anna/full.svg",
  16291. extra: 138 / 114,
  16292. bottom: 0.15
  16293. }
  16294. },
  16295. tongue: {
  16296. height: math.unit(2.53, "feet"),
  16297. name: "Tongue",
  16298. image: {
  16299. source: "./media/characters/anna/tongue.svg"
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(7, "feet"),
  16307. default: true
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16313. {
  16314. front: {
  16315. height: math.unit(7, "feet"),
  16316. weight: math.unit(150, "lb"),
  16317. name: "Front",
  16318. image: {
  16319. source: "./media/characters/ian-corvid/front.svg",
  16320. extra: 150 / 142,
  16321. bottom: 0.02
  16322. }
  16323. },
  16324. back: {
  16325. height: math.unit(7, "feet"),
  16326. weight: math.unit(150, "lb"),
  16327. name: "Back",
  16328. image: {
  16329. source: "./media/characters/ian-corvid/back.svg",
  16330. extra: 150 / 143,
  16331. bottom: 0.01
  16332. }
  16333. },
  16334. stomping: {
  16335. height: math.unit(7, "feet"),
  16336. weight: math.unit(150, "lb"),
  16337. name: "Stomping",
  16338. image: {
  16339. source: "./media/characters/ian-corvid/stomping.svg",
  16340. extra: 76 / 72
  16341. }
  16342. },
  16343. sitting: {
  16344. height: math.unit(7 / 1.8, "feet"),
  16345. weight: math.unit(150, "lb"),
  16346. name: "Sitting",
  16347. image: {
  16348. source: "./media/characters/ian-corvid/sitting.svg",
  16349. extra: 1400 / 1269,
  16350. bottom: 0.15
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Tiny Microw",
  16357. height: math.unit(1, "inch")
  16358. },
  16359. {
  16360. name: "Microw",
  16361. height: math.unit(6, "inches")
  16362. },
  16363. {
  16364. name: "Crow",
  16365. height: math.unit(7 + 1 / 12, "feet"),
  16366. default: true
  16367. },
  16368. {
  16369. name: "Macrow",
  16370. height: math.unit(176, "feet")
  16371. },
  16372. ]
  16373. ))
  16374. characterMakers.push(() => makeCharacter(
  16375. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16376. {
  16377. front: {
  16378. height: math.unit(5 + 7 / 12, "feet"),
  16379. weight: math.unit(147, "lb"),
  16380. name: "Front",
  16381. image: {
  16382. source: "./media/characters/natalie-kellon/front.svg",
  16383. extra: 1214 / 1141,
  16384. bottom: 0.02
  16385. }
  16386. },
  16387. },
  16388. [
  16389. {
  16390. name: "Micro",
  16391. height: math.unit(1 / 16, "inch")
  16392. },
  16393. {
  16394. name: "Tiny",
  16395. height: math.unit(4, "inches")
  16396. },
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(5 + 7 / 12, "feet"),
  16400. default: true
  16401. },
  16402. {
  16403. name: "Amazon",
  16404. height: math.unit(12, "feet")
  16405. },
  16406. {
  16407. name: "Giantess",
  16408. height: math.unit(160, "meters")
  16409. },
  16410. {
  16411. name: "Titaness",
  16412. height: math.unit(800, "meters")
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(6, "feet"),
  16421. weight: math.unit(150, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/alluria/front.svg",
  16425. extra: 806 / 738,
  16426. bottom: 0.01
  16427. }
  16428. },
  16429. side: {
  16430. height: math.unit(6, "feet"),
  16431. weight: math.unit(150, "lb"),
  16432. name: "Side",
  16433. image: {
  16434. source: "./media/characters/alluria/side.svg",
  16435. extra: 800 / 750,
  16436. }
  16437. },
  16438. back: {
  16439. height: math.unit(6, "feet"),
  16440. weight: math.unit(150, "lb"),
  16441. name: "Back",
  16442. image: {
  16443. source: "./media/characters/alluria/back.svg",
  16444. extra: 806 / 738,
  16445. }
  16446. },
  16447. frontMaid: {
  16448. height: math.unit(6, "feet"),
  16449. weight: math.unit(150, "lb"),
  16450. name: "Front (Maid)",
  16451. image: {
  16452. source: "./media/characters/alluria/front-maid.svg",
  16453. extra: 806 / 738,
  16454. bottom: 0.01
  16455. }
  16456. },
  16457. sideMaid: {
  16458. height: math.unit(6, "feet"),
  16459. weight: math.unit(150, "lb"),
  16460. name: "Side (Maid)",
  16461. image: {
  16462. source: "./media/characters/alluria/side-maid.svg",
  16463. extra: 800 / 750,
  16464. bottom: 0.005
  16465. }
  16466. },
  16467. backMaid: {
  16468. height: math.unit(6, "feet"),
  16469. weight: math.unit(150, "lb"),
  16470. name: "Back (Maid)",
  16471. image: {
  16472. source: "./media/characters/alluria/back-maid.svg",
  16473. extra: 806 / 738,
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Micro",
  16480. height: math.unit(6, "inches"),
  16481. default: true
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16487. {
  16488. front: {
  16489. height: math.unit(6, "feet"),
  16490. weight: math.unit(150, "lb"),
  16491. name: "Front",
  16492. image: {
  16493. source: "./media/characters/kyle/front.svg",
  16494. extra: 1069 / 962,
  16495. bottom: 77.228 / 1727.45
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Macro",
  16502. height: math.unit(150, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(6, "feet"),
  16512. weight: math.unit(300, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/duncan/front.svg",
  16516. extra: 1650 / 1482,
  16517. bottom: 0.05
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Macro",
  16524. height: math.unit(100, "feet"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(5 + 4 / 12, "feet"),
  16534. weight: math.unit(220, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/memory/front.svg",
  16538. extra: 3641 / 3545,
  16539. bottom: 0.03
  16540. }
  16541. },
  16542. back: {
  16543. height: math.unit(5 + 4 / 12, "feet"),
  16544. weight: math.unit(220, "lb"),
  16545. name: "Back",
  16546. image: {
  16547. source: "./media/characters/memory/back.svg",
  16548. extra: 3641 / 3545,
  16549. bottom: 0.025
  16550. }
  16551. },
  16552. frontSkirt: {
  16553. height: math.unit(5 + 4 / 12, "feet"),
  16554. weight: math.unit(220, "lb"),
  16555. name: "Front (Skirt)",
  16556. image: {
  16557. source: "./media/characters/memory/front-skirt.svg",
  16558. extra: 3641 / 3545,
  16559. bottom: 0.03
  16560. }
  16561. },
  16562. frontDress: {
  16563. height: math.unit(5 + 4 / 12, "feet"),
  16564. weight: math.unit(220, "lb"),
  16565. name: "Front (Dress)",
  16566. image: {
  16567. source: "./media/characters/memory/front-dress.svg",
  16568. extra: 3641 / 3545,
  16569. bottom: 0.03
  16570. }
  16571. },
  16572. },
  16573. [
  16574. {
  16575. name: "Micro",
  16576. height: math.unit(6, "inches"),
  16577. default: true
  16578. },
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(5 + 4 / 12, "feet")
  16582. },
  16583. ]
  16584. ))
  16585. characterMakers.push(() => makeCharacter(
  16586. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16587. {
  16588. front: {
  16589. height: math.unit(4 + 11 / 12, "feet"),
  16590. weight: math.unit(100, "lb"),
  16591. name: "Front",
  16592. image: {
  16593. source: "./media/characters/luno/front.svg",
  16594. extra: 1535 / 1487,
  16595. bottom: 0.03
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Micro",
  16602. height: math.unit(3, "inches")
  16603. },
  16604. {
  16605. name: "Normal",
  16606. height: math.unit(4 + 11 / 12, "feet"),
  16607. default: true
  16608. },
  16609. {
  16610. name: "Macro",
  16611. height: math.unit(300, "feet")
  16612. },
  16613. {
  16614. name: "Megamacro",
  16615. height: math.unit(700, "miles")
  16616. },
  16617. ]
  16618. ))
  16619. characterMakers.push(() => makeCharacter(
  16620. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16621. {
  16622. front: {
  16623. height: math.unit(6 + 2 / 12, "feet"),
  16624. weight: math.unit(170, "lb"),
  16625. name: "Front",
  16626. image: {
  16627. source: "./media/characters/jamesy/front.svg",
  16628. extra: 440 / 382,
  16629. bottom: 0.005
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Micro",
  16636. height: math.unit(3, "inches")
  16637. },
  16638. {
  16639. name: "Normal",
  16640. height: math.unit(6 + 2 / 12, "feet"),
  16641. default: true
  16642. },
  16643. {
  16644. name: "Macro",
  16645. height: math.unit(300, "feet")
  16646. },
  16647. {
  16648. name: "Megamacro",
  16649. height: math.unit(700, "miles")
  16650. },
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16655. {
  16656. front: {
  16657. height: math.unit(6, "feet"),
  16658. weight: math.unit(160, "lb"),
  16659. name: "Front",
  16660. image: {
  16661. source: "./media/characters/mark/front.svg",
  16662. extra: 3300 / 3100,
  16663. bottom: 136.42 / 3440.47
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Macro",
  16670. height: math.unit(120, "meters")
  16671. },
  16672. {
  16673. name: "Bigger Macro",
  16674. height: math.unit(350, "meters")
  16675. },
  16676. {
  16677. name: "Megamacro",
  16678. height: math.unit(8, "km"),
  16679. default: true
  16680. },
  16681. {
  16682. name: "Continental",
  16683. height: math.unit(4550, "km")
  16684. },
  16685. {
  16686. name: "Planetary",
  16687. height: math.unit(65000, "km")
  16688. },
  16689. ]
  16690. ))
  16691. characterMakers.push(() => makeCharacter(
  16692. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16693. {
  16694. front: {
  16695. height: math.unit(6, "feet"),
  16696. weight: math.unit(400, "lb"),
  16697. name: "Front",
  16698. image: {
  16699. source: "./media/characters/mac/front.svg",
  16700. extra: 1048 / 987.7,
  16701. bottom: 60 / 1107.6,
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Macro",
  16708. height: math.unit(500, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(5 + 2 / 12, "feet"),
  16718. weight: math.unit(190, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/bari/front.svg",
  16722. extra: 3156 / 2880,
  16723. bottom: 0.03
  16724. }
  16725. },
  16726. back: {
  16727. height: math.unit(5 + 2 / 12, "feet"),
  16728. weight: math.unit(190, "lb"),
  16729. name: "Back",
  16730. image: {
  16731. source: "./media/characters/bari/back.svg",
  16732. extra: 3260 / 2834,
  16733. bottom: 0.025
  16734. }
  16735. },
  16736. frontPlush: {
  16737. height: math.unit(5 + 2 / 12, "feet"),
  16738. weight: math.unit(190, "lb"),
  16739. name: "Front (Plush)",
  16740. image: {
  16741. source: "./media/characters/bari/front-plush.svg",
  16742. extra: 1112 / 1061,
  16743. bottom: 0.002
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Micro",
  16750. height: math.unit(3, "inches")
  16751. },
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(5 + 2 / 12, "feet"),
  16755. default: true
  16756. },
  16757. {
  16758. name: "Macro",
  16759. height: math.unit(20, "feet")
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(6 + 1 / 12, "feet"),
  16768. weight: math.unit(275, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/hunter-misha-raven/front.svg"
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Mortal",
  16778. height: math.unit(6 + 1 / 12, "feet")
  16779. },
  16780. {
  16781. name: "Divine",
  16782. height: math.unit(1.12134e34, "parsecs"),
  16783. default: true
  16784. },
  16785. ]
  16786. ))
  16787. characterMakers.push(() => makeCharacter(
  16788. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16789. {
  16790. front: {
  16791. height: math.unit(6 + 3 / 12, "feet"),
  16792. weight: math.unit(220, "lb"),
  16793. name: "Front",
  16794. image: {
  16795. source: "./media/characters/max-calore/front.svg",
  16796. extra: 1700 / 1648,
  16797. bottom: 0.01
  16798. }
  16799. },
  16800. back: {
  16801. height: math.unit(6 + 3 / 12, "feet"),
  16802. weight: math.unit(220, "lb"),
  16803. name: "Back",
  16804. image: {
  16805. source: "./media/characters/max-calore/back.svg",
  16806. extra: 1700 / 1648,
  16807. bottom: 0.01
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(6 + 3 / 12, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16821. {
  16822. side: {
  16823. height: math.unit(2 + 8 / 12, "feet"),
  16824. weight: math.unit(99, "lb"),
  16825. name: "Side",
  16826. image: {
  16827. source: "./media/characters/aspen/side.svg",
  16828. extra: 152 / 138,
  16829. bottom: 0.032
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(2 + 8 / 12, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16843. {
  16844. side: {
  16845. height: math.unit(3 + 2 / 12, "feet"),
  16846. weight: math.unit(224, "lb"),
  16847. name: "Side",
  16848. image: {
  16849. source: "./media/characters/sheila-feral-wolf/side.svg",
  16850. extra: 179 / 166,
  16851. bottom: 0.03
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(3 + 2 / 12, "feet"),
  16859. default: true
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16865. {
  16866. side: {
  16867. height: math.unit(1 + 9 / 12, "feet"),
  16868. weight: math.unit(38, "lb"),
  16869. name: "Side",
  16870. image: {
  16871. source: "./media/characters/michelle/side.svg",
  16872. extra: 147 / 136.7,
  16873. bottom: 0.03
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(1 + 9 / 12, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(1 + 1 / 12, "feet"),
  16890. weight: math.unit(18, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/nino/front.svg"
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(1 + 1 / 12, "feet"),
  16901. default: true
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16907. {
  16908. front: {
  16909. height: math.unit(1, "feet"),
  16910. weight: math.unit(16, "lb"),
  16911. name: "Front",
  16912. image: {
  16913. source: "./media/characters/viola/front.svg"
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(1, "feet"),
  16921. default: true
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16927. {
  16928. front: {
  16929. height: math.unit(6 + 5 / 12, "feet"),
  16930. weight: math.unit(580, "lb"),
  16931. name: "Front",
  16932. image: {
  16933. source: "./media/characters/atlas/front.svg",
  16934. extra: 298.5 / 290,
  16935. bottom: 0.015
  16936. }
  16937. },
  16938. },
  16939. [
  16940. {
  16941. name: "Normal",
  16942. height: math.unit(6 + 5 / 12, "feet"),
  16943. default: true
  16944. },
  16945. ]
  16946. ))
  16947. characterMakers.push(() => makeCharacter(
  16948. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16949. {
  16950. side: {
  16951. height: math.unit(1 + 10 / 12, "feet"),
  16952. weight: math.unit(25, "lb"),
  16953. name: "Side",
  16954. image: {
  16955. source: "./media/characters/davy/side.svg",
  16956. extra: 200 / 170,
  16957. bottom: 0.01
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(1 + 10 / 12, "feet"),
  16965. default: true
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16971. {
  16972. side: {
  16973. height: math.unit(4 + 8 / 12, "feet"),
  16974. weight: math.unit(166, "lb"),
  16975. name: "Side",
  16976. image: {
  16977. source: "./media/characters/fiona/side.svg",
  16978. extra: 232 / 220,
  16979. bottom: 0.03
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(4 + 8 / 12, "feet"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16993. {
  16994. front: {
  16995. height: math.unit(2, "feet"),
  16996. weight: math.unit(62, "lb"),
  16997. name: "Front",
  16998. image: {
  16999. source: "./media/characters/lyla/front.svg",
  17000. bottom: 0.1
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(2, "feet"),
  17008. default: true
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17014. {
  17015. side: {
  17016. height: math.unit(1.8, "feet"),
  17017. weight: math.unit(44, "lb"),
  17018. name: "Side",
  17019. image: {
  17020. source: "./media/characters/perseus/side.svg",
  17021. bottom: 0.21
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(1.8, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17035. {
  17036. side: {
  17037. height: math.unit(4 + 2 / 12, "feet"),
  17038. weight: math.unit(20, "lb"),
  17039. name: "Side",
  17040. image: {
  17041. source: "./media/characters/remus/side.svg"
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Normal",
  17048. height: math.unit(4 + 2 / 12, "feet"),
  17049. default: true
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17055. {
  17056. front: {
  17057. height: math.unit(4 + 11 / 12, "feet"),
  17058. weight: math.unit(114, "lb"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/raf/front.svg",
  17062. bottom: 20.5 / 1863
  17063. }
  17064. },
  17065. side: {
  17066. height: math.unit(4 + 11 / 12, "feet"),
  17067. weight: math.unit(114, "lb"),
  17068. name: "Side",
  17069. image: {
  17070. source: "./media/characters/raf/side.svg",
  17071. bottom: 22 / 1822
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Micro",
  17078. height: math.unit(2, "inches")
  17079. },
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(4 + 11 / 12, "feet"),
  17083. default: true
  17084. },
  17085. {
  17086. name: "Macro",
  17087. height: math.unit(70, "feet")
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17093. {
  17094. front: {
  17095. height: math.unit(1.5, "meters"),
  17096. weight: math.unit(68, "kg"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/liam-einarr/front.svg",
  17100. extra: 2822 / 2666
  17101. }
  17102. },
  17103. back: {
  17104. height: math.unit(1.5, "meters"),
  17105. weight: math.unit(68, "kg"),
  17106. name: "Back",
  17107. image: {
  17108. source: "./media/characters/liam-einarr/back.svg",
  17109. extra: 2822 / 2666,
  17110. bottom: 0.015
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(1.5, "meters"),
  17118. default: true
  17119. },
  17120. {
  17121. name: "Macro",
  17122. height: math.unit(150, "meters")
  17123. },
  17124. {
  17125. name: "Megamacro",
  17126. height: math.unit(35, "km")
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(6, "feet"),
  17135. weight: math.unit(75, "kg"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/linda/front.svg",
  17139. extra: 930 / 874,
  17140. bottom: 0.004
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(6, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(6 + 8 / 12, "feet"),
  17157. weight: math.unit(220, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/caylex/front.svg",
  17161. extra: 821 / 772,
  17162. bottom: 0.07
  17163. }
  17164. },
  17165. back: {
  17166. height: math.unit(6 + 8 / 12, "feet"),
  17167. weight: math.unit(220, "lb"),
  17168. name: "Back",
  17169. image: {
  17170. source: "./media/characters/caylex/back.svg",
  17171. extra: 821 / 772,
  17172. bottom: 0.022
  17173. }
  17174. },
  17175. hand: {
  17176. height: math.unit(1.25, "feet"),
  17177. name: "Hand",
  17178. image: {
  17179. source: "./media/characters/caylex/hand.svg"
  17180. }
  17181. },
  17182. foot: {
  17183. height: math.unit(1.6, "feet"),
  17184. name: "Foot",
  17185. image: {
  17186. source: "./media/characters/caylex/foot.svg"
  17187. }
  17188. },
  17189. armored: {
  17190. height: math.unit(6 + 8 / 12, "feet"),
  17191. weight: math.unit(250, "lb"),
  17192. name: "Armored",
  17193. image: {
  17194. source: "./media/characters/caylex/armored.svg",
  17195. extra: 1420 / 1310,
  17196. bottom: 0.045
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(6 + 8 / 12, "feet"),
  17204. default: true
  17205. },
  17206. {
  17207. name: "Normal+",
  17208. height: math.unit(12, "feet")
  17209. },
  17210. ]
  17211. ))
  17212. characterMakers.push(() => makeCharacter(
  17213. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17214. {
  17215. front: {
  17216. height: math.unit(7 + 6 / 12, "feet"),
  17217. weight: math.unit(288, "lb"),
  17218. name: "Front",
  17219. image: {
  17220. source: "./media/characters/alana/front.svg",
  17221. extra: 679 / 653,
  17222. bottom: 22.5 / 701
  17223. }
  17224. },
  17225. },
  17226. [
  17227. {
  17228. name: "Normal",
  17229. height: math.unit(7 + 6 / 12, "feet")
  17230. },
  17231. {
  17232. name: "Large",
  17233. height: math.unit(50, "feet")
  17234. },
  17235. {
  17236. name: "Macro",
  17237. height: math.unit(100, "feet"),
  17238. default: true
  17239. },
  17240. {
  17241. name: "Macro+",
  17242. height: math.unit(200, "feet")
  17243. },
  17244. ]
  17245. ))
  17246. characterMakers.push(() => makeCharacter(
  17247. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17248. {
  17249. front: {
  17250. height: math.unit(6 + 1 / 12, "feet"),
  17251. weight: math.unit(210, "lb"),
  17252. name: "Front",
  17253. image: {
  17254. source: "./media/characters/hasani/front.svg",
  17255. extra: 244 / 232,
  17256. bottom: 0.01
  17257. }
  17258. },
  17259. back: {
  17260. height: math.unit(6 + 1 / 12, "feet"),
  17261. weight: math.unit(210, "lb"),
  17262. name: "Back",
  17263. image: {
  17264. source: "./media/characters/hasani/back.svg",
  17265. extra: 244 / 232,
  17266. bottom: 0.01
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Normal",
  17273. height: math.unit(6 + 1 / 12, "feet")
  17274. },
  17275. {
  17276. name: "Macro",
  17277. height: math.unit(175, "feet"),
  17278. default: true
  17279. },
  17280. ]
  17281. ))
  17282. characterMakers.push(() => makeCharacter(
  17283. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17284. {
  17285. front: {
  17286. height: math.unit(1.82, "meters"),
  17287. weight: math.unit(140, "lb"),
  17288. name: "Front",
  17289. image: {
  17290. source: "./media/characters/nita/front.svg",
  17291. extra: 2473 / 2363,
  17292. bottom: 0.01
  17293. }
  17294. },
  17295. },
  17296. [
  17297. {
  17298. name: "Normal",
  17299. height: math.unit(1.82, "m")
  17300. },
  17301. {
  17302. name: "Macro",
  17303. height: math.unit(300, "m")
  17304. },
  17305. {
  17306. name: "Mistake Canon",
  17307. height: math.unit(0.5, "miles"),
  17308. default: true
  17309. },
  17310. {
  17311. name: "Big Mistake",
  17312. height: math.unit(13, "miles")
  17313. },
  17314. {
  17315. name: "Playing God",
  17316. height: math.unit(2450, "miles")
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17322. {
  17323. front: {
  17324. height: math.unit(4, "feet"),
  17325. weight: math.unit(120, "lb"),
  17326. name: "Front",
  17327. image: {
  17328. source: "./media/characters/shiriko/front.svg",
  17329. extra: 970/934,
  17330. bottom: 5/975
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Normal",
  17337. height: math.unit(4, "feet"),
  17338. default: true
  17339. },
  17340. ]
  17341. ))
  17342. characterMakers.push(() => makeCharacter(
  17343. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17344. {
  17345. front: {
  17346. height: math.unit(6, "feet"),
  17347. name: "front",
  17348. image: {
  17349. source: "./media/characters/deja/front.svg",
  17350. extra: 926 / 840,
  17351. bottom: 0.07
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Planck Length",
  17358. height: math.unit(1.6e-35, "meters")
  17359. },
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(30.48, "meters"),
  17363. default: true
  17364. },
  17365. {
  17366. name: "Universal",
  17367. height: math.unit(8.8e26, "meters")
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17373. {
  17374. side: {
  17375. height: math.unit(8, "feet"),
  17376. weight: math.unit(6300, "lb"),
  17377. name: "Side",
  17378. image: {
  17379. source: "./media/characters/anima/side.svg",
  17380. bottom: 0.035
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(8, "feet"),
  17388. default: true
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17394. {
  17395. front: {
  17396. height: math.unit(8, "feet"),
  17397. weight: math.unit(350, "lb"),
  17398. name: "Front",
  17399. image: {
  17400. source: "./media/characters/bianca/front.svg",
  17401. extra: 234 / 225,
  17402. bottom: 0.03
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(8, "feet"),
  17410. default: true
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(6, "feet"),
  17419. weight: math.unit(150, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/adinia/front.svg",
  17423. extra: 1845 / 1672,
  17424. bottom: 0.02
  17425. }
  17426. },
  17427. back: {
  17428. height: math.unit(6, "feet"),
  17429. weight: math.unit(150, "lb"),
  17430. name: "Back",
  17431. image: {
  17432. source: "./media/characters/adinia/back.svg",
  17433. extra: 1845 / 1672,
  17434. bottom: 0.002
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Normal",
  17441. height: math.unit(11 + 5 / 12, "feet"),
  17442. default: true
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17448. {
  17449. front: {
  17450. height: math.unit(3, "meters"),
  17451. weight: math.unit(200, "kg"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/lykasa/front.svg",
  17455. extra: 1076 / 976,
  17456. bottom: 0.06
  17457. }
  17458. },
  17459. },
  17460. [
  17461. {
  17462. name: "Normal",
  17463. height: math.unit(3, "meters")
  17464. },
  17465. {
  17466. name: "Kaiju",
  17467. height: math.unit(120, "meters"),
  17468. default: true
  17469. },
  17470. {
  17471. name: "Mega Kaiju",
  17472. height: math.unit(240, "km")
  17473. },
  17474. {
  17475. name: "Giga Kaiju",
  17476. height: math.unit(400, "megameters")
  17477. },
  17478. {
  17479. name: "Tera Kaiju",
  17480. height: math.unit(800, "gigameters")
  17481. },
  17482. {
  17483. name: "Kaiju Dragon Goddess",
  17484. height: math.unit(26, "zettaparsecs")
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17490. {
  17491. side: {
  17492. height: math.unit(283 / 124 * 6, "feet"),
  17493. weight: math.unit(35000, "lb"),
  17494. name: "Side",
  17495. image: {
  17496. source: "./media/characters/malfaren/side.svg",
  17497. extra: 2500 / 1010,
  17498. bottom: 0.01
  17499. }
  17500. },
  17501. front: {
  17502. height: math.unit(22.36, "feet"),
  17503. weight: math.unit(35000, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/malfaren/front.svg",
  17507. extra: 1631 / 1476,
  17508. bottom: 0.01
  17509. }
  17510. },
  17511. maw: {
  17512. height: math.unit(6.9, "feet"),
  17513. name: "Maw",
  17514. image: {
  17515. source: "./media/characters/malfaren/maw.svg"
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Big",
  17522. height: math.unit(283 / 162 * 6, "feet"),
  17523. },
  17524. {
  17525. name: "Bigger",
  17526. height: math.unit(283 / 124 * 6, "feet")
  17527. },
  17528. {
  17529. name: "Massive",
  17530. height: math.unit(283 / 92 * 6, "feet"),
  17531. default: true
  17532. },
  17533. {
  17534. name: "👀💦",
  17535. height: math.unit(283 / 73 * 6, "feet"),
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17541. {
  17542. front: {
  17543. height: math.unit(1.7, "m"),
  17544. weight: math.unit(70, "kg"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/kernel/front.svg",
  17548. extra: 222 / 210,
  17549. bottom: 0.007
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Nano",
  17556. height: math.unit(17, "micrometers")
  17557. },
  17558. {
  17559. name: "Micro",
  17560. height: math.unit(1.7, "mm")
  17561. },
  17562. {
  17563. name: "Small",
  17564. height: math.unit(1.7, "cm")
  17565. },
  17566. {
  17567. name: "Normal",
  17568. height: math.unit(1.7, "m"),
  17569. default: true
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17575. {
  17576. front: {
  17577. height: math.unit(1.75, "meters"),
  17578. weight: math.unit(65, "kg"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/jayne-folest/front.svg",
  17582. extra: 2115 / 2007,
  17583. bottom: 0.02
  17584. }
  17585. },
  17586. back: {
  17587. height: math.unit(1.75, "meters"),
  17588. weight: math.unit(65, "kg"),
  17589. name: "Back",
  17590. image: {
  17591. source: "./media/characters/jayne-folest/back.svg",
  17592. extra: 2115 / 2007,
  17593. bottom: 0.005
  17594. }
  17595. },
  17596. frontClothed: {
  17597. height: math.unit(1.75, "meters"),
  17598. weight: math.unit(65, "kg"),
  17599. name: "Front (Clothed)",
  17600. image: {
  17601. source: "./media/characters/jayne-folest/front-clothed.svg",
  17602. extra: 2115 / 2007,
  17603. bottom: 0.035
  17604. }
  17605. },
  17606. hand: {
  17607. height: math.unit(1 / 1.260, "feet"),
  17608. name: "Hand",
  17609. image: {
  17610. source: "./media/characters/jayne-folest/hand.svg"
  17611. }
  17612. },
  17613. foot: {
  17614. height: math.unit(1 / 0.918, "feet"),
  17615. name: "Foot",
  17616. image: {
  17617. source: "./media/characters/jayne-folest/foot.svg"
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Micro",
  17624. height: math.unit(4, "cm")
  17625. },
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(1.75, "meters")
  17629. },
  17630. {
  17631. name: "Macro",
  17632. height: math.unit(47.5, "meters"),
  17633. default: true
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17639. {
  17640. front: {
  17641. height: math.unit(180, "cm"),
  17642. weight: math.unit(70, "kg"),
  17643. name: "Front",
  17644. image: {
  17645. source: "./media/characters/algier/front.svg",
  17646. extra: 596 / 572,
  17647. bottom: 0.04
  17648. }
  17649. },
  17650. back: {
  17651. height: math.unit(180, "cm"),
  17652. weight: math.unit(70, "kg"),
  17653. name: "Back",
  17654. image: {
  17655. source: "./media/characters/algier/back.svg",
  17656. extra: 596 / 572,
  17657. bottom: 0.025
  17658. }
  17659. },
  17660. frontdressed: {
  17661. height: math.unit(180, "cm"),
  17662. weight: math.unit(150, "kg"),
  17663. name: "Front-dressed",
  17664. image: {
  17665. source: "./media/characters/algier/front-dressed.svg",
  17666. extra: 596 / 572,
  17667. bottom: 0.038
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Micro",
  17674. height: math.unit(5, "cm")
  17675. },
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(180, "cm"),
  17679. default: true
  17680. },
  17681. {
  17682. name: "Macro",
  17683. height: math.unit(64, "m")
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17689. {
  17690. upright: {
  17691. height: math.unit(7, "feet"),
  17692. weight: math.unit(300, "lb"),
  17693. name: "Upright",
  17694. image: {
  17695. source: "./media/characters/pretzel/upright.svg",
  17696. extra: 534 / 522,
  17697. bottom: 0.065
  17698. }
  17699. },
  17700. sprawling: {
  17701. height: math.unit(3.75, "feet"),
  17702. weight: math.unit(300, "lb"),
  17703. name: "Sprawling",
  17704. image: {
  17705. source: "./media/characters/pretzel/sprawling.svg",
  17706. extra: 314 / 281,
  17707. bottom: 0.1
  17708. }
  17709. },
  17710. tongue: {
  17711. height: math.unit(2, "feet"),
  17712. name: "Tongue",
  17713. image: {
  17714. source: "./media/characters/pretzel/tongue.svg"
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(7, "feet"),
  17722. default: true
  17723. },
  17724. {
  17725. name: "Oversized",
  17726. height: math.unit(15, "feet")
  17727. },
  17728. {
  17729. name: "Huge",
  17730. height: math.unit(30, "feet")
  17731. },
  17732. {
  17733. name: "Macro",
  17734. height: math.unit(250, "feet")
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17740. {
  17741. sideFront: {
  17742. height: math.unit(5 + 2 / 12, "feet"),
  17743. weight: math.unit(120, "lb"),
  17744. name: "Front Side",
  17745. image: {
  17746. source: "./media/characters/roxi/side-front.svg",
  17747. extra: 2924 / 2717,
  17748. bottom: 0.08
  17749. }
  17750. },
  17751. sideBack: {
  17752. height: math.unit(5 + 2 / 12, "feet"),
  17753. weight: math.unit(120, "lb"),
  17754. name: "Back Side",
  17755. image: {
  17756. source: "./media/characters/roxi/side-back.svg",
  17757. extra: 2904 / 2693,
  17758. bottom: 0.06
  17759. }
  17760. },
  17761. front: {
  17762. height: math.unit(5 + 2 / 12, "feet"),
  17763. weight: math.unit(120, "lb"),
  17764. name: "Front",
  17765. image: {
  17766. source: "./media/characters/roxi/front.svg",
  17767. extra: 2028 / 1907,
  17768. bottom: 0.01
  17769. }
  17770. },
  17771. frontAlt: {
  17772. height: math.unit(5 + 2 / 12, "feet"),
  17773. weight: math.unit(120, "lb"),
  17774. name: "Front (Alt)",
  17775. image: {
  17776. source: "./media/characters/roxi/front-alt.svg",
  17777. extra: 1828 / 1798,
  17778. bottom: 0.01
  17779. }
  17780. },
  17781. sitting: {
  17782. height: math.unit(2.8, "feet"),
  17783. weight: math.unit(120, "lb"),
  17784. name: "Sitting",
  17785. image: {
  17786. source: "./media/characters/roxi/sitting.svg",
  17787. extra: 2660 / 2462,
  17788. bottom: 0.1
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(5 + 2 / 12, "feet"),
  17796. default: true
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17802. {
  17803. side: {
  17804. height: math.unit(55, "feet"),
  17805. weight: math.unit(153, "tons"),
  17806. name: "Side",
  17807. image: {
  17808. source: "./media/characters/shadow/side.svg",
  17809. extra: 701 / 628,
  17810. bottom: 0.02
  17811. }
  17812. },
  17813. flying: {
  17814. height: math.unit(145, "feet"),
  17815. weight: math.unit(153, "tons"),
  17816. name: "Flying",
  17817. image: {
  17818. source: "./media/characters/shadow/flying.svg"
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(55, "feet"),
  17826. default: true
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(6, "feet"),
  17835. weight: math.unit(200, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/marcie/front.svg",
  17839. extra: 960 / 876,
  17840. bottom: 58 / 1017.87
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Macro",
  17847. height: math.unit(1, "mile"),
  17848. default: true
  17849. },
  17850. ]
  17851. ))
  17852. characterMakers.push(() => makeCharacter(
  17853. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17854. {
  17855. front: {
  17856. height: math.unit(7, "feet"),
  17857. weight: math.unit(200, "lb"),
  17858. name: "Front",
  17859. image: {
  17860. source: "./media/characters/kachina/front.svg",
  17861. extra: 1290.68 / 1119,
  17862. bottom: 36.5 / 1327.18
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(7, "feet"),
  17870. default: true
  17871. },
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17876. {
  17877. looking: {
  17878. height: math.unit(2, "meters"),
  17879. weight: math.unit(300, "kg"),
  17880. name: "Looking",
  17881. image: {
  17882. source: "./media/characters/kash/looking.svg",
  17883. extra: 474 / 344,
  17884. bottom: 0.03
  17885. }
  17886. },
  17887. side: {
  17888. height: math.unit(2, "meters"),
  17889. weight: math.unit(300, "kg"),
  17890. name: "Side",
  17891. image: {
  17892. source: "./media/characters/kash/side.svg",
  17893. extra: 302 / 251,
  17894. bottom: 0.03
  17895. }
  17896. },
  17897. front: {
  17898. height: math.unit(2, "meters"),
  17899. weight: math.unit(300, "kg"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/kash/front.svg",
  17903. extra: 495 / 360,
  17904. bottom: 0.015
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(2, "meters"),
  17912. default: true
  17913. },
  17914. {
  17915. name: "Big",
  17916. height: math.unit(3, "meters")
  17917. },
  17918. {
  17919. name: "Large",
  17920. height: math.unit(5, "meters")
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17926. {
  17927. feeding: {
  17928. height: math.unit(6.7, "feet"),
  17929. weight: math.unit(350, "lb"),
  17930. name: "Feeding",
  17931. image: {
  17932. source: "./media/characters/lalim/feeding.svg",
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Normal",
  17939. height: math.unit(6.7, "feet"),
  17940. default: true
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17946. {
  17947. front: {
  17948. height: math.unit(9.5, "feet"),
  17949. weight: math.unit(600, "lb"),
  17950. name: "Front",
  17951. image: {
  17952. source: "./media/characters/de'vout/front.svg",
  17953. extra: 1443 / 1328,
  17954. bottom: 0.025
  17955. }
  17956. },
  17957. back: {
  17958. height: math.unit(9.5, "feet"),
  17959. weight: math.unit(600, "lb"),
  17960. name: "Back",
  17961. image: {
  17962. source: "./media/characters/de'vout/back.svg",
  17963. extra: 1443 / 1328
  17964. }
  17965. },
  17966. frontDressed: {
  17967. height: math.unit(9.5, "feet"),
  17968. weight: math.unit(600, "lb"),
  17969. name: "Front (Dressed",
  17970. image: {
  17971. source: "./media/characters/de'vout/front-dressed.svg",
  17972. extra: 1443 / 1328,
  17973. bottom: 0.025
  17974. }
  17975. },
  17976. backDressed: {
  17977. height: math.unit(9.5, "feet"),
  17978. weight: math.unit(600, "lb"),
  17979. name: "Back (Dressed",
  17980. image: {
  17981. source: "./media/characters/de'vout/back-dressed.svg",
  17982. extra: 1443 / 1328
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Normal",
  17989. height: math.unit(9.5, "feet"),
  17990. default: true
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17996. {
  17997. front: {
  17998. height: math.unit(8, "feet"),
  17999. weight: math.unit(225, "lb"),
  18000. name: "Front",
  18001. image: {
  18002. source: "./media/characters/talana/front.svg",
  18003. extra: 1410 / 1300,
  18004. bottom: 0.015
  18005. }
  18006. },
  18007. frontDressed: {
  18008. height: math.unit(8, "feet"),
  18009. weight: math.unit(225, "lb"),
  18010. name: "Front (Dressed",
  18011. image: {
  18012. source: "./media/characters/talana/front-dressed.svg",
  18013. extra: 1410 / 1300,
  18014. bottom: 0.015
  18015. }
  18016. },
  18017. },
  18018. [
  18019. {
  18020. name: "Normal",
  18021. height: math.unit(8, "feet"),
  18022. default: true
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18028. {
  18029. side: {
  18030. height: math.unit(7.2, "feet"),
  18031. weight: math.unit(150, "lb"),
  18032. name: "Side",
  18033. image: {
  18034. source: "./media/characters/xeauvok/side.svg",
  18035. extra: 1975 / 1523,
  18036. bottom: 0.07
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(7.2, "feet"),
  18044. default: true
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18050. {
  18051. side: {
  18052. height: math.unit(10, "feet"),
  18053. weight: math.unit(900, "kg"),
  18054. name: "Side",
  18055. image: {
  18056. source: "./media/characters/zara/side.svg",
  18057. extra: 504 / 498
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(10, "feet"),
  18065. default: true
  18066. },
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18071. {
  18072. side: {
  18073. height: math.unit(6, "feet"),
  18074. weight: math.unit(150, "lb"),
  18075. name: "Side",
  18076. image: {
  18077. source: "./media/characters/richard-dragon/side.svg",
  18078. extra: 845 / 340,
  18079. bottom: 0.017
  18080. }
  18081. },
  18082. maw: {
  18083. height: math.unit(2.97, "feet"),
  18084. name: "Maw",
  18085. image: {
  18086. source: "./media/characters/richard-dragon/maw.svg"
  18087. }
  18088. },
  18089. },
  18090. [
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18095. {
  18096. front: {
  18097. height: math.unit(4, "feet"),
  18098. weight: math.unit(100, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/richard-smeargle/front.svg",
  18102. extra: 2952 / 2820,
  18103. bottom: 0.028
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(4, "feet"),
  18111. default: true
  18112. },
  18113. {
  18114. name: "Dynamax",
  18115. height: math.unit(20, "meters")
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18121. {
  18122. front: {
  18123. height: math.unit(6, "feet"),
  18124. weight: math.unit(110, "lb"),
  18125. name: "Front",
  18126. image: {
  18127. source: "./media/characters/klay/front.svg",
  18128. extra: 962 / 883,
  18129. bottom: 0.04
  18130. }
  18131. },
  18132. back: {
  18133. height: math.unit(6, "feet"),
  18134. weight: math.unit(110, "lb"),
  18135. name: "Back",
  18136. image: {
  18137. source: "./media/characters/klay/back.svg",
  18138. extra: 962 / 883
  18139. }
  18140. },
  18141. beans: {
  18142. height: math.unit(1.15, "feet"),
  18143. name: "Beans",
  18144. image: {
  18145. source: "./media/characters/klay/beans.svg"
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Micro",
  18152. height: math.unit(6, "inches")
  18153. },
  18154. {
  18155. name: "Mini",
  18156. height: math.unit(3, "feet")
  18157. },
  18158. {
  18159. name: "Normal",
  18160. height: math.unit(6, "feet"),
  18161. default: true
  18162. },
  18163. {
  18164. name: "Big",
  18165. height: math.unit(25, "feet")
  18166. },
  18167. {
  18168. name: "Macro",
  18169. height: math.unit(100, "feet")
  18170. },
  18171. {
  18172. name: "Megamacro",
  18173. height: math.unit(400, "feet")
  18174. },
  18175. ]
  18176. ))
  18177. characterMakers.push(() => makeCharacter(
  18178. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18179. {
  18180. front: {
  18181. height: math.unit(6, "feet"),
  18182. weight: math.unit(160, "lb"),
  18183. name: "Front",
  18184. image: {
  18185. source: "./media/characters/marcus/front.svg",
  18186. extra: 734 / 676,
  18187. bottom: 0.03
  18188. }
  18189. },
  18190. },
  18191. [
  18192. {
  18193. name: "Little",
  18194. height: math.unit(6, "feet")
  18195. },
  18196. {
  18197. name: "Normal",
  18198. height: math.unit(110, "feet"),
  18199. default: true
  18200. },
  18201. {
  18202. name: "Macro",
  18203. height: math.unit(250, "feet")
  18204. },
  18205. {
  18206. name: "Megamacro",
  18207. height: math.unit(1000, "feet")
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18213. {
  18214. front: {
  18215. height: math.unit(7, "feet"),
  18216. weight: math.unit(275, "lb"),
  18217. name: "Front",
  18218. image: {
  18219. source: "./media/characters/claude-delroute/front.svg",
  18220. extra: 230 / 214,
  18221. bottom: 0.007
  18222. }
  18223. },
  18224. side: {
  18225. height: math.unit(7, "feet"),
  18226. weight: math.unit(275, "lb"),
  18227. name: "Side",
  18228. image: {
  18229. source: "./media/characters/claude-delroute/side.svg",
  18230. extra: 222 / 214,
  18231. bottom: 0.01
  18232. }
  18233. },
  18234. back: {
  18235. height: math.unit(7, "feet"),
  18236. weight: math.unit(275, "lb"),
  18237. name: "Back",
  18238. image: {
  18239. source: "./media/characters/claude-delroute/back.svg",
  18240. extra: 230 / 214,
  18241. bottom: 0.015
  18242. }
  18243. },
  18244. maw: {
  18245. height: math.unit(0.6407, "meters"),
  18246. name: "Maw",
  18247. image: {
  18248. source: "./media/characters/claude-delroute/maw.svg"
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(7, "feet"),
  18256. default: true
  18257. },
  18258. {
  18259. name: "Lorge",
  18260. height: math.unit(20, "feet")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(8 + 4 / 12, "feet"),
  18269. weight: math.unit(600, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/dragonien/front.svg",
  18273. extra: 100 / 94,
  18274. bottom: 3.3 / 103.3445
  18275. }
  18276. },
  18277. back: {
  18278. height: math.unit(8 + 4 / 12, "feet"),
  18279. weight: math.unit(600, "lb"),
  18280. name: "Back",
  18281. image: {
  18282. source: "./media/characters/dragonien/back.svg",
  18283. extra: 776 / 746,
  18284. bottom: 6.4 / 782.0616
  18285. }
  18286. },
  18287. foot: {
  18288. height: math.unit(1.54, "feet"),
  18289. name: "Foot",
  18290. image: {
  18291. source: "./media/characters/dragonien/foot.svg",
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Normal",
  18298. height: math.unit(8 + 4 / 12, "feet"),
  18299. default: true
  18300. },
  18301. {
  18302. name: "Macro",
  18303. height: math.unit(200, "feet")
  18304. },
  18305. {
  18306. name: "Megamacro",
  18307. height: math.unit(1, "mile")
  18308. },
  18309. {
  18310. name: "Gigamacro",
  18311. height: math.unit(1000, "miles")
  18312. },
  18313. ]
  18314. ))
  18315. characterMakers.push(() => makeCharacter(
  18316. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18317. {
  18318. front: {
  18319. height: math.unit(5 + 2 / 12, "feet"),
  18320. weight: math.unit(110, "lb"),
  18321. name: "Front",
  18322. image: {
  18323. source: "./media/characters/desta/front.svg",
  18324. extra: 767 / 726,
  18325. bottom: 11.7 / 779
  18326. }
  18327. },
  18328. back: {
  18329. height: math.unit(5 + 2 / 12, "feet"),
  18330. weight: math.unit(110, "lb"),
  18331. name: "Back",
  18332. image: {
  18333. source: "./media/characters/desta/back.svg",
  18334. extra: 777 / 728,
  18335. bottom: 6 / 784
  18336. }
  18337. },
  18338. frontAlt: {
  18339. height: math.unit(5 + 2 / 12, "feet"),
  18340. weight: math.unit(110, "lb"),
  18341. name: "Front",
  18342. image: {
  18343. source: "./media/characters/desta/front-alt.svg",
  18344. extra: 1482 / 1417
  18345. }
  18346. },
  18347. side: {
  18348. height: math.unit(5 + 2 / 12, "feet"),
  18349. weight: math.unit(110, "lb"),
  18350. name: "Side",
  18351. image: {
  18352. source: "./media/characters/desta/side.svg",
  18353. extra: 2579 / 2491,
  18354. bottom: 0.053
  18355. }
  18356. },
  18357. },
  18358. [
  18359. {
  18360. name: "Micro",
  18361. height: math.unit(6, "inches")
  18362. },
  18363. {
  18364. name: "Normal",
  18365. height: math.unit(5 + 2 / 12, "feet"),
  18366. default: true
  18367. },
  18368. {
  18369. name: "Macro",
  18370. height: math.unit(62, "feet")
  18371. },
  18372. {
  18373. name: "Megamacro",
  18374. height: math.unit(1800, "feet")
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18380. {
  18381. front: {
  18382. height: math.unit(10, "feet"),
  18383. weight: math.unit(700, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/storm-alystar/front.svg",
  18387. extra: 2112 / 1898,
  18388. bottom: 0.034
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Micro",
  18395. height: math.unit(3.5, "inches")
  18396. },
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(10, "feet"),
  18400. default: true
  18401. },
  18402. {
  18403. name: "Macro",
  18404. height: math.unit(400, "feet")
  18405. },
  18406. {
  18407. name: "Deific",
  18408. height: math.unit(60, "miles")
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18414. {
  18415. front: {
  18416. height: math.unit(2.35, "meters"),
  18417. weight: math.unit(119, "kg"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/ilia/front.svg",
  18421. extra: 1285 / 1255,
  18422. bottom: 0.06
  18423. }
  18424. },
  18425. },
  18426. [
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(2.35, "meters")
  18430. },
  18431. {
  18432. name: "Macro",
  18433. height: math.unit(140, "meters"),
  18434. default: true
  18435. },
  18436. {
  18437. name: "Megamacro",
  18438. height: math.unit(100, "miles")
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18444. {
  18445. front: {
  18446. height: math.unit(6 + 5 / 12, "feet"),
  18447. weight: math.unit(190, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/kingdead/front.svg",
  18451. extra: 1228 / 1177
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Micro",
  18458. height: math.unit(7, "inches")
  18459. },
  18460. {
  18461. name: "Normal",
  18462. height: math.unit(6 + 5 / 12, "feet")
  18463. },
  18464. {
  18465. name: "Macro",
  18466. height: math.unit(150, "feet"),
  18467. default: true
  18468. },
  18469. {
  18470. name: "Megamacro",
  18471. height: math.unit(200, "miles")
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18477. {
  18478. front: {
  18479. height: math.unit(8, "feet"),
  18480. weight: math.unit(600, "lb"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/kyrehx/front.svg",
  18484. extra: 1195 / 1095,
  18485. bottom: 0.034
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Micro",
  18492. height: math.unit(2, "inches")
  18493. },
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(8, "feet"),
  18497. default: true
  18498. },
  18499. {
  18500. name: "Macro",
  18501. height: math.unit(255, "feet")
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18507. {
  18508. front: {
  18509. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18510. weight: math.unit(184, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/xang/front.svg",
  18514. extra: 845 / 755
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18522. default: true
  18523. },
  18524. {
  18525. name: "Macro",
  18526. height: math.unit(0.935 * 146, "feet")
  18527. },
  18528. {
  18529. name: "Megamacro",
  18530. height: math.unit(0.935 * 3, "miles")
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18536. {
  18537. frontDressed: {
  18538. height: math.unit(5 + 7 / 12, "feet"),
  18539. weight: math.unit(140, "lb"),
  18540. name: "Front (Dressed)",
  18541. image: {
  18542. source: "./media/characters/doc-weardno/front-dressed.svg",
  18543. extra: 263 / 234
  18544. }
  18545. },
  18546. backDressed: {
  18547. height: math.unit(5 + 7 / 12, "feet"),
  18548. weight: math.unit(140, "lb"),
  18549. name: "Back (Dressed)",
  18550. image: {
  18551. source: "./media/characters/doc-weardno/back-dressed.svg",
  18552. extra: 266 / 238
  18553. }
  18554. },
  18555. front: {
  18556. height: math.unit(5 + 7 / 12, "feet"),
  18557. weight: math.unit(140, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/doc-weardno/front.svg",
  18561. extra: 254 / 233
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Micro",
  18568. height: math.unit(3, "inches")
  18569. },
  18570. {
  18571. name: "Normal",
  18572. height: math.unit(5 + 7 / 12, "feet"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "Macro",
  18577. height: math.unit(25, "feet")
  18578. },
  18579. {
  18580. name: "Megamacro",
  18581. height: math.unit(2, "miles")
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(6 + 2 / 12, "feet"),
  18590. weight: math.unit(153, "lb"),
  18591. name: "Front",
  18592. image: {
  18593. source: "./media/characters/seth-whilst/front.svg",
  18594. bottom: 0.07
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Micro",
  18601. height: math.unit(5, "inches")
  18602. },
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(6 + 2 / 12, "feet"),
  18606. default: true
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18612. {
  18613. front: {
  18614. height: math.unit(3, "inches"),
  18615. weight: math.unit(8, "grams"),
  18616. name: "Front",
  18617. image: {
  18618. source: "./media/characters/pocket-jabari/front.svg",
  18619. extra: 1024 / 974,
  18620. bottom: 0.039
  18621. }
  18622. },
  18623. },
  18624. [
  18625. {
  18626. name: "Minimicro",
  18627. height: math.unit(8, "mm")
  18628. },
  18629. {
  18630. name: "Micro",
  18631. height: math.unit(3, "inches"),
  18632. default: true
  18633. },
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(3, "feet")
  18637. },
  18638. ]
  18639. ))
  18640. characterMakers.push(() => makeCharacter(
  18641. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18642. {
  18643. front: {
  18644. height: math.unit(15, "feet"),
  18645. weight: math.unit(3280, "lb"),
  18646. name: "Front",
  18647. image: {
  18648. source: "./media/characters/sapphy/front.svg",
  18649. extra: 671 / 577,
  18650. bottom: 0.085
  18651. }
  18652. },
  18653. back: {
  18654. height: math.unit(15, "feet"),
  18655. weight: math.unit(3280, "lb"),
  18656. name: "Back",
  18657. image: {
  18658. source: "./media/characters/sapphy/back.svg",
  18659. extra: 631 / 607,
  18660. bottom: 0.045
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(15, "feet")
  18668. },
  18669. {
  18670. name: "Casual Macro",
  18671. height: math.unit(120, "feet")
  18672. },
  18673. {
  18674. name: "Macro",
  18675. height: math.unit(2150, "feet"),
  18676. default: true
  18677. },
  18678. {
  18679. name: "Megamacro",
  18680. height: math.unit(8, "miles")
  18681. },
  18682. {
  18683. name: "Galaxy Mom",
  18684. height: math.unit(6, "megalightyears")
  18685. },
  18686. ]
  18687. ))
  18688. characterMakers.push(() => makeCharacter(
  18689. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18690. {
  18691. front: {
  18692. height: math.unit(6, "feet"),
  18693. weight: math.unit(170, "lb"),
  18694. name: "Front",
  18695. image: {
  18696. source: "./media/characters/kiro/front.svg",
  18697. extra: 1064 / 1012,
  18698. bottom: 0.052
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Micro",
  18705. height: math.unit(6, "inches")
  18706. },
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(6, "feet"),
  18710. default: true
  18711. },
  18712. {
  18713. name: "Macro",
  18714. height: math.unit(72, "feet")
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(5 + 9 / 12, "feet"),
  18723. weight: math.unit(175, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/irishfox/front.svg",
  18727. extra: 1912 / 1680,
  18728. bottom: 0.02
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Nano",
  18735. height: math.unit(1, "mm")
  18736. },
  18737. {
  18738. name: "Micro",
  18739. height: math.unit(2, "inches")
  18740. },
  18741. {
  18742. name: "Normal",
  18743. height: math.unit(5 + 9 / 12, "feet"),
  18744. default: true
  18745. },
  18746. {
  18747. name: "Macro",
  18748. height: math.unit(45, "feet")
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18754. {
  18755. front: {
  18756. height: math.unit(6 + 1 / 12, "feet"),
  18757. weight: math.unit(75, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/aronai-sieyes/front.svg",
  18761. extra: 1556 / 1480,
  18762. bottom: 0.015
  18763. }
  18764. },
  18765. side: {
  18766. height: math.unit(6 + 1 / 12, "feet"),
  18767. weight: math.unit(75, "lb"),
  18768. name: "Side",
  18769. image: {
  18770. source: "./media/characters/aronai-sieyes/side.svg",
  18771. extra: 1433 / 1390,
  18772. bottom: 0.0393
  18773. }
  18774. },
  18775. back: {
  18776. height: math.unit(6 + 1 / 12, "feet"),
  18777. weight: math.unit(75, "lb"),
  18778. name: "Back",
  18779. image: {
  18780. source: "./media/characters/aronai-sieyes/back.svg",
  18781. extra: 1544 / 1494,
  18782. bottom: 0.02
  18783. }
  18784. },
  18785. frontClothed: {
  18786. height: math.unit(6 + 1 / 12, "feet"),
  18787. weight: math.unit(75, "lb"),
  18788. name: "Front (Clothed)",
  18789. image: {
  18790. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18791. extra: 1582 / 1527
  18792. }
  18793. },
  18794. feral: {
  18795. height: math.unit(18, "feet"),
  18796. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18797. name: "Feral",
  18798. image: {
  18799. source: "./media/characters/aronai-sieyes/feral.svg",
  18800. extra: 1530 / 1240,
  18801. bottom: 0.035
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Micro",
  18808. height: math.unit(2, "inches")
  18809. },
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(6 + 1 / 12, "feet"),
  18813. default: true
  18814. }
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18819. {
  18820. front: {
  18821. height: math.unit(12, "feet"),
  18822. weight: math.unit(410, "kg"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/xuna/front.svg",
  18826. extra: 2184 / 1980
  18827. }
  18828. },
  18829. side: {
  18830. height: math.unit(12, "feet"),
  18831. weight: math.unit(410, "kg"),
  18832. name: "Side",
  18833. image: {
  18834. source: "./media/characters/xuna/side.svg",
  18835. extra: 2184 / 1980
  18836. }
  18837. },
  18838. back: {
  18839. height: math.unit(12, "feet"),
  18840. weight: math.unit(410, "kg"),
  18841. name: "Back",
  18842. image: {
  18843. source: "./media/characters/xuna/back.svg",
  18844. extra: 2184 / 1980
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Nano glow",
  18851. height: math.unit(10, "nm")
  18852. },
  18853. {
  18854. name: "Micro floof",
  18855. height: math.unit(0.3, "m")
  18856. },
  18857. {
  18858. name: "Huggable softy boi",
  18859. height: math.unit(3.6576, "m"),
  18860. default: true
  18861. },
  18862. {
  18863. name: "Admirable floof",
  18864. height: math.unit(80, "meters")
  18865. },
  18866. {
  18867. name: "Gentle macro",
  18868. height: math.unit(300, "meters")
  18869. },
  18870. {
  18871. name: "Very careful floof",
  18872. height: math.unit(3200, "meters")
  18873. },
  18874. {
  18875. name: "The mega floof",
  18876. height: math.unit(36000, "meters")
  18877. },
  18878. {
  18879. name: "Giga-fur-Wicker",
  18880. height: math.unit(4800000, "meters")
  18881. },
  18882. {
  18883. name: "Licky world",
  18884. height: math.unit(20000000, "meters")
  18885. },
  18886. {
  18887. name: "Floofy cyan sun",
  18888. height: math.unit(1500000000, "meters")
  18889. },
  18890. {
  18891. name: "Milky Wicker",
  18892. height: math.unit(1000000000000000000000, "meters")
  18893. },
  18894. {
  18895. name: "The observing Wicker",
  18896. height: math.unit(999999999999999999999999999, "meters")
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(5 + 9 / 12, "feet"),
  18905. weight: math.unit(150, "lb"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/arokha-sieyes/front.svg",
  18909. extra: 1425 / 1284,
  18910. bottom: 0.05
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(5 + 9 / 12, "feet")
  18918. },
  18919. {
  18920. name: "Macro",
  18921. height: math.unit(30, "meters"),
  18922. default: true
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(6, "feet"),
  18931. weight: math.unit(180, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/arokh-sieyes/front.svg",
  18935. extra: 1830 / 1769,
  18936. bottom: 0.01
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(6, "feet")
  18944. },
  18945. {
  18946. name: "Macro",
  18947. height: math.unit(30, "meters"),
  18948. default: true
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18954. {
  18955. side: {
  18956. height: math.unit(13 + 1 / 12, "feet"),
  18957. weight: math.unit(8.5, "tonnes"),
  18958. name: "Side",
  18959. image: {
  18960. source: "./media/characters/goldeneye/side.svg",
  18961. extra: 1182 / 778,
  18962. bottom: 0.067
  18963. }
  18964. },
  18965. paw: {
  18966. height: math.unit(3.4, "feet"),
  18967. name: "Paw",
  18968. image: {
  18969. source: "./media/characters/goldeneye/paw.svg"
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(13 + 1 / 12, "feet"),
  18977. default: true
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18983. {
  18984. front: {
  18985. height: math.unit(6 + 1 / 12, "feet"),
  18986. weight: math.unit(210, "lb"),
  18987. name: "Front",
  18988. image: {
  18989. source: "./media/characters/leonardo-lycheborne/front.svg",
  18990. extra: 390 / 365,
  18991. bottom: 0.032
  18992. }
  18993. },
  18994. side: {
  18995. height: math.unit(6 + 1 / 12, "feet"),
  18996. weight: math.unit(210, "lb"),
  18997. name: "Side",
  18998. image: {
  18999. source: "./media/characters/leonardo-lycheborne/side.svg",
  19000. extra: 390 / 365,
  19001. bottom: 0.005
  19002. }
  19003. },
  19004. back: {
  19005. height: math.unit(6 + 1 / 12, "feet"),
  19006. weight: math.unit(210, "lb"),
  19007. name: "Back",
  19008. image: {
  19009. source: "./media/characters/leonardo-lycheborne/back.svg",
  19010. extra: 392 / 366,
  19011. bottom: 0.01
  19012. }
  19013. },
  19014. hand: {
  19015. height: math.unit(1.08, "feet"),
  19016. name: "Hand",
  19017. image: {
  19018. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19019. }
  19020. },
  19021. foot: {
  19022. height: math.unit(1.32, "feet"),
  19023. name: "Foot",
  19024. image: {
  19025. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19026. }
  19027. },
  19028. were: {
  19029. height: math.unit(20, "feet"),
  19030. weight: math.unit(7800, "lb"),
  19031. name: "Were",
  19032. image: {
  19033. source: "./media/characters/leonardo-lycheborne/were.svg",
  19034. extra: 308 / 294,
  19035. bottom: 0.048
  19036. }
  19037. },
  19038. feral: {
  19039. height: math.unit(7.5, "feet"),
  19040. weight: math.unit(600, "lb"),
  19041. name: "Feral",
  19042. image: {
  19043. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19044. extra: 210 / 186,
  19045. bottom: 0.108
  19046. }
  19047. },
  19048. taur: {
  19049. height: math.unit(11, "feet"),
  19050. weight: math.unit(3300, "lb"),
  19051. name: "Taur",
  19052. image: {
  19053. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19054. extra: 320 / 303,
  19055. bottom: 0.025
  19056. }
  19057. },
  19058. barghest: {
  19059. height: math.unit(11, "feet"),
  19060. weight: math.unit(1300, "lb"),
  19061. name: "Barghest",
  19062. image: {
  19063. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19064. extra: 323 / 302,
  19065. bottom: 0.027
  19066. }
  19067. },
  19068. dick: {
  19069. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19070. name: "Dick",
  19071. image: {
  19072. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19073. }
  19074. },
  19075. dickWere: {
  19076. height: math.unit((20) / 3.8, "feet"),
  19077. name: "Dick (Were)",
  19078. image: {
  19079. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Normal",
  19086. height: math.unit(6 + 1 / 12, "feet"),
  19087. default: true
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(10, "feet"),
  19096. weight: math.unit(350, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/jet/front.svg",
  19100. extra: 2050 / 1980,
  19101. bottom: 0.013
  19102. }
  19103. },
  19104. back: {
  19105. height: math.unit(10, "feet"),
  19106. weight: math.unit(350, "lb"),
  19107. name: "Back",
  19108. image: {
  19109. source: "./media/characters/jet/back.svg",
  19110. extra: 2050 / 1980,
  19111. bottom: 0.013
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Micro",
  19118. height: math.unit(6, "inches")
  19119. },
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(10, "feet"),
  19123. default: true
  19124. },
  19125. {
  19126. name: "Macro",
  19127. height: math.unit(100, "feet")
  19128. },
  19129. ]
  19130. ))
  19131. characterMakers.push(() => makeCharacter(
  19132. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19133. {
  19134. front: {
  19135. height: math.unit(15, "feet"),
  19136. weight: math.unit(2800, "lb"),
  19137. name: "Front",
  19138. image: {
  19139. source: "./media/characters/tanarath/front.svg",
  19140. extra: 2392 / 2220,
  19141. bottom: 0.03
  19142. }
  19143. },
  19144. back: {
  19145. height: math.unit(15, "feet"),
  19146. weight: math.unit(2800, "lb"),
  19147. name: "Back",
  19148. image: {
  19149. source: "./media/characters/tanarath/back.svg",
  19150. extra: 2392 / 2220,
  19151. bottom: 0.03
  19152. }
  19153. },
  19154. },
  19155. [
  19156. {
  19157. name: "Normal",
  19158. height: math.unit(15, "feet"),
  19159. default: true
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19165. {
  19166. front: {
  19167. height: math.unit(7 + 1 / 12, "feet"),
  19168. weight: math.unit(175, "lb"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/patty-cattybatty/front.svg",
  19172. extra: 908 / 874,
  19173. bottom: 0.025
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Micro",
  19180. height: math.unit(1, "inch")
  19181. },
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(7 + 1 / 12, "feet")
  19185. },
  19186. {
  19187. name: "Mini Macro",
  19188. height: math.unit(155, "feet")
  19189. },
  19190. {
  19191. name: "Macro",
  19192. height: math.unit(1077, "feet")
  19193. },
  19194. {
  19195. name: "Mega Macro",
  19196. height: math.unit(47650, "feet"),
  19197. default: true
  19198. },
  19199. {
  19200. name: "Giga Macro",
  19201. height: math.unit(440, "miles")
  19202. },
  19203. {
  19204. name: "Tera Macro",
  19205. height: math.unit(8700, "miles")
  19206. },
  19207. {
  19208. name: "Planetary Macro",
  19209. height: math.unit(32700, "miles")
  19210. },
  19211. {
  19212. name: "Solar Macro",
  19213. height: math.unit(550000, "miles")
  19214. },
  19215. {
  19216. name: "Celestial Macro",
  19217. height: math.unit(2.5, "AU")
  19218. },
  19219. ]
  19220. ))
  19221. characterMakers.push(() => makeCharacter(
  19222. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19223. {
  19224. front: {
  19225. height: math.unit(4 + 5 / 12, "feet"),
  19226. weight: math.unit(90, "lb"),
  19227. name: "Front",
  19228. image: {
  19229. source: "./media/characters/cappu/front.svg",
  19230. extra: 1247 / 1152,
  19231. bottom: 0.012
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(4 + 5 / 12, "feet"),
  19239. default: true
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19245. {
  19246. frontDressed: {
  19247. height: math.unit(70, "cm"),
  19248. weight: math.unit(6, "kg"),
  19249. name: "Front (Dressed)",
  19250. image: {
  19251. source: "./media/characters/sebi/front-dressed.svg",
  19252. extra: 713.5 / 686.5,
  19253. bottom: 0.003
  19254. }
  19255. },
  19256. front: {
  19257. height: math.unit(70, "cm"),
  19258. weight: math.unit(5, "kg"),
  19259. name: "Front",
  19260. image: {
  19261. source: "./media/characters/sebi/front.svg",
  19262. extra: 713.5 / 686.5,
  19263. bottom: 0.003
  19264. }
  19265. }
  19266. },
  19267. [
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(70, "cm"),
  19271. default: true
  19272. },
  19273. {
  19274. name: "Macro",
  19275. height: math.unit(8, "meters")
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(6, "feet"),
  19284. weight: math.unit(150, "lb"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/typhek/front.svg",
  19288. extra: 1948 / 1929,
  19289. bottom: 0.025
  19290. }
  19291. },
  19292. side: {
  19293. height: math.unit(6, "feet"),
  19294. weight: math.unit(150, "lb"),
  19295. name: "Side",
  19296. image: {
  19297. source: "./media/characters/typhek/side.svg",
  19298. extra: 2034 / 2010,
  19299. bottom: 0.003
  19300. }
  19301. },
  19302. back: {
  19303. height: math.unit(6, "feet"),
  19304. weight: math.unit(150, "lb"),
  19305. name: "Back",
  19306. image: {
  19307. source: "./media/characters/typhek/back.svg",
  19308. extra: 2005 / 1978,
  19309. bottom: 0.004
  19310. }
  19311. },
  19312. palm: {
  19313. height: math.unit(1.2, "feet"),
  19314. name: "Palm",
  19315. image: {
  19316. source: "./media/characters/typhek/palm.svg"
  19317. }
  19318. },
  19319. fist: {
  19320. height: math.unit(1.1, "feet"),
  19321. name: "Fist",
  19322. image: {
  19323. source: "./media/characters/typhek/fist.svg"
  19324. }
  19325. },
  19326. foot: {
  19327. height: math.unit(1.57, "feet"),
  19328. name: "Foot",
  19329. image: {
  19330. source: "./media/characters/typhek/foot.svg"
  19331. }
  19332. },
  19333. sole: {
  19334. height: math.unit(2.05, "feet"),
  19335. name: "Sole",
  19336. image: {
  19337. source: "./media/characters/typhek/sole.svg"
  19338. }
  19339. },
  19340. },
  19341. [
  19342. {
  19343. name: "Macro",
  19344. height: math.unit(40, "stories"),
  19345. default: true
  19346. },
  19347. {
  19348. name: "Megamacro",
  19349. height: math.unit(1, "mile")
  19350. },
  19351. {
  19352. name: "Gigamacro",
  19353. height: math.unit(4000, "solarradii")
  19354. },
  19355. {
  19356. name: "Universal",
  19357. height: math.unit(1.1, "universes")
  19358. }
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19363. {
  19364. side: {
  19365. height: math.unit(5 + 7 / 12, "feet"),
  19366. weight: math.unit(150, "lb"),
  19367. name: "Side",
  19368. image: {
  19369. source: "./media/characters/kassy/side.svg",
  19370. extra: 1280 / 1225,
  19371. bottom: 0.002
  19372. }
  19373. },
  19374. front: {
  19375. height: math.unit(5 + 7 / 12, "feet"),
  19376. weight: math.unit(150, "lb"),
  19377. name: "Front",
  19378. image: {
  19379. source: "./media/characters/kassy/front.svg",
  19380. extra: 1280 / 1225,
  19381. bottom: 0.025
  19382. }
  19383. },
  19384. back: {
  19385. height: math.unit(5 + 7 / 12, "feet"),
  19386. weight: math.unit(150, "lb"),
  19387. name: "Back",
  19388. image: {
  19389. source: "./media/characters/kassy/back.svg",
  19390. extra: 1280 / 1225,
  19391. bottom: 0.002
  19392. }
  19393. },
  19394. foot: {
  19395. height: math.unit(1.266, "feet"),
  19396. name: "Foot",
  19397. image: {
  19398. source: "./media/characters/kassy/foot.svg"
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(5 + 7 / 12, "feet")
  19406. },
  19407. {
  19408. name: "Macro",
  19409. height: math.unit(137, "feet"),
  19410. default: true
  19411. },
  19412. {
  19413. name: "Megamacro",
  19414. height: math.unit(1, "mile")
  19415. },
  19416. ]
  19417. ))
  19418. characterMakers.push(() => makeCharacter(
  19419. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19420. {
  19421. front: {
  19422. height: math.unit(6 + 1 / 12, "feet"),
  19423. weight: math.unit(200, "lb"),
  19424. name: "Front",
  19425. image: {
  19426. source: "./media/characters/neil/front.svg",
  19427. extra: 1326 / 1250,
  19428. bottom: 0.023
  19429. }
  19430. },
  19431. },
  19432. [
  19433. {
  19434. name: "Normal",
  19435. height: math.unit(6 + 1 / 12, "feet"),
  19436. default: true
  19437. },
  19438. {
  19439. name: "Macro",
  19440. height: math.unit(200, "feet")
  19441. },
  19442. ]
  19443. ))
  19444. characterMakers.push(() => makeCharacter(
  19445. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19446. {
  19447. front: {
  19448. height: math.unit(5 + 9 / 12, "feet"),
  19449. weight: math.unit(190, "lb"),
  19450. name: "Front",
  19451. image: {
  19452. source: "./media/characters/atticus/front.svg",
  19453. extra: 2934 / 2785,
  19454. bottom: 0.025
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(5 + 9 / 12, "feet"),
  19462. default: true
  19463. },
  19464. {
  19465. name: "Macro",
  19466. height: math.unit(180, "feet")
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19472. {
  19473. side: {
  19474. height: math.unit(9, "feet"),
  19475. weight: math.unit(650, "lb"),
  19476. name: "Side",
  19477. image: {
  19478. source: "./media/characters/milo/side.svg",
  19479. extra: 2644 / 2310,
  19480. bottom: 0.032
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(9, "feet"),
  19488. default: true
  19489. },
  19490. {
  19491. name: "Macro",
  19492. height: math.unit(300, "feet")
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19498. {
  19499. side: {
  19500. height: math.unit(8, "meters"),
  19501. weight: math.unit(90000, "kg"),
  19502. name: "Side",
  19503. image: {
  19504. source: "./media/characters/ijzer/side.svg",
  19505. extra: 2756 / 1600,
  19506. bottom: 0.01
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Small",
  19513. height: math.unit(3, "meters")
  19514. },
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(8, "meters"),
  19518. default: true
  19519. },
  19520. {
  19521. name: "Normal+",
  19522. height: math.unit(10, "meters")
  19523. },
  19524. {
  19525. name: "Bigger",
  19526. height: math.unit(24, "meters")
  19527. },
  19528. {
  19529. name: "Huge",
  19530. height: math.unit(80, "meters")
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19536. {
  19537. front: {
  19538. height: math.unit(6 + 2 / 12, "feet"),
  19539. weight: math.unit(153, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/luca-cervicum/front.svg",
  19543. extra: 370 / 327,
  19544. bottom: 0.015
  19545. }
  19546. },
  19547. back: {
  19548. height: math.unit(6 + 2 / 12, "feet"),
  19549. weight: math.unit(153, "lb"),
  19550. name: "Back",
  19551. image: {
  19552. source: "./media/characters/luca-cervicum/back.svg",
  19553. extra: 367 / 333,
  19554. bottom: 0.005
  19555. }
  19556. },
  19557. frontGear: {
  19558. height: math.unit(6 + 2 / 12, "feet"),
  19559. weight: math.unit(173, "lb"),
  19560. name: "Front (Gear)",
  19561. image: {
  19562. source: "./media/characters/luca-cervicum/front-gear.svg",
  19563. extra: 377 / 333,
  19564. bottom: 0.006
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(6 + 2 / 12, "feet"),
  19572. default: true
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(6 + 1 / 12, "feet"),
  19581. weight: math.unit(304, "lb"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/oliver/front.svg",
  19585. extra: 157 / 143,
  19586. bottom: 0.08
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Normal",
  19593. height: math.unit(6 + 1 / 12, "feet"),
  19594. default: true
  19595. },
  19596. ]
  19597. ))
  19598. characterMakers.push(() => makeCharacter(
  19599. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19600. {
  19601. front: {
  19602. height: math.unit(5 + 7 / 12, "feet"),
  19603. weight: math.unit(140, "lb"),
  19604. name: "Front",
  19605. image: {
  19606. source: "./media/characters/shane/front.svg",
  19607. extra: 304 / 289,
  19608. bottom: 0.005
  19609. }
  19610. },
  19611. },
  19612. [
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(5 + 7 / 12, "feet"),
  19616. default: true
  19617. },
  19618. ]
  19619. ))
  19620. characterMakers.push(() => makeCharacter(
  19621. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19622. {
  19623. front: {
  19624. height: math.unit(5 + 9 / 12, "feet"),
  19625. weight: math.unit(178, "lb"),
  19626. name: "Front",
  19627. image: {
  19628. source: "./media/characters/shin/front.svg",
  19629. extra: 159 / 151,
  19630. bottom: 0.015
  19631. }
  19632. },
  19633. },
  19634. [
  19635. {
  19636. name: "Normal",
  19637. height: math.unit(5 + 9 / 12, "feet"),
  19638. default: true
  19639. },
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19644. {
  19645. front: {
  19646. height: math.unit(5 + 10 / 12, "feet"),
  19647. weight: math.unit(168, "lb"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/xerxes/front.svg",
  19651. extra: 282 / 260,
  19652. bottom: 0.045
  19653. }
  19654. },
  19655. },
  19656. [
  19657. {
  19658. name: "Normal",
  19659. height: math.unit(5 + 10 / 12, "feet"),
  19660. default: true
  19661. },
  19662. ]
  19663. ))
  19664. characterMakers.push(() => makeCharacter(
  19665. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19666. {
  19667. front: {
  19668. height: math.unit(6 + 7 / 12, "feet"),
  19669. weight: math.unit(208, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/chaska/front.svg",
  19673. extra: 332 / 319,
  19674. bottom: 0.015
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Normal",
  19681. height: math.unit(6 + 7 / 12, "feet"),
  19682. default: true
  19683. },
  19684. ]
  19685. ))
  19686. characterMakers.push(() => makeCharacter(
  19687. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19688. {
  19689. front: {
  19690. height: math.unit(5 + 8 / 12, "feet"),
  19691. weight: math.unit(208, "lb"),
  19692. name: "Front",
  19693. image: {
  19694. source: "./media/characters/enuk/front.svg",
  19695. extra: 437 / 406,
  19696. bottom: 0.02
  19697. }
  19698. },
  19699. },
  19700. [
  19701. {
  19702. name: "Normal",
  19703. height: math.unit(5 + 8 / 12, "feet"),
  19704. default: true
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(5 + 10 / 12, "feet"),
  19713. weight: math.unit(252, "lb"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/bruun/front.svg",
  19717. extra: 197 / 187,
  19718. bottom: 0.012
  19719. }
  19720. },
  19721. },
  19722. [
  19723. {
  19724. name: "Normal",
  19725. height: math.unit(5 + 10 / 12, "feet"),
  19726. default: true
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19732. {
  19733. front: {
  19734. height: math.unit(6 + 10 / 12, "feet"),
  19735. weight: math.unit(255, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/alexeev/front.svg",
  19739. extra: 213 / 200,
  19740. bottom: 0.05
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(6 + 10 / 12, "feet"),
  19748. default: true
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(2 + 8 / 12, "feet"),
  19757. weight: math.unit(22, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/evelyn/front.svg",
  19761. extra: 208 / 180
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(2 + 8 / 12, "feet"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(5 + 9 / 12, "feet"),
  19778. weight: math.unit(139, "lb"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/inca/front.svg",
  19782. extra: 294 / 291,
  19783. bottom: 0.03
  19784. }
  19785. },
  19786. },
  19787. [
  19788. {
  19789. name: "Normal",
  19790. height: math.unit(5 + 9 / 12, "feet"),
  19791. default: true
  19792. },
  19793. ]
  19794. ))
  19795. characterMakers.push(() => makeCharacter(
  19796. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19797. {
  19798. front: {
  19799. height: math.unit(5 + 1 / 12, "feet"),
  19800. weight: math.unit(84, "lb"),
  19801. name: "Front",
  19802. image: {
  19803. source: "./media/characters/magdalene/front.svg",
  19804. extra: 293 / 273
  19805. }
  19806. },
  19807. },
  19808. [
  19809. {
  19810. name: "Normal",
  19811. height: math.unit(5 + 1 / 12, "feet"),
  19812. default: true
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19818. {
  19819. front: {
  19820. height: math.unit(6 + 3 / 12, "feet"),
  19821. weight: math.unit(185, "lb"),
  19822. name: "Front",
  19823. image: {
  19824. source: "./media/characters/mera/front.svg",
  19825. extra: 291 / 277,
  19826. bottom: 0.03
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(6 + 3 / 12, "feet"),
  19834. default: true
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19840. {
  19841. front: {
  19842. height: math.unit(6 + 7 / 12, "feet"),
  19843. weight: math.unit(160, "lb"),
  19844. name: "Front",
  19845. image: {
  19846. source: "./media/characters/ceres/front.svg",
  19847. extra: 1023 / 950,
  19848. bottom: 0.027
  19849. }
  19850. },
  19851. back: {
  19852. height: math.unit(6 + 7 / 12, "feet"),
  19853. weight: math.unit(160, "lb"),
  19854. name: "Back",
  19855. image: {
  19856. source: "./media/characters/ceres/back.svg",
  19857. extra: 1023 / 950
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(6 + 7 / 12, "feet"),
  19865. default: true
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(5 + 10 / 12, "feet"),
  19874. weight: math.unit(150, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/kris/front.svg",
  19878. extra: 885 / 803,
  19879. bottom: 0.03
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(5 + 10 / 12, "feet"),
  19887. default: true
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19893. {
  19894. front: {
  19895. height: math.unit(7, "feet"),
  19896. weight: math.unit(120, "kg"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/taluthus/front.svg",
  19900. extra: 903 / 833,
  19901. bottom: 0.015
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(7, "feet"),
  19909. default: true
  19910. },
  19911. {
  19912. name: "Macro",
  19913. height: math.unit(300, "feet")
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(5 + 9 / 12, "feet"),
  19922. weight: math.unit(145, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/dawn/front.svg",
  19926. extra: 2094 / 2016,
  19927. bottom: 0.025
  19928. }
  19929. },
  19930. back: {
  19931. height: math.unit(5 + 9 / 12, "feet"),
  19932. weight: math.unit(160, "lb"),
  19933. name: "Back",
  19934. image: {
  19935. source: "./media/characters/dawn/back.svg",
  19936. extra: 2112 / 2080,
  19937. bottom: 0.005
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(6 + 7 / 12, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19951. {
  19952. anthro: {
  19953. height: math.unit(8 + 3 / 12, "feet"),
  19954. weight: math.unit(450, "lb"),
  19955. name: "Anthro",
  19956. image: {
  19957. source: "./media/characters/arador/anthro.svg",
  19958. extra: 1835 / 1718,
  19959. bottom: 0.025
  19960. }
  19961. },
  19962. feral: {
  19963. height: math.unit(4, "feet"),
  19964. weight: math.unit(200, "lb"),
  19965. name: "Feral",
  19966. image: {
  19967. source: "./media/characters/arador/feral.svg",
  19968. extra: 1683 / 1514,
  19969. bottom: 0.07
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(8 + 3 / 12, "feet")
  19977. },
  19978. {
  19979. name: "Macro",
  19980. height: math.unit(82.5, "feet"),
  19981. default: true
  19982. },
  19983. ]
  19984. ))
  19985. characterMakers.push(() => makeCharacter(
  19986. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19987. {
  19988. front: {
  19989. height: math.unit(5 + 10 / 12, "feet"),
  19990. weight: math.unit(125, "lb"),
  19991. name: "Front",
  19992. image: {
  19993. source: "./media/characters/dharsi/front.svg",
  19994. extra: 716 / 630,
  19995. bottom: 0.035
  19996. }
  19997. },
  19998. },
  19999. [
  20000. {
  20001. name: "Nano",
  20002. height: math.unit(100, "nm")
  20003. },
  20004. {
  20005. name: "Micro",
  20006. height: math.unit(2, "inches")
  20007. },
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(5 + 10 / 12, "feet"),
  20011. default: true
  20012. },
  20013. {
  20014. name: "Macro",
  20015. height: math.unit(1000, "feet")
  20016. },
  20017. {
  20018. name: "Megamacro",
  20019. height: math.unit(10, "miles")
  20020. },
  20021. {
  20022. name: "Gigamacro",
  20023. height: math.unit(3000, "miles")
  20024. },
  20025. {
  20026. name: "Teramacro",
  20027. height: math.unit(500000, "miles")
  20028. },
  20029. {
  20030. name: "Teramacro+",
  20031. height: math.unit(30, "galaxies")
  20032. },
  20033. ]
  20034. ))
  20035. characterMakers.push(() => makeCharacter(
  20036. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20037. {
  20038. front: {
  20039. height: math.unit(6, "feet"),
  20040. weight: math.unit(150, "lb"),
  20041. name: "Front",
  20042. image: {
  20043. source: "./media/characters/deathy/front.svg",
  20044. extra: 1552 / 1463,
  20045. bottom: 0.025
  20046. }
  20047. },
  20048. side: {
  20049. height: math.unit(6, "feet"),
  20050. weight: math.unit(150, "lb"),
  20051. name: "Side",
  20052. image: {
  20053. source: "./media/characters/deathy/side.svg",
  20054. extra: 1604 / 1455,
  20055. bottom: 0.025
  20056. }
  20057. },
  20058. back: {
  20059. height: math.unit(6, "feet"),
  20060. weight: math.unit(150, "lb"),
  20061. name: "Back",
  20062. image: {
  20063. source: "./media/characters/deathy/back.svg",
  20064. extra: 1580 / 1463,
  20065. bottom: 0.005
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "Micro",
  20072. height: math.unit(5, "millimeters")
  20073. },
  20074. {
  20075. name: "Normal",
  20076. height: math.unit(6 + 5 / 12, "feet"),
  20077. default: true
  20078. },
  20079. ]
  20080. ))
  20081. characterMakers.push(() => makeCharacter(
  20082. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20083. {
  20084. front: {
  20085. height: math.unit(16, "feet"),
  20086. weight: math.unit(4000, "lb"),
  20087. name: "Front",
  20088. image: {
  20089. source: "./media/characters/juniper/front.svg",
  20090. bottom: 0.04
  20091. }
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(16, "feet"),
  20098. default: true
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(6, "feet"),
  20107. weight: math.unit(150, "lb"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/hipster/front.svg",
  20111. extra: 1312 / 1209,
  20112. bottom: 0.025
  20113. }
  20114. },
  20115. back: {
  20116. height: math.unit(6, "feet"),
  20117. weight: math.unit(150, "lb"),
  20118. name: "Back",
  20119. image: {
  20120. source: "./media/characters/hipster/back.svg",
  20121. extra: 1281 / 1196,
  20122. bottom: 0.01
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Micro",
  20129. height: math.unit(1, "mm")
  20130. },
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(4, "inches"),
  20134. default: true
  20135. },
  20136. {
  20137. name: "Macro",
  20138. height: math.unit(500, "feet")
  20139. },
  20140. {
  20141. name: "Megamacro",
  20142. height: math.unit(1000, "miles")
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20148. {
  20149. front: {
  20150. height: math.unit(6, "feet"),
  20151. weight: math.unit(150, "lb"),
  20152. name: "Front",
  20153. image: {
  20154. source: "./media/characters/tendirmuldr/front.svg",
  20155. extra: 1878 / 1772,
  20156. bottom: 0.015
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Megamacro",
  20163. height: math.unit(1500, "miles"),
  20164. default: true
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20170. {
  20171. front: {
  20172. height: math.unit(14, "feet"),
  20173. weight: math.unit(12000, "lb"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/mort/front.svg",
  20177. extra: 365 / 318,
  20178. bottom: 0.01
  20179. }
  20180. },
  20181. side: {
  20182. height: math.unit(14, "feet"),
  20183. weight: math.unit(12000, "lb"),
  20184. name: "Side",
  20185. image: {
  20186. source: "./media/characters/mort/side.svg",
  20187. extra: 365 / 318,
  20188. bottom: 0.052
  20189. },
  20190. default: true
  20191. },
  20192. back: {
  20193. height: math.unit(14, "feet"),
  20194. weight: math.unit(12000, "lb"),
  20195. name: "Back",
  20196. image: {
  20197. source: "./media/characters/mort/back.svg",
  20198. extra: 371 / 332,
  20199. bottom: 0.18
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(14, "feet"),
  20207. default: true
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20213. {
  20214. front: {
  20215. height: math.unit(8, "feet"),
  20216. weight: math.unit(1, "ton"),
  20217. name: "Front",
  20218. image: {
  20219. source: "./media/characters/lycoa/front.svg",
  20220. extra: 1875 / 1789,
  20221. bottom: 0.022
  20222. }
  20223. },
  20224. back: {
  20225. height: math.unit(8, "feet"),
  20226. weight: math.unit(1, "ton"),
  20227. name: "Back",
  20228. image: {
  20229. source: "./media/characters/lycoa/back.svg",
  20230. extra: 1835 / 1781,
  20231. bottom: 0.03
  20232. }
  20233. },
  20234. head: {
  20235. height: math.unit(2.1, "feet"),
  20236. name: "Head",
  20237. image: {
  20238. source: "./media/characters/lycoa/head.svg"
  20239. }
  20240. },
  20241. tailmaw: {
  20242. height: math.unit(1.9, "feet"),
  20243. name: "Tailmaw",
  20244. image: {
  20245. source: "./media/characters/lycoa/tailmaw.svg"
  20246. }
  20247. },
  20248. tentacles: {
  20249. height: math.unit(2.1, "feet"),
  20250. name: "Tentacles",
  20251. image: {
  20252. source: "./media/characters/lycoa/tentacles.svg"
  20253. }
  20254. },
  20255. dick: {
  20256. height: math.unit(1.73, "feet"),
  20257. name: "Dick",
  20258. image: {
  20259. source: "./media/characters/lycoa/dick.svg"
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(8, "feet"),
  20267. default: true
  20268. },
  20269. {
  20270. name: "Macro",
  20271. height: math.unit(30, "feet")
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20277. {
  20278. front: {
  20279. height: math.unit(4 + 2 / 12, "feet"),
  20280. weight: math.unit(70, "lb"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/naldara/front.svg",
  20284. extra: 841 / 720,
  20285. bottom: 0.04
  20286. }
  20287. },
  20288. naga: {
  20289. height: math.unit(23, "feet"),
  20290. weight: math.unit(15000, "kg"),
  20291. name: "Naga",
  20292. image: {
  20293. source: "./media/characters/naldara/naga.svg",
  20294. extra: 3290 / 2959,
  20295. bottom: 124 / 3432
  20296. }
  20297. },
  20298. },
  20299. [
  20300. {
  20301. name: "Normal",
  20302. height: math.unit(4 + 2 / 12, "feet"),
  20303. default: true
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20309. {
  20310. front: {
  20311. height: math.unit(13 + 7 / 12, "feet"),
  20312. weight: math.unit(1500, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/briar/front.svg",
  20316. extra: 626 / 596,
  20317. bottom: 0.08
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(13 + 7 / 12, "feet"),
  20325. default: true
  20326. },
  20327. ]
  20328. ))
  20329. characterMakers.push(() => makeCharacter(
  20330. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20331. {
  20332. side: {
  20333. height: math.unit(10, "feet"),
  20334. weight: math.unit(500, "lb"),
  20335. name: "Side",
  20336. image: {
  20337. source: "./media/characters/vanguard/side.svg",
  20338. extra: 502 / 425,
  20339. bottom: 0.087
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(10, "feet"),
  20347. default: true
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20353. {
  20354. front: {
  20355. height: math.unit(7.5, "feet"),
  20356. weight: math.unit(2, "lb"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/artemis/front.svg",
  20360. extra: 1192 / 1075,
  20361. bottom: 0.07
  20362. }
  20363. },
  20364. frontNsfw: {
  20365. height: math.unit(7.5, "feet"),
  20366. weight: math.unit(2, "lb"),
  20367. name: "Front (NSFW)",
  20368. image: {
  20369. source: "./media/characters/artemis/front-nsfw.svg",
  20370. extra: 1192 / 1075,
  20371. bottom: 0.07
  20372. }
  20373. },
  20374. frontNsfwer: {
  20375. height: math.unit(7.5, "feet"),
  20376. weight: math.unit(2, "lb"),
  20377. name: "Front (NSFW-er)",
  20378. image: {
  20379. source: "./media/characters/artemis/front-nsfwer.svg",
  20380. extra: 1192 / 1075,
  20381. bottom: 0.07
  20382. }
  20383. },
  20384. side: {
  20385. height: math.unit(7.5, "feet"),
  20386. weight: math.unit(2, "lb"),
  20387. name: "Side",
  20388. image: {
  20389. source: "./media/characters/artemis/side.svg",
  20390. extra: 1192 / 1075,
  20391. bottom: 0.07
  20392. }
  20393. },
  20394. sideNsfw: {
  20395. height: math.unit(7.5, "feet"),
  20396. weight: math.unit(2, "lb"),
  20397. name: "Side (NSFW)",
  20398. image: {
  20399. source: "./media/characters/artemis/side-nsfw.svg",
  20400. extra: 1192 / 1075,
  20401. bottom: 0.07
  20402. }
  20403. },
  20404. sideNsfwer: {
  20405. height: math.unit(7.5, "feet"),
  20406. weight: math.unit(2, "lb"),
  20407. name: "Side (NSFW-er)",
  20408. image: {
  20409. source: "./media/characters/artemis/side-nsfwer.svg",
  20410. extra: 1192 / 1075,
  20411. bottom: 0.07
  20412. }
  20413. },
  20414. maw: {
  20415. height: math.unit(1.1, "feet"),
  20416. name: "Maw",
  20417. image: {
  20418. source: "./media/characters/artemis/maw.svg"
  20419. }
  20420. },
  20421. stomach: {
  20422. height: math.unit(0.95, "feet"),
  20423. name: "Stomach",
  20424. image: {
  20425. source: "./media/characters/artemis/stomach.svg"
  20426. }
  20427. },
  20428. dickCanine: {
  20429. height: math.unit(1, "feet"),
  20430. name: "Dick (Canine)",
  20431. image: {
  20432. source: "./media/characters/artemis/dick-canine.svg"
  20433. }
  20434. },
  20435. dickEquine: {
  20436. height: math.unit(0.85, "feet"),
  20437. name: "Dick (Equine)",
  20438. image: {
  20439. source: "./media/characters/artemis/dick-equine.svg"
  20440. }
  20441. },
  20442. dickExotic: {
  20443. height: math.unit(0.85, "feet"),
  20444. name: "Dick (Exotic)",
  20445. image: {
  20446. source: "./media/characters/artemis/dick-exotic.svg"
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(7.5, "feet"),
  20454. default: true
  20455. },
  20456. {
  20457. name: "Enlarged",
  20458. height: math.unit(12, "feet")
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(5 + 3 / 12, "feet"),
  20467. weight: math.unit(160, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/kira/front.svg",
  20471. extra: 906 / 786,
  20472. bottom: 0.01
  20473. }
  20474. },
  20475. back: {
  20476. height: math.unit(5 + 3 / 12, "feet"),
  20477. weight: math.unit(160, "lb"),
  20478. name: "Back",
  20479. image: {
  20480. source: "./media/characters/kira/back.svg",
  20481. extra: 882 / 757,
  20482. bottom: 0.005
  20483. }
  20484. },
  20485. frontDressed: {
  20486. height: math.unit(5 + 3 / 12, "feet"),
  20487. weight: math.unit(160, "lb"),
  20488. name: "Front (Dressed)",
  20489. image: {
  20490. source: "./media/characters/kira/front-dressed.svg",
  20491. extra: 906 / 786,
  20492. bottom: 0.01
  20493. }
  20494. },
  20495. beans: {
  20496. height: math.unit(0.92, "feet"),
  20497. name: "Beans",
  20498. image: {
  20499. source: "./media/characters/kira/beans.svg"
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(5 + 3 / 12, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(5 + 4 / 12, "feet"),
  20516. weight: math.unit(145, "lb"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/scramble/front.svg",
  20520. extra: 763 / 727,
  20521. bottom: 0.05
  20522. }
  20523. },
  20524. back: {
  20525. height: math.unit(5 + 4 / 12, "feet"),
  20526. weight: math.unit(145, "lb"),
  20527. name: "Back",
  20528. image: {
  20529. source: "./media/characters/scramble/back.svg",
  20530. extra: 826 / 737,
  20531. bottom: 0.002
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(5 + 4 / 12, "feet"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20545. {
  20546. side: {
  20547. height: math.unit(6 + 2 / 12, "feet"),
  20548. weight: math.unit(190, "lb"),
  20549. name: "Side",
  20550. image: {
  20551. source: "./media/characters/biscuit/side.svg",
  20552. extra: 858 / 791,
  20553. bottom: 0.044
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(6 + 2 / 12, "feet"),
  20561. default: true
  20562. },
  20563. ]
  20564. ))
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20567. {
  20568. front: {
  20569. height: math.unit(5 + 2 / 12, "feet"),
  20570. weight: math.unit(120, "lb"),
  20571. name: "Front",
  20572. image: {
  20573. source: "./media/characters/poffin/front.svg",
  20574. extra: 786 / 680,
  20575. bottom: 0.005
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(5 + 2 / 12, "feet"),
  20583. default: true
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20589. {
  20590. front: {
  20591. height: math.unit(6 + 3 / 12, "feet"),
  20592. weight: math.unit(519, "lb"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/dhari/front.svg",
  20596. extra: 1048 / 946,
  20597. bottom: 0.015
  20598. }
  20599. },
  20600. back: {
  20601. height: math.unit(6 + 3 / 12, "feet"),
  20602. weight: math.unit(519, "lb"),
  20603. name: "Back",
  20604. image: {
  20605. source: "./media/characters/dhari/back.svg",
  20606. extra: 1048 / 931,
  20607. bottom: 0.005
  20608. }
  20609. },
  20610. frontDressed: {
  20611. height: math.unit(6 + 3 / 12, "feet"),
  20612. weight: math.unit(519, "lb"),
  20613. name: "Front (Dressed)",
  20614. image: {
  20615. source: "./media/characters/dhari/front-dressed.svg",
  20616. extra: 1713 / 1546,
  20617. bottom: 0.02
  20618. }
  20619. },
  20620. backDressed: {
  20621. height: math.unit(6 + 3 / 12, "feet"),
  20622. weight: math.unit(519, "lb"),
  20623. name: "Back (Dressed)",
  20624. image: {
  20625. source: "./media/characters/dhari/back-dressed.svg",
  20626. extra: 1699 / 1537,
  20627. bottom: 0.01
  20628. }
  20629. },
  20630. maw: {
  20631. height: math.unit(0.95, "feet"),
  20632. name: "Maw",
  20633. image: {
  20634. source: "./media/characters/dhari/maw.svg"
  20635. }
  20636. },
  20637. wereFront: {
  20638. height: math.unit(12 + 8 / 12, "feet"),
  20639. weight: math.unit(4000, "lb"),
  20640. name: "Front (Were)",
  20641. image: {
  20642. source: "./media/characters/dhari/were-front.svg",
  20643. extra: 1065 / 969,
  20644. bottom: 0.015
  20645. }
  20646. },
  20647. wereBack: {
  20648. height: math.unit(12 + 8 / 12, "feet"),
  20649. weight: math.unit(4000, "lb"),
  20650. name: "Back (Were)",
  20651. image: {
  20652. source: "./media/characters/dhari/were-back.svg",
  20653. extra: 1065 / 969,
  20654. bottom: 0.012
  20655. }
  20656. },
  20657. wereMaw: {
  20658. height: math.unit(0.625, "meters"),
  20659. name: "Maw (Were)",
  20660. image: {
  20661. source: "./media/characters/dhari/were-maw.svg"
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(6 + 3 / 12, "feet"),
  20669. default: true
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20675. {
  20676. anthro: {
  20677. height: math.unit(5 + 7 / 12, "feet"),
  20678. weight: math.unit(175, "lb"),
  20679. name: "Anthro",
  20680. image: {
  20681. source: "./media/characters/rena-dyne/anthro.svg",
  20682. extra: 1849 / 1785,
  20683. bottom: 0.005
  20684. }
  20685. },
  20686. taur: {
  20687. height: math.unit(15 + 6 / 12, "feet"),
  20688. weight: math.unit(8000, "lb"),
  20689. name: "Taur",
  20690. image: {
  20691. source: "./media/characters/rena-dyne/taur.svg",
  20692. extra: 2315 / 2234,
  20693. bottom: 0.033
  20694. }
  20695. },
  20696. },
  20697. [
  20698. {
  20699. name: "Normal",
  20700. height: math.unit(5 + 7 / 12, "feet"),
  20701. default: true
  20702. },
  20703. ]
  20704. ))
  20705. characterMakers.push(() => makeCharacter(
  20706. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20707. {
  20708. front: {
  20709. height: math.unit(8, "feet"),
  20710. weight: math.unit(600, "lb"),
  20711. name: "Front",
  20712. image: {
  20713. source: "./media/characters/weremeep/front.svg",
  20714. extra: 967 / 862,
  20715. bottom: 0.01
  20716. }
  20717. },
  20718. },
  20719. [
  20720. {
  20721. name: "Normal",
  20722. height: math.unit(8, "feet"),
  20723. default: true
  20724. },
  20725. {
  20726. name: "Lorg",
  20727. height: math.unit(12, "feet")
  20728. },
  20729. {
  20730. name: "Oh Lawd She Comin'",
  20731. height: math.unit(20, "feet")
  20732. },
  20733. ]
  20734. ))
  20735. characterMakers.push(() => makeCharacter(
  20736. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20737. {
  20738. front: {
  20739. height: math.unit(4, "feet"),
  20740. weight: math.unit(90, "lb"),
  20741. name: "Front",
  20742. image: {
  20743. source: "./media/characters/reza/front.svg",
  20744. extra: 1183 / 1111,
  20745. bottom: 0.017
  20746. }
  20747. },
  20748. back: {
  20749. height: math.unit(4, "feet"),
  20750. weight: math.unit(90, "lb"),
  20751. name: "Back",
  20752. image: {
  20753. source: "./media/characters/reza/back.svg",
  20754. extra: 1183 / 1111,
  20755. bottom: 0.01
  20756. }
  20757. },
  20758. drake: {
  20759. height: math.unit(30, "feet"),
  20760. weight: math.unit(246960, "lb"),
  20761. name: "Drake",
  20762. image: {
  20763. source: "./media/characters/reza/drake.svg",
  20764. extra: 2350 / 2024,
  20765. bottom: 60.7 / 2403
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(4, "feet"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20779. {
  20780. side: {
  20781. height: math.unit(15, "feet"),
  20782. weight: math.unit(14, "tons"),
  20783. name: "Side",
  20784. image: {
  20785. source: "./media/characters/athea/side.svg",
  20786. extra: 960 / 540,
  20787. bottom: 0.003
  20788. }
  20789. },
  20790. sitting: {
  20791. height: math.unit(6 * 2.85, "feet"),
  20792. weight: math.unit(14, "tons"),
  20793. name: "Sitting",
  20794. image: {
  20795. source: "./media/characters/athea/sitting.svg",
  20796. extra: 621 / 581,
  20797. bottom: 0.075
  20798. }
  20799. },
  20800. maw: {
  20801. height: math.unit(7.59498031496063, "feet"),
  20802. name: "Maw",
  20803. image: {
  20804. source: "./media/characters/athea/maw.svg"
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Lap Cat",
  20811. height: math.unit(2.5, "feet")
  20812. },
  20813. {
  20814. name: "Minimacro",
  20815. height: math.unit(15, "feet"),
  20816. default: true
  20817. },
  20818. {
  20819. name: "Macro",
  20820. height: math.unit(120, "feet")
  20821. },
  20822. {
  20823. name: "Macro+",
  20824. height: math.unit(640, "feet")
  20825. },
  20826. {
  20827. name: "Colossus",
  20828. height: math.unit(2.2, "miles")
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20834. {
  20835. front: {
  20836. height: math.unit(8 + 8 / 12, "feet"),
  20837. weight: math.unit(130, "kg"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/seroko/front.svg",
  20841. extra: 1385 / 1280,
  20842. bottom: 0.025
  20843. }
  20844. },
  20845. back: {
  20846. height: math.unit(8 + 8 / 12, "feet"),
  20847. weight: math.unit(130, "kg"),
  20848. name: "Back",
  20849. image: {
  20850. source: "./media/characters/seroko/back.svg",
  20851. extra: 1369 / 1238,
  20852. bottom: 0.018
  20853. }
  20854. },
  20855. frontDressed: {
  20856. height: math.unit(8 + 8 / 12, "feet"),
  20857. weight: math.unit(130, "kg"),
  20858. name: "Front (Dressed)",
  20859. image: {
  20860. source: "./media/characters/seroko/front-dressed.svg",
  20861. extra: 1366 / 1275,
  20862. bottom: 0.03
  20863. }
  20864. },
  20865. },
  20866. [
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(8 + 8 / 12, "feet"),
  20870. default: true
  20871. },
  20872. ]
  20873. ))
  20874. characterMakers.push(() => makeCharacter(
  20875. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20876. {
  20877. front: {
  20878. height: math.unit(5.5, "feet"),
  20879. weight: math.unit(160, "lb"),
  20880. name: "Front",
  20881. image: {
  20882. source: "./media/characters/quatzi/front.svg",
  20883. extra: 2346 / 2242,
  20884. bottom: 0.015
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(5.5, "feet"),
  20892. default: true
  20893. },
  20894. {
  20895. name: "Big",
  20896. height: math.unit(7.7, "feet")
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(5 + 11 / 12, "feet"),
  20905. weight: math.unit(180, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/sen/front.svg",
  20909. extra: 1321 / 1254,
  20910. bottom: 0.015
  20911. }
  20912. },
  20913. side: {
  20914. height: math.unit(5 + 11 / 12, "feet"),
  20915. weight: math.unit(180, "lb"),
  20916. name: "Side",
  20917. image: {
  20918. source: "./media/characters/sen/side.svg",
  20919. extra: 1321 / 1254,
  20920. bottom: 0.007
  20921. }
  20922. },
  20923. back: {
  20924. height: math.unit(5 + 11 / 12, "feet"),
  20925. weight: math.unit(180, "lb"),
  20926. name: "Back",
  20927. image: {
  20928. source: "./media/characters/sen/back.svg",
  20929. extra: 1321 / 1254
  20930. }
  20931. },
  20932. },
  20933. [
  20934. {
  20935. name: "Normal",
  20936. height: math.unit(5 + 11 / 12, "feet"),
  20937. default: true
  20938. },
  20939. ]
  20940. ))
  20941. characterMakers.push(() => makeCharacter(
  20942. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20943. {
  20944. front: {
  20945. height: math.unit(166.6, "cm"),
  20946. weight: math.unit(66.6, "kg"),
  20947. name: "Front",
  20948. image: {
  20949. source: "./media/characters/fruity/front.svg",
  20950. extra: 1510 / 1386,
  20951. bottom: 0.04
  20952. }
  20953. },
  20954. back: {
  20955. height: math.unit(166.6, "cm"),
  20956. weight: math.unit(66.6, "lb"),
  20957. name: "Back",
  20958. image: {
  20959. source: "./media/characters/fruity/back.svg",
  20960. extra: 1563 / 1435,
  20961. bottom: 0.005
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Normal",
  20968. height: math.unit(166.6, "cm"),
  20969. default: true
  20970. },
  20971. {
  20972. name: "Demonic",
  20973. height: math.unit(166.6, "feet")
  20974. },
  20975. ]
  20976. ))
  20977. characterMakers.push(() => makeCharacter(
  20978. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20979. {
  20980. side: {
  20981. height: math.unit(10, "feet"),
  20982. weight: math.unit(500, "lb"),
  20983. name: "Side",
  20984. image: {
  20985. source: "./media/characters/zost/side.svg",
  20986. extra: 966 / 880,
  20987. bottom: 0.075
  20988. }
  20989. },
  20990. mawFront: {
  20991. height: math.unit(1.08, "meters"),
  20992. name: "Maw (Front)",
  20993. image: {
  20994. source: "./media/characters/zost/maw-front.svg"
  20995. }
  20996. },
  20997. mawSide: {
  20998. height: math.unit(2.66, "feet"),
  20999. name: "Maw (Side)",
  21000. image: {
  21001. source: "./media/characters/zost/maw-side.svg"
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(10, "feet"),
  21009. default: true
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(5 + 4 / 12, "feet"),
  21018. weight: math.unit(120, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/luci/front.svg",
  21022. extra: 1985 / 1884,
  21023. bottom: 0.04
  21024. }
  21025. },
  21026. back: {
  21027. height: math.unit(5 + 4 / 12, "feet"),
  21028. weight: math.unit(120, "lb"),
  21029. name: "Back",
  21030. image: {
  21031. source: "./media/characters/luci/back.svg",
  21032. extra: 1892 / 1791,
  21033. bottom: 0.002
  21034. }
  21035. },
  21036. },
  21037. [
  21038. {
  21039. name: "Normal",
  21040. height: math.unit(5 + 4 / 12, "feet"),
  21041. default: true
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21047. {
  21048. front: {
  21049. height: math.unit(1500, "feet"),
  21050. weight: math.unit(3.8e6, "tons"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/2th/front.svg",
  21054. extra: 3489 / 3350,
  21055. bottom: 0.1
  21056. }
  21057. },
  21058. foot: {
  21059. height: math.unit(461, "feet"),
  21060. name: "Foot",
  21061. image: {
  21062. source: "./media/characters/2th/foot.svg"
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "\"Micro\"",
  21069. height: math.unit(15 + 7 / 12, "feet")
  21070. },
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(1500, "feet"),
  21074. default: true
  21075. },
  21076. {
  21077. name: "Macro",
  21078. height: math.unit(5000, "feet")
  21079. },
  21080. {
  21081. name: "Megamacro",
  21082. height: math.unit(15, "miles")
  21083. },
  21084. {
  21085. name: "Gigamacro",
  21086. height: math.unit(4000, "miles")
  21087. },
  21088. {
  21089. name: "Galactic",
  21090. height: math.unit(50, "AU")
  21091. },
  21092. ]
  21093. ))
  21094. characterMakers.push(() => makeCharacter(
  21095. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21096. {
  21097. front: {
  21098. height: math.unit(5 + 6 / 12, "feet"),
  21099. weight: math.unit(220, "lb"),
  21100. name: "Front",
  21101. image: {
  21102. source: "./media/characters/amethyst/front.svg",
  21103. extra: 2078 / 2040,
  21104. bottom: 0.045
  21105. }
  21106. },
  21107. back: {
  21108. height: math.unit(5 + 6 / 12, "feet"),
  21109. weight: math.unit(220, "lb"),
  21110. name: "Back",
  21111. image: {
  21112. source: "./media/characters/amethyst/back.svg",
  21113. extra: 2021 / 1989,
  21114. bottom: 0.02
  21115. }
  21116. },
  21117. },
  21118. [
  21119. {
  21120. name: "Normal",
  21121. height: math.unit(5 + 6 / 12, "feet"),
  21122. default: true
  21123. },
  21124. ]
  21125. ))
  21126. characterMakers.push(() => makeCharacter(
  21127. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21128. {
  21129. front: {
  21130. height: math.unit(4 + 11 / 12, "feet"),
  21131. weight: math.unit(120, "lb"),
  21132. name: "Front",
  21133. image: {
  21134. source: "./media/characters/yumi-akiyama/front.svg",
  21135. extra: 1327 / 1235,
  21136. bottom: 0.02
  21137. }
  21138. },
  21139. back: {
  21140. height: math.unit(4 + 11 / 12, "feet"),
  21141. weight: math.unit(120, "lb"),
  21142. name: "Back",
  21143. image: {
  21144. source: "./media/characters/yumi-akiyama/back.svg",
  21145. extra: 1287 / 1245,
  21146. bottom: 0.002
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Galactic",
  21153. height: math.unit(50, "galaxies"),
  21154. default: true
  21155. },
  21156. {
  21157. name: "Universal",
  21158. height: math.unit(100, "universes")
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21164. {
  21165. front: {
  21166. height: math.unit(8, "feet"),
  21167. weight: math.unit(500, "lb"),
  21168. name: "Front",
  21169. image: {
  21170. source: "./media/characters/rifter-yrmori/front.svg",
  21171. extra: 1180 / 1125,
  21172. bottom: 0.02
  21173. }
  21174. },
  21175. back: {
  21176. height: math.unit(8, "feet"),
  21177. weight: math.unit(500, "lb"),
  21178. name: "Back",
  21179. image: {
  21180. source: "./media/characters/rifter-yrmori/back.svg",
  21181. extra: 1190 / 1145,
  21182. bottom: 0.001
  21183. }
  21184. },
  21185. wings: {
  21186. height: math.unit(7.75, "feet"),
  21187. weight: math.unit(500, "lb"),
  21188. name: "Wings",
  21189. image: {
  21190. source: "./media/characters/rifter-yrmori/wings.svg",
  21191. extra: 1357 / 1285
  21192. }
  21193. },
  21194. maw: {
  21195. height: math.unit(0.8, "feet"),
  21196. name: "Maw",
  21197. image: {
  21198. source: "./media/characters/rifter-yrmori/maw.svg"
  21199. }
  21200. },
  21201. mawfront: {
  21202. height: math.unit(1.45, "feet"),
  21203. name: "Maw (Front)",
  21204. image: {
  21205. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21206. }
  21207. },
  21208. },
  21209. [
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(8, "feet"),
  21213. default: true
  21214. },
  21215. {
  21216. name: "Macro",
  21217. height: math.unit(42, "meters")
  21218. },
  21219. ]
  21220. ))
  21221. characterMakers.push(() => makeCharacter(
  21222. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21223. {
  21224. were: {
  21225. height: math.unit(25 + 6 / 12, "feet"),
  21226. weight: math.unit(10000, "lb"),
  21227. name: "Were",
  21228. image: {
  21229. source: "./media/characters/tahajin/were.svg",
  21230. extra: 801 / 770,
  21231. bottom: 0.042
  21232. }
  21233. },
  21234. aquatic: {
  21235. height: math.unit(6 + 4 / 12, "feet"),
  21236. weight: math.unit(160, "lb"),
  21237. name: "Aquatic",
  21238. image: {
  21239. source: "./media/characters/tahajin/aquatic.svg",
  21240. extra: 572 / 542,
  21241. bottom: 0.04
  21242. }
  21243. },
  21244. chow: {
  21245. height: math.unit(8 + 11 / 12, "feet"),
  21246. weight: math.unit(450, "lb"),
  21247. name: "Chow",
  21248. image: {
  21249. source: "./media/characters/tahajin/chow.svg",
  21250. extra: 660 / 640,
  21251. bottom: 0.015
  21252. }
  21253. },
  21254. demiNaga: {
  21255. height: math.unit(6 + 8 / 12, "feet"),
  21256. weight: math.unit(300, "lb"),
  21257. name: "Demi Naga",
  21258. image: {
  21259. source: "./media/characters/tahajin/demi-naga.svg",
  21260. extra: 643 / 615,
  21261. bottom: 0.1
  21262. }
  21263. },
  21264. data: {
  21265. height: math.unit(5, "inches"),
  21266. weight: math.unit(0.1, "lb"),
  21267. name: "Data",
  21268. image: {
  21269. source: "./media/characters/tahajin/data.svg"
  21270. }
  21271. },
  21272. fluu: {
  21273. height: math.unit(5 + 7 / 12, "feet"),
  21274. weight: math.unit(140, "lb"),
  21275. name: "Fluu",
  21276. image: {
  21277. source: "./media/characters/tahajin/fluu.svg",
  21278. extra: 628 / 592,
  21279. bottom: 0.02
  21280. }
  21281. },
  21282. starWarrior: {
  21283. height: math.unit(4 + 5 / 12, "feet"),
  21284. weight: math.unit(50, "lb"),
  21285. name: "Star Warrior",
  21286. image: {
  21287. source: "./media/characters/tahajin/star-warrior.svg"
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(25 + 6 / 12, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21301. {
  21302. front: {
  21303. height: math.unit(8, "feet"),
  21304. weight: math.unit(350, "lb"),
  21305. name: "Front",
  21306. image: {
  21307. source: "./media/characters/gabira/front.svg",
  21308. extra: 608 / 580,
  21309. bottom: 0.03
  21310. }
  21311. },
  21312. back: {
  21313. height: math.unit(8, "feet"),
  21314. weight: math.unit(350, "lb"),
  21315. name: "Back",
  21316. image: {
  21317. source: "./media/characters/gabira/back.svg",
  21318. extra: 608 / 580,
  21319. bottom: 0.03
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(8, "feet"),
  21327. default: true
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21333. {
  21334. front: {
  21335. height: math.unit(5 + 3 / 12, "feet"),
  21336. weight: math.unit(137, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/sasha-katraine/front.svg",
  21340. bottom: 0.045
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Micro",
  21347. height: math.unit(5, "inches")
  21348. },
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(5 + 3 / 12, "feet"),
  21352. default: true
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21358. {
  21359. side: {
  21360. height: math.unit(4, "inches"),
  21361. weight: math.unit(200, "grams"),
  21362. name: "Side",
  21363. image: {
  21364. source: "./media/characters/der/side.svg",
  21365. extra: 719 / 400,
  21366. bottom: 30.6 / 749.9187
  21367. }
  21368. },
  21369. },
  21370. [
  21371. {
  21372. name: "Micro",
  21373. height: math.unit(4, "inches"),
  21374. default: true
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21380. {
  21381. side: {
  21382. height: math.unit(30, "meters"),
  21383. weight: math.unit(700, "tonnes"),
  21384. name: "Side",
  21385. image: {
  21386. source: "./media/characters/fixerdragon/side.svg",
  21387. extra: (1293.0514 - 116.03) / 1106.86,
  21388. bottom: 116.03 / 1293.0514
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Planck",
  21395. height: math.unit(1.6e-35, "meters")
  21396. },
  21397. {
  21398. name: "Micro",
  21399. height: math.unit(0.4, "meters")
  21400. },
  21401. {
  21402. name: "Normal",
  21403. height: math.unit(30, "meters"),
  21404. default: true
  21405. },
  21406. {
  21407. name: "Megamacro",
  21408. height: math.unit(1.2, "megameters")
  21409. },
  21410. {
  21411. name: "Teramacro",
  21412. height: math.unit(130, "terameters")
  21413. },
  21414. {
  21415. name: "Yottamacro",
  21416. height: math.unit(6200, "yottameters")
  21417. },
  21418. ]
  21419. ));
  21420. characterMakers.push(() => makeCharacter(
  21421. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21422. {
  21423. front: {
  21424. height: math.unit(8, "feet"),
  21425. weight: math.unit(250, "lb"),
  21426. name: "Front",
  21427. image: {
  21428. source: "./media/characters/kite/front.svg",
  21429. extra: 2796 / 2659,
  21430. bottom: 0.002
  21431. }
  21432. },
  21433. },
  21434. [
  21435. {
  21436. name: "Normal",
  21437. height: math.unit(8, "feet"),
  21438. default: true
  21439. },
  21440. {
  21441. name: "Macro",
  21442. height: math.unit(360, "feet")
  21443. },
  21444. {
  21445. name: "Megamacro",
  21446. height: math.unit(1500, "feet")
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(5 + 10 / 12, "feet"),
  21455. weight: math.unit(150, "lb"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/poojawa-vynar/front.svg",
  21459. extra: (1506.1547 - 55) / 1356.6,
  21460. bottom: 55 / 1506.1547
  21461. }
  21462. },
  21463. frontTailless: {
  21464. height: math.unit(5 + 10 / 12, "feet"),
  21465. weight: math.unit(150, "lb"),
  21466. name: "Front (Tailless)",
  21467. image: {
  21468. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21469. extra: (1506.1547 - 55) / 1356.6,
  21470. bottom: 55 / 1506.1547
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Normal",
  21477. height: math.unit(5 + 10 / 12, "feet"),
  21478. default: true
  21479. },
  21480. ]
  21481. ))
  21482. characterMakers.push(() => makeCharacter(
  21483. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21484. {
  21485. front: {
  21486. height: math.unit(293, "meters"),
  21487. weight: math.unit(70400, "tons"),
  21488. name: "Front",
  21489. image: {
  21490. source: "./media/characters/violette/front.svg",
  21491. extra: 1227 / 1180,
  21492. bottom: 0.005
  21493. }
  21494. },
  21495. back: {
  21496. height: math.unit(293, "meters"),
  21497. weight: math.unit(70400, "tons"),
  21498. name: "Back",
  21499. image: {
  21500. source: "./media/characters/violette/back.svg",
  21501. extra: 1227 / 1180,
  21502. bottom: 0.005
  21503. }
  21504. },
  21505. },
  21506. [
  21507. {
  21508. name: "Macro",
  21509. height: math.unit(293, "meters"),
  21510. default: true
  21511. },
  21512. ]
  21513. ))
  21514. characterMakers.push(() => makeCharacter(
  21515. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21516. {
  21517. front: {
  21518. height: math.unit(1050, "feet"),
  21519. weight: math.unit(200000, "tons"),
  21520. name: "Front",
  21521. image: {
  21522. source: "./media/characters/alessandra/front.svg",
  21523. extra: 960 / 912,
  21524. bottom: 0.06
  21525. }
  21526. },
  21527. },
  21528. [
  21529. {
  21530. name: "Macro",
  21531. height: math.unit(1050, "feet")
  21532. },
  21533. {
  21534. name: "Macro+",
  21535. height: math.unit(900, "meters"),
  21536. default: true
  21537. },
  21538. ]
  21539. ))
  21540. characterMakers.push(() => makeCharacter(
  21541. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21542. {
  21543. front: {
  21544. height: math.unit(5, "feet"),
  21545. weight: math.unit(187, "lb"),
  21546. name: "Front",
  21547. image: {
  21548. source: "./media/characters/person/front.svg",
  21549. extra: 3087 / 2945,
  21550. bottom: 91 / 3181
  21551. }
  21552. },
  21553. },
  21554. [
  21555. {
  21556. name: "Micro",
  21557. height: math.unit(3, "inches")
  21558. },
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(5, "feet"),
  21562. default: true
  21563. },
  21564. {
  21565. name: "Macro",
  21566. height: math.unit(90, "feet")
  21567. },
  21568. {
  21569. name: "Max Size",
  21570. height: math.unit(280, "feet")
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21576. {
  21577. front: {
  21578. height: math.unit(4.5, "meters"),
  21579. weight: math.unit(3200, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/ty/front.svg",
  21583. extra: 1038 / 960,
  21584. bottom: 31.156 / 1068
  21585. }
  21586. },
  21587. back: {
  21588. height: math.unit(4.5, "meters"),
  21589. weight: math.unit(3200, "lb"),
  21590. name: "Back",
  21591. image: {
  21592. source: "./media/characters/ty/back.svg",
  21593. extra: 1044 / 966,
  21594. bottom: 7.48 / 1049
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(4.5, "meters"),
  21602. default: true
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(5 + 4 / 12, "feet"),
  21611. weight: math.unit(115, "lb"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/rocky/front.svg",
  21615. extra: 1012 / 975,
  21616. bottom: 54 / 1066
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(5 + 4 / 12, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21630. {
  21631. upright: {
  21632. height: math.unit(6, "meters"),
  21633. weight: math.unit(4000, "kg"),
  21634. name: "Upright",
  21635. image: {
  21636. source: "./media/characters/ruin/upright.svg",
  21637. extra: 668 / 661,
  21638. bottom: 42 / 799.8396
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(6, "meters"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21652. {
  21653. front: {
  21654. height: math.unit(5, "feet"),
  21655. weight: math.unit(106, "lb"),
  21656. name: "Front",
  21657. image: {
  21658. source: "./media/characters/robin/front.svg",
  21659. extra: 862 / 799,
  21660. bottom: 42.4 / 914.8856
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(5, "feet"),
  21668. default: true
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21674. {
  21675. side: {
  21676. height: math.unit(3, "feet"),
  21677. weight: math.unit(225, "lb"),
  21678. name: "Side",
  21679. image: {
  21680. source: "./media/characters/saian/side.svg",
  21681. extra: 566 / 356,
  21682. bottom: 79.7 / 643
  21683. }
  21684. },
  21685. maw: {
  21686. height: math.unit(2.85, "feet"),
  21687. name: "Maw",
  21688. image: {
  21689. source: "./media/characters/saian/maw.svg"
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(3, "feet"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21703. {
  21704. side: {
  21705. height: math.unit(8, "feet"),
  21706. weight: math.unit(300, "lb"),
  21707. name: "Side",
  21708. image: {
  21709. source: "./media/characters/equus-silvermane/side.svg",
  21710. extra: 2176 / 2050,
  21711. bottom: 65.7 / 2245
  21712. }
  21713. },
  21714. front: {
  21715. height: math.unit(8, "feet"),
  21716. weight: math.unit(300, "lb"),
  21717. name: "Front",
  21718. image: {
  21719. source: "./media/characters/equus-silvermane/front.svg",
  21720. extra: 4633 / 4400,
  21721. bottom: 71.3 / 4706.915
  21722. }
  21723. },
  21724. sideStepping: {
  21725. height: math.unit(8, "feet"),
  21726. weight: math.unit(300, "lb"),
  21727. name: "Side (Stepping)",
  21728. image: {
  21729. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21730. extra: 1968 / 1860,
  21731. bottom: 16.4 / 1989
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(8, "feet")
  21739. },
  21740. {
  21741. name: "Minimacro",
  21742. height: math.unit(75, "feet"),
  21743. default: true
  21744. },
  21745. {
  21746. name: "Macro",
  21747. height: math.unit(150, "feet")
  21748. },
  21749. {
  21750. name: "Macro+",
  21751. height: math.unit(1000, "feet")
  21752. },
  21753. {
  21754. name: "Megamacro",
  21755. height: math.unit(1, "mile")
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21761. {
  21762. side: {
  21763. height: math.unit(20, "feet"),
  21764. weight: math.unit(30000, "kg"),
  21765. name: "Side",
  21766. image: {
  21767. source: "./media/characters/windar/side.svg",
  21768. extra: 1491 / 1248,
  21769. bottom: 82.56 / 1568
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(20, "feet"),
  21777. default: true
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21783. {
  21784. side: {
  21785. height: math.unit(15.66, "feet"),
  21786. weight: math.unit(150, "lb"),
  21787. name: "Side",
  21788. image: {
  21789. source: "./media/characters/melody/side.svg",
  21790. extra: 1097 / 944,
  21791. bottom: 11.8 / 1109
  21792. }
  21793. },
  21794. sideOutfit: {
  21795. height: math.unit(15.66, "feet"),
  21796. weight: math.unit(150, "lb"),
  21797. name: "Side (Outfit)",
  21798. image: {
  21799. source: "./media/characters/melody/side-outfit.svg",
  21800. extra: 1097 / 944,
  21801. bottom: 11.8 / 1109
  21802. }
  21803. },
  21804. },
  21805. [
  21806. {
  21807. name: "Normal",
  21808. height: math.unit(15.66, "feet"),
  21809. default: true
  21810. },
  21811. ]
  21812. ))
  21813. characterMakers.push(() => makeCharacter(
  21814. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21815. {
  21816. front: {
  21817. height: math.unit(8, "feet"),
  21818. weight: math.unit(325, "lb"),
  21819. name: "Front",
  21820. image: {
  21821. source: "./media/characters/windera/front.svg",
  21822. extra: 3180 / 2845,
  21823. bottom: 178 / 3365
  21824. }
  21825. },
  21826. },
  21827. [
  21828. {
  21829. name: "Normal",
  21830. height: math.unit(8, "feet"),
  21831. default: true
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21837. {
  21838. front: {
  21839. height: math.unit(28.75, "feet"),
  21840. weight: math.unit(2000, "kg"),
  21841. name: "Front",
  21842. image: {
  21843. source: "./media/characters/sonear/front.svg",
  21844. extra: 1041.1 / 964.9,
  21845. bottom: 53.7 / 1096.6
  21846. }
  21847. },
  21848. },
  21849. [
  21850. {
  21851. name: "Normal",
  21852. height: math.unit(28.75, "feet"),
  21853. default: true
  21854. },
  21855. ]
  21856. ))
  21857. characterMakers.push(() => makeCharacter(
  21858. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21859. {
  21860. side: {
  21861. height: math.unit(25.5, "feet"),
  21862. weight: math.unit(23000, "kg"),
  21863. name: "Side",
  21864. image: {
  21865. source: "./media/characters/kanara/side.svg"
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(25.5, "feet"),
  21873. default: true
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21879. {
  21880. side: {
  21881. height: math.unit(10, "feet"),
  21882. weight: math.unit(1000, "kg"),
  21883. name: "Side",
  21884. image: {
  21885. source: "./media/characters/ereus/side.svg",
  21886. extra: 1157 / 959,
  21887. bottom: 153 / 1312.5
  21888. }
  21889. },
  21890. },
  21891. [
  21892. {
  21893. name: "Normal",
  21894. height: math.unit(10, "feet"),
  21895. default: true
  21896. },
  21897. ]
  21898. ))
  21899. characterMakers.push(() => makeCharacter(
  21900. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21901. {
  21902. side: {
  21903. height: math.unit(4.5, "feet"),
  21904. weight: math.unit(500, "lb"),
  21905. name: "Side",
  21906. image: {
  21907. source: "./media/characters/e-ter/side.svg",
  21908. extra: 1550 / 1248,
  21909. bottom: 146 / 1694
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(4.5, "feet"),
  21917. default: true
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21923. {
  21924. side: {
  21925. height: math.unit(9.7, "feet"),
  21926. weight: math.unit(4000, "kg"),
  21927. name: "Side",
  21928. image: {
  21929. source: "./media/characters/yamie/side.svg"
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Normal",
  21936. height: math.unit(9.7, "feet"),
  21937. default: true
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21943. {
  21944. front: {
  21945. height: math.unit(50, "feet"),
  21946. weight: math.unit(50000, "kg"),
  21947. name: "Front",
  21948. image: {
  21949. source: "./media/characters/anders/front.svg",
  21950. extra: 570 / 539,
  21951. bottom: 14.7 / 586.7
  21952. }
  21953. },
  21954. },
  21955. [
  21956. {
  21957. name: "Large",
  21958. height: math.unit(50, "feet")
  21959. },
  21960. {
  21961. name: "Macro",
  21962. height: math.unit(2000, "feet"),
  21963. default: true
  21964. },
  21965. {
  21966. name: "Megamacro",
  21967. height: math.unit(12, "miles")
  21968. },
  21969. ]
  21970. ))
  21971. characterMakers.push(() => makeCharacter(
  21972. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21973. {
  21974. front: {
  21975. height: math.unit(7 + 2 / 12, "feet"),
  21976. weight: math.unit(300, "lb"),
  21977. name: "Front",
  21978. image: {
  21979. source: "./media/characters/reban/front.svg",
  21980. extra: 516 / 487,
  21981. bottom: 42.82 / 558.356
  21982. }
  21983. },
  21984. dick: {
  21985. height: math.unit(7 / 5, "feet"),
  21986. name: "Dick",
  21987. image: {
  21988. source: "./media/characters/reban/dick.svg"
  21989. }
  21990. },
  21991. },
  21992. [
  21993. {
  21994. name: "Natural Height",
  21995. height: math.unit(7 + 2 / 12, "feet")
  21996. },
  21997. {
  21998. name: "Macro",
  21999. height: math.unit(500, "feet"),
  22000. default: true
  22001. },
  22002. {
  22003. name: "Canon Height",
  22004. height: math.unit(50, "AU")
  22005. },
  22006. ]
  22007. ))
  22008. characterMakers.push(() => makeCharacter(
  22009. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22010. {
  22011. front: {
  22012. height: math.unit(6, "feet"),
  22013. weight: math.unit(150, "lb"),
  22014. name: "Front",
  22015. image: {
  22016. source: "./media/characters/terrance-keayes/front.svg",
  22017. extra: 1.005,
  22018. bottom: 151 / 1615
  22019. }
  22020. },
  22021. side: {
  22022. height: math.unit(6, "feet"),
  22023. weight: math.unit(150, "lb"),
  22024. name: "Side",
  22025. image: {
  22026. source: "./media/characters/terrance-keayes/side.svg",
  22027. extra: 1.005,
  22028. bottom: 129.4 / 1544
  22029. }
  22030. },
  22031. back: {
  22032. height: math.unit(6, "feet"),
  22033. weight: math.unit(150, "lb"),
  22034. name: "Back",
  22035. image: {
  22036. source: "./media/characters/terrance-keayes/back.svg",
  22037. extra: 1.005,
  22038. bottom: 58.4 / 1557.3
  22039. }
  22040. },
  22041. dick: {
  22042. height: math.unit(6 * 0.208, "feet"),
  22043. name: "Dick",
  22044. image: {
  22045. source: "./media/characters/terrance-keayes/dick.svg"
  22046. }
  22047. },
  22048. },
  22049. [
  22050. {
  22051. name: "Canon Height",
  22052. height: math.unit(35, "miles"),
  22053. default: true
  22054. },
  22055. ]
  22056. ))
  22057. characterMakers.push(() => makeCharacter(
  22058. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22059. {
  22060. front: {
  22061. height: math.unit(6, "feet"),
  22062. weight: math.unit(150, "lb"),
  22063. name: "Front",
  22064. image: {
  22065. source: "./media/characters/ofelia/front.svg",
  22066. extra: 546 / 541,
  22067. bottom: 39 / 583
  22068. }
  22069. },
  22070. back: {
  22071. height: math.unit(6, "feet"),
  22072. weight: math.unit(150, "lb"),
  22073. name: "Back",
  22074. image: {
  22075. source: "./media/characters/ofelia/back.svg",
  22076. extra: 564 / 559.5,
  22077. bottom: 8.69 / 573.02
  22078. }
  22079. },
  22080. maw: {
  22081. height: math.unit(1, "feet"),
  22082. name: "Maw",
  22083. image: {
  22084. source: "./media/characters/ofelia/maw.svg"
  22085. }
  22086. },
  22087. foot: {
  22088. height: math.unit(1.949, "feet"),
  22089. name: "Foot",
  22090. image: {
  22091. source: "./media/characters/ofelia/foot.svg"
  22092. }
  22093. },
  22094. },
  22095. [
  22096. {
  22097. name: "Canon Height",
  22098. height: math.unit(2000, "miles"),
  22099. default: true
  22100. },
  22101. ]
  22102. ))
  22103. characterMakers.push(() => makeCharacter(
  22104. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22105. {
  22106. front: {
  22107. height: math.unit(6, "feet"),
  22108. weight: math.unit(150, "lb"),
  22109. name: "Front",
  22110. image: {
  22111. source: "./media/characters/samuel/front.svg",
  22112. extra: 265 / 258,
  22113. bottom: 2 / 266.1566
  22114. }
  22115. },
  22116. },
  22117. [
  22118. {
  22119. name: "Macro",
  22120. height: math.unit(100, "feet"),
  22121. default: true
  22122. },
  22123. {
  22124. name: "Full Size",
  22125. height: math.unit(1000, "miles")
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22131. {
  22132. front: {
  22133. height: math.unit(6, "feet"),
  22134. weight: math.unit(300, "lb"),
  22135. name: "Front",
  22136. image: {
  22137. source: "./media/characters/beishir-kiel/front.svg",
  22138. extra: 569 / 547,
  22139. bottom: 41.9 / 609
  22140. }
  22141. },
  22142. maw: {
  22143. height: math.unit(6 * 0.202, "feet"),
  22144. name: "Maw",
  22145. image: {
  22146. source: "./media/characters/beishir-kiel/maw.svg"
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Macro",
  22153. height: math.unit(300, "feet"),
  22154. default: true
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22160. {
  22161. front: {
  22162. height: math.unit(5 + 7/12, "feet"),
  22163. weight: math.unit(120, "lb"),
  22164. name: "Front",
  22165. image: {
  22166. source: "./media/characters/logan-grey/front.svg",
  22167. extra: 1836/1738,
  22168. bottom: 108/1944
  22169. }
  22170. },
  22171. back: {
  22172. height: math.unit(5 + 7/12, "feet"),
  22173. weight: math.unit(120, "lb"),
  22174. name: "Back",
  22175. image: {
  22176. source: "./media/characters/logan-grey/back.svg",
  22177. extra: 1880/1794,
  22178. bottom: 24/1904
  22179. }
  22180. },
  22181. frontSfw: {
  22182. height: math.unit(5 + 7/12, "feet"),
  22183. weight: math.unit(120, "lb"),
  22184. name: "Front (SFW)",
  22185. image: {
  22186. source: "./media/characters/logan-grey/front-sfw.svg",
  22187. extra: 1836/1738,
  22188. bottom: 108/1944
  22189. }
  22190. },
  22191. backSfw: {
  22192. height: math.unit(5 + 7/12, "feet"),
  22193. weight: math.unit(120, "lb"),
  22194. name: "Back (SFW)",
  22195. image: {
  22196. source: "./media/characters/logan-grey/back-sfw.svg",
  22197. extra: 1880/1794,
  22198. bottom: 24/1904
  22199. }
  22200. },
  22201. hands: {
  22202. height: math.unit(0.84, "feet"),
  22203. name: "Hands",
  22204. image: {
  22205. source: "./media/characters/logan-grey/hands.svg"
  22206. }
  22207. },
  22208. paws: {
  22209. height: math.unit(0.72, "feet"),
  22210. name: "Paws",
  22211. image: {
  22212. source: "./media/characters/logan-grey/paws.svg"
  22213. }
  22214. },
  22215. cock: {
  22216. height: math.unit(1.45, "feet"),
  22217. name: "Cock",
  22218. image: {
  22219. source: "./media/characters/logan-grey/cock.svg"
  22220. }
  22221. },
  22222. cockAlt: {
  22223. height: math.unit(1.437, "feet"),
  22224. name: "Cock (alt)",
  22225. image: {
  22226. source: "./media/characters/logan-grey/cock-alt.svg"
  22227. }
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(5 + 8 / 12, "feet")
  22234. },
  22235. {
  22236. name: "The 500 Foot Femboy",
  22237. height: math.unit(500, "feet"),
  22238. default: true
  22239. },
  22240. {
  22241. name: "Megmacro",
  22242. height: math.unit(20, "miles")
  22243. },
  22244. ]
  22245. ))
  22246. characterMakers.push(() => makeCharacter(
  22247. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22248. {
  22249. front: {
  22250. height: math.unit(8 + 2 / 12, "feet"),
  22251. weight: math.unit(275, "lb"),
  22252. name: "Front",
  22253. image: {
  22254. source: "./media/characters/draganta/front.svg",
  22255. extra: 1177 / 1135,
  22256. bottom: 33.46 / 1212.1
  22257. }
  22258. },
  22259. },
  22260. [
  22261. {
  22262. name: "Normal",
  22263. height: math.unit(8 + 6 / 12, "feet"),
  22264. default: true
  22265. },
  22266. {
  22267. name: "Macro",
  22268. height: math.unit(150, "feet")
  22269. },
  22270. {
  22271. name: "Megamacro",
  22272. height: math.unit(1000, "miles")
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22278. {
  22279. front: {
  22280. height: math.unit(1.72, "m"),
  22281. weight: math.unit(80, "lb"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/voski/front.svg",
  22285. extra: 2076.22 / 2022.4,
  22286. bottom: 102.7 / 2177.3866
  22287. }
  22288. },
  22289. frontNsfw: {
  22290. height: math.unit(1.72, "m"),
  22291. weight: math.unit(80, "lb"),
  22292. name: "Front (NSFW)",
  22293. image: {
  22294. source: "./media/characters/voski/front-nsfw.svg",
  22295. extra: 2076.22 / 2022.4,
  22296. bottom: 102.7 / 2177.3866
  22297. }
  22298. },
  22299. back: {
  22300. height: math.unit(1.72, "m"),
  22301. weight: math.unit(80, "lb"),
  22302. name: "Back",
  22303. image: {
  22304. source: "./media/characters/voski/back.svg",
  22305. extra: 2104 / 2051,
  22306. bottom: 10.45 / 2113.63
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Normal",
  22313. height: math.unit(1.72, "m")
  22314. },
  22315. {
  22316. name: "Macro",
  22317. height: math.unit(55, "m"),
  22318. default: true
  22319. },
  22320. {
  22321. name: "Macro+",
  22322. height: math.unit(300, "m")
  22323. },
  22324. {
  22325. name: "Macro++",
  22326. height: math.unit(700, "m")
  22327. },
  22328. {
  22329. name: "Macro+++",
  22330. height: math.unit(4500, "m")
  22331. },
  22332. {
  22333. name: "Macro++++",
  22334. height: math.unit(45, "km")
  22335. },
  22336. {
  22337. name: "Macro+++++",
  22338. height: math.unit(1220, "km")
  22339. },
  22340. ]
  22341. ))
  22342. characterMakers.push(() => makeCharacter(
  22343. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22344. {
  22345. front: {
  22346. height: math.unit(2.3, "m"),
  22347. weight: math.unit(304, "kg"),
  22348. name: "Front",
  22349. image: {
  22350. source: "./media/characters/icowom-lee/front.svg",
  22351. extra: 985 / 955,
  22352. bottom: 25.4 / 1012
  22353. }
  22354. },
  22355. fronttentacles: {
  22356. height: math.unit(2.3, "m"),
  22357. weight: math.unit(304, "kg"),
  22358. name: "Front-tentacles",
  22359. image: {
  22360. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22361. extra: 985 / 955,
  22362. bottom: 25.4 / 1012
  22363. }
  22364. },
  22365. back: {
  22366. height: math.unit(2.3, "m"),
  22367. weight: math.unit(304, "kg"),
  22368. name: "Back",
  22369. image: {
  22370. source: "./media/characters/icowom-lee/back.svg",
  22371. extra: 975 / 954,
  22372. bottom: 9.5 / 985
  22373. }
  22374. },
  22375. backtentacles: {
  22376. height: math.unit(2.3, "m"),
  22377. weight: math.unit(304, "kg"),
  22378. name: "Back-tentacles",
  22379. image: {
  22380. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22381. extra: 975 / 954,
  22382. bottom: 9.5 / 985
  22383. }
  22384. },
  22385. frontDressed: {
  22386. height: math.unit(2.3, "m"),
  22387. weight: math.unit(304, "kg"),
  22388. name: "Front (Dressed)",
  22389. image: {
  22390. source: "./media/characters/icowom-lee/front-dressed.svg",
  22391. extra: 3076 / 2933,
  22392. bottom: 51.4 / 3125.1889
  22393. }
  22394. },
  22395. rump: {
  22396. height: math.unit(0.776, "meters"),
  22397. name: "Rump",
  22398. image: {
  22399. source: "./media/characters/icowom-lee/rump.svg"
  22400. }
  22401. },
  22402. genitals: {
  22403. height: math.unit(0.78, "meters"),
  22404. name: "Genitals",
  22405. image: {
  22406. source: "./media/characters/icowom-lee/genitals.svg"
  22407. }
  22408. },
  22409. },
  22410. [
  22411. {
  22412. name: "Normal",
  22413. height: math.unit(2.3, "meters"),
  22414. default: true
  22415. },
  22416. {
  22417. name: "Macro",
  22418. height: math.unit(94, "meters"),
  22419. default: true
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(22, "meters"),
  22428. weight: math.unit(21000, "kg"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/shock-diamond/front.svg",
  22432. extra: 2204 / 2053,
  22433. bottom: 65 / 2239.47
  22434. }
  22435. },
  22436. frontNude: {
  22437. height: math.unit(22, "meters"),
  22438. weight: math.unit(21000, "kg"),
  22439. name: "Front (Nude)",
  22440. image: {
  22441. source: "./media/characters/shock-diamond/front-nude.svg",
  22442. extra: 2514 / 2285,
  22443. bottom: 13 / 2527.56
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Normal",
  22450. height: math.unit(3, "meters")
  22451. },
  22452. {
  22453. name: "Macro",
  22454. height: math.unit(22, "meters"),
  22455. default: true
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22461. {
  22462. front: {
  22463. height: math.unit(5 + 4 / 12, "feet"),
  22464. weight: math.unit(120, "lb"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/rory/front.svg",
  22468. extra: 1318/1241,
  22469. bottom: 42/1360
  22470. }
  22471. },
  22472. back: {
  22473. height: math.unit(5 + 4 / 12, "feet"),
  22474. weight: math.unit(120, "lb"),
  22475. name: "Back",
  22476. image: {
  22477. source: "./media/characters/rory/back.svg",
  22478. extra: 1318/1241,
  22479. bottom: 42/1360
  22480. }
  22481. },
  22482. butt: {
  22483. height: math.unit(1.74, "feet"),
  22484. name: "Butt",
  22485. image: {
  22486. source: "./media/characters/rory/butt.svg"
  22487. }
  22488. },
  22489. dick: {
  22490. height: math.unit(1.02, "feet"),
  22491. name: "Dick",
  22492. image: {
  22493. source: "./media/characters/rory/dick.svg"
  22494. }
  22495. },
  22496. paws: {
  22497. height: math.unit(1, "feet"),
  22498. name: "Paws",
  22499. image: {
  22500. source: "./media/characters/rory/paws.svg"
  22501. }
  22502. },
  22503. frontAlt: {
  22504. height: math.unit(5 + 4 / 12, "feet"),
  22505. weight: math.unit(120, "lb"),
  22506. name: "Front (Alt)",
  22507. image: {
  22508. source: "./media/characters/rory/front-alt.svg",
  22509. extra: 589 / 556,
  22510. bottom: 45.7 / 635.76
  22511. }
  22512. },
  22513. frontAltNude: {
  22514. height: math.unit(5 + 4 / 12, "feet"),
  22515. weight: math.unit(120, "lb"),
  22516. name: "Front (Alt, Nude)",
  22517. image: {
  22518. source: "./media/characters/rory/front-alt-nude.svg",
  22519. extra: 589 / 556,
  22520. bottom: 45.7 / 635.76
  22521. }
  22522. },
  22523. side: {
  22524. height: math.unit(5 + 4 / 12, "feet"),
  22525. weight: math.unit(120, "lb"),
  22526. name: "Side",
  22527. image: {
  22528. source: "./media/characters/rory/side.svg",
  22529. extra: 597 / 564,
  22530. bottom: 55 / 653
  22531. }
  22532. },
  22533. backAlt: {
  22534. height: math.unit(5 + 4 / 12, "feet"),
  22535. weight: math.unit(120, "lb"),
  22536. name: "Back (Alt)",
  22537. image: {
  22538. source: "./media/characters/rory/back-alt.svg",
  22539. extra: 620 / 585,
  22540. bottom: 8.86 / 630.43
  22541. }
  22542. },
  22543. dickAlt: {
  22544. height: math.unit(0.86, "feet"),
  22545. name: "Dick (Alt)",
  22546. image: {
  22547. source: "./media/characters/rory/dick-alt.svg"
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Normal",
  22554. height: math.unit(5 + 4 / 12, "feet"),
  22555. default: true
  22556. },
  22557. {
  22558. name: "Macro",
  22559. height: math.unit(100, "feet")
  22560. },
  22561. {
  22562. name: "Macro+",
  22563. height: math.unit(140, "feet")
  22564. },
  22565. {
  22566. name: "Macro++",
  22567. height: math.unit(300, "feet")
  22568. },
  22569. ]
  22570. ))
  22571. characterMakers.push(() => makeCharacter(
  22572. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22573. {
  22574. front: {
  22575. height: math.unit(5 + 9 / 12, "feet"),
  22576. weight: math.unit(190, "lb"),
  22577. name: "Front",
  22578. image: {
  22579. source: "./media/characters/sprisk/front.svg",
  22580. extra: 1225 / 1180,
  22581. bottom: 42.7 / 1266.4
  22582. }
  22583. },
  22584. frontNsfw: {
  22585. height: math.unit(5 + 9 / 12, "feet"),
  22586. weight: math.unit(190, "lb"),
  22587. name: "Front (NSFW)",
  22588. image: {
  22589. source: "./media/characters/sprisk/front-nsfw.svg",
  22590. extra: 1225 / 1180,
  22591. bottom: 42.7 / 1266.4
  22592. }
  22593. },
  22594. back: {
  22595. height: math.unit(5 + 9 / 12, "feet"),
  22596. weight: math.unit(190, "lb"),
  22597. name: "Back",
  22598. image: {
  22599. source: "./media/characters/sprisk/back.svg",
  22600. extra: 1247 / 1200,
  22601. bottom: 5.6 / 1253.04
  22602. }
  22603. },
  22604. },
  22605. [
  22606. {
  22607. name: "Tiny",
  22608. height: math.unit(2, "inches")
  22609. },
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(5 + 9 / 12, "feet"),
  22613. default: true
  22614. },
  22615. {
  22616. name: "Mini Macro",
  22617. height: math.unit(18, "feet")
  22618. },
  22619. {
  22620. name: "Macro",
  22621. height: math.unit(100, "feet")
  22622. },
  22623. {
  22624. name: "MACRO",
  22625. height: math.unit(50, "miles")
  22626. },
  22627. {
  22628. name: "M A C R O",
  22629. height: math.unit(300, "miles")
  22630. },
  22631. ]
  22632. ))
  22633. characterMakers.push(() => makeCharacter(
  22634. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22635. {
  22636. side: {
  22637. height: math.unit(15.6, "meters"),
  22638. weight: math.unit(700000, "kg"),
  22639. name: "Side",
  22640. image: {
  22641. source: "./media/characters/bunsen/side.svg",
  22642. extra: 1644 / 358
  22643. }
  22644. },
  22645. foot: {
  22646. height: math.unit(1.611 * 1644 / 358, "meter"),
  22647. name: "Foot",
  22648. image: {
  22649. source: "./media/characters/bunsen/foot.svg"
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Small",
  22656. height: math.unit(10, "feet")
  22657. },
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(15.6, "meters"),
  22661. default: true
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22667. {
  22668. front: {
  22669. height: math.unit(4 + 11 / 12, "feet"),
  22670. weight: math.unit(140, "lb"),
  22671. name: "Front",
  22672. image: {
  22673. source: "./media/characters/sesh/front.svg",
  22674. extra: 3420 / 3231,
  22675. bottom: 72 / 3949.5
  22676. }
  22677. },
  22678. },
  22679. [
  22680. {
  22681. name: "Normal",
  22682. height: math.unit(4 + 11 / 12, "feet")
  22683. },
  22684. {
  22685. name: "Grown",
  22686. height: math.unit(15, "feet"),
  22687. default: true
  22688. },
  22689. {
  22690. name: "Macro",
  22691. height: math.unit(1500, "feet")
  22692. },
  22693. {
  22694. name: "Megamacro",
  22695. height: math.unit(30, "miles")
  22696. },
  22697. {
  22698. name: "Continental",
  22699. height: math.unit(3000, "miles")
  22700. },
  22701. {
  22702. name: "Gravity Mass",
  22703. height: math.unit(300000, "miles")
  22704. },
  22705. {
  22706. name: "Planet Buster",
  22707. height: math.unit(30000000, "miles")
  22708. },
  22709. {
  22710. name: "Big",
  22711. height: math.unit(3000000000, "miles")
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22717. {
  22718. front: {
  22719. height: math.unit(9, "feet"),
  22720. weight: math.unit(350, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/pepper/front.svg",
  22724. extra: 1448 / 1312,
  22725. bottom: 9.4 / 1457.88
  22726. }
  22727. },
  22728. back: {
  22729. height: math.unit(9, "feet"),
  22730. weight: math.unit(350, "lb"),
  22731. name: "Back",
  22732. image: {
  22733. source: "./media/characters/pepper/back.svg",
  22734. extra: 1423 / 1300,
  22735. bottom: 4.6 / 1429
  22736. }
  22737. },
  22738. maw: {
  22739. height: math.unit(0.932, "feet"),
  22740. name: "Maw",
  22741. image: {
  22742. source: "./media/characters/pepper/maw.svg"
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(9, "feet"),
  22750. default: true
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22756. {
  22757. front: {
  22758. height: math.unit(6, "feet"),
  22759. weight: math.unit(150, "lb"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/maelstrom/front.svg",
  22763. extra: 2100 / 1883,
  22764. bottom: 94 / 2196.7
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Less Kaiju",
  22771. height: math.unit(200, "feet")
  22772. },
  22773. {
  22774. name: "Kaiju",
  22775. height: math.unit(400, "feet"),
  22776. default: true
  22777. },
  22778. {
  22779. name: "Kaiju-er",
  22780. height: math.unit(600, "feet")
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22786. {
  22787. front: {
  22788. height: math.unit(6 + 5 / 12, "feet"),
  22789. weight: math.unit(180, "lb"),
  22790. name: "Front",
  22791. image: {
  22792. source: "./media/characters/lexir/front.svg",
  22793. extra: 180 / 172,
  22794. bottom: 12 / 192
  22795. }
  22796. },
  22797. back: {
  22798. height: math.unit(6 + 5 / 12, "feet"),
  22799. weight: math.unit(180, "lb"),
  22800. name: "Back",
  22801. image: {
  22802. source: "./media/characters/lexir/back.svg",
  22803. extra: 183.84 / 175.5,
  22804. bottom: 3.1 / 187
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Very Smal",
  22811. height: math.unit(1, "nm")
  22812. },
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(6 + 5 / 12, "feet"),
  22816. default: true
  22817. },
  22818. {
  22819. name: "Macro",
  22820. height: math.unit(1, "mile")
  22821. },
  22822. {
  22823. name: "Megamacro",
  22824. height: math.unit(50, "miles")
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22830. {
  22831. front: {
  22832. height: math.unit(1.5, "meters"),
  22833. weight: math.unit(100, "lb"),
  22834. name: "Front",
  22835. image: {
  22836. source: "./media/characters/maksio/front.svg",
  22837. extra: 1549 / 1531,
  22838. bottom: 123.7 / 1674.5429
  22839. }
  22840. },
  22841. back: {
  22842. height: math.unit(1.5, "meters"),
  22843. weight: math.unit(100, "lb"),
  22844. name: "Back",
  22845. image: {
  22846. source: "./media/characters/maksio/back.svg",
  22847. extra: 1541 / 1509,
  22848. bottom: 97 / 1639
  22849. }
  22850. },
  22851. hand: {
  22852. height: math.unit(0.621, "feet"),
  22853. name: "Hand",
  22854. image: {
  22855. source: "./media/characters/maksio/hand.svg"
  22856. }
  22857. },
  22858. foot: {
  22859. height: math.unit(1.611, "feet"),
  22860. name: "Foot",
  22861. image: {
  22862. source: "./media/characters/maksio/foot.svg"
  22863. }
  22864. },
  22865. },
  22866. [
  22867. {
  22868. name: "Shrunken",
  22869. height: math.unit(10, "cm")
  22870. },
  22871. {
  22872. name: "Normal",
  22873. height: math.unit(150, "cm"),
  22874. default: true
  22875. },
  22876. ]
  22877. ))
  22878. characterMakers.push(() => makeCharacter(
  22879. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22880. {
  22881. front: {
  22882. height: math.unit(100, "feet"),
  22883. name: "Front",
  22884. image: {
  22885. source: "./media/characters/erza-bear/front.svg",
  22886. extra: 2449 / 2390,
  22887. bottom: 46 / 2494
  22888. }
  22889. },
  22890. back: {
  22891. height: math.unit(100, "feet"),
  22892. name: "Back",
  22893. image: {
  22894. source: "./media/characters/erza-bear/back.svg",
  22895. extra: 2489 / 2430,
  22896. bottom: 85.4 / 2480
  22897. }
  22898. },
  22899. tail: {
  22900. height: math.unit(42, "feet"),
  22901. name: "Tail",
  22902. image: {
  22903. source: "./media/characters/erza-bear/tail.svg"
  22904. }
  22905. },
  22906. tongue: {
  22907. height: math.unit(8, "feet"),
  22908. name: "Tongue",
  22909. image: {
  22910. source: "./media/characters/erza-bear/tongue.svg"
  22911. }
  22912. },
  22913. dick: {
  22914. height: math.unit(10.5, "feet"),
  22915. name: "Dick",
  22916. image: {
  22917. source: "./media/characters/erza-bear/dick.svg"
  22918. }
  22919. },
  22920. dickVertical: {
  22921. height: math.unit(16.9, "feet"),
  22922. name: "Dick (Vertical)",
  22923. image: {
  22924. source: "./media/characters/erza-bear/dick-vertical.svg"
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Macro",
  22931. height: math.unit(100, "feet"),
  22932. default: true
  22933. },
  22934. ]
  22935. ))
  22936. characterMakers.push(() => makeCharacter(
  22937. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22938. {
  22939. front: {
  22940. height: math.unit(172, "cm"),
  22941. weight: math.unit(73, "kg"),
  22942. name: "Front",
  22943. image: {
  22944. source: "./media/characters/violet-flor/front.svg",
  22945. extra: 1530 / 1442,
  22946. bottom: 61.9 / 1588.8
  22947. }
  22948. },
  22949. back: {
  22950. height: math.unit(180, "cm"),
  22951. weight: math.unit(73, "kg"),
  22952. name: "Back",
  22953. image: {
  22954. source: "./media/characters/violet-flor/back.svg",
  22955. extra: 1692 / 1630,
  22956. bottom: 20 / 1712
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Normal",
  22963. height: math.unit(172, "cm"),
  22964. default: true
  22965. },
  22966. ]
  22967. ))
  22968. characterMakers.push(() => makeCharacter(
  22969. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22970. {
  22971. front: {
  22972. height: math.unit(6, "feet"),
  22973. weight: math.unit(220, "lb"),
  22974. name: "Front",
  22975. image: {
  22976. source: "./media/characters/lynn-rhea/front.svg",
  22977. extra: 310 / 273
  22978. }
  22979. },
  22980. back: {
  22981. height: math.unit(6, "feet"),
  22982. weight: math.unit(220, "lb"),
  22983. name: "Back",
  22984. image: {
  22985. source: "./media/characters/lynn-rhea/back.svg",
  22986. extra: 310 / 273
  22987. }
  22988. },
  22989. dicks: {
  22990. height: math.unit(0.9, "feet"),
  22991. name: "Dicks",
  22992. image: {
  22993. source: "./media/characters/lynn-rhea/dicks.svg"
  22994. }
  22995. },
  22996. slit: {
  22997. height: math.unit(0.4, "feet"),
  22998. name: "Slit",
  22999. image: {
  23000. source: "./media/characters/lynn-rhea/slit.svg"
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Micro",
  23007. height: math.unit(1, "inch")
  23008. },
  23009. {
  23010. name: "Macro",
  23011. height: math.unit(60, "feet"),
  23012. default: true
  23013. },
  23014. {
  23015. name: "Megamacro",
  23016. height: math.unit(2, "miles")
  23017. },
  23018. {
  23019. name: "Gigamacro",
  23020. height: math.unit(3, "earths")
  23021. },
  23022. {
  23023. name: "Galactic",
  23024. height: math.unit(0.8, "galaxies")
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23030. {
  23031. front: {
  23032. height: math.unit(1600, "feet"),
  23033. weight: math.unit(85758785169, "kg"),
  23034. name: "Front",
  23035. image: {
  23036. source: "./media/characters/valathos/front.svg",
  23037. extra: 1451 / 1339
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Macro",
  23044. height: math.unit(1600, "feet"),
  23045. default: true
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23051. {
  23052. front: {
  23053. height: math.unit(7 + 5 / 12, "feet"),
  23054. weight: math.unit(300, "lb"),
  23055. name: "Front",
  23056. image: {
  23057. source: "./media/characters/azula/front.svg",
  23058. extra: 3208 / 2880,
  23059. bottom: 80.2 / 3277
  23060. }
  23061. },
  23062. back: {
  23063. height: math.unit(7 + 5 / 12, "feet"),
  23064. weight: math.unit(300, "lb"),
  23065. name: "Back",
  23066. image: {
  23067. source: "./media/characters/azula/back.svg",
  23068. extra: 3169 / 2822,
  23069. bottom: 150.6 / 3321
  23070. }
  23071. },
  23072. },
  23073. [
  23074. {
  23075. name: "Normal",
  23076. height: math.unit(7 + 5 / 12, "feet"),
  23077. default: true
  23078. },
  23079. {
  23080. name: "Big",
  23081. height: math.unit(20, "feet")
  23082. },
  23083. ]
  23084. ))
  23085. characterMakers.push(() => makeCharacter(
  23086. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23087. {
  23088. front: {
  23089. height: math.unit(5 + 1 / 12, "feet"),
  23090. weight: math.unit(110, "lb"),
  23091. name: "Front",
  23092. image: {
  23093. source: "./media/characters/rupert/front.svg",
  23094. extra: 1549 / 1495,
  23095. bottom: 54.2 / 1604.4
  23096. }
  23097. },
  23098. },
  23099. [
  23100. {
  23101. name: "Normal",
  23102. height: math.unit(5 + 1 / 12, "feet"),
  23103. default: true
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23109. {
  23110. front: {
  23111. height: math.unit(8 + 4 / 12, "feet"),
  23112. weight: math.unit(350, "lb"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/sheera-castellar/front.svg",
  23116. extra: 1957 / 1894,
  23117. bottom: 26.97 / 1975.017
  23118. }
  23119. },
  23120. side: {
  23121. height: math.unit(8 + 4 / 12, "feet"),
  23122. weight: math.unit(350, "lb"),
  23123. name: "Side",
  23124. image: {
  23125. source: "./media/characters/sheera-castellar/side.svg",
  23126. extra: 1957 / 1894
  23127. }
  23128. },
  23129. back: {
  23130. height: math.unit(8 + 4 / 12, "feet"),
  23131. weight: math.unit(350, "lb"),
  23132. name: "Back",
  23133. image: {
  23134. source: "./media/characters/sheera-castellar/back.svg",
  23135. extra: 1957 / 1894
  23136. }
  23137. },
  23138. angled: {
  23139. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23140. weight: math.unit(350, "lb"),
  23141. name: "Angled",
  23142. image: {
  23143. source: "./media/characters/sheera-castellar/angled.svg",
  23144. extra: 1807 / 1707,
  23145. bottom: 68 / 1875
  23146. }
  23147. },
  23148. genitals: {
  23149. height: math.unit(2.2, "feet"),
  23150. name: "Genitals",
  23151. image: {
  23152. source: "./media/characters/sheera-castellar/genitals.svg"
  23153. }
  23154. },
  23155. taur: {
  23156. height: math.unit(10 + 6/12, "feet"),
  23157. name: "Taur",
  23158. image: {
  23159. source: "./media/characters/sheera-castellar/taur.svg",
  23160. extra: 2017/1909,
  23161. bottom: 185/2202
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(8 + 4 / 12, "feet")
  23169. },
  23170. {
  23171. name: "Macro",
  23172. height: math.unit(150, "feet"),
  23173. default: true
  23174. },
  23175. {
  23176. name: "Macro+",
  23177. height: math.unit(800, "feet")
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(6, "feet"),
  23186. weight: math.unit(150, "lb"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/jaipur/front.svg",
  23190. extra: 3860 / 3731,
  23191. bottom: 287 / 4140
  23192. }
  23193. },
  23194. back: {
  23195. height: math.unit(6, "feet"),
  23196. weight: math.unit(150, "lb"),
  23197. name: "Back",
  23198. image: {
  23199. source: "./media/characters/jaipur/back.svg",
  23200. extra: 4060 / 3930,
  23201. bottom: 151 / 4200
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(1.85, "meters"),
  23209. default: true
  23210. },
  23211. {
  23212. name: "Macro",
  23213. height: math.unit(150, "meters")
  23214. },
  23215. {
  23216. name: "Macro+",
  23217. height: math.unit(0.5, "miles")
  23218. },
  23219. {
  23220. name: "Macro++",
  23221. height: math.unit(2.5, "miles")
  23222. },
  23223. {
  23224. name: "Macro+++",
  23225. height: math.unit(12, "miles")
  23226. },
  23227. {
  23228. name: "Macro++++",
  23229. height: math.unit(120, "miles")
  23230. },
  23231. {
  23232. name: "Macro+++++",
  23233. height: math.unit(1200, "miles")
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23239. {
  23240. front: {
  23241. height: math.unit(6, "feet"),
  23242. weight: math.unit(150, "lb"),
  23243. name: "Front",
  23244. image: {
  23245. source: "./media/characters/sheila-wolf/front.svg",
  23246. extra: 1931 / 1808,
  23247. bottom: 29.5 / 1960
  23248. }
  23249. },
  23250. dick: {
  23251. height: math.unit(1.464, "feet"),
  23252. name: "Dick",
  23253. image: {
  23254. source: "./media/characters/sheila-wolf/dick.svg"
  23255. }
  23256. },
  23257. muzzle: {
  23258. height: math.unit(0.513, "feet"),
  23259. name: "Muzzle",
  23260. image: {
  23261. source: "./media/characters/sheila-wolf/muzzle.svg"
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Macro",
  23268. height: math.unit(70, "feet"),
  23269. default: true
  23270. },
  23271. ]
  23272. ))
  23273. characterMakers.push(() => makeCharacter(
  23274. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23275. {
  23276. front: {
  23277. height: math.unit(32, "meters"),
  23278. weight: math.unit(300000, "kg"),
  23279. name: "Front",
  23280. image: {
  23281. source: "./media/characters/almor/front.svg",
  23282. extra: 1408 / 1322,
  23283. bottom: 94.6 / 1506.5
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Macro",
  23290. height: math.unit(32, "meters"),
  23291. default: true
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23297. {
  23298. front: {
  23299. height: math.unit(7, "feet"),
  23300. weight: math.unit(200, "lb"),
  23301. name: "Front",
  23302. image: {
  23303. source: "./media/characters/silver/front.svg",
  23304. extra: 472.1 / 450.5,
  23305. bottom: 26.5 / 499.424
  23306. }
  23307. },
  23308. },
  23309. [
  23310. {
  23311. name: "Normal",
  23312. height: math.unit(7, "feet"),
  23313. default: true
  23314. },
  23315. {
  23316. name: "Macro",
  23317. height: math.unit(800, "feet")
  23318. },
  23319. {
  23320. name: "Megamacro",
  23321. height: math.unit(250, "miles")
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23327. {
  23328. front: {
  23329. height: math.unit(6, "feet"),
  23330. weight: math.unit(150, "lb"),
  23331. name: "Front",
  23332. image: {
  23333. source: "./media/characters/pliskin/front.svg",
  23334. extra: 1469 / 1359,
  23335. bottom: 70 / 1540
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "Micro",
  23342. height: math.unit(3, "inches")
  23343. },
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(5 + 11 / 12, "feet"),
  23347. default: true
  23348. },
  23349. {
  23350. name: "Macro",
  23351. height: math.unit(120, "feet")
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23357. {
  23358. front: {
  23359. height: math.unit(6, "feet"),
  23360. weight: math.unit(150, "lb"),
  23361. name: "Front",
  23362. image: {
  23363. source: "./media/characters/sammy/front.svg",
  23364. extra: 1193 / 1089,
  23365. bottom: 30.5 / 1226
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(1700, "feet"),
  23373. default: true
  23374. },
  23375. {
  23376. name: "Examacro",
  23377. height: math.unit(2.5e9, "lightyears")
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23383. {
  23384. front: {
  23385. height: math.unit(21, "meters"),
  23386. weight: math.unit(12, "tonnes"),
  23387. name: "Front",
  23388. image: {
  23389. source: "./media/characters/kuru/front.svg",
  23390. extra: 4301 / 3785,
  23391. bottom: 371.3 / 4691
  23392. }
  23393. },
  23394. },
  23395. [
  23396. {
  23397. name: "Macro",
  23398. height: math.unit(21, "meters"),
  23399. default: true
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(23, "meters"),
  23408. weight: math.unit(12.2, "tonnes"),
  23409. name: "Front",
  23410. image: {
  23411. source: "./media/characters/rakka/front.svg",
  23412. extra: 4670 / 4169,
  23413. bottom: 301 / 4968.7
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Macro",
  23420. height: math.unit(23, "meters"),
  23421. default: true
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(6, "feet"),
  23430. weight: math.unit(150, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/rhys-feline/front.svg",
  23434. extra: 2488 / 2308,
  23435. bottom: 35.67 / 2519.19
  23436. }
  23437. },
  23438. },
  23439. [
  23440. {
  23441. name: "Really Small",
  23442. height: math.unit(1, "nm")
  23443. },
  23444. {
  23445. name: "Micro",
  23446. height: math.unit(4, "inches")
  23447. },
  23448. {
  23449. name: "Normal",
  23450. height: math.unit(4 + 10 / 12, "feet"),
  23451. default: true
  23452. },
  23453. {
  23454. name: "Macro",
  23455. height: math.unit(100, "feet")
  23456. },
  23457. {
  23458. name: "Megamacto",
  23459. height: math.unit(50, "miles")
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23465. {
  23466. side: {
  23467. height: math.unit(30, "feet"),
  23468. weight: math.unit(35000, "kg"),
  23469. name: "Side",
  23470. image: {
  23471. source: "./media/characters/alydar/side.svg",
  23472. extra: 234 / 222,
  23473. bottom: 6.5 / 241
  23474. }
  23475. },
  23476. front: {
  23477. height: math.unit(30, "feet"),
  23478. weight: math.unit(35000, "kg"),
  23479. name: "Front",
  23480. image: {
  23481. source: "./media/characters/alydar/front.svg",
  23482. extra: 223.37 / 210.2,
  23483. bottom: 22.3 / 246.76
  23484. }
  23485. },
  23486. top: {
  23487. height: math.unit(64.54, "feet"),
  23488. weight: math.unit(35000, "kg"),
  23489. name: "Top",
  23490. image: {
  23491. source: "./media/characters/alydar/top.svg"
  23492. }
  23493. },
  23494. anthro: {
  23495. height: math.unit(30, "feet"),
  23496. weight: math.unit(9000, "kg"),
  23497. name: "Anthro",
  23498. image: {
  23499. source: "./media/characters/alydar/anthro.svg",
  23500. extra: 432 / 421,
  23501. bottom: 7.18 / 440
  23502. }
  23503. },
  23504. maw: {
  23505. height: math.unit(11.693, "feet"),
  23506. name: "Maw",
  23507. image: {
  23508. source: "./media/characters/alydar/maw.svg"
  23509. }
  23510. },
  23511. head: {
  23512. height: math.unit(11.693, "feet"),
  23513. name: "Head",
  23514. image: {
  23515. source: "./media/characters/alydar/head.svg"
  23516. }
  23517. },
  23518. headAlt: {
  23519. height: math.unit(12.861, "feet"),
  23520. name: "Head (Alt)",
  23521. image: {
  23522. source: "./media/characters/alydar/head-alt.svg"
  23523. }
  23524. },
  23525. wing: {
  23526. height: math.unit(20.712, "feet"),
  23527. name: "Wing",
  23528. image: {
  23529. source: "./media/characters/alydar/wing.svg"
  23530. }
  23531. },
  23532. wingFeather: {
  23533. height: math.unit(9.662, "feet"),
  23534. name: "Wing Feather",
  23535. image: {
  23536. source: "./media/characters/alydar/wing-feather.svg"
  23537. }
  23538. },
  23539. countourFeather: {
  23540. height: math.unit(4.154, "feet"),
  23541. name: "Contour Feather",
  23542. image: {
  23543. source: "./media/characters/alydar/contour-feather.svg"
  23544. }
  23545. },
  23546. },
  23547. [
  23548. {
  23549. name: "Diplomatic",
  23550. height: math.unit(13, "feet"),
  23551. default: true
  23552. },
  23553. {
  23554. name: "Small",
  23555. height: math.unit(30, "feet")
  23556. },
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(95, "feet"),
  23560. default: true
  23561. },
  23562. {
  23563. name: "Large",
  23564. height: math.unit(285, "feet")
  23565. },
  23566. {
  23567. name: "Incomprehensible",
  23568. height: math.unit(450, "megameters")
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23574. {
  23575. side: {
  23576. height: math.unit(11, "feet"),
  23577. weight: math.unit(1750, "kg"),
  23578. name: "Side",
  23579. image: {
  23580. source: "./media/characters/selicia/side.svg",
  23581. extra: 440 / 396,
  23582. bottom: 24.8 / 465.979
  23583. }
  23584. },
  23585. maw: {
  23586. height: math.unit(4.665, "feet"),
  23587. name: "Maw",
  23588. image: {
  23589. source: "./media/characters/selicia/maw.svg"
  23590. }
  23591. },
  23592. },
  23593. [
  23594. {
  23595. name: "Normal",
  23596. height: math.unit(11, "feet"),
  23597. default: true
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23603. {
  23604. side: {
  23605. height: math.unit(2 + 6 / 12, "feet"),
  23606. weight: math.unit(30, "lb"),
  23607. name: "Side",
  23608. image: {
  23609. source: "./media/characters/layla/side.svg",
  23610. extra: 244 / 188,
  23611. bottom: 18.2 / 262.1
  23612. }
  23613. },
  23614. back: {
  23615. height: math.unit(2 + 6 / 12, "feet"),
  23616. weight: math.unit(30, "lb"),
  23617. name: "Back",
  23618. image: {
  23619. source: "./media/characters/layla/back.svg",
  23620. extra: 308 / 241.5,
  23621. bottom: 8.9 / 316.8
  23622. }
  23623. },
  23624. cumming: {
  23625. height: math.unit(2 + 6 / 12, "feet"),
  23626. weight: math.unit(30, "lb"),
  23627. name: "Cumming",
  23628. image: {
  23629. source: "./media/characters/layla/cumming.svg",
  23630. extra: 342 / 279,
  23631. bottom: 595 / 938
  23632. }
  23633. },
  23634. dickFlaccid: {
  23635. height: math.unit(2.595, "feet"),
  23636. name: "Flaccid Genitals",
  23637. image: {
  23638. source: "./media/characters/layla/dick-flaccid.svg"
  23639. }
  23640. },
  23641. dickErect: {
  23642. height: math.unit(2.359, "feet"),
  23643. name: "Erect Genitals",
  23644. image: {
  23645. source: "./media/characters/layla/dick-erect.svg"
  23646. }
  23647. },
  23648. dragon: {
  23649. height: math.unit(40, "feet"),
  23650. name: "Dragon",
  23651. image: {
  23652. source: "./media/characters/layla/dragon.svg",
  23653. extra: 610/535,
  23654. bottom: 367/977
  23655. }
  23656. },
  23657. taur: {
  23658. height: math.unit(30, "feet"),
  23659. name: "Taur",
  23660. image: {
  23661. source: "./media/characters/layla/taur.svg",
  23662. extra: 1268/1199,
  23663. bottom: 112/1380
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Micro",
  23670. height: math.unit(1, "inch")
  23671. },
  23672. {
  23673. name: "Small",
  23674. height: math.unit(1, "foot")
  23675. },
  23676. {
  23677. name: "Normal",
  23678. height: math.unit(2 + 6 / 12, "feet"),
  23679. default: true
  23680. },
  23681. {
  23682. name: "Macro",
  23683. height: math.unit(200, "feet")
  23684. },
  23685. {
  23686. name: "Megamacro",
  23687. height: math.unit(1000, "miles")
  23688. },
  23689. {
  23690. name: "Planetary",
  23691. height: math.unit(8000, "miles")
  23692. },
  23693. {
  23694. name: "True Layla",
  23695. height: math.unit(200000 * 7, "multiverses")
  23696. },
  23697. ]
  23698. ))
  23699. characterMakers.push(() => makeCharacter(
  23700. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23701. {
  23702. back: {
  23703. height: math.unit(10.5, "feet"),
  23704. weight: math.unit(800, "lb"),
  23705. name: "Back",
  23706. image: {
  23707. source: "./media/characters/knox/back.svg",
  23708. extra: 1486 / 1089,
  23709. bottom: 107 / 1601.4
  23710. }
  23711. },
  23712. side: {
  23713. height: math.unit(10.5, "feet"),
  23714. weight: math.unit(800, "lb"),
  23715. name: "Side",
  23716. image: {
  23717. source: "./media/characters/knox/side.svg",
  23718. extra: 244 / 218,
  23719. bottom: 14 / 260
  23720. }
  23721. },
  23722. },
  23723. [
  23724. {
  23725. name: "Compact",
  23726. height: math.unit(10.5, "feet"),
  23727. default: true
  23728. },
  23729. {
  23730. name: "Dynamax",
  23731. height: math.unit(210, "feet")
  23732. },
  23733. {
  23734. name: "Full Macro",
  23735. height: math.unit(850, "feet")
  23736. },
  23737. ]
  23738. ))
  23739. characterMakers.push(() => makeCharacter(
  23740. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23741. {
  23742. front: {
  23743. height: math.unit(28, "feet"),
  23744. weight: math.unit(10500, "lb"),
  23745. name: "Front",
  23746. image: {
  23747. source: "./media/characters/kayda/front.svg",
  23748. extra: 1536 / 1428,
  23749. bottom: 68.7 / 1603
  23750. }
  23751. },
  23752. back: {
  23753. height: math.unit(28, "feet"),
  23754. weight: math.unit(10500, "lb"),
  23755. name: "Back",
  23756. image: {
  23757. source: "./media/characters/kayda/back.svg",
  23758. extra: 1557 / 1464,
  23759. bottom: 39.5 / 1597.49
  23760. }
  23761. },
  23762. dick: {
  23763. height: math.unit(3.858, "feet"),
  23764. name: "Dick",
  23765. image: {
  23766. source: "./media/characters/kayda/dick.svg"
  23767. }
  23768. },
  23769. },
  23770. [
  23771. {
  23772. name: "Macro",
  23773. height: math.unit(28, "feet"),
  23774. default: true
  23775. },
  23776. ]
  23777. ))
  23778. characterMakers.push(() => makeCharacter(
  23779. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23780. {
  23781. front: {
  23782. height: math.unit(10 + 11 / 12, "feet"),
  23783. weight: math.unit(1400, "lb"),
  23784. name: "Front",
  23785. image: {
  23786. source: "./media/characters/brian/front.svg",
  23787. extra: 737 / 692,
  23788. bottom: 55.4 / 785
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Normal",
  23795. height: math.unit(10 + 11 / 12, "feet"),
  23796. default: true
  23797. },
  23798. ]
  23799. ))
  23800. characterMakers.push(() => makeCharacter(
  23801. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23802. {
  23803. front: {
  23804. height: math.unit(5 + 8 / 12, "feet"),
  23805. weight: math.unit(140, "lb"),
  23806. name: "Front",
  23807. image: {
  23808. source: "./media/characters/khemri/front.svg",
  23809. extra: 4780 / 4059,
  23810. bottom: 80.1 / 4859.25
  23811. }
  23812. },
  23813. },
  23814. [
  23815. {
  23816. name: "Micro",
  23817. height: math.unit(6, "inches")
  23818. },
  23819. {
  23820. name: "Normal",
  23821. height: math.unit(5 + 8 / 12, "feet"),
  23822. default: true
  23823. },
  23824. ]
  23825. ))
  23826. characterMakers.push(() => makeCharacter(
  23827. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23828. {
  23829. front: {
  23830. height: math.unit(13, "feet"),
  23831. weight: math.unit(1700, "lb"),
  23832. name: "Front",
  23833. image: {
  23834. source: "./media/characters/felix-braveheart/front.svg",
  23835. extra: 1222 / 1157,
  23836. bottom: 53.2 / 1280
  23837. }
  23838. },
  23839. back: {
  23840. height: math.unit(13, "feet"),
  23841. weight: math.unit(1700, "lb"),
  23842. name: "Back",
  23843. image: {
  23844. source: "./media/characters/felix-braveheart/back.svg",
  23845. extra: 1277 / 1203,
  23846. bottom: 50.2 / 1327
  23847. }
  23848. },
  23849. feral: {
  23850. height: math.unit(6, "feet"),
  23851. weight: math.unit(400, "lb"),
  23852. name: "Feral",
  23853. image: {
  23854. source: "./media/characters/felix-braveheart/feral.svg",
  23855. extra: 682 / 625,
  23856. bottom: 6.9 / 688
  23857. }
  23858. },
  23859. },
  23860. [
  23861. {
  23862. name: "Normal",
  23863. height: math.unit(13, "feet"),
  23864. default: true
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23870. {
  23871. side: {
  23872. height: math.unit(5 + 11 / 12, "feet"),
  23873. weight: math.unit(1400, "lb"),
  23874. name: "Side",
  23875. image: {
  23876. source: "./media/characters/shadow-blade/side.svg",
  23877. extra: 1726 / 1267,
  23878. bottom: 58.4 / 1785
  23879. }
  23880. },
  23881. },
  23882. [
  23883. {
  23884. name: "Normal",
  23885. height: math.unit(5 + 11 / 12, "feet"),
  23886. default: true
  23887. },
  23888. ]
  23889. ))
  23890. characterMakers.push(() => makeCharacter(
  23891. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23892. {
  23893. front: {
  23894. height: math.unit(1 + 6 / 12, "feet"),
  23895. weight: math.unit(25, "lb"),
  23896. name: "Front",
  23897. image: {
  23898. source: "./media/characters/karla-halldor/front.svg",
  23899. extra: 1459 / 1383,
  23900. bottom: 12 / 1472
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(1 + 6 / 12, "feet"),
  23908. default: true
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(6 + 2 / 12, "feet"),
  23917. weight: math.unit(160, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/ariam/front.svg",
  23921. extra: 714 / 617,
  23922. bottom: 23.4 / 737,
  23923. }
  23924. },
  23925. squatting: {
  23926. height: math.unit(4.1, "feet"),
  23927. weight: math.unit(160, "lb"),
  23928. name: "Squatting",
  23929. image: {
  23930. source: "./media/characters/ariam/squatting.svg",
  23931. extra: 2617 / 2112,
  23932. bottom: 61.2 / 2681,
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(6 + 2 / 12, "feet"),
  23940. default: true
  23941. },
  23942. {
  23943. name: "Normal+",
  23944. height: math.unit(4, "meters")
  23945. },
  23946. {
  23947. name: "Macro",
  23948. height: math.unit(50, "meters")
  23949. },
  23950. {
  23951. name: "Macro+",
  23952. height: math.unit(100, "meters")
  23953. },
  23954. {
  23955. name: "Megamacro",
  23956. height: math.unit(20, "km")
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23962. {
  23963. front: {
  23964. height: math.unit(1.67, "meters"),
  23965. weight: math.unit(140, "lb"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23969. extra: 438 / 410,
  23970. bottom: 0.75 / 439
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Shrunken",
  23977. height: math.unit(7.6, "cm")
  23978. },
  23979. {
  23980. name: "Human Scale",
  23981. height: math.unit(1.67, "meters")
  23982. },
  23983. {
  23984. name: "Wolxi Scale",
  23985. height: math.unit(36.7, "meters"),
  23986. default: true
  23987. },
  23988. ]
  23989. ))
  23990. characterMakers.push(() => makeCharacter(
  23991. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23992. {
  23993. front: {
  23994. height: math.unit(1.73, "meters"),
  23995. weight: math.unit(240, "lb"),
  23996. name: "Front",
  23997. image: {
  23998. source: "./media/characters/izue-two-mothers/front.svg",
  23999. extra: 469 / 437,
  24000. bottom: 1.24 / 470.6
  24001. }
  24002. },
  24003. },
  24004. [
  24005. {
  24006. name: "Shrunken",
  24007. height: math.unit(7.86, "cm")
  24008. },
  24009. {
  24010. name: "Human Scale",
  24011. height: math.unit(1.73, "meters")
  24012. },
  24013. {
  24014. name: "Wolxi Scale",
  24015. height: math.unit(38, "meters"),
  24016. default: true
  24017. },
  24018. ]
  24019. ))
  24020. characterMakers.push(() => makeCharacter(
  24021. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24022. {
  24023. front: {
  24024. height: math.unit(1.55, "meters"),
  24025. weight: math.unit(120, "lb"),
  24026. name: "Front",
  24027. image: {
  24028. source: "./media/characters/teeku-love-shack/front.svg",
  24029. extra: 387 / 362,
  24030. bottom: 1.51 / 388
  24031. }
  24032. },
  24033. },
  24034. [
  24035. {
  24036. name: "Shrunken",
  24037. height: math.unit(7, "cm")
  24038. },
  24039. {
  24040. name: "Human Scale",
  24041. height: math.unit(1.55, "meters")
  24042. },
  24043. {
  24044. name: "Wolxi Scale",
  24045. height: math.unit(34.1, "meters"),
  24046. default: true
  24047. },
  24048. ]
  24049. ))
  24050. characterMakers.push(() => makeCharacter(
  24051. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24052. {
  24053. front: {
  24054. height: math.unit(1.83, "meters"),
  24055. weight: math.unit(135, "lb"),
  24056. name: "Front",
  24057. image: {
  24058. source: "./media/characters/dejma-the-red/front.svg",
  24059. extra: 480 / 458,
  24060. bottom: 1.8 / 482
  24061. }
  24062. },
  24063. },
  24064. [
  24065. {
  24066. name: "Shrunken",
  24067. height: math.unit(8.3, "cm")
  24068. },
  24069. {
  24070. name: "Human Scale",
  24071. height: math.unit(1.83, "meters")
  24072. },
  24073. {
  24074. name: "Wolxi Scale",
  24075. height: math.unit(40, "meters"),
  24076. default: true
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24082. {
  24083. front: {
  24084. height: math.unit(1.78, "meters"),
  24085. weight: math.unit(65, "kg"),
  24086. name: "Front",
  24087. image: {
  24088. source: "./media/characters/aki/front.svg",
  24089. extra: 452 / 415
  24090. }
  24091. },
  24092. frontNsfw: {
  24093. height: math.unit(1.78, "meters"),
  24094. weight: math.unit(65, "kg"),
  24095. name: "Front (NSFW)",
  24096. image: {
  24097. source: "./media/characters/aki/front-nsfw.svg",
  24098. extra: 452 / 415
  24099. }
  24100. },
  24101. back: {
  24102. height: math.unit(1.78, "meters"),
  24103. weight: math.unit(65, "kg"),
  24104. name: "Back",
  24105. image: {
  24106. source: "./media/characters/aki/back.svg",
  24107. extra: 452 / 415
  24108. }
  24109. },
  24110. rump: {
  24111. height: math.unit(2.05, "feet"),
  24112. name: "Rump",
  24113. image: {
  24114. source: "./media/characters/aki/rump.svg"
  24115. }
  24116. },
  24117. dick: {
  24118. height: math.unit(0.95, "feet"),
  24119. name: "Dick",
  24120. image: {
  24121. source: "./media/characters/aki/dick.svg"
  24122. }
  24123. },
  24124. },
  24125. [
  24126. {
  24127. name: "Micro",
  24128. height: math.unit(15, "cm")
  24129. },
  24130. {
  24131. name: "Normal",
  24132. height: math.unit(178, "cm"),
  24133. default: true
  24134. },
  24135. {
  24136. name: "Macro",
  24137. height: math.unit(214, "m")
  24138. },
  24139. {
  24140. name: "Macro+",
  24141. height: math.unit(534, "m")
  24142. },
  24143. ]
  24144. ))
  24145. characterMakers.push(() => makeCharacter(
  24146. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24147. {
  24148. front: {
  24149. height: math.unit(5 + 5 / 12, "feet"),
  24150. weight: math.unit(120, "lb"),
  24151. name: "Front",
  24152. image: {
  24153. source: "./media/characters/ari/front.svg",
  24154. extra: 714.5 / 682,
  24155. bottom: 8 / 722.5
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Normal",
  24162. height: math.unit(5 + 5 / 12, "feet")
  24163. },
  24164. {
  24165. name: "Macro",
  24166. height: math.unit(100, "feet"),
  24167. default: true
  24168. },
  24169. {
  24170. name: "Megamacro",
  24171. height: math.unit(100, "miles")
  24172. },
  24173. {
  24174. name: "Gigamacro",
  24175. height: math.unit(80000, "miles")
  24176. },
  24177. ]
  24178. ))
  24179. characterMakers.push(() => makeCharacter(
  24180. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24181. {
  24182. side: {
  24183. height: math.unit(9, "feet"),
  24184. weight: math.unit(400, "kg"),
  24185. name: "Side",
  24186. image: {
  24187. source: "./media/characters/bolt/side.svg",
  24188. extra: 1126 / 896,
  24189. bottom: 60 / 1187.3,
  24190. }
  24191. },
  24192. },
  24193. [
  24194. {
  24195. name: "Micro",
  24196. height: math.unit(5, "inches")
  24197. },
  24198. {
  24199. name: "Normal",
  24200. height: math.unit(9, "feet"),
  24201. default: true
  24202. },
  24203. {
  24204. name: "Macro",
  24205. height: math.unit(700, "feet")
  24206. },
  24207. {
  24208. name: "Max Size",
  24209. height: math.unit(1.52e22, "yottameters")
  24210. },
  24211. ]
  24212. ))
  24213. characterMakers.push(() => makeCharacter(
  24214. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24215. {
  24216. front: {
  24217. height: math.unit(4.53, "meters"),
  24218. weight: math.unit(3, "tons"),
  24219. name: "Front",
  24220. image: {
  24221. source: "./media/characters/draekon-sylviar/front.svg",
  24222. extra: 1228 / 1068,
  24223. bottom: 41 / 1270
  24224. }
  24225. },
  24226. tail: {
  24227. height: math.unit(1.772, "meter"),
  24228. name: "Tail",
  24229. image: {
  24230. source: "./media/characters/draekon-sylviar/tail.svg"
  24231. }
  24232. },
  24233. head: {
  24234. height: math.unit(1.331, "meter"),
  24235. name: "Head",
  24236. image: {
  24237. source: "./media/characters/draekon-sylviar/head.svg"
  24238. }
  24239. },
  24240. hand: {
  24241. height: math.unit(0.564, "meter"),
  24242. name: "Hand",
  24243. image: {
  24244. source: "./media/characters/draekon-sylviar/hand.svg"
  24245. }
  24246. },
  24247. foot: {
  24248. height: math.unit(0.621, "meter"),
  24249. name: "Foot",
  24250. image: {
  24251. source: "./media/characters/draekon-sylviar/foot.svg",
  24252. bottom: 32 / 324
  24253. }
  24254. },
  24255. dick: {
  24256. height: math.unit(61, "cm"),
  24257. name: "Dick",
  24258. image: {
  24259. source: "./media/characters/draekon-sylviar/dick.svg"
  24260. }
  24261. },
  24262. dickseparated: {
  24263. height: math.unit(61, "cm"),
  24264. name: "Dick-separated",
  24265. image: {
  24266. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24267. }
  24268. },
  24269. },
  24270. [
  24271. {
  24272. name: "Small",
  24273. height: math.unit(4.53 / 2, "meters"),
  24274. default: true
  24275. },
  24276. {
  24277. name: "Normal",
  24278. height: math.unit(4.53, "meters"),
  24279. default: true
  24280. },
  24281. {
  24282. name: "Large",
  24283. height: math.unit(4.53 * 2, "meters"),
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24289. {
  24290. front: {
  24291. height: math.unit(6 + 2 / 12, "feet"),
  24292. weight: math.unit(180, "lb"),
  24293. name: "Front",
  24294. image: {
  24295. source: "./media/characters/brawler/front.svg",
  24296. extra: 3301 / 3027,
  24297. bottom: 138 / 3439
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Normal",
  24304. height: math.unit(6 + 2 / 12, "feet"),
  24305. default: true
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(11, "feet"),
  24314. weight: math.unit(1000, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/alex/front.svg",
  24318. bottom: 44.5 / 620
  24319. }
  24320. },
  24321. },
  24322. [
  24323. {
  24324. name: "Micro",
  24325. height: math.unit(5, "inches")
  24326. },
  24327. {
  24328. name: "Normal",
  24329. height: math.unit(11, "feet"),
  24330. default: true
  24331. },
  24332. {
  24333. name: "Macro",
  24334. height: math.unit(9.5e9, "feet")
  24335. },
  24336. {
  24337. name: "Max Size",
  24338. height: math.unit(1.4e283, "yottameters")
  24339. },
  24340. ]
  24341. ))
  24342. characterMakers.push(() => makeCharacter(
  24343. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24344. {
  24345. female: {
  24346. height: math.unit(29.9, "m"),
  24347. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24348. name: "Female",
  24349. image: {
  24350. source: "./media/characters/zenari/female.svg",
  24351. extra: 3281.6 / 3217,
  24352. bottom: 72.2 / 3353
  24353. }
  24354. },
  24355. male: {
  24356. height: math.unit(27.7, "m"),
  24357. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24358. name: "Male",
  24359. image: {
  24360. source: "./media/characters/zenari/male.svg",
  24361. extra: 3008 / 2991,
  24362. bottom: 54.6 / 3069
  24363. }
  24364. },
  24365. },
  24366. [
  24367. {
  24368. name: "Macro",
  24369. height: math.unit(29.7, "meters"),
  24370. default: true
  24371. },
  24372. ]
  24373. ))
  24374. characterMakers.push(() => makeCharacter(
  24375. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24376. {
  24377. female: {
  24378. height: math.unit(23.8, "m"),
  24379. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24380. name: "Female",
  24381. image: {
  24382. source: "./media/characters/mactarian/female.svg",
  24383. extra: 2662 / 2569,
  24384. bottom: 73 / 2736
  24385. }
  24386. },
  24387. male: {
  24388. height: math.unit(23.8, "m"),
  24389. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24390. name: "Male",
  24391. image: {
  24392. source: "./media/characters/mactarian/male.svg",
  24393. extra: 2673 / 2600,
  24394. bottom: 76 / 2750
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(23.8, "meters"),
  24402. default: true
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24408. {
  24409. female: {
  24410. height: math.unit(19.3, "m"),
  24411. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24412. name: "Female",
  24413. image: {
  24414. source: "./media/characters/umok/female.svg",
  24415. extra: 2186 / 2078,
  24416. bottom: 87 / 2277
  24417. }
  24418. },
  24419. male: {
  24420. height: math.unit(19.5, "m"),
  24421. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24422. name: "Male",
  24423. image: {
  24424. source: "./media/characters/umok/male.svg",
  24425. extra: 2233 / 2140,
  24426. bottom: 24.4 / 2258
  24427. }
  24428. },
  24429. },
  24430. [
  24431. {
  24432. name: "Macro",
  24433. height: math.unit(19.3, "meters"),
  24434. default: true
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24440. {
  24441. female: {
  24442. height: math.unit(26.15, "m"),
  24443. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24444. name: "Female",
  24445. image: {
  24446. source: "./media/characters/joraxian/female.svg",
  24447. extra: 2912 / 2824,
  24448. bottom: 36 / 2956
  24449. }
  24450. },
  24451. male: {
  24452. height: math.unit(25.4, "m"),
  24453. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24454. name: "Male",
  24455. image: {
  24456. source: "./media/characters/joraxian/male.svg",
  24457. extra: 2877 / 2721,
  24458. bottom: 82 / 2967
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Macro",
  24465. height: math.unit(26.15, "meters"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24472. {
  24473. female: {
  24474. height: math.unit(21.6, "m"),
  24475. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24476. name: "Female",
  24477. image: {
  24478. source: "./media/characters/sthara/female.svg",
  24479. extra: 2516 / 2347,
  24480. bottom: 21.5 / 2537
  24481. }
  24482. },
  24483. male: {
  24484. height: math.unit(24, "m"),
  24485. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24486. name: "Male",
  24487. image: {
  24488. source: "./media/characters/sthara/male.svg",
  24489. extra: 2732 / 2607,
  24490. bottom: 23 / 2732
  24491. }
  24492. },
  24493. },
  24494. [
  24495. {
  24496. name: "Macro",
  24497. height: math.unit(21.6, "meters"),
  24498. default: true
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24504. {
  24505. front: {
  24506. height: math.unit(6 + 4 / 12, "feet"),
  24507. weight: math.unit(175, "lb"),
  24508. name: "Front",
  24509. image: {
  24510. source: "./media/characters/luka-bryzant/front.svg",
  24511. extra: 311 / 289,
  24512. bottom: 4 / 315
  24513. }
  24514. },
  24515. back: {
  24516. height: math.unit(6 + 4 / 12, "feet"),
  24517. weight: math.unit(175, "lb"),
  24518. name: "Back",
  24519. image: {
  24520. source: "./media/characters/luka-bryzant/back.svg",
  24521. extra: 311 / 289,
  24522. bottom: 3.8 / 313.7
  24523. }
  24524. },
  24525. },
  24526. [
  24527. {
  24528. name: "Micro",
  24529. height: math.unit(10, "inches")
  24530. },
  24531. {
  24532. name: "Normal",
  24533. height: math.unit(6 + 4 / 12, "feet"),
  24534. default: true
  24535. },
  24536. {
  24537. name: "Large",
  24538. height: math.unit(12, "feet")
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24544. {
  24545. front: {
  24546. height: math.unit(5 + 7 / 12, "feet"),
  24547. weight: math.unit(185, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/aman-aquila/front.svg",
  24551. extra: 1013 / 976,
  24552. bottom: 45.6 / 1057
  24553. }
  24554. },
  24555. side: {
  24556. height: math.unit(5 + 7 / 12, "feet"),
  24557. weight: math.unit(185, "lb"),
  24558. name: "Side",
  24559. image: {
  24560. source: "./media/characters/aman-aquila/side.svg",
  24561. extra: 1054 / 1011,
  24562. bottom: 15 / 1070
  24563. }
  24564. },
  24565. back: {
  24566. height: math.unit(5 + 7 / 12, "feet"),
  24567. weight: math.unit(185, "lb"),
  24568. name: "Back",
  24569. image: {
  24570. source: "./media/characters/aman-aquila/back.svg",
  24571. extra: 1026 / 970,
  24572. bottom: 12 / 1039
  24573. }
  24574. },
  24575. head: {
  24576. height: math.unit(1.211, "feet"),
  24577. name: "Head",
  24578. image: {
  24579. source: "./media/characters/aman-aquila/head.svg",
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Minimicro",
  24586. height: math.unit(0.057, "inches")
  24587. },
  24588. {
  24589. name: "Micro",
  24590. height: math.unit(7, "inches")
  24591. },
  24592. {
  24593. name: "Mini",
  24594. height: math.unit(3 + 7 / 12, "feet")
  24595. },
  24596. {
  24597. name: "Normal",
  24598. height: math.unit(5 + 7 / 12, "feet"),
  24599. default: true
  24600. },
  24601. {
  24602. name: "Macro",
  24603. height: math.unit(157 + 7 / 12, "feet")
  24604. },
  24605. {
  24606. name: "Megamacro",
  24607. height: math.unit(1557 + 7 / 12, "feet")
  24608. },
  24609. {
  24610. name: "Gigamacro",
  24611. height: math.unit(15557 + 7 / 12, "feet")
  24612. },
  24613. ]
  24614. ))
  24615. characterMakers.push(() => makeCharacter(
  24616. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24617. {
  24618. front: {
  24619. height: math.unit(3 + 2 / 12, "inches"),
  24620. weight: math.unit(0.3, "ounces"),
  24621. name: "Front",
  24622. image: {
  24623. source: "./media/characters/hiphae/front.svg",
  24624. extra: 1931 / 1683,
  24625. bottom: 24 / 1955
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Normal",
  24632. height: math.unit(3 + 1 / 2, "inches"),
  24633. default: true
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(5 + 10 / 12, "feet"),
  24642. weight: math.unit(165, "lb"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/nicky/front.svg",
  24646. extra: 3144 / 2886,
  24647. bottom: 45.6 / 3192
  24648. }
  24649. },
  24650. back: {
  24651. height: math.unit(5 + 10 / 12, "feet"),
  24652. weight: math.unit(165, "lb"),
  24653. name: "Back",
  24654. image: {
  24655. source: "./media/characters/nicky/back.svg",
  24656. extra: 3055 / 2804,
  24657. bottom: 28.4 / 3087
  24658. }
  24659. },
  24660. frontclothed: {
  24661. height: math.unit(5 + 10 / 12, "feet"),
  24662. weight: math.unit(165, "lb"),
  24663. name: "Front-clothed",
  24664. image: {
  24665. source: "./media/characters/nicky/front-clothed.svg",
  24666. extra: 3184.9 / 2926.9,
  24667. bottom: 86.5 / 3239.9
  24668. }
  24669. },
  24670. foot: {
  24671. height: math.unit(1.16, "feet"),
  24672. name: "Foot",
  24673. image: {
  24674. source: "./media/characters/nicky/foot.svg"
  24675. }
  24676. },
  24677. feet: {
  24678. height: math.unit(1.34, "feet"),
  24679. name: "Feet",
  24680. image: {
  24681. source: "./media/characters/nicky/feet.svg"
  24682. }
  24683. },
  24684. maw: {
  24685. height: math.unit(0.9, "feet"),
  24686. name: "Maw",
  24687. image: {
  24688. source: "./media/characters/nicky/maw.svg"
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Normal",
  24695. height: math.unit(5 + 10 / 12, "feet"),
  24696. default: true
  24697. },
  24698. {
  24699. name: "Macro",
  24700. height: math.unit(60, "feet")
  24701. },
  24702. {
  24703. name: "Megamacro",
  24704. height: math.unit(1, "mile")
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24710. {
  24711. side: {
  24712. height: math.unit(10, "feet"),
  24713. weight: math.unit(600, "lb"),
  24714. name: "Side",
  24715. image: {
  24716. source: "./media/characters/blair/side.svg",
  24717. bottom: 16.6 / 475,
  24718. extra: 458 / 431
  24719. }
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Micro",
  24725. height: math.unit(8, "inches")
  24726. },
  24727. {
  24728. name: "Normal",
  24729. height: math.unit(10, "feet"),
  24730. default: true
  24731. },
  24732. {
  24733. name: "Macro",
  24734. height: math.unit(180, "feet")
  24735. },
  24736. ]
  24737. ))
  24738. characterMakers.push(() => makeCharacter(
  24739. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24740. {
  24741. front: {
  24742. height: math.unit(5 + 4 / 12, "feet"),
  24743. weight: math.unit(125, "lb"),
  24744. name: "Front",
  24745. image: {
  24746. source: "./media/characters/fisher/front.svg",
  24747. extra: 444 / 390,
  24748. bottom: 2 / 444.8
  24749. }
  24750. },
  24751. },
  24752. [
  24753. {
  24754. name: "Micro",
  24755. height: math.unit(4, "inches")
  24756. },
  24757. {
  24758. name: "Normal",
  24759. height: math.unit(5 + 4 / 12, "feet"),
  24760. default: true
  24761. },
  24762. {
  24763. name: "Macro",
  24764. height: math.unit(100, "feet")
  24765. },
  24766. ]
  24767. ))
  24768. characterMakers.push(() => makeCharacter(
  24769. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24770. {
  24771. front: {
  24772. height: math.unit(6.71, "feet"),
  24773. weight: math.unit(200, "lb"),
  24774. capacity: math.unit(1000000, "people"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/gliss/front.svg",
  24778. extra: 2347 / 2231,
  24779. bottom: 113 / 2462
  24780. }
  24781. },
  24782. hammerspaceSize: {
  24783. height: math.unit(6.71 * 717, "feet"),
  24784. weight: math.unit(200, "lb"),
  24785. capacity: math.unit(1000000, "people"),
  24786. name: "Hammerspace Size",
  24787. image: {
  24788. source: "./media/characters/gliss/front.svg",
  24789. extra: 2347 / 2231,
  24790. bottom: 113 / 2462
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Normal",
  24797. height: math.unit(6.71, "feet"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24804. {
  24805. side: {
  24806. height: math.unit(1.44, "m"),
  24807. weight: math.unit(80, "kg"),
  24808. name: "Side",
  24809. image: {
  24810. source: "./media/characters/dune-anderson/side.svg",
  24811. bottom: 49 / 1426
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Wolf-sized",
  24818. height: math.unit(1.44, "meters")
  24819. },
  24820. {
  24821. name: "Normal",
  24822. height: math.unit(5.05, "meters"),
  24823. default: true
  24824. },
  24825. {
  24826. name: "Big",
  24827. height: math.unit(14.4, "meters")
  24828. },
  24829. {
  24830. name: "Huge",
  24831. height: math.unit(144, "meters")
  24832. },
  24833. ]
  24834. ))
  24835. characterMakers.push(() => makeCharacter(
  24836. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24837. {
  24838. front: {
  24839. height: math.unit(7, "feet"),
  24840. weight: math.unit(425, "lb"),
  24841. name: "Front",
  24842. image: {
  24843. source: "./media/characters/hind/front.svg",
  24844. extra: 2091 / 1860,
  24845. bottom: 129 / 2220
  24846. }
  24847. },
  24848. back: {
  24849. height: math.unit(7, "feet"),
  24850. weight: math.unit(425, "lb"),
  24851. name: "Back",
  24852. image: {
  24853. source: "./media/characters/hind/back.svg",
  24854. extra: 2091 / 1860,
  24855. bottom: 24.6 / 2309
  24856. }
  24857. },
  24858. tail: {
  24859. height: math.unit(2.8, "feet"),
  24860. name: "Tail",
  24861. image: {
  24862. source: "./media/characters/hind/tail.svg"
  24863. }
  24864. },
  24865. head: {
  24866. height: math.unit(2.55, "feet"),
  24867. name: "Head",
  24868. image: {
  24869. source: "./media/characters/hind/head.svg"
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "XS",
  24876. height: math.unit(0.7, "feet")
  24877. },
  24878. {
  24879. name: "Normal",
  24880. height: math.unit(7, "feet"),
  24881. default: true
  24882. },
  24883. {
  24884. name: "XL",
  24885. height: math.unit(70, "feet")
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24891. {
  24892. front: {
  24893. height: math.unit(2.1, "meters"),
  24894. weight: math.unit(150, "lb"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/tharquench-sizestealer/front.svg",
  24898. extra: 1605/1470,
  24899. bottom: 36/1641
  24900. }
  24901. },
  24902. frontAlt: {
  24903. height: math.unit(2.1, "meters"),
  24904. weight: math.unit(150, "lb"),
  24905. name: "Front (Alt)",
  24906. image: {
  24907. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24908. extra: 2318 / 2063,
  24909. bottom: 93.4 / 2410
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Nano",
  24916. height: math.unit(1, "mm")
  24917. },
  24918. {
  24919. name: "Micro",
  24920. height: math.unit(1, "cm")
  24921. },
  24922. {
  24923. name: "Normal",
  24924. height: math.unit(2.1, "meters"),
  24925. default: true
  24926. },
  24927. ]
  24928. ))
  24929. characterMakers.push(() => makeCharacter(
  24930. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24931. {
  24932. front: {
  24933. height: math.unit(7 + 5 / 12, "feet"),
  24934. weight: math.unit(357, "lb"),
  24935. name: "Front",
  24936. image: {
  24937. source: "./media/characters/solex-draconov/front.svg",
  24938. extra: 1993 / 1865,
  24939. bottom: 117 / 2111
  24940. }
  24941. },
  24942. },
  24943. [
  24944. {
  24945. name: "Natural Height",
  24946. height: math.unit(7 + 5 / 12, "feet"),
  24947. default: true
  24948. },
  24949. {
  24950. name: "Macro",
  24951. height: math.unit(350, "feet")
  24952. },
  24953. {
  24954. name: "Macro+",
  24955. height: math.unit(1000, "feet")
  24956. },
  24957. {
  24958. name: "Megamacro",
  24959. height: math.unit(20, "km")
  24960. },
  24961. {
  24962. name: "Megamacro+",
  24963. height: math.unit(1000, "km")
  24964. },
  24965. {
  24966. name: "Gigamacro",
  24967. height: math.unit(2.5, "Gm")
  24968. },
  24969. {
  24970. name: "Teramacro",
  24971. height: math.unit(15, "Tm")
  24972. },
  24973. {
  24974. name: "Galactic",
  24975. height: math.unit(30, "Zm")
  24976. },
  24977. {
  24978. name: "Universal",
  24979. height: math.unit(21000, "Ym")
  24980. },
  24981. {
  24982. name: "Omniversal",
  24983. height: math.unit(9.861e50, "Ym")
  24984. },
  24985. {
  24986. name: "Existential",
  24987. height: math.unit(1e300, "meters")
  24988. },
  24989. ]
  24990. ))
  24991. characterMakers.push(() => makeCharacter(
  24992. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24993. {
  24994. side: {
  24995. height: math.unit(25, "feet"),
  24996. weight: math.unit(90000, "lb"),
  24997. name: "Side",
  24998. image: {
  24999. source: "./media/characters/mandarax/side.svg",
  25000. extra: 614 / 332,
  25001. bottom: 55 / 630
  25002. }
  25003. },
  25004. head: {
  25005. height: math.unit(11.4, "feet"),
  25006. name: "Head",
  25007. image: {
  25008. source: "./media/characters/mandarax/head.svg"
  25009. }
  25010. },
  25011. belly: {
  25012. height: math.unit(33, "feet"),
  25013. name: "Belly",
  25014. capacity: math.unit(500, "people"),
  25015. image: {
  25016. source: "./media/characters/mandarax/belly.svg"
  25017. }
  25018. },
  25019. dick: {
  25020. height: math.unit(8.46, "feet"),
  25021. name: "Dick",
  25022. image: {
  25023. source: "./media/characters/mandarax/dick.svg"
  25024. }
  25025. },
  25026. top: {
  25027. height: math.unit(28, "meters"),
  25028. name: "Top",
  25029. image: {
  25030. source: "./media/characters/mandarax/top.svg"
  25031. }
  25032. },
  25033. },
  25034. [
  25035. {
  25036. name: "Normal",
  25037. height: math.unit(25, "feet"),
  25038. default: true
  25039. },
  25040. ]
  25041. ))
  25042. characterMakers.push(() => makeCharacter(
  25043. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25044. {
  25045. front: {
  25046. height: math.unit(5, "feet"),
  25047. weight: math.unit(90, "lb"),
  25048. name: "Front",
  25049. image: {
  25050. source: "./media/characters/pixil/front.svg",
  25051. extra: 2000 / 1618,
  25052. bottom: 12.3 / 2011
  25053. }
  25054. },
  25055. },
  25056. [
  25057. {
  25058. name: "Normal",
  25059. height: math.unit(5, "feet"),
  25060. default: true
  25061. },
  25062. {
  25063. name: "Megamacro",
  25064. height: math.unit(10, "miles"),
  25065. },
  25066. ]
  25067. ))
  25068. characterMakers.push(() => makeCharacter(
  25069. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25070. {
  25071. front: {
  25072. height: math.unit(7 + 2 / 12, "feet"),
  25073. weight: math.unit(200, "lb"),
  25074. name: "Front",
  25075. image: {
  25076. source: "./media/characters/angel/front.svg",
  25077. extra: 1830 / 1737,
  25078. bottom: 22.6 / 1854,
  25079. }
  25080. },
  25081. },
  25082. [
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(7 + 2 / 12, "feet"),
  25086. default: true
  25087. },
  25088. {
  25089. name: "Macro",
  25090. height: math.unit(1000, "feet")
  25091. },
  25092. {
  25093. name: "Megamacro",
  25094. height: math.unit(2, "miles")
  25095. },
  25096. {
  25097. name: "Gigamacro",
  25098. height: math.unit(20, "earths")
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(5, "feet"),
  25107. weight: math.unit(180, "lb"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/mekana/front.svg",
  25111. extra: 1671 / 1605,
  25112. bottom: 3.5 / 1691
  25113. }
  25114. },
  25115. side: {
  25116. height: math.unit(5, "feet"),
  25117. weight: math.unit(180, "lb"),
  25118. name: "Side",
  25119. image: {
  25120. source: "./media/characters/mekana/side.svg",
  25121. extra: 1671 / 1605,
  25122. bottom: 3.5 / 1691
  25123. }
  25124. },
  25125. back: {
  25126. height: math.unit(5, "feet"),
  25127. weight: math.unit(180, "lb"),
  25128. name: "Back",
  25129. image: {
  25130. source: "./media/characters/mekana/back.svg",
  25131. extra: 1671 / 1605,
  25132. bottom: 3.5 / 1691
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(5, "feet"),
  25140. default: true
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(4 + 6 / 12, "feet"),
  25149. weight: math.unit(80, "lb"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/pixie/front.svg",
  25153. extra: 1924 / 1825,
  25154. bottom: 22.4 / 1946
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(4 + 6 / 12, "feet"),
  25162. default: true
  25163. },
  25164. {
  25165. name: "Macro",
  25166. height: math.unit(40, "feet")
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25172. {
  25173. front: {
  25174. height: math.unit(2.1, "meters"),
  25175. weight: math.unit(200, "lb"),
  25176. name: "Front",
  25177. image: {
  25178. source: "./media/characters/the-lascivious/front.svg",
  25179. extra: 1 / 0.893,
  25180. bottom: 3.5 / 573.7
  25181. }
  25182. },
  25183. },
  25184. [
  25185. {
  25186. name: "Human Scale",
  25187. height: math.unit(2.1, "meters")
  25188. },
  25189. {
  25190. name: "Wolxi Scale",
  25191. height: math.unit(46.2, "m"),
  25192. default: true
  25193. },
  25194. {
  25195. name: "Boinker of Buildings",
  25196. height: math.unit(10, "km")
  25197. },
  25198. {
  25199. name: "Shagger of Skyscrapers",
  25200. height: math.unit(40, "km")
  25201. },
  25202. {
  25203. name: "Banger of Boroughs",
  25204. height: math.unit(4000, "km")
  25205. },
  25206. {
  25207. name: "Screwer of States",
  25208. height: math.unit(100000, "km")
  25209. },
  25210. {
  25211. name: "Pounder of Planets",
  25212. height: math.unit(2000000, "km")
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25218. {
  25219. front: {
  25220. height: math.unit(6, "feet"),
  25221. weight: math.unit(150, "lb"),
  25222. name: "Front",
  25223. image: {
  25224. source: "./media/characters/aj/front.svg",
  25225. extra: 2039 / 1562,
  25226. bottom: 40 / 2079
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Normal",
  25233. height: math.unit(11 + 6 / 12, "feet"),
  25234. default: true
  25235. },
  25236. {
  25237. name: "Megamacro",
  25238. height: math.unit(60, "megameters")
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25244. {
  25245. side: {
  25246. height: math.unit(31 + 8 / 12, "feet"),
  25247. weight: math.unit(75000, "kg"),
  25248. name: "Side",
  25249. image: {
  25250. source: "./media/characters/koros/side.svg",
  25251. extra: 1442 / 1297,
  25252. bottom: 122.7 / 1562
  25253. }
  25254. },
  25255. dicksKingsCrown: {
  25256. height: math.unit(6, "feet"),
  25257. name: "Dicks (King's Crown)",
  25258. image: {
  25259. source: "./media/characters/koros/dicks-kings-crown.svg"
  25260. }
  25261. },
  25262. dicksTailSet: {
  25263. height: math.unit(3, "feet"),
  25264. name: "Dicks (Tail Set)",
  25265. image: {
  25266. source: "./media/characters/koros/dicks-tail-set.svg"
  25267. }
  25268. },
  25269. dickCumming: {
  25270. height: math.unit(7.98, "feet"),
  25271. name: "Dick (Cumming)",
  25272. image: {
  25273. source: "./media/characters/koros/dick-cumming.svg"
  25274. }
  25275. },
  25276. dicksBack: {
  25277. height: math.unit(5.9, "feet"),
  25278. name: "Dicks (Back)",
  25279. image: {
  25280. source: "./media/characters/koros/dicks-back.svg"
  25281. }
  25282. },
  25283. dicksFront: {
  25284. height: math.unit(3.72, "feet"),
  25285. name: "Dicks (Front)",
  25286. image: {
  25287. source: "./media/characters/koros/dicks-front.svg"
  25288. }
  25289. },
  25290. dicksPeeking: {
  25291. height: math.unit(3.0, "feet"),
  25292. name: "Dicks (Peeking)",
  25293. image: {
  25294. source: "./media/characters/koros/dicks-peeking.svg"
  25295. }
  25296. },
  25297. eye: {
  25298. height: math.unit(1.7, "feet"),
  25299. name: "Eye",
  25300. image: {
  25301. source: "./media/characters/koros/eye.svg"
  25302. }
  25303. },
  25304. headFront: {
  25305. height: math.unit(11.69, "feet"),
  25306. name: "Head (Front)",
  25307. image: {
  25308. source: "./media/characters/koros/head-front.svg"
  25309. }
  25310. },
  25311. headSide: {
  25312. height: math.unit(14, "feet"),
  25313. name: "Head (Side)",
  25314. image: {
  25315. source: "./media/characters/koros/head-side.svg"
  25316. }
  25317. },
  25318. leg: {
  25319. height: math.unit(17, "feet"),
  25320. name: "Leg",
  25321. image: {
  25322. source: "./media/characters/koros/leg.svg"
  25323. }
  25324. },
  25325. mawSide: {
  25326. height: math.unit(12.8, "feet"),
  25327. name: "Maw (Side)",
  25328. image: {
  25329. source: "./media/characters/koros/maw-side.svg"
  25330. }
  25331. },
  25332. mawSpitting: {
  25333. height: math.unit(17, "feet"),
  25334. name: "Maw (Spitting)",
  25335. image: {
  25336. source: "./media/characters/koros/maw-spitting.svg"
  25337. }
  25338. },
  25339. slit: {
  25340. height: math.unit(2.8, "feet"),
  25341. name: "Slit",
  25342. image: {
  25343. source: "./media/characters/koros/slit.svg"
  25344. }
  25345. },
  25346. stomach: {
  25347. height: math.unit(6.8, "feet"),
  25348. capacity: math.unit(20, "people"),
  25349. name: "Stomach",
  25350. image: {
  25351. source: "./media/characters/koros/stomach.svg"
  25352. }
  25353. },
  25354. wingspanBottom: {
  25355. height: math.unit(114, "feet"),
  25356. name: "Wingspan (Bottom)",
  25357. image: {
  25358. source: "./media/characters/koros/wingspan-bottom.svg"
  25359. }
  25360. },
  25361. wingspanTop: {
  25362. height: math.unit(104, "feet"),
  25363. name: "Wingspan (Top)",
  25364. image: {
  25365. source: "./media/characters/koros/wingspan-top.svg"
  25366. }
  25367. },
  25368. },
  25369. [
  25370. {
  25371. name: "Normal",
  25372. height: math.unit(31 + 8 / 12, "feet"),
  25373. default: true
  25374. },
  25375. ]
  25376. ))
  25377. characterMakers.push(() => makeCharacter(
  25378. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25379. {
  25380. front: {
  25381. height: math.unit(18 + 5 / 12, "feet"),
  25382. weight: math.unit(3750, "kg"),
  25383. name: "Front",
  25384. image: {
  25385. source: "./media/characters/vexx/front.svg",
  25386. extra: 426 / 396,
  25387. bottom: 31.5 / 458
  25388. }
  25389. },
  25390. maw: {
  25391. height: math.unit(6, "feet"),
  25392. name: "Maw",
  25393. image: {
  25394. source: "./media/characters/vexx/maw.svg"
  25395. }
  25396. },
  25397. },
  25398. [
  25399. {
  25400. name: "Normal",
  25401. height: math.unit(18 + 5 / 12, "feet"),
  25402. default: true
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(17 + 6 / 12, "feet"),
  25411. weight: math.unit(150, "lb"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/baadra/front.svg",
  25415. extra: 3137 / 2890,
  25416. bottom: 168.4 / 3305
  25417. }
  25418. },
  25419. back: {
  25420. height: math.unit(17 + 6 / 12, "feet"),
  25421. weight: math.unit(150, "lb"),
  25422. name: "Back",
  25423. image: {
  25424. source: "./media/characters/baadra/back.svg",
  25425. extra: 3142 / 2890,
  25426. bottom: 220 / 3371
  25427. }
  25428. },
  25429. head: {
  25430. height: math.unit(5.45, "feet"),
  25431. name: "Head",
  25432. image: {
  25433. source: "./media/characters/baadra/head.svg"
  25434. }
  25435. },
  25436. headAngry: {
  25437. height: math.unit(4.95, "feet"),
  25438. name: "Head (Angry)",
  25439. image: {
  25440. source: "./media/characters/baadra/head-angry.svg"
  25441. }
  25442. },
  25443. headOpen: {
  25444. height: math.unit(6, "feet"),
  25445. name: "Head (Open)",
  25446. image: {
  25447. source: "./media/characters/baadra/head-open.svg"
  25448. }
  25449. },
  25450. },
  25451. [
  25452. {
  25453. name: "Normal",
  25454. height: math.unit(17 + 6 / 12, "feet"),
  25455. default: true
  25456. },
  25457. ]
  25458. ))
  25459. characterMakers.push(() => makeCharacter(
  25460. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25461. {
  25462. front: {
  25463. height: math.unit(7 + 3 / 12, "feet"),
  25464. weight: math.unit(180, "lb"),
  25465. name: "Front",
  25466. image: {
  25467. source: "./media/characters/juri/front.svg",
  25468. extra: 1401 / 1237,
  25469. bottom: 18.5 / 1418
  25470. }
  25471. },
  25472. side: {
  25473. height: math.unit(7 + 3 / 12, "feet"),
  25474. weight: math.unit(180, "lb"),
  25475. name: "Side",
  25476. image: {
  25477. source: "./media/characters/juri/side.svg",
  25478. extra: 1424 / 1242,
  25479. bottom: 18.5 / 1447
  25480. }
  25481. },
  25482. sitting: {
  25483. height: math.unit(6, "feet"),
  25484. weight: math.unit(180, "lb"),
  25485. name: "Sitting",
  25486. image: {
  25487. source: "./media/characters/juri/sitting.svg",
  25488. extra: 1270 / 1143,
  25489. bottom: 100 / 1343
  25490. }
  25491. },
  25492. back: {
  25493. height: math.unit(7 + 3 / 12, "feet"),
  25494. weight: math.unit(180, "lb"),
  25495. name: "Back",
  25496. image: {
  25497. source: "./media/characters/juri/back.svg",
  25498. extra: 1377 / 1240,
  25499. bottom: 23.7 / 1405
  25500. }
  25501. },
  25502. maw: {
  25503. height: math.unit(2.8, "feet"),
  25504. name: "Maw",
  25505. image: {
  25506. source: "./media/characters/juri/maw.svg"
  25507. }
  25508. },
  25509. stomach: {
  25510. height: math.unit(0.89, "feet"),
  25511. capacity: math.unit(4, "liters"),
  25512. name: "Stomach",
  25513. image: {
  25514. source: "./media/characters/juri/stomach.svg"
  25515. }
  25516. },
  25517. },
  25518. [
  25519. {
  25520. name: "Normal",
  25521. height: math.unit(7 + 3 / 12, "feet"),
  25522. default: true
  25523. },
  25524. ]
  25525. ))
  25526. characterMakers.push(() => makeCharacter(
  25527. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25528. {
  25529. fox: {
  25530. height: math.unit(5 + 6 / 12, "feet"),
  25531. weight: math.unit(140, "lb"),
  25532. name: "Fox",
  25533. image: {
  25534. source: "./media/characters/maxene-sita/fox.svg",
  25535. extra: 146 / 138,
  25536. bottom: 2.1 / 148.19
  25537. }
  25538. },
  25539. foxLaying: {
  25540. height: math.unit(1.70, "feet"),
  25541. weight: math.unit(140, "lb"),
  25542. name: "Fox (Laying)",
  25543. image: {
  25544. source: "./media/characters/maxene-sita/fox-laying.svg",
  25545. extra: 910 / 572,
  25546. bottom: 71 / 981
  25547. }
  25548. },
  25549. kitsune: {
  25550. height: math.unit(10, "feet"),
  25551. weight: math.unit(800, "lb"),
  25552. name: "Kitsune",
  25553. image: {
  25554. source: "./media/characters/maxene-sita/kitsune.svg",
  25555. extra: 185 / 176,
  25556. bottom: 4.7 / 189.9
  25557. }
  25558. },
  25559. hellhound: {
  25560. height: math.unit(10, "feet"),
  25561. weight: math.unit(700, "lb"),
  25562. name: "Hellhound",
  25563. image: {
  25564. source: "./media/characters/maxene-sita/hellhound.svg",
  25565. extra: 1600 / 1545,
  25566. bottom: 81 / 1681
  25567. }
  25568. },
  25569. },
  25570. [
  25571. {
  25572. name: "Normal",
  25573. height: math.unit(5 + 6 / 12, "feet"),
  25574. default: true
  25575. },
  25576. ]
  25577. ))
  25578. characterMakers.push(() => makeCharacter(
  25579. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25580. {
  25581. front: {
  25582. height: math.unit(3 + 4 / 12, "feet"),
  25583. weight: math.unit(70, "lb"),
  25584. name: "Front",
  25585. image: {
  25586. source: "./media/characters/maia/front.svg",
  25587. extra: 227 / 219.5,
  25588. bottom: 40 / 267
  25589. }
  25590. },
  25591. back: {
  25592. height: math.unit(3 + 4 / 12, "feet"),
  25593. weight: math.unit(70, "lb"),
  25594. name: "Back",
  25595. image: {
  25596. source: "./media/characters/maia/back.svg",
  25597. extra: 237 / 225
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Normal",
  25604. height: math.unit(3 + 4 / 12, "feet"),
  25605. default: true
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(5 + 10 / 12, "feet"),
  25614. weight: math.unit(197, "lb"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/jabaro/front.svg",
  25618. extra: 225 / 216,
  25619. bottom: 5.06 / 230
  25620. }
  25621. },
  25622. back: {
  25623. height: math.unit(5 + 10 / 12, "feet"),
  25624. weight: math.unit(197, "lb"),
  25625. name: "Back",
  25626. image: {
  25627. source: "./media/characters/jabaro/back.svg",
  25628. extra: 225 / 219,
  25629. bottom: 1.9 / 227
  25630. }
  25631. },
  25632. },
  25633. [
  25634. {
  25635. name: "Normal",
  25636. height: math.unit(5 + 10 / 12, "feet"),
  25637. default: true
  25638. },
  25639. ]
  25640. ))
  25641. characterMakers.push(() => makeCharacter(
  25642. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25643. {
  25644. front: {
  25645. height: math.unit(5 + 8 / 12, "feet"),
  25646. weight: math.unit(139, "lb"),
  25647. name: "Front",
  25648. image: {
  25649. source: "./media/characters/risa/front.svg",
  25650. extra: 270 / 260,
  25651. bottom: 11.2 / 282
  25652. }
  25653. },
  25654. back: {
  25655. height: math.unit(5 + 8 / 12, "feet"),
  25656. weight: math.unit(139, "lb"),
  25657. name: "Back",
  25658. image: {
  25659. source: "./media/characters/risa/back.svg",
  25660. extra: 264 / 255,
  25661. bottom: 4 / 268
  25662. }
  25663. },
  25664. },
  25665. [
  25666. {
  25667. name: "Normal",
  25668. height: math.unit(5 + 8 / 12, "feet"),
  25669. default: true
  25670. },
  25671. ]
  25672. ))
  25673. characterMakers.push(() => makeCharacter(
  25674. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25675. {
  25676. front: {
  25677. height: math.unit(2 + 11 / 12, "feet"),
  25678. weight: math.unit(30, "lb"),
  25679. name: "Front",
  25680. image: {
  25681. source: "./media/characters/weatley/front.svg",
  25682. bottom: 10.7 / 414,
  25683. extra: 403.5 / 362
  25684. }
  25685. },
  25686. back: {
  25687. height: math.unit(2 + 11 / 12, "feet"),
  25688. weight: math.unit(30, "lb"),
  25689. name: "Back",
  25690. image: {
  25691. source: "./media/characters/weatley/back.svg",
  25692. bottom: 10.7 / 414,
  25693. extra: 403.5 / 362
  25694. }
  25695. },
  25696. },
  25697. [
  25698. {
  25699. name: "Normal",
  25700. height: math.unit(2 + 11 / 12, "feet"),
  25701. default: true
  25702. },
  25703. ]
  25704. ))
  25705. characterMakers.push(() => makeCharacter(
  25706. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25707. {
  25708. front: {
  25709. height: math.unit(5 + 2 / 12, "feet"),
  25710. weight: math.unit(50, "kg"),
  25711. name: "Front",
  25712. image: {
  25713. source: "./media/characters/mercury-crescent/front.svg",
  25714. extra: 1088 / 1033,
  25715. bottom: 18.9 / 1109
  25716. }
  25717. },
  25718. },
  25719. [
  25720. {
  25721. name: "Normal",
  25722. height: math.unit(5 + 2 / 12, "feet"),
  25723. default: true
  25724. },
  25725. ]
  25726. ))
  25727. characterMakers.push(() => makeCharacter(
  25728. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25729. {
  25730. front: {
  25731. height: math.unit(2, "feet"),
  25732. weight: math.unit(15, "kg"),
  25733. name: "Front",
  25734. image: {
  25735. source: "./media/characters/diamond-jones/front.svg",
  25736. extra: 727/723,
  25737. bottom: 46/773
  25738. }
  25739. },
  25740. },
  25741. [
  25742. {
  25743. name: "Normal",
  25744. height: math.unit(2, "feet"),
  25745. default: true
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25751. {
  25752. front: {
  25753. height: math.unit(3, "feet"),
  25754. weight: math.unit(30, "kg"),
  25755. name: "Front",
  25756. image: {
  25757. source: "./media/characters/sweet-bit/front.svg",
  25758. extra: 675 / 567,
  25759. bottom: 27.7 / 703
  25760. }
  25761. },
  25762. },
  25763. [
  25764. {
  25765. name: "Normal",
  25766. height: math.unit(3, "feet"),
  25767. default: true
  25768. },
  25769. ]
  25770. ))
  25771. characterMakers.push(() => makeCharacter(
  25772. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25773. {
  25774. side: {
  25775. height: math.unit(9.178, "feet"),
  25776. weight: math.unit(500, "lb"),
  25777. name: "Side",
  25778. image: {
  25779. source: "./media/characters/umbrazen/side.svg",
  25780. extra: 1730 / 1473,
  25781. bottom: 34.6 / 1765
  25782. }
  25783. },
  25784. },
  25785. [
  25786. {
  25787. name: "Normal",
  25788. height: math.unit(9.178, "feet"),
  25789. default: true
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25795. {
  25796. front: {
  25797. height: math.unit(10, "feet"),
  25798. weight: math.unit(750, "lb"),
  25799. name: "Front",
  25800. image: {
  25801. source: "./media/characters/arlist/front.svg",
  25802. extra: 961 / 778,
  25803. bottom: 6.2 / 986
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Normal",
  25810. height: math.unit(10, "feet"),
  25811. default: true
  25812. },
  25813. ]
  25814. ))
  25815. characterMakers.push(() => makeCharacter(
  25816. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25817. {
  25818. front: {
  25819. height: math.unit(5 + 1 / 12, "feet"),
  25820. weight: math.unit(110, "lb"),
  25821. name: "Front",
  25822. image: {
  25823. source: "./media/characters/aradel/front.svg",
  25824. extra: 324 / 303,
  25825. bottom: 3.6 / 329.4
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Normal",
  25832. height: math.unit(5 + 1 / 12, "feet"),
  25833. default: true
  25834. },
  25835. ]
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25839. {
  25840. front: {
  25841. height: math.unit(3 + 8 / 12, "feet"),
  25842. weight: math.unit(50, "lb"),
  25843. name: "Front",
  25844. image: {
  25845. source: "./media/characters/serryn/front.svg",
  25846. extra: 1792 / 1656,
  25847. bottom: 43.5 / 1840
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Normal",
  25854. height: math.unit(3 + 8 / 12, "feet"),
  25855. default: true
  25856. },
  25857. ]
  25858. ))
  25859. characterMakers.push(() => makeCharacter(
  25860. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25861. {
  25862. front: {
  25863. height: math.unit(7 + 10 / 12, "feet"),
  25864. weight: math.unit(255, "lb"),
  25865. name: "Front",
  25866. image: {
  25867. source: "./media/characters/xavier-thyme/front.svg",
  25868. extra: 3733 / 3642,
  25869. bottom: 131 / 3869
  25870. }
  25871. },
  25872. frontRaven: {
  25873. height: math.unit(7 + 10 / 12, "feet"),
  25874. weight: math.unit(255, "lb"),
  25875. name: "Front (Raven)",
  25876. image: {
  25877. source: "./media/characters/xavier-thyme/front-raven.svg",
  25878. extra: 4385 / 3642,
  25879. bottom: 131 / 4517
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(7 + 10 / 12, "feet"),
  25887. default: true
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25893. {
  25894. front: {
  25895. height: math.unit(1.6, "m"),
  25896. weight: math.unit(50, "kg"),
  25897. name: "Front",
  25898. image: {
  25899. source: "./media/characters/kiki/front.svg",
  25900. extra: 4682 / 3610,
  25901. bottom: 115 / 4777
  25902. }
  25903. },
  25904. },
  25905. [
  25906. {
  25907. name: "Normal",
  25908. height: math.unit(1.6, "meters"),
  25909. default: true
  25910. },
  25911. ]
  25912. ))
  25913. characterMakers.push(() => makeCharacter(
  25914. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25915. {
  25916. front: {
  25917. height: math.unit(50, "m"),
  25918. weight: math.unit(500, "tonnes"),
  25919. name: "Front",
  25920. image: {
  25921. source: "./media/characters/ryoko/front.svg",
  25922. extra: 4632 / 3926,
  25923. bottom: 193 / 4823
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Normal",
  25930. height: math.unit(50, "meters"),
  25931. default: true
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(30, "m"),
  25940. weight: math.unit(22, "tonnes"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/elio/front.svg",
  25944. extra: 4582 / 3720,
  25945. bottom: 236 / 4828
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Normal",
  25952. height: math.unit(30, "meters"),
  25953. default: true
  25954. },
  25955. ]
  25956. ))
  25957. characterMakers.push(() => makeCharacter(
  25958. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25959. {
  25960. front: {
  25961. height: math.unit(6 + 3 / 12, "feet"),
  25962. weight: math.unit(120, "lb"),
  25963. name: "Front",
  25964. image: {
  25965. source: "./media/characters/azura/front.svg",
  25966. extra: 1149 / 1135,
  25967. bottom: 45 / 1194
  25968. }
  25969. },
  25970. frontClothed: {
  25971. height: math.unit(6 + 3 / 12, "feet"),
  25972. weight: math.unit(120, "lb"),
  25973. name: "Front (Clothed)",
  25974. image: {
  25975. source: "./media/characters/azura/front-clothed.svg",
  25976. extra: 1149 / 1135,
  25977. bottom: 45 / 1194
  25978. }
  25979. },
  25980. },
  25981. [
  25982. {
  25983. name: "Normal",
  25984. height: math.unit(6 + 3 / 12, "feet"),
  25985. default: true
  25986. },
  25987. {
  25988. name: "Macro",
  25989. height: math.unit(20 + 6 / 12, "feet")
  25990. },
  25991. {
  25992. name: "Megamacro",
  25993. height: math.unit(12, "miles")
  25994. },
  25995. {
  25996. name: "Gigamacro",
  25997. height: math.unit(10000, "miles")
  25998. },
  25999. {
  26000. name: "Teramacro",
  26001. height: math.unit(900000, "miles")
  26002. },
  26003. ]
  26004. ))
  26005. characterMakers.push(() => makeCharacter(
  26006. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26007. {
  26008. front: {
  26009. height: math.unit(12, "feet"),
  26010. weight: math.unit(1, "ton"),
  26011. capacity: math.unit(660000, "gallons"),
  26012. name: "Front",
  26013. image: {
  26014. source: "./media/characters/zeus/front.svg",
  26015. extra: 5005 / 4717,
  26016. bottom: 363 / 5388
  26017. }
  26018. },
  26019. },
  26020. [
  26021. {
  26022. name: "Normal",
  26023. height: math.unit(12, "feet")
  26024. },
  26025. {
  26026. name: "Preferred Size",
  26027. height: math.unit(0.5, "miles"),
  26028. default: true
  26029. },
  26030. {
  26031. name: "Giga Horse",
  26032. height: math.unit(300, "miles")
  26033. },
  26034. {
  26035. name: "Riding Planets",
  26036. height: math.unit(30, "megameters")
  26037. },
  26038. {
  26039. name: "Cosmic Giant",
  26040. height: math.unit(3, "zettameters")
  26041. },
  26042. {
  26043. name: "Breeding God",
  26044. height: math.unit(9.92e22, "yottameters")
  26045. },
  26046. ]
  26047. ))
  26048. characterMakers.push(() => makeCharacter(
  26049. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26050. {
  26051. side: {
  26052. height: math.unit(9, "feet"),
  26053. weight: math.unit(1500, "kg"),
  26054. name: "Side",
  26055. image: {
  26056. source: "./media/characters/fang/side.svg",
  26057. extra: 924 / 866,
  26058. bottom: 47.5 / 972.3
  26059. }
  26060. },
  26061. },
  26062. [
  26063. {
  26064. name: "Normal",
  26065. height: math.unit(9, "feet"),
  26066. default: true
  26067. },
  26068. {
  26069. name: "Macro",
  26070. height: math.unit(75 + 6 / 12, "feet")
  26071. },
  26072. {
  26073. name: "Teramacro",
  26074. height: math.unit(50000, "miles")
  26075. },
  26076. ]
  26077. ))
  26078. characterMakers.push(() => makeCharacter(
  26079. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26080. {
  26081. front: {
  26082. height: math.unit(10, "feet"),
  26083. weight: math.unit(2, "tons"),
  26084. name: "Front",
  26085. image: {
  26086. source: "./media/characters/rekhit/front.svg",
  26087. extra: 2796 / 2590,
  26088. bottom: 225 / 3022
  26089. }
  26090. },
  26091. },
  26092. [
  26093. {
  26094. name: "Normal",
  26095. height: math.unit(10, "feet"),
  26096. default: true
  26097. },
  26098. {
  26099. name: "Macro",
  26100. height: math.unit(500, "feet")
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26106. {
  26107. front: {
  26108. height: math.unit(7 + 6.451 / 12, "feet"),
  26109. weight: math.unit(310, "lb"),
  26110. name: "Front",
  26111. image: {
  26112. source: "./media/characters/dahlia-verrick/front.svg",
  26113. extra: 1488 / 1365,
  26114. bottom: 6.2 / 1495
  26115. }
  26116. },
  26117. back: {
  26118. height: math.unit(7 + 6.451 / 12, "feet"),
  26119. weight: math.unit(310, "lb"),
  26120. name: "Back",
  26121. image: {
  26122. source: "./media/characters/dahlia-verrick/back.svg",
  26123. extra: 1472 / 1351,
  26124. bottom: 5.28 / 1477
  26125. }
  26126. },
  26127. frontBusiness: {
  26128. height: math.unit(7 + 6.451 / 12, "feet"),
  26129. weight: math.unit(200, "lb"),
  26130. name: "Front (Business)",
  26131. image: {
  26132. source: "./media/characters/dahlia-verrick/front-business.svg",
  26133. extra: 1478 / 1381,
  26134. bottom: 5.5 / 1484
  26135. }
  26136. },
  26137. frontCasual: {
  26138. height: math.unit(7 + 6.451 / 12, "feet"),
  26139. weight: math.unit(200, "lb"),
  26140. name: "Front (Casual)",
  26141. image: {
  26142. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26143. extra: 1478 / 1381,
  26144. bottom: 5.5 / 1484
  26145. }
  26146. },
  26147. },
  26148. [
  26149. {
  26150. name: "Travel-Sized",
  26151. height: math.unit(7.45, "inches")
  26152. },
  26153. {
  26154. name: "Normal",
  26155. height: math.unit(7 + 6.451 / 12, "feet"),
  26156. default: true
  26157. },
  26158. {
  26159. name: "Hitting the Town",
  26160. height: math.unit(37 + 8 / 12, "feet")
  26161. },
  26162. {
  26163. name: "Stomp in the Suburbs",
  26164. height: math.unit(964 + 9.728 / 12, "feet")
  26165. },
  26166. {
  26167. name: "Sit on the City",
  26168. height: math.unit(61747 + 10.592 / 12, "feet")
  26169. },
  26170. {
  26171. name: "Glomp the Globe",
  26172. height: math.unit(252919327 + 4.832 / 12, "feet")
  26173. },
  26174. ]
  26175. ))
  26176. characterMakers.push(() => makeCharacter(
  26177. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26178. {
  26179. front: {
  26180. height: math.unit(6 + 4 / 12, "feet"),
  26181. weight: math.unit(320, "lb"),
  26182. name: "Front",
  26183. image: {
  26184. source: "./media/characters/balina-mahigan/front.svg",
  26185. extra: 447 / 428,
  26186. bottom: 18 / 466
  26187. }
  26188. },
  26189. back: {
  26190. height: math.unit(6 + 4 / 12, "feet"),
  26191. weight: math.unit(320, "lb"),
  26192. name: "Back",
  26193. image: {
  26194. source: "./media/characters/balina-mahigan/back.svg",
  26195. extra: 445 / 428,
  26196. bottom: 4.07 / 448
  26197. }
  26198. },
  26199. arm: {
  26200. height: math.unit(1.88, "feet"),
  26201. name: "Arm",
  26202. image: {
  26203. source: "./media/characters/balina-mahigan/arm.svg"
  26204. }
  26205. },
  26206. backPort: {
  26207. height: math.unit(0.685, "feet"),
  26208. name: "Back Port",
  26209. image: {
  26210. source: "./media/characters/balina-mahigan/back-port.svg"
  26211. }
  26212. },
  26213. hoofpaw: {
  26214. height: math.unit(1.41, "feet"),
  26215. name: "Hoofpaw",
  26216. image: {
  26217. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26218. }
  26219. },
  26220. leftHandBack: {
  26221. height: math.unit(0.938, "feet"),
  26222. name: "Left Hand (Back)",
  26223. image: {
  26224. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26225. }
  26226. },
  26227. leftHandFront: {
  26228. height: math.unit(0.938, "feet"),
  26229. name: "Left Hand (Front)",
  26230. image: {
  26231. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26232. }
  26233. },
  26234. rightHandBack: {
  26235. height: math.unit(0.95, "feet"),
  26236. name: "Right Hand (Back)",
  26237. image: {
  26238. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26239. }
  26240. },
  26241. rightHandFront: {
  26242. height: math.unit(0.95, "feet"),
  26243. name: "Right Hand (Front)",
  26244. image: {
  26245. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26246. }
  26247. },
  26248. },
  26249. [
  26250. {
  26251. name: "Normal",
  26252. height: math.unit(6 + 4 / 12, "feet"),
  26253. default: true
  26254. },
  26255. ]
  26256. ))
  26257. characterMakers.push(() => makeCharacter(
  26258. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26259. {
  26260. front: {
  26261. height: math.unit(6, "feet"),
  26262. weight: math.unit(320, "lb"),
  26263. name: "Front",
  26264. image: {
  26265. source: "./media/characters/balina-mejeri/front.svg",
  26266. extra: 517 / 488,
  26267. bottom: 44.2 / 561
  26268. }
  26269. },
  26270. },
  26271. [
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(6 + 4 / 12, "feet")
  26275. },
  26276. {
  26277. name: "Business",
  26278. height: math.unit(155, "feet"),
  26279. default: true
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26285. {
  26286. kneeling: {
  26287. height: math.unit(6 + 4 / 12, "feet"),
  26288. weight: math.unit(300 * 20, "lb"),
  26289. name: "Kneeling",
  26290. image: {
  26291. source: "./media/characters/balbarian/kneeling.svg",
  26292. extra: 922 / 862,
  26293. bottom: 42.4 / 965
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(6 + 4 / 12, "feet")
  26301. },
  26302. {
  26303. name: "Treasured",
  26304. height: math.unit(18 + 9 / 12, "feet"),
  26305. default: true
  26306. },
  26307. {
  26308. name: "Macro",
  26309. height: math.unit(900, "feet")
  26310. },
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26315. {
  26316. front: {
  26317. height: math.unit(6 + 4 / 12, "feet"),
  26318. weight: math.unit(325, "lb"),
  26319. name: "Front",
  26320. image: {
  26321. source: "./media/characters/balina-amarini/front.svg",
  26322. extra: 415 / 403,
  26323. bottom: 19 / 433.4
  26324. }
  26325. },
  26326. back: {
  26327. height: math.unit(6 + 4 / 12, "feet"),
  26328. weight: math.unit(325, "lb"),
  26329. name: "Back",
  26330. image: {
  26331. source: "./media/characters/balina-amarini/back.svg",
  26332. extra: 415 / 403,
  26333. bottom: 13.5 / 432
  26334. }
  26335. },
  26336. overdrive: {
  26337. height: math.unit(6 + 4 / 12, "feet"),
  26338. weight: math.unit(400, "lb"),
  26339. name: "Overdrive",
  26340. image: {
  26341. source: "./media/characters/balina-amarini/overdrive.svg",
  26342. extra: 269 / 259,
  26343. bottom: 12 / 282
  26344. }
  26345. },
  26346. },
  26347. [
  26348. {
  26349. name: "Boom",
  26350. height: math.unit(9 + 10 / 12, "feet"),
  26351. default: true
  26352. },
  26353. {
  26354. name: "Macro",
  26355. height: math.unit(280, "feet")
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26361. {
  26362. goddess: {
  26363. height: math.unit(600, "feet"),
  26364. weight: math.unit(2000000, "tons"),
  26365. name: "Goddess",
  26366. image: {
  26367. source: "./media/characters/lady-kubwa/goddess.svg",
  26368. extra: 1240.5 / 1223,
  26369. bottom: 22 / 1263
  26370. }
  26371. },
  26372. goddesser: {
  26373. height: math.unit(900, "feet"),
  26374. weight: math.unit(20000000, "lb"),
  26375. name: "Goddess-er",
  26376. image: {
  26377. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26378. extra: 899 / 888,
  26379. bottom: 12.6 / 912
  26380. }
  26381. },
  26382. },
  26383. [
  26384. {
  26385. name: "Macro",
  26386. height: math.unit(600, "feet"),
  26387. default: true
  26388. },
  26389. {
  26390. name: "Megamacro",
  26391. height: math.unit(250, "miles")
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26397. {
  26398. front: {
  26399. height: math.unit(7 + 7 / 12, "feet"),
  26400. weight: math.unit(250, "lb"),
  26401. name: "Front",
  26402. image: {
  26403. source: "./media/characters/tala-grovehorn/front.svg",
  26404. extra: 2636 / 2525,
  26405. bottom: 147 / 2781
  26406. }
  26407. },
  26408. back: {
  26409. height: math.unit(7 + 7 / 12, "feet"),
  26410. weight: math.unit(250, "lb"),
  26411. name: "Back",
  26412. image: {
  26413. source: "./media/characters/tala-grovehorn/back.svg",
  26414. extra: 2635 / 2539,
  26415. bottom: 100 / 2732.8
  26416. }
  26417. },
  26418. mouth: {
  26419. height: math.unit(1.15, "feet"),
  26420. name: "Mouth",
  26421. image: {
  26422. source: "./media/characters/tala-grovehorn/mouth.svg"
  26423. }
  26424. },
  26425. dick: {
  26426. height: math.unit(2.36, "feet"),
  26427. name: "Dick",
  26428. image: {
  26429. source: "./media/characters/tala-grovehorn/dick.svg"
  26430. }
  26431. },
  26432. slit: {
  26433. height: math.unit(0.61, "feet"),
  26434. name: "Slit",
  26435. image: {
  26436. source: "./media/characters/tala-grovehorn/slit.svg"
  26437. }
  26438. },
  26439. },
  26440. [
  26441. ]
  26442. ))
  26443. characterMakers.push(() => makeCharacter(
  26444. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26445. {
  26446. front: {
  26447. height: math.unit(7 + 7 / 12, "feet"),
  26448. weight: math.unit(225, "lb"),
  26449. name: "Front",
  26450. image: {
  26451. source: "./media/characters/epona/front.svg",
  26452. extra: 2445 / 2290,
  26453. bottom: 251 / 2696
  26454. }
  26455. },
  26456. back: {
  26457. height: math.unit(7 + 7 / 12, "feet"),
  26458. weight: math.unit(225, "lb"),
  26459. name: "Back",
  26460. image: {
  26461. source: "./media/characters/epona/back.svg",
  26462. extra: 2546 / 2408,
  26463. bottom: 44 / 2589
  26464. }
  26465. },
  26466. genitals: {
  26467. height: math.unit(1.5, "feet"),
  26468. name: "Genitals",
  26469. image: {
  26470. source: "./media/characters/epona/genitals.svg"
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Normal",
  26477. height: math.unit(7 + 7 / 12, "feet"),
  26478. default: true
  26479. },
  26480. ]
  26481. ))
  26482. characterMakers.push(() => makeCharacter(
  26483. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26484. {
  26485. front: {
  26486. height: math.unit(7, "feet"),
  26487. weight: math.unit(518, "lb"),
  26488. name: "Front",
  26489. image: {
  26490. source: "./media/characters/avia-bloodbourn/front.svg",
  26491. extra: 1466 / 1350,
  26492. bottom: 65 / 1527
  26493. }
  26494. },
  26495. },
  26496. [
  26497. ]
  26498. ))
  26499. characterMakers.push(() => makeCharacter(
  26500. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26501. {
  26502. front: {
  26503. height: math.unit(9.35, "feet"),
  26504. weight: math.unit(600, "lb"),
  26505. name: "Front",
  26506. image: {
  26507. source: "./media/characters/amera/front.svg",
  26508. extra: 891 / 818,
  26509. bottom: 30 / 922.7
  26510. }
  26511. },
  26512. back: {
  26513. height: math.unit(9.35, "feet"),
  26514. weight: math.unit(600, "lb"),
  26515. name: "Back",
  26516. image: {
  26517. source: "./media/characters/amera/back.svg",
  26518. extra: 876 / 824,
  26519. bottom: 6.8 / 884
  26520. }
  26521. },
  26522. dick: {
  26523. height: math.unit(2.14, "feet"),
  26524. name: "Dick",
  26525. image: {
  26526. source: "./media/characters/amera/dick.svg"
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(9.35, "feet"),
  26534. default: true
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26540. {
  26541. kneeling: {
  26542. height: math.unit(3 + 4 / 12, "feet"),
  26543. weight: math.unit(90, "lb"),
  26544. name: "Kneeling",
  26545. image: {
  26546. source: "./media/characters/rosewen/kneeling.svg",
  26547. extra: 1835 / 1571,
  26548. bottom: 27.7 / 1862
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(3 + 4 / 12, "feet"),
  26556. default: true
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26562. {
  26563. front: {
  26564. height: math.unit(5 + 10 / 12, "feet"),
  26565. weight: math.unit(200, "lb"),
  26566. name: "Front",
  26567. image: {
  26568. source: "./media/characters/sabah/front.svg",
  26569. extra: 849 / 763,
  26570. bottom: 33.9 / 881
  26571. }
  26572. },
  26573. },
  26574. [
  26575. {
  26576. name: "Normal",
  26577. height: math.unit(5 + 10 / 12, "feet"),
  26578. default: true
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26584. {
  26585. front: {
  26586. height: math.unit(3 + 5 / 12, "feet"),
  26587. weight: math.unit(40, "kg"),
  26588. name: "Front",
  26589. image: {
  26590. source: "./media/characters/purple-flame/front.svg",
  26591. extra: 1577 / 1412,
  26592. bottom: 97 / 1694
  26593. }
  26594. },
  26595. frontDressed: {
  26596. height: math.unit(3 + 5 / 12, "feet"),
  26597. weight: math.unit(40, "kg"),
  26598. name: "Front (Dressed)",
  26599. image: {
  26600. source: "./media/characters/purple-flame/front-dressed.svg",
  26601. extra: 1577 / 1412,
  26602. bottom: 97 / 1694
  26603. }
  26604. },
  26605. headphones: {
  26606. height: math.unit(0.85, "feet"),
  26607. name: "Headphones",
  26608. image: {
  26609. source: "./media/characters/purple-flame/headphones.svg"
  26610. }
  26611. },
  26612. },
  26613. [
  26614. {
  26615. name: "Really Small",
  26616. height: math.unit(5, "cm")
  26617. },
  26618. {
  26619. name: "Micro",
  26620. height: math.unit(1 + 5 / 12, "feet")
  26621. },
  26622. {
  26623. name: "Normal",
  26624. height: math.unit(3 + 5 / 12, "feet"),
  26625. default: true
  26626. },
  26627. {
  26628. name: "Minimacro",
  26629. height: math.unit(125, "feet")
  26630. },
  26631. {
  26632. name: "Macro",
  26633. height: math.unit(0.5, "miles")
  26634. },
  26635. {
  26636. name: "Megamacro",
  26637. height: math.unit(50, "miles")
  26638. },
  26639. {
  26640. name: "Gigantic",
  26641. height: math.unit(750, "miles")
  26642. },
  26643. {
  26644. name: "Planetary",
  26645. height: math.unit(15000, "miles")
  26646. },
  26647. ]
  26648. ))
  26649. characterMakers.push(() => makeCharacter(
  26650. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26651. {
  26652. front: {
  26653. height: math.unit(14, "feet"),
  26654. weight: math.unit(959, "lb"),
  26655. name: "Front",
  26656. image: {
  26657. source: "./media/characters/arsenal/front.svg",
  26658. extra: 2357 / 2157,
  26659. bottom: 93 / 2458
  26660. }
  26661. },
  26662. },
  26663. [
  26664. {
  26665. name: "Normal",
  26666. height: math.unit(14, "feet"),
  26667. default: true
  26668. },
  26669. ]
  26670. ))
  26671. characterMakers.push(() => makeCharacter(
  26672. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26673. {
  26674. front: {
  26675. height: math.unit(6, "feet"),
  26676. weight: math.unit(150, "lb"),
  26677. name: "Front",
  26678. image: {
  26679. source: "./media/characters/adira/front.svg",
  26680. extra: 1078 / 1029,
  26681. bottom: 87 / 1166
  26682. }
  26683. },
  26684. },
  26685. [
  26686. {
  26687. name: "Micro",
  26688. height: math.unit(4, "inches"),
  26689. default: true
  26690. },
  26691. {
  26692. name: "Macro",
  26693. height: math.unit(50, "feet")
  26694. },
  26695. ]
  26696. ))
  26697. characterMakers.push(() => makeCharacter(
  26698. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26699. {
  26700. front: {
  26701. height: math.unit(16, "feet"),
  26702. weight: math.unit(1000, "lb"),
  26703. name: "Front",
  26704. image: {
  26705. source: "./media/characters/grim/front.svg",
  26706. extra: 622 / 614,
  26707. bottom: 18.1 / 642
  26708. }
  26709. },
  26710. back: {
  26711. height: math.unit(16, "feet"),
  26712. weight: math.unit(1000, "lb"),
  26713. name: "Back",
  26714. image: {
  26715. source: "./media/characters/grim/back.svg",
  26716. extra: 610.6 / 602,
  26717. bottom: 40.8 / 652
  26718. }
  26719. },
  26720. hunched: {
  26721. height: math.unit(9.75, "feet"),
  26722. weight: math.unit(1000, "lb"),
  26723. name: "Hunched",
  26724. image: {
  26725. source: "./media/characters/grim/hunched.svg",
  26726. extra: 304 / 297,
  26727. bottom: 35.4 / 394
  26728. }
  26729. },
  26730. },
  26731. [
  26732. {
  26733. name: "Normal",
  26734. height: math.unit(16, "feet"),
  26735. default: true
  26736. },
  26737. ]
  26738. ))
  26739. characterMakers.push(() => makeCharacter(
  26740. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26741. {
  26742. front: {
  26743. height: math.unit(2.3, "meters"),
  26744. weight: math.unit(300, "lb"),
  26745. name: "Front",
  26746. image: {
  26747. source: "./media/characters/sinja/front-sfw.svg",
  26748. extra: 1393 / 1294,
  26749. bottom: 70 / 1463
  26750. }
  26751. },
  26752. frontNsfw: {
  26753. height: math.unit(2.3, "meters"),
  26754. weight: math.unit(300, "lb"),
  26755. name: "Front (NSFW)",
  26756. image: {
  26757. source: "./media/characters/sinja/front-nsfw.svg",
  26758. extra: 1393 / 1294,
  26759. bottom: 70 / 1463
  26760. }
  26761. },
  26762. back: {
  26763. height: math.unit(2.3, "meters"),
  26764. weight: math.unit(300, "lb"),
  26765. name: "Back",
  26766. image: {
  26767. source: "./media/characters/sinja/back.svg",
  26768. extra: 1393 / 1294,
  26769. bottom: 70 / 1463
  26770. }
  26771. },
  26772. head: {
  26773. height: math.unit(1.771, "feet"),
  26774. name: "Head",
  26775. image: {
  26776. source: "./media/characters/sinja/head.svg"
  26777. }
  26778. },
  26779. slit: {
  26780. height: math.unit(0.8, "feet"),
  26781. name: "Slit",
  26782. image: {
  26783. source: "./media/characters/sinja/slit.svg"
  26784. }
  26785. },
  26786. },
  26787. [
  26788. {
  26789. name: "Normal",
  26790. height: math.unit(2.3, "meters")
  26791. },
  26792. {
  26793. name: "Macro",
  26794. height: math.unit(91, "meters"),
  26795. default: true
  26796. },
  26797. {
  26798. name: "Megamacro",
  26799. height: math.unit(91440, "meters")
  26800. },
  26801. {
  26802. name: "Gigamacro",
  26803. height: math.unit(60960000, "meters")
  26804. },
  26805. {
  26806. name: "Teramacro",
  26807. height: math.unit(9144000000, "meters")
  26808. },
  26809. ]
  26810. ))
  26811. characterMakers.push(() => makeCharacter(
  26812. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26813. {
  26814. front: {
  26815. height: math.unit(1.7, "meters"),
  26816. weight: math.unit(130, "lb"),
  26817. name: "Front",
  26818. image: {
  26819. source: "./media/characters/kyu/front.svg",
  26820. extra: 415 / 395,
  26821. bottom: 5 / 420
  26822. }
  26823. },
  26824. head: {
  26825. height: math.unit(1.75, "feet"),
  26826. name: "Head",
  26827. image: {
  26828. source: "./media/characters/kyu/head.svg"
  26829. }
  26830. },
  26831. foot: {
  26832. height: math.unit(0.81, "feet"),
  26833. name: "Foot",
  26834. image: {
  26835. source: "./media/characters/kyu/foot.svg"
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(1.7, "meters")
  26843. },
  26844. {
  26845. name: "Macro",
  26846. height: math.unit(131, "feet"),
  26847. default: true
  26848. },
  26849. {
  26850. name: "Megamacro",
  26851. height: math.unit(91440, "meters")
  26852. },
  26853. {
  26854. name: "Gigamacro",
  26855. height: math.unit(60960000, "meters")
  26856. },
  26857. {
  26858. name: "Teramacro",
  26859. height: math.unit(9144000000, "meters")
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26865. {
  26866. front: {
  26867. height: math.unit(7 + 1 / 12, "feet"),
  26868. weight: math.unit(250, "lb"),
  26869. name: "Front",
  26870. image: {
  26871. source: "./media/characters/joey/front.svg",
  26872. extra: 1791 / 1537,
  26873. bottom: 28 / 1816
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Micro",
  26880. height: math.unit(3, "inches")
  26881. },
  26882. {
  26883. name: "Normal",
  26884. height: math.unit(7 + 1 / 12, "feet"),
  26885. default: true
  26886. },
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26891. {
  26892. front: {
  26893. height: math.unit(165, "cm"),
  26894. weight: math.unit(140, "lb"),
  26895. name: "Front",
  26896. image: {
  26897. source: "./media/characters/sam-evans/front.svg",
  26898. extra: 3417 / 3230,
  26899. bottom: 41.3 / 3417
  26900. }
  26901. },
  26902. frontSixTails: {
  26903. height: math.unit(165, "cm"),
  26904. weight: math.unit(140, "lb"),
  26905. name: "Front-six-tails",
  26906. image: {
  26907. source: "./media/characters/sam-evans/front-six-tails.svg",
  26908. extra: 3417 / 3230,
  26909. bottom: 41.3 / 3417
  26910. }
  26911. },
  26912. back: {
  26913. height: math.unit(165, "cm"),
  26914. weight: math.unit(140, "lb"),
  26915. name: "Back",
  26916. image: {
  26917. source: "./media/characters/sam-evans/back.svg",
  26918. extra: 3227 / 3032,
  26919. bottom: 6.8 / 3234
  26920. }
  26921. },
  26922. face: {
  26923. height: math.unit(0.68, "feet"),
  26924. name: "Face",
  26925. image: {
  26926. source: "./media/characters/sam-evans/face.svg"
  26927. }
  26928. },
  26929. },
  26930. [
  26931. {
  26932. name: "Normal",
  26933. height: math.unit(165, "cm"),
  26934. default: true
  26935. },
  26936. {
  26937. name: "Macro",
  26938. height: math.unit(100, "meters")
  26939. },
  26940. {
  26941. name: "Macro+",
  26942. height: math.unit(800, "meters")
  26943. },
  26944. {
  26945. name: "Macro++",
  26946. height: math.unit(3, "km")
  26947. },
  26948. {
  26949. name: "Macro+++",
  26950. height: math.unit(30, "km")
  26951. },
  26952. ]
  26953. ))
  26954. characterMakers.push(() => makeCharacter(
  26955. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26956. {
  26957. front: {
  26958. height: math.unit(10, "feet"),
  26959. weight: math.unit(750, "lb"),
  26960. name: "Front",
  26961. image: {
  26962. source: "./media/characters/juliet-a/front.svg",
  26963. extra: 1766 / 1720,
  26964. bottom: 43 / 1809
  26965. }
  26966. },
  26967. back: {
  26968. height: math.unit(10, "feet"),
  26969. weight: math.unit(750, "lb"),
  26970. name: "Back",
  26971. image: {
  26972. source: "./media/characters/juliet-a/back.svg",
  26973. extra: 1781 / 1734,
  26974. bottom: 35 / 1810,
  26975. }
  26976. },
  26977. },
  26978. [
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(10, "feet"),
  26982. default: true
  26983. },
  26984. {
  26985. name: "Dragon Form",
  26986. height: math.unit(250, "feet")
  26987. },
  26988. {
  26989. name: "Macro",
  26990. height: math.unit(1000, "feet")
  26991. },
  26992. {
  26993. name: "Megamacro",
  26994. height: math.unit(10000, "feet")
  26995. }
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27000. {
  27001. regular: {
  27002. height: math.unit(7 + 3 / 12, "feet"),
  27003. weight: math.unit(260, "lb"),
  27004. name: "Regular",
  27005. image: {
  27006. source: "./media/characters/wild/regular.svg",
  27007. extra: 97.45 / 92,
  27008. bottom: 6.8 / 104.3
  27009. }
  27010. },
  27011. biggums: {
  27012. height: math.unit(8 + 6 / 12, "feet"),
  27013. weight: math.unit(425, "lb"),
  27014. name: "Biggums",
  27015. image: {
  27016. source: "./media/characters/wild/biggums.svg",
  27017. extra: 97.45 / 92,
  27018. bottom: 7.5 / 132.34
  27019. }
  27020. },
  27021. mawRegular: {
  27022. height: math.unit(1.24, "feet"),
  27023. name: "Maw (Regular)",
  27024. image: {
  27025. source: "./media/characters/wild/maw.svg"
  27026. }
  27027. },
  27028. mawBiggums: {
  27029. height: math.unit(1.47, "feet"),
  27030. name: "Maw (Biggums)",
  27031. image: {
  27032. source: "./media/characters/wild/maw.svg"
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Normal",
  27039. height: math.unit(7 + 3 / 12, "feet"),
  27040. default: true
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27046. {
  27047. front: {
  27048. height: math.unit(2.5, "meters"),
  27049. weight: math.unit(200, "kg"),
  27050. name: "Front",
  27051. image: {
  27052. source: "./media/characters/vidar/front.svg",
  27053. extra: 2994 / 2795,
  27054. bottom: 56 / 3061
  27055. }
  27056. },
  27057. back: {
  27058. height: math.unit(2.5, "meters"),
  27059. weight: math.unit(200, "kg"),
  27060. name: "Back",
  27061. image: {
  27062. source: "./media/characters/vidar/back.svg",
  27063. extra: 3131 / 2928,
  27064. bottom: 13.5 / 3141.5
  27065. }
  27066. },
  27067. feral: {
  27068. height: math.unit(2.5, "meters"),
  27069. weight: math.unit(2000, "kg"),
  27070. name: "Feral",
  27071. image: {
  27072. source: "./media/characters/vidar/feral.svg",
  27073. extra: 2790 / 1765,
  27074. bottom: 6 / 2796
  27075. }
  27076. },
  27077. },
  27078. [
  27079. {
  27080. name: "Normal",
  27081. height: math.unit(2.5, "meters"),
  27082. default: true
  27083. },
  27084. {
  27085. name: "Macro",
  27086. height: math.unit(100, "meters")
  27087. },
  27088. ]
  27089. ))
  27090. characterMakers.push(() => makeCharacter(
  27091. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27092. {
  27093. front: {
  27094. height: math.unit(5 + 9 / 12, "feet"),
  27095. weight: math.unit(120, "lb"),
  27096. name: "Front",
  27097. image: {
  27098. source: "./media/characters/ash/front.svg",
  27099. extra: 2189 / 1961,
  27100. bottom: 5.2 / 2194
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(5 + 9 / 12, "feet"),
  27108. default: true
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(9, "feet"),
  27117. weight: math.unit(10000, "lb"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/gygabite/front.svg",
  27121. bottom: 31.7 / 537.8,
  27122. extra: 505 / 370
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(9, "feet"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(12, "feet"),
  27139. weight: math.unit(35000, "lb"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/p0tat0/front.svg",
  27143. extra: 1065 / 921,
  27144. bottom: 55.7 / 1121.25
  27145. }
  27146. },
  27147. },
  27148. [
  27149. {
  27150. name: "Normal",
  27151. height: math.unit(12, "feet"),
  27152. default: true
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27158. {
  27159. side: {
  27160. height: math.unit(6.5, "feet"),
  27161. weight: math.unit(800, "lb"),
  27162. name: "Side",
  27163. image: {
  27164. source: "./media/characters/dusk/side.svg",
  27165. extra: 615 / 373,
  27166. bottom: 53 / 664
  27167. }
  27168. },
  27169. sitting: {
  27170. height: math.unit(7, "feet"),
  27171. weight: math.unit(800, "lb"),
  27172. name: "Sitting",
  27173. image: {
  27174. source: "./media/characters/dusk/sitting.svg",
  27175. extra: 753 / 425,
  27176. bottom: 33 / 774
  27177. }
  27178. },
  27179. head: {
  27180. height: math.unit(6.1, "feet"),
  27181. name: "Head",
  27182. image: {
  27183. source: "./media/characters/dusk/head.svg"
  27184. }
  27185. },
  27186. },
  27187. [
  27188. {
  27189. name: "Normal",
  27190. height: math.unit(7, "feet"),
  27191. default: true
  27192. },
  27193. ]
  27194. ))
  27195. characterMakers.push(() => makeCharacter(
  27196. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27197. {
  27198. front: {
  27199. height: math.unit(15, "feet"),
  27200. weight: math.unit(7000, "lb"),
  27201. name: "Front",
  27202. image: {
  27203. source: "./media/characters/jay-direwolf/front.svg",
  27204. extra: 1810 / 1732,
  27205. bottom: 66 / 1892
  27206. }
  27207. },
  27208. },
  27209. [
  27210. {
  27211. name: "Normal",
  27212. height: math.unit(15, "feet"),
  27213. default: true
  27214. },
  27215. ]
  27216. ))
  27217. characterMakers.push(() => makeCharacter(
  27218. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27219. {
  27220. front: {
  27221. height: math.unit(4 + 9 / 12, "feet"),
  27222. weight: math.unit(130, "lb"),
  27223. name: "Front",
  27224. image: {
  27225. source: "./media/characters/anchovie/front.svg",
  27226. extra: 382 / 350,
  27227. bottom: 25 / 409
  27228. }
  27229. },
  27230. back: {
  27231. height: math.unit(4 + 9 / 12, "feet"),
  27232. weight: math.unit(130, "lb"),
  27233. name: "Back",
  27234. image: {
  27235. source: "./media/characters/anchovie/back.svg",
  27236. extra: 385 / 352,
  27237. bottom: 16.6 / 402
  27238. }
  27239. },
  27240. frontDressed: {
  27241. height: math.unit(4 + 9 / 12, "feet"),
  27242. weight: math.unit(130, "lb"),
  27243. name: "Front (Dressed)",
  27244. image: {
  27245. source: "./media/characters/anchovie/front-dressed.svg",
  27246. extra: 382 / 350,
  27247. bottom: 25 / 409
  27248. }
  27249. },
  27250. backDressed: {
  27251. height: math.unit(4 + 9 / 12, "feet"),
  27252. weight: math.unit(130, "lb"),
  27253. name: "Back (Dressed)",
  27254. image: {
  27255. source: "./media/characters/anchovie/back-dressed.svg",
  27256. extra: 385 / 352,
  27257. bottom: 16.6 / 402
  27258. }
  27259. },
  27260. },
  27261. [
  27262. {
  27263. name: "Micro",
  27264. height: math.unit(6.4, "inches")
  27265. },
  27266. {
  27267. name: "Normal",
  27268. height: math.unit(4 + 9 / 12, "feet"),
  27269. default: true
  27270. },
  27271. ]
  27272. ))
  27273. characterMakers.push(() => makeCharacter(
  27274. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27275. {
  27276. front: {
  27277. height: math.unit(2, "meters"),
  27278. weight: math.unit(180, "lb"),
  27279. name: "Front",
  27280. image: {
  27281. source: "./media/characters/acidrenamon/front.svg",
  27282. extra: 987 / 890,
  27283. bottom: 22.8 / 1009
  27284. }
  27285. },
  27286. back: {
  27287. height: math.unit(2, "meters"),
  27288. weight: math.unit(180, "lb"),
  27289. name: "Back",
  27290. image: {
  27291. source: "./media/characters/acidrenamon/back.svg",
  27292. extra: 983 / 891,
  27293. bottom: 8.4 / 992
  27294. }
  27295. },
  27296. head: {
  27297. height: math.unit(1.92, "feet"),
  27298. name: "Head",
  27299. image: {
  27300. source: "./media/characters/acidrenamon/head.svg"
  27301. }
  27302. },
  27303. rump: {
  27304. height: math.unit(1.72, "feet"),
  27305. name: "Rump",
  27306. image: {
  27307. source: "./media/characters/acidrenamon/rump.svg"
  27308. }
  27309. },
  27310. tail: {
  27311. height: math.unit(4.2, "feet"),
  27312. name: "Tail",
  27313. image: {
  27314. source: "./media/characters/acidrenamon/tail.svg"
  27315. }
  27316. },
  27317. },
  27318. [
  27319. {
  27320. name: "Normal",
  27321. height: math.unit(2, "meters"),
  27322. default: true
  27323. },
  27324. {
  27325. name: "Minimacro",
  27326. height: math.unit(7, "meters")
  27327. },
  27328. {
  27329. name: "Macro",
  27330. height: math.unit(200, "meters")
  27331. },
  27332. {
  27333. name: "Gigamacro",
  27334. height: math.unit(0.2, "earths")
  27335. },
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27340. {
  27341. front: {
  27342. height: math.unit(6, "feet"),
  27343. weight: math.unit(150, "lb"),
  27344. name: "Front",
  27345. image: {
  27346. source: "./media/characters/kenzie-lee/front.svg",
  27347. extra: 1525 / 1465,
  27348. bottom: 45 / 1570
  27349. }
  27350. },
  27351. side: {
  27352. height: math.unit(6, "feet"),
  27353. weight: math.unit(150, "lb"),
  27354. name: "Side",
  27355. image: {
  27356. source: "./media/characters/kenzie-lee/side.svg",
  27357. extra: 5505 / 5383,
  27358. bottom: 60 / 5573
  27359. }
  27360. },
  27361. paw: {
  27362. height: math.unit(0.57, "feet"),
  27363. name: "Paw",
  27364. image: {
  27365. source: "./media/characters/kenzie-lee/paw.svg"
  27366. }
  27367. },
  27368. },
  27369. [
  27370. {
  27371. name: "Normal",
  27372. height: math.unit(152, "feet"),
  27373. default: true
  27374. },
  27375. {
  27376. name: "Megamacro",
  27377. height: math.unit(7, "miles")
  27378. },
  27379. {
  27380. name: "Gigamacro",
  27381. height: math.unit(8000, "miles")
  27382. },
  27383. ]
  27384. ))
  27385. characterMakers.push(() => makeCharacter(
  27386. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27387. {
  27388. side: {
  27389. height: math.unit(6, "feet"),
  27390. weight: math.unit(150, "lb"),
  27391. name: "Side",
  27392. image: {
  27393. source: "./media/characters/withers/side.svg",
  27394. extra: 1830 / 1728,
  27395. bottom: 96 / 1927
  27396. }
  27397. },
  27398. front: {
  27399. height: math.unit(6, "feet"),
  27400. weight: math.unit(150, "lb"),
  27401. name: "Front",
  27402. image: {
  27403. source: "./media/characters/withers/front.svg",
  27404. extra: 1514 / 1438,
  27405. bottom: 118 / 1632
  27406. }
  27407. },
  27408. },
  27409. [
  27410. {
  27411. name: "Macro",
  27412. height: math.unit(168, "feet"),
  27413. default: true
  27414. },
  27415. {
  27416. name: "Megamacro",
  27417. height: math.unit(15, "miles")
  27418. }
  27419. ]
  27420. ))
  27421. characterMakers.push(() => makeCharacter(
  27422. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27423. {
  27424. front: {
  27425. height: math.unit(6 + 7 / 12, "feet"),
  27426. weight: math.unit(250, "lb"),
  27427. name: "Front",
  27428. image: {
  27429. source: "./media/characters/nemoskii/front.svg",
  27430. extra: 2270 / 1734,
  27431. bottom: 86 / 2354
  27432. }
  27433. },
  27434. back: {
  27435. height: math.unit(6 + 7 / 12, "feet"),
  27436. weight: math.unit(250, "lb"),
  27437. name: "Back",
  27438. image: {
  27439. source: "./media/characters/nemoskii/back.svg",
  27440. extra: 1845 / 1788,
  27441. bottom: 10.5 / 1852
  27442. }
  27443. },
  27444. head: {
  27445. height: math.unit(1.31, "feet"),
  27446. name: "Head",
  27447. image: {
  27448. source: "./media/characters/nemoskii/head.svg"
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Micro",
  27455. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27456. },
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(6 + 7 / 12, "feet"),
  27460. default: true
  27461. },
  27462. {
  27463. name: "Macro",
  27464. height: math.unit((6 + 7 / 12) * 150, "feet")
  27465. },
  27466. {
  27467. name: "Macro+",
  27468. height: math.unit((6 + 7 / 12) * 500, "feet")
  27469. },
  27470. {
  27471. name: "Megamacro",
  27472. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27478. {
  27479. front: {
  27480. height: math.unit(1, "mile"),
  27481. weight: math.unit(265261.9, "lb"),
  27482. name: "Front",
  27483. image: {
  27484. source: "./media/characters/shui/front.svg",
  27485. extra: 1633 / 1564,
  27486. bottom: 91.5 / 1726
  27487. }
  27488. },
  27489. },
  27490. [
  27491. {
  27492. name: "Macro",
  27493. height: math.unit(1, "mile"),
  27494. default: true
  27495. },
  27496. ]
  27497. ))
  27498. characterMakers.push(() => makeCharacter(
  27499. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27500. {
  27501. front: {
  27502. height: math.unit(12 + 6 / 12, "feet"),
  27503. weight: math.unit(1342, "lb"),
  27504. name: "Front",
  27505. image: {
  27506. source: "./media/characters/arokh-takakura/front.svg",
  27507. extra: 1089 / 1043,
  27508. bottom: 77.4 / 1176.7
  27509. }
  27510. },
  27511. back: {
  27512. height: math.unit(12 + 6 / 12, "feet"),
  27513. weight: math.unit(1342, "lb"),
  27514. name: "Back",
  27515. image: {
  27516. source: "./media/characters/arokh-takakura/back.svg",
  27517. extra: 1046 / 1019,
  27518. bottom: 102 / 1150
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Big",
  27525. height: math.unit(12 + 6 / 12, "feet"),
  27526. default: true
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27532. {
  27533. front: {
  27534. height: math.unit(5 + 6 / 12, "feet"),
  27535. weight: math.unit(150, "lb"),
  27536. name: "Front",
  27537. image: {
  27538. source: "./media/characters/theo/front.svg",
  27539. extra: 1184 / 1131,
  27540. bottom: 7.4 / 1191
  27541. }
  27542. },
  27543. },
  27544. [
  27545. {
  27546. name: "Micro",
  27547. height: math.unit(5, "inches")
  27548. },
  27549. {
  27550. name: "Normal",
  27551. height: math.unit(5 + 6 / 12, "feet"),
  27552. default: true
  27553. },
  27554. ]
  27555. ))
  27556. characterMakers.push(() => makeCharacter(
  27557. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27558. {
  27559. front: {
  27560. height: math.unit(5 + 9 / 12, "feet"),
  27561. weight: math.unit(130, "lb"),
  27562. name: "Front",
  27563. image: {
  27564. source: "./media/characters/cecelia-swift/front.svg",
  27565. extra: 502 / 484,
  27566. bottom: 23 / 523
  27567. }
  27568. },
  27569. back: {
  27570. height: math.unit(5 + 9 / 12, "feet"),
  27571. weight: math.unit(130, "lb"),
  27572. name: "Back",
  27573. image: {
  27574. source: "./media/characters/cecelia-swift/back.svg",
  27575. extra: 499 / 485,
  27576. bottom: 12 / 511
  27577. }
  27578. },
  27579. head: {
  27580. height: math.unit(0.90, "feet"),
  27581. name: "Head",
  27582. image: {
  27583. source: "./media/characters/cecelia-swift/head.svg"
  27584. }
  27585. },
  27586. rump: {
  27587. height: math.unit(1.75, "feet"),
  27588. name: "Rump",
  27589. image: {
  27590. source: "./media/characters/cecelia-swift/rump.svg"
  27591. }
  27592. },
  27593. },
  27594. [
  27595. {
  27596. name: "Normal",
  27597. height: math.unit(5 + 9 / 12, "feet"),
  27598. default: true
  27599. },
  27600. {
  27601. name: "Big",
  27602. height: math.unit(50, "feet")
  27603. },
  27604. {
  27605. name: "Macro",
  27606. height: math.unit(100, "feet")
  27607. },
  27608. {
  27609. name: "Macro+",
  27610. height: math.unit(500, "feet")
  27611. },
  27612. {
  27613. name: "Macro++",
  27614. height: math.unit(1000, "feet")
  27615. },
  27616. ]
  27617. ))
  27618. characterMakers.push(() => makeCharacter(
  27619. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27620. {
  27621. front: {
  27622. height: math.unit(6, "feet"),
  27623. weight: math.unit(150, "lb"),
  27624. name: "Front",
  27625. image: {
  27626. source: "./media/characters/kaunan/front.svg",
  27627. extra: 2890 / 2523,
  27628. bottom: 49 / 2939
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Macro",
  27635. height: math.unit(150, "feet"),
  27636. default: true
  27637. },
  27638. ]
  27639. ))
  27640. characterMakers.push(() => makeCharacter(
  27641. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27642. {
  27643. front: {
  27644. height: math.unit(175, "cm"),
  27645. weight: math.unit(60, "kg"),
  27646. name: "Front",
  27647. image: {
  27648. source: "./media/characters/fei/front.svg",
  27649. extra: 1873/1723,
  27650. bottom: 53/1926
  27651. }
  27652. },
  27653. },
  27654. [
  27655. {
  27656. name: "Mortal",
  27657. height: math.unit(175, "cm")
  27658. },
  27659. {
  27660. name: "Normal",
  27661. height: math.unit(3500, "m"),
  27662. default: true
  27663. },
  27664. {
  27665. name: "Stroll",
  27666. height: math.unit(17.5, "km")
  27667. },
  27668. {
  27669. name: "Showoff",
  27670. height: math.unit(175, "km")
  27671. },
  27672. ]
  27673. ))
  27674. characterMakers.push(() => makeCharacter(
  27675. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27676. {
  27677. front: {
  27678. height: math.unit(7, "feet"),
  27679. weight: math.unit(1000, "kg"),
  27680. name: "Front",
  27681. image: {
  27682. source: "./media/characters/edrax/front.svg",
  27683. extra: 2838 / 2550,
  27684. bottom: 130 / 2968
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Small",
  27691. height: math.unit(7, "feet")
  27692. },
  27693. {
  27694. name: "Normal",
  27695. height: math.unit(1500, "meters")
  27696. },
  27697. {
  27698. name: "Mega",
  27699. height: math.unit(12000000, "km"),
  27700. default: true
  27701. },
  27702. {
  27703. name: "Megamacro",
  27704. height: math.unit(10600000, "lightyears")
  27705. },
  27706. {
  27707. name: "Hypermacro",
  27708. height: math.unit(256, "yottameters")
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27714. {
  27715. front: {
  27716. height: math.unit(10, "feet"),
  27717. weight: math.unit(750, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/clove/front.svg",
  27721. extra: 2031 / 1860,
  27722. bottom: 47.8 / 2080
  27723. }
  27724. },
  27725. back: {
  27726. height: math.unit(10, "feet"),
  27727. weight: math.unit(750, "lb"),
  27728. name: "Back",
  27729. image: {
  27730. source: "./media/characters/clove/back.svg",
  27731. extra: 2025 / 1859,
  27732. bottom: 46 / 2071
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Normal",
  27739. height: math.unit(10, "feet"),
  27740. default: true
  27741. },
  27742. ]
  27743. ))
  27744. characterMakers.push(() => makeCharacter(
  27745. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27746. {
  27747. front: {
  27748. height: math.unit(4, "feet"),
  27749. weight: math.unit(50, "lb"),
  27750. name: "Front",
  27751. image: {
  27752. source: "./media/characters/alex-rabbit/front.svg",
  27753. extra: 507 / 458,
  27754. bottom: 18.5 / 527
  27755. }
  27756. },
  27757. back: {
  27758. height: math.unit(4, "feet"),
  27759. weight: math.unit(50, "lb"),
  27760. name: "Back",
  27761. image: {
  27762. source: "./media/characters/alex-rabbit/back.svg",
  27763. extra: 502 / 460,
  27764. bottom: 18.9 / 521
  27765. }
  27766. },
  27767. },
  27768. [
  27769. {
  27770. name: "Normal",
  27771. height: math.unit(4, "feet"),
  27772. default: true
  27773. },
  27774. ]
  27775. ))
  27776. characterMakers.push(() => makeCharacter(
  27777. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27778. {
  27779. front: {
  27780. height: math.unit(1 + 3 / 12, "feet"),
  27781. weight: math.unit(80, "lb"),
  27782. name: "Front",
  27783. image: {
  27784. source: "./media/characters/zander-rose/front.svg",
  27785. extra: 916 / 797,
  27786. bottom: 17 / 933
  27787. }
  27788. },
  27789. back: {
  27790. height: math.unit(1 + 3 / 12, "feet"),
  27791. weight: math.unit(80, "lb"),
  27792. name: "Back",
  27793. image: {
  27794. source: "./media/characters/zander-rose/back.svg",
  27795. extra: 903 / 779,
  27796. bottom: 31 / 934
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(1 + 3 / 12, "feet"),
  27804. default: true
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27810. {
  27811. anthro: {
  27812. height: math.unit(6, "feet"),
  27813. weight: math.unit(150, "lb"),
  27814. name: "Anthro",
  27815. image: {
  27816. source: "./media/characters/razz/anthro.svg",
  27817. extra: 1437 / 1343,
  27818. bottom: 48 / 1485
  27819. }
  27820. },
  27821. feral: {
  27822. height: math.unit(6, "feet"),
  27823. weight: math.unit(150, "lb"),
  27824. name: "Feral",
  27825. image: {
  27826. source: "./media/characters/razz/feral.svg",
  27827. extra: 2569 / 1385,
  27828. bottom: 95 / 2664
  27829. }
  27830. },
  27831. },
  27832. [
  27833. {
  27834. name: "Normal",
  27835. height: math.unit(6, "feet"),
  27836. default: true
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27842. {
  27843. front: {
  27844. height: math.unit(9 + 4 / 12, "feet"),
  27845. weight: math.unit(500, "lb"),
  27846. name: "Front",
  27847. image: {
  27848. source: "./media/characters/morrigan/front.svg",
  27849. extra: 2707 / 2579,
  27850. bottom: 156 / 2863
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Normal",
  27857. height: math.unit(9 + 4 / 12, "feet"),
  27858. default: true
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27864. {
  27865. front: {
  27866. height: math.unit(5, "stories"),
  27867. weight: math.unit(4000, "lb"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/jenene/front.svg",
  27871. extra: 1780 / 1710,
  27872. bottom: 57 / 1837
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Normal",
  27879. height: math.unit(5, "stories"),
  27880. default: true
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27886. {
  27887. taurSfw: {
  27888. height: math.unit(10, "meters"),
  27889. weight: math.unit(17500, "kg"),
  27890. name: "Taur",
  27891. image: {
  27892. source: "./media/characters/faey/taur-sfw.svg",
  27893. extra: 1200 / 968,
  27894. bottom: 41 / 1241
  27895. }
  27896. },
  27897. chestmaw: {
  27898. height: math.unit(2.01, "meters"),
  27899. name: "Chestmaw",
  27900. image: {
  27901. source: "./media/characters/faey/chestmaw.svg"
  27902. }
  27903. },
  27904. foot: {
  27905. height: math.unit(2.43, "meters"),
  27906. name: "Foot",
  27907. image: {
  27908. source: "./media/characters/faey/foot.svg"
  27909. }
  27910. },
  27911. jaws: {
  27912. height: math.unit(1.66, "meters"),
  27913. name: "Jaws",
  27914. image: {
  27915. source: "./media/characters/faey/jaws.svg"
  27916. }
  27917. },
  27918. tongues: {
  27919. height: math.unit(2.01, "meters"),
  27920. name: "Tongues",
  27921. image: {
  27922. source: "./media/characters/faey/tongues.svg"
  27923. }
  27924. },
  27925. },
  27926. [
  27927. {
  27928. name: "Small",
  27929. height: math.unit(10, "meters"),
  27930. default: true
  27931. },
  27932. {
  27933. name: "Big",
  27934. height: math.unit(500000, "km")
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27940. {
  27941. front: {
  27942. height: math.unit(7, "feet"),
  27943. weight: math.unit(275, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/roku/front.svg",
  27947. extra: 903 / 878,
  27948. bottom: 37 / 940
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Normal",
  27955. height: math.unit(7, "feet"),
  27956. default: true
  27957. },
  27958. {
  27959. name: "Macro",
  27960. height: math.unit(500, "feet")
  27961. },
  27962. {
  27963. name: "Megamacro",
  27964. height: math.unit(200, "miles")
  27965. },
  27966. ]
  27967. ))
  27968. characterMakers.push(() => makeCharacter(
  27969. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27970. {
  27971. front: {
  27972. height: math.unit(6 + 2 / 12, "feet"),
  27973. weight: math.unit(150, "lb"),
  27974. name: "Front",
  27975. image: {
  27976. source: "./media/characters/lira/front.svg",
  27977. extra: 1727 / 1605,
  27978. bottom: 26 / 1753
  27979. }
  27980. },
  27981. back: {
  27982. height: math.unit(6 + 2 / 12, "feet"),
  27983. weight: math.unit(150, "lb"),
  27984. name: "Back",
  27985. image: {
  27986. source: "./media/characters/lira/back.svg",
  27987. extra: 1713/1621,
  27988. bottom: 20/1733
  27989. }
  27990. },
  27991. hand: {
  27992. height: math.unit(0.75, "feet"),
  27993. name: "Hand",
  27994. image: {
  27995. source: "./media/characters/lira/hand.svg"
  27996. }
  27997. },
  27998. maw: {
  27999. height: math.unit(0.65, "feet"),
  28000. name: "Maw",
  28001. image: {
  28002. source: "./media/characters/lira/maw.svg"
  28003. }
  28004. },
  28005. pawDigi: {
  28006. height: math.unit(1.6, "feet"),
  28007. name: "Paw Digi",
  28008. image: {
  28009. source: "./media/characters/lira/paw-digi.svg"
  28010. }
  28011. },
  28012. pawPlanti: {
  28013. height: math.unit(1.4, "feet"),
  28014. name: "Paw Planti",
  28015. image: {
  28016. source: "./media/characters/lira/paw-planti.svg"
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Normal",
  28023. height: math.unit(6 + 2 / 12, "feet"),
  28024. default: true
  28025. },
  28026. {
  28027. name: "Macro",
  28028. height: math.unit(100, "feet")
  28029. },
  28030. {
  28031. name: "Macro²",
  28032. height: math.unit(1600, "feet")
  28033. },
  28034. {
  28035. name: "Planetary",
  28036. height: math.unit(20, "earths")
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28042. {
  28043. front: {
  28044. height: math.unit(6, "feet"),
  28045. weight: math.unit(150, "lb"),
  28046. name: "Front",
  28047. image: {
  28048. source: "./media/characters/hadjet/front.svg",
  28049. extra: 1480 / 1346,
  28050. bottom: 26 / 1506
  28051. }
  28052. },
  28053. frontNsfw: {
  28054. height: math.unit(6, "feet"),
  28055. weight: math.unit(150, "lb"),
  28056. name: "Front (NSFW)",
  28057. image: {
  28058. source: "./media/characters/hadjet/front-nsfw.svg",
  28059. extra: 1440 / 1358,
  28060. bottom: 52 / 1492
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Macro",
  28067. height: math.unit(10, "stories"),
  28068. default: true
  28069. },
  28070. {
  28071. name: "Megamacro",
  28072. height: math.unit(1.5, "miles")
  28073. },
  28074. {
  28075. name: "Megamacro+",
  28076. height: math.unit(5, "miles")
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28082. {
  28083. side: {
  28084. height: math.unit(106, "feet"),
  28085. weight: math.unit(500, "tonnes"),
  28086. name: "Side",
  28087. image: {
  28088. source: "./media/characters/kodran/side.svg",
  28089. extra: 553 / 480,
  28090. bottom: 33 / 586
  28091. }
  28092. },
  28093. front: {
  28094. height: math.unit(132, "feet"),
  28095. weight: math.unit(500, "tonnes"),
  28096. name: "Front",
  28097. image: {
  28098. source: "./media/characters/kodran/front.svg",
  28099. extra: 667 / 643,
  28100. bottom: 42 / 709
  28101. }
  28102. },
  28103. flying: {
  28104. height: math.unit(350, "feet"),
  28105. weight: math.unit(500, "tonnes"),
  28106. name: "Flying",
  28107. image: {
  28108. source: "./media/characters/kodran/flying.svg"
  28109. }
  28110. },
  28111. foot: {
  28112. height: math.unit(33, "feet"),
  28113. name: "Foot",
  28114. image: {
  28115. source: "./media/characters/kodran/foot.svg"
  28116. }
  28117. },
  28118. footFront: {
  28119. height: math.unit(19, "feet"),
  28120. name: "Foot (Front)",
  28121. image: {
  28122. source: "./media/characters/kodran/foot-front.svg",
  28123. extra: 261 / 261,
  28124. bottom: 91 / 352
  28125. }
  28126. },
  28127. headFront: {
  28128. height: math.unit(53, "feet"),
  28129. name: "Head (Front)",
  28130. image: {
  28131. source: "./media/characters/kodran/head-front.svg"
  28132. }
  28133. },
  28134. headSide: {
  28135. height: math.unit(65, "feet"),
  28136. name: "Head (Side)",
  28137. image: {
  28138. source: "./media/characters/kodran/head-side.svg"
  28139. }
  28140. },
  28141. throat: {
  28142. height: math.unit(79, "feet"),
  28143. name: "Throat",
  28144. image: {
  28145. source: "./media/characters/kodran/throat.svg"
  28146. }
  28147. },
  28148. },
  28149. [
  28150. {
  28151. name: "Large",
  28152. height: math.unit(106, "feet"),
  28153. default: true
  28154. },
  28155. ]
  28156. ))
  28157. characterMakers.push(() => makeCharacter(
  28158. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28159. {
  28160. side: {
  28161. height: math.unit(11, "feet"),
  28162. weight: math.unit(150, "lb"),
  28163. name: "Side",
  28164. image: {
  28165. source: "./media/characters/pyxaron/side.svg",
  28166. extra: 305 / 195,
  28167. bottom: 17 / 322
  28168. }
  28169. },
  28170. },
  28171. [
  28172. {
  28173. name: "Normal",
  28174. height: math.unit(11, "feet"),
  28175. default: true
  28176. },
  28177. ]
  28178. ))
  28179. characterMakers.push(() => makeCharacter(
  28180. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28181. {
  28182. front: {
  28183. height: math.unit(6, "feet"),
  28184. weight: math.unit(150, "lb"),
  28185. name: "Front",
  28186. image: {
  28187. source: "./media/characters/meep/front.svg",
  28188. extra: 88 / 80,
  28189. bottom: 6 / 94
  28190. }
  28191. },
  28192. },
  28193. [
  28194. {
  28195. name: "Fun Sized",
  28196. height: math.unit(2, "inches"),
  28197. default: true
  28198. },
  28199. {
  28200. name: "Friend Sized",
  28201. height: math.unit(8, "inches")
  28202. },
  28203. ]
  28204. ))
  28205. characterMakers.push(() => makeCharacter(
  28206. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28207. {
  28208. front: {
  28209. height: math.unit(15, "feet"),
  28210. weight: math.unit(2500, "lb"),
  28211. name: "Front",
  28212. image: {
  28213. source: "./media/characters/holly-rabbit/front.svg",
  28214. extra: 1433 / 1233,
  28215. bottom: 125 / 1558
  28216. }
  28217. },
  28218. dick: {
  28219. height: math.unit(4.6, "feet"),
  28220. name: "Dick",
  28221. image: {
  28222. source: "./media/characters/holly-rabbit/dick.svg"
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(15, "feet"),
  28230. default: true
  28231. },
  28232. {
  28233. name: "Macro",
  28234. height: math.unit(250, "feet")
  28235. },
  28236. {
  28237. name: "Macro+",
  28238. height: math.unit(2500, "feet")
  28239. },
  28240. ]
  28241. ))
  28242. characterMakers.push(() => makeCharacter(
  28243. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28244. {
  28245. front: {
  28246. height: math.unit(3.02, "meters"),
  28247. weight: math.unit(500, "kg"),
  28248. name: "Front",
  28249. image: {
  28250. source: "./media/characters/drena/front.svg",
  28251. extra: 282 / 243,
  28252. bottom: 8 / 290
  28253. }
  28254. },
  28255. side: {
  28256. height: math.unit(3.02, "meters"),
  28257. weight: math.unit(500, "kg"),
  28258. name: "Side",
  28259. image: {
  28260. source: "./media/characters/drena/side.svg",
  28261. extra: 280 / 245,
  28262. bottom: 10 / 290
  28263. }
  28264. },
  28265. back: {
  28266. height: math.unit(3.02, "meters"),
  28267. weight: math.unit(500, "kg"),
  28268. name: "Back",
  28269. image: {
  28270. source: "./media/characters/drena/back.svg",
  28271. extra: 278 / 243,
  28272. bottom: 2 / 280
  28273. }
  28274. },
  28275. foot: {
  28276. height: math.unit(0.75, "meters"),
  28277. name: "Foot",
  28278. image: {
  28279. source: "./media/characters/drena/foot.svg"
  28280. }
  28281. },
  28282. maw: {
  28283. height: math.unit(0.82, "meters"),
  28284. name: "Maw",
  28285. image: {
  28286. source: "./media/characters/drena/maw.svg"
  28287. }
  28288. },
  28289. rump: {
  28290. height: math.unit(0.93, "meters"),
  28291. name: "Rump",
  28292. image: {
  28293. source: "./media/characters/drena/rump.svg"
  28294. }
  28295. },
  28296. },
  28297. [
  28298. {
  28299. name: "Normal",
  28300. height: math.unit(3.02, "meters"),
  28301. default: true
  28302. },
  28303. ]
  28304. ))
  28305. characterMakers.push(() => makeCharacter(
  28306. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28307. {
  28308. front: {
  28309. height: math.unit(6 + 4 / 12, "feet"),
  28310. weight: math.unit(250, "lb"),
  28311. name: "Front",
  28312. image: {
  28313. source: "./media/characters/remmyzilla/front.svg",
  28314. extra: 4033 / 3588,
  28315. bottom: 123 / 4156
  28316. }
  28317. },
  28318. back: {
  28319. height: math.unit(6 + 4 / 12, "feet"),
  28320. weight: math.unit(250, "lb"),
  28321. name: "Back",
  28322. image: {
  28323. source: "./media/characters/remmyzilla/back.svg",
  28324. extra: 2687 / 2555,
  28325. bottom: 48 / 2735
  28326. }
  28327. },
  28328. paw: {
  28329. height: math.unit(1.73, "feet"),
  28330. name: "Paw",
  28331. image: {
  28332. source: "./media/characters/remmyzilla/paw.svg"
  28333. }
  28334. },
  28335. maw: {
  28336. height: math.unit(1.73, "feet"),
  28337. name: "Maw",
  28338. image: {
  28339. source: "./media/characters/remmyzilla/maw.svg"
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Normal",
  28346. height: math.unit(6 + 4 / 12, "feet")
  28347. },
  28348. {
  28349. name: "Minimacro",
  28350. height: math.unit(12 + 8 / 12, "feet")
  28351. },
  28352. {
  28353. name: "Normal",
  28354. height: math.unit(640, "feet"),
  28355. default: true
  28356. },
  28357. {
  28358. name: "Megamacro",
  28359. height: math.unit(6400, "feet")
  28360. },
  28361. {
  28362. name: "Gigamacro",
  28363. height: math.unit(64000, "miles")
  28364. },
  28365. ]
  28366. ))
  28367. characterMakers.push(() => makeCharacter(
  28368. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28369. {
  28370. front: {
  28371. height: math.unit(2.5, "meters"),
  28372. weight: math.unit(300, "lb"),
  28373. name: "Front",
  28374. image: {
  28375. source: "./media/characters/lawrence/front.svg",
  28376. extra: 357 / 335,
  28377. bottom: 30 / 387
  28378. }
  28379. },
  28380. back: {
  28381. height: math.unit(2.5, "meters"),
  28382. weight: math.unit(300, "lb"),
  28383. name: "Back",
  28384. image: {
  28385. source: "./media/characters/lawrence/back.svg",
  28386. extra: 357 / 338,
  28387. bottom: 16 / 373
  28388. }
  28389. },
  28390. head: {
  28391. height: math.unit(0.9, "meter"),
  28392. name: "Head",
  28393. image: {
  28394. source: "./media/characters/lawrence/head.svg"
  28395. }
  28396. },
  28397. maw: {
  28398. height: math.unit(0.7, "meter"),
  28399. name: "Maw",
  28400. image: {
  28401. source: "./media/characters/lawrence/maw.svg"
  28402. }
  28403. },
  28404. footBottom: {
  28405. height: math.unit(0.5, "meter"),
  28406. name: "Foot (Bottom)",
  28407. image: {
  28408. source: "./media/characters/lawrence/foot-bottom.svg"
  28409. }
  28410. },
  28411. footTop: {
  28412. height: math.unit(0.5, "meter"),
  28413. name: "Foot (Top)",
  28414. image: {
  28415. source: "./media/characters/lawrence/foot-top.svg"
  28416. }
  28417. },
  28418. },
  28419. [
  28420. {
  28421. name: "Normal",
  28422. height: math.unit(2.5, "meters"),
  28423. default: true
  28424. },
  28425. {
  28426. name: "Macro",
  28427. height: math.unit(95, "meters")
  28428. },
  28429. {
  28430. name: "Megamacro",
  28431. height: math.unit(150, "km")
  28432. },
  28433. ]
  28434. ))
  28435. characterMakers.push(() => makeCharacter(
  28436. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28437. {
  28438. front: {
  28439. height: math.unit(4.2, "meters"),
  28440. name: "Front",
  28441. image: {
  28442. source: "./media/characters/sydney/front.svg",
  28443. extra: 1323 / 1277,
  28444. bottom: 111 / 1434
  28445. }
  28446. },
  28447. },
  28448. [
  28449. {
  28450. name: "Normal",
  28451. height: math.unit(4.2, "meters"),
  28452. default: true
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28458. {
  28459. back: {
  28460. height: math.unit(201, "feet"),
  28461. name: "Back",
  28462. image: {
  28463. source: "./media/characters/jessica/back.svg",
  28464. extra: 273 / 259,
  28465. bottom: 7 / 280
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Normal",
  28472. height: math.unit(201, "feet"),
  28473. default: true
  28474. },
  28475. {
  28476. name: "Megamacro",
  28477. height: math.unit(8, "miles")
  28478. },
  28479. ]
  28480. ))
  28481. characterMakers.push(() => makeCharacter(
  28482. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28483. {
  28484. side: {
  28485. height: math.unit(320, "cm"),
  28486. name: "Side",
  28487. image: {
  28488. source: "./media/characters/victoria/side.svg",
  28489. extra: 778 / 346,
  28490. bottom: 56 / 834
  28491. }
  28492. },
  28493. maw: {
  28494. height: math.unit(5.9, "feet"),
  28495. name: "Maw",
  28496. image: {
  28497. source: "./media/characters/victoria/maw.svg"
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(320, "cm"),
  28505. default: true
  28506. },
  28507. ]
  28508. ))
  28509. characterMakers.push(() => makeCharacter(
  28510. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28511. {
  28512. front: {
  28513. height: math.unit(5 + 6 / 12, "feet"),
  28514. name: "Front",
  28515. image: {
  28516. source: "./media/characters/cat/front.svg",
  28517. extra: 1449/1295,
  28518. bottom: 34/1483
  28519. }
  28520. },
  28521. back: {
  28522. height: math.unit(5 + 6 / 12, "feet"),
  28523. name: "Back",
  28524. image: {
  28525. source: "./media/characters/cat/back.svg",
  28526. extra: 1466/1301,
  28527. bottom: 19/1485
  28528. }
  28529. },
  28530. taur: {
  28531. height: math.unit(7, "feet"),
  28532. name: "Taur",
  28533. image: {
  28534. source: "./media/characters/cat/taur.svg",
  28535. extra: 1389/1233,
  28536. bottom: 83/1472
  28537. }
  28538. },
  28539. lucarioFront: {
  28540. height: math.unit(4, "feet"),
  28541. name: "Lucario (Front)",
  28542. image: {
  28543. source: "./media/characters/cat/lucario-front.svg",
  28544. extra: 1149/1019,
  28545. bottom: 84/1233
  28546. }
  28547. },
  28548. lucarioBack: {
  28549. height: math.unit(4, "feet"),
  28550. name: "Lucario (Back)",
  28551. image: {
  28552. source: "./media/characters/cat/lucario-back.svg",
  28553. extra: 1190/1059,
  28554. bottom: 33/1223
  28555. }
  28556. },
  28557. megaLucario: {
  28558. height: math.unit(4, "feet"),
  28559. name: "Mega Lucario",
  28560. image: {
  28561. source: "./media/characters/cat/mega-lucario.svg",
  28562. extra: 1515 / 1319,
  28563. bottom: 63 / 1578
  28564. }
  28565. },
  28566. nickit: {
  28567. height: math.unit(2, "feet"),
  28568. name: "Nickit",
  28569. image: {
  28570. source: "./media/characters/cat/nickit.svg",
  28571. extra: 1980 / 1585,
  28572. bottom: 102 / 2082
  28573. }
  28574. },
  28575. lopunnyFront: {
  28576. height: math.unit(5, "feet"),
  28577. name: "Lopunny (Front)",
  28578. image: {
  28579. source: "./media/characters/cat/lopunny-front.svg",
  28580. extra: 1782 / 1469,
  28581. bottom: 38 / 1820
  28582. }
  28583. },
  28584. lopunnyBack: {
  28585. height: math.unit(5, "feet"),
  28586. name: "Lopunny (Back)",
  28587. image: {
  28588. source: "./media/characters/cat/lopunny-back.svg",
  28589. extra: 1660 / 1490,
  28590. bottom: 25 / 1685
  28591. }
  28592. },
  28593. },
  28594. [
  28595. {
  28596. name: "Really small",
  28597. height: math.unit(1, "nm")
  28598. },
  28599. {
  28600. name: "Micro",
  28601. height: math.unit(5, "inches")
  28602. },
  28603. {
  28604. name: "Normal",
  28605. height: math.unit(5 + 6 / 12, "feet"),
  28606. default: true
  28607. },
  28608. {
  28609. name: "Macro",
  28610. height: math.unit(50, "feet")
  28611. },
  28612. {
  28613. name: "Macro+",
  28614. height: math.unit(150, "feet")
  28615. },
  28616. {
  28617. name: "Megamacro",
  28618. height: math.unit(100, "miles")
  28619. },
  28620. ]
  28621. ))
  28622. characterMakers.push(() => makeCharacter(
  28623. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28624. {
  28625. front: {
  28626. height: math.unit(63.4, "meters"),
  28627. weight: math.unit(3.28349e+6, "kilograms"),
  28628. name: "Front",
  28629. image: {
  28630. source: "./media/characters/kirina-violet/front.svg",
  28631. extra: 2812 / 2725,
  28632. bottom: 0 / 2812
  28633. }
  28634. },
  28635. back: {
  28636. height: math.unit(63.4, "meters"),
  28637. weight: math.unit(3.28349e+6, "kilograms"),
  28638. name: "Back",
  28639. image: {
  28640. source: "./media/characters/kirina-violet/back.svg",
  28641. extra: 2812 / 2725,
  28642. bottom: 0 / 2812
  28643. }
  28644. },
  28645. mouth: {
  28646. height: math.unit(4.35, "meters"),
  28647. name: "Mouth",
  28648. image: {
  28649. source: "./media/characters/kirina-violet/mouth.svg"
  28650. }
  28651. },
  28652. paw: {
  28653. height: math.unit(5.6, "meters"),
  28654. name: "Paw",
  28655. image: {
  28656. source: "./media/characters/kirina-violet/paw.svg"
  28657. }
  28658. },
  28659. tail: {
  28660. height: math.unit(18, "meters"),
  28661. name: "Tail",
  28662. image: {
  28663. source: "./media/characters/kirina-violet/tail.svg"
  28664. }
  28665. },
  28666. },
  28667. [
  28668. {
  28669. name: "Macro",
  28670. height: math.unit(63.4, "meters"),
  28671. default: true
  28672. },
  28673. ]
  28674. ))
  28675. characterMakers.push(() => makeCharacter(
  28676. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28677. {
  28678. front: {
  28679. height: math.unit(75, "feet"),
  28680. name: "Front",
  28681. image: {
  28682. source: "./media/characters/cat-gigachu/front.svg",
  28683. extra: 1239/1027,
  28684. bottom: 32/1271
  28685. }
  28686. },
  28687. back: {
  28688. height: math.unit(75, "feet"),
  28689. name: "Back",
  28690. image: {
  28691. source: "./media/characters/cat-gigachu/back.svg",
  28692. extra: 1229/1030,
  28693. bottom: 9/1238
  28694. }
  28695. },
  28696. },
  28697. [
  28698. {
  28699. name: "Dynamax",
  28700. height: math.unit(75, "feet"),
  28701. default: true
  28702. },
  28703. ]
  28704. ))
  28705. characterMakers.push(() => makeCharacter(
  28706. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28707. {
  28708. front: {
  28709. height: math.unit(6, "feet"),
  28710. weight: math.unit(150, "lb"),
  28711. name: "Front",
  28712. image: {
  28713. source: "./media/characters/sfaiyan/front.svg",
  28714. extra: 999 / 978,
  28715. bottom: 5 / 1004
  28716. }
  28717. },
  28718. },
  28719. [
  28720. {
  28721. name: "Normal",
  28722. height: math.unit(1.82, "meters")
  28723. },
  28724. {
  28725. name: "Giant",
  28726. height: math.unit(2.27, "km"),
  28727. default: true
  28728. },
  28729. ]
  28730. ))
  28731. characterMakers.push(() => makeCharacter(
  28732. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28733. {
  28734. front: {
  28735. height: math.unit(179, "cm"),
  28736. weight: math.unit(100, "kg"),
  28737. name: "Front",
  28738. image: {
  28739. source: "./media/characters/raunehkeli/front.svg",
  28740. extra: 1934 / 1926,
  28741. bottom: 0 / 1934
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Normal",
  28748. height: math.unit(179, "cm")
  28749. },
  28750. {
  28751. name: "Maximum",
  28752. height: math.unit(575, "meters"),
  28753. default: true
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28759. {
  28760. front: {
  28761. height: math.unit(6, "feet"),
  28762. weight: math.unit(150, "lb"),
  28763. name: "Front",
  28764. image: {
  28765. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28766. extra: 2625 / 2518,
  28767. bottom: 60 / 2685
  28768. }
  28769. },
  28770. },
  28771. [
  28772. {
  28773. name: "Normal",
  28774. height: math.unit(6 + 2 / 12, "feet")
  28775. },
  28776. {
  28777. name: "Macro",
  28778. height: math.unit(1180, "feet"),
  28779. default: true
  28780. },
  28781. ]
  28782. ))
  28783. characterMakers.push(() => makeCharacter(
  28784. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28785. {
  28786. front: {
  28787. height: math.unit(5 + 6 / 12, "feet"),
  28788. weight: math.unit(108, "lb"),
  28789. name: "Front",
  28790. image: {
  28791. source: "./media/characters/lilith-zott/front.svg",
  28792. extra: 2510 / 2238,
  28793. bottom: 100 / 2610
  28794. }
  28795. },
  28796. frontDressed: {
  28797. height: math.unit(5 + 6 / 12, "feet"),
  28798. weight: math.unit(108, "lb"),
  28799. name: "Front (Dressed)",
  28800. image: {
  28801. source: "./media/characters/lilith-zott/front-dressed.svg",
  28802. extra: 2510 / 2238,
  28803. bottom: 100 / 2610
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(5 + 6 / 12, "feet")
  28811. },
  28812. {
  28813. name: "Macro",
  28814. height: math.unit(1030, "feet"),
  28815. default: true
  28816. },
  28817. ]
  28818. ))
  28819. characterMakers.push(() => makeCharacter(
  28820. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28821. {
  28822. front: {
  28823. height: math.unit(6, "feet"),
  28824. weight: math.unit(150, "lb"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28828. extra: 2567 / 2435,
  28829. bottom: 39 / 2606
  28830. }
  28831. },
  28832. frontSuper: {
  28833. height: math.unit(6, "feet"),
  28834. name: "Front (Super)",
  28835. image: {
  28836. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28837. extra: 2567 / 2435,
  28838. bottom: 39 / 2606
  28839. }
  28840. },
  28841. },
  28842. [
  28843. {
  28844. name: "Normal",
  28845. height: math.unit(5 + 10 / 12, "feet")
  28846. },
  28847. {
  28848. name: "Macro",
  28849. height: math.unit(1100, "feet"),
  28850. default: true
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28856. {
  28857. front: {
  28858. height: math.unit(100, "miles"),
  28859. name: "Front",
  28860. image: {
  28861. source: "./media/characters/sona/front.svg",
  28862. extra: 2433 / 2201,
  28863. bottom: 53 / 2486
  28864. }
  28865. },
  28866. foot: {
  28867. height: math.unit(16.1, "miles"),
  28868. name: "Foot",
  28869. image: {
  28870. source: "./media/characters/sona/foot.svg"
  28871. }
  28872. },
  28873. },
  28874. [
  28875. {
  28876. name: "Macro",
  28877. height: math.unit(100, "miles"),
  28878. default: true
  28879. },
  28880. ]
  28881. ))
  28882. characterMakers.push(() => makeCharacter(
  28883. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28884. {
  28885. front: {
  28886. height: math.unit(6, "feet"),
  28887. weight: math.unit(150, "lb"),
  28888. name: "Front",
  28889. image: {
  28890. source: "./media/characters/bailey/front.svg",
  28891. extra: 1778 / 1724,
  28892. bottom: 30 / 1808
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Micro",
  28899. height: math.unit(4, "inches")
  28900. },
  28901. {
  28902. name: "Normal",
  28903. height: math.unit(5 + 5 / 12, "feet"),
  28904. default: true
  28905. },
  28906. {
  28907. name: "Macro",
  28908. height: math.unit(250, "feet")
  28909. },
  28910. {
  28911. name: "Megamacro",
  28912. height: math.unit(100, "miles")
  28913. },
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28918. {
  28919. front: {
  28920. height: math.unit(5 + 2 / 12, "feet"),
  28921. weight: math.unit(120, "lb"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/snaps/front.svg",
  28925. extra: 2370 / 2177,
  28926. bottom: 48 / 2418
  28927. }
  28928. },
  28929. back: {
  28930. height: math.unit(5 + 2 / 12, "feet"),
  28931. weight: math.unit(120, "lb"),
  28932. name: "Back",
  28933. image: {
  28934. source: "./media/characters/snaps/back.svg",
  28935. extra: 2408 / 2258,
  28936. bottom: 15 / 2423
  28937. }
  28938. },
  28939. },
  28940. [
  28941. {
  28942. name: "Micro",
  28943. height: math.unit(9, "inches")
  28944. },
  28945. {
  28946. name: "Normal",
  28947. height: math.unit(5 + 2 / 12, "feet"),
  28948. default: true
  28949. },
  28950. {
  28951. name: "Mini Macro",
  28952. height: math.unit(10, "feet")
  28953. },
  28954. ]
  28955. ))
  28956. characterMakers.push(() => makeCharacter(
  28957. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28958. {
  28959. front: {
  28960. height: math.unit(1.8, "meters"),
  28961. weight: math.unit(85, "kg"),
  28962. name: "Front",
  28963. image: {
  28964. source: "./media/characters/azteck/front.svg",
  28965. extra: 2815 / 2625,
  28966. bottom: 89 / 2904
  28967. }
  28968. },
  28969. back: {
  28970. height: math.unit(1.8, "meters"),
  28971. weight: math.unit(85, "kg"),
  28972. name: "Back",
  28973. image: {
  28974. source: "./media/characters/azteck/back.svg",
  28975. extra: 2856 / 2648,
  28976. bottom: 85 / 2941
  28977. }
  28978. },
  28979. frontDressed: {
  28980. height: math.unit(1.8, "meters"),
  28981. weight: math.unit(85, "kg"),
  28982. name: "Front (Dressed)",
  28983. image: {
  28984. source: "./media/characters/azteck/front-dressed.svg",
  28985. extra: 2147 / 2003,
  28986. bottom: 68 / 2215
  28987. }
  28988. },
  28989. head: {
  28990. height: math.unit(0.47, "meters"),
  28991. weight: math.unit(85, "kg"),
  28992. name: "Head",
  28993. image: {
  28994. source: "./media/characters/azteck/head.svg"
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Bite sized",
  29001. height: math.unit(16, "cm")
  29002. },
  29003. {
  29004. name: "Normal",
  29005. height: math.unit(1.8, "meters"),
  29006. default: true
  29007. },
  29008. ]
  29009. ))
  29010. characterMakers.push(() => makeCharacter(
  29011. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29012. {
  29013. front: {
  29014. height: math.unit(6, "feet"),
  29015. weight: math.unit(150, "lb"),
  29016. name: "Front",
  29017. image: {
  29018. source: "./media/characters/pidge/front.svg",
  29019. extra: 620 / 588,
  29020. bottom: 9 / 629
  29021. }
  29022. },
  29023. back: {
  29024. height: math.unit(6, "feet"),
  29025. weight: math.unit(150, "lb"),
  29026. name: "Back",
  29027. image: {
  29028. source: "./media/characters/pidge/back.svg",
  29029. extra: 620 / 588,
  29030. bottom: 9 / 629
  29031. }
  29032. },
  29033. },
  29034. [
  29035. {
  29036. name: "Macro",
  29037. height: math.unit(1, "mile"),
  29038. default: true
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(6, "feet"),
  29047. weight: math.unit(150, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/en/front.svg",
  29051. extra: 1697 / 1563,
  29052. bottom: 103 / 1800
  29053. }
  29054. },
  29055. back: {
  29056. height: math.unit(6, "feet"),
  29057. weight: math.unit(150, "lb"),
  29058. name: "Back",
  29059. image: {
  29060. source: "./media/characters/en/back.svg",
  29061. extra: 1700 / 1570,
  29062. bottom: 51 / 1751
  29063. }
  29064. },
  29065. frontDressed: {
  29066. height: math.unit(6, "feet"),
  29067. weight: math.unit(150, "lb"),
  29068. name: "Front (Dressed)",
  29069. image: {
  29070. source: "./media/characters/en/front-dressed.svg",
  29071. extra: 1697 / 1563,
  29072. bottom: 103 / 1800
  29073. }
  29074. },
  29075. backDressed: {
  29076. height: math.unit(6, "feet"),
  29077. weight: math.unit(150, "lb"),
  29078. name: "Back (Dressed)",
  29079. image: {
  29080. source: "./media/characters/en/back-dressed.svg",
  29081. extra: 1700 / 1570,
  29082. bottom: 51 / 1751
  29083. }
  29084. },
  29085. },
  29086. [
  29087. {
  29088. name: "Macro",
  29089. height: math.unit(210, "feet"),
  29090. default: true
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(6, "feet"),
  29099. weight: math.unit(150, "lb"),
  29100. name: "Front",
  29101. image: {
  29102. source: "./media/characters/haze-orris/front.svg",
  29103. extra: 3975 / 3525,
  29104. bottom: 137 / 4112
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Micro",
  29111. height: math.unit(150, "mm"),
  29112. default: true
  29113. },
  29114. ]
  29115. ))
  29116. characterMakers.push(() => makeCharacter(
  29117. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29118. {
  29119. front: {
  29120. height: math.unit(6, "feet"),
  29121. weight: math.unit(150, "lb"),
  29122. name: "Front",
  29123. image: {
  29124. source: "./media/characters/casselene-yaro/front.svg",
  29125. extra: 4721 / 4541,
  29126. bottom: 82 / 4803
  29127. }
  29128. },
  29129. back: {
  29130. height: math.unit(6, "feet"),
  29131. weight: math.unit(150, "lb"),
  29132. name: "Back",
  29133. image: {
  29134. source: "./media/characters/casselene-yaro/back.svg",
  29135. extra: 4569 / 4377,
  29136. bottom: 69 / 4638
  29137. }
  29138. },
  29139. frontDressed: {
  29140. height: math.unit(6, "feet"),
  29141. weight: math.unit(150, "lb"),
  29142. name: "Front-dressed",
  29143. image: {
  29144. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29145. extra: 4721 / 4541,
  29146. bottom: 82 / 4803
  29147. }
  29148. },
  29149. },
  29150. [
  29151. {
  29152. name: "Macro",
  29153. height: math.unit(190, "feet"),
  29154. default: true
  29155. },
  29156. ]
  29157. ))
  29158. characterMakers.push(() => makeCharacter(
  29159. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29160. {
  29161. front: {
  29162. height: math.unit(6, "feet"),
  29163. weight: math.unit(150, "lb"),
  29164. name: "Front",
  29165. image: {
  29166. source: "./media/characters/myra-rue-delore/front.svg",
  29167. extra: 1340 / 1308,
  29168. bottom: 67 / 1407
  29169. }
  29170. },
  29171. back: {
  29172. height: math.unit(6, "feet"),
  29173. weight: math.unit(150, "lb"),
  29174. name: "Back",
  29175. image: {
  29176. source: "./media/characters/myra-rue-delore/back.svg",
  29177. extra: 1341 / 1310,
  29178. bottom: 40 / 1381
  29179. }
  29180. },
  29181. frontDressed: {
  29182. height: math.unit(6, "feet"),
  29183. weight: math.unit(150, "lb"),
  29184. name: "Front (Dressed)",
  29185. image: {
  29186. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29187. extra: 1340 / 1308,
  29188. bottom: 67 / 1407
  29189. }
  29190. },
  29191. },
  29192. [
  29193. {
  29194. name: "Macro",
  29195. height: math.unit(150, "feet"),
  29196. default: true
  29197. },
  29198. ]
  29199. ))
  29200. characterMakers.push(() => makeCharacter(
  29201. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29202. {
  29203. front: {
  29204. height: math.unit(10, "feet"),
  29205. weight: math.unit(15015, "lb"),
  29206. name: "Front",
  29207. image: {
  29208. source: "./media/characters/fem!plat/front.svg",
  29209. extra: 2799 / 2604,
  29210. bottom: 149 / 2948
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Normal",
  29217. height: math.unit(10, "feet"),
  29218. default: true
  29219. },
  29220. {
  29221. name: "Macro",
  29222. height: math.unit(100, "feet")
  29223. },
  29224. {
  29225. name: "Megamacro",
  29226. height: math.unit(1000, "feet")
  29227. },
  29228. ]
  29229. ))
  29230. characterMakers.push(() => makeCharacter(
  29231. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29232. {
  29233. front: {
  29234. height: math.unit(15 + 5 / 12, "feet"),
  29235. weight: math.unit(4600, "lb"),
  29236. name: "Front",
  29237. image: {
  29238. source: "./media/characters/neapolitan-ananassa/front.svg",
  29239. extra: 2903 / 2736,
  29240. bottom: 0 / 2903
  29241. }
  29242. },
  29243. side: {
  29244. height: math.unit(15 + 5 / 12, "feet"),
  29245. weight: math.unit(4600, "lb"),
  29246. name: "Side",
  29247. image: {
  29248. source: "./media/characters/neapolitan-ananassa/side.svg",
  29249. extra: 2925 / 2719,
  29250. bottom: 0 / 2925
  29251. }
  29252. },
  29253. back: {
  29254. height: math.unit(15 + 5 / 12, "feet"),
  29255. weight: math.unit(4600, "lb"),
  29256. name: "Back",
  29257. image: {
  29258. source: "./media/characters/neapolitan-ananassa/back.svg",
  29259. extra: 2903 / 2736,
  29260. bottom: 0 / 2903
  29261. }
  29262. },
  29263. },
  29264. [
  29265. {
  29266. name: "Normal",
  29267. height: math.unit(15 + 5 / 12, "feet"),
  29268. default: true
  29269. },
  29270. {
  29271. name: "Post-Millenium",
  29272. height: math.unit(35 + 5 / 12, "feet")
  29273. },
  29274. {
  29275. name: "Post-Era",
  29276. height: math.unit(450 + 5 / 12, "feet")
  29277. },
  29278. ]
  29279. ))
  29280. characterMakers.push(() => makeCharacter(
  29281. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29282. {
  29283. front: {
  29284. height: math.unit(300, "meters"),
  29285. weight: math.unit(125000, "tonnes"),
  29286. name: "Front",
  29287. image: {
  29288. source: "./media/characters/pazuzu/front.svg",
  29289. extra: 877 / 794,
  29290. bottom: 47 / 924
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Macro",
  29297. height: math.unit(300, "meters"),
  29298. default: true
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29304. {
  29305. side: {
  29306. height: math.unit(10 + 7 / 12, "feet"),
  29307. weight: math.unit(2.5, "tons"),
  29308. name: "Side",
  29309. image: {
  29310. source: "./media/characters/aasha/side.svg",
  29311. extra: 1345 / 1245,
  29312. bottom: 111 / 1456
  29313. }
  29314. },
  29315. back: {
  29316. height: math.unit(10 + 7 / 12, "feet"),
  29317. weight: math.unit(2.5, "tons"),
  29318. name: "Back",
  29319. image: {
  29320. source: "./media/characters/aasha/back.svg",
  29321. extra: 1133 / 1057,
  29322. bottom: 257 / 1390
  29323. }
  29324. },
  29325. },
  29326. [
  29327. {
  29328. name: "Normal",
  29329. height: math.unit(10 + 7 / 12, "feet"),
  29330. default: true
  29331. },
  29332. ]
  29333. ))
  29334. characterMakers.push(() => makeCharacter(
  29335. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29336. {
  29337. front: {
  29338. height: math.unit(6 + 3 / 12, "feet"),
  29339. name: "Front",
  29340. image: {
  29341. source: "./media/characters/nevan/front.svg",
  29342. extra: 704 / 704,
  29343. bottom: 28 / 732
  29344. }
  29345. },
  29346. back: {
  29347. height: math.unit(6 + 3 / 12, "feet"),
  29348. name: "Back",
  29349. image: {
  29350. source: "./media/characters/nevan/back.svg",
  29351. extra: 714 / 714,
  29352. bottom: 21 / 735
  29353. }
  29354. },
  29355. frontFlaccid: {
  29356. height: math.unit(6 + 3 / 12, "feet"),
  29357. name: "Front (Flaccid)",
  29358. image: {
  29359. source: "./media/characters/nevan/front-flaccid.svg",
  29360. extra: 704 / 704,
  29361. bottom: 28 / 732
  29362. }
  29363. },
  29364. frontErect: {
  29365. height: math.unit(6 + 3 / 12, "feet"),
  29366. name: "Front (Erect)",
  29367. image: {
  29368. source: "./media/characters/nevan/front-erect.svg",
  29369. extra: 704 / 704,
  29370. bottom: 28 / 732
  29371. }
  29372. },
  29373. backFlaccid: {
  29374. height: math.unit(6 + 3 / 12, "feet"),
  29375. name: "Back (Flaccid)",
  29376. image: {
  29377. source: "./media/characters/nevan/back-flaccid.svg",
  29378. extra: 714 / 714,
  29379. bottom: 21 / 735
  29380. }
  29381. },
  29382. },
  29383. [
  29384. {
  29385. name: "Normal",
  29386. height: math.unit(6 + 3 / 12, "feet"),
  29387. default: true
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29393. {
  29394. front: {
  29395. height: math.unit(4, "feet"),
  29396. name: "Front",
  29397. image: {
  29398. source: "./media/characters/arhan/front.svg",
  29399. extra: 3368 / 3133,
  29400. bottom: 0 / 3368
  29401. }
  29402. },
  29403. side: {
  29404. height: math.unit(4, "feet"),
  29405. name: "Side",
  29406. image: {
  29407. source: "./media/characters/arhan/side.svg",
  29408. extra: 3347 / 3105,
  29409. bottom: 0 / 3347
  29410. }
  29411. },
  29412. tongue: {
  29413. height: math.unit(1.42, "feet"),
  29414. name: "Tongue",
  29415. image: {
  29416. source: "./media/characters/arhan/tongue.svg"
  29417. }
  29418. },
  29419. head: {
  29420. height: math.unit(0.85, "feet"),
  29421. name: "Head",
  29422. image: {
  29423. source: "./media/characters/arhan/head.svg"
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Normal",
  29430. height: math.unit(4, "feet"),
  29431. default: true
  29432. },
  29433. ]
  29434. ))
  29435. characterMakers.push(() => makeCharacter(
  29436. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29437. {
  29438. front: {
  29439. height: math.unit(5 + 7.5 / 12, "feet"),
  29440. weight: math.unit(120, "lb"),
  29441. name: "Front",
  29442. image: {
  29443. source: "./media/characters/digi-duncan/front.svg",
  29444. extra: 330 / 326,
  29445. bottom: 16 / 346
  29446. }
  29447. },
  29448. side: {
  29449. height: math.unit(5 + 7.5 / 12, "feet"),
  29450. weight: math.unit(120, "lb"),
  29451. name: "Side",
  29452. image: {
  29453. source: "./media/characters/digi-duncan/side.svg",
  29454. extra: 341 / 337,
  29455. bottom: 1 / 342
  29456. }
  29457. },
  29458. back: {
  29459. height: math.unit(5 + 7.5 / 12, "feet"),
  29460. weight: math.unit(120, "lb"),
  29461. name: "Back",
  29462. image: {
  29463. source: "./media/characters/digi-duncan/back.svg",
  29464. extra: 330 / 326,
  29465. bottom: 12 / 342
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Speck",
  29472. height: math.unit(0.25, "mm")
  29473. },
  29474. {
  29475. name: "Micro",
  29476. height: math.unit(5, "mm")
  29477. },
  29478. {
  29479. name: "Tiny",
  29480. height: math.unit(0.5, "inches"),
  29481. default: true
  29482. },
  29483. {
  29484. name: "Human",
  29485. height: math.unit(5 + 7.5 / 12, "feet")
  29486. },
  29487. {
  29488. name: "Minigiant",
  29489. height: math.unit(8 + 5.25, "feet")
  29490. },
  29491. {
  29492. name: "Giant",
  29493. height: math.unit(2000, "feet")
  29494. },
  29495. {
  29496. name: "Mega",
  29497. height: math.unit(371.1, "miles")
  29498. },
  29499. ]
  29500. ))
  29501. characterMakers.push(() => makeCharacter(
  29502. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29503. {
  29504. front: {
  29505. height: math.unit(2, "meters"),
  29506. weight: math.unit(350, "kg"),
  29507. name: "Front",
  29508. image: {
  29509. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29510. extra: 898 / 838,
  29511. bottom: 9 / 907
  29512. }
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "Micro",
  29518. height: math.unit(8, "meters")
  29519. },
  29520. {
  29521. name: "Normal",
  29522. height: math.unit(50, "meters"),
  29523. default: true
  29524. },
  29525. {
  29526. name: "Macro",
  29527. height: math.unit(500, "meters")
  29528. },
  29529. ]
  29530. ))
  29531. characterMakers.push(() => makeCharacter(
  29532. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29533. {
  29534. front: {
  29535. height: math.unit(6 + 6 / 12, "feet"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/khardesh/front.svg",
  29539. extra: 888 / 797,
  29540. bottom: 25 / 913
  29541. }
  29542. },
  29543. },
  29544. [
  29545. {
  29546. name: "Normal",
  29547. height: math.unit(6 + 6 / 12, "feet"),
  29548. default: true
  29549. },
  29550. {
  29551. name: "Normal+",
  29552. height: math.unit(4, "meters")
  29553. },
  29554. {
  29555. name: "Macro",
  29556. height: math.unit(50, "meters")
  29557. },
  29558. {
  29559. name: "Macro+",
  29560. height: math.unit(100, "meters")
  29561. },
  29562. {
  29563. name: "Megamacro",
  29564. height: math.unit(20, "km")
  29565. },
  29566. ]
  29567. ))
  29568. characterMakers.push(() => makeCharacter(
  29569. { name: "Kosho", species: ["kirin"], 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/kosho/front.svg",
  29577. extra: 1847 / 1847,
  29578. bottom: 86 / 1933
  29579. }
  29580. },
  29581. },
  29582. [
  29583. {
  29584. name: "Second-stage micro",
  29585. height: math.unit(0.5, "inches")
  29586. },
  29587. {
  29588. name: "First-stage micro",
  29589. height: math.unit(6, "inches")
  29590. },
  29591. {
  29592. name: "Normal",
  29593. height: math.unit(6, "feet"),
  29594. default: true
  29595. },
  29596. {
  29597. name: "First-stage macro",
  29598. height: math.unit(72, "feet")
  29599. },
  29600. {
  29601. name: "Second-stage macro",
  29602. height: math.unit(864, "feet")
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29608. {
  29609. normal: {
  29610. height: math.unit(4 + 6 / 12, "feet"),
  29611. name: "Normal",
  29612. image: {
  29613. source: "./media/characters/hydra/normal.svg",
  29614. extra: 2833 / 2634,
  29615. bottom: 68 / 2901
  29616. }
  29617. },
  29618. smol: {
  29619. height: math.unit(0.705, "inches"),
  29620. name: "Smol",
  29621. image: {
  29622. source: "./media/characters/hydra/smol.svg",
  29623. extra: 2715 / 2540,
  29624. bottom: 0 / 2715
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Normal",
  29631. height: math.unit(4 + 6 / 12, "feet"),
  29632. default: true
  29633. }
  29634. ]
  29635. ))
  29636. characterMakers.push(() => makeCharacter(
  29637. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29638. {
  29639. front: {
  29640. height: math.unit(0.6, "cm"),
  29641. name: "Front",
  29642. image: {
  29643. source: "./media/characters/daz/front.svg",
  29644. extra: 1682 / 1164,
  29645. bottom: 42 / 1724
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Normal",
  29652. height: math.unit(0.6, "cm"),
  29653. default: true
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(6, "feet"),
  29662. weight: math.unit(235, "lb"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/theo-pangolin/front.svg",
  29666. extra: 1996 / 1969,
  29667. bottom: 115 / 2111
  29668. }
  29669. },
  29670. back: {
  29671. height: math.unit(6, "feet"),
  29672. weight: math.unit(235, "lb"),
  29673. name: "Back",
  29674. image: {
  29675. source: "./media/characters/theo-pangolin/back.svg",
  29676. extra: 1979 / 1979,
  29677. bottom: 40 / 2019
  29678. }
  29679. },
  29680. feral: {
  29681. height: math.unit(2, "feet"),
  29682. weight: math.unit(30, "lb"),
  29683. name: "Feral",
  29684. image: {
  29685. source: "./media/characters/theo-pangolin/feral.svg",
  29686. extra: 803 / 791,
  29687. bottom: 181 / 984
  29688. }
  29689. },
  29690. footFive: {
  29691. height: math.unit(1.43, "feet"),
  29692. name: "Foot (Five Toes)",
  29693. image: {
  29694. source: "./media/characters/theo-pangolin/foot-five.svg"
  29695. }
  29696. },
  29697. footFour: {
  29698. height: math.unit(1.43, "feet"),
  29699. name: "Foot (Four Toes)",
  29700. image: {
  29701. source: "./media/characters/theo-pangolin/foot-four.svg"
  29702. }
  29703. },
  29704. handFour: {
  29705. height: math.unit(0.81, "feet"),
  29706. name: "Hand (Four Fingers)",
  29707. image: {
  29708. source: "./media/characters/theo-pangolin/hand-four.svg"
  29709. }
  29710. },
  29711. handThree: {
  29712. height: math.unit(0.81, "feet"),
  29713. name: "Hand (Three Fingers)",
  29714. image: {
  29715. source: "./media/characters/theo-pangolin/hand-three.svg"
  29716. }
  29717. },
  29718. headFront: {
  29719. height: math.unit(1.37, "feet"),
  29720. name: "Head (Front)",
  29721. image: {
  29722. source: "./media/characters/theo-pangolin/head-front.svg"
  29723. }
  29724. },
  29725. headSide: {
  29726. height: math.unit(1.43, "feet"),
  29727. name: "Head (Side)",
  29728. image: {
  29729. source: "./media/characters/theo-pangolin/head-side.svg"
  29730. }
  29731. },
  29732. tongue: {
  29733. height: math.unit(2.29, "feet"),
  29734. name: "Tongue",
  29735. image: {
  29736. source: "./media/characters/theo-pangolin/tongue.svg"
  29737. }
  29738. },
  29739. },
  29740. [
  29741. {
  29742. name: "Normal",
  29743. height: math.unit(6, "feet")
  29744. },
  29745. {
  29746. name: "Macro",
  29747. height: math.unit(400, "feet"),
  29748. default: true
  29749. },
  29750. ]
  29751. ))
  29752. characterMakers.push(() => makeCharacter(
  29753. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29754. {
  29755. front: {
  29756. height: math.unit(6, "inches"),
  29757. weight: math.unit(0.036, "kg"),
  29758. name: "Front",
  29759. image: {
  29760. source: "./media/characters/renée/front.svg",
  29761. extra: 900 / 886,
  29762. bottom: 8 / 908
  29763. }
  29764. },
  29765. },
  29766. [
  29767. {
  29768. name: "Nano",
  29769. height: math.unit(1, "nm")
  29770. },
  29771. {
  29772. name: "Micro",
  29773. height: math.unit(1, "mm")
  29774. },
  29775. {
  29776. name: "Normal",
  29777. height: math.unit(6, "inches")
  29778. },
  29779. {
  29780. name: "Macro",
  29781. height: math.unit(2000, "feet"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Megamacro",
  29786. height: math.unit(2, "km")
  29787. },
  29788. {
  29789. name: "Gigamacro",
  29790. height: math.unit(2000, "km")
  29791. },
  29792. {
  29793. name: "Teramacro",
  29794. height: math.unit(250000, "km")
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29800. {
  29801. front: {
  29802. height: math.unit(4, "meters"),
  29803. weight: math.unit(150, "kg"),
  29804. name: "Front",
  29805. image: {
  29806. source: "./media/characters/caledvwlch/front.svg",
  29807. extra: 1760 / 1551,
  29808. bottom: 28 / 1788
  29809. }
  29810. },
  29811. side: {
  29812. height: math.unit(4, "meters"),
  29813. weight: math.unit(150, "kg"),
  29814. name: "Side",
  29815. image: {
  29816. source: "./media/characters/caledvwlch/side.svg",
  29817. extra: 1605 / 1536,
  29818. bottom: 31 / 1636
  29819. }
  29820. },
  29821. back: {
  29822. height: math.unit(4, "meters"),
  29823. weight: math.unit(150, "kg"),
  29824. name: "Back",
  29825. image: {
  29826. source: "./media/characters/caledvwlch/back.svg",
  29827. extra: 1635 / 1565,
  29828. bottom: 27 / 1662
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "\"Incognito\"",
  29835. height: math.unit(4, "meters")
  29836. },
  29837. {
  29838. name: "Small rampage",
  29839. height: math.unit(600, "meters")
  29840. },
  29841. {
  29842. name: "Mega",
  29843. height: math.unit(30, "km")
  29844. },
  29845. {
  29846. name: "Home-size",
  29847. height: math.unit(50, "km"),
  29848. default: true
  29849. },
  29850. {
  29851. name: "Giga",
  29852. height: math.unit(300, "km")
  29853. },
  29854. {
  29855. name: "Lounging",
  29856. height: math.unit(11000, "km")
  29857. },
  29858. {
  29859. name: "Planet snacking",
  29860. height: math.unit(2000000, "km")
  29861. },
  29862. ]
  29863. ))
  29864. characterMakers.push(() => makeCharacter(
  29865. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29866. {
  29867. front: {
  29868. height: math.unit(6, "feet"),
  29869. weight: math.unit(215, "lb"),
  29870. name: "Front",
  29871. image: {
  29872. source: "./media/characters/sapphire-svell/front.svg",
  29873. extra: 495 / 455,
  29874. bottom: 20 / 515
  29875. }
  29876. },
  29877. back: {
  29878. height: math.unit(6, "feet"),
  29879. weight: math.unit(216, "lb"),
  29880. name: "Back",
  29881. image: {
  29882. source: "./media/characters/sapphire-svell/back.svg",
  29883. extra: 497 / 477,
  29884. bottom: 7 / 504
  29885. }
  29886. },
  29887. maw: {
  29888. height: math.unit(1.57, "feet"),
  29889. name: "Maw",
  29890. image: {
  29891. source: "./media/characters/sapphire-svell/maw.svg"
  29892. }
  29893. },
  29894. foot: {
  29895. height: math.unit(1.07, "feet"),
  29896. name: "Foot",
  29897. image: {
  29898. source: "./media/characters/sapphire-svell/foot.svg"
  29899. }
  29900. },
  29901. toering: {
  29902. height: math.unit(1.7, "inch"),
  29903. name: "Toering",
  29904. image: {
  29905. source: "./media/characters/sapphire-svell/toering.svg"
  29906. }
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Normal",
  29912. height: math.unit(300, "feet"),
  29913. default: true
  29914. },
  29915. {
  29916. name: "Augmented",
  29917. height: math.unit(1250, "feet")
  29918. },
  29919. {
  29920. name: "Unleashed",
  29921. height: math.unit(3000, "feet")
  29922. },
  29923. ]
  29924. ))
  29925. characterMakers.push(() => makeCharacter(
  29926. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29927. {
  29928. side: {
  29929. height: math.unit(2 + 3 / 12, "feet"),
  29930. weight: math.unit(110, "lb"),
  29931. name: "Side",
  29932. image: {
  29933. source: "./media/characters/glitch-flux/side.svg",
  29934. extra: 997 / 805,
  29935. bottom: 20 / 1017
  29936. }
  29937. },
  29938. },
  29939. [
  29940. {
  29941. name: "Normal",
  29942. height: math.unit(2 + 3 / 12, "feet"),
  29943. default: true
  29944. },
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(4, "meters"),
  29952. name: "Front",
  29953. image: {
  29954. source: "./media/characters/mid/front.svg",
  29955. extra: 507 / 476,
  29956. bottom: 17 / 524
  29957. }
  29958. },
  29959. back: {
  29960. height: math.unit(4, "meters"),
  29961. name: "Back",
  29962. image: {
  29963. source: "./media/characters/mid/back.svg",
  29964. extra: 519 / 487,
  29965. bottom: 7 / 526
  29966. }
  29967. },
  29968. stuck: {
  29969. height: math.unit(2.2, "meters"),
  29970. name: "Stuck",
  29971. image: {
  29972. source: "./media/characters/mid/stuck.svg",
  29973. extra: 1951 / 1869,
  29974. bottom: 88 / 2039
  29975. }
  29976. }
  29977. },
  29978. [
  29979. {
  29980. name: "Normal",
  29981. height: math.unit(4, "meters"),
  29982. default: true
  29983. },
  29984. {
  29985. name: "Big",
  29986. height: math.unit(10, "meters")
  29987. },
  29988. {
  29989. name: "Macro",
  29990. height: math.unit(800, "meters")
  29991. },
  29992. {
  29993. name: "Megamacro",
  29994. height: math.unit(100, "km")
  29995. },
  29996. {
  29997. name: "Overgrown",
  29998. height: math.unit(1, "parsec")
  29999. },
  30000. ]
  30001. ))
  30002. characterMakers.push(() => makeCharacter(
  30003. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30004. {
  30005. front: {
  30006. height: math.unit(2.5, "meters"),
  30007. weight: math.unit(225, "kg"),
  30008. name: "Front",
  30009. image: {
  30010. source: "./media/characters/iris/front.svg",
  30011. extra: 3348 / 3251,
  30012. bottom: 205 / 3553
  30013. }
  30014. },
  30015. maw: {
  30016. height: math.unit(0.56, "meter"),
  30017. name: "Maw",
  30018. image: {
  30019. source: "./media/characters/iris/maw.svg"
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Mewter cat",
  30026. height: math.unit(1.2, "meters")
  30027. },
  30028. {
  30029. name: "Minimacro",
  30030. height: math.unit(2.5, "meters"),
  30031. default: true
  30032. },
  30033. {
  30034. name: "Macro",
  30035. height: math.unit(180, "meters")
  30036. },
  30037. {
  30038. name: "Megamacro",
  30039. height: math.unit(2746, "meters")
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(6, "feet"),
  30048. weight: math.unit(135, "lb"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/axel/front.svg",
  30052. extra: 908 / 908,
  30053. bottom: 58 / 966
  30054. }
  30055. },
  30056. side: {
  30057. height: math.unit(6, "feet"),
  30058. weight: math.unit(135, "lb"),
  30059. name: "Side",
  30060. image: {
  30061. source: "./media/characters/axel/side.svg",
  30062. extra: 958 / 958,
  30063. bottom: 11 / 969
  30064. }
  30065. },
  30066. back: {
  30067. height: math.unit(6, "feet"),
  30068. weight: math.unit(135, "lb"),
  30069. name: "Back",
  30070. image: {
  30071. source: "./media/characters/axel/back.svg",
  30072. extra: 887 / 887,
  30073. bottom: 34 / 921
  30074. }
  30075. },
  30076. head: {
  30077. height: math.unit(1.07, "feet"),
  30078. name: "Head",
  30079. image: {
  30080. source: "./media/characters/axel/head.svg"
  30081. }
  30082. },
  30083. beak: {
  30084. height: math.unit(1.4, "feet"),
  30085. name: "Beak",
  30086. image: {
  30087. source: "./media/characters/axel/beak.svg"
  30088. }
  30089. },
  30090. beakSide: {
  30091. height: math.unit(1.4, "feet"),
  30092. name: "Beak Side",
  30093. image: {
  30094. source: "./media/characters/axel/beak-side.svg"
  30095. }
  30096. },
  30097. sheath: {
  30098. height: math.unit(0.5, "feet"),
  30099. name: "Sheath",
  30100. image: {
  30101. source: "./media/characters/axel/sheath.svg"
  30102. }
  30103. },
  30104. dick: {
  30105. height: math.unit(0.98, "feet"),
  30106. name: "Dick",
  30107. image: {
  30108. source: "./media/characters/axel/dick.svg"
  30109. }
  30110. },
  30111. },
  30112. [
  30113. {
  30114. name: "Macro",
  30115. height: math.unit(68, "meters"),
  30116. default: true
  30117. },
  30118. ]
  30119. ))
  30120. characterMakers.push(() => makeCharacter(
  30121. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30122. {
  30123. front: {
  30124. height: math.unit(3.5, "meters"),
  30125. weight: math.unit(1200, "kg"),
  30126. name: "Front",
  30127. image: {
  30128. source: "./media/characters/joanna/front.svg",
  30129. extra: 1596 / 1488,
  30130. bottom: 29 / 1625
  30131. }
  30132. },
  30133. back: {
  30134. height: math.unit(3.5, "meters"),
  30135. weight: math.unit(1200, "kg"),
  30136. name: "Back",
  30137. image: {
  30138. source: "./media/characters/joanna/back.svg",
  30139. extra: 1594 / 1495,
  30140. bottom: 26 / 1620
  30141. }
  30142. },
  30143. frontShorts: {
  30144. height: math.unit(3.5, "meters"),
  30145. weight: math.unit(1200, "kg"),
  30146. name: "Front (Shorts)",
  30147. image: {
  30148. source: "./media/characters/joanna/front-shorts.svg",
  30149. extra: 1596 / 1488,
  30150. bottom: 29 / 1625
  30151. }
  30152. },
  30153. frontBiker: {
  30154. height: math.unit(3.5, "meters"),
  30155. weight: math.unit(1200, "kg"),
  30156. name: "Front (Biker)",
  30157. image: {
  30158. source: "./media/characters/joanna/front-biker.svg",
  30159. extra: 1596 / 1488,
  30160. bottom: 29 / 1625
  30161. }
  30162. },
  30163. backBiker: {
  30164. height: math.unit(3.5, "meters"),
  30165. weight: math.unit(1200, "kg"),
  30166. name: "Back (Biker)",
  30167. image: {
  30168. source: "./media/characters/joanna/back-biker.svg",
  30169. extra: 1594 / 1495,
  30170. bottom: 88 / 1682
  30171. }
  30172. },
  30173. bikeLeft: {
  30174. height: math.unit(2.4, "meters"),
  30175. weight: math.unit(1600, "kg"),
  30176. name: "Bike (Left)",
  30177. image: {
  30178. source: "./media/characters/joanna/bike-left.svg",
  30179. extra: 720 / 720,
  30180. bottom: 8 / 728
  30181. }
  30182. },
  30183. bikeRight: {
  30184. height: math.unit(2.4, "meters"),
  30185. weight: math.unit(1600, "kg"),
  30186. name: "Bike (Right)",
  30187. image: {
  30188. source: "./media/characters/joanna/bike-right.svg",
  30189. extra: 720 / 720,
  30190. bottom: 8 / 728
  30191. }
  30192. },
  30193. },
  30194. [
  30195. {
  30196. name: "Incognito",
  30197. height: math.unit(3.5, "meters")
  30198. },
  30199. {
  30200. name: "Casual Big",
  30201. height: math.unit(200, "meters")
  30202. },
  30203. {
  30204. name: "Macro",
  30205. height: math.unit(600, "meters")
  30206. },
  30207. {
  30208. name: "Original",
  30209. height: math.unit(20, "km"),
  30210. default: true
  30211. },
  30212. {
  30213. name: "Giga",
  30214. height: math.unit(400, "km")
  30215. },
  30216. {
  30217. name: "Lounging",
  30218. height: math.unit(1500, "km")
  30219. },
  30220. {
  30221. name: "Planetary",
  30222. height: math.unit(200000, "km")
  30223. },
  30224. ]
  30225. ))
  30226. characterMakers.push(() => makeCharacter(
  30227. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30228. {
  30229. front: {
  30230. height: math.unit(6, "feet"),
  30231. weight: math.unit(150, "lb"),
  30232. name: "Front",
  30233. image: {
  30234. source: "./media/characters/hugo-sigil/front.svg",
  30235. extra: 522 / 500,
  30236. bottom: 2 / 524
  30237. }
  30238. },
  30239. back: {
  30240. height: math.unit(6, "feet"),
  30241. weight: math.unit(150, "lb"),
  30242. name: "Back",
  30243. image: {
  30244. source: "./media/characters/hugo-sigil/back.svg",
  30245. extra: 519 / 495,
  30246. bottom: 5 / 524
  30247. }
  30248. },
  30249. maw: {
  30250. height: math.unit(1.4, "feet"),
  30251. weight: math.unit(150, "lb"),
  30252. name: "Maw",
  30253. image: {
  30254. source: "./media/characters/hugo-sigil/maw.svg"
  30255. }
  30256. },
  30257. feet: {
  30258. height: math.unit(1.56, "feet"),
  30259. weight: math.unit(150, "lb"),
  30260. name: "Feet",
  30261. image: {
  30262. source: "./media/characters/hugo-sigil/feet.svg",
  30263. extra: 177 / 177,
  30264. bottom: 12 / 189
  30265. }
  30266. },
  30267. },
  30268. [
  30269. {
  30270. name: "Normal",
  30271. height: math.unit(6, "feet")
  30272. },
  30273. {
  30274. name: "Macro",
  30275. height: math.unit(200, "feet"),
  30276. default: true
  30277. },
  30278. ]
  30279. ))
  30280. characterMakers.push(() => makeCharacter(
  30281. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30282. {
  30283. front: {
  30284. height: math.unit(6, "feet"),
  30285. weight: math.unit(150, "lb"),
  30286. name: "Front",
  30287. image: {
  30288. source: "./media/characters/peri/front.svg",
  30289. extra: 2354 / 2233,
  30290. bottom: 49 / 2403
  30291. }
  30292. },
  30293. },
  30294. [
  30295. {
  30296. name: "Really Small",
  30297. height: math.unit(1, "nm")
  30298. },
  30299. {
  30300. name: "Micro",
  30301. height: math.unit(4, "inches")
  30302. },
  30303. {
  30304. name: "Normal",
  30305. height: math.unit(7, "inches"),
  30306. default: true
  30307. },
  30308. {
  30309. name: "Macro",
  30310. height: math.unit(400, "feet")
  30311. },
  30312. {
  30313. name: "Megamacro",
  30314. height: math.unit(100, "miles")
  30315. },
  30316. ]
  30317. ))
  30318. characterMakers.push(() => makeCharacter(
  30319. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30320. {
  30321. frontSlim: {
  30322. height: math.unit(7, "feet"),
  30323. name: "Front (Slim)",
  30324. image: {
  30325. source: "./media/characters/issilora/front-slim.svg",
  30326. extra: 529 / 449,
  30327. bottom: 53 / 582
  30328. }
  30329. },
  30330. sideSlim: {
  30331. height: math.unit(7, "feet"),
  30332. name: "Side (Slim)",
  30333. image: {
  30334. source: "./media/characters/issilora/side-slim.svg",
  30335. extra: 570 / 480,
  30336. bottom: 30 / 600
  30337. }
  30338. },
  30339. backSlim: {
  30340. height: math.unit(7, "feet"),
  30341. name: "Back (Slim)",
  30342. image: {
  30343. source: "./media/characters/issilora/back-slim.svg",
  30344. extra: 537 / 455,
  30345. bottom: 46 / 583
  30346. }
  30347. },
  30348. frontBuff: {
  30349. height: math.unit(7, "feet"),
  30350. name: "Front (Buff)",
  30351. image: {
  30352. source: "./media/characters/issilora/front-buff.svg",
  30353. extra: 2310 / 2035,
  30354. bottom: 335 / 2645
  30355. }
  30356. },
  30357. head: {
  30358. height: math.unit(1.94, "feet"),
  30359. name: "Head",
  30360. image: {
  30361. source: "./media/characters/issilora/head.svg"
  30362. }
  30363. },
  30364. },
  30365. [
  30366. {
  30367. name: "Minimum",
  30368. height: math.unit(7, "feet")
  30369. },
  30370. {
  30371. name: "Comfortable",
  30372. height: math.unit(17, "feet")
  30373. },
  30374. {
  30375. name: "Fun Size",
  30376. height: math.unit(47, "feet")
  30377. },
  30378. {
  30379. name: "Natural Macro",
  30380. height: math.unit(137, "feet"),
  30381. default: true
  30382. },
  30383. {
  30384. name: "Maximum Kaiju",
  30385. height: math.unit(397, "feet")
  30386. },
  30387. ]
  30388. ))
  30389. characterMakers.push(() => makeCharacter(
  30390. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30391. {
  30392. front: {
  30393. height: math.unit(50 + 9/12, "feet"),
  30394. weight: math.unit(32.8, "tons"),
  30395. name: "Front",
  30396. image: {
  30397. source: "./media/characters/irb'iiritaahn/front.svg",
  30398. extra: 1878/1826,
  30399. bottom: 326/2204
  30400. }
  30401. },
  30402. back: {
  30403. height: math.unit(50 + 9/12, "feet"),
  30404. weight: math.unit(32.8, "tons"),
  30405. name: "Back",
  30406. image: {
  30407. source: "./media/characters/irb'iiritaahn/back.svg",
  30408. extra: 2052/2018,
  30409. bottom: 152/2204
  30410. }
  30411. },
  30412. head: {
  30413. height: math.unit(12.86, "feet"),
  30414. name: "Head",
  30415. image: {
  30416. source: "./media/characters/irb'iiritaahn/head.svg"
  30417. }
  30418. },
  30419. maw: {
  30420. height: math.unit(9.66, "feet"),
  30421. name: "Maw",
  30422. image: {
  30423. source: "./media/characters/irb'iiritaahn/maw.svg"
  30424. }
  30425. },
  30426. frontDick: {
  30427. height: math.unit(8.78461, "feet"),
  30428. name: "Front Dick",
  30429. image: {
  30430. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30431. }
  30432. },
  30433. rearDick: {
  30434. height: math.unit(8.78461, "feet"),
  30435. name: "Rear Dick",
  30436. image: {
  30437. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30438. }
  30439. },
  30440. rearDickUnfolded: {
  30441. height: math.unit(8.78, "feet"),
  30442. name: "Rear Dick (Unfolded)",
  30443. image: {
  30444. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30445. }
  30446. },
  30447. wings: {
  30448. height: math.unit(43, "feet"),
  30449. name: "Wings",
  30450. image: {
  30451. source: "./media/characters/irb'iiritaahn/wings.svg"
  30452. }
  30453. },
  30454. },
  30455. [
  30456. {
  30457. name: "Macro",
  30458. height: math.unit(50 + 9/12, "feet"),
  30459. default: true
  30460. },
  30461. ]
  30462. ))
  30463. characterMakers.push(() => makeCharacter(
  30464. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30465. {
  30466. front: {
  30467. height: math.unit(205, "cm"),
  30468. weight: math.unit(102, "kg"),
  30469. name: "Front",
  30470. image: {
  30471. source: "./media/characters/irbisgreif/front.svg",
  30472. extra: 785/706,
  30473. bottom: 13/798
  30474. }
  30475. },
  30476. back: {
  30477. height: math.unit(205, "cm"),
  30478. weight: math.unit(102, "kg"),
  30479. name: "Back",
  30480. image: {
  30481. source: "./media/characters/irbisgreif/back.svg",
  30482. extra: 713/701,
  30483. bottom: 26/739
  30484. }
  30485. },
  30486. frontDressed: {
  30487. height: math.unit(216, "cm"),
  30488. weight: math.unit(102, "kg"),
  30489. name: "Front-dressed",
  30490. image: {
  30491. source: "./media/characters/irbisgreif/front-dressed.svg",
  30492. extra: 902/776,
  30493. bottom: 14/916
  30494. }
  30495. },
  30496. sideDressed: {
  30497. height: math.unit(195, "cm"),
  30498. weight: math.unit(102, "kg"),
  30499. name: "Side-dressed",
  30500. image: {
  30501. source: "./media/characters/irbisgreif/side-dressed.svg",
  30502. extra: 788/688,
  30503. bottom: 21/809
  30504. }
  30505. },
  30506. backDressed: {
  30507. height: math.unit(216, "cm"),
  30508. weight: math.unit(102, "kg"),
  30509. name: "Back-dressed",
  30510. image: {
  30511. source: "./media/characters/irbisgreif/back-dressed.svg",
  30512. extra: 901/783,
  30513. bottom: 10/911
  30514. }
  30515. },
  30516. dick: {
  30517. height: math.unit(0.49, "feet"),
  30518. name: "Dick",
  30519. image: {
  30520. source: "./media/characters/irbisgreif/dick.svg"
  30521. }
  30522. },
  30523. wingTop: {
  30524. height: math.unit(1.93 , "feet"),
  30525. name: "Wing-top",
  30526. image: {
  30527. source: "./media/characters/irbisgreif/wing-top.svg"
  30528. }
  30529. },
  30530. wingBottom: {
  30531. height: math.unit(1.93 , "feet"),
  30532. name: "Wing-bottom",
  30533. image: {
  30534. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30535. }
  30536. },
  30537. },
  30538. [
  30539. {
  30540. name: "Normal",
  30541. height: math.unit(216, "cm"),
  30542. default: true
  30543. },
  30544. ]
  30545. ))
  30546. characterMakers.push(() => makeCharacter(
  30547. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30548. {
  30549. front: {
  30550. height: math.unit(6, "feet"),
  30551. weight: math.unit(150, "lb"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/pride/front.svg",
  30555. extra: 1299/1230,
  30556. bottom: 18/1317
  30557. }
  30558. },
  30559. },
  30560. [
  30561. {
  30562. name: "Normal",
  30563. height: math.unit(7, "feet")
  30564. },
  30565. {
  30566. name: "Mini-macro",
  30567. height: math.unit(11, "feet")
  30568. },
  30569. {
  30570. name: "Macro",
  30571. height: math.unit(15, "meters"),
  30572. default: true
  30573. },
  30574. {
  30575. name: "Macro+",
  30576. height: math.unit(40, "meters")
  30577. },
  30578. ]
  30579. ))
  30580. characterMakers.push(() => makeCharacter(
  30581. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30582. {
  30583. front: {
  30584. height: math.unit(4 + 2 / 12, "feet"),
  30585. weight: math.unit(95, "lb"),
  30586. name: "Front",
  30587. image: {
  30588. source: "./media/characters/vaelophis-nyx/front.svg",
  30589. extra: 2532/2330,
  30590. bottom: 0/2532
  30591. }
  30592. },
  30593. back: {
  30594. height: math.unit(4 + 2 / 12, "feet"),
  30595. weight: math.unit(95, "lb"),
  30596. name: "Back",
  30597. image: {
  30598. source: "./media/characters/vaelophis-nyx/back.svg",
  30599. extra: 2484/2361,
  30600. bottom: 0/2484
  30601. }
  30602. },
  30603. feralSide: {
  30604. height: math.unit(2 + 1/12, "feet"),
  30605. weight: math.unit(20, "lb"),
  30606. name: "Feral (Side)",
  30607. image: {
  30608. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30609. extra: 1721/1581,
  30610. bottom: 70/1791
  30611. }
  30612. },
  30613. feralLazing: {
  30614. height: math.unit(1.08, "feet"),
  30615. weight: math.unit(20, "lb"),
  30616. name: "Feral (Lazing)",
  30617. image: {
  30618. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30619. extra: 822/822,
  30620. bottom: 248/1070
  30621. }
  30622. },
  30623. ear: {
  30624. height: math.unit(0.416, "feet"),
  30625. name: "Ear",
  30626. image: {
  30627. source: "./media/characters/vaelophis-nyx/ear.svg"
  30628. }
  30629. },
  30630. eye: {
  30631. height: math.unit(0.0748, "feet"),
  30632. name: "Eye",
  30633. image: {
  30634. source: "./media/characters/vaelophis-nyx/eye.svg"
  30635. }
  30636. },
  30637. mouth: {
  30638. height: math.unit(0.378, "feet"),
  30639. name: "Mouth",
  30640. image: {
  30641. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30642. }
  30643. },
  30644. spade: {
  30645. height: math.unit(0.55, "feet"),
  30646. name: "Spade",
  30647. image: {
  30648. source: "./media/characters/vaelophis-nyx/spade.svg"
  30649. }
  30650. },
  30651. },
  30652. [
  30653. {
  30654. name: "Normal",
  30655. height: math.unit(4 + 2/12, "feet"),
  30656. default: true
  30657. },
  30658. ]
  30659. ))
  30660. characterMakers.push(() => makeCharacter(
  30661. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30662. {
  30663. front: {
  30664. height: math.unit(7, "feet"),
  30665. weight: math.unit(231, "lb"),
  30666. name: "Front",
  30667. image: {
  30668. source: "./media/characters/flux/front.svg",
  30669. extra: 919/871,
  30670. bottom: 0/919
  30671. }
  30672. },
  30673. back: {
  30674. height: math.unit(7, "feet"),
  30675. weight: math.unit(231, "lb"),
  30676. name: "Back",
  30677. image: {
  30678. source: "./media/characters/flux/back.svg",
  30679. extra: 1040/992,
  30680. bottom: 0/1040
  30681. }
  30682. },
  30683. frontDressed: {
  30684. height: math.unit(7, "feet"),
  30685. weight: math.unit(231, "lb"),
  30686. name: "Front (Dressed)",
  30687. image: {
  30688. source: "./media/characters/flux/front-dressed.svg",
  30689. extra: 919/871,
  30690. bottom: 0/919
  30691. }
  30692. },
  30693. feralSide: {
  30694. height: math.unit(5, "feet"),
  30695. weight: math.unit(150, "lb"),
  30696. name: "Feral (Side)",
  30697. image: {
  30698. source: "./media/characters/flux/feral-side.svg",
  30699. extra: 598/528,
  30700. bottom: 28/626
  30701. }
  30702. },
  30703. head: {
  30704. height: math.unit(1.585, "feet"),
  30705. name: "Head",
  30706. image: {
  30707. source: "./media/characters/flux/head.svg"
  30708. }
  30709. },
  30710. headSide: {
  30711. height: math.unit(1.74, "feet"),
  30712. name: "Head (Side)",
  30713. image: {
  30714. source: "./media/characters/flux/head-side.svg"
  30715. }
  30716. },
  30717. headSideFire: {
  30718. height: math.unit(1.76, "feet"),
  30719. name: "Head (Side, Fire)",
  30720. image: {
  30721. source: "./media/characters/flux/head-side-fire.svg"
  30722. }
  30723. },
  30724. },
  30725. [
  30726. {
  30727. name: "Normal",
  30728. height: math.unit(7, "feet"),
  30729. default: true
  30730. },
  30731. ]
  30732. ))
  30733. characterMakers.push(() => makeCharacter(
  30734. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30735. {
  30736. front: {
  30737. height: math.unit(9, "feet"),
  30738. weight: math.unit(1012, "lb"),
  30739. name: "Front",
  30740. image: {
  30741. source: "./media/characters/ulfra-lupae/front.svg",
  30742. extra: 1083/1011,
  30743. bottom: 67/1150
  30744. }
  30745. },
  30746. },
  30747. [
  30748. {
  30749. name: "Micro",
  30750. height: math.unit(6, "inches")
  30751. },
  30752. {
  30753. name: "Socializing",
  30754. height: math.unit(6 + 5/12, "feet")
  30755. },
  30756. {
  30757. name: "Normal",
  30758. height: math.unit(9, "feet"),
  30759. default: true
  30760. },
  30761. {
  30762. name: "Macro",
  30763. height: math.unit(150, "feet")
  30764. },
  30765. ]
  30766. ))
  30767. characterMakers.push(() => makeCharacter(
  30768. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30769. {
  30770. front: {
  30771. height: math.unit(5 + 2/12, "feet"),
  30772. weight: math.unit(120, "lb"),
  30773. name: "Front",
  30774. image: {
  30775. source: "./media/characters/timber/front.svg",
  30776. extra: 2814/2705,
  30777. bottom: 181/2995
  30778. }
  30779. },
  30780. },
  30781. [
  30782. {
  30783. name: "Normal",
  30784. height: math.unit(5 + 2/12, "feet"),
  30785. default: true
  30786. },
  30787. ]
  30788. ))
  30789. characterMakers.push(() => makeCharacter(
  30790. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30791. {
  30792. front: {
  30793. height: math.unit(5 + 7/12, "feet"),
  30794. weight: math.unit(220, "lb"),
  30795. name: "Front",
  30796. image: {
  30797. source: "./media/characters/nicki/front.svg",
  30798. extra: 453/419,
  30799. bottom: 7/460
  30800. }
  30801. },
  30802. frontAlt: {
  30803. height: math.unit(5 + 7/12, "feet"),
  30804. weight: math.unit(220, "lb"),
  30805. name: "Front-alt",
  30806. image: {
  30807. source: "./media/characters/nicki/front-alt.svg",
  30808. extra: 435/411,
  30809. bottom: 12/447
  30810. }
  30811. },
  30812. back: {
  30813. height: math.unit(5 + 7/12, "feet"),
  30814. weight: math.unit(220, "lb"),
  30815. name: "Back",
  30816. image: {
  30817. source: "./media/characters/nicki/back.svg",
  30818. extra: 440/413,
  30819. bottom: 19/459
  30820. }
  30821. },
  30822. taur: {
  30823. height: math.unit(7 + 6/12, "feet"),
  30824. weight: math.unit(700, "lb"),
  30825. name: "Taur",
  30826. image: {
  30827. source: "./media/characters/nicki/taur.svg",
  30828. extra: 975/773,
  30829. bottom: 0/975
  30830. }
  30831. },
  30832. frontNsfw: {
  30833. height: math.unit(5 + 7/12, "feet"),
  30834. weight: math.unit(220, "lb"),
  30835. name: "Front (NSFW)",
  30836. image: {
  30837. source: "./media/characters/nicki/front-nsfw.svg",
  30838. extra: 453/419,
  30839. bottom: 7/460
  30840. }
  30841. },
  30842. frontNsfwAlt: {
  30843. height: math.unit(5 + 7/12, "feet"),
  30844. weight: math.unit(220, "lb"),
  30845. name: "Front (Alt, NSFW)",
  30846. image: {
  30847. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30848. extra: 435/411,
  30849. bottom: 12/447
  30850. }
  30851. },
  30852. backNsfw: {
  30853. height: math.unit(5 + 7/12, "feet"),
  30854. weight: math.unit(220, "lb"),
  30855. name: "Back (NSFW)",
  30856. image: {
  30857. source: "./media/characters/nicki/back-nsfw.svg",
  30858. extra: 440/413,
  30859. bottom: 19/459
  30860. }
  30861. },
  30862. head: {
  30863. height: math.unit(2.1, "feet"),
  30864. name: "Head",
  30865. image: {
  30866. source: "./media/characters/nicki/head.svg"
  30867. }
  30868. },
  30869. paw: {
  30870. height: math.unit(1.88, "feet"),
  30871. name: "Paw",
  30872. image: {
  30873. source: "./media/characters/nicki/paw.svg"
  30874. }
  30875. },
  30876. },
  30877. [
  30878. {
  30879. name: "Normal",
  30880. height: math.unit(5 + 7/12, "feet"),
  30881. default: true
  30882. },
  30883. ]
  30884. ))
  30885. characterMakers.push(() => makeCharacter(
  30886. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30887. {
  30888. front: {
  30889. height: math.unit(7 + 10/12, "feet"),
  30890. weight: math.unit(3.5, "tons"),
  30891. name: "Front",
  30892. image: {
  30893. source: "./media/characters/lee/front.svg",
  30894. extra: 1773/1615,
  30895. bottom: 86/1859
  30896. }
  30897. },
  30898. hand: {
  30899. height: math.unit(1.78, "feet"),
  30900. name: "Hand",
  30901. image: {
  30902. source: "./media/characters/lee/hand.svg"
  30903. }
  30904. },
  30905. maw: {
  30906. height: math.unit(1.18, "feet"),
  30907. name: "Maw",
  30908. image: {
  30909. source: "./media/characters/lee/maw.svg"
  30910. }
  30911. },
  30912. },
  30913. [
  30914. {
  30915. name: "Normal",
  30916. height: math.unit(7 + 10/12, "feet"),
  30917. default: true
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30923. {
  30924. front: {
  30925. height: math.unit(9, "feet"),
  30926. name: "Front",
  30927. image: {
  30928. source: "./media/characters/guti/front.svg",
  30929. extra: 4551/4355,
  30930. bottom: 123/4674
  30931. }
  30932. },
  30933. tongue: {
  30934. height: math.unit(1, "feet"),
  30935. name: "Tongue",
  30936. image: {
  30937. source: "./media/characters/guti/tongue.svg"
  30938. }
  30939. },
  30940. paw: {
  30941. height: math.unit(1.18, "feet"),
  30942. name: "Paw",
  30943. image: {
  30944. source: "./media/characters/guti/paw.svg"
  30945. }
  30946. },
  30947. },
  30948. [
  30949. {
  30950. name: "Normal",
  30951. height: math.unit(9, "feet"),
  30952. default: true
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30958. {
  30959. side: {
  30960. height: math.unit(5, "meters"),
  30961. name: "Side",
  30962. image: {
  30963. source: "./media/characters/vesper/side.svg",
  30964. extra: 1605/1518,
  30965. bottom: 0/1605
  30966. }
  30967. },
  30968. },
  30969. [
  30970. {
  30971. name: "Small",
  30972. height: math.unit(5, "meters")
  30973. },
  30974. {
  30975. name: "Sage",
  30976. height: math.unit(100, "meters"),
  30977. default: true
  30978. },
  30979. {
  30980. name: "Fun Size",
  30981. height: math.unit(600, "meters")
  30982. },
  30983. {
  30984. name: "Goddess",
  30985. height: math.unit(20000, "km")
  30986. },
  30987. {
  30988. name: "Maximum",
  30989. height: math.unit(5, "galaxies")
  30990. },
  30991. ]
  30992. ))
  30993. characterMakers.push(() => makeCharacter(
  30994. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30995. {
  30996. front: {
  30997. height: math.unit(6 + 3/12, "feet"),
  30998. weight: math.unit(190, "lb"),
  30999. name: "Front",
  31000. image: {
  31001. source: "./media/characters/gawain/front.svg",
  31002. extra: 2222/2139,
  31003. bottom: 90/2312
  31004. }
  31005. },
  31006. back: {
  31007. height: math.unit(6 + 3/12, "feet"),
  31008. weight: math.unit(190, "lb"),
  31009. name: "Back",
  31010. image: {
  31011. source: "./media/characters/gawain/back.svg",
  31012. extra: 2199/2111,
  31013. bottom: 73/2272
  31014. }
  31015. },
  31016. },
  31017. [
  31018. {
  31019. name: "Normal",
  31020. height: math.unit(6 + 3/12, "feet"),
  31021. default: true
  31022. },
  31023. ]
  31024. ))
  31025. characterMakers.push(() => makeCharacter(
  31026. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31027. {
  31028. side: {
  31029. height: math.unit(3.5, "meters"),
  31030. weight: math.unit(16000, "lb"),
  31031. name: "Side",
  31032. image: {
  31033. source: "./media/characters/dascalti/side.svg",
  31034. extra: 392/273,
  31035. bottom: 47/439
  31036. }
  31037. },
  31038. breath: {
  31039. height: math.unit(7.4, "feet"),
  31040. name: "Breath",
  31041. image: {
  31042. source: "./media/characters/dascalti/breath.svg"
  31043. }
  31044. },
  31045. fed: {
  31046. height: math.unit(3.6, "meters"),
  31047. weight: math.unit(16000, "lb"),
  31048. name: "Fed",
  31049. image: {
  31050. source: "./media/characters/dascalti/fed.svg",
  31051. extra: 1419/820,
  31052. bottom: 95/1514
  31053. }
  31054. },
  31055. },
  31056. [
  31057. {
  31058. name: "Normal",
  31059. height: math.unit(3.5, "meters"),
  31060. default: true
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31066. {
  31067. front: {
  31068. height: math.unit(3 + 5/12, "feet"),
  31069. name: "Front",
  31070. image: {
  31071. source: "./media/characters/mauve/front.svg",
  31072. extra: 1126/1033,
  31073. bottom: 65/1191
  31074. }
  31075. },
  31076. side: {
  31077. height: math.unit(3 + 5/12, "feet"),
  31078. name: "Side",
  31079. image: {
  31080. source: "./media/characters/mauve/side.svg",
  31081. extra: 1089/1001,
  31082. bottom: 29/1118
  31083. }
  31084. },
  31085. back: {
  31086. height: math.unit(3 + 5/12, "feet"),
  31087. name: "Back",
  31088. image: {
  31089. source: "./media/characters/mauve/back.svg",
  31090. extra: 1173/1053,
  31091. bottom: 109/1282
  31092. }
  31093. },
  31094. },
  31095. [
  31096. {
  31097. name: "Normal",
  31098. height: math.unit(3 + 5/12, "feet"),
  31099. default: true
  31100. },
  31101. ]
  31102. ))
  31103. characterMakers.push(() => makeCharacter(
  31104. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31105. {
  31106. front: {
  31107. height: math.unit(6 + 3/12, "feet"),
  31108. weight: math.unit(430, "lb"),
  31109. name: "Front",
  31110. image: {
  31111. source: "./media/characters/carlos/front.svg",
  31112. extra: 1964/1913,
  31113. bottom: 70/2034
  31114. }
  31115. },
  31116. },
  31117. [
  31118. {
  31119. name: "Normal",
  31120. height: math.unit(6 + 3/12, "feet"),
  31121. default: true
  31122. },
  31123. ]
  31124. ))
  31125. characterMakers.push(() => makeCharacter(
  31126. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31127. {
  31128. back: {
  31129. height: math.unit(5 + 10/12, "feet"),
  31130. weight: math.unit(200, "lb"),
  31131. name: "Back",
  31132. image: {
  31133. source: "./media/characters/jax/back.svg",
  31134. extra: 764/739,
  31135. bottom: 25/789
  31136. }
  31137. },
  31138. },
  31139. [
  31140. {
  31141. name: "Normal",
  31142. height: math.unit(5 + 10/12, "feet"),
  31143. default: true
  31144. },
  31145. ]
  31146. ))
  31147. characterMakers.push(() => makeCharacter(
  31148. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31149. {
  31150. front: {
  31151. height: math.unit(8, "feet"),
  31152. weight: math.unit(250, "lb"),
  31153. name: "Front",
  31154. image: {
  31155. source: "./media/characters/eikthynir/front.svg",
  31156. extra: 1332/1166,
  31157. bottom: 82/1414
  31158. }
  31159. },
  31160. back: {
  31161. height: math.unit(8, "feet"),
  31162. weight: math.unit(250, "lb"),
  31163. name: "Back",
  31164. image: {
  31165. source: "./media/characters/eikthynir/back.svg",
  31166. extra: 1342/1190,
  31167. bottom: 19/1361
  31168. }
  31169. },
  31170. dick: {
  31171. height: math.unit(2.35, "feet"),
  31172. name: "Dick",
  31173. image: {
  31174. source: "./media/characters/eikthynir/dick.svg"
  31175. }
  31176. },
  31177. },
  31178. [
  31179. {
  31180. name: "Normal",
  31181. height: math.unit(8, "feet"),
  31182. default: true
  31183. },
  31184. ]
  31185. ))
  31186. characterMakers.push(() => makeCharacter(
  31187. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31188. {
  31189. front: {
  31190. height: math.unit(99, "meters"),
  31191. weight: math.unit(13000, "tons"),
  31192. name: "Front",
  31193. image: {
  31194. source: "./media/characters/zlmos/front.svg",
  31195. extra: 2202/1992,
  31196. bottom: 315/2517
  31197. }
  31198. },
  31199. },
  31200. [
  31201. {
  31202. name: "Macro",
  31203. height: math.unit(99, "meters"),
  31204. default: true
  31205. },
  31206. ]
  31207. ))
  31208. characterMakers.push(() => makeCharacter(
  31209. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31210. {
  31211. front: {
  31212. height: math.unit(6 + 5/12, "feet"),
  31213. name: "Front",
  31214. image: {
  31215. source: "./media/characters/purri/front.svg",
  31216. extra: 1698/1610,
  31217. bottom: 32/1730
  31218. }
  31219. },
  31220. frontAlt: {
  31221. height: math.unit(6 + 5/12, "feet"),
  31222. name: "Front (Alt)",
  31223. image: {
  31224. source: "./media/characters/purri/front-alt.svg",
  31225. extra: 450/420,
  31226. bottom: 26/476
  31227. }
  31228. },
  31229. boots: {
  31230. height: math.unit(5.5, "feet"),
  31231. name: "Boots",
  31232. image: {
  31233. source: "./media/characters/purri/boots.svg",
  31234. extra: 905/853,
  31235. bottom: 18/923
  31236. }
  31237. },
  31238. lying: {
  31239. height: math.unit(2, "feet"),
  31240. name: "Lying",
  31241. image: {
  31242. source: "./media/characters/purri/lying.svg",
  31243. extra: 940/843,
  31244. bottom: 146/1086
  31245. }
  31246. },
  31247. devious: {
  31248. height: math.unit(1.77, "feet"),
  31249. name: "Devious",
  31250. image: {
  31251. source: "./media/characters/purri/devious.svg",
  31252. extra: 1440/1155,
  31253. bottom: 147/1587
  31254. }
  31255. },
  31256. bean: {
  31257. height: math.unit(1.94, "feet"),
  31258. name: "Bean",
  31259. image: {
  31260. source: "./media/characters/purri/bean.svg"
  31261. }
  31262. },
  31263. },
  31264. [
  31265. {
  31266. name: "Micro",
  31267. height: math.unit(1, "mm")
  31268. },
  31269. {
  31270. name: "Normal",
  31271. height: math.unit(6 + 5/12, "feet"),
  31272. default: true
  31273. },
  31274. {
  31275. name: "Macro :3c",
  31276. height: math.unit(2, "miles")
  31277. },
  31278. ]
  31279. ))
  31280. characterMakers.push(() => makeCharacter(
  31281. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31282. {
  31283. front: {
  31284. height: math.unit(6 + 2/12, "feet"),
  31285. weight: math.unit(250, "lb"),
  31286. name: "Front",
  31287. image: {
  31288. source: "./media/characters/moonlight/front.svg",
  31289. extra: 1044/908,
  31290. bottom: 56/1100
  31291. }
  31292. },
  31293. feral: {
  31294. height: math.unit(3 + 1/12, "feet"),
  31295. weight: math.unit(50, "kg"),
  31296. name: "Feral",
  31297. image: {
  31298. source: "./media/characters/moonlight/feral.svg",
  31299. extra: 3705/2791,
  31300. bottom: 145/3850
  31301. }
  31302. },
  31303. paw: {
  31304. height: math.unit(1, "feet"),
  31305. name: "Paw",
  31306. image: {
  31307. source: "./media/characters/moonlight/paw.svg"
  31308. }
  31309. },
  31310. paws: {
  31311. height: math.unit(0.98, "feet"),
  31312. name: "Paws",
  31313. image: {
  31314. source: "./media/characters/moonlight/paws.svg",
  31315. extra: 939/939,
  31316. bottom: 50/989
  31317. }
  31318. },
  31319. mouth: {
  31320. height: math.unit(0.48, "feet"),
  31321. name: "Mouth",
  31322. image: {
  31323. source: "./media/characters/moonlight/mouth.svg"
  31324. }
  31325. },
  31326. dick: {
  31327. height: math.unit(1.46, "feet"),
  31328. name: "Dick",
  31329. image: {
  31330. source: "./media/characters/moonlight/dick.svg"
  31331. }
  31332. },
  31333. },
  31334. [
  31335. {
  31336. name: "Normal",
  31337. height: math.unit(6 + 2/12, "feet"),
  31338. default: true
  31339. },
  31340. {
  31341. name: "Macro",
  31342. height: math.unit(300, "feet")
  31343. },
  31344. {
  31345. name: "Macro+",
  31346. height: math.unit(1, "mile")
  31347. },
  31348. {
  31349. name: "Mt. Moon",
  31350. height: math.unit(5, "miles")
  31351. },
  31352. {
  31353. name: "Megamacro",
  31354. height: math.unit(15, "miles")
  31355. },
  31356. ]
  31357. ))
  31358. characterMakers.push(() => makeCharacter(
  31359. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31360. {
  31361. back: {
  31362. height: math.unit(6, "feet"),
  31363. weight: math.unit(150, "lb"),
  31364. name: "Back",
  31365. image: {
  31366. source: "./media/characters/sylen/back.svg",
  31367. extra: 1335/1273,
  31368. bottom: 107/1442
  31369. }
  31370. },
  31371. },
  31372. [
  31373. {
  31374. name: "Normal",
  31375. height: math.unit(5 + 5/12, "feet")
  31376. },
  31377. {
  31378. name: "Megamacro",
  31379. height: math.unit(3, "miles"),
  31380. default: true
  31381. },
  31382. ]
  31383. ))
  31384. characterMakers.push(() => makeCharacter(
  31385. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31386. {
  31387. front: {
  31388. height: math.unit(6, "feet"),
  31389. weight: math.unit(190, "lb"),
  31390. name: "Front",
  31391. image: {
  31392. source: "./media/characters/huttser/front.svg",
  31393. extra: 1152/1058,
  31394. bottom: 23/1175
  31395. }
  31396. },
  31397. side: {
  31398. height: math.unit(6, "feet"),
  31399. weight: math.unit(190, "lb"),
  31400. name: "Side",
  31401. image: {
  31402. source: "./media/characters/huttser/side.svg",
  31403. extra: 1174/1065,
  31404. bottom: 18/1192
  31405. }
  31406. },
  31407. back: {
  31408. height: math.unit(6, "feet"),
  31409. weight: math.unit(190, "lb"),
  31410. name: "Back",
  31411. image: {
  31412. source: "./media/characters/huttser/back.svg",
  31413. extra: 1158/1056,
  31414. bottom: 12/1170
  31415. }
  31416. },
  31417. },
  31418. [
  31419. ]
  31420. ))
  31421. characterMakers.push(() => makeCharacter(
  31422. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31423. {
  31424. side: {
  31425. height: math.unit(12 + 9/12, "feet"),
  31426. weight: math.unit(15000, "lb"),
  31427. name: "Side",
  31428. image: {
  31429. source: "./media/characters/faan/side.svg",
  31430. extra: 2747/2697,
  31431. bottom: 0/2747
  31432. }
  31433. },
  31434. front: {
  31435. height: math.unit(12 + 9/12, "feet"),
  31436. weight: math.unit(15000, "lb"),
  31437. name: "Front",
  31438. image: {
  31439. source: "./media/characters/faan/front.svg",
  31440. extra: 607/571,
  31441. bottom: 24/631
  31442. }
  31443. },
  31444. head: {
  31445. height: math.unit(2.85, "feet"),
  31446. name: "Head",
  31447. image: {
  31448. source: "./media/characters/faan/head.svg"
  31449. }
  31450. },
  31451. headAlt: {
  31452. height: math.unit(3.13, "feet"),
  31453. name: "Head-alt",
  31454. image: {
  31455. source: "./media/characters/faan/head-alt.svg"
  31456. }
  31457. },
  31458. },
  31459. [
  31460. {
  31461. name: "Normal",
  31462. height: math.unit(12 + 9/12, "feet"),
  31463. default: true
  31464. },
  31465. ]
  31466. ))
  31467. characterMakers.push(() => makeCharacter(
  31468. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31469. {
  31470. front: {
  31471. height: math.unit(6, "feet"),
  31472. weight: math.unit(300, "lb"),
  31473. name: "Front",
  31474. image: {
  31475. source: "./media/characters/tanio/front.svg",
  31476. extra: 711/673,
  31477. bottom: 25/736
  31478. }
  31479. },
  31480. },
  31481. [
  31482. {
  31483. name: "Normal",
  31484. height: math.unit(6, "feet"),
  31485. default: true
  31486. },
  31487. ]
  31488. ))
  31489. characterMakers.push(() => makeCharacter(
  31490. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31491. {
  31492. front: {
  31493. height: math.unit(3, "inches"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/noboru/front.svg",
  31497. extra: 1039/932,
  31498. bottom: 18/1057
  31499. }
  31500. },
  31501. },
  31502. [
  31503. {
  31504. name: "Micro",
  31505. height: math.unit(3, "inches"),
  31506. default: true
  31507. },
  31508. ]
  31509. ))
  31510. characterMakers.push(() => makeCharacter(
  31511. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31512. {
  31513. front: {
  31514. height: math.unit(1.85, "meters"),
  31515. weight: math.unit(80, "kg"),
  31516. name: "Front",
  31517. image: {
  31518. source: "./media/characters/daniel-barrett/front.svg",
  31519. extra: 355/337,
  31520. bottom: 9/364
  31521. }
  31522. },
  31523. },
  31524. [
  31525. {
  31526. name: "Pico",
  31527. height: math.unit(0.0433, "mm")
  31528. },
  31529. {
  31530. name: "Nano",
  31531. height: math.unit(1.5, "mm")
  31532. },
  31533. {
  31534. name: "Micro",
  31535. height: math.unit(5.3, "cm"),
  31536. default: true
  31537. },
  31538. {
  31539. name: "Normal",
  31540. height: math.unit(1.85, "meters")
  31541. },
  31542. {
  31543. name: "Macro",
  31544. height: math.unit(64.7, "meters")
  31545. },
  31546. {
  31547. name: "Megamacro",
  31548. height: math.unit(2.26, "km")
  31549. },
  31550. {
  31551. name: "Gigamacro",
  31552. height: math.unit(79, "km")
  31553. },
  31554. {
  31555. name: "Teramacro",
  31556. height: math.unit(2765, "km")
  31557. },
  31558. {
  31559. name: "Petamacro",
  31560. height: math.unit(96678, "km")
  31561. },
  31562. ]
  31563. ))
  31564. characterMakers.push(() => makeCharacter(
  31565. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31566. {
  31567. front: {
  31568. height: math.unit(30, "meters"),
  31569. weight: math.unit(400, "tons"),
  31570. name: "Front",
  31571. image: {
  31572. source: "./media/characters/zeel/front.svg",
  31573. extra: 2599/2599,
  31574. bottom: 226/2825
  31575. }
  31576. },
  31577. },
  31578. [
  31579. {
  31580. name: "Macro",
  31581. height: math.unit(30, "meters"),
  31582. default: true
  31583. },
  31584. ]
  31585. ))
  31586. characterMakers.push(() => makeCharacter(
  31587. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31588. {
  31589. front: {
  31590. height: math.unit(6 + 7/12, "feet"),
  31591. weight: math.unit(210, "lb"),
  31592. name: "Front",
  31593. image: {
  31594. source: "./media/characters/tarn/front.svg",
  31595. extra: 3517/3220,
  31596. bottom: 91/3608
  31597. }
  31598. },
  31599. back: {
  31600. height: math.unit(6 + 7/12, "feet"),
  31601. weight: math.unit(210, "lb"),
  31602. name: "Back",
  31603. image: {
  31604. source: "./media/characters/tarn/back.svg",
  31605. extra: 3566/3241,
  31606. bottom: 34/3600
  31607. }
  31608. },
  31609. dick: {
  31610. height: math.unit(1.65, "feet"),
  31611. name: "Dick",
  31612. image: {
  31613. source: "./media/characters/tarn/dick.svg"
  31614. }
  31615. },
  31616. paw: {
  31617. height: math.unit(1.80, "feet"),
  31618. name: "Paw",
  31619. image: {
  31620. source: "./media/characters/tarn/paw.svg"
  31621. }
  31622. },
  31623. tongue: {
  31624. height: math.unit(0.97, "feet"),
  31625. name: "Tongue",
  31626. image: {
  31627. source: "./media/characters/tarn/tongue.svg"
  31628. }
  31629. },
  31630. },
  31631. [
  31632. {
  31633. name: "Micro",
  31634. height: math.unit(4, "inches")
  31635. },
  31636. {
  31637. name: "Normal",
  31638. height: math.unit(6 + 7/12, "feet"),
  31639. default: true
  31640. },
  31641. {
  31642. name: "Macro",
  31643. height: math.unit(300, "feet")
  31644. },
  31645. ]
  31646. ))
  31647. characterMakers.push(() => makeCharacter(
  31648. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31649. {
  31650. front: {
  31651. height: math.unit(5 + 7/12, "feet"),
  31652. weight: math.unit(80, "kg"),
  31653. name: "Front",
  31654. image: {
  31655. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31656. extra: 3023/2865,
  31657. bottom: 33/3056
  31658. }
  31659. },
  31660. back: {
  31661. height: math.unit(5 + 7/12, "feet"),
  31662. weight: math.unit(80, "kg"),
  31663. name: "Back",
  31664. image: {
  31665. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31666. extra: 3020/2886,
  31667. bottom: 30/3050
  31668. }
  31669. },
  31670. dick: {
  31671. height: math.unit(0.98, "feet"),
  31672. name: "Dick",
  31673. image: {
  31674. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31675. }
  31676. },
  31677. anatomy: {
  31678. height: math.unit(2.86, "feet"),
  31679. name: "Anatomy",
  31680. image: {
  31681. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31682. }
  31683. },
  31684. },
  31685. [
  31686. {
  31687. name: "Really Small",
  31688. height: math.unit(2, "inches")
  31689. },
  31690. {
  31691. name: "Micro",
  31692. height: math.unit(5.583, "inches")
  31693. },
  31694. {
  31695. name: "Normal",
  31696. height: math.unit(5 + 7/12, "feet"),
  31697. default: true
  31698. },
  31699. {
  31700. name: "Macro",
  31701. height: math.unit(67, "feet")
  31702. },
  31703. {
  31704. name: "Megamacro",
  31705. height: math.unit(134, "feet")
  31706. },
  31707. ]
  31708. ))
  31709. characterMakers.push(() => makeCharacter(
  31710. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31711. {
  31712. front: {
  31713. height: math.unit(9, "feet"),
  31714. weight: math.unit(120, "lb"),
  31715. name: "Front",
  31716. image: {
  31717. source: "./media/characters/sally/front.svg",
  31718. extra: 1506/1349,
  31719. bottom: 66/1572
  31720. }
  31721. },
  31722. },
  31723. [
  31724. {
  31725. name: "Normal",
  31726. height: math.unit(9, "feet"),
  31727. default: true
  31728. },
  31729. ]
  31730. ))
  31731. characterMakers.push(() => makeCharacter(
  31732. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31733. {
  31734. front: {
  31735. height: math.unit(8, "feet"),
  31736. weight: math.unit(900, "lb"),
  31737. name: "Front",
  31738. image: {
  31739. source: "./media/characters/owen/front.svg",
  31740. extra: 1761/1657,
  31741. bottom: 74/1835
  31742. }
  31743. },
  31744. side: {
  31745. height: math.unit(8, "feet"),
  31746. weight: math.unit(900, "lb"),
  31747. name: "Side",
  31748. image: {
  31749. source: "./media/characters/owen/side.svg",
  31750. extra: 1797/1734,
  31751. bottom: 30/1827
  31752. }
  31753. },
  31754. back: {
  31755. height: math.unit(8, "feet"),
  31756. weight: math.unit(900, "lb"),
  31757. name: "Back",
  31758. image: {
  31759. source: "./media/characters/owen/back.svg",
  31760. extra: 1796/1706,
  31761. bottom: 59/1855
  31762. }
  31763. },
  31764. maw: {
  31765. height: math.unit(1.76, "feet"),
  31766. name: "Maw",
  31767. image: {
  31768. source: "./media/characters/owen/maw.svg"
  31769. }
  31770. },
  31771. },
  31772. [
  31773. {
  31774. name: "Normal",
  31775. height: math.unit(8, "feet"),
  31776. default: true
  31777. },
  31778. ]
  31779. ))
  31780. characterMakers.push(() => makeCharacter(
  31781. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31782. {
  31783. front: {
  31784. height: math.unit(4, "feet"),
  31785. weight: math.unit(400, "lb"),
  31786. name: "Front",
  31787. image: {
  31788. source: "./media/characters/ryth/front.svg",
  31789. extra: 1920/1748,
  31790. bottom: 42/1962
  31791. }
  31792. },
  31793. back: {
  31794. height: math.unit(4, "feet"),
  31795. weight: math.unit(400, "lb"),
  31796. name: "Back",
  31797. image: {
  31798. source: "./media/characters/ryth/back.svg",
  31799. extra: 1897/1690,
  31800. bottom: 89/1986
  31801. }
  31802. },
  31803. mouth: {
  31804. height: math.unit(1.39, "feet"),
  31805. name: "Mouth",
  31806. image: {
  31807. source: "./media/characters/ryth/mouth.svg"
  31808. }
  31809. },
  31810. tailmaw: {
  31811. height: math.unit(1.23, "feet"),
  31812. name: "Tailmaw",
  31813. image: {
  31814. source: "./media/characters/ryth/tailmaw.svg"
  31815. }
  31816. },
  31817. goia: {
  31818. height: math.unit(12, "feet"),
  31819. weight: math.unit(10800, "lb"),
  31820. name: "Goia",
  31821. image: {
  31822. source: "./media/characters/ryth/goia.svg",
  31823. extra: 3450/3198,
  31824. bottom: 61/3511
  31825. }
  31826. },
  31827. },
  31828. [
  31829. {
  31830. name: "Normal",
  31831. height: math.unit(4, "feet"),
  31832. default: true
  31833. },
  31834. ]
  31835. ))
  31836. characterMakers.push(() => makeCharacter(
  31837. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31838. {
  31839. front: {
  31840. height: math.unit(7, "feet"),
  31841. weight: math.unit(180, "lb"),
  31842. name: "Front",
  31843. image: {
  31844. source: "./media/characters/necrolance/front.svg",
  31845. extra: 1062/947,
  31846. bottom: 41/1103
  31847. }
  31848. },
  31849. back: {
  31850. height: math.unit(7, "feet"),
  31851. weight: math.unit(180, "lb"),
  31852. name: "Back",
  31853. image: {
  31854. source: "./media/characters/necrolance/back.svg",
  31855. extra: 1045/984,
  31856. bottom: 14/1059
  31857. }
  31858. },
  31859. wing: {
  31860. height: math.unit(2.67, "feet"),
  31861. name: "Wing",
  31862. image: {
  31863. source: "./media/characters/necrolance/wing.svg"
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Normal",
  31870. height: math.unit(7, "feet"),
  31871. default: true
  31872. },
  31873. ]
  31874. ))
  31875. characterMakers.push(() => makeCharacter(
  31876. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31877. {
  31878. front: {
  31879. height: math.unit(76, "meters"),
  31880. weight: math.unit(30000, "tons"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/tyler/front.svg",
  31884. extra: 1640/1640,
  31885. bottom: 114/1754
  31886. }
  31887. },
  31888. },
  31889. [
  31890. {
  31891. name: "Macro",
  31892. height: math.unit(76, "meters"),
  31893. default: true
  31894. },
  31895. ]
  31896. ))
  31897. characterMakers.push(() => makeCharacter(
  31898. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31899. {
  31900. front: {
  31901. height: math.unit(4 + 11/12, "feet"),
  31902. weight: math.unit(132, "lb"),
  31903. name: "Front",
  31904. image: {
  31905. source: "./media/characters/icey/front.svg",
  31906. extra: 2750/2550,
  31907. bottom: 33/2783
  31908. }
  31909. },
  31910. back: {
  31911. height: math.unit(4 + 11/12, "feet"),
  31912. weight: math.unit(132, "lb"),
  31913. name: "Back",
  31914. image: {
  31915. source: "./media/characters/icey/back.svg",
  31916. extra: 2624/2481,
  31917. bottom: 35/2659
  31918. }
  31919. },
  31920. },
  31921. [
  31922. {
  31923. name: "Normal",
  31924. height: math.unit(4 + 11/12, "feet"),
  31925. default: true
  31926. },
  31927. ]
  31928. ))
  31929. characterMakers.push(() => makeCharacter(
  31930. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31931. {
  31932. front: {
  31933. height: math.unit(100, "feet"),
  31934. weight: math.unit(0, "lb"),
  31935. name: "Front",
  31936. image: {
  31937. source: "./media/characters/smile/front.svg",
  31938. extra: 2983/2912,
  31939. bottom: 162/3145
  31940. }
  31941. },
  31942. back: {
  31943. height: math.unit(100, "feet"),
  31944. weight: math.unit(0, "lb"),
  31945. name: "Back",
  31946. image: {
  31947. source: "./media/characters/smile/back.svg",
  31948. extra: 3143/3031,
  31949. bottom: 91/3234
  31950. }
  31951. },
  31952. head: {
  31953. height: math.unit(26.3, "feet"),
  31954. weight: math.unit(0, "lb"),
  31955. name: "Head",
  31956. image: {
  31957. source: "./media/characters/smile/head.svg"
  31958. }
  31959. },
  31960. collar: {
  31961. height: math.unit(5.3, "feet"),
  31962. weight: math.unit(0, "lb"),
  31963. name: "Collar",
  31964. image: {
  31965. source: "./media/characters/smile/collar.svg"
  31966. }
  31967. },
  31968. },
  31969. [
  31970. {
  31971. name: "Macro",
  31972. height: math.unit(100, "feet"),
  31973. default: true
  31974. },
  31975. ]
  31976. ))
  31977. characterMakers.push(() => makeCharacter(
  31978. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31979. {
  31980. dragon: {
  31981. height: math.unit(26, "feet"),
  31982. weight: math.unit(36, "tons"),
  31983. name: "Dragon",
  31984. image: {
  31985. source: "./media/characters/arimphae/dragon.svg",
  31986. extra: 1574/983,
  31987. bottom: 357/1931
  31988. }
  31989. },
  31990. drake: {
  31991. height: math.unit(9, "feet"),
  31992. weight: math.unit(1.5, "tons"),
  31993. name: "Drake",
  31994. image: {
  31995. source: "./media/characters/arimphae/drake.svg",
  31996. extra: 1120/925,
  31997. bottom: 435/1555
  31998. }
  31999. },
  32000. },
  32001. [
  32002. {
  32003. name: "Small",
  32004. height: math.unit(26*5/9, "feet")
  32005. },
  32006. {
  32007. name: "Normal",
  32008. height: math.unit(26, "feet"),
  32009. default: true
  32010. },
  32011. ]
  32012. ))
  32013. characterMakers.push(() => makeCharacter(
  32014. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32015. {
  32016. front: {
  32017. height: math.unit(8 + 9/12, "feet"),
  32018. name: "Front",
  32019. image: {
  32020. source: "./media/characters/xander/front.svg",
  32021. extra: 848/673,
  32022. bottom: 62/910
  32023. }
  32024. },
  32025. },
  32026. [
  32027. {
  32028. name: "Normal",
  32029. height: math.unit(8 + 9/12, "feet"),
  32030. default: true
  32031. },
  32032. {
  32033. name: "Gaze Grabber",
  32034. height: math.unit(13 + 8/12, "feet")
  32035. },
  32036. {
  32037. name: "Jaw Dropper",
  32038. height: math.unit(27, "feet")
  32039. },
  32040. {
  32041. name: "Show Stopper",
  32042. height: math.unit(136, "feet")
  32043. },
  32044. {
  32045. name: "Superstar",
  32046. height: math.unit(1.9e6, "miles")
  32047. },
  32048. ]
  32049. ))
  32050. characterMakers.push(() => makeCharacter(
  32051. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32052. {
  32053. side: {
  32054. height: math.unit(2100, "feet"),
  32055. name: "Side",
  32056. image: {
  32057. source: "./media/characters/osiris/side.svg",
  32058. extra: 1105/939,
  32059. bottom: 167/1272
  32060. }
  32061. },
  32062. },
  32063. [
  32064. {
  32065. name: "Macro",
  32066. height: math.unit(2100, "feet"),
  32067. default: true
  32068. },
  32069. ]
  32070. ))
  32071. characterMakers.push(() => makeCharacter(
  32072. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32073. {
  32074. front: {
  32075. height: math.unit(6 + 8/12, "feet"),
  32076. weight: math.unit(225, "lb"),
  32077. name: "Front",
  32078. image: {
  32079. source: "./media/characters/rhys-londe/front.svg",
  32080. extra: 2258/2141,
  32081. bottom: 188/2446
  32082. }
  32083. },
  32084. back: {
  32085. height: math.unit(6 + 8/12, "feet"),
  32086. weight: math.unit(225, "lb"),
  32087. name: "Back",
  32088. image: {
  32089. source: "./media/characters/rhys-londe/back.svg",
  32090. extra: 2237/2137,
  32091. bottom: 63/2300
  32092. }
  32093. },
  32094. frontNsfw: {
  32095. height: math.unit(6 + 8/12, "feet"),
  32096. weight: math.unit(225, "lb"),
  32097. name: "Front (NSFW)",
  32098. image: {
  32099. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32100. extra: 2258/2141,
  32101. bottom: 188/2446
  32102. }
  32103. },
  32104. backNsfw: {
  32105. height: math.unit(6 + 8/12, "feet"),
  32106. weight: math.unit(225, "lb"),
  32107. name: "Back (NSFW)",
  32108. image: {
  32109. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32110. extra: 2237/2137,
  32111. bottom: 63/2300
  32112. }
  32113. },
  32114. dick: {
  32115. height: math.unit(30, "inches"),
  32116. name: "Dick",
  32117. image: {
  32118. source: "./media/characters/rhys-londe/dick.svg"
  32119. }
  32120. },
  32121. maw: {
  32122. height: math.unit(1.6, "feet"),
  32123. name: "Maw",
  32124. image: {
  32125. source: "./media/characters/rhys-londe/maw.svg"
  32126. }
  32127. },
  32128. },
  32129. [
  32130. {
  32131. name: "Normal",
  32132. height: math.unit(6 + 8/12, "feet"),
  32133. default: true
  32134. },
  32135. ]
  32136. ))
  32137. characterMakers.push(() => makeCharacter(
  32138. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32139. {
  32140. front: {
  32141. height: math.unit(3 + 10/12, "feet"),
  32142. weight: math.unit(90, "lb"),
  32143. name: "Front",
  32144. image: {
  32145. source: "./media/characters/taivas-ensim/front.svg",
  32146. extra: 1327/1216,
  32147. bottom: 96/1423
  32148. }
  32149. },
  32150. back: {
  32151. height: math.unit(3 + 10/12, "feet"),
  32152. weight: math.unit(90, "lb"),
  32153. name: "Back",
  32154. image: {
  32155. source: "./media/characters/taivas-ensim/back.svg",
  32156. extra: 1355/1247,
  32157. bottom: 11/1366
  32158. }
  32159. },
  32160. frontNsfw: {
  32161. height: math.unit(3 + 10/12, "feet"),
  32162. weight: math.unit(90, "lb"),
  32163. name: "Front (NSFW)",
  32164. image: {
  32165. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32166. extra: 1327/1216,
  32167. bottom: 96/1423
  32168. }
  32169. },
  32170. backNsfw: {
  32171. height: math.unit(3 + 10/12, "feet"),
  32172. weight: math.unit(90, "lb"),
  32173. name: "Back (NSFW)",
  32174. image: {
  32175. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32176. extra: 1355/1247,
  32177. bottom: 11/1366
  32178. }
  32179. },
  32180. },
  32181. [
  32182. {
  32183. name: "Normal",
  32184. height: math.unit(3 + 10/12, "feet"),
  32185. default: true
  32186. },
  32187. ]
  32188. ))
  32189. characterMakers.push(() => makeCharacter(
  32190. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32191. {
  32192. front: {
  32193. height: math.unit(9 + 6/12, "feet"),
  32194. weight: math.unit(940, "lb"),
  32195. name: "Front",
  32196. image: {
  32197. source: "./media/characters/byliss/front.svg",
  32198. extra: 1327/1290,
  32199. bottom: 82/1409
  32200. }
  32201. },
  32202. back: {
  32203. height: math.unit(9 + 6/12, "feet"),
  32204. weight: math.unit(940, "lb"),
  32205. name: "Back",
  32206. image: {
  32207. source: "./media/characters/byliss/back.svg",
  32208. extra: 1376/1349,
  32209. bottom: 9/1385
  32210. }
  32211. },
  32212. frontNsfw: {
  32213. height: math.unit(9 + 6/12, "feet"),
  32214. weight: math.unit(940, "lb"),
  32215. name: "Front (NSFW)",
  32216. image: {
  32217. source: "./media/characters/byliss/front-nsfw.svg",
  32218. extra: 1327/1290,
  32219. bottom: 82/1409
  32220. }
  32221. },
  32222. backNsfw: {
  32223. height: math.unit(9 + 6/12, "feet"),
  32224. weight: math.unit(940, "lb"),
  32225. name: "Back (NSFW)",
  32226. image: {
  32227. source: "./media/characters/byliss/back-nsfw.svg",
  32228. extra: 1376/1349,
  32229. bottom: 9/1385
  32230. }
  32231. },
  32232. },
  32233. [
  32234. {
  32235. name: "Normal",
  32236. height: math.unit(9 + 6/12, "feet"),
  32237. default: true
  32238. },
  32239. ]
  32240. ))
  32241. characterMakers.push(() => makeCharacter(
  32242. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32243. {
  32244. front: {
  32245. height: math.unit(5 + 2/12, "feet"),
  32246. weight: math.unit(200, "lb"),
  32247. name: "Front",
  32248. image: {
  32249. source: "./media/characters/noraly/front.svg",
  32250. extra: 4985/4773,
  32251. bottom: 150/5135
  32252. }
  32253. },
  32254. full: {
  32255. height: math.unit(5 + 2/12, "feet"),
  32256. weight: math.unit(164, "lb"),
  32257. name: "Full",
  32258. image: {
  32259. source: "./media/characters/noraly/full.svg",
  32260. extra: 1114/1059,
  32261. bottom: 35/1149
  32262. }
  32263. },
  32264. fuller: {
  32265. height: math.unit(5 + 2/12, "feet"),
  32266. weight: math.unit(230, "lb"),
  32267. name: "Fuller",
  32268. image: {
  32269. source: "./media/characters/noraly/fuller.svg",
  32270. extra: 1114/1059,
  32271. bottom: 35/1149
  32272. }
  32273. },
  32274. fullest: {
  32275. height: math.unit(5 + 2/12, "feet"),
  32276. weight: math.unit(300, "lb"),
  32277. name: "Fullest",
  32278. image: {
  32279. source: "./media/characters/noraly/fullest.svg",
  32280. extra: 1114/1059,
  32281. bottom: 35/1149
  32282. }
  32283. },
  32284. },
  32285. [
  32286. {
  32287. name: "Normal",
  32288. height: math.unit(5 + 2/12, "feet"),
  32289. default: true
  32290. },
  32291. ]
  32292. ))
  32293. characterMakers.push(() => makeCharacter(
  32294. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32295. {
  32296. front: {
  32297. height: math.unit(5 + 2/12, "feet"),
  32298. weight: math.unit(210, "lb"),
  32299. name: "Front",
  32300. image: {
  32301. source: "./media/characters/pera/front.svg",
  32302. extra: 1560/1531,
  32303. bottom: 165/1725
  32304. }
  32305. },
  32306. back: {
  32307. height: math.unit(5 + 2/12, "feet"),
  32308. weight: math.unit(210, "lb"),
  32309. name: "Back",
  32310. image: {
  32311. source: "./media/characters/pera/back.svg",
  32312. extra: 1523/1493,
  32313. bottom: 152/1675
  32314. }
  32315. },
  32316. dick: {
  32317. height: math.unit(2.4, "feet"),
  32318. name: "Dick",
  32319. image: {
  32320. source: "./media/characters/pera/dick.svg"
  32321. }
  32322. },
  32323. },
  32324. [
  32325. {
  32326. name: "Normal",
  32327. height: math.unit(5 + 2/12, "feet"),
  32328. default: true
  32329. },
  32330. ]
  32331. ))
  32332. characterMakers.push(() => makeCharacter(
  32333. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32334. {
  32335. front: {
  32336. height: math.unit(12, "feet"),
  32337. weight: math.unit(3200, "lb"),
  32338. name: "Front",
  32339. image: {
  32340. source: "./media/characters/julian/front.svg",
  32341. extra: 2962/2701,
  32342. bottom: 184/3146
  32343. }
  32344. },
  32345. maw: {
  32346. height: math.unit(5.35, "feet"),
  32347. name: "Maw",
  32348. image: {
  32349. source: "./media/characters/julian/maw.svg"
  32350. }
  32351. },
  32352. paw: {
  32353. height: math.unit(3.07, "feet"),
  32354. name: "Paw",
  32355. image: {
  32356. source: "./media/characters/julian/paw.svg"
  32357. }
  32358. },
  32359. },
  32360. [
  32361. {
  32362. name: "Default",
  32363. height: math.unit(12, "feet"),
  32364. default: true
  32365. },
  32366. {
  32367. name: "Big",
  32368. height: math.unit(50, "feet")
  32369. },
  32370. {
  32371. name: "Really Big",
  32372. height: math.unit(1, "mile")
  32373. },
  32374. {
  32375. name: "Extremely Big",
  32376. height: math.unit(100, "miles")
  32377. },
  32378. {
  32379. name: "Planet Hugger",
  32380. height: math.unit(200, "megameters")
  32381. },
  32382. {
  32383. name: "Unreasonably Big",
  32384. height: math.unit(1e300, "meters")
  32385. },
  32386. ]
  32387. ))
  32388. characterMakers.push(() => makeCharacter(
  32389. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32390. {
  32391. solgooleo: {
  32392. height: math.unit(4, "meters"),
  32393. weight: math.unit(6000*1.5, "kg"),
  32394. volume: math.unit(6000, "liters"),
  32395. name: "Solgooleo",
  32396. image: {
  32397. source: "./media/characters/pi/solgooleo.svg",
  32398. extra: 388/331,
  32399. bottom: 29/417
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Normal",
  32406. height: math.unit(4, "meters"),
  32407. default: true
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32413. {
  32414. front: {
  32415. height: math.unit(8 + 2/12, "feet"),
  32416. weight: math.unit(4, "tons"),
  32417. name: "Front",
  32418. image: {
  32419. source: "./media/characters/shaun/front.svg",
  32420. extra: 1550/1505,
  32421. bottom: 353/1903
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Lorg",
  32428. height: math.unit(8 + 2/12, "feet"),
  32429. default: true
  32430. },
  32431. ]
  32432. ))
  32433. characterMakers.push(() => makeCharacter(
  32434. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32435. {
  32436. front: {
  32437. height: math.unit(7, "feet"),
  32438. name: "Front",
  32439. image: {
  32440. source: "./media/characters/sini/front.svg",
  32441. extra: 726/678,
  32442. bottom: 35/761
  32443. }
  32444. },
  32445. back: {
  32446. height: math.unit(7, "feet"),
  32447. name: "Back",
  32448. image: {
  32449. source: "./media/characters/sini/back.svg",
  32450. extra: 743/701,
  32451. bottom: 12/755
  32452. }
  32453. },
  32454. mawAnthro: {
  32455. height: math.unit(2.14, "feet"),
  32456. name: "Maw (Anthro)",
  32457. image: {
  32458. source: "./media/characters/sini/maw-anthro.svg"
  32459. }
  32460. },
  32461. dick: {
  32462. height: math.unit(1.45, "feet"),
  32463. name: "Dick (Anthro)",
  32464. image: {
  32465. source: "./media/characters/sini/dick-anthro.svg"
  32466. }
  32467. },
  32468. feral: {
  32469. height: math.unit(16, "feet"),
  32470. name: "Feral",
  32471. image: {
  32472. source: "./media/characters/sini/feral.svg",
  32473. extra: 814/605,
  32474. bottom: 11/825
  32475. }
  32476. },
  32477. mawFeral: {
  32478. height: math.unit(5.66, "feet"),
  32479. name: "Maw-feral",
  32480. image: {
  32481. source: "./media/characters/sini/maw-feral.svg"
  32482. }
  32483. },
  32484. footFeral: {
  32485. height: math.unit(5.17, "feet"),
  32486. name: "Foot-feral",
  32487. image: {
  32488. source: "./media/characters/sini/foot-feral.svg"
  32489. }
  32490. },
  32491. },
  32492. [
  32493. {
  32494. name: "Normal",
  32495. height: math.unit(7, "feet"),
  32496. default: true
  32497. },
  32498. ]
  32499. ))
  32500. characterMakers.push(() => makeCharacter(
  32501. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32502. {
  32503. side: {
  32504. height: math.unit(13, "meters"),
  32505. weight: math.unit(9072, "kg"),
  32506. name: "Side",
  32507. image: {
  32508. source: "./media/characters/raylldo/side.svg",
  32509. extra: 403/344,
  32510. bottom: 42/445
  32511. }
  32512. },
  32513. leaping: {
  32514. height: math.unit(12.3, "meters"),
  32515. weight: math.unit(9072, "kg"),
  32516. name: "Leaping",
  32517. image: {
  32518. source: "./media/characters/raylldo/leaping.svg",
  32519. extra: 470/249,
  32520. bottom: 13/483
  32521. }
  32522. },
  32523. flying: {
  32524. height: math.unit(18, "meters"),
  32525. weight: math.unit(9072, "kg"),
  32526. name: "Flying",
  32527. image: {
  32528. source: "./media/characters/raylldo/flying.svg"
  32529. }
  32530. },
  32531. head: {
  32532. height: math.unit(5.85, "meters"),
  32533. name: "Head",
  32534. image: {
  32535. source: "./media/characters/raylldo/head.svg"
  32536. }
  32537. },
  32538. maw: {
  32539. height: math.unit(5.32, "meters"),
  32540. name: "Maw",
  32541. image: {
  32542. source: "./media/characters/raylldo/maw.svg"
  32543. }
  32544. },
  32545. eye: {
  32546. height: math.unit(0.54, "meters"),
  32547. name: "Eye",
  32548. image: {
  32549. source: "./media/characters/raylldo/eye.svg"
  32550. }
  32551. },
  32552. },
  32553. [
  32554. {
  32555. name: "Normal",
  32556. height: math.unit(13, "meters"),
  32557. default: true
  32558. },
  32559. ]
  32560. ))
  32561. characterMakers.push(() => makeCharacter(
  32562. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32563. {
  32564. anthroFront: {
  32565. height: math.unit(9, "feet"),
  32566. weight: math.unit(600, "lb"),
  32567. name: "Anthro (Front)",
  32568. image: {
  32569. source: "./media/characters/glint/anthro-front.svg",
  32570. extra: 1097/1018,
  32571. bottom: 28/1125
  32572. }
  32573. },
  32574. anthroBack: {
  32575. height: math.unit(9, "feet"),
  32576. weight: math.unit(600, "lb"),
  32577. name: "Anthro (Back)",
  32578. image: {
  32579. source: "./media/characters/glint/anthro-back.svg",
  32580. extra: 1154/997,
  32581. bottom: 36/1190
  32582. }
  32583. },
  32584. feral: {
  32585. height: math.unit(11, "feet"),
  32586. weight: math.unit(50000, "lb"),
  32587. name: "Feral",
  32588. image: {
  32589. source: "./media/characters/glint/feral.svg",
  32590. extra: 3035/1585,
  32591. bottom: 1169/4204
  32592. }
  32593. },
  32594. dickAnthro: {
  32595. height: math.unit(0.7, "meters"),
  32596. name: "Dick (Anthro)",
  32597. image: {
  32598. source: "./media/characters/glint/dick-anthro.svg"
  32599. }
  32600. },
  32601. dickFeral: {
  32602. height: math.unit(2.65, "meters"),
  32603. name: "Dick (Feral)",
  32604. image: {
  32605. source: "./media/characters/glint/dick-feral.svg"
  32606. }
  32607. },
  32608. slitHidden: {
  32609. height: math.unit(5.85, "meters"),
  32610. name: "Slit (Hidden)",
  32611. image: {
  32612. source: "./media/characters/glint/slit-hidden.svg"
  32613. }
  32614. },
  32615. slitErect: {
  32616. height: math.unit(5.85, "meters"),
  32617. name: "Slit (Erect)",
  32618. image: {
  32619. source: "./media/characters/glint/slit-erect.svg"
  32620. }
  32621. },
  32622. mawAnthro: {
  32623. height: math.unit(0.63, "meters"),
  32624. name: "Maw (Anthro)",
  32625. image: {
  32626. source: "./media/characters/glint/maw.svg"
  32627. }
  32628. },
  32629. mawFeral: {
  32630. height: math.unit(2.89, "meters"),
  32631. name: "Maw (Feral)",
  32632. image: {
  32633. source: "./media/characters/glint/maw.svg"
  32634. }
  32635. },
  32636. },
  32637. [
  32638. {
  32639. name: "Normal",
  32640. height: math.unit(9, "feet"),
  32641. default: true
  32642. },
  32643. ]
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32647. {
  32648. side: {
  32649. height: math.unit(15, "feet"),
  32650. weight: math.unit(5000, "kg"),
  32651. name: "Side",
  32652. image: {
  32653. source: "./media/characters/kairne/side.svg",
  32654. extra: 979/811,
  32655. bottom: 13/992
  32656. }
  32657. },
  32658. front: {
  32659. height: math.unit(15, "feet"),
  32660. weight: math.unit(5000, "kg"),
  32661. name: "Front",
  32662. image: {
  32663. source: "./media/characters/kairne/front.svg",
  32664. extra: 908/814,
  32665. bottom: 26/934
  32666. }
  32667. },
  32668. sideNsfw: {
  32669. height: math.unit(15, "feet"),
  32670. weight: math.unit(5000, "kg"),
  32671. name: "Side (NSFW)",
  32672. image: {
  32673. source: "./media/characters/kairne/side-nsfw.svg",
  32674. extra: 979/811,
  32675. bottom: 13/992
  32676. }
  32677. },
  32678. frontNsfw: {
  32679. height: math.unit(15, "feet"),
  32680. weight: math.unit(5000, "kg"),
  32681. name: "Front (NSFW)",
  32682. image: {
  32683. source: "./media/characters/kairne/front-nsfw.svg",
  32684. extra: 908/814,
  32685. bottom: 26/934
  32686. }
  32687. },
  32688. dickCaged: {
  32689. height: math.unit(0.65, "meters"),
  32690. name: "Dick-caged",
  32691. image: {
  32692. source: "./media/characters/kairne/dick-caged.svg"
  32693. }
  32694. },
  32695. dick: {
  32696. height: math.unit(0.79, "meters"),
  32697. name: "Dick",
  32698. image: {
  32699. source: "./media/characters/kairne/dick.svg"
  32700. }
  32701. },
  32702. genitals: {
  32703. height: math.unit(1.29, "meters"),
  32704. name: "Genitals",
  32705. image: {
  32706. source: "./media/characters/kairne/genitals.svg"
  32707. }
  32708. },
  32709. maw: {
  32710. height: math.unit(1.73, "meters"),
  32711. name: "Maw",
  32712. image: {
  32713. source: "./media/characters/kairne/maw.svg"
  32714. }
  32715. },
  32716. },
  32717. [
  32718. {
  32719. name: "Normal",
  32720. height: math.unit(15, "feet"),
  32721. default: true
  32722. },
  32723. ]
  32724. ))
  32725. characterMakers.push(() => makeCharacter(
  32726. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32727. {
  32728. front: {
  32729. height: math.unit(5 + 8/12, "feet"),
  32730. weight: math.unit(139, "lb"),
  32731. name: "Front",
  32732. image: {
  32733. source: "./media/characters/biscuit-jackal/front.svg",
  32734. extra: 2106/1961,
  32735. bottom: 58/2164
  32736. }
  32737. },
  32738. back: {
  32739. height: math.unit(5 + 8/12, "feet"),
  32740. weight: math.unit(139, "lb"),
  32741. name: "Back",
  32742. image: {
  32743. source: "./media/characters/biscuit-jackal/back.svg",
  32744. extra: 2132/1976,
  32745. bottom: 57/2189
  32746. }
  32747. },
  32748. werejackal: {
  32749. height: math.unit(6 + 3/12, "feet"),
  32750. weight: math.unit(188, "lb"),
  32751. name: "Werejackal",
  32752. image: {
  32753. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32754. extra: 2373/2178,
  32755. bottom: 53/2426
  32756. }
  32757. },
  32758. },
  32759. [
  32760. {
  32761. name: "Normal",
  32762. height: math.unit(5 + 8/12, "feet"),
  32763. default: true
  32764. },
  32765. ]
  32766. ))
  32767. characterMakers.push(() => makeCharacter(
  32768. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32769. {
  32770. front: {
  32771. height: math.unit(140, "cm"),
  32772. weight: math.unit(45, "kg"),
  32773. name: "Front",
  32774. image: {
  32775. source: "./media/characters/tayra-white/front.svg",
  32776. extra: 2229/2192,
  32777. bottom: 75/2304
  32778. }
  32779. },
  32780. },
  32781. [
  32782. {
  32783. name: "Normal",
  32784. height: math.unit(140, "cm"),
  32785. default: true
  32786. },
  32787. ]
  32788. ))
  32789. characterMakers.push(() => makeCharacter(
  32790. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32791. {
  32792. front: {
  32793. height: math.unit(4 + 5/12, "feet"),
  32794. name: "Front",
  32795. image: {
  32796. source: "./media/characters/scoop/front.svg",
  32797. extra: 1257/1136,
  32798. bottom: 69/1326
  32799. }
  32800. },
  32801. back: {
  32802. height: math.unit(4 + 5/12, "feet"),
  32803. name: "Back",
  32804. image: {
  32805. source: "./media/characters/scoop/back.svg",
  32806. extra: 1321/1152,
  32807. bottom: 32/1353
  32808. }
  32809. },
  32810. maw: {
  32811. height: math.unit(0.68, "feet"),
  32812. name: "Maw",
  32813. image: {
  32814. source: "./media/characters/scoop/maw.svg"
  32815. }
  32816. },
  32817. },
  32818. [
  32819. {
  32820. name: "Really Small",
  32821. height: math.unit(1, "mm")
  32822. },
  32823. {
  32824. name: "Micro",
  32825. height: math.unit(1, "inch")
  32826. },
  32827. {
  32828. name: "Normal",
  32829. height: math.unit(4 + 5/12, "feet"),
  32830. default: true
  32831. },
  32832. {
  32833. name: "Macro",
  32834. height: math.unit(200, "feet")
  32835. },
  32836. {
  32837. name: "Megamacro",
  32838. height: math.unit(3240, "feet")
  32839. },
  32840. {
  32841. name: "Teramacro",
  32842. height: math.unit(2500, "miles")
  32843. },
  32844. ]
  32845. ))
  32846. characterMakers.push(() => makeCharacter(
  32847. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32848. {
  32849. front: {
  32850. height: math.unit(15 + 7/12, "feet"),
  32851. name: "Front",
  32852. image: {
  32853. source: "./media/characters/saphinara/front.svg",
  32854. extra: 604/546,
  32855. bottom: 19/623
  32856. }
  32857. },
  32858. side: {
  32859. height: math.unit(15 + 7/12, "feet"),
  32860. name: "Side",
  32861. image: {
  32862. source: "./media/characters/saphinara/side.svg",
  32863. extra: 605/547,
  32864. bottom: 6/611
  32865. }
  32866. },
  32867. back: {
  32868. height: math.unit(15 + 7/12, "feet"),
  32869. name: "Back",
  32870. image: {
  32871. source: "./media/characters/saphinara/back.svg",
  32872. extra: 591/531,
  32873. bottom: 13/604
  32874. }
  32875. },
  32876. frontTail: {
  32877. height: math.unit(15 + 7/12, "feet"),
  32878. name: "Front (Full Tail)",
  32879. image: {
  32880. source: "./media/characters/saphinara/front-tail.svg",
  32881. extra: 748/547,
  32882. bottom: 66/814
  32883. }
  32884. },
  32885. },
  32886. [
  32887. {
  32888. name: "Normal",
  32889. height: math.unit(15 + 7/12, "feet"),
  32890. default: true
  32891. },
  32892. {
  32893. name: "Angry",
  32894. height: math.unit(30 + 6/12, "feet")
  32895. },
  32896. {
  32897. name: "Enraged",
  32898. height: math.unit(102 + 1/12, "feet")
  32899. },
  32900. ]
  32901. ))
  32902. characterMakers.push(() => makeCharacter(
  32903. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32904. {
  32905. front: {
  32906. height: math.unit(6 + 8/12, "feet"),
  32907. weight: math.unit(300, "lb"),
  32908. name: "Front",
  32909. image: {
  32910. source: "./media/characters/jrain/front.svg",
  32911. extra: 3039/2865,
  32912. bottom: 399/3438
  32913. }
  32914. },
  32915. back: {
  32916. height: math.unit(6 + 8/12, "feet"),
  32917. weight: math.unit(300, "lb"),
  32918. name: "Back",
  32919. image: {
  32920. source: "./media/characters/jrain/back.svg",
  32921. extra: 3089/2938,
  32922. bottom: 172/3261
  32923. }
  32924. },
  32925. head: {
  32926. height: math.unit(2.14, "feet"),
  32927. name: "Head",
  32928. image: {
  32929. source: "./media/characters/jrain/head.svg"
  32930. }
  32931. },
  32932. maw: {
  32933. height: math.unit(1.77, "feet"),
  32934. name: "Maw",
  32935. image: {
  32936. source: "./media/characters/jrain/maw.svg"
  32937. }
  32938. },
  32939. leftHand: {
  32940. height: math.unit(1.1, "feet"),
  32941. name: "Left Hand",
  32942. image: {
  32943. source: "./media/characters/jrain/left-hand.svg"
  32944. }
  32945. },
  32946. rightHand: {
  32947. height: math.unit(1.1, "feet"),
  32948. name: "Right Hand",
  32949. image: {
  32950. source: "./media/characters/jrain/right-hand.svg"
  32951. }
  32952. },
  32953. eye: {
  32954. height: math.unit(0.35, "feet"),
  32955. name: "Eye",
  32956. image: {
  32957. source: "./media/characters/jrain/eye.svg"
  32958. }
  32959. },
  32960. },
  32961. [
  32962. {
  32963. name: "Normal",
  32964. height: math.unit(6 + 8/12, "feet"),
  32965. default: true
  32966. },
  32967. {
  32968. name: "Casually Large",
  32969. height: math.unit(25, "feet")
  32970. },
  32971. {
  32972. name: "Giant",
  32973. height: math.unit(100, "feet")
  32974. },
  32975. {
  32976. name: "Kaiju",
  32977. height: math.unit(300, "feet")
  32978. },
  32979. ]
  32980. ))
  32981. characterMakers.push(() => makeCharacter(
  32982. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32983. {
  32984. dragon: {
  32985. height: math.unit(5, "meters"),
  32986. name: "Dragon",
  32987. image: {
  32988. source: "./media/characters/sabrina/dragon.svg",
  32989. extra: 3670 / 2365,
  32990. bottom: 333 / 4003
  32991. }
  32992. },
  32993. gryphon: {
  32994. height: math.unit(3, "meters"),
  32995. name: "Gryphon",
  32996. image: {
  32997. source: "./media/characters/sabrina/gryphon.svg",
  32998. extra: 1576 / 945,
  32999. bottom: 71 / 1647
  33000. }
  33001. },
  33002. snake: {
  33003. height: math.unit(12, "meters"),
  33004. name: "Snake",
  33005. image: {
  33006. source: "./media/characters/sabrina/snake.svg",
  33007. extra: 1758 / 1320,
  33008. bottom: 186 / 1944
  33009. }
  33010. },
  33011. collar: {
  33012. height: math.unit(1.86, "meters"),
  33013. name: "Collar",
  33014. image: {
  33015. source: "./media/characters/sabrina/collar.svg"
  33016. }
  33017. },
  33018. eye: {
  33019. height: math.unit(0.53, "meters"),
  33020. name: "Eye",
  33021. image: {
  33022. source: "./media/characters/sabrina/eye.svg"
  33023. }
  33024. },
  33025. foot: {
  33026. height: math.unit(1.86, "meters"),
  33027. name: "Foot",
  33028. image: {
  33029. source: "./media/characters/sabrina/foot.svg"
  33030. }
  33031. },
  33032. hand: {
  33033. height: math.unit(1.32, "meters"),
  33034. name: "Hand",
  33035. image: {
  33036. source: "./media/characters/sabrina/hand.svg"
  33037. }
  33038. },
  33039. head: {
  33040. height: math.unit(2.44, "meters"),
  33041. name: "Head",
  33042. image: {
  33043. source: "./media/characters/sabrina/head.svg"
  33044. }
  33045. },
  33046. headAngry: {
  33047. height: math.unit(2.44, "meters"),
  33048. name: "Head (Angry))",
  33049. image: {
  33050. source: "./media/characters/sabrina/head-angry.svg"
  33051. }
  33052. },
  33053. maw: {
  33054. height: math.unit(1.65, "meters"),
  33055. name: "Maw",
  33056. image: {
  33057. source: "./media/characters/sabrina/maw.svg"
  33058. }
  33059. },
  33060. spikes: {
  33061. height: math.unit(1.69, "meters"),
  33062. name: "Spikes",
  33063. image: {
  33064. source: "./media/characters/sabrina/spikes.svg"
  33065. }
  33066. },
  33067. stomach: {
  33068. height: math.unit(1.15, "meters"),
  33069. name: "Stomach",
  33070. image: {
  33071. source: "./media/characters/sabrina/stomach.svg"
  33072. }
  33073. },
  33074. tongue: {
  33075. height: math.unit(1.27, "meters"),
  33076. name: "Tongue",
  33077. image: {
  33078. source: "./media/characters/sabrina/tongue.svg"
  33079. }
  33080. },
  33081. wingDorsal: {
  33082. height: math.unit(4.85, "meters"),
  33083. name: "Wing (Dorsal)",
  33084. image: {
  33085. source: "./media/characters/sabrina/wing-dorsal.svg"
  33086. }
  33087. },
  33088. wingVentral: {
  33089. height: math.unit(4.85, "meters"),
  33090. name: "Wing (Ventral)",
  33091. image: {
  33092. source: "./media/characters/sabrina/wing-ventral.svg"
  33093. }
  33094. },
  33095. },
  33096. [
  33097. {
  33098. name: "Normal",
  33099. height: math.unit(5, "meters"),
  33100. default: true
  33101. },
  33102. ]
  33103. ))
  33104. characterMakers.push(() => makeCharacter(
  33105. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33106. {
  33107. frontMaid: {
  33108. height: math.unit(5 + 5/12, "feet"),
  33109. weight: math.unit(130, "lb"),
  33110. name: "Front (Maid)",
  33111. image: {
  33112. source: "./media/characters/midnight-tales/front-maid.svg",
  33113. extra: 489/454,
  33114. bottom: 61/550
  33115. }
  33116. },
  33117. frontFormal: {
  33118. height: math.unit(5 + 5/12, "feet"),
  33119. weight: math.unit(130, "lb"),
  33120. name: "Front (Formal)",
  33121. image: {
  33122. source: "./media/characters/midnight-tales/front-formal.svg",
  33123. extra: 489/454,
  33124. bottom: 61/550
  33125. }
  33126. },
  33127. back: {
  33128. height: math.unit(5 + 5/12, "feet"),
  33129. weight: math.unit(130, "lb"),
  33130. name: "Back",
  33131. image: {
  33132. source: "./media/characters/midnight-tales/back.svg",
  33133. extra: 498/456,
  33134. bottom: 33/531
  33135. }
  33136. },
  33137. frontBeast: {
  33138. height: math.unit(40, "feet"),
  33139. weight: math.unit(64000, "lb"),
  33140. name: "Front (Beast)",
  33141. image: {
  33142. source: "./media/characters/midnight-tales/front-beast.svg",
  33143. extra: 927/860,
  33144. bottom: 53/980
  33145. }
  33146. },
  33147. backBeast: {
  33148. height: math.unit(40, "feet"),
  33149. weight: math.unit(64000, "lb"),
  33150. name: "Back (Beast)",
  33151. image: {
  33152. source: "./media/characters/midnight-tales/back-beast.svg",
  33153. extra: 929/855,
  33154. bottom: 16/945
  33155. }
  33156. },
  33157. footBeast: {
  33158. height: math.unit(6.7, "feet"),
  33159. name: "Foot (Beast)",
  33160. image: {
  33161. source: "./media/characters/midnight-tales/foot-beast.svg"
  33162. }
  33163. },
  33164. headBeast: {
  33165. height: math.unit(8, "feet"),
  33166. name: "Head (Beast)",
  33167. image: {
  33168. source: "./media/characters/midnight-tales/head-beast.svg"
  33169. }
  33170. },
  33171. },
  33172. [
  33173. {
  33174. name: "Normal",
  33175. height: math.unit(5 + 5 / 12, "feet"),
  33176. default: true
  33177. },
  33178. {
  33179. name: "Macro",
  33180. height: math.unit(25, "feet")
  33181. },
  33182. ]
  33183. ))
  33184. characterMakers.push(() => makeCharacter(
  33185. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33186. {
  33187. front: {
  33188. height: math.unit(5 + 10/12, "feet"),
  33189. name: "Front",
  33190. image: {
  33191. source: "./media/characters/argon/front.svg",
  33192. extra: 2009/1935,
  33193. bottom: 118/2127
  33194. }
  33195. },
  33196. back: {
  33197. height: math.unit(5 + 10/12, "feet"),
  33198. name: "Back",
  33199. image: {
  33200. source: "./media/characters/argon/back.svg",
  33201. extra: 2047/1992,
  33202. bottom: 20/2067
  33203. }
  33204. },
  33205. frontDressed: {
  33206. height: math.unit(5 + 10/12, "feet"),
  33207. name: "Front (Dressed)",
  33208. image: {
  33209. source: "./media/characters/argon/front-dressed.svg",
  33210. extra: 2009/1935,
  33211. bottom: 118/2127
  33212. }
  33213. },
  33214. },
  33215. [
  33216. {
  33217. name: "Normal",
  33218. height: math.unit(5 + 10/12, "feet"),
  33219. default: true
  33220. },
  33221. ]
  33222. ))
  33223. characterMakers.push(() => makeCharacter(
  33224. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33225. {
  33226. front: {
  33227. height: math.unit(8 + 6/12, "feet"),
  33228. weight: math.unit(1150, "lb"),
  33229. name: "Front",
  33230. image: {
  33231. source: "./media/characters/kichi/front.svg",
  33232. extra: 1267/1164,
  33233. bottom: 61/1328
  33234. }
  33235. },
  33236. back: {
  33237. height: math.unit(8 + 6/12, "feet"),
  33238. weight: math.unit(1150, "lb"),
  33239. name: "Back",
  33240. image: {
  33241. source: "./media/characters/kichi/back.svg",
  33242. extra: 1273/1166,
  33243. bottom: 33/1306
  33244. }
  33245. },
  33246. },
  33247. [
  33248. {
  33249. name: "Normal",
  33250. height: math.unit(8 + 6/12, "feet"),
  33251. default: true
  33252. },
  33253. ]
  33254. ))
  33255. characterMakers.push(() => makeCharacter(
  33256. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33257. {
  33258. front: {
  33259. height: math.unit(6, "feet"),
  33260. weight: math.unit(210, "lb"),
  33261. name: "Front",
  33262. image: {
  33263. source: "./media/characters/manetel-greyscale/front.svg",
  33264. extra: 350/312,
  33265. bottom: 8/358
  33266. }
  33267. },
  33268. },
  33269. [
  33270. {
  33271. name: "Micro",
  33272. height: math.unit(2, "inches")
  33273. },
  33274. {
  33275. name: "Normal",
  33276. height: math.unit(6, "feet"),
  33277. default: true
  33278. },
  33279. {
  33280. name: "Minimacro",
  33281. height: math.unit(17, "feet")
  33282. },
  33283. {
  33284. name: "Macro",
  33285. height: math.unit(117, "feet")
  33286. },
  33287. ]
  33288. ))
  33289. characterMakers.push(() => makeCharacter(
  33290. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33291. {
  33292. side: {
  33293. height: math.unit(5 + 1/12, "feet"),
  33294. weight: math.unit(418, "lb"),
  33295. name: "Side",
  33296. image: {
  33297. source: "./media/characters/softpurr/side.svg",
  33298. extra: 1993/1945,
  33299. bottom: 134/2127
  33300. }
  33301. },
  33302. front: {
  33303. height: math.unit(5 + 1/12, "feet"),
  33304. weight: math.unit(418, "lb"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/softpurr/front.svg",
  33308. extra: 1950/1856,
  33309. bottom: 174/2124
  33310. }
  33311. },
  33312. paw: {
  33313. height: math.unit(1, "feet"),
  33314. name: "Paw",
  33315. image: {
  33316. source: "./media/characters/softpurr/paw.svg"
  33317. }
  33318. },
  33319. },
  33320. [
  33321. {
  33322. name: "Normal",
  33323. height: math.unit(5 + 1/12, "feet"),
  33324. default: true
  33325. },
  33326. ]
  33327. ))
  33328. characterMakers.push(() => makeCharacter(
  33329. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33330. {
  33331. front: {
  33332. height: math.unit(260, "meters"),
  33333. name: "Front",
  33334. image: {
  33335. source: "./media/characters/anahita/front.svg",
  33336. extra: 665/635,
  33337. bottom: 89/754
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Macro",
  33344. height: math.unit(260, "meters"),
  33345. default: true
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33351. {
  33352. front: {
  33353. height: math.unit(4 + 10/12, "feet"),
  33354. weight: math.unit(160, "lb"),
  33355. name: "Front",
  33356. image: {
  33357. source: "./media/characters/chip-mouse/front.svg",
  33358. extra: 3528/3408,
  33359. bottom: 0/3528
  33360. }
  33361. },
  33362. frontNsfw: {
  33363. height: math.unit(4 + 10/12, "feet"),
  33364. weight: math.unit(160, "lb"),
  33365. name: "Front (NSFW)",
  33366. image: {
  33367. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33368. extra: 3528/3408,
  33369. bottom: 0/3528
  33370. }
  33371. },
  33372. },
  33373. [
  33374. {
  33375. name: "Normal",
  33376. height: math.unit(4 + 10/12, "feet"),
  33377. default: true
  33378. },
  33379. ]
  33380. ))
  33381. characterMakers.push(() => makeCharacter(
  33382. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33383. {
  33384. side: {
  33385. height: math.unit(10, "feet"),
  33386. weight: math.unit(14000, "lb"),
  33387. name: "Side",
  33388. image: {
  33389. source: "./media/characters/kremm/side.svg",
  33390. extra: 1390/1053,
  33391. bottom: 90/1480
  33392. }
  33393. },
  33394. gut: {
  33395. height: math.unit(5.8, "feet"),
  33396. name: "Gut",
  33397. image: {
  33398. source: "./media/characters/kremm/gut.svg"
  33399. }
  33400. },
  33401. ass: {
  33402. height: math.unit(6.1, "feet"),
  33403. name: "Ass",
  33404. image: {
  33405. source: "./media/characters/kremm/ass.svg"
  33406. }
  33407. },
  33408. jaws: {
  33409. height: math.unit(2.2, "feet"),
  33410. name: "Jaws",
  33411. image: {
  33412. source: "./media/characters/kremm/jaws.svg"
  33413. }
  33414. },
  33415. dick: {
  33416. height: math.unit(4.26, "feet"),
  33417. name: "Dick",
  33418. image: {
  33419. source: "./media/characters/kremm/dick.svg"
  33420. }
  33421. },
  33422. },
  33423. [
  33424. {
  33425. name: "Normal",
  33426. height: math.unit(10, "feet"),
  33427. default: true
  33428. },
  33429. ]
  33430. ))
  33431. characterMakers.push(() => makeCharacter(
  33432. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33433. {
  33434. front: {
  33435. height: math.unit(30, "stories"),
  33436. name: "Front",
  33437. image: {
  33438. source: "./media/characters/kai/front.svg",
  33439. extra: 1892/1718,
  33440. bottom: 162/2054
  33441. }
  33442. },
  33443. },
  33444. [
  33445. {
  33446. name: "Macro",
  33447. height: math.unit(30, "stories"),
  33448. default: true
  33449. },
  33450. ]
  33451. ))
  33452. characterMakers.push(() => makeCharacter(
  33453. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33454. {
  33455. front: {
  33456. height: math.unit(6 + 4/12, "feet"),
  33457. weight: math.unit(145, "lb"),
  33458. name: "Front",
  33459. image: {
  33460. source: "./media/characters/sykes/front.svg",
  33461. extra: 1321 / 1187,
  33462. bottom: 66 / 1387
  33463. }
  33464. },
  33465. back: {
  33466. height: math.unit(6 + 4/12, "feet"),
  33467. weight: math.unit(145, "lb"),
  33468. name: "Back",
  33469. image: {
  33470. source: "./media/characters/sykes/back.svg",
  33471. extra: 1326/1181,
  33472. bottom: 31/1357
  33473. }
  33474. },
  33475. handBack: {
  33476. height: math.unit(0.9, "feet"),
  33477. name: "Hand (Back)",
  33478. image: {
  33479. source: "./media/characters/sykes/hand-back.svg"
  33480. }
  33481. },
  33482. handFront: {
  33483. height: math.unit(0.839, "feet"),
  33484. name: "Hand (Front)",
  33485. image: {
  33486. source: "./media/characters/sykes/hand-front.svg"
  33487. }
  33488. },
  33489. leftFoot: {
  33490. height: math.unit(1.2, "feet"),
  33491. name: "Foot (Left)",
  33492. image: {
  33493. source: "./media/characters/sykes/foot-left.svg"
  33494. }
  33495. },
  33496. rightFoot: {
  33497. height: math.unit(1.2, "feet"),
  33498. name: "Foot (Right)",
  33499. image: {
  33500. source: "./media/characters/sykes/foot-right.svg"
  33501. }
  33502. },
  33503. maw: {
  33504. height: math.unit(1.93, "feet"),
  33505. name: "Maw",
  33506. image: {
  33507. source: "./media/characters/sykes/maw.svg"
  33508. }
  33509. },
  33510. teeth: {
  33511. height: math.unit(0.51, "feet"),
  33512. name: "Teeth",
  33513. image: {
  33514. source: "./media/characters/sykes/teeth.svg"
  33515. }
  33516. },
  33517. tongue: {
  33518. height: math.unit(2.13, "feet"),
  33519. name: "Tongue",
  33520. image: {
  33521. source: "./media/characters/sykes/tongue.svg"
  33522. }
  33523. },
  33524. uvula: {
  33525. height: math.unit(0.16, "feet"),
  33526. name: "Uvula",
  33527. image: {
  33528. source: "./media/characters/sykes/uvula.svg"
  33529. }
  33530. },
  33531. collar: {
  33532. height: math.unit(0.287, "feet"),
  33533. name: "Collar",
  33534. image: {
  33535. source: "./media/characters/sykes/collar.svg"
  33536. }
  33537. },
  33538. },
  33539. [
  33540. {
  33541. name: "Shrunken",
  33542. height: math.unit(5, "inches")
  33543. },
  33544. {
  33545. name: "Normal",
  33546. height: math.unit(6 + 4 / 12, "feet"),
  33547. default: true
  33548. },
  33549. {
  33550. name: "Big",
  33551. height: math.unit(15, "feet")
  33552. },
  33553. ]
  33554. ))
  33555. characterMakers.push(() => makeCharacter(
  33556. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33557. {
  33558. front: {
  33559. height: math.unit(5 + 8/12, "feet"),
  33560. weight: math.unit(190, "lb"),
  33561. name: "Front",
  33562. image: {
  33563. source: "./media/characters/oven-otter/front.svg",
  33564. extra: 1809/1740,
  33565. bottom: 181/1990
  33566. }
  33567. },
  33568. back: {
  33569. height: math.unit(5 + 8/12, "feet"),
  33570. weight: math.unit(190, "lb"),
  33571. name: "Back",
  33572. image: {
  33573. source: "./media/characters/oven-otter/back.svg",
  33574. extra: 1709/1635,
  33575. bottom: 118/1827
  33576. }
  33577. },
  33578. hand: {
  33579. height: math.unit(1.07, "feet"),
  33580. name: "Hand",
  33581. image: {
  33582. source: "./media/characters/oven-otter/hand.svg"
  33583. }
  33584. },
  33585. beans: {
  33586. height: math.unit(1.74, "feet"),
  33587. name: "Beans",
  33588. image: {
  33589. source: "./media/characters/oven-otter/beans.svg"
  33590. }
  33591. },
  33592. },
  33593. [
  33594. {
  33595. name: "Micro",
  33596. height: math.unit(0.5, "inches")
  33597. },
  33598. {
  33599. name: "Normal",
  33600. height: math.unit(5 + 8/12, "feet"),
  33601. default: true
  33602. },
  33603. {
  33604. name: "Macro",
  33605. height: math.unit(250, "feet")
  33606. },
  33607. {
  33608. name: "Really High",
  33609. height: math.unit(420, "feet")
  33610. },
  33611. ]
  33612. ))
  33613. characterMakers.push(() => makeCharacter(
  33614. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33615. {
  33616. front: {
  33617. height: math.unit(5, "meters"),
  33618. weight: math.unit(292000000000000, "kg"),
  33619. name: "Front",
  33620. image: {
  33621. source: "./media/characters/devourer/front.svg",
  33622. extra: 1800/1733,
  33623. bottom: 211/2011
  33624. }
  33625. },
  33626. maw: {
  33627. height: math.unit(1.1, "meter"),
  33628. name: "Maw",
  33629. image: {
  33630. source: "./media/characters/devourer/maw.svg"
  33631. }
  33632. },
  33633. },
  33634. [
  33635. {
  33636. name: "Small",
  33637. height: math.unit(3, "meters")
  33638. },
  33639. {
  33640. name: "Large",
  33641. height: math.unit(5, "meters"),
  33642. default: true
  33643. },
  33644. ]
  33645. ))
  33646. characterMakers.push(() => makeCharacter(
  33647. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33648. {
  33649. front: {
  33650. height: math.unit(6, "feet"),
  33651. weight: math.unit(400, "lb"),
  33652. name: "Front",
  33653. image: {
  33654. source: "./media/characters/ellarby/front.svg",
  33655. extra: 1909/1763,
  33656. bottom: 80/1989
  33657. }
  33658. },
  33659. back: {
  33660. height: math.unit(6, "feet"),
  33661. weight: math.unit(400, "lb"),
  33662. name: "Back",
  33663. image: {
  33664. source: "./media/characters/ellarby/back.svg",
  33665. extra: 1914/1784,
  33666. bottom: 172/2086
  33667. }
  33668. },
  33669. },
  33670. [
  33671. {
  33672. name: "Mischief",
  33673. height: math.unit(18, "inches")
  33674. },
  33675. {
  33676. name: "Trouble",
  33677. height: math.unit(12, "feet")
  33678. },
  33679. {
  33680. name: "Havoc",
  33681. height: math.unit(200, "feet"),
  33682. default: true
  33683. },
  33684. {
  33685. name: "Pandemonium",
  33686. height: math.unit(1, "mile")
  33687. },
  33688. {
  33689. name: "Catastrophe",
  33690. height: math.unit(100, "miles")
  33691. },
  33692. ]
  33693. ))
  33694. characterMakers.push(() => makeCharacter(
  33695. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33696. {
  33697. front: {
  33698. height: math.unit(4.7, "meters"),
  33699. weight: math.unit(6500, "kg"),
  33700. name: "Front",
  33701. image: {
  33702. source: "./media/characters/vex/front.svg",
  33703. extra: 1288/1140,
  33704. bottom: 100/1388
  33705. }
  33706. },
  33707. },
  33708. [
  33709. {
  33710. name: "Normal",
  33711. height: math.unit(4.7, "meters"),
  33712. default: true
  33713. },
  33714. ]
  33715. ))
  33716. characterMakers.push(() => makeCharacter(
  33717. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33718. {
  33719. normal: {
  33720. height: math.unit(6, "feet"),
  33721. weight: math.unit(350, "lb"),
  33722. name: "Normal",
  33723. image: {
  33724. source: "./media/characters/teshy/normal.svg",
  33725. extra: 1795/1735,
  33726. bottom: 16/1811
  33727. }
  33728. },
  33729. monsterFront: {
  33730. height: math.unit(12, "feet"),
  33731. weight: math.unit(4700, "lb"),
  33732. name: "Monster (Front)",
  33733. image: {
  33734. source: "./media/characters/teshy/monster-front.svg",
  33735. extra: 2042/2034,
  33736. bottom: 128/2170
  33737. }
  33738. },
  33739. monsterSide: {
  33740. height: math.unit(12, "feet"),
  33741. weight: math.unit(4700, "lb"),
  33742. name: "Monster (Side)",
  33743. image: {
  33744. source: "./media/characters/teshy/monster-side.svg",
  33745. extra: 2067/2056,
  33746. bottom: 70/2137
  33747. }
  33748. },
  33749. monsterBack: {
  33750. height: math.unit(12, "feet"),
  33751. weight: math.unit(4700, "lb"),
  33752. name: "Monster (Back)",
  33753. image: {
  33754. source: "./media/characters/teshy/monster-back.svg",
  33755. extra: 1921/1914,
  33756. bottom: 171/2092
  33757. }
  33758. },
  33759. },
  33760. [
  33761. {
  33762. name: "Normal",
  33763. height: math.unit(6, "feet"),
  33764. default: true
  33765. },
  33766. ]
  33767. ))
  33768. characterMakers.push(() => makeCharacter(
  33769. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33770. {
  33771. front: {
  33772. height: math.unit(6, "feet"),
  33773. name: "Front",
  33774. image: {
  33775. source: "./media/characters/ramey/front.svg",
  33776. extra: 790/787,
  33777. bottom: 27/817
  33778. }
  33779. },
  33780. },
  33781. [
  33782. {
  33783. name: "Normal",
  33784. height: math.unit(6, "feet"),
  33785. default: true
  33786. },
  33787. ]
  33788. ))
  33789. characterMakers.push(() => makeCharacter(
  33790. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33791. {
  33792. front: {
  33793. height: math.unit(5 + 5/12, "feet"),
  33794. weight: math.unit(120, "lb"),
  33795. name: "Front",
  33796. image: {
  33797. source: "./media/characters/phirae/front.svg",
  33798. extra: 2491/2436,
  33799. bottom: 38/2529
  33800. }
  33801. },
  33802. },
  33803. [
  33804. {
  33805. name: "Normal",
  33806. height: math.unit(5 + 5/12, "feet"),
  33807. default: true
  33808. },
  33809. ]
  33810. ))
  33811. characterMakers.push(() => makeCharacter(
  33812. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33813. {
  33814. front: {
  33815. height: math.unit(6, "feet"),
  33816. weight: math.unit(150, "lb"),
  33817. name: "Front",
  33818. image: {
  33819. source: "./media/characters/stagglas/front.svg",
  33820. extra: 962/882,
  33821. bottom: 53/1015
  33822. }
  33823. },
  33824. },
  33825. [
  33826. {
  33827. name: "Normal",
  33828. height: math.unit(5 + 3/12, "feet"),
  33829. default: true
  33830. },
  33831. ]
  33832. ))
  33833. characterMakers.push(() => makeCharacter(
  33834. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33835. {
  33836. front: {
  33837. height: math.unit(5 + 4/12, "feet"),
  33838. weight: math.unit(145, "lb"),
  33839. name: "Front",
  33840. image: {
  33841. source: "./media/characters/starra/front.svg",
  33842. extra: 1790/1691,
  33843. bottom: 91/1881
  33844. }
  33845. },
  33846. },
  33847. [
  33848. {
  33849. name: "Normal",
  33850. height: math.unit(5 + 4/12, "feet"),
  33851. default: true
  33852. },
  33853. ]
  33854. ))
  33855. characterMakers.push(() => makeCharacter(
  33856. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33857. {
  33858. front: {
  33859. height: math.unit(2.2, "meters"),
  33860. name: "Front",
  33861. image: {
  33862. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33863. extra: 1194/1005,
  33864. bottom: 25/1219
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Normal",
  33871. height: math.unit(2.2, "meters"),
  33872. default: true
  33873. },
  33874. ]
  33875. ))
  33876. characterMakers.push(() => makeCharacter(
  33877. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33878. {
  33879. side: {
  33880. height: math.unit(8 + 2/12, "feet"),
  33881. weight: math.unit(1240, "lb"),
  33882. name: "Side",
  33883. image: {
  33884. source: "./media/characters/mika-valentine/side.svg",
  33885. extra: 2670/2501,
  33886. bottom: 250/2920
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(8 + 2/12, "feet"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33900. {
  33901. front: {
  33902. height: math.unit(7 + 2/12, "feet"),
  33903. name: "Front",
  33904. image: {
  33905. source: "./media/characters/xoltol/front.svg",
  33906. extra: 2212/2124,
  33907. bottom: 84/2296
  33908. }
  33909. },
  33910. side: {
  33911. height: math.unit(7 + 2/12, "feet"),
  33912. name: "Side",
  33913. image: {
  33914. source: "./media/characters/xoltol/side.svg",
  33915. extra: 2273/2197,
  33916. bottom: 26/2299
  33917. }
  33918. },
  33919. hand: {
  33920. height: math.unit(2.5, "feet"),
  33921. name: "Hand",
  33922. image: {
  33923. source: "./media/characters/xoltol/hand.svg"
  33924. }
  33925. },
  33926. },
  33927. [
  33928. {
  33929. name: "Small-ish",
  33930. height: math.unit(5 + 11/12, "feet")
  33931. },
  33932. {
  33933. name: "Normal",
  33934. height: math.unit(7 + 2/12, "feet")
  33935. },
  33936. {
  33937. name: "\"Macro\"",
  33938. height: math.unit(14 + 9/12, "feet"),
  33939. default: true
  33940. },
  33941. {
  33942. name: "Alternate Height",
  33943. height: math.unit(20, "feet")
  33944. },
  33945. {
  33946. name: "Actually Macro",
  33947. height: math.unit(100, "feet")
  33948. },
  33949. ]
  33950. ))
  33951. characterMakers.push(() => makeCharacter(
  33952. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33953. {
  33954. front: {
  33955. height: math.unit(5 + 2/12, "feet"),
  33956. name: "Front",
  33957. image: {
  33958. source: "./media/characters/kotetsu-redwood/front.svg",
  33959. extra: 1053/942,
  33960. bottom: 60/1113
  33961. }
  33962. },
  33963. },
  33964. [
  33965. {
  33966. name: "Normal",
  33967. height: math.unit(5 + 2/12, "feet"),
  33968. default: true
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33974. {
  33975. front: {
  33976. height: math.unit(2.4, "meters"),
  33977. weight: math.unit(125, "kg"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/lilith/front.svg",
  33981. extra: 1590/1513,
  33982. bottom: 203/1793
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Humanoid",
  33989. height: math.unit(2.4, "meters")
  33990. },
  33991. {
  33992. name: "Normal",
  33993. height: math.unit(6, "meters"),
  33994. default: true
  33995. },
  33996. {
  33997. name: "Largest",
  33998. height: math.unit(55, "meters")
  33999. },
  34000. ]
  34001. ))
  34002. characterMakers.push(() => makeCharacter(
  34003. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34004. {
  34005. front: {
  34006. height: math.unit(8 + 4/12, "feet"),
  34007. weight: math.unit(535, "lb"),
  34008. name: "Front",
  34009. image: {
  34010. source: "./media/characters/beh'kah-bolger/front.svg",
  34011. extra: 1660/1603,
  34012. bottom: 37/1697
  34013. }
  34014. },
  34015. },
  34016. [
  34017. {
  34018. name: "Normal",
  34019. height: math.unit(8 + 4/12, "feet"),
  34020. default: true
  34021. },
  34022. {
  34023. name: "Kaiju",
  34024. height: math.unit(250, "feet")
  34025. },
  34026. {
  34027. name: "Still Growing",
  34028. height: math.unit(10, "miles")
  34029. },
  34030. {
  34031. name: "Continental",
  34032. height: math.unit(5000, "miles")
  34033. },
  34034. {
  34035. name: "Final Form",
  34036. height: math.unit(2500000, "miles")
  34037. },
  34038. ]
  34039. ))
  34040. characterMakers.push(() => makeCharacter(
  34041. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34042. {
  34043. front: {
  34044. height: math.unit(7 + 2/12, "feet"),
  34045. weight: math.unit(230, "kg"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/tatyana-milewska/front.svg",
  34049. extra: 1199/1150,
  34050. bottom: 86/1285
  34051. }
  34052. },
  34053. },
  34054. [
  34055. {
  34056. name: "Normal",
  34057. height: math.unit(7 + 2/12, "feet"),
  34058. default: true
  34059. },
  34060. {
  34061. name: "Big",
  34062. height: math.unit(12, "feet")
  34063. },
  34064. {
  34065. name: "Minimacro",
  34066. height: math.unit(20, "feet")
  34067. },
  34068. {
  34069. name: "Macro",
  34070. height: math.unit(120, "feet")
  34071. },
  34072. ]
  34073. ))
  34074. characterMakers.push(() => makeCharacter(
  34075. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34076. {
  34077. front: {
  34078. height: math.unit(7 + 8/12, "feet"),
  34079. weight: math.unit(152, "kg"),
  34080. name: "Front",
  34081. image: {
  34082. source: "./media/characters/helen-arri/front.svg",
  34083. extra: 440/423,
  34084. bottom: 14/454
  34085. }
  34086. },
  34087. back: {
  34088. height: math.unit(7 + 8/12, "feet"),
  34089. weight: math.unit(152, "kg"),
  34090. name: "Back",
  34091. image: {
  34092. source: "./media/characters/helen-arri/back.svg",
  34093. extra: 443/426,
  34094. bottom: 8/451
  34095. }
  34096. },
  34097. },
  34098. [
  34099. {
  34100. name: "Normal",
  34101. height: math.unit(7 + 8/12, "feet"),
  34102. default: true
  34103. },
  34104. {
  34105. name: "Big",
  34106. height: math.unit(14, "feet")
  34107. },
  34108. {
  34109. name: "Minimacro",
  34110. height: math.unit(24, "feet")
  34111. },
  34112. {
  34113. name: "Macro",
  34114. height: math.unit(140, "feet")
  34115. },
  34116. ]
  34117. ))
  34118. characterMakers.push(() => makeCharacter(
  34119. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34120. {
  34121. front: {
  34122. height: math.unit(6, "meters"),
  34123. name: "Front",
  34124. image: {
  34125. source: "./media/characters/ehanu-rehu/front.svg",
  34126. extra: 1800/1800,
  34127. bottom: 59/1859
  34128. }
  34129. },
  34130. },
  34131. [
  34132. {
  34133. name: "Normal",
  34134. height: math.unit(6, "meters"),
  34135. default: true
  34136. },
  34137. ]
  34138. ))
  34139. characterMakers.push(() => makeCharacter(
  34140. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34141. {
  34142. front: {
  34143. height: math.unit(7 + 3/12, "feet"),
  34144. name: "Front",
  34145. image: {
  34146. source: "./media/characters/renholder/front.svg",
  34147. extra: 3096/2960,
  34148. bottom: 250/3346
  34149. }
  34150. },
  34151. },
  34152. [
  34153. {
  34154. name: "Normal Bat",
  34155. height: math.unit(7 + 3/12, "feet"),
  34156. default: true
  34157. },
  34158. {
  34159. name: "Slightly Tall Bat",
  34160. height: math.unit(100, "feet")
  34161. },
  34162. {
  34163. name: "Big Bat",
  34164. height: math.unit(1000, "feet")
  34165. },
  34166. {
  34167. name: "City-Sized Bat",
  34168. height: math.unit(200000, "feet")
  34169. },
  34170. {
  34171. name: "Bigger Bat",
  34172. height: math.unit(10000, "miles")
  34173. },
  34174. {
  34175. name: "Solar Sized Bat",
  34176. height: math.unit(100, "AU")
  34177. },
  34178. {
  34179. name: "Galactic Bat",
  34180. height: math.unit(200000, "lightyears")
  34181. },
  34182. {
  34183. name: "Universally Known Bat",
  34184. height: math.unit(1, "universe")
  34185. },
  34186. ]
  34187. ))
  34188. characterMakers.push(() => makeCharacter(
  34189. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34190. {
  34191. front: {
  34192. height: math.unit(6 + 11/12, "feet"),
  34193. weight: math.unit(250, "lb"),
  34194. name: "Front",
  34195. image: {
  34196. source: "./media/characters/cookiecat/front.svg",
  34197. extra: 893/827,
  34198. bottom: 14/907
  34199. }
  34200. },
  34201. },
  34202. [
  34203. {
  34204. name: "Micro",
  34205. height: math.unit(3, "inches")
  34206. },
  34207. {
  34208. name: "Normal",
  34209. height: math.unit(6 + 11/12, "feet"),
  34210. default: true
  34211. },
  34212. {
  34213. name: "Macro",
  34214. height: math.unit(100, "feet")
  34215. },
  34216. {
  34217. name: "Macro+",
  34218. height: math.unit(404, "feet")
  34219. },
  34220. {
  34221. name: "Megamacro",
  34222. height: math.unit(165, "miles")
  34223. },
  34224. {
  34225. name: "Planetary",
  34226. height: math.unit(4600, "miles")
  34227. },
  34228. ]
  34229. ))
  34230. characterMakers.push(() => makeCharacter(
  34231. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34232. {
  34233. front: {
  34234. height: math.unit(10 + 3/12, "feet"),
  34235. weight: math.unit(1500, "lb"),
  34236. name: "Front",
  34237. image: {
  34238. source: "./media/characters/tux-kusanagi/front.svg",
  34239. extra: 944/840,
  34240. bottom: 39/983
  34241. }
  34242. },
  34243. back: {
  34244. height: math.unit(10 + 3/12, "feet"),
  34245. weight: math.unit(1500, "lb"),
  34246. name: "Back",
  34247. image: {
  34248. source: "./media/characters/tux-kusanagi/back.svg",
  34249. extra: 941/842,
  34250. bottom: 28/969
  34251. }
  34252. },
  34253. rump: {
  34254. height: math.unit(5.25, "feet"),
  34255. name: "Rump",
  34256. image: {
  34257. source: "./media/characters/tux-kusanagi/rump.svg"
  34258. }
  34259. },
  34260. beak: {
  34261. height: math.unit(1.54, "feet"),
  34262. name: "Beak",
  34263. image: {
  34264. source: "./media/characters/tux-kusanagi/beak.svg"
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Normal",
  34271. height: math.unit(10 + 3/12, "feet"),
  34272. default: true
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34278. {
  34279. front: {
  34280. height: math.unit(58, "feet"),
  34281. weight: math.unit(200, "tons"),
  34282. name: "Front",
  34283. image: {
  34284. source: "./media/characters/uzarmazari/front.svg",
  34285. extra: 1575/1455,
  34286. bottom: 152/1727
  34287. }
  34288. },
  34289. back: {
  34290. height: math.unit(58, "feet"),
  34291. weight: math.unit(200, "tons"),
  34292. name: "Back",
  34293. image: {
  34294. source: "./media/characters/uzarmazari/back.svg",
  34295. extra: 1585/1510,
  34296. bottom: 157/1742
  34297. }
  34298. },
  34299. head: {
  34300. height: math.unit(26, "feet"),
  34301. name: "Head",
  34302. image: {
  34303. source: "./media/characters/uzarmazari/head.svg"
  34304. }
  34305. },
  34306. },
  34307. [
  34308. {
  34309. name: "Normal",
  34310. height: math.unit(58, "feet"),
  34311. default: true
  34312. },
  34313. ]
  34314. ))
  34315. characterMakers.push(() => makeCharacter(
  34316. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34317. {
  34318. side: {
  34319. height: math.unit(15, "feet"),
  34320. name: "Side",
  34321. image: {
  34322. source: "./media/characters/akitu/side.svg",
  34323. extra: 1421/1321,
  34324. bottom: 157/1578
  34325. }
  34326. },
  34327. front: {
  34328. height: math.unit(15, "feet"),
  34329. name: "Front",
  34330. image: {
  34331. source: "./media/characters/akitu/front.svg",
  34332. extra: 1435/1326,
  34333. bottom: 232/1667
  34334. }
  34335. },
  34336. },
  34337. [
  34338. {
  34339. name: "Normal",
  34340. height: math.unit(15, "feet"),
  34341. default: true
  34342. },
  34343. ]
  34344. ))
  34345. characterMakers.push(() => makeCharacter(
  34346. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34347. {
  34348. front: {
  34349. height: math.unit(10 + 8/12, "feet"),
  34350. name: "Front",
  34351. image: {
  34352. source: "./media/characters/azalie-croixland/front.svg",
  34353. extra: 1972/1856,
  34354. bottom: 31/2003
  34355. }
  34356. },
  34357. },
  34358. [
  34359. {
  34360. name: "Original Height",
  34361. height: math.unit(5 + 4/12, "feet")
  34362. },
  34363. {
  34364. name: "Normal Height",
  34365. height: math.unit(10 + 8/12, "feet"),
  34366. default: true
  34367. },
  34368. ]
  34369. ))
  34370. characterMakers.push(() => makeCharacter(
  34371. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34372. {
  34373. side: {
  34374. height: math.unit(7 + 1/12, "feet"),
  34375. weight: math.unit(245, "lb"),
  34376. name: "Side",
  34377. image: {
  34378. source: "./media/characters/kavus-kazian/side.svg",
  34379. extra: 349/342,
  34380. bottom: 15/364
  34381. }
  34382. },
  34383. },
  34384. [
  34385. {
  34386. name: "Normal",
  34387. height: math.unit(7 + 1/12, "feet"),
  34388. default: true
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34394. {
  34395. normal: {
  34396. height: math.unit(5 + 11/12, "feet"),
  34397. name: "Normal",
  34398. image: {
  34399. source: "./media/characters/moonlight-rose/normal.svg",
  34400. extra: 1979/1835,
  34401. bottom: 14/1993
  34402. }
  34403. },
  34404. demon: {
  34405. height: math.unit(5, "km"),
  34406. name: "Demon",
  34407. image: {
  34408. source: "./media/characters/moonlight-rose/demon.svg",
  34409. extra: 986/916,
  34410. bottom: 28/1014
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "\"Natural\" height",
  34417. height: math.unit(5 + 11/12, "feet")
  34418. },
  34419. {
  34420. name: "Comfortable Size",
  34421. height: math.unit(40, "meters")
  34422. },
  34423. {
  34424. name: "Common Size",
  34425. height: math.unit(50, "km"),
  34426. default: true
  34427. },
  34428. {
  34429. name: "Demonic",
  34430. height: math.unit(1.24415e+21, "meters")
  34431. },
  34432. ]
  34433. ))
  34434. characterMakers.push(() => makeCharacter(
  34435. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34436. {
  34437. front: {
  34438. height: math.unit(16, "feet"),
  34439. weight: math.unit(610, "kg"),
  34440. name: "Front",
  34441. image: {
  34442. source: "./media/characters/huckle/front.svg",
  34443. extra: 1731/1625,
  34444. bottom: 33/1764
  34445. }
  34446. },
  34447. back: {
  34448. height: math.unit(16, "feet"),
  34449. weight: math.unit(610, "kg"),
  34450. name: "Back",
  34451. image: {
  34452. source: "./media/characters/huckle/back.svg",
  34453. extra: 1738/1651,
  34454. bottom: 37/1775
  34455. }
  34456. },
  34457. laughing: {
  34458. height: math.unit(3.75, "feet"),
  34459. name: "Laughing",
  34460. image: {
  34461. source: "./media/characters/huckle/laughing.svg"
  34462. }
  34463. },
  34464. angry: {
  34465. height: math.unit(4.15, "feet"),
  34466. name: "Angry",
  34467. image: {
  34468. source: "./media/characters/huckle/angry.svg"
  34469. }
  34470. },
  34471. },
  34472. [
  34473. {
  34474. name: "Normal",
  34475. height: math.unit(16, "feet"),
  34476. default: true
  34477. },
  34478. {
  34479. name: "Mini Macro",
  34480. height: math.unit(463, "feet")
  34481. },
  34482. {
  34483. name: "Macro",
  34484. height: math.unit(1680, "meters")
  34485. },
  34486. {
  34487. name: "Mega Macro",
  34488. height: math.unit(175, "km")
  34489. },
  34490. {
  34491. name: "Terra Macro",
  34492. height: math.unit(32, "gigameters")
  34493. },
  34494. {
  34495. name: "Multiverse+",
  34496. height: math.unit(2.56e23, "yottameters")
  34497. },
  34498. ]
  34499. ))
  34500. characterMakers.push(() => makeCharacter(
  34501. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34502. {
  34503. front: {
  34504. height: math.unit(6 + 9/12, "feet"),
  34505. weight: math.unit(280, "lb"),
  34506. name: "Front",
  34507. image: {
  34508. source: "./media/characters/candy/front.svg",
  34509. extra: 234/217,
  34510. bottom: 11/245
  34511. }
  34512. },
  34513. },
  34514. [
  34515. {
  34516. name: "Really Small",
  34517. height: math.unit(0.1, "nm")
  34518. },
  34519. {
  34520. name: "Micro",
  34521. height: math.unit(2, "inches")
  34522. },
  34523. {
  34524. name: "Normal",
  34525. height: math.unit(6 + 9/12, "feet"),
  34526. default: true
  34527. },
  34528. {
  34529. name: "Small Macro",
  34530. height: math.unit(69, "feet")
  34531. },
  34532. {
  34533. name: "Macro",
  34534. height: math.unit(160, "feet")
  34535. },
  34536. {
  34537. name: "Megamacro",
  34538. height: math.unit(22000, "miles")
  34539. },
  34540. {
  34541. name: "Gigamacro",
  34542. height: math.unit(50000, "miles")
  34543. },
  34544. ]
  34545. ))
  34546. characterMakers.push(() => makeCharacter(
  34547. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34548. {
  34549. front: {
  34550. height: math.unit(4, "feet"),
  34551. weight: math.unit(90, "lb"),
  34552. name: "Front",
  34553. image: {
  34554. source: "./media/characters/joey-mcdonald/front.svg",
  34555. extra: 1059/852,
  34556. bottom: 33/1092
  34557. }
  34558. },
  34559. back: {
  34560. height: math.unit(4, "feet"),
  34561. weight: math.unit(90, "lb"),
  34562. name: "Back",
  34563. image: {
  34564. source: "./media/characters/joey-mcdonald/back.svg",
  34565. extra: 1077/879,
  34566. bottom: 5/1082
  34567. }
  34568. },
  34569. },
  34570. [
  34571. {
  34572. name: "Normal",
  34573. height: math.unit(4, "feet"),
  34574. default: true
  34575. },
  34576. ]
  34577. ))
  34578. characterMakers.push(() => makeCharacter(
  34579. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34580. {
  34581. front: {
  34582. height: math.unit(12 + 6/12, "feet"),
  34583. name: "Front",
  34584. image: {
  34585. source: "./media/characters/kass-lockheed/front.svg",
  34586. extra: 354/343,
  34587. bottom: 9/363
  34588. }
  34589. },
  34590. back: {
  34591. height: math.unit(12 + 6/12, "feet"),
  34592. name: "Back",
  34593. image: {
  34594. source: "./media/characters/kass-lockheed/back.svg",
  34595. extra: 364/352,
  34596. bottom: 3/367
  34597. }
  34598. },
  34599. dick: {
  34600. height: math.unit(3.12, "feet"),
  34601. name: "Dick",
  34602. image: {
  34603. source: "./media/characters/kass-lockheed/dick.svg"
  34604. }
  34605. },
  34606. head: {
  34607. height: math.unit(2.6, "feet"),
  34608. name: "Head",
  34609. image: {
  34610. source: "./media/characters/kass-lockheed/head.svg"
  34611. }
  34612. },
  34613. bleh: {
  34614. height: math.unit(2.85, "feet"),
  34615. name: "Bleh",
  34616. image: {
  34617. source: "./media/characters/kass-lockheed/bleh.svg"
  34618. }
  34619. },
  34620. smug: {
  34621. height: math.unit(2.85, "feet"),
  34622. name: "Smug",
  34623. image: {
  34624. source: "./media/characters/kass-lockheed/smug.svg"
  34625. }
  34626. },
  34627. },
  34628. [
  34629. {
  34630. name: "Normal",
  34631. height: math.unit(12 + 6/12, "feet"),
  34632. default: true
  34633. },
  34634. ]
  34635. ))
  34636. characterMakers.push(() => makeCharacter(
  34637. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34638. {
  34639. front: {
  34640. height: math.unit(6 + 2/12, "feet"),
  34641. name: "Front",
  34642. image: {
  34643. source: "./media/characters/taylor/front.svg",
  34644. extra: 639/495,
  34645. bottom: 12/651
  34646. }
  34647. },
  34648. },
  34649. [
  34650. {
  34651. name: "Normal",
  34652. height: math.unit(6 + 2/12, "feet"),
  34653. default: true
  34654. },
  34655. {
  34656. name: "Big",
  34657. height: math.unit(15, "feet")
  34658. },
  34659. {
  34660. name: "Lorg",
  34661. height: math.unit(80, "feet")
  34662. },
  34663. {
  34664. name: "Too Lorg",
  34665. height: math.unit(120, "feet")
  34666. },
  34667. ]
  34668. ))
  34669. characterMakers.push(() => makeCharacter(
  34670. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34671. {
  34672. front: {
  34673. height: math.unit(15, "feet"),
  34674. name: "Front",
  34675. image: {
  34676. source: "./media/characters/kaizer/front.svg",
  34677. extra: 1612/1436,
  34678. bottom: 43/1655
  34679. }
  34680. },
  34681. },
  34682. [
  34683. {
  34684. name: "Normal",
  34685. height: math.unit(15, "feet"),
  34686. default: true
  34687. },
  34688. ]
  34689. ))
  34690. characterMakers.push(() => makeCharacter(
  34691. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34692. {
  34693. front: {
  34694. height: math.unit(2, "feet"),
  34695. weight: math.unit(30, "lb"),
  34696. name: "Front",
  34697. image: {
  34698. source: "./media/characters/sandy/front.svg",
  34699. extra: 1439/1307,
  34700. bottom: 194/1633
  34701. }
  34702. },
  34703. },
  34704. [
  34705. {
  34706. name: "Normal",
  34707. height: math.unit(2, "feet"),
  34708. default: true
  34709. },
  34710. ]
  34711. ))
  34712. characterMakers.push(() => makeCharacter(
  34713. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34714. {
  34715. front: {
  34716. height: math.unit(3, "feet"),
  34717. name: "Front",
  34718. image: {
  34719. source: "./media/characters/mellvi/front.svg",
  34720. extra: 1831/1630,
  34721. bottom: 58/1889
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Normal",
  34728. height: math.unit(3, "feet"),
  34729. default: true
  34730. },
  34731. ]
  34732. ))
  34733. characterMakers.push(() => makeCharacter(
  34734. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34735. {
  34736. front: {
  34737. height: math.unit(5 + 11/12, "feet"),
  34738. weight: math.unit(200, "lb"),
  34739. name: "Front",
  34740. image: {
  34741. source: "./media/characters/shirou/front.svg",
  34742. extra: 2491/2383,
  34743. bottom: 189/2680
  34744. }
  34745. },
  34746. back: {
  34747. height: math.unit(5 + 11/12, "feet"),
  34748. weight: math.unit(200, "lb"),
  34749. name: "Back",
  34750. image: {
  34751. source: "./media/characters/shirou/back.svg",
  34752. extra: 2554/2450,
  34753. bottom: 76/2630
  34754. }
  34755. },
  34756. },
  34757. [
  34758. {
  34759. name: "Normal",
  34760. height: math.unit(5 + 11/12, "feet"),
  34761. default: true
  34762. },
  34763. ]
  34764. ))
  34765. characterMakers.push(() => makeCharacter(
  34766. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34767. {
  34768. front: {
  34769. height: math.unit(6 + 3/12, "feet"),
  34770. weight: math.unit(177, "lb"),
  34771. name: "Front",
  34772. image: {
  34773. source: "./media/characters/noryu/front.svg",
  34774. extra: 973/885,
  34775. bottom: 10/983
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Normal",
  34782. height: math.unit(6 + 3/12, "feet"),
  34783. default: true
  34784. },
  34785. ]
  34786. ))
  34787. characterMakers.push(() => makeCharacter(
  34788. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34789. {
  34790. front: {
  34791. height: math.unit(5 + 6/12, "feet"),
  34792. weight: math.unit(170, "lb"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/mevolas-rubenido/front.svg",
  34796. extra: 2109/1901,
  34797. bottom: 96/2205
  34798. }
  34799. },
  34800. },
  34801. [
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(5 + 6/12, "feet"),
  34805. default: true
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(100, "feet"),
  34814. name: "Front",
  34815. image: {
  34816. source: "./media/characters/dee/front.svg",
  34817. extra: 2153/2036,
  34818. bottom: 59/2212
  34819. }
  34820. },
  34821. back: {
  34822. height: math.unit(100, "feet"),
  34823. name: "Back",
  34824. image: {
  34825. source: "./media/characters/dee/back.svg",
  34826. extra: 2183/2058,
  34827. bottom: 75/2258
  34828. }
  34829. },
  34830. foot: {
  34831. height: math.unit(19.43, "feet"),
  34832. name: "Foot",
  34833. image: {
  34834. source: "./media/characters/dee/foot.svg"
  34835. }
  34836. },
  34837. hoof: {
  34838. height: math.unit(20.6, "feet"),
  34839. name: "Hoof",
  34840. image: {
  34841. source: "./media/characters/dee/hoof.svg"
  34842. }
  34843. },
  34844. },
  34845. [
  34846. {
  34847. name: "Macro",
  34848. height: math.unit(100, "feet"),
  34849. default: true
  34850. },
  34851. ]
  34852. ))
  34853. characterMakers.push(() => makeCharacter(
  34854. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34855. {
  34856. front: {
  34857. height: math.unit(5 + 6/12, "feet"),
  34858. name: "Front",
  34859. image: {
  34860. source: "./media/characters/teh/front.svg",
  34861. extra: 1002/847,
  34862. bottom: 62/1064
  34863. }
  34864. },
  34865. },
  34866. [
  34867. {
  34868. name: "Normal",
  34869. height: math.unit(5 + 6/12, "feet"),
  34870. default: true
  34871. },
  34872. ]
  34873. ))
  34874. characterMakers.push(() => makeCharacter(
  34875. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34876. {
  34877. side: {
  34878. height: math.unit(6 + 1/12, "feet"),
  34879. weight: math.unit(204, "lb"),
  34880. name: "Side",
  34881. image: {
  34882. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34883. extra: 974/775,
  34884. bottom: 169/1143
  34885. }
  34886. },
  34887. sitting: {
  34888. height: math.unit(6 + 2/12, "feet"),
  34889. weight: math.unit(204, "lb"),
  34890. name: "Sitting",
  34891. image: {
  34892. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34893. extra: 1175/964,
  34894. bottom: 378/1553
  34895. }
  34896. },
  34897. },
  34898. [
  34899. {
  34900. name: "Normal",
  34901. height: math.unit(6 + 1/12, "feet"),
  34902. default: true
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34908. {
  34909. front: {
  34910. height: math.unit(6, "inches"),
  34911. name: "Front",
  34912. image: {
  34913. source: "./media/characters/tululi/front.svg",
  34914. extra: 1997/1876,
  34915. bottom: 20/2017
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Normal",
  34922. height: math.unit(6, "inches"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34929. {
  34930. front: {
  34931. height: math.unit(4 + 1/12, "feet"),
  34932. name: "Front",
  34933. image: {
  34934. source: "./media/characters/star/front.svg",
  34935. extra: 1493/1189,
  34936. bottom: 48/1541
  34937. }
  34938. },
  34939. },
  34940. [
  34941. {
  34942. name: "Normal",
  34943. height: math.unit(4 + 1/12, "feet"),
  34944. default: true
  34945. },
  34946. ]
  34947. ))
  34948. characterMakers.push(() => makeCharacter(
  34949. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34950. {
  34951. front: {
  34952. height: math.unit(6 + 3/12, "feet"),
  34953. name: "Front",
  34954. image: {
  34955. source: "./media/characters/comet/front.svg",
  34956. extra: 1681/1462,
  34957. bottom: 26/1707
  34958. }
  34959. },
  34960. },
  34961. [
  34962. {
  34963. name: "Normal",
  34964. height: math.unit(6 + 3/12, "feet"),
  34965. default: true
  34966. },
  34967. ]
  34968. ))
  34969. characterMakers.push(() => makeCharacter(
  34970. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34971. {
  34972. front: {
  34973. height: math.unit(950, "feet"),
  34974. name: "Front",
  34975. image: {
  34976. source: "./media/characters/vortex/front.svg",
  34977. extra: 1497/1434,
  34978. bottom: 56/1553
  34979. }
  34980. },
  34981. maw: {
  34982. height: math.unit(285, "feet"),
  34983. name: "Maw",
  34984. image: {
  34985. source: "./media/characters/vortex/maw.svg"
  34986. }
  34987. },
  34988. },
  34989. [
  34990. {
  34991. name: "Macro",
  34992. height: math.unit(950, "feet"),
  34993. default: true
  34994. },
  34995. ]
  34996. ))
  34997. characterMakers.push(() => makeCharacter(
  34998. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34999. {
  35000. front: {
  35001. height: math.unit(600, "feet"),
  35002. weight: math.unit(0.02, "grams"),
  35003. name: "Front",
  35004. image: {
  35005. source: "./media/characters/doodle/front.svg",
  35006. extra: 1578/1413,
  35007. bottom: 37/1615
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Macro",
  35014. height: math.unit(600, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(6 + 6/12, "feet"),
  35024. name: "Front",
  35025. image: {
  35026. source: "./media/characters/jai/front.svg",
  35027. extra: 1645/1534,
  35028. bottom: 115/1760
  35029. }
  35030. },
  35031. },
  35032. [
  35033. {
  35034. name: "Normal",
  35035. height: math.unit(6 + 6/12, "feet"),
  35036. default: true
  35037. },
  35038. ]
  35039. ))
  35040. characterMakers.push(() => makeCharacter(
  35041. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35042. {
  35043. front: {
  35044. height: math.unit(6 + 8/12, "feet"),
  35045. name: "Front",
  35046. image: {
  35047. source: "./media/characters/pixel/front.svg",
  35048. extra: 1900/1735,
  35049. bottom: 63/1963
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Normal",
  35056. height: math.unit(6 + 8/12, "feet"),
  35057. default: true
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35063. {
  35064. front: {
  35065. height: math.unit(4 + 11/12, "feet"),
  35066. weight: math.unit(111, "lb"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/rhett/front.svg",
  35070. extra: 1682/1586,
  35071. bottom: 92/1774
  35072. }
  35073. },
  35074. },
  35075. [
  35076. {
  35077. name: "Mini",
  35078. height: math.unit(1 + 1/12, "feet")
  35079. },
  35080. {
  35081. name: "Normal",
  35082. height: math.unit(4 + 11/12, "feet"),
  35083. default: true
  35084. },
  35085. ]
  35086. ))
  35087. characterMakers.push(() => makeCharacter(
  35088. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35089. {
  35090. front: {
  35091. height: math.unit(3 + 3/12, "feet"),
  35092. name: "Front",
  35093. image: {
  35094. source: "./media/characters/penny/front.svg",
  35095. extra: 1406/1311,
  35096. bottom: 26/1432
  35097. }
  35098. },
  35099. },
  35100. [
  35101. {
  35102. name: "Normal",
  35103. height: math.unit(3 + 3/12, "feet"),
  35104. default: true
  35105. },
  35106. ]
  35107. ))
  35108. characterMakers.push(() => makeCharacter(
  35109. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35110. {
  35111. front: {
  35112. height: math.unit(4 + 11/12, "feet"),
  35113. name: "Front",
  35114. image: {
  35115. source: "./media/characters/monty/front.svg",
  35116. extra: 1479/1209,
  35117. bottom: 0/1479
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Normal",
  35124. height: math.unit(4 + 11/12, "feet"),
  35125. default: true
  35126. },
  35127. ]
  35128. ))
  35129. characterMakers.push(() => makeCharacter(
  35130. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35131. {
  35132. front: {
  35133. height: math.unit(8 + 4/12, "feet"),
  35134. name: "Front",
  35135. image: {
  35136. source: "./media/characters/sterling/front.svg",
  35137. extra: 1420/1236,
  35138. bottom: 27/1447
  35139. }
  35140. },
  35141. },
  35142. [
  35143. {
  35144. name: "Normal",
  35145. height: math.unit(8 + 4/12, "feet"),
  35146. default: true
  35147. },
  35148. ]
  35149. ))
  35150. characterMakers.push(() => makeCharacter(
  35151. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35152. {
  35153. front: {
  35154. height: math.unit(15, "feet"),
  35155. name: "Front",
  35156. image: {
  35157. source: "./media/characters/marble/front.svg",
  35158. extra: 973/937,
  35159. bottom: 32/1005
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Normal",
  35166. height: math.unit(15, "feet"),
  35167. default: true
  35168. },
  35169. ]
  35170. ))
  35171. characterMakers.push(() => makeCharacter(
  35172. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35173. {
  35174. front: {
  35175. height: math.unit(3, "inches"),
  35176. name: "Front",
  35177. image: {
  35178. source: "./media/characters/powder/front.svg",
  35179. extra: 1504/1334,
  35180. bottom: 518/2022
  35181. }
  35182. },
  35183. },
  35184. [
  35185. {
  35186. name: "Normal",
  35187. height: math.unit(3, "inches"),
  35188. default: true
  35189. },
  35190. ]
  35191. ))
  35192. characterMakers.push(() => makeCharacter(
  35193. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35194. {
  35195. front: {
  35196. height: math.unit(4 + 5/12, "feet"),
  35197. name: "Front",
  35198. image: {
  35199. source: "./media/characters/joey-raccoon/front.svg",
  35200. extra: 1273/1197,
  35201. bottom: 0/1273
  35202. }
  35203. },
  35204. },
  35205. [
  35206. {
  35207. name: "Normal",
  35208. height: math.unit(4 + 5/12, "feet"),
  35209. default: true
  35210. },
  35211. ]
  35212. ))
  35213. characterMakers.push(() => makeCharacter(
  35214. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35215. {
  35216. front: {
  35217. height: math.unit(8 + 4/12, "feet"),
  35218. name: "Front",
  35219. image: {
  35220. source: "./media/characters/vick/front.svg",
  35221. extra: 2187/2118,
  35222. bottom: 47/2234
  35223. }
  35224. },
  35225. },
  35226. [
  35227. {
  35228. name: "Normal",
  35229. height: math.unit(8 + 4/12, "feet"),
  35230. default: true
  35231. },
  35232. ]
  35233. ))
  35234. characterMakers.push(() => makeCharacter(
  35235. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35236. {
  35237. front: {
  35238. height: math.unit(5 + 5/12, "feet"),
  35239. name: "Front",
  35240. image: {
  35241. source: "./media/characters/mitsy/front.svg",
  35242. extra: 1842/1695,
  35243. bottom: 0/1842
  35244. }
  35245. },
  35246. },
  35247. [
  35248. {
  35249. name: "Normal",
  35250. height: math.unit(5 + 5/12, "feet"),
  35251. default: true
  35252. },
  35253. ]
  35254. ))
  35255. characterMakers.push(() => makeCharacter(
  35256. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35257. {
  35258. front: {
  35259. height: math.unit(6 + 3/12, "feet"),
  35260. name: "Front",
  35261. image: {
  35262. source: "./media/characters/silvy/front.svg",
  35263. extra: 1995/1836,
  35264. bottom: 225/2220
  35265. }
  35266. },
  35267. },
  35268. [
  35269. {
  35270. name: "Normal",
  35271. height: math.unit(6 + 3/12, "feet"),
  35272. default: true
  35273. },
  35274. ]
  35275. ))
  35276. characterMakers.push(() => makeCharacter(
  35277. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35278. {
  35279. front: {
  35280. height: math.unit(3 + 8/12, "feet"),
  35281. name: "Front",
  35282. image: {
  35283. source: "./media/characters/rodney/front.svg",
  35284. extra: 1956/1747,
  35285. bottom: 31/1987
  35286. }
  35287. },
  35288. frontDressed: {
  35289. height: math.unit(2.9, "feet"),
  35290. name: "Front (Dressed)",
  35291. image: {
  35292. source: "./media/characters/rodney/front-dressed.svg",
  35293. extra: 1382/1241,
  35294. bottom: 385/1767
  35295. }
  35296. },
  35297. },
  35298. [
  35299. {
  35300. name: "Normal",
  35301. height: math.unit(3 + 8/12, "feet"),
  35302. default: true
  35303. },
  35304. ]
  35305. ))
  35306. characterMakers.push(() => makeCharacter(
  35307. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35308. {
  35309. front: {
  35310. height: math.unit(5 + 9/12, "feet"),
  35311. weight: math.unit(194, "lbs"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/zakail-sudekai/front.svg",
  35315. extra: 2696/2533,
  35316. bottom: 248/2944
  35317. }
  35318. },
  35319. maw: {
  35320. height: math.unit(1.35, "feet"),
  35321. name: "Maw",
  35322. image: {
  35323. source: "./media/characters/zakail-sudekai/maw.svg"
  35324. }
  35325. },
  35326. },
  35327. [
  35328. {
  35329. name: "Normal",
  35330. height: math.unit(5 + 9/12, "feet"),
  35331. default: true
  35332. },
  35333. ]
  35334. ))
  35335. characterMakers.push(() => makeCharacter(
  35336. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35337. {
  35338. front: {
  35339. height: math.unit(8 + 4/12, "feet"),
  35340. weight: math.unit(1200, "lb"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/eleanor/front.svg",
  35344. extra: 1226/1192,
  35345. bottom: 52/1278
  35346. }
  35347. },
  35348. back: {
  35349. height: math.unit(8 + 4/12, "feet"),
  35350. weight: math.unit(1200, "lb"),
  35351. name: "Back",
  35352. image: {
  35353. source: "./media/characters/eleanor/back.svg",
  35354. extra: 1242/1184,
  35355. bottom: 60/1302
  35356. }
  35357. },
  35358. head: {
  35359. height: math.unit(2.62, "feet"),
  35360. name: "Head",
  35361. image: {
  35362. source: "./media/characters/eleanor/head.svg"
  35363. }
  35364. },
  35365. },
  35366. [
  35367. {
  35368. name: "Normal",
  35369. height: math.unit(8 + 4/12, "feet"),
  35370. default: true
  35371. },
  35372. ]
  35373. ))
  35374. characterMakers.push(() => makeCharacter(
  35375. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35376. {
  35377. front: {
  35378. height: math.unit(8 + 4/12, "feet"),
  35379. weight: math.unit(750, "lb"),
  35380. name: "Front",
  35381. image: {
  35382. source: "./media/characters/tanya/front.svg",
  35383. extra: 1749/1615,
  35384. bottom: 33/1782
  35385. }
  35386. },
  35387. },
  35388. [
  35389. {
  35390. name: "Normal",
  35391. height: math.unit(8 + 4/12, "feet"),
  35392. default: true
  35393. },
  35394. ]
  35395. ))
  35396. characterMakers.push(() => makeCharacter(
  35397. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35398. {
  35399. front: {
  35400. height: math.unit(5, "feet"),
  35401. weight: math.unit(225, "lb"),
  35402. name: "Front",
  35403. image: {
  35404. source: "./media/characters/cindy/front.svg",
  35405. extra: 1320/1250,
  35406. bottom: 42/1362
  35407. }
  35408. },
  35409. frontDressed: {
  35410. height: math.unit(5, "feet"),
  35411. weight: math.unit(225, "lb"),
  35412. name: "Front (Dressed)",
  35413. image: {
  35414. source: "./media/characters/cindy/front-dressed.svg",
  35415. extra: 1320/1250,
  35416. bottom: 42/1362
  35417. }
  35418. },
  35419. back: {
  35420. height: math.unit(5, "feet"),
  35421. weight: math.unit(225, "lb"),
  35422. name: "Back",
  35423. image: {
  35424. source: "./media/characters/cindy/back.svg",
  35425. extra: 1384/1346,
  35426. bottom: 14/1398
  35427. }
  35428. },
  35429. },
  35430. [
  35431. {
  35432. name: "Normal",
  35433. height: math.unit(5, "feet"),
  35434. default: true
  35435. },
  35436. ]
  35437. ))
  35438. characterMakers.push(() => makeCharacter(
  35439. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35440. {
  35441. front: {
  35442. height: math.unit(6 + 9/12, "feet"),
  35443. weight: math.unit(440, "lb"),
  35444. name: "Front",
  35445. image: {
  35446. source: "./media/characters/wilbur-owen/front.svg",
  35447. extra: 1575/1448,
  35448. bottom: 72/1647
  35449. }
  35450. },
  35451. back: {
  35452. height: math.unit(6 + 9/12, "feet"),
  35453. weight: math.unit(440, "lb"),
  35454. name: "Back",
  35455. image: {
  35456. source: "./media/characters/wilbur-owen/back.svg",
  35457. extra: 1578/1445,
  35458. bottom: 36/1614
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Normal",
  35465. height: math.unit(6 + 9/12, "feet"),
  35466. default: true
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35472. {
  35473. front: {
  35474. height: math.unit(6 + 5/12, "feet"),
  35475. weight: math.unit(650, "lb"),
  35476. name: "Front",
  35477. image: {
  35478. source: "./media/characters/keegan/front.svg",
  35479. extra: 2387/2198,
  35480. bottom: 33/2420
  35481. }
  35482. },
  35483. side: {
  35484. height: math.unit(6 + 5/12, "feet"),
  35485. weight: math.unit(650, "lb"),
  35486. name: "Side",
  35487. image: {
  35488. source: "./media/characters/keegan/side.svg",
  35489. extra: 2390/2202,
  35490. bottom: 47/2437
  35491. }
  35492. },
  35493. back: {
  35494. height: math.unit(6 + 5/12, "feet"),
  35495. weight: math.unit(650, "lb"),
  35496. name: "Back",
  35497. image: {
  35498. source: "./media/characters/keegan/back.svg",
  35499. extra: 2418/2268,
  35500. bottom: 15/2433
  35501. }
  35502. },
  35503. frontSfw: {
  35504. height: math.unit(6 + 5/12, "feet"),
  35505. weight: math.unit(650, "lb"),
  35506. name: "Front (SFW)",
  35507. image: {
  35508. source: "./media/characters/keegan/front-sfw.svg",
  35509. extra: 2387/2198,
  35510. bottom: 33/2420
  35511. }
  35512. },
  35513. beans: {
  35514. height: math.unit(1.85, "feet"),
  35515. name: "Beans",
  35516. image: {
  35517. source: "./media/characters/keegan/beans.svg"
  35518. }
  35519. },
  35520. },
  35521. [
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(6 + 5/12, "feet"),
  35525. default: true
  35526. },
  35527. ]
  35528. ))
  35529. characterMakers.push(() => makeCharacter(
  35530. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35531. {
  35532. front: {
  35533. height: math.unit(9, "feet"),
  35534. name: "Front",
  35535. image: {
  35536. source: "./media/characters/colton/front.svg",
  35537. extra: 1589/1326,
  35538. bottom: 139/1728
  35539. }
  35540. },
  35541. },
  35542. [
  35543. {
  35544. name: "Normal",
  35545. height: math.unit(9, "feet"),
  35546. default: true
  35547. },
  35548. ]
  35549. ))
  35550. characterMakers.push(() => makeCharacter(
  35551. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35552. {
  35553. front: {
  35554. height: math.unit(2 + 9/12, "feet"),
  35555. name: "Front",
  35556. image: {
  35557. source: "./media/characters/bora/front.svg",
  35558. extra: 1265/1250,
  35559. bottom: 24/1289
  35560. }
  35561. },
  35562. },
  35563. [
  35564. {
  35565. name: "Normal",
  35566. height: math.unit(2 + 9/12, "feet"),
  35567. default: true
  35568. },
  35569. ]
  35570. ))
  35571. characterMakers.push(() => makeCharacter(
  35572. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35573. {
  35574. front: {
  35575. height: math.unit(8, "feet"),
  35576. name: "Front",
  35577. image: {
  35578. source: "./media/characters/myu-myu/front.svg",
  35579. extra: 1949/1857,
  35580. bottom: 90/2039
  35581. }
  35582. },
  35583. },
  35584. [
  35585. {
  35586. name: "Normal",
  35587. height: math.unit(8, "feet"),
  35588. default: true
  35589. },
  35590. {
  35591. name: "Big",
  35592. height: math.unit(15, "feet")
  35593. },
  35594. {
  35595. name: "BIG",
  35596. height: math.unit(25, "feet")
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35602. {
  35603. side: {
  35604. height: math.unit(7 + 5/12, "feet"),
  35605. weight: math.unit(2800, "lb"),
  35606. name: "Side",
  35607. image: {
  35608. source: "./media/characters/haloren/side.svg",
  35609. extra: 1793/409,
  35610. bottom: 59/1852
  35611. }
  35612. },
  35613. frontPaw: {
  35614. height: math.unit(2.36, "feet"),
  35615. name: "Front paw",
  35616. image: {
  35617. source: "./media/characters/haloren/front-paw.svg"
  35618. }
  35619. },
  35620. hindPaw: {
  35621. height: math.unit(3.18, "feet"),
  35622. name: "Hind paw",
  35623. image: {
  35624. source: "./media/characters/haloren/hind-paw.svg"
  35625. }
  35626. },
  35627. maw: {
  35628. height: math.unit(5.05, "feet"),
  35629. name: "Maw",
  35630. image: {
  35631. source: "./media/characters/haloren/maw.svg"
  35632. }
  35633. },
  35634. dick: {
  35635. height: math.unit(2.90, "feet"),
  35636. name: "Dick",
  35637. image: {
  35638. source: "./media/characters/haloren/dick.svg"
  35639. }
  35640. },
  35641. },
  35642. [
  35643. {
  35644. name: "Normal",
  35645. height: math.unit(7 + 5/12, "feet"),
  35646. default: true
  35647. },
  35648. {
  35649. name: "Enhanced",
  35650. height: math.unit(14 + 3/12, "feet")
  35651. },
  35652. ]
  35653. ))
  35654. characterMakers.push(() => makeCharacter(
  35655. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35656. {
  35657. front: {
  35658. height: math.unit(171, "cm"),
  35659. name: "Front",
  35660. image: {
  35661. source: "./media/characters/kimmy/front.svg",
  35662. extra: 1491/1435,
  35663. bottom: 53/1544
  35664. }
  35665. },
  35666. },
  35667. [
  35668. {
  35669. name: "Small",
  35670. height: math.unit(9, "cm")
  35671. },
  35672. {
  35673. name: "Normal",
  35674. height: math.unit(171, "cm"),
  35675. default: true
  35676. },
  35677. ]
  35678. ))
  35679. characterMakers.push(() => makeCharacter(
  35680. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35681. {
  35682. front: {
  35683. height: math.unit(8, "feet"),
  35684. weight: math.unit(300, "lb"),
  35685. name: "Front",
  35686. image: {
  35687. source: "./media/characters/galeboomer/front.svg",
  35688. extra: 4651/4415,
  35689. bottom: 162/4813
  35690. }
  35691. },
  35692. back: {
  35693. height: math.unit(8, "feet"),
  35694. weight: math.unit(300, "lb"),
  35695. name: "Back",
  35696. image: {
  35697. source: "./media/characters/galeboomer/back.svg",
  35698. extra: 4544/4314,
  35699. bottom: 16/4560
  35700. }
  35701. },
  35702. frontAlt: {
  35703. height: math.unit(8, "feet"),
  35704. weight: math.unit(300, "lb"),
  35705. name: "Front (Alt)",
  35706. image: {
  35707. source: "./media/characters/galeboomer/front-alt.svg",
  35708. extra: 4458/4228,
  35709. bottom: 68/4526
  35710. }
  35711. },
  35712. maw: {
  35713. height: math.unit(1.2, "feet"),
  35714. name: "Maw",
  35715. image: {
  35716. source: "./media/characters/galeboomer/maw.svg"
  35717. }
  35718. },
  35719. },
  35720. [
  35721. {
  35722. name: "Normal",
  35723. height: math.unit(8, "feet"),
  35724. default: true
  35725. },
  35726. ]
  35727. ))
  35728. characterMakers.push(() => makeCharacter(
  35729. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35730. {
  35731. front: {
  35732. height: math.unit(5 + 9/12, "feet"),
  35733. weight: math.unit(120, "lb"),
  35734. name: "Front",
  35735. image: {
  35736. source: "./media/characters/chyr/front.svg",
  35737. extra: 1323/1254,
  35738. bottom: 63/1386
  35739. }
  35740. },
  35741. back: {
  35742. height: math.unit(5 + 9/12, "feet"),
  35743. weight: math.unit(120, "lb"),
  35744. name: "Back",
  35745. image: {
  35746. source: "./media/characters/chyr/back.svg",
  35747. extra: 1323/1252,
  35748. bottom: 48/1371
  35749. }
  35750. },
  35751. },
  35752. [
  35753. {
  35754. name: "Normal",
  35755. height: math.unit(5 + 9/12, "feet"),
  35756. default: true
  35757. },
  35758. ]
  35759. ))
  35760. characterMakers.push(() => makeCharacter(
  35761. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35762. {
  35763. front: {
  35764. height: math.unit(7, "feet"),
  35765. weight: math.unit(310, "lb"),
  35766. name: "Front",
  35767. image: {
  35768. source: "./media/characters/solarus/front.svg",
  35769. extra: 2415/2021,
  35770. bottom: 103/2518
  35771. }
  35772. },
  35773. back: {
  35774. height: math.unit(7, "feet"),
  35775. weight: math.unit(310, "lb"),
  35776. name: "Back",
  35777. image: {
  35778. source: "./media/characters/solarus/back.svg",
  35779. extra: 2463/2089,
  35780. bottom: 79/2542
  35781. }
  35782. },
  35783. },
  35784. [
  35785. {
  35786. name: "Normal",
  35787. height: math.unit(7, "feet"),
  35788. default: true
  35789. },
  35790. ]
  35791. ))
  35792. characterMakers.push(() => makeCharacter(
  35793. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35794. {
  35795. front: {
  35796. height: math.unit(16, "feet"),
  35797. name: "Front",
  35798. image: {
  35799. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35800. extra: 1844/1780,
  35801. bottom: 58/1902
  35802. }
  35803. },
  35804. winterCoat: {
  35805. height: math.unit(16, "feet"),
  35806. name: "Winter Coat",
  35807. image: {
  35808. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35809. extra: 1807/1775,
  35810. bottom: 69/1876
  35811. }
  35812. },
  35813. },
  35814. [
  35815. {
  35816. name: "Normal",
  35817. height: math.unit(16, "feet"),
  35818. default: true
  35819. },
  35820. {
  35821. name: "Chicago Size",
  35822. height: math.unit(560, "feet")
  35823. },
  35824. ]
  35825. ))
  35826. characterMakers.push(() => makeCharacter(
  35827. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35828. {
  35829. front: {
  35830. height: math.unit(11 + 6/12, "feet"),
  35831. weight: math.unit(1366, "lb"),
  35832. name: "Front",
  35833. image: {
  35834. source: "./media/characters/lexor/front.svg",
  35835. extra: 1560/1481,
  35836. bottom: 211/1771
  35837. }
  35838. },
  35839. back: {
  35840. height: math.unit(11 + 6/12, "feet"),
  35841. weight: math.unit(1366, "lb"),
  35842. name: "Back",
  35843. image: {
  35844. source: "./media/characters/lexor/back.svg",
  35845. extra: 1614/1533,
  35846. bottom: 76/1690
  35847. }
  35848. },
  35849. maw: {
  35850. height: math.unit(3, "feet"),
  35851. name: "Maw",
  35852. image: {
  35853. source: "./media/characters/lexor/maw.svg"
  35854. }
  35855. },
  35856. dick: {
  35857. height: math.unit(2.59, "feet"),
  35858. name: "Dick",
  35859. image: {
  35860. source: "./media/characters/lexor/dick.svg"
  35861. }
  35862. },
  35863. },
  35864. [
  35865. {
  35866. name: "Normal",
  35867. height: math.unit(11 + 6/12, "feet"),
  35868. default: true
  35869. },
  35870. ]
  35871. ))
  35872. characterMakers.push(() => makeCharacter(
  35873. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35874. {
  35875. front: {
  35876. height: math.unit(5 + 8/12, "feet"),
  35877. name: "Front",
  35878. image: {
  35879. source: "./media/characters/magnum/front.svg",
  35880. extra: 942/855,
  35881. bottom: 26/968
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(5 + 8/12, "feet"),
  35889. default: true
  35890. },
  35891. ]
  35892. ))
  35893. characterMakers.push(() => makeCharacter(
  35894. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35895. {
  35896. front: {
  35897. height: math.unit(18 + 4/12, "feet"),
  35898. weight: math.unit(1500, "kg"),
  35899. name: "Front",
  35900. image: {
  35901. source: "./media/characters/solas-sharpsman/front.svg",
  35902. extra: 1698/1589,
  35903. bottom: 0/1698
  35904. }
  35905. },
  35906. },
  35907. [
  35908. {
  35909. name: "Normal",
  35910. height: math.unit(18 + 4/12, "feet"),
  35911. default: true
  35912. },
  35913. ]
  35914. ))
  35915. characterMakers.push(() => makeCharacter(
  35916. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35917. {
  35918. front: {
  35919. height: math.unit(5 + 5/12, "feet"),
  35920. weight: math.unit(180, "lb"),
  35921. name: "Front",
  35922. image: {
  35923. source: "./media/characters/october/front.svg",
  35924. extra: 1800/1650,
  35925. bottom: 0/1800
  35926. }
  35927. },
  35928. frontNsfw: {
  35929. height: math.unit(5 + 5/12, "feet"),
  35930. weight: math.unit(180, "lb"),
  35931. name: "Front (NSFW)",
  35932. image: {
  35933. source: "./media/characters/october/front-nsfw.svg",
  35934. extra: 1392/1307,
  35935. bottom: 42/1434
  35936. }
  35937. },
  35938. },
  35939. [
  35940. {
  35941. name: "Normal",
  35942. height: math.unit(5 + 5/12, "feet"),
  35943. default: true
  35944. },
  35945. ]
  35946. ))
  35947. characterMakers.push(() => makeCharacter(
  35948. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35949. {
  35950. front: {
  35951. height: math.unit(8 + 6/12, "feet"),
  35952. name: "Front",
  35953. image: {
  35954. source: "./media/characters/essynkardi/front.svg",
  35955. extra: 1914/1846,
  35956. bottom: 22/1936
  35957. }
  35958. },
  35959. },
  35960. [
  35961. {
  35962. name: "Normal",
  35963. height: math.unit(8 + 6/12, "feet"),
  35964. default: true
  35965. },
  35966. ]
  35967. ))
  35968. characterMakers.push(() => makeCharacter(
  35969. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35970. {
  35971. front: {
  35972. height: math.unit(6 + 6/12, "feet"),
  35973. weight: math.unit(7, "lb"),
  35974. name: "Front",
  35975. image: {
  35976. source: "./media/characters/icky/front.svg",
  35977. extra: 813/782,
  35978. bottom: 66/879
  35979. }
  35980. },
  35981. back: {
  35982. height: math.unit(6 + 6/12, "feet"),
  35983. weight: math.unit(7, "lb"),
  35984. name: "Back",
  35985. image: {
  35986. source: "./media/characters/icky/back.svg",
  35987. extra: 754/735,
  35988. bottom: 56/810
  35989. }
  35990. },
  35991. },
  35992. [
  35993. {
  35994. name: "Normal",
  35995. height: math.unit(6 + 6/12, "feet"),
  35996. default: true
  35997. },
  35998. ]
  35999. ))
  36000. characterMakers.push(() => makeCharacter(
  36001. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36002. {
  36003. front: {
  36004. height: math.unit(15, "feet"),
  36005. name: "Front",
  36006. image: {
  36007. source: "./media/characters/rojas/front.svg",
  36008. extra: 1462/1408,
  36009. bottom: 95/1557
  36010. }
  36011. },
  36012. back: {
  36013. height: math.unit(15, "feet"),
  36014. name: "Back",
  36015. image: {
  36016. source: "./media/characters/rojas/back.svg",
  36017. extra: 1023/954,
  36018. bottom: 28/1051
  36019. }
  36020. },
  36021. },
  36022. [
  36023. {
  36024. name: "Normal",
  36025. height: math.unit(15, "feet"),
  36026. default: true
  36027. },
  36028. ]
  36029. ))
  36030. characterMakers.push(() => makeCharacter(
  36031. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36032. {
  36033. frontHuman: {
  36034. height: math.unit(5 + 7/12, "feet"),
  36035. name: "Front (Human)",
  36036. image: {
  36037. source: "./media/characters/alek-dryagan/front-human.svg",
  36038. extra: 1687/1667,
  36039. bottom: 69/1756
  36040. }
  36041. },
  36042. backHuman: {
  36043. height: math.unit(5 + 7/12, "feet"),
  36044. name: "Back (Human)",
  36045. image: {
  36046. source: "./media/characters/alek-dryagan/back-human.svg",
  36047. extra: 1670/1649,
  36048. bottom: 65/1735
  36049. }
  36050. },
  36051. frontDemi: {
  36052. height: math.unit(65, "feet"),
  36053. name: "Front (Demi)",
  36054. image: {
  36055. source: "./media/characters/alek-dryagan/front-demi.svg",
  36056. extra: 1669/1642,
  36057. bottom: 49/1718
  36058. }
  36059. },
  36060. backDemi: {
  36061. height: math.unit(65, "feet"),
  36062. name: "Back (Demi)",
  36063. image: {
  36064. source: "./media/characters/alek-dryagan/back-demi.svg",
  36065. extra: 1658/1637,
  36066. bottom: 40/1698
  36067. }
  36068. },
  36069. mawHuman: {
  36070. height: math.unit(0.3, "feet"),
  36071. name: "Maw (Human)",
  36072. image: {
  36073. source: "./media/characters/alek-dryagan/maw-human.svg"
  36074. }
  36075. },
  36076. mawDemi: {
  36077. height: math.unit(3.8, "feet"),
  36078. name: "Maw (Demi)",
  36079. image: {
  36080. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36081. }
  36082. },
  36083. },
  36084. [
  36085. {
  36086. name: "Normal",
  36087. height: math.unit(5 + 7/12, "feet"),
  36088. default: true
  36089. },
  36090. ]
  36091. ))
  36092. characterMakers.push(() => makeCharacter(
  36093. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36094. {
  36095. frontHuman: {
  36096. height: math.unit(5 + 2/12, "feet"),
  36097. name: "Front (Human)",
  36098. image: {
  36099. source: "./media/characters/gen/front-human.svg",
  36100. extra: 1627/1538,
  36101. bottom: 71/1698
  36102. }
  36103. },
  36104. backHuman: {
  36105. height: math.unit(5 + 2/12, "feet"),
  36106. name: "Back (Human)",
  36107. image: {
  36108. source: "./media/characters/gen/back-human.svg",
  36109. extra: 1638/1548,
  36110. bottom: 69/1707
  36111. }
  36112. },
  36113. frontDemi: {
  36114. height: math.unit(5 + 2/12, "feet"),
  36115. name: "Front (Demi)",
  36116. image: {
  36117. source: "./media/characters/gen/front-demi.svg",
  36118. extra: 1627/1538,
  36119. bottom: 71/1698
  36120. }
  36121. },
  36122. backDemi: {
  36123. height: math.unit(5 + 2/12, "feet"),
  36124. name: "Back (Demi)",
  36125. image: {
  36126. source: "./media/characters/gen/back-demi.svg",
  36127. extra: 1638/1548,
  36128. bottom: 69/1707
  36129. }
  36130. },
  36131. },
  36132. [
  36133. {
  36134. name: "Normal",
  36135. height: math.unit(5 + 2/12, "feet"),
  36136. default: true
  36137. },
  36138. ]
  36139. ))
  36140. characterMakers.push(() => makeCharacter(
  36141. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36142. {
  36143. frontImp: {
  36144. height: math.unit(1 + 11/12, "feet"),
  36145. name: "Front (Imp)",
  36146. image: {
  36147. source: "./media/characters/max-kobold/front-imp.svg",
  36148. extra: 1238/1134,
  36149. bottom: 81/1319
  36150. }
  36151. },
  36152. backImp: {
  36153. height: math.unit(1 + 11/12, "feet"),
  36154. name: "Back (Imp)",
  36155. image: {
  36156. source: "./media/characters/max-kobold/back-imp.svg",
  36157. extra: 1334/1175,
  36158. bottom: 34/1368
  36159. }
  36160. },
  36161. frontDemi: {
  36162. height: math.unit(5 + 9/12, "feet"),
  36163. name: "Front (Demi)",
  36164. image: {
  36165. source: "./media/characters/max-kobold/front-demi.svg",
  36166. extra: 1715/1685,
  36167. bottom: 54/1769
  36168. }
  36169. },
  36170. backDemi: {
  36171. height: math.unit(5 + 9/12, "feet"),
  36172. name: "Back (Demi)",
  36173. image: {
  36174. source: "./media/characters/max-kobold/back-demi.svg",
  36175. extra: 1752/1729,
  36176. bottom: 41/1793
  36177. }
  36178. },
  36179. handImp: {
  36180. height: math.unit(0.45, "feet"),
  36181. name: "Hand (Imp)",
  36182. image: {
  36183. source: "./media/characters/max-kobold/hand.svg"
  36184. }
  36185. },
  36186. pawImp: {
  36187. height: math.unit(0.46, "feet"),
  36188. name: "Paw (Imp)",
  36189. image: {
  36190. source: "./media/characters/max-kobold/paw.svg"
  36191. }
  36192. },
  36193. handDemi: {
  36194. height: math.unit(0.80, "feet"),
  36195. name: "Hand (Demi)",
  36196. image: {
  36197. source: "./media/characters/max-kobold/hand.svg"
  36198. }
  36199. },
  36200. pawDemi: {
  36201. height: math.unit(1.1, "feet"),
  36202. name: "Paw (Demi)",
  36203. image: {
  36204. source: "./media/characters/max-kobold/paw.svg"
  36205. }
  36206. },
  36207. headImp: {
  36208. height: math.unit(1.33, "feet"),
  36209. name: "Head (Imp)",
  36210. image: {
  36211. source: "./media/characters/max-kobold/head-imp.svg"
  36212. }
  36213. },
  36214. mawImp: {
  36215. height: math.unit(0.75, "feet"),
  36216. name: "Maw (Imp)",
  36217. image: {
  36218. source: "./media/characters/max-kobold/maw-imp.svg"
  36219. }
  36220. },
  36221. mawDemi: {
  36222. height: math.unit(0.42, "feet"),
  36223. name: "Maw (Demi)",
  36224. image: {
  36225. source: "./media/characters/max-kobold/maw-demi.svg"
  36226. }
  36227. },
  36228. },
  36229. [
  36230. {
  36231. name: "Normal",
  36232. height: math.unit(1 + 11/12, "feet"),
  36233. default: true
  36234. },
  36235. ]
  36236. ))
  36237. characterMakers.push(() => makeCharacter(
  36238. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36239. {
  36240. front: {
  36241. height: math.unit(7 + 5/12, "feet"),
  36242. name: "Front",
  36243. image: {
  36244. source: "./media/characters/carbon/front.svg",
  36245. extra: 1754/1689,
  36246. bottom: 65/1819
  36247. }
  36248. },
  36249. back: {
  36250. height: math.unit(7 + 5/12, "feet"),
  36251. name: "Back",
  36252. image: {
  36253. source: "./media/characters/carbon/back.svg",
  36254. extra: 1762/1695,
  36255. bottom: 24/1786
  36256. }
  36257. },
  36258. frontGigantamax: {
  36259. height: math.unit(150, "feet"),
  36260. name: "Front (Gigantamax)",
  36261. image: {
  36262. source: "./media/characters/carbon/front-gigantamax.svg",
  36263. extra: 1826/1669,
  36264. bottom: 59/1885
  36265. }
  36266. },
  36267. backGigantamax: {
  36268. height: math.unit(150, "feet"),
  36269. name: "Back (Gigantamax)",
  36270. image: {
  36271. source: "./media/characters/carbon/back-gigantamax.svg",
  36272. extra: 1796/1653,
  36273. bottom: 53/1849
  36274. }
  36275. },
  36276. maw: {
  36277. height: math.unit(0.48, "feet"),
  36278. name: "Maw",
  36279. image: {
  36280. source: "./media/characters/carbon/maw.svg"
  36281. }
  36282. },
  36283. mawGigantamax: {
  36284. height: math.unit(7.5, "feet"),
  36285. name: "Maw (Gigantamax)",
  36286. image: {
  36287. source: "./media/characters/carbon/maw-gigantamax.svg"
  36288. }
  36289. },
  36290. },
  36291. [
  36292. {
  36293. name: "Normal",
  36294. height: math.unit(7 + 5/12, "feet"),
  36295. default: true
  36296. },
  36297. ]
  36298. ))
  36299. characterMakers.push(() => makeCharacter(
  36300. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36301. {
  36302. front: {
  36303. height: math.unit(6, "feet"),
  36304. name: "Front",
  36305. image: {
  36306. source: "./media/characters/maverick/front.svg",
  36307. extra: 1672/1661,
  36308. bottom: 85/1757
  36309. }
  36310. },
  36311. back: {
  36312. height: math.unit(6, "feet"),
  36313. name: "Back",
  36314. image: {
  36315. source: "./media/characters/maverick/back.svg",
  36316. extra: 1642/1631,
  36317. bottom: 38/1680
  36318. }
  36319. },
  36320. },
  36321. [
  36322. {
  36323. name: "Normal",
  36324. height: math.unit(6, "feet"),
  36325. default: true
  36326. },
  36327. ]
  36328. ))
  36329. characterMakers.push(() => makeCharacter(
  36330. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36331. {
  36332. front: {
  36333. height: math.unit(15, "feet"),
  36334. weight: math.unit(615, "lb"),
  36335. name: "Front",
  36336. image: {
  36337. source: "./media/characters/grockle/front.svg",
  36338. extra: 1535/1427,
  36339. bottom: 56/1591
  36340. }
  36341. },
  36342. },
  36343. [
  36344. {
  36345. name: "Normal",
  36346. height: math.unit(15, "feet"),
  36347. default: true
  36348. },
  36349. {
  36350. name: "Large",
  36351. height: math.unit(150, "feet")
  36352. },
  36353. {
  36354. name: "Macro",
  36355. height: math.unit(1876, "feet")
  36356. },
  36357. {
  36358. name: "Mega Macro",
  36359. height: math.unit(121940, "feet")
  36360. },
  36361. {
  36362. name: "Giga Macro",
  36363. height: math.unit(750, "km")
  36364. },
  36365. {
  36366. name: "Tera Macro",
  36367. height: math.unit(750000, "km")
  36368. },
  36369. {
  36370. name: "Galactic",
  36371. height: math.unit(1.4e5, "km")
  36372. },
  36373. {
  36374. name: "Godlike",
  36375. height: math.unit(9.8e280, "galaxies")
  36376. },
  36377. ]
  36378. ))
  36379. characterMakers.push(() => makeCharacter(
  36380. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36381. {
  36382. front: {
  36383. height: math.unit(11, "meters"),
  36384. weight: math.unit(20, "tonnes"),
  36385. name: "Front",
  36386. image: {
  36387. source: "./media/characters/alistair/front.svg",
  36388. extra: 1265/1009,
  36389. bottom: 93/1358
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(11, "meters"),
  36397. default: true
  36398. },
  36399. ]
  36400. ))
  36401. characterMakers.push(() => makeCharacter(
  36402. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36403. {
  36404. front: {
  36405. height: math.unit(5 + 8/12, "feet"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/haruka/front.svg",
  36409. extra: 2012/1952,
  36410. bottom: 0/2012
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(5 + 8/12, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36424. {
  36425. back: {
  36426. height: math.unit(9, "feet"),
  36427. name: "Back",
  36428. image: {
  36429. source: "./media/characters/vivian-sylveon/back.svg",
  36430. extra: 1853/1714,
  36431. bottom: 0/1853
  36432. }
  36433. },
  36434. },
  36435. [
  36436. {
  36437. name: "Normal",
  36438. height: math.unit(9, "feet"),
  36439. default: true
  36440. },
  36441. {
  36442. name: "Macro",
  36443. height: math.unit(500, "feet")
  36444. },
  36445. {
  36446. name: "Megamacro",
  36447. height: math.unit(600, "miles")
  36448. },
  36449. {
  36450. name: "Gigamacro",
  36451. height: math.unit(30000, "miles")
  36452. },
  36453. ]
  36454. ))
  36455. characterMakers.push(() => makeCharacter(
  36456. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36457. {
  36458. anthro: {
  36459. height: math.unit(5 + 10/12, "feet"),
  36460. weight: math.unit(100, "lb"),
  36461. name: "Anthro",
  36462. image: {
  36463. source: "./media/characters/daiki/anthro.svg",
  36464. extra: 1115/1027,
  36465. bottom: 69/1184
  36466. }
  36467. },
  36468. feral: {
  36469. height: math.unit(200, "feet"),
  36470. name: "Feral",
  36471. image: {
  36472. source: "./media/characters/daiki/feral.svg",
  36473. extra: 1256/313,
  36474. bottom: 39/1295
  36475. }
  36476. },
  36477. feralHead: {
  36478. height: math.unit(171, "feet"),
  36479. name: "Feral Head",
  36480. image: {
  36481. source: "./media/characters/daiki/feral-head.svg"
  36482. }
  36483. },
  36484. manaDragon: {
  36485. height: math.unit(170, "meters"),
  36486. name: "Mana-dragon",
  36487. image: {
  36488. source: "./media/characters/daiki/mana-dragon.svg",
  36489. extra: 763/420,
  36490. bottom: 97/860
  36491. }
  36492. },
  36493. },
  36494. [
  36495. {
  36496. name: "Normal",
  36497. height: math.unit(5 + 10/12, "feet"),
  36498. default: true
  36499. },
  36500. ]
  36501. ))
  36502. characterMakers.push(() => makeCharacter(
  36503. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36504. {
  36505. fullyEquippedFront: {
  36506. height: math.unit(3 + 1/12, "feet"),
  36507. weight: math.unit(24, "lb"),
  36508. name: "Fully Equipped (Front)",
  36509. image: {
  36510. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36511. extra: 687/605,
  36512. bottom: 18/705
  36513. }
  36514. },
  36515. fullyEquippedBack: {
  36516. height: math.unit(3 + 1/12, "feet"),
  36517. weight: math.unit(24, "lb"),
  36518. name: "Fully Equipped (Back)",
  36519. image: {
  36520. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36521. extra: 689/590,
  36522. bottom: 18/707
  36523. }
  36524. },
  36525. dailyWear: {
  36526. height: math.unit(3 + 1/12, "feet"),
  36527. weight: math.unit(24, "lb"),
  36528. name: "Daily Wear",
  36529. image: {
  36530. source: "./media/characters/tea-spot/daily-wear.svg",
  36531. extra: 701/620,
  36532. bottom: 21/722
  36533. }
  36534. },
  36535. maidWork: {
  36536. height: math.unit(3 + 1/12, "feet"),
  36537. weight: math.unit(24, "lb"),
  36538. name: "Maid Work",
  36539. image: {
  36540. source: "./media/characters/tea-spot/maid-work.svg",
  36541. extra: 693/609,
  36542. bottom: 15/708
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(3 + 1/12, "feet"),
  36550. default: true
  36551. },
  36552. ]
  36553. ))
  36554. characterMakers.push(() => makeCharacter(
  36555. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36556. {
  36557. front: {
  36558. height: math.unit(175, "cm"),
  36559. weight: math.unit(75, "kg"),
  36560. name: "Front",
  36561. image: {
  36562. source: "./media/characters/chee/front.svg",
  36563. extra: 1796/1740,
  36564. bottom: 40/1836
  36565. }
  36566. },
  36567. },
  36568. [
  36569. {
  36570. name: "Micro-Micro",
  36571. height: math.unit(1, "nm")
  36572. },
  36573. {
  36574. name: "Micro-erst",
  36575. height: math.unit(1, "micrometer")
  36576. },
  36577. {
  36578. name: "Micro-er",
  36579. height: math.unit(1, "cm")
  36580. },
  36581. {
  36582. name: "Normal",
  36583. height: math.unit(175, "cm"),
  36584. default: true
  36585. },
  36586. {
  36587. name: "Macro",
  36588. height: math.unit(100, "m")
  36589. },
  36590. {
  36591. name: "Macro-er",
  36592. height: math.unit(1, "km")
  36593. },
  36594. {
  36595. name: "Macro-erst",
  36596. height: math.unit(10, "km")
  36597. },
  36598. {
  36599. name: "Macro-Macro",
  36600. height: math.unit(100, "km")
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36606. {
  36607. front: {
  36608. height: math.unit(11 + 9/12, "feet"),
  36609. weight: math.unit(935, "lb"),
  36610. name: "Front",
  36611. image: {
  36612. source: "./media/characters/kingsley/front.svg",
  36613. extra: 1803/1674,
  36614. bottom: 127/1930
  36615. }
  36616. },
  36617. frontNude: {
  36618. height: math.unit(11 + 9/12, "feet"),
  36619. weight: math.unit(935, "lb"),
  36620. name: "Front (Nude)",
  36621. image: {
  36622. source: "./media/characters/kingsley/front-nude.svg",
  36623. extra: 1803/1674,
  36624. bottom: 127/1930
  36625. }
  36626. },
  36627. },
  36628. [
  36629. {
  36630. name: "Normal",
  36631. height: math.unit(11 + 9/12, "feet"),
  36632. default: true
  36633. },
  36634. ]
  36635. ))
  36636. characterMakers.push(() => makeCharacter(
  36637. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36638. {
  36639. side: {
  36640. height: math.unit(9, "feet"),
  36641. name: "Side",
  36642. image: {
  36643. source: "./media/characters/rymel/side.svg",
  36644. extra: 792/469,
  36645. bottom: 121/913
  36646. }
  36647. },
  36648. maw: {
  36649. height: math.unit(2.4, "meters"),
  36650. name: "Maw",
  36651. image: {
  36652. source: "./media/characters/rymel/maw.svg"
  36653. }
  36654. },
  36655. },
  36656. [
  36657. {
  36658. name: "House Drake",
  36659. height: math.unit(2, "feet")
  36660. },
  36661. {
  36662. name: "Reduced",
  36663. height: math.unit(4.5, "feet")
  36664. },
  36665. {
  36666. name: "Normal",
  36667. height: math.unit(9, "feet"),
  36668. default: true
  36669. },
  36670. ]
  36671. ))
  36672. characterMakers.push(() => makeCharacter(
  36673. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36674. {
  36675. front: {
  36676. height: math.unit(1.74, "meters"),
  36677. weight: math.unit(55, "kg"),
  36678. name: "Front",
  36679. image: {
  36680. source: "./media/characters/rubus/front.svg",
  36681. extra: 1894/1742,
  36682. bottom: 44/1938
  36683. }
  36684. },
  36685. },
  36686. [
  36687. {
  36688. name: "Normal",
  36689. height: math.unit(1.74, "meters"),
  36690. default: true
  36691. },
  36692. ]
  36693. ))
  36694. characterMakers.push(() => makeCharacter(
  36695. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36696. {
  36697. front: {
  36698. height: math.unit(5 + 2/12, "feet"),
  36699. weight: math.unit(112, "lb"),
  36700. name: "Front",
  36701. image: {
  36702. source: "./media/characters/cassie-kingston/front.svg",
  36703. extra: 1438/1390,
  36704. bottom: 47/1485
  36705. }
  36706. },
  36707. },
  36708. [
  36709. {
  36710. name: "Normal",
  36711. height: math.unit(5 + 2/12, "feet"),
  36712. default: true
  36713. },
  36714. {
  36715. name: "Macro",
  36716. height: math.unit(128, "feet")
  36717. },
  36718. {
  36719. name: "Megamacro",
  36720. height: math.unit(2.56, "miles")
  36721. },
  36722. ]
  36723. ))
  36724. characterMakers.push(() => makeCharacter(
  36725. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36726. {
  36727. front: {
  36728. height: math.unit(7, "feet"),
  36729. name: "Front",
  36730. image: {
  36731. source: "./media/characters/fox/front.svg",
  36732. extra: 1798/1703,
  36733. bottom: 55/1853
  36734. }
  36735. },
  36736. back: {
  36737. height: math.unit(7, "feet"),
  36738. name: "Back",
  36739. image: {
  36740. source: "./media/characters/fox/back.svg",
  36741. extra: 1748/1649,
  36742. bottom: 32/1780
  36743. }
  36744. },
  36745. head: {
  36746. height: math.unit(1.95, "feet"),
  36747. name: "Head",
  36748. image: {
  36749. source: "./media/characters/fox/head.svg"
  36750. }
  36751. },
  36752. dick: {
  36753. height: math.unit(1.33, "feet"),
  36754. name: "Dick",
  36755. image: {
  36756. source: "./media/characters/fox/dick.svg"
  36757. }
  36758. },
  36759. foot: {
  36760. height: math.unit(1, "feet"),
  36761. name: "Foot",
  36762. image: {
  36763. source: "./media/characters/fox/foot.svg"
  36764. }
  36765. },
  36766. paw: {
  36767. height: math.unit(0.92, "feet"),
  36768. name: "Paw",
  36769. image: {
  36770. source: "./media/characters/fox/paw.svg"
  36771. }
  36772. },
  36773. },
  36774. [
  36775. {
  36776. name: "Small",
  36777. height: math.unit(3, "inches")
  36778. },
  36779. {
  36780. name: "\"Realistic\"",
  36781. height: math.unit(7, "feet")
  36782. },
  36783. {
  36784. name: "Normal",
  36785. height: math.unit(150, "feet"),
  36786. default: true
  36787. },
  36788. {
  36789. name: "BIG",
  36790. height: math.unit(1200, "feet")
  36791. },
  36792. {
  36793. name: "👀",
  36794. height: math.unit(5, "miles")
  36795. },
  36796. {
  36797. name: "👀👀👀",
  36798. height: math.unit(64, "miles")
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(625, "feet"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/asonja-rossa/front.svg",
  36810. extra: 1833/1686,
  36811. bottom: 24/1857
  36812. }
  36813. },
  36814. back: {
  36815. height: math.unit(625, "feet"),
  36816. name: "Back",
  36817. image: {
  36818. source: "./media/characters/asonja-rossa/back.svg",
  36819. extra: 1852/1753,
  36820. bottom: 26/1878
  36821. }
  36822. },
  36823. },
  36824. [
  36825. {
  36826. name: "Macro",
  36827. height: math.unit(625, "feet"),
  36828. default: true
  36829. },
  36830. ]
  36831. ))
  36832. characterMakers.push(() => makeCharacter(
  36833. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36834. {
  36835. side: {
  36836. height: math.unit(8, "feet"),
  36837. name: "Side",
  36838. image: {
  36839. source: "./media/characters/rezukii/side.svg",
  36840. extra: 979/542,
  36841. bottom: 87/1066
  36842. }
  36843. },
  36844. sitting: {
  36845. height: math.unit(14.6, "feet"),
  36846. name: "Sitting",
  36847. image: {
  36848. source: "./media/characters/rezukii/sitting.svg",
  36849. extra: 1023/813,
  36850. bottom: 45/1068
  36851. }
  36852. },
  36853. },
  36854. [
  36855. {
  36856. name: "Tiny",
  36857. height: math.unit(2, "feet")
  36858. },
  36859. {
  36860. name: "Smol",
  36861. height: math.unit(4, "feet")
  36862. },
  36863. {
  36864. name: "Normal",
  36865. height: math.unit(8, "feet"),
  36866. default: true
  36867. },
  36868. {
  36869. name: "Big",
  36870. height: math.unit(12, "feet")
  36871. },
  36872. {
  36873. name: "Macro",
  36874. height: math.unit(30, "feet")
  36875. },
  36876. ]
  36877. ))
  36878. characterMakers.push(() => makeCharacter(
  36879. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36880. {
  36881. front: {
  36882. height: math.unit(14, "feet"),
  36883. weight: math.unit(9.5, "tonnes"),
  36884. name: "Front",
  36885. image: {
  36886. source: "./media/characters/dawnheart/front.svg",
  36887. extra: 2792/2675,
  36888. bottom: 64/2856
  36889. }
  36890. },
  36891. },
  36892. [
  36893. {
  36894. name: "Normal",
  36895. height: math.unit(14, "feet"),
  36896. default: true
  36897. },
  36898. ]
  36899. ))
  36900. characterMakers.push(() => makeCharacter(
  36901. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36902. {
  36903. front: {
  36904. height: math.unit(1.7, "m"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/gladi/front.svg",
  36908. extra: 1460/1362,
  36909. bottom: 19/1479
  36910. }
  36911. },
  36912. back: {
  36913. height: math.unit(1.7, "m"),
  36914. name: "Back",
  36915. image: {
  36916. source: "./media/characters/gladi/back.svg",
  36917. extra: 1459/1357,
  36918. bottom: 12/1471
  36919. }
  36920. },
  36921. feral: {
  36922. height: math.unit(2.05, "m"),
  36923. name: "Feral",
  36924. image: {
  36925. source: "./media/characters/gladi/feral.svg",
  36926. extra: 821/557,
  36927. bottom: 91/912
  36928. }
  36929. },
  36930. },
  36931. [
  36932. {
  36933. name: "Shortest",
  36934. height: math.unit(70, "cm")
  36935. },
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(1.7, "m")
  36939. },
  36940. {
  36941. name: "Macro",
  36942. height: math.unit(10, "m"),
  36943. default: true
  36944. },
  36945. {
  36946. name: "Tallest",
  36947. height: math.unit(200, "m")
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36953. {
  36954. front: {
  36955. height: math.unit(5 + 7/12, "feet"),
  36956. weight: math.unit(2, "tons"),
  36957. name: "Front",
  36958. image: {
  36959. source: "./media/characters/erdno/front.svg",
  36960. extra: 1234/1129,
  36961. bottom: 35/1269
  36962. }
  36963. },
  36964. angled: {
  36965. height: math.unit(5 + 7/12, "feet"),
  36966. weight: math.unit(2, "tons"),
  36967. name: "Angled",
  36968. image: {
  36969. source: "./media/characters/erdno/angled.svg",
  36970. extra: 1185/1139,
  36971. bottom: 36/1221
  36972. }
  36973. },
  36974. side: {
  36975. height: math.unit(5 + 7/12, "feet"),
  36976. weight: math.unit(2, "tons"),
  36977. name: "Side",
  36978. image: {
  36979. source: "./media/characters/erdno/side.svg",
  36980. extra: 1191/1144,
  36981. bottom: 40/1231
  36982. }
  36983. },
  36984. back: {
  36985. height: math.unit(5 + 7/12, "feet"),
  36986. weight: math.unit(2, "tons"),
  36987. name: "Back",
  36988. image: {
  36989. source: "./media/characters/erdno/back.svg",
  36990. extra: 1202/1146,
  36991. bottom: 17/1219
  36992. }
  36993. },
  36994. frontNsfw: {
  36995. height: math.unit(5 + 7/12, "feet"),
  36996. weight: math.unit(2, "tons"),
  36997. name: "Front (NSFW)",
  36998. image: {
  36999. source: "./media/characters/erdno/front-nsfw.svg",
  37000. extra: 1234/1129,
  37001. bottom: 35/1269
  37002. }
  37003. },
  37004. angledNsfw: {
  37005. height: math.unit(5 + 7/12, "feet"),
  37006. weight: math.unit(2, "tons"),
  37007. name: "Angled (NSFW)",
  37008. image: {
  37009. source: "./media/characters/erdno/angled-nsfw.svg",
  37010. extra: 1185/1139,
  37011. bottom: 36/1221
  37012. }
  37013. },
  37014. sideNsfw: {
  37015. height: math.unit(5 + 7/12, "feet"),
  37016. weight: math.unit(2, "tons"),
  37017. name: "Side (NSFW)",
  37018. image: {
  37019. source: "./media/characters/erdno/side-nsfw.svg",
  37020. extra: 1191/1144,
  37021. bottom: 40/1231
  37022. }
  37023. },
  37024. backNsfw: {
  37025. height: math.unit(5 + 7/12, "feet"),
  37026. weight: math.unit(2, "tons"),
  37027. name: "Back (NSFW)",
  37028. image: {
  37029. source: "./media/characters/erdno/back-nsfw.svg",
  37030. extra: 1202/1146,
  37031. bottom: 17/1219
  37032. }
  37033. },
  37034. frontHyper: {
  37035. height: math.unit(5 + 7/12, "feet"),
  37036. weight: math.unit(2, "tons"),
  37037. name: "Front (Hyper)",
  37038. image: {
  37039. source: "./media/characters/erdno/front-hyper.svg",
  37040. extra: 1298/1136,
  37041. bottom: 35/1333
  37042. }
  37043. },
  37044. },
  37045. [
  37046. {
  37047. name: "Normal",
  37048. height: math.unit(5 + 7/12, "feet"),
  37049. default: true
  37050. },
  37051. {
  37052. name: "Big",
  37053. height: math.unit(5.7, "meters")
  37054. },
  37055. {
  37056. name: "Macro",
  37057. height: math.unit(5.7, "kilometers")
  37058. },
  37059. {
  37060. name: "Megamacro",
  37061. height: math.unit(5.7, "earths")
  37062. },
  37063. ]
  37064. ))
  37065. characterMakers.push(() => makeCharacter(
  37066. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37067. {
  37068. front: {
  37069. height: math.unit(5 + 10/12, "feet"),
  37070. weight: math.unit(150, "lb"),
  37071. name: "Front",
  37072. image: {
  37073. source: "./media/characters/jamie/front.svg",
  37074. extra: 1908/1768,
  37075. bottom: 19/1927
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Minimum",
  37082. height: math.unit(2, "cm")
  37083. },
  37084. {
  37085. name: "Micro",
  37086. height: math.unit(3, "inches")
  37087. },
  37088. {
  37089. name: "Normal",
  37090. height: math.unit(5 + 10/12, "feet"),
  37091. default: true
  37092. },
  37093. {
  37094. name: "Macro",
  37095. height: math.unit(150, "feet")
  37096. },
  37097. {
  37098. name: "Megamacro",
  37099. height: math.unit(10000, "m")
  37100. },
  37101. ]
  37102. ))
  37103. characterMakers.push(() => makeCharacter(
  37104. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37105. {
  37106. front: {
  37107. height: math.unit(2, "meters"),
  37108. weight: math.unit(100, "kg"),
  37109. name: "Front",
  37110. image: {
  37111. source: "./media/characters/shiron/front.svg",
  37112. extra: 2103/1985,
  37113. bottom: 98/2201
  37114. }
  37115. },
  37116. back: {
  37117. height: math.unit(2, "meters"),
  37118. weight: math.unit(100, "kg"),
  37119. name: "Back",
  37120. image: {
  37121. source: "./media/characters/shiron/back.svg",
  37122. extra: 2110/2015,
  37123. bottom: 89/2199
  37124. }
  37125. },
  37126. hand: {
  37127. height: math.unit(0.96, "feet"),
  37128. name: "Hand",
  37129. image: {
  37130. source: "./media/characters/shiron/hand.svg"
  37131. }
  37132. },
  37133. foot: {
  37134. height: math.unit(1.464, "feet"),
  37135. name: "Foot",
  37136. image: {
  37137. source: "./media/characters/shiron/foot.svg"
  37138. }
  37139. },
  37140. },
  37141. [
  37142. {
  37143. name: "Normal",
  37144. height: math.unit(2, "meters")
  37145. },
  37146. {
  37147. name: "Macro",
  37148. height: math.unit(500, "meters"),
  37149. default: true
  37150. },
  37151. {
  37152. name: "Megamacro",
  37153. height: math.unit(20, "km")
  37154. },
  37155. ]
  37156. ))
  37157. characterMakers.push(() => makeCharacter(
  37158. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37159. {
  37160. front: {
  37161. height: math.unit(6, "feet"),
  37162. name: "Front",
  37163. image: {
  37164. source: "./media/characters/sam/front.svg",
  37165. extra: 849/826,
  37166. bottom: 19/868
  37167. }
  37168. },
  37169. },
  37170. [
  37171. {
  37172. name: "Normal",
  37173. height: math.unit(6, "feet"),
  37174. default: true
  37175. },
  37176. ]
  37177. ))
  37178. characterMakers.push(() => makeCharacter(
  37179. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37180. {
  37181. front: {
  37182. height: math.unit(8 + 4/12, "feet"),
  37183. weight: math.unit(122, "kg"),
  37184. name: "Front",
  37185. image: {
  37186. source: "./media/characters/namori-kurogawa/front.svg",
  37187. extra: 1894/1576,
  37188. bottom: 34/1928
  37189. }
  37190. },
  37191. },
  37192. [
  37193. {
  37194. name: "Normal",
  37195. height: math.unit(8 + 4/12, "feet"),
  37196. default: true
  37197. },
  37198. ]
  37199. ))
  37200. characterMakers.push(() => makeCharacter(
  37201. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37202. {
  37203. front: {
  37204. height: math.unit(9, "feet"),
  37205. weight: math.unit(621, "lb"),
  37206. name: "Front",
  37207. image: {
  37208. source: "./media/characters/unmru/front.svg",
  37209. extra: 1853/1747,
  37210. bottom: 73/1926
  37211. }
  37212. },
  37213. side: {
  37214. height: math.unit(9, "feet"),
  37215. weight: math.unit(621, "lb"),
  37216. name: "Side",
  37217. image: {
  37218. source: "./media/characters/unmru/side.svg",
  37219. extra: 1781/1671,
  37220. bottom: 127/1908
  37221. }
  37222. },
  37223. back: {
  37224. height: math.unit(9, "feet"),
  37225. weight: math.unit(621, "lb"),
  37226. name: "Back",
  37227. image: {
  37228. source: "./media/characters/unmru/back.svg",
  37229. extra: 1894/1765,
  37230. bottom: 75/1969
  37231. }
  37232. },
  37233. dick: {
  37234. height: math.unit(3, "feet"),
  37235. weight: math.unit(35, "lb"),
  37236. name: "Dick",
  37237. image: {
  37238. source: "./media/characters/unmru/dick.svg"
  37239. }
  37240. },
  37241. },
  37242. [
  37243. {
  37244. name: "Normal",
  37245. height: math.unit(9, "feet")
  37246. },
  37247. {
  37248. name: "Natural",
  37249. height: math.unit(27, "feet"),
  37250. default: true
  37251. },
  37252. {
  37253. name: "Giant",
  37254. height: math.unit(90, "feet")
  37255. },
  37256. {
  37257. name: "Kaiju",
  37258. height: math.unit(270, "feet")
  37259. },
  37260. {
  37261. name: "Macro",
  37262. height: math.unit(900, "feet")
  37263. },
  37264. {
  37265. name: "Macro+",
  37266. height: math.unit(2700, "feet")
  37267. },
  37268. {
  37269. name: "Megamacro",
  37270. height: math.unit(9000, "feet")
  37271. },
  37272. {
  37273. name: "City-Crushing",
  37274. height: math.unit(27000, "feet")
  37275. },
  37276. {
  37277. name: "Mountain-Mashing",
  37278. height: math.unit(90000, "feet")
  37279. },
  37280. {
  37281. name: "Earth-Eclipsing",
  37282. height: math.unit(2.7e8, "feet")
  37283. },
  37284. {
  37285. name: "Sol-Swallowing",
  37286. height: math.unit(9e10, "feet")
  37287. },
  37288. {
  37289. name: "Majoris-Munching",
  37290. height: math.unit(2.7e13, "feet")
  37291. },
  37292. ]
  37293. ))
  37294. characterMakers.push(() => makeCharacter(
  37295. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37296. {
  37297. front: {
  37298. height: math.unit(1, "inch"),
  37299. name: "Front",
  37300. image: {
  37301. source: "./media/characters/squeaks-mouse/front.svg",
  37302. extra: 352/308,
  37303. bottom: 25/377
  37304. }
  37305. },
  37306. },
  37307. [
  37308. {
  37309. name: "Micro",
  37310. height: math.unit(1, "inch"),
  37311. default: true
  37312. },
  37313. ]
  37314. ))
  37315. characterMakers.push(() => makeCharacter(
  37316. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37317. {
  37318. side: {
  37319. height: math.unit(35, "feet"),
  37320. name: "Side",
  37321. image: {
  37322. source: "./media/characters/sayko/side.svg",
  37323. extra: 1697/1021,
  37324. bottom: 82/1779
  37325. }
  37326. },
  37327. head: {
  37328. height: math.unit(16, "feet"),
  37329. name: "Head",
  37330. image: {
  37331. source: "./media/characters/sayko/head.svg"
  37332. }
  37333. },
  37334. forepaw: {
  37335. height: math.unit(7.85, "feet"),
  37336. name: "Forepaw",
  37337. image: {
  37338. source: "./media/characters/sayko/forepaw.svg"
  37339. }
  37340. },
  37341. hindpaw: {
  37342. height: math.unit(8.8, "feet"),
  37343. name: "Hindpaw",
  37344. image: {
  37345. source: "./media/characters/sayko/hindpaw.svg"
  37346. }
  37347. },
  37348. },
  37349. [
  37350. {
  37351. name: "Normal",
  37352. height: math.unit(35, "feet"),
  37353. default: true
  37354. },
  37355. {
  37356. name: "Colossus",
  37357. height: math.unit(100, "meters")
  37358. },
  37359. {
  37360. name: "\"Small\" Deity",
  37361. height: math.unit(1, "km")
  37362. },
  37363. {
  37364. name: "\"Large\" Deity",
  37365. height: math.unit(15, "km")
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(6, "feet"),
  37374. weight: math.unit(250, "lb"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/mukiro/front.svg",
  37378. extra: 1368/1310,
  37379. bottom: 34/1402
  37380. }
  37381. },
  37382. },
  37383. [
  37384. {
  37385. name: "Normal",
  37386. height: math.unit(6, "feet"),
  37387. default: true
  37388. },
  37389. ]
  37390. ))
  37391. characterMakers.push(() => makeCharacter(
  37392. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37393. {
  37394. front: {
  37395. height: math.unit(12 + 4/12, "feet"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37399. extra: 1346/1311,
  37400. bottom: 65/1411
  37401. }
  37402. },
  37403. },
  37404. [
  37405. {
  37406. name: "Base",
  37407. height: math.unit(12 + 4/12, "feet"),
  37408. default: true
  37409. },
  37410. {
  37411. name: "Macro",
  37412. height: math.unit(150, "feet")
  37413. },
  37414. {
  37415. name: "Mega",
  37416. height: math.unit(2, "miles")
  37417. },
  37418. {
  37419. name: "Demi God",
  37420. height: math.unit(4, "AU")
  37421. },
  37422. {
  37423. name: "God Size",
  37424. height: math.unit(1, "universe")
  37425. },
  37426. ]
  37427. ))
  37428. characterMakers.push(() => makeCharacter(
  37429. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37430. {
  37431. front: {
  37432. height: math.unit(3 + 3/12, "feet"),
  37433. weight: math.unit(88, "lb"),
  37434. name: "Front",
  37435. image: {
  37436. source: "./media/characters/trey/front.svg",
  37437. extra: 1815/1509,
  37438. bottom: 60/1875
  37439. }
  37440. },
  37441. },
  37442. [
  37443. {
  37444. name: "Normal",
  37445. height: math.unit(3 + 3/12, "feet"),
  37446. default: true
  37447. },
  37448. ]
  37449. ))
  37450. characterMakers.push(() => makeCharacter(
  37451. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37452. {
  37453. front: {
  37454. height: math.unit(4, "meters"),
  37455. name: "Front",
  37456. image: {
  37457. source: "./media/characters/adelonda/front.svg",
  37458. extra: 1077/982,
  37459. bottom: 39/1116
  37460. }
  37461. },
  37462. back: {
  37463. height: math.unit(4, "meters"),
  37464. name: "Back",
  37465. image: {
  37466. source: "./media/characters/adelonda/back.svg",
  37467. extra: 1105/1003,
  37468. bottom: 25/1130
  37469. }
  37470. },
  37471. },
  37472. [
  37473. {
  37474. name: "Normal",
  37475. height: math.unit(4, "meters"),
  37476. default: true
  37477. },
  37478. ]
  37479. ))
  37480. characterMakers.push(() => makeCharacter(
  37481. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37482. {
  37483. front: {
  37484. height: math.unit(8 + 4/12, "feet"),
  37485. weight: math.unit(670, "lb"),
  37486. name: "Front",
  37487. image: {
  37488. source: "./media/characters/acadiel/front.svg",
  37489. extra: 1901/1595,
  37490. bottom: 142/2043
  37491. }
  37492. },
  37493. },
  37494. [
  37495. {
  37496. name: "Normal",
  37497. height: math.unit(8 + 4/12, "feet"),
  37498. default: true
  37499. },
  37500. {
  37501. name: "Macro",
  37502. height: math.unit(200, "feet")
  37503. },
  37504. ]
  37505. ))
  37506. characterMakers.push(() => makeCharacter(
  37507. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37508. {
  37509. front: {
  37510. height: math.unit(6 + 2/12, "feet"),
  37511. weight: math.unit(185, "lb"),
  37512. name: "Front",
  37513. image: {
  37514. source: "./media/characters/kayne-ein/front.svg",
  37515. extra: 1780/1560,
  37516. bottom: 81/1861
  37517. }
  37518. },
  37519. },
  37520. [
  37521. {
  37522. name: "Normal",
  37523. height: math.unit(6 + 2/12, "feet"),
  37524. default: true
  37525. },
  37526. {
  37527. name: "Transformation Stage",
  37528. height: math.unit(15, "feet")
  37529. },
  37530. {
  37531. name: "Macro",
  37532. height: math.unit(150, "feet")
  37533. },
  37534. {
  37535. name: "Earth's Shadow",
  37536. height: math.unit(6200, "miles")
  37537. },
  37538. {
  37539. name: "Universal Demon",
  37540. height: math.unit(28e9, "parsecs")
  37541. },
  37542. {
  37543. name: "Multiverse God",
  37544. height: math.unit(3, "multiverses")
  37545. },
  37546. ]
  37547. ))
  37548. characterMakers.push(() => makeCharacter(
  37549. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37550. {
  37551. front: {
  37552. height: math.unit(5 + 5/12, "feet"),
  37553. name: "Front",
  37554. image: {
  37555. source: "./media/characters/fawn/front.svg",
  37556. extra: 1873/1731,
  37557. bottom: 95/1968
  37558. }
  37559. },
  37560. back: {
  37561. height: math.unit(5 + 5/12, "feet"),
  37562. name: "Back",
  37563. image: {
  37564. source: "./media/characters/fawn/back.svg",
  37565. extra: 1813/1700,
  37566. bottom: 14/1827
  37567. }
  37568. },
  37569. hoof: {
  37570. height: math.unit(1.45, "feet"),
  37571. name: "Hoof",
  37572. image: {
  37573. source: "./media/characters/fawn/hoof.svg"
  37574. }
  37575. },
  37576. },
  37577. [
  37578. {
  37579. name: "Normal",
  37580. height: math.unit(5 + 5/12, "feet"),
  37581. default: true
  37582. },
  37583. ]
  37584. ))
  37585. characterMakers.push(() => makeCharacter(
  37586. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37587. {
  37588. front: {
  37589. height: math.unit(2 + 5/12, "feet"),
  37590. name: "Front",
  37591. image: {
  37592. source: "./media/characters/orion/front.svg",
  37593. extra: 1366/1304,
  37594. bottom: 43/1409
  37595. }
  37596. },
  37597. paw: {
  37598. height: math.unit(0.52, "feet"),
  37599. name: "Paw",
  37600. image: {
  37601. source: "./media/characters/orion/paw.svg"
  37602. }
  37603. },
  37604. },
  37605. [
  37606. {
  37607. name: "Normal",
  37608. height: math.unit(2 + 5/12, "feet"),
  37609. default: true
  37610. },
  37611. ]
  37612. ))
  37613. characterMakers.push(() => makeCharacter(
  37614. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37615. {
  37616. front: {
  37617. height: math.unit(5 + 10/12, "feet"),
  37618. name: "Front",
  37619. image: {
  37620. source: "./media/characters/vera/front.svg",
  37621. extra: 1680/1575,
  37622. bottom: 49/1729
  37623. }
  37624. },
  37625. back: {
  37626. height: math.unit(5 + 10/12, "feet"),
  37627. name: "Back",
  37628. image: {
  37629. source: "./media/characters/vera/back.svg",
  37630. extra: 1700/1588,
  37631. bottom: 18/1718
  37632. }
  37633. },
  37634. arcanine: {
  37635. height: math.unit(6 + 8/12, "feet"),
  37636. name: "Arcanine",
  37637. image: {
  37638. source: "./media/characters/vera/arcanine.svg",
  37639. extra: 1590/1511,
  37640. bottom: 71/1661
  37641. }
  37642. },
  37643. maw: {
  37644. height: math.unit(0.82, "feet"),
  37645. name: "Maw",
  37646. image: {
  37647. source: "./media/characters/vera/maw.svg"
  37648. }
  37649. },
  37650. mawArcanine: {
  37651. height: math.unit(0.97, "feet"),
  37652. name: "Maw (Arcanine)",
  37653. image: {
  37654. source: "./media/characters/vera/maw-arcanine.svg"
  37655. }
  37656. },
  37657. paw: {
  37658. height: math.unit(0.75, "feet"),
  37659. name: "Paw",
  37660. image: {
  37661. source: "./media/characters/vera/paw.svg"
  37662. }
  37663. },
  37664. pawprint: {
  37665. height: math.unit(0.52, "feet"),
  37666. name: "Pawprint",
  37667. image: {
  37668. source: "./media/characters/vera/pawprint.svg"
  37669. }
  37670. },
  37671. },
  37672. [
  37673. {
  37674. name: "Normal",
  37675. height: math.unit(5 + 10/12, "feet"),
  37676. default: true
  37677. },
  37678. {
  37679. name: "Macro",
  37680. height: math.unit(75, "feet")
  37681. },
  37682. ]
  37683. ))
  37684. characterMakers.push(() => makeCharacter(
  37685. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37686. {
  37687. front: {
  37688. height: math.unit(4, "feet"),
  37689. weight: math.unit(40, "lb"),
  37690. name: "Front",
  37691. image: {
  37692. source: "./media/characters/orvan-rabbit/front.svg",
  37693. extra: 1896/1642,
  37694. bottom: 29/1925
  37695. }
  37696. },
  37697. },
  37698. [
  37699. {
  37700. name: "Normal",
  37701. height: math.unit(4, "feet"),
  37702. default: true
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(6, "feet"),
  37711. weight: math.unit(168, "lb"),
  37712. name: "Front",
  37713. image: {
  37714. source: "./media/characters/lisa/front.svg",
  37715. extra: 2065/1867,
  37716. bottom: 46/2111
  37717. }
  37718. },
  37719. back: {
  37720. height: math.unit(6, "feet"),
  37721. weight: math.unit(168, "lb"),
  37722. name: "Back",
  37723. image: {
  37724. source: "./media/characters/lisa/back.svg",
  37725. extra: 1982/1838,
  37726. bottom: 29/2011
  37727. }
  37728. },
  37729. maw: {
  37730. height: math.unit(0.81, "feet"),
  37731. name: "Maw",
  37732. image: {
  37733. source: "./media/characters/lisa/maw.svg"
  37734. }
  37735. },
  37736. paw: {
  37737. height: math.unit(0.9, "feet"),
  37738. name: "Paw",
  37739. image: {
  37740. source: "./media/characters/lisa/paw.svg"
  37741. }
  37742. },
  37743. caribousune: {
  37744. height: math.unit(7 + 2/12, "feet"),
  37745. weight: math.unit(268, "lb"),
  37746. name: "Caribousune",
  37747. image: {
  37748. source: "./media/characters/lisa/caribousune.svg",
  37749. extra: 1843/1633,
  37750. bottom: 29/1872
  37751. }
  37752. },
  37753. frontCaribousune: {
  37754. height: math.unit(7 + 2/12, "feet"),
  37755. weight: math.unit(268, "lb"),
  37756. name: "Front (Caribousune)",
  37757. image: {
  37758. source: "./media/characters/lisa/front-caribousune.svg",
  37759. extra: 1818/1638,
  37760. bottom: 52/1870
  37761. }
  37762. },
  37763. sideCaribousune: {
  37764. height: math.unit(7 + 2/12, "feet"),
  37765. weight: math.unit(268, "lb"),
  37766. name: "Side (Caribousune)",
  37767. image: {
  37768. source: "./media/characters/lisa/side-caribousune.svg",
  37769. extra: 1851/1635,
  37770. bottom: 16/1867
  37771. }
  37772. },
  37773. backCaribousune: {
  37774. height: math.unit(7 + 2/12, "feet"),
  37775. weight: math.unit(268, "lb"),
  37776. name: "Back (Caribousune)",
  37777. image: {
  37778. source: "./media/characters/lisa/back-caribousune.svg",
  37779. extra: 1801/1604,
  37780. bottom: 44/1845
  37781. }
  37782. },
  37783. caribou: {
  37784. height: math.unit(7 + 2/12, "feet"),
  37785. weight: math.unit(268, "lb"),
  37786. name: "Caribou",
  37787. image: {
  37788. source: "./media/characters/lisa/caribou.svg",
  37789. extra: 1843/1633,
  37790. bottom: 29/1872
  37791. }
  37792. },
  37793. frontCaribou: {
  37794. height: math.unit(7 + 2/12, "feet"),
  37795. weight: math.unit(268, "lb"),
  37796. name: "Front (Caribou)",
  37797. image: {
  37798. source: "./media/characters/lisa/front-caribou.svg",
  37799. extra: 1818/1638,
  37800. bottom: 52/1870
  37801. }
  37802. },
  37803. sideCaribou: {
  37804. height: math.unit(7 + 2/12, "feet"),
  37805. weight: math.unit(268, "lb"),
  37806. name: "Side (Caribou)",
  37807. image: {
  37808. source: "./media/characters/lisa/side-caribou.svg",
  37809. extra: 1851/1635,
  37810. bottom: 16/1867
  37811. }
  37812. },
  37813. backCaribou: {
  37814. height: math.unit(7 + 2/12, "feet"),
  37815. weight: math.unit(268, "lb"),
  37816. name: "Back (Caribou)",
  37817. image: {
  37818. source: "./media/characters/lisa/back-caribou.svg",
  37819. extra: 1801/1604,
  37820. bottom: 44/1845
  37821. }
  37822. },
  37823. mawCaribou: {
  37824. height: math.unit(1.45, "feet"),
  37825. name: "Maw (Caribou)",
  37826. image: {
  37827. source: "./media/characters/lisa/maw-caribou.svg"
  37828. }
  37829. },
  37830. mawCaribousune: {
  37831. height: math.unit(1.45, "feet"),
  37832. name: "Maw (Caribousune)",
  37833. image: {
  37834. source: "./media/characters/lisa/maw-caribousune.svg"
  37835. }
  37836. },
  37837. pawCaribousune: {
  37838. height: math.unit(1.61, "feet"),
  37839. name: "Paw (Caribou)",
  37840. image: {
  37841. source: "./media/characters/lisa/paw-caribousune.svg"
  37842. }
  37843. },
  37844. },
  37845. [
  37846. {
  37847. name: "Normal",
  37848. height: math.unit(6, "feet")
  37849. },
  37850. {
  37851. name: "God Size",
  37852. height: math.unit(72, "feet"),
  37853. default: true
  37854. },
  37855. {
  37856. name: "Towering",
  37857. height: math.unit(288, "feet")
  37858. },
  37859. {
  37860. name: "City Size",
  37861. height: math.unit(48384, "feet")
  37862. },
  37863. {
  37864. name: "Continental",
  37865. height: math.unit(4200, "miles")
  37866. },
  37867. {
  37868. name: "Planet Eater",
  37869. height: math.unit(42, "earths")
  37870. },
  37871. {
  37872. name: "Star Swallower",
  37873. height: math.unit(42, "solarradii")
  37874. },
  37875. {
  37876. name: "System Swallower",
  37877. height: math.unit(84000, "AU")
  37878. },
  37879. {
  37880. name: "Galaxy Gobbler",
  37881. height: math.unit(42, "galaxies")
  37882. },
  37883. {
  37884. name: "Universe Devourer",
  37885. height: math.unit(42, "universes")
  37886. },
  37887. {
  37888. name: "Multiverse Muncher",
  37889. height: math.unit(42, "multiverses")
  37890. },
  37891. ]
  37892. ))
  37893. characterMakers.push(() => makeCharacter(
  37894. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37895. {
  37896. front: {
  37897. height: math.unit(36, "feet"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/shadow-rat/front.svg",
  37901. extra: 1845/1758,
  37902. bottom: 83/1928
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Macro",
  37909. height: math.unit(36, "feet"),
  37910. default: true
  37911. },
  37912. ]
  37913. ))
  37914. characterMakers.push(() => makeCharacter(
  37915. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37916. {
  37917. side: {
  37918. height: math.unit(8, "feet"),
  37919. weight: math.unit(2630, "lb"),
  37920. name: "Side",
  37921. image: {
  37922. source: "./media/characters/torallia/side.svg",
  37923. extra: 2164/2021,
  37924. bottom: 371/2535
  37925. }
  37926. },
  37927. },
  37928. [
  37929. {
  37930. name: "Mortal Interaction",
  37931. height: math.unit(8, "feet")
  37932. },
  37933. {
  37934. name: "Natural",
  37935. height: math.unit(24, "feet"),
  37936. default: true
  37937. },
  37938. {
  37939. name: "Giant",
  37940. height: math.unit(80, "feet")
  37941. },
  37942. {
  37943. name: "Kaiju",
  37944. height: math.unit(240, "feet")
  37945. },
  37946. {
  37947. name: "Macro",
  37948. height: math.unit(800, "feet")
  37949. },
  37950. {
  37951. name: "Macro+",
  37952. height: math.unit(2400, "feet")
  37953. },
  37954. {
  37955. name: "Macro++",
  37956. height: math.unit(8000, "feet")
  37957. },
  37958. {
  37959. name: "City-Crushing",
  37960. height: math.unit(24000, "feet")
  37961. },
  37962. {
  37963. name: "Mountain-Mashing",
  37964. height: math.unit(80000, "feet")
  37965. },
  37966. {
  37967. name: "District Demolisher",
  37968. height: math.unit(240000, "feet")
  37969. },
  37970. {
  37971. name: "Tri-County Terror",
  37972. height: math.unit(800000, "feet")
  37973. },
  37974. {
  37975. name: "State Smasher",
  37976. height: math.unit(2.4e6, "feet")
  37977. },
  37978. {
  37979. name: "Nation Nemesis",
  37980. height: math.unit(8e6, "feet")
  37981. },
  37982. {
  37983. name: "Continent Cracker",
  37984. height: math.unit(2.4e7, "feet")
  37985. },
  37986. {
  37987. name: "Planet-Pillaging",
  37988. height: math.unit(8e7, "feet")
  37989. },
  37990. {
  37991. name: "Earth-Eclipsing",
  37992. height: math.unit(2.4e8, "feet")
  37993. },
  37994. {
  37995. name: "Jovian-Jostling",
  37996. height: math.unit(8e8, "feet")
  37997. },
  37998. {
  37999. name: "Gas Giant Gulper",
  38000. height: math.unit(2.4e9, "feet")
  38001. },
  38002. {
  38003. name: "Astral Annihilator",
  38004. height: math.unit(8e9, "feet")
  38005. },
  38006. {
  38007. name: "Celestial Conqueror",
  38008. height: math.unit(2.4e10, "feet")
  38009. },
  38010. {
  38011. name: "Sol-Swallowing",
  38012. height: math.unit(8e10, "feet")
  38013. },
  38014. {
  38015. name: "Hunter of the Heavens",
  38016. height: math.unit(2.4e13, "feet")
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(6 + 8/12, "feet"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/rebecca-pawlson/front.svg",
  38028. extra: 1737/1596,
  38029. bottom: 107/1844
  38030. }
  38031. },
  38032. back: {
  38033. height: math.unit(6 + 8/12, "feet"),
  38034. name: "Back",
  38035. image: {
  38036. source: "./media/characters/rebecca-pawlson/back.svg",
  38037. extra: 1702/1523,
  38038. bottom: 86/1788
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(6 + 8/12, "feet")
  38046. },
  38047. {
  38048. name: "Mini Macro",
  38049. height: math.unit(10, "feet"),
  38050. default: true
  38051. },
  38052. {
  38053. name: "Macro",
  38054. height: math.unit(100, "feet")
  38055. },
  38056. {
  38057. name: "Mega Macro",
  38058. height: math.unit(2500, "feet")
  38059. },
  38060. {
  38061. name: "Giga Macro",
  38062. height: math.unit(50, "miles")
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(7 + 6/12, "feet"),
  38071. weight: math.unit(600, "lb"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/moxie-nova/front.svg",
  38075. extra: 1734/1652,
  38076. bottom: 41/1775
  38077. }
  38078. },
  38079. },
  38080. [
  38081. {
  38082. name: "Normal",
  38083. height: math.unit(7 + 6/12, "feet"),
  38084. default: true
  38085. },
  38086. ]
  38087. ))
  38088. characterMakers.push(() => makeCharacter(
  38089. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38090. {
  38091. goat: {
  38092. height: math.unit(4, "feet"),
  38093. weight: math.unit(180, "lb"),
  38094. name: "Goat",
  38095. image: {
  38096. source: "./media/characters/tiffany/goat.svg",
  38097. extra: 1845/1595,
  38098. bottom: 106/1951
  38099. }
  38100. },
  38101. front: {
  38102. height: math.unit(5, "feet"),
  38103. weight: math.unit(150, "lb"),
  38104. name: "Foxcoon",
  38105. image: {
  38106. source: "./media/characters/tiffany/foxcoon.svg",
  38107. extra: 1941/1845,
  38108. bottom: 58/1999
  38109. }
  38110. },
  38111. },
  38112. [
  38113. {
  38114. name: "Normal",
  38115. height: math.unit(5, "feet"),
  38116. default: true
  38117. },
  38118. ]
  38119. ))
  38120. characterMakers.push(() => makeCharacter(
  38121. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38122. {
  38123. front: {
  38124. height: math.unit(8, "feet"),
  38125. weight: math.unit(300, "lb"),
  38126. name: "Front",
  38127. image: {
  38128. source: "./media/characters/raxinath/front.svg",
  38129. extra: 1407/1309,
  38130. bottom: 39/1446
  38131. }
  38132. },
  38133. back: {
  38134. height: math.unit(8, "feet"),
  38135. weight: math.unit(300, "lb"),
  38136. name: "Back",
  38137. image: {
  38138. source: "./media/characters/raxinath/back.svg",
  38139. extra: 1405/1315,
  38140. bottom: 9/1414
  38141. }
  38142. },
  38143. },
  38144. [
  38145. {
  38146. name: "Speck",
  38147. height: math.unit(0.5, "nm")
  38148. },
  38149. {
  38150. name: "Micro",
  38151. height: math.unit(3, "inches")
  38152. },
  38153. {
  38154. name: "Kobold",
  38155. height: math.unit(3, "feet")
  38156. },
  38157. {
  38158. name: "Normal",
  38159. height: math.unit(8, "feet"),
  38160. default: true
  38161. },
  38162. {
  38163. name: "Giant",
  38164. height: math.unit(50, "feet")
  38165. },
  38166. {
  38167. name: "Macro",
  38168. height: math.unit(1000, "feet")
  38169. },
  38170. {
  38171. name: "Megamacro",
  38172. height: math.unit(1, "mile")
  38173. },
  38174. ]
  38175. ))
  38176. characterMakers.push(() => makeCharacter(
  38177. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38178. {
  38179. front: {
  38180. height: math.unit(10, "feet"),
  38181. weight: math.unit(1442, "lb"),
  38182. name: "Front",
  38183. image: {
  38184. source: "./media/characters/mal-dragon/front.svg",
  38185. extra: 1515/1444,
  38186. bottom: 113/1628
  38187. }
  38188. },
  38189. back: {
  38190. height: math.unit(10, "feet"),
  38191. weight: math.unit(1442, "lb"),
  38192. name: "Back",
  38193. image: {
  38194. source: "./media/characters/mal-dragon/back.svg",
  38195. extra: 1527/1434,
  38196. bottom: 25/1552
  38197. }
  38198. },
  38199. },
  38200. [
  38201. {
  38202. name: "Mortal Interaction",
  38203. height: math.unit(10, "feet"),
  38204. default: true
  38205. },
  38206. {
  38207. name: "Large",
  38208. height: math.unit(30, "feet")
  38209. },
  38210. {
  38211. name: "Kaiju",
  38212. height: math.unit(300, "feet")
  38213. },
  38214. {
  38215. name: "Megamacro",
  38216. height: math.unit(10000, "feet")
  38217. },
  38218. {
  38219. name: "Continent Cracker",
  38220. height: math.unit(30000000, "feet")
  38221. },
  38222. {
  38223. name: "Sol-Swallowing",
  38224. height: math.unit(1e11, "feet")
  38225. },
  38226. {
  38227. name: "Light Universal",
  38228. height: math.unit(5, "universes")
  38229. },
  38230. {
  38231. name: "Universe Atoms",
  38232. height: math.unit(1.829e9, "universes")
  38233. },
  38234. {
  38235. name: "Light Multiversal",
  38236. height: math.unit(5, "multiverses")
  38237. },
  38238. {
  38239. name: "Multiverse Atoms",
  38240. height: math.unit(1.829e9, "multiverses")
  38241. },
  38242. {
  38243. name: "Fabric of Time",
  38244. height: math.unit(1e262, "multiverses")
  38245. },
  38246. ]
  38247. ))
  38248. characterMakers.push(() => makeCharacter(
  38249. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38250. {
  38251. front: {
  38252. height: math.unit(9, "feet"),
  38253. weight: math.unit(1050, "lb"),
  38254. name: "Front",
  38255. image: {
  38256. source: "./media/characters/tabitha/front.svg",
  38257. extra: 2083/1994,
  38258. bottom: 68/2151
  38259. }
  38260. },
  38261. },
  38262. [
  38263. {
  38264. name: "Baseline",
  38265. height: math.unit(9, "feet"),
  38266. default: true
  38267. },
  38268. {
  38269. name: "Giant",
  38270. height: math.unit(90, "feet")
  38271. },
  38272. {
  38273. name: "Macro",
  38274. height: math.unit(900, "feet")
  38275. },
  38276. {
  38277. name: "Megamacro",
  38278. height: math.unit(9000, "feet")
  38279. },
  38280. {
  38281. name: "City-Crushing",
  38282. height: math.unit(27000, "feet")
  38283. },
  38284. {
  38285. name: "Mountain-Mashing",
  38286. height: math.unit(90000, "feet")
  38287. },
  38288. {
  38289. name: "Nation Nemesis",
  38290. height: math.unit(9e6, "feet")
  38291. },
  38292. {
  38293. name: "Continent Cracker",
  38294. height: math.unit(27e6, "feet")
  38295. },
  38296. {
  38297. name: "Earth-Eclipsing",
  38298. height: math.unit(2.7e8, "feet")
  38299. },
  38300. {
  38301. name: "Gas Giant Gulper",
  38302. height: math.unit(2.7e9, "feet")
  38303. },
  38304. {
  38305. name: "Sol-Swallowing",
  38306. height: math.unit(9e10, "feet")
  38307. },
  38308. {
  38309. name: "Galaxy Gulper",
  38310. height: math.unit(9, "galaxies")
  38311. },
  38312. {
  38313. name: "Cosmos Churner",
  38314. height: math.unit(9, "universes")
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38320. {
  38321. front: {
  38322. height: math.unit(160, "cm"),
  38323. weight: math.unit(55, "kg"),
  38324. name: "Front",
  38325. image: {
  38326. source: "./media/characters/tow/front.svg",
  38327. extra: 1751/1722,
  38328. bottom: 74/1825
  38329. }
  38330. },
  38331. },
  38332. [
  38333. {
  38334. name: "Norm",
  38335. height: math.unit(160, "cm")
  38336. },
  38337. {
  38338. name: "Casual",
  38339. height: math.unit(3200, "m"),
  38340. default: true
  38341. },
  38342. {
  38343. name: "Show-Off",
  38344. height: math.unit(160, "km")
  38345. },
  38346. ]
  38347. ))
  38348. characterMakers.push(() => makeCharacter(
  38349. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38350. {
  38351. front: {
  38352. height: math.unit(7 + 11/12, "feet"),
  38353. weight: math.unit(342.8, "lb"),
  38354. name: "Front",
  38355. image: {
  38356. source: "./media/characters/vivian-orca-dragon/front.svg",
  38357. extra: 1890/1865,
  38358. bottom: 28/1918
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Micro",
  38365. height: math.unit(5, "inches")
  38366. },
  38367. {
  38368. name: "Normal",
  38369. height: math.unit(7 + 11/12, "feet"),
  38370. default: true
  38371. },
  38372. {
  38373. name: "Macro",
  38374. height: math.unit(395 + 7/12, "feet")
  38375. },
  38376. ]
  38377. ))
  38378. characterMakers.push(() => makeCharacter(
  38379. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38380. {
  38381. side: {
  38382. height: math.unit(10, "feet"),
  38383. weight: math.unit(1442, "lb"),
  38384. name: "Side",
  38385. image: {
  38386. source: "./media/characters/lotherakon/side.svg",
  38387. extra: 1604/1497,
  38388. bottom: 89/1693
  38389. }
  38390. },
  38391. },
  38392. [
  38393. {
  38394. name: "Mortal Interaction",
  38395. height: math.unit(10, "feet")
  38396. },
  38397. {
  38398. name: "Large",
  38399. height: math.unit(30, "feet"),
  38400. default: true
  38401. },
  38402. {
  38403. name: "Giant",
  38404. height: math.unit(100, "feet")
  38405. },
  38406. {
  38407. name: "Kaiju",
  38408. height: math.unit(300, "feet")
  38409. },
  38410. {
  38411. name: "Macro",
  38412. height: math.unit(1000, "feet")
  38413. },
  38414. {
  38415. name: "Macro+",
  38416. height: math.unit(3000, "feet")
  38417. },
  38418. {
  38419. name: "Megamacro",
  38420. height: math.unit(10000, "feet")
  38421. },
  38422. {
  38423. name: "City-Crushing",
  38424. height: math.unit(30000, "feet")
  38425. },
  38426. {
  38427. name: "Continent Cracker",
  38428. height: math.unit(30e6, "feet")
  38429. },
  38430. {
  38431. name: "Earth Eclipsing",
  38432. height: math.unit(3e8, "feet")
  38433. },
  38434. {
  38435. name: "Gas Giant Gulper",
  38436. height: math.unit(3e9, "feet")
  38437. },
  38438. {
  38439. name: "Sol-Swallowing",
  38440. height: math.unit(1e11, "feet")
  38441. },
  38442. {
  38443. name: "System Swallower",
  38444. height: math.unit(3e14, "feet")
  38445. },
  38446. {
  38447. name: "Galaxy Gulper",
  38448. height: math.unit(10, "galaxies")
  38449. },
  38450. {
  38451. name: "Light Universal",
  38452. height: math.unit(5, "universes")
  38453. },
  38454. {
  38455. name: "Universe Palm",
  38456. height: math.unit(20, "universes")
  38457. },
  38458. {
  38459. name: "Light Multiversal",
  38460. height: math.unit(5, "multiverses")
  38461. },
  38462. {
  38463. name: "Multiverse Palm",
  38464. height: math.unit(20, "multiverses")
  38465. },
  38466. {
  38467. name: "Inferno Incarnate",
  38468. height: math.unit(1e7, "multiverses")
  38469. },
  38470. ]
  38471. ))
  38472. characterMakers.push(() => makeCharacter(
  38473. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38474. {
  38475. front: {
  38476. height: math.unit(8, "feet"),
  38477. weight: math.unit(1200, "lb"),
  38478. name: "Front",
  38479. image: {
  38480. source: "./media/characters/malithee/front.svg",
  38481. extra: 1675/1640,
  38482. bottom: 162/1837
  38483. }
  38484. },
  38485. },
  38486. [
  38487. {
  38488. name: "Mortal Interaction",
  38489. height: math.unit(8, "feet"),
  38490. default: true
  38491. },
  38492. {
  38493. name: "Large",
  38494. height: math.unit(24, "feet")
  38495. },
  38496. {
  38497. name: "Kaiju",
  38498. height: math.unit(240, "feet")
  38499. },
  38500. {
  38501. name: "Megamacro",
  38502. height: math.unit(8000, "feet")
  38503. },
  38504. {
  38505. name: "Continent Cracker",
  38506. height: math.unit(24e6, "feet")
  38507. },
  38508. {
  38509. name: "Earth-Eclipsing",
  38510. height: math.unit(2.4e8, "feet")
  38511. },
  38512. {
  38513. name: "Sol-Swallowing",
  38514. height: math.unit(8e10, "feet")
  38515. },
  38516. {
  38517. name: "Galaxy Gulper",
  38518. height: math.unit(8, "galaxies")
  38519. },
  38520. {
  38521. name: "Light Universal",
  38522. height: math.unit(4, "universes")
  38523. },
  38524. {
  38525. name: "Universe Atoms",
  38526. height: math.unit(1.829e9, "universes")
  38527. },
  38528. {
  38529. name: "Light Multiversal",
  38530. height: math.unit(4, "multiverses")
  38531. },
  38532. {
  38533. name: "Multiverse Atoms",
  38534. height: math.unit(1.829e9, "multiverses")
  38535. },
  38536. {
  38537. name: "Nigh-Omnipresence",
  38538. height: math.unit(8e261, "multiverses")
  38539. },
  38540. ]
  38541. ))
  38542. characterMakers.push(() => makeCharacter(
  38543. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38544. {
  38545. front: {
  38546. height: math.unit(10, "feet"),
  38547. weight: math.unit(1500, "lb"),
  38548. name: "Front",
  38549. image: {
  38550. source: "./media/characters/miles-thestia/front.svg",
  38551. extra: 1812/1727,
  38552. bottom: 86/1898
  38553. }
  38554. },
  38555. back: {
  38556. height: math.unit(10, "feet"),
  38557. weight: math.unit(1500, "lb"),
  38558. name: "Back",
  38559. image: {
  38560. source: "./media/characters/miles-thestia/back.svg",
  38561. extra: 1799/1690,
  38562. bottom: 47/1846
  38563. }
  38564. },
  38565. frontNsfw: {
  38566. height: math.unit(10, "feet"),
  38567. weight: math.unit(1500, "lb"),
  38568. name: "Front (NSFW)",
  38569. image: {
  38570. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38571. extra: 1812/1727,
  38572. bottom: 86/1898
  38573. }
  38574. },
  38575. },
  38576. [
  38577. {
  38578. name: "Mini-Macro",
  38579. height: math.unit(10, "feet"),
  38580. default: true
  38581. },
  38582. ]
  38583. ))
  38584. characterMakers.push(() => makeCharacter(
  38585. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38586. {
  38587. front: {
  38588. height: math.unit(25, "feet"),
  38589. name: "Front",
  38590. image: {
  38591. source: "./media/characters/titan-s-wulf/front.svg",
  38592. extra: 1560/1484,
  38593. bottom: 76/1636
  38594. }
  38595. },
  38596. },
  38597. [
  38598. {
  38599. name: "Smallest",
  38600. height: math.unit(25, "feet"),
  38601. default: true
  38602. },
  38603. {
  38604. name: "Normal",
  38605. height: math.unit(200, "feet")
  38606. },
  38607. {
  38608. name: "Macro",
  38609. height: math.unit(200000, "feet")
  38610. },
  38611. {
  38612. name: "Multiversal Original",
  38613. height: math.unit(10000, "multiverses")
  38614. },
  38615. ]
  38616. ))
  38617. characterMakers.push(() => makeCharacter(
  38618. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38619. {
  38620. front: {
  38621. height: math.unit(8, "feet"),
  38622. weight: math.unit(553, "lb"),
  38623. name: "Front",
  38624. image: {
  38625. source: "./media/characters/tawendeh/front.svg",
  38626. extra: 2365/2268,
  38627. bottom: 83/2448
  38628. }
  38629. },
  38630. frontClothed: {
  38631. height: math.unit(8, "feet"),
  38632. weight: math.unit(553, "lb"),
  38633. name: "Front (Clothed)",
  38634. image: {
  38635. source: "./media/characters/tawendeh/front-clothed.svg",
  38636. extra: 2365/2268,
  38637. bottom: 83/2448
  38638. }
  38639. },
  38640. back: {
  38641. height: math.unit(8, "feet"),
  38642. weight: math.unit(553, "lb"),
  38643. name: "Back",
  38644. image: {
  38645. source: "./media/characters/tawendeh/back.svg",
  38646. extra: 2397/2294,
  38647. bottom: 42/2439
  38648. }
  38649. },
  38650. },
  38651. [
  38652. {
  38653. name: "Mortal Interaction",
  38654. height: math.unit(8, "feet"),
  38655. default: true
  38656. },
  38657. {
  38658. name: "Giant",
  38659. height: math.unit(80, "feet")
  38660. },
  38661. {
  38662. name: "Macro",
  38663. height: math.unit(800, "feet")
  38664. },
  38665. {
  38666. name: "Megamacro",
  38667. height: math.unit(8000, "feet")
  38668. },
  38669. {
  38670. name: "City-Crushing",
  38671. height: math.unit(24000, "feet")
  38672. },
  38673. {
  38674. name: "Mountain-Mashing",
  38675. height: math.unit(80000, "feet")
  38676. },
  38677. {
  38678. name: "Nation Nemesis",
  38679. height: math.unit(8e6, "feet")
  38680. },
  38681. {
  38682. name: "Continent Cracker",
  38683. height: math.unit(24e6, "feet")
  38684. },
  38685. {
  38686. name: "Earth-Eclipsing",
  38687. height: math.unit(2.4e8, "feet")
  38688. },
  38689. {
  38690. name: "Gas Giant Gulper",
  38691. height: math.unit(2.4e9, "feet")
  38692. },
  38693. {
  38694. name: "Sol-Swallowing",
  38695. height: math.unit(8e10, "feet")
  38696. },
  38697. {
  38698. name: "Galaxy Gulper",
  38699. height: math.unit(8, "galaxies")
  38700. },
  38701. {
  38702. name: "Cosmos Churner",
  38703. height: math.unit(8, "universes")
  38704. },
  38705. {
  38706. name: "Omnipotent Otter",
  38707. height: math.unit(80, "universes")
  38708. },
  38709. ]
  38710. ))
  38711. characterMakers.push(() => makeCharacter(
  38712. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38713. {
  38714. front: {
  38715. height: math.unit(2.6, "meters"),
  38716. weight: math.unit(900, "kg"),
  38717. name: "Front",
  38718. image: {
  38719. source: "./media/characters/neesha/front.svg",
  38720. extra: 1803/1653,
  38721. bottom: 128/1931
  38722. }
  38723. },
  38724. },
  38725. [
  38726. {
  38727. name: "Normal",
  38728. height: math.unit(2.6, "meters"),
  38729. default: true
  38730. },
  38731. {
  38732. name: "Macro",
  38733. height: math.unit(50, "meters")
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38739. {
  38740. front: {
  38741. height: math.unit(5, "feet"),
  38742. weight: math.unit(185, "lb"),
  38743. name: "Front",
  38744. image: {
  38745. source: "./media/characters/kyera/front.svg",
  38746. extra: 1875/1790,
  38747. bottom: 96/1971
  38748. }
  38749. },
  38750. },
  38751. [
  38752. {
  38753. name: "Normal",
  38754. height: math.unit(5, "feet"),
  38755. default: true
  38756. },
  38757. ]
  38758. ))
  38759. characterMakers.push(() => makeCharacter(
  38760. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38761. {
  38762. front: {
  38763. height: math.unit(7 + 6/12, "feet"),
  38764. weight: math.unit(540, "lb"),
  38765. name: "Front",
  38766. image: {
  38767. source: "./media/characters/yuko/front.svg",
  38768. extra: 1282/1222,
  38769. bottom: 101/1383
  38770. }
  38771. },
  38772. frontClothed: {
  38773. height: math.unit(7 + 6/12, "feet"),
  38774. weight: math.unit(540, "lb"),
  38775. name: "Front (Clothed)",
  38776. image: {
  38777. source: "./media/characters/yuko/front-clothed.svg",
  38778. extra: 1282/1222,
  38779. bottom: 101/1383
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Normal",
  38786. height: math.unit(7 + 6/12, "feet"),
  38787. default: true
  38788. },
  38789. {
  38790. name: "Macro",
  38791. height: math.unit(26 + 9/12, "feet")
  38792. },
  38793. {
  38794. name: "Megamacro",
  38795. height: math.unit(300, "feet")
  38796. },
  38797. {
  38798. name: "Gigamacro",
  38799. height: math.unit(5000, "feet")
  38800. },
  38801. {
  38802. name: "Planetary",
  38803. height: math.unit(10000, "miles")
  38804. },
  38805. ]
  38806. ))
  38807. characterMakers.push(() => makeCharacter(
  38808. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38809. {
  38810. front: {
  38811. height: math.unit(8 + 2/12, "feet"),
  38812. weight: math.unit(600, "lb"),
  38813. name: "Front",
  38814. image: {
  38815. source: "./media/characters/deam-nitrel/front.svg",
  38816. extra: 1308/1234,
  38817. bottom: 125/1433
  38818. }
  38819. },
  38820. },
  38821. [
  38822. {
  38823. name: "Normal",
  38824. height: math.unit(8 + 2/12, "feet"),
  38825. default: true
  38826. },
  38827. ]
  38828. ))
  38829. characterMakers.push(() => makeCharacter(
  38830. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38831. {
  38832. front: {
  38833. height: math.unit(6.1, "feet"),
  38834. weight: math.unit(180, "lb"),
  38835. name: "Front",
  38836. image: {
  38837. source: "./media/characters/skyress/front.svg",
  38838. extra: 1045/915,
  38839. bottom: 28/1073
  38840. }
  38841. },
  38842. maw: {
  38843. height: math.unit(1, "feet"),
  38844. name: "Maw",
  38845. image: {
  38846. source: "./media/characters/skyress/maw.svg"
  38847. }
  38848. },
  38849. },
  38850. [
  38851. {
  38852. name: "Normal",
  38853. height: math.unit(6.1, "feet"),
  38854. default: true
  38855. },
  38856. {
  38857. name: "Macro",
  38858. height: math.unit(200, "feet")
  38859. },
  38860. ]
  38861. ))
  38862. characterMakers.push(() => makeCharacter(
  38863. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38864. {
  38865. front: {
  38866. height: math.unit(4 + 2/12, "feet"),
  38867. weight: math.unit(40, "kg"),
  38868. name: "Front",
  38869. image: {
  38870. source: "./media/characters/amethyst-jones/front.svg",
  38871. extra: 1220/1150,
  38872. bottom: 101/1321
  38873. }
  38874. },
  38875. },
  38876. [
  38877. {
  38878. name: "Normal",
  38879. height: math.unit(4 + 2/12, "feet"),
  38880. default: true
  38881. },
  38882. ]
  38883. ))
  38884. characterMakers.push(() => makeCharacter(
  38885. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38886. {
  38887. front: {
  38888. height: math.unit(1.7, "m"),
  38889. weight: math.unit(135, "lb"),
  38890. name: "Front",
  38891. image: {
  38892. source: "./media/characters/jade/front.svg",
  38893. extra: 1818/1767,
  38894. bottom: 32/1850
  38895. }
  38896. },
  38897. back: {
  38898. height: math.unit(1.7, "m"),
  38899. weight: math.unit(135, "lb"),
  38900. name: "Back",
  38901. image: {
  38902. source: "./media/characters/jade/back.svg",
  38903. extra: 1869/1809,
  38904. bottom: 35/1904
  38905. }
  38906. },
  38907. hand: {
  38908. height: math.unit(0.24, "m"),
  38909. name: "Hand",
  38910. image: {
  38911. source: "./media/characters/jade/hand.svg"
  38912. }
  38913. },
  38914. foot: {
  38915. height: math.unit(0.263, "m"),
  38916. name: "Foot",
  38917. image: {
  38918. source: "./media/characters/jade/foot.svg"
  38919. }
  38920. },
  38921. dick: {
  38922. height: math.unit(0.47, "m"),
  38923. name: "Dick",
  38924. image: {
  38925. source: "./media/characters/jade/dick.svg"
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Micro",
  38932. height: math.unit(22, "cm")
  38933. },
  38934. {
  38935. name: "Normal",
  38936. height: math.unit(1.7, "m"),
  38937. default: true
  38938. },
  38939. {
  38940. name: "Macro",
  38941. height: math.unit(152, "m")
  38942. },
  38943. ]
  38944. ))
  38945. characterMakers.push(() => makeCharacter(
  38946. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38947. {
  38948. front: {
  38949. height: math.unit(100, "miles"),
  38950. weight: math.unit(20000, "tons"),
  38951. name: "Front",
  38952. image: {
  38953. source: "./media/characters/cookie/front.svg",
  38954. extra: 1125/1070,
  38955. bottom: 30/1155
  38956. }
  38957. },
  38958. },
  38959. [
  38960. {
  38961. name: "Big",
  38962. height: math.unit(50, "feet")
  38963. },
  38964. {
  38965. name: "Macro",
  38966. height: math.unit(100, "miles"),
  38967. default: true
  38968. },
  38969. {
  38970. name: "Megamacro",
  38971. height: math.unit(90000, "miles")
  38972. },
  38973. ]
  38974. ))
  38975. characterMakers.push(() => makeCharacter(
  38976. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38977. {
  38978. front: {
  38979. height: math.unit(6, "feet"),
  38980. weight: math.unit(145, "lb"),
  38981. name: "Front",
  38982. image: {
  38983. source: "./media/characters/farzian/front.svg",
  38984. extra: 1902/1693,
  38985. bottom: 108/2010
  38986. }
  38987. },
  38988. },
  38989. [
  38990. {
  38991. name: "Macro",
  38992. height: math.unit(500, "feet"),
  38993. default: true
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38999. {
  39000. front: {
  39001. height: math.unit(3 + 6/12, "feet"),
  39002. weight: math.unit(50, "lb"),
  39003. name: "Front",
  39004. image: {
  39005. source: "./media/characters/kimberly-tilson/front.svg",
  39006. extra: 1400/1322,
  39007. bottom: 36/1436
  39008. }
  39009. },
  39010. back: {
  39011. height: math.unit(3 + 6/12, "feet"),
  39012. weight: math.unit(50, "lb"),
  39013. name: "Back",
  39014. image: {
  39015. source: "./media/characters/kimberly-tilson/back.svg",
  39016. extra: 1370/1307,
  39017. bottom: 20/1390
  39018. }
  39019. },
  39020. },
  39021. [
  39022. {
  39023. name: "Normal",
  39024. height: math.unit(3 + 6/12, "feet"),
  39025. default: true
  39026. },
  39027. ]
  39028. ))
  39029. characterMakers.push(() => makeCharacter(
  39030. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39031. {
  39032. front: {
  39033. height: math.unit(1148, "feet"),
  39034. weight: math.unit(34057, "lb"),
  39035. name: "Front",
  39036. image: {
  39037. source: "./media/characters/harthos/front.svg",
  39038. extra: 1391/1339,
  39039. bottom: 13/1404
  39040. }
  39041. },
  39042. },
  39043. [
  39044. {
  39045. name: "Macro",
  39046. height: math.unit(1148, "feet"),
  39047. default: true
  39048. },
  39049. ]
  39050. ))
  39051. characterMakers.push(() => makeCharacter(
  39052. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39053. {
  39054. front: {
  39055. height: math.unit(15, "feet"),
  39056. name: "Front",
  39057. image: {
  39058. source: "./media/characters/hypatia/front.svg",
  39059. extra: 1653/1591,
  39060. bottom: 79/1732
  39061. }
  39062. },
  39063. },
  39064. [
  39065. {
  39066. name: "Normal",
  39067. height: math.unit(15, "feet")
  39068. },
  39069. {
  39070. name: "Small",
  39071. height: math.unit(300, "feet")
  39072. },
  39073. {
  39074. name: "Macro",
  39075. height: math.unit(2500, "feet"),
  39076. default: true
  39077. },
  39078. {
  39079. name: "Mega Macro",
  39080. height: math.unit(1500, "miles")
  39081. },
  39082. {
  39083. name: "Giga Macro",
  39084. height: math.unit(1.5e6, "miles")
  39085. },
  39086. ]
  39087. ))
  39088. characterMakers.push(() => makeCharacter(
  39089. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39090. {
  39091. front: {
  39092. height: math.unit(6, "feet"),
  39093. weight: math.unit(200, "lb"),
  39094. name: "Front",
  39095. image: {
  39096. source: "./media/characters/wulver/front.svg",
  39097. extra: 1724/1632,
  39098. bottom: 130/1854
  39099. }
  39100. },
  39101. frontNsfw: {
  39102. height: math.unit(6, "feet"),
  39103. weight: math.unit(200, "lb"),
  39104. name: "Front (NSFW)",
  39105. image: {
  39106. source: "./media/characters/wulver/front-nsfw.svg",
  39107. extra: 1724/1632,
  39108. bottom: 130/1854
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Human-Sized",
  39115. height: math.unit(6, "feet")
  39116. },
  39117. {
  39118. name: "Normal",
  39119. height: math.unit(4, "meters"),
  39120. default: true
  39121. },
  39122. {
  39123. name: "Large",
  39124. height: math.unit(6, "m")
  39125. },
  39126. ]
  39127. ))
  39128. characterMakers.push(() => makeCharacter(
  39129. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39130. {
  39131. front: {
  39132. height: math.unit(7, "feet"),
  39133. name: "Front",
  39134. image: {
  39135. source: "./media/characters/maru/front.svg",
  39136. extra: 1595/1570,
  39137. bottom: 0/1595
  39138. }
  39139. },
  39140. },
  39141. [
  39142. {
  39143. name: "Normal",
  39144. height: math.unit(7, "feet"),
  39145. default: true
  39146. },
  39147. {
  39148. name: "Macro",
  39149. height: math.unit(700, "feet")
  39150. },
  39151. {
  39152. name: "Mega Macro",
  39153. height: math.unit(25, "miles")
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(6, "feet"),
  39162. weight: math.unit(170, "lb"),
  39163. name: "Front",
  39164. image: {
  39165. source: "./media/characters/xenon/front.svg",
  39166. extra: 1376/1305,
  39167. bottom: 56/1432
  39168. }
  39169. },
  39170. back: {
  39171. height: math.unit(6, "feet"),
  39172. weight: math.unit(170, "lb"),
  39173. name: "Back",
  39174. image: {
  39175. source: "./media/characters/xenon/back.svg",
  39176. extra: 1328/1259,
  39177. bottom: 95/1423
  39178. }
  39179. },
  39180. maw: {
  39181. height: math.unit(0.52, "feet"),
  39182. name: "Maw",
  39183. image: {
  39184. source: "./media/characters/xenon/maw.svg"
  39185. }
  39186. },
  39187. hand: {
  39188. height: math.unit(0.82, "feet"),
  39189. name: "Hand",
  39190. image: {
  39191. source: "./media/characters/xenon/hand.svg"
  39192. }
  39193. },
  39194. foot: {
  39195. height: math.unit(1.13, "feet"),
  39196. name: "Foot",
  39197. image: {
  39198. source: "./media/characters/xenon/foot.svg"
  39199. }
  39200. },
  39201. },
  39202. [
  39203. {
  39204. name: "Micro",
  39205. height: math.unit(0.8, "inches")
  39206. },
  39207. {
  39208. name: "Normal",
  39209. height: math.unit(6, "feet")
  39210. },
  39211. {
  39212. name: "Macro",
  39213. height: math.unit(50, "feet"),
  39214. default: true
  39215. },
  39216. {
  39217. name: "Macro+",
  39218. height: math.unit(250, "feet")
  39219. },
  39220. {
  39221. name: "Megamacro",
  39222. height: math.unit(1500, "feet")
  39223. },
  39224. ]
  39225. ))
  39226. characterMakers.push(() => makeCharacter(
  39227. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39228. {
  39229. front: {
  39230. height: math.unit(7 + 5/12, "feet"),
  39231. name: "Front",
  39232. image: {
  39233. source: "./media/characters/zane/front.svg",
  39234. extra: 1260/1203,
  39235. bottom: 94/1354
  39236. }
  39237. },
  39238. back: {
  39239. height: math.unit(5.05, "feet"),
  39240. name: "Back",
  39241. image: {
  39242. source: "./media/characters/zane/back.svg",
  39243. extra: 893/829,
  39244. bottom: 30/923
  39245. }
  39246. },
  39247. werewolf: {
  39248. height: math.unit(11, "feet"),
  39249. name: "Werewolf",
  39250. image: {
  39251. source: "./media/characters/zane/werewolf.svg",
  39252. extra: 1383/1323,
  39253. bottom: 89/1472
  39254. }
  39255. },
  39256. foot: {
  39257. height: math.unit(1.46, "feet"),
  39258. name: "Foot",
  39259. image: {
  39260. source: "./media/characters/zane/foot.svg"
  39261. }
  39262. },
  39263. footFront: {
  39264. height: math.unit(0.784, "feet"),
  39265. name: "Foot (Front)",
  39266. image: {
  39267. source: "./media/characters/zane/foot-front.svg"
  39268. }
  39269. },
  39270. dick: {
  39271. height: math.unit(1.95, "feet"),
  39272. name: "Dick",
  39273. image: {
  39274. source: "./media/characters/zane/dick.svg"
  39275. }
  39276. },
  39277. dickWerewolf: {
  39278. height: math.unit(3.77, "feet"),
  39279. name: "Dick (Werewolf)",
  39280. image: {
  39281. source: "./media/characters/zane/dick.svg"
  39282. }
  39283. },
  39284. },
  39285. [
  39286. {
  39287. name: "Normal",
  39288. height: math.unit(7 + 5/12, "feet"),
  39289. default: true
  39290. },
  39291. ]
  39292. ))
  39293. characterMakers.push(() => makeCharacter(
  39294. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39295. {
  39296. front: {
  39297. height: math.unit(6 + 2/12, "feet"),
  39298. weight: math.unit(284, "lb"),
  39299. name: "Front",
  39300. image: {
  39301. source: "./media/characters/benni-desparque/front.svg",
  39302. extra: 1353/1126,
  39303. bottom: 69/1422
  39304. }
  39305. },
  39306. },
  39307. [
  39308. {
  39309. name: "Civilian",
  39310. height: math.unit(6 + 2/12, "feet")
  39311. },
  39312. {
  39313. name: "Normal",
  39314. height: math.unit(98, "feet"),
  39315. default: true
  39316. },
  39317. {
  39318. name: "Kaiju Fighter",
  39319. height: math.unit(268, "feet")
  39320. },
  39321. ]
  39322. ))
  39323. characterMakers.push(() => makeCharacter(
  39324. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39325. {
  39326. front: {
  39327. height: math.unit(5, "feet"),
  39328. weight: math.unit(105, "lb"),
  39329. name: "Front",
  39330. image: {
  39331. source: "./media/characters/maxine/front.svg",
  39332. extra: 1386/1250,
  39333. bottom: 71/1457
  39334. }
  39335. },
  39336. },
  39337. [
  39338. {
  39339. name: "Normal",
  39340. height: math.unit(5, "feet"),
  39341. default: true
  39342. },
  39343. ]
  39344. ))
  39345. characterMakers.push(() => makeCharacter(
  39346. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39347. {
  39348. front: {
  39349. height: math.unit(11 + 7/12, "feet"),
  39350. weight: math.unit(9576, "lb"),
  39351. name: "Front",
  39352. image: {
  39353. source: "./media/characters/scaly/front.svg",
  39354. extra: 888/867,
  39355. bottom: 36/924
  39356. }
  39357. },
  39358. },
  39359. [
  39360. {
  39361. name: "Normal",
  39362. height: math.unit(11 + 7/12, "feet"),
  39363. default: true
  39364. },
  39365. ]
  39366. ))
  39367. characterMakers.push(() => makeCharacter(
  39368. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39369. {
  39370. front: {
  39371. height: math.unit(9, "inches"),
  39372. name: "Front",
  39373. image: {
  39374. source: "./media/characters/saelria/front.svg",
  39375. extra: 662/621,
  39376. bottom: 12/674
  39377. }
  39378. },
  39379. },
  39380. [
  39381. {
  39382. name: "Tiny",
  39383. height: math.unit(9, "inches"),
  39384. default: true
  39385. },
  39386. ]
  39387. ))
  39388. characterMakers.push(() => makeCharacter(
  39389. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39390. {
  39391. front: {
  39392. height: math.unit(80, "meters"),
  39393. weight: math.unit(7000, "tonnes"),
  39394. name: "Front",
  39395. image: {
  39396. source: "./media/characters/tef/front.svg",
  39397. extra: 2036/1991,
  39398. bottom: 54/2090
  39399. }
  39400. },
  39401. back: {
  39402. height: math.unit(80, "meters"),
  39403. weight: math.unit(7000, "tonnes"),
  39404. name: "Back",
  39405. image: {
  39406. source: "./media/characters/tef/back.svg",
  39407. extra: 2036/1991,
  39408. bottom: 54/2090
  39409. }
  39410. },
  39411. },
  39412. [
  39413. {
  39414. name: "Macro",
  39415. height: math.unit(80, "meters"),
  39416. default: true
  39417. },
  39418. ]
  39419. ))
  39420. characterMakers.push(() => makeCharacter(
  39421. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39422. {
  39423. front: {
  39424. height: math.unit(13, "feet"),
  39425. weight: math.unit(6, "tons"),
  39426. name: "Front",
  39427. image: {
  39428. source: "./media/characters/rover/front.svg",
  39429. extra: 1233/1156,
  39430. bottom: 50/1283
  39431. }
  39432. },
  39433. back: {
  39434. height: math.unit(13, "feet"),
  39435. weight: math.unit(6, "tons"),
  39436. name: "Back",
  39437. image: {
  39438. source: "./media/characters/rover/back.svg",
  39439. extra: 1327/1258,
  39440. bottom: 39/1366
  39441. }
  39442. },
  39443. },
  39444. [
  39445. {
  39446. name: "Normal",
  39447. height: math.unit(13, "feet"),
  39448. default: true
  39449. },
  39450. {
  39451. name: "Macro",
  39452. height: math.unit(1300, "feet")
  39453. },
  39454. {
  39455. name: "Megamacro",
  39456. height: math.unit(1300, "miles")
  39457. },
  39458. {
  39459. name: "Gigamacro",
  39460. height: math.unit(1300000, "miles")
  39461. },
  39462. ]
  39463. ))
  39464. characterMakers.push(() => makeCharacter(
  39465. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39466. {
  39467. front: {
  39468. height: math.unit(6, "feet"),
  39469. weight: math.unit(150, "lb"),
  39470. name: "Front",
  39471. image: {
  39472. source: "./media/characters/ariz/front.svg",
  39473. extra: 1401/1346,
  39474. bottom: 5/1406
  39475. }
  39476. },
  39477. },
  39478. [
  39479. {
  39480. name: "Normal",
  39481. height: math.unit(10, "feet"),
  39482. default: true
  39483. },
  39484. ]
  39485. ))
  39486. characterMakers.push(() => makeCharacter(
  39487. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39488. {
  39489. front: {
  39490. height: math.unit(6, "feet"),
  39491. weight: math.unit(140, "lb"),
  39492. name: "Front",
  39493. image: {
  39494. source: "./media/characters/sigrun/front.svg",
  39495. extra: 1418/1359,
  39496. bottom: 27/1445
  39497. }
  39498. },
  39499. },
  39500. [
  39501. {
  39502. name: "Macro",
  39503. height: math.unit(35, "feet"),
  39504. default: true
  39505. },
  39506. ]
  39507. ))
  39508. characterMakers.push(() => makeCharacter(
  39509. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39510. {
  39511. front: {
  39512. height: math.unit(6, "feet"),
  39513. weight: math.unit(150, "lb"),
  39514. name: "Front",
  39515. image: {
  39516. source: "./media/characters/numin/front.svg",
  39517. extra: 1433/1388,
  39518. bottom: 12/1445
  39519. }
  39520. },
  39521. },
  39522. [
  39523. {
  39524. name: "Macro",
  39525. height: math.unit(21.5, "km"),
  39526. default: true
  39527. },
  39528. ]
  39529. ))
  39530. characterMakers.push(() => makeCharacter(
  39531. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39532. {
  39533. front: {
  39534. height: math.unit(6, "feet"),
  39535. weight: math.unit(463, "lb"),
  39536. name: "Front",
  39537. image: {
  39538. source: "./media/characters/melwa/front.svg",
  39539. extra: 1307/1248,
  39540. bottom: 93/1400
  39541. }
  39542. },
  39543. },
  39544. [
  39545. {
  39546. name: "Macro",
  39547. height: math.unit(50, "meters"),
  39548. default: true
  39549. },
  39550. ]
  39551. ))
  39552. characterMakers.push(() => makeCharacter(
  39553. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39554. {
  39555. front: {
  39556. height: math.unit(325, "feet"),
  39557. name: "Front",
  39558. image: {
  39559. source: "./media/characters/zorkaiju/front.svg",
  39560. extra: 1955/1814,
  39561. bottom: 40/1995
  39562. }
  39563. },
  39564. frontExtended: {
  39565. height: math.unit(325, "feet"),
  39566. name: "Front (Extended)",
  39567. image: {
  39568. source: "./media/characters/zorkaiju/front-extended.svg",
  39569. extra: 1955/1814,
  39570. bottom: 40/1995
  39571. }
  39572. },
  39573. side: {
  39574. height: math.unit(325, "feet"),
  39575. name: "Side",
  39576. image: {
  39577. source: "./media/characters/zorkaiju/side.svg",
  39578. extra: 1495/1396,
  39579. bottom: 17/1512
  39580. }
  39581. },
  39582. sideExtended: {
  39583. height: math.unit(325, "feet"),
  39584. name: "Side (Extended)",
  39585. image: {
  39586. source: "./media/characters/zorkaiju/side-extended.svg",
  39587. extra: 1495/1396,
  39588. bottom: 17/1512
  39589. }
  39590. },
  39591. back: {
  39592. height: math.unit(325, "feet"),
  39593. name: "Back",
  39594. image: {
  39595. source: "./media/characters/zorkaiju/back.svg",
  39596. extra: 1959/1821,
  39597. bottom: 31/1990
  39598. }
  39599. },
  39600. backExtended: {
  39601. height: math.unit(325, "feet"),
  39602. name: "Back (Extended)",
  39603. image: {
  39604. source: "./media/characters/zorkaiju/back-extended.svg",
  39605. extra: 1959/1821,
  39606. bottom: 31/1990
  39607. }
  39608. },
  39609. hand: {
  39610. height: math.unit(58.4, "feet"),
  39611. name: "Hand",
  39612. image: {
  39613. source: "./media/characters/zorkaiju/hand.svg"
  39614. }
  39615. },
  39616. handExtended: {
  39617. height: math.unit(61.4, "feet"),
  39618. name: "Hand (Extended)",
  39619. image: {
  39620. source: "./media/characters/zorkaiju/hand-extended.svg"
  39621. }
  39622. },
  39623. foot: {
  39624. height: math.unit(95, "feet"),
  39625. name: "Foot",
  39626. image: {
  39627. source: "./media/characters/zorkaiju/foot.svg"
  39628. }
  39629. },
  39630. leftArm: {
  39631. height: math.unit(59, "feet"),
  39632. name: "Left Arm",
  39633. image: {
  39634. source: "./media/characters/zorkaiju/left-arm.svg"
  39635. }
  39636. },
  39637. rightArm: {
  39638. height: math.unit(59, "feet"),
  39639. name: "Right Arm",
  39640. image: {
  39641. source: "./media/characters/zorkaiju/right-arm.svg"
  39642. }
  39643. },
  39644. tail: {
  39645. height: math.unit(104, "feet"),
  39646. name: "Tail",
  39647. image: {
  39648. source: "./media/characters/zorkaiju/tail.svg"
  39649. }
  39650. },
  39651. tailExtended: {
  39652. height: math.unit(104, "feet"),
  39653. name: "Tail (Extended)",
  39654. image: {
  39655. source: "./media/characters/zorkaiju/tail-extended.svg"
  39656. }
  39657. },
  39658. tailBottom: {
  39659. height: math.unit(104, "feet"),
  39660. name: "Tail Bottom",
  39661. image: {
  39662. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39663. }
  39664. },
  39665. crystal: {
  39666. height: math.unit(27.54, "feet"),
  39667. name: "Crystal",
  39668. image: {
  39669. source: "./media/characters/zorkaiju/crystal.svg"
  39670. }
  39671. },
  39672. },
  39673. [
  39674. {
  39675. name: "Kaiju",
  39676. height: math.unit(325, "feet"),
  39677. default: true
  39678. },
  39679. ]
  39680. ))
  39681. characterMakers.push(() => makeCharacter(
  39682. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39683. {
  39684. front: {
  39685. height: math.unit(6 + 1/12, "feet"),
  39686. weight: math.unit(115, "lb"),
  39687. name: "Front",
  39688. image: {
  39689. source: "./media/characters/bailey-belfry/front.svg",
  39690. extra: 1240/1121,
  39691. bottom: 101/1341
  39692. }
  39693. },
  39694. },
  39695. [
  39696. {
  39697. name: "Normal",
  39698. height: math.unit(6 + 1/12, "feet"),
  39699. default: true
  39700. },
  39701. ]
  39702. ))
  39703. characterMakers.push(() => makeCharacter(
  39704. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39705. {
  39706. side: {
  39707. height: math.unit(4, "meters"),
  39708. weight: math.unit(250, "kg"),
  39709. name: "Side",
  39710. image: {
  39711. source: "./media/characters/blacky/side.svg",
  39712. extra: 1027/919,
  39713. bottom: 43/1070
  39714. }
  39715. },
  39716. maw: {
  39717. height: math.unit(1, "meters"),
  39718. name: "Maw",
  39719. image: {
  39720. source: "./media/characters/blacky/maw.svg"
  39721. }
  39722. },
  39723. paw: {
  39724. height: math.unit(1, "meters"),
  39725. name: "Paw",
  39726. image: {
  39727. source: "./media/characters/blacky/paw.svg"
  39728. }
  39729. },
  39730. },
  39731. [
  39732. {
  39733. name: "Normal",
  39734. height: math.unit(4, "meters"),
  39735. default: true
  39736. },
  39737. ]
  39738. ))
  39739. characterMakers.push(() => makeCharacter(
  39740. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39741. {
  39742. front: {
  39743. height: math.unit(170, "cm"),
  39744. weight: math.unit(66, "kg"),
  39745. name: "Front",
  39746. image: {
  39747. source: "./media/characters/thux-ei/front.svg",
  39748. extra: 1109/1011,
  39749. bottom: 8/1117
  39750. }
  39751. },
  39752. },
  39753. [
  39754. {
  39755. name: "Normal",
  39756. height: math.unit(170, "cm"),
  39757. default: true
  39758. },
  39759. ]
  39760. ))
  39761. characterMakers.push(() => makeCharacter(
  39762. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39763. {
  39764. front: {
  39765. height: math.unit(5, "feet"),
  39766. weight: math.unit(120, "lb"),
  39767. name: "Front",
  39768. image: {
  39769. source: "./media/characters/roxanne-voltaire/front.svg",
  39770. extra: 1901/1779,
  39771. bottom: 53/1954
  39772. }
  39773. },
  39774. },
  39775. [
  39776. {
  39777. name: "Normal",
  39778. height: math.unit(5, "feet"),
  39779. default: true
  39780. },
  39781. {
  39782. name: "Giant",
  39783. height: math.unit(50, "feet")
  39784. },
  39785. {
  39786. name: "Titan",
  39787. height: math.unit(500, "feet")
  39788. },
  39789. {
  39790. name: "Macro",
  39791. height: math.unit(5000, "feet")
  39792. },
  39793. {
  39794. name: "Megamacro",
  39795. height: math.unit(50000, "feet")
  39796. },
  39797. {
  39798. name: "Gigamacro",
  39799. height: math.unit(500000, "feet")
  39800. },
  39801. {
  39802. name: "Teramacro",
  39803. height: math.unit(5e6, "feet")
  39804. },
  39805. ]
  39806. ))
  39807. characterMakers.push(() => makeCharacter(
  39808. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39809. {
  39810. front: {
  39811. height: math.unit(6 + 2/12, "feet"),
  39812. name: "Front",
  39813. image: {
  39814. source: "./media/characters/squeaks/front.svg",
  39815. extra: 1823/1768,
  39816. bottom: 138/1961
  39817. }
  39818. },
  39819. },
  39820. [
  39821. {
  39822. name: "Micro",
  39823. height: math.unit(0.5, "inches")
  39824. },
  39825. {
  39826. name: "Normal",
  39827. height: math.unit(6 + 2/12, "feet"),
  39828. default: true
  39829. },
  39830. {
  39831. name: "Macro",
  39832. height: math.unit(600, "feet")
  39833. },
  39834. ]
  39835. ))
  39836. characterMakers.push(() => makeCharacter(
  39837. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39838. {
  39839. front: {
  39840. height: math.unit(1.72, "meters"),
  39841. name: "Front",
  39842. image: {
  39843. source: "./media/characters/archinger/front.svg",
  39844. extra: 1861/1675,
  39845. bottom: 125/1986
  39846. }
  39847. },
  39848. back: {
  39849. height: math.unit(1.72, "meters"),
  39850. name: "Back",
  39851. image: {
  39852. source: "./media/characters/archinger/back.svg",
  39853. extra: 1844/1701,
  39854. bottom: 104/1948
  39855. }
  39856. },
  39857. cock: {
  39858. height: math.unit(0.59, "feet"),
  39859. name: "Cock",
  39860. image: {
  39861. source: "./media/characters/archinger/cock.svg"
  39862. }
  39863. },
  39864. },
  39865. [
  39866. {
  39867. name: "Normal",
  39868. height: math.unit(1.72, "meters"),
  39869. default: true
  39870. },
  39871. {
  39872. name: "Macro",
  39873. height: math.unit(84, "meters")
  39874. },
  39875. {
  39876. name: "Macro+",
  39877. height: math.unit(112, "meters")
  39878. },
  39879. {
  39880. name: "Macro++",
  39881. height: math.unit(960, "meters")
  39882. },
  39883. {
  39884. name: "Macro+++",
  39885. height: math.unit(4, "km")
  39886. },
  39887. {
  39888. name: "Macro++++",
  39889. height: math.unit(48, "km")
  39890. },
  39891. {
  39892. name: "Macro+++++",
  39893. height: math.unit(4500, "km")
  39894. },
  39895. ]
  39896. ))
  39897. characterMakers.push(() => makeCharacter(
  39898. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39899. {
  39900. front: {
  39901. height: math.unit(5 + 5/12, "feet"),
  39902. name: "Front",
  39903. image: {
  39904. source: "./media/characters/alsnapz/front.svg",
  39905. extra: 1157/1065,
  39906. bottom: 42/1199
  39907. }
  39908. },
  39909. },
  39910. [
  39911. {
  39912. name: "Normal",
  39913. height: math.unit(5 + 5/12, "feet"),
  39914. default: true
  39915. },
  39916. ]
  39917. ))
  39918. characterMakers.push(() => makeCharacter(
  39919. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39920. {
  39921. side: {
  39922. height: math.unit(3.2, "earths"),
  39923. name: "Side",
  39924. image: {
  39925. source: "./media/characters/mag/side.svg",
  39926. extra: 1331/1008,
  39927. bottom: 52/1383
  39928. }
  39929. },
  39930. wing: {
  39931. height: math.unit(1.94, "earths"),
  39932. name: "Wing",
  39933. image: {
  39934. source: "./media/characters/mag/wing.svg"
  39935. }
  39936. },
  39937. dick: {
  39938. height: math.unit(1.8, "earths"),
  39939. name: "Dick",
  39940. image: {
  39941. source: "./media/characters/mag/dick.svg"
  39942. }
  39943. },
  39944. ass: {
  39945. height: math.unit(1.33, "earths"),
  39946. name: "Ass",
  39947. image: {
  39948. source: "./media/characters/mag/ass.svg"
  39949. }
  39950. },
  39951. head: {
  39952. height: math.unit(1.1, "earths"),
  39953. name: "Head",
  39954. image: {
  39955. source: "./media/characters/mag/head.svg"
  39956. }
  39957. },
  39958. maw: {
  39959. height: math.unit(1.62, "earths"),
  39960. name: "Maw",
  39961. image: {
  39962. source: "./media/characters/mag/maw.svg"
  39963. }
  39964. },
  39965. },
  39966. [
  39967. {
  39968. name: "Small",
  39969. height: math.unit(162, "feet")
  39970. },
  39971. {
  39972. name: "Normal",
  39973. height: math.unit(3.2, "earths"),
  39974. default: true
  39975. },
  39976. ]
  39977. ))
  39978. characterMakers.push(() => makeCharacter(
  39979. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39980. {
  39981. front: {
  39982. height: math.unit(512, "feet"),
  39983. weight: math.unit(63509, "tonnes"),
  39984. name: "Front",
  39985. image: {
  39986. source: "./media/characters/vorrel-harroc/front.svg",
  39987. extra: 1075/1063,
  39988. bottom: 62/1137
  39989. }
  39990. },
  39991. },
  39992. [
  39993. {
  39994. name: "Normal",
  39995. height: math.unit(10, "feet")
  39996. },
  39997. {
  39998. name: "Macro",
  39999. height: math.unit(512, "feet"),
  40000. default: true
  40001. },
  40002. {
  40003. name: "Megamacro",
  40004. height: math.unit(256, "miles")
  40005. },
  40006. {
  40007. name: "Gigamacro",
  40008. height: math.unit(4096, "miles")
  40009. },
  40010. ]
  40011. ))
  40012. characterMakers.push(() => makeCharacter(
  40013. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40014. {
  40015. side: {
  40016. height: math.unit(50, "feet"),
  40017. name: "Side",
  40018. image: {
  40019. source: "./media/characters/froimar/side.svg",
  40020. extra: 855/638,
  40021. bottom: 99/954
  40022. }
  40023. },
  40024. },
  40025. [
  40026. {
  40027. name: "Macro",
  40028. height: math.unit(50, "feet"),
  40029. default: true
  40030. },
  40031. ]
  40032. ))
  40033. characterMakers.push(() => makeCharacter(
  40034. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40035. {
  40036. front: {
  40037. height: math.unit(210, "miles"),
  40038. name: "Front",
  40039. image: {
  40040. source: "./media/characters/timothy/front.svg",
  40041. extra: 1007/943,
  40042. bottom: 62/1069
  40043. }
  40044. },
  40045. frontSkirt: {
  40046. height: math.unit(210, "miles"),
  40047. name: "Front (Skirt)",
  40048. image: {
  40049. source: "./media/characters/timothy/front-skirt.svg",
  40050. extra: 1007/943,
  40051. bottom: 62/1069
  40052. }
  40053. },
  40054. frontCoat: {
  40055. height: math.unit(210, "miles"),
  40056. name: "Front (Coat)",
  40057. image: {
  40058. source: "./media/characters/timothy/front-coat.svg",
  40059. extra: 1007/943,
  40060. bottom: 62/1069
  40061. }
  40062. },
  40063. },
  40064. [
  40065. {
  40066. name: "Macro",
  40067. height: math.unit(210, "miles"),
  40068. default: true
  40069. },
  40070. {
  40071. name: "Megamacro",
  40072. height: math.unit(210000, "miles")
  40073. },
  40074. ]
  40075. ))
  40076. characterMakers.push(() => makeCharacter(
  40077. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40078. {
  40079. front: {
  40080. height: math.unit(188, "feet"),
  40081. name: "Front",
  40082. image: {
  40083. source: "./media/characters/pyotr/front.svg",
  40084. extra: 1912/1826,
  40085. bottom: 18/1930
  40086. }
  40087. },
  40088. },
  40089. [
  40090. {
  40091. name: "Macro",
  40092. height: math.unit(188, "feet"),
  40093. default: true
  40094. },
  40095. {
  40096. name: "Megamacro",
  40097. height: math.unit(8, "miles")
  40098. },
  40099. ]
  40100. ))
  40101. characterMakers.push(() => makeCharacter(
  40102. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40103. {
  40104. side: {
  40105. height: math.unit(10, "feet"),
  40106. weight: math.unit(4500, "lb"),
  40107. name: "Side",
  40108. image: {
  40109. source: "./media/characters/ackart/side.svg",
  40110. extra: 1776/1668,
  40111. bottom: 116/1892
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Normal",
  40118. height: math.unit(10, "feet"),
  40119. default: true
  40120. },
  40121. ]
  40122. ))
  40123. characterMakers.push(() => makeCharacter(
  40124. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40125. {
  40126. side: {
  40127. height: math.unit(21, "feet"),
  40128. name: "Side",
  40129. image: {
  40130. source: "./media/characters/nolow/side.svg",
  40131. extra: 1484/1434,
  40132. bottom: 85/1569
  40133. }
  40134. },
  40135. sideErect: {
  40136. height: math.unit(21, "feet"),
  40137. name: "Side-erect",
  40138. image: {
  40139. source: "./media/characters/nolow/side-erect.svg",
  40140. extra: 1484/1434,
  40141. bottom: 85/1569
  40142. }
  40143. },
  40144. },
  40145. [
  40146. {
  40147. name: "Regular",
  40148. height: math.unit(12, "feet")
  40149. },
  40150. {
  40151. name: "Big Chee",
  40152. height: math.unit(21, "feet"),
  40153. default: true
  40154. },
  40155. ]
  40156. ))
  40157. characterMakers.push(() => makeCharacter(
  40158. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40159. {
  40160. front: {
  40161. height: math.unit(7, "feet"),
  40162. weight: math.unit(250, "lb"),
  40163. name: "Front",
  40164. image: {
  40165. source: "./media/characters/nines/front.svg",
  40166. extra: 1741/1607,
  40167. bottom: 41/1782
  40168. }
  40169. },
  40170. side: {
  40171. height: math.unit(7, "feet"),
  40172. weight: math.unit(250, "lb"),
  40173. name: "Side",
  40174. image: {
  40175. source: "./media/characters/nines/side.svg",
  40176. extra: 1854/1735,
  40177. bottom: 93/1947
  40178. }
  40179. },
  40180. back: {
  40181. height: math.unit(7, "feet"),
  40182. weight: math.unit(250, "lb"),
  40183. name: "Back",
  40184. image: {
  40185. source: "./media/characters/nines/back.svg",
  40186. extra: 1748/1615,
  40187. bottom: 20/1768
  40188. }
  40189. },
  40190. },
  40191. [
  40192. {
  40193. name: "Megamacro",
  40194. height: math.unit(99, "km"),
  40195. default: true
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40201. {
  40202. front: {
  40203. height: math.unit(5 + 10/12, "feet"),
  40204. weight: math.unit(210, "lb"),
  40205. name: "Front",
  40206. image: {
  40207. source: "./media/characters/zenith/front.svg",
  40208. extra: 1531/1452,
  40209. bottom: 198/1729
  40210. }
  40211. },
  40212. back: {
  40213. height: math.unit(5 + 10/12, "feet"),
  40214. weight: math.unit(210, "lb"),
  40215. name: "Back",
  40216. image: {
  40217. source: "./media/characters/zenith/back.svg",
  40218. extra: 1571/1487,
  40219. bottom: 75/1646
  40220. }
  40221. },
  40222. },
  40223. [
  40224. {
  40225. name: "Normal",
  40226. height: math.unit(5 + 10/12, "feet"),
  40227. default: true
  40228. }
  40229. ]
  40230. ))
  40231. characterMakers.push(() => makeCharacter(
  40232. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40233. {
  40234. front: {
  40235. height: math.unit(4, "feet"),
  40236. weight: math.unit(60, "lb"),
  40237. name: "Front",
  40238. image: {
  40239. source: "./media/characters/jasper/front.svg",
  40240. extra: 1450/1379,
  40241. bottom: 19/1469
  40242. }
  40243. },
  40244. },
  40245. [
  40246. {
  40247. name: "Normal",
  40248. height: math.unit(4, "feet"),
  40249. default: true
  40250. },
  40251. ]
  40252. ))
  40253. characterMakers.push(() => makeCharacter(
  40254. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40255. {
  40256. front: {
  40257. height: math.unit(6 + 5/12, "feet"),
  40258. weight: math.unit(290, "lb"),
  40259. name: "Front",
  40260. image: {
  40261. source: "./media/characters/tiberius-thyben/front.svg",
  40262. extra: 757/739,
  40263. bottom: 39/796
  40264. }
  40265. },
  40266. },
  40267. [
  40268. {
  40269. name: "Micro",
  40270. height: math.unit(1.5, "inches")
  40271. },
  40272. {
  40273. name: "Normal",
  40274. height: math.unit(6 + 5/12, "feet"),
  40275. default: true
  40276. },
  40277. {
  40278. name: "Macro",
  40279. height: math.unit(300, "feet")
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40285. {
  40286. front: {
  40287. height: math.unit(5 + 6/12, "feet"),
  40288. weight: math.unit(60, "kg"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/sabre/front.svg",
  40292. extra: 738/671,
  40293. bottom: 27/765
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Teeny",
  40300. height: math.unit(2, "inches")
  40301. },
  40302. {
  40303. name: "Smol",
  40304. height: math.unit(8, "inches")
  40305. },
  40306. {
  40307. name: "Normal",
  40308. height: math.unit(5 + 6/12, "feet"),
  40309. default: true
  40310. },
  40311. {
  40312. name: "Mini-Macro",
  40313. height: math.unit(15, "feet")
  40314. },
  40315. {
  40316. name: "Macro",
  40317. height: math.unit(50, "feet")
  40318. },
  40319. ]
  40320. ))
  40321. characterMakers.push(() => makeCharacter(
  40322. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40323. {
  40324. front: {
  40325. height: math.unit(6 + 4/12, "feet"),
  40326. weight: math.unit(170, "lb"),
  40327. name: "Front",
  40328. image: {
  40329. source: "./media/characters/charlie/front.svg",
  40330. extra: 1348/1228,
  40331. bottom: 15/1363
  40332. }
  40333. },
  40334. },
  40335. [
  40336. {
  40337. name: "Macro",
  40338. height: math.unit(1700, "meters"),
  40339. default: true
  40340. },
  40341. {
  40342. name: "MegaMacro",
  40343. height: math.unit(20400, "meters")
  40344. },
  40345. ]
  40346. ))
  40347. characterMakers.push(() => makeCharacter(
  40348. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40349. {
  40350. front: {
  40351. height: math.unit(6 + 3/12, "feet"),
  40352. weight: math.unit(185, "lb"),
  40353. name: "Front",
  40354. image: {
  40355. source: "./media/characters/susan-grant/front.svg",
  40356. extra: 1351/1327,
  40357. bottom: 26/1377
  40358. }
  40359. },
  40360. },
  40361. [
  40362. {
  40363. name: "Normal",
  40364. height: math.unit(6 + 3/12, "feet"),
  40365. default: true
  40366. },
  40367. {
  40368. name: "Macro",
  40369. height: math.unit(225, "feet")
  40370. },
  40371. {
  40372. name: "Macro+",
  40373. height: math.unit(900, "feet")
  40374. },
  40375. {
  40376. name: "MegaMacro",
  40377. height: math.unit(14400, "feet")
  40378. },
  40379. ]
  40380. ))
  40381. characterMakers.push(() => makeCharacter(
  40382. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40383. {
  40384. front: {
  40385. height: math.unit(5 + 4/12, "feet"),
  40386. weight: math.unit(110, "lb"),
  40387. name: "Front",
  40388. image: {
  40389. source: "./media/characters/axel-isanov/front.svg",
  40390. extra: 1096/1065,
  40391. bottom: 13/1109
  40392. }
  40393. },
  40394. },
  40395. [
  40396. {
  40397. name: "Normal",
  40398. height: math.unit(5 + 4/12, "feet"),
  40399. default: true
  40400. },
  40401. ]
  40402. ))
  40403. characterMakers.push(() => makeCharacter(
  40404. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40405. {
  40406. front: {
  40407. height: math.unit(9, "feet"),
  40408. weight: math.unit(467, "lb"),
  40409. name: "Front",
  40410. image: {
  40411. source: "./media/characters/necahual/front.svg",
  40412. extra: 920/873,
  40413. bottom: 26/946
  40414. }
  40415. },
  40416. back: {
  40417. height: math.unit(9, "feet"),
  40418. weight: math.unit(467, "lb"),
  40419. name: "Back",
  40420. image: {
  40421. source: "./media/characters/necahual/back.svg",
  40422. extra: 930/884,
  40423. bottom: 16/946
  40424. }
  40425. },
  40426. frontUnderwear: {
  40427. height: math.unit(9, "feet"),
  40428. weight: math.unit(467, "lb"),
  40429. name: "Front (Underwear)",
  40430. image: {
  40431. source: "./media/characters/necahual/front-underwear.svg",
  40432. extra: 920/873,
  40433. bottom: 26/946
  40434. }
  40435. },
  40436. frontDressed: {
  40437. height: math.unit(9, "feet"),
  40438. weight: math.unit(467, "lb"),
  40439. name: "Front (Dressed)",
  40440. image: {
  40441. source: "./media/characters/necahual/front-dressed.svg",
  40442. extra: 920/873,
  40443. bottom: 26/946
  40444. }
  40445. },
  40446. },
  40447. [
  40448. {
  40449. name: "Comprsesed",
  40450. height: math.unit(9, "feet")
  40451. },
  40452. {
  40453. name: "Natural",
  40454. height: math.unit(15, "feet"),
  40455. default: true
  40456. },
  40457. {
  40458. name: "Boosted",
  40459. height: math.unit(50, "feet")
  40460. },
  40461. {
  40462. name: "Boosted+",
  40463. height: math.unit(150, "feet")
  40464. },
  40465. {
  40466. name: "Max",
  40467. height: math.unit(500, "feet")
  40468. },
  40469. ]
  40470. ))
  40471. characterMakers.push(() => makeCharacter(
  40472. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40473. {
  40474. front: {
  40475. height: math.unit(22 + 1/12, "feet"),
  40476. weight: math.unit(3200, "lb"),
  40477. name: "Front",
  40478. image: {
  40479. source: "./media/characters/theo-acacia/front.svg",
  40480. extra: 1796/1741,
  40481. bottom: 83/1879
  40482. }
  40483. },
  40484. frontUnderwear: {
  40485. height: math.unit(22 + 1/12, "feet"),
  40486. weight: math.unit(3200, "lb"),
  40487. name: "Front (Underwear)",
  40488. image: {
  40489. source: "./media/characters/theo-acacia/front-underwear.svg",
  40490. extra: 1796/1741,
  40491. bottom: 83/1879
  40492. }
  40493. },
  40494. frontNude: {
  40495. height: math.unit(22 + 1/12, "feet"),
  40496. weight: math.unit(3200, "lb"),
  40497. name: "Front (Nude)",
  40498. image: {
  40499. source: "./media/characters/theo-acacia/front-nude.svg",
  40500. extra: 1796/1741,
  40501. bottom: 83/1879
  40502. }
  40503. },
  40504. },
  40505. [
  40506. {
  40507. name: "Normal",
  40508. height: math.unit(22 + 1/12, "feet"),
  40509. default: true
  40510. },
  40511. ]
  40512. ))
  40513. characterMakers.push(() => makeCharacter(
  40514. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40515. {
  40516. front: {
  40517. height: math.unit(20, "feet"),
  40518. name: "Front",
  40519. image: {
  40520. source: "./media/characters/astra/front.svg",
  40521. extra: 1850/1714,
  40522. bottom: 106/1956
  40523. }
  40524. },
  40525. frontUndressed: {
  40526. height: math.unit(20, "feet"),
  40527. name: "Front (Undressed)",
  40528. image: {
  40529. source: "./media/characters/astra/front-undressed.svg",
  40530. extra: 1926/1749,
  40531. bottom: 0/1926
  40532. }
  40533. },
  40534. hand: {
  40535. height: math.unit(1.53, "feet"),
  40536. name: "Hand",
  40537. image: {
  40538. source: "./media/characters/astra/hand.svg"
  40539. }
  40540. },
  40541. paw: {
  40542. height: math.unit(1.53, "feet"),
  40543. name: "Paw",
  40544. image: {
  40545. source: "./media/characters/astra/paw.svg"
  40546. }
  40547. },
  40548. },
  40549. [
  40550. {
  40551. name: "Smallest",
  40552. height: math.unit(20, "feet")
  40553. },
  40554. {
  40555. name: "Normal",
  40556. height: math.unit(1e9, "miles"),
  40557. default: true
  40558. },
  40559. {
  40560. name: "Larger",
  40561. height: math.unit(5, "multiverses")
  40562. },
  40563. {
  40564. name: "Largest",
  40565. height: math.unit(1e9, "multiverses")
  40566. },
  40567. ]
  40568. ))
  40569. characterMakers.push(() => makeCharacter(
  40570. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40571. {
  40572. front: {
  40573. height: math.unit(8, "feet"),
  40574. name: "Front",
  40575. image: {
  40576. source: "./media/characters/breanna/front.svg",
  40577. extra: 1912/1632,
  40578. bottom: 33/1945
  40579. }
  40580. },
  40581. },
  40582. [
  40583. {
  40584. name: "Smallest",
  40585. height: math.unit(8, "feet")
  40586. },
  40587. {
  40588. name: "Normal",
  40589. height: math.unit(1, "mile"),
  40590. default: true
  40591. },
  40592. {
  40593. name: "Maximum",
  40594. height: math.unit(1500000000000, "lightyears")
  40595. },
  40596. ]
  40597. ))
  40598. characterMakers.push(() => makeCharacter(
  40599. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40600. {
  40601. front: {
  40602. height: math.unit(5 + 11/12, "feet"),
  40603. weight: math.unit(155, "lb"),
  40604. name: "Front",
  40605. image: {
  40606. source: "./media/characters/cai/front.svg",
  40607. extra: 1823/1702,
  40608. bottom: 32/1855
  40609. }
  40610. },
  40611. back: {
  40612. height: math.unit(5 + 11/12, "feet"),
  40613. weight: math.unit(155, "lb"),
  40614. name: "Back",
  40615. image: {
  40616. source: "./media/characters/cai/back.svg",
  40617. extra: 1809/1708,
  40618. bottom: 31/1840
  40619. }
  40620. },
  40621. },
  40622. [
  40623. {
  40624. name: "Normal",
  40625. height: math.unit(5 + 11/12, "feet"),
  40626. default: true
  40627. },
  40628. {
  40629. name: "Big",
  40630. height: math.unit(15, "feet")
  40631. },
  40632. {
  40633. name: "Macro",
  40634. height: math.unit(200, "feet")
  40635. },
  40636. ]
  40637. ))
  40638. characterMakers.push(() => makeCharacter(
  40639. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40640. {
  40641. front: {
  40642. height: math.unit(5 + 6/12, "feet"),
  40643. weight: math.unit(160, "lb"),
  40644. name: "Front",
  40645. image: {
  40646. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40647. extra: 1227/1174,
  40648. bottom: 37/1264
  40649. }
  40650. },
  40651. },
  40652. [
  40653. {
  40654. name: "Macro",
  40655. height: math.unit(444, "meters"),
  40656. default: true
  40657. },
  40658. ]
  40659. ))
  40660. characterMakers.push(() => makeCharacter(
  40661. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40662. {
  40663. front: {
  40664. height: math.unit(18 + 7/12, "feet"),
  40665. name: "Front",
  40666. image: {
  40667. source: "./media/characters/rex/front.svg",
  40668. extra: 1941/1807,
  40669. bottom: 66/2007
  40670. }
  40671. },
  40672. back: {
  40673. height: math.unit(18 + 7/12, "feet"),
  40674. name: "Back",
  40675. image: {
  40676. source: "./media/characters/rex/back.svg",
  40677. extra: 1937/1822,
  40678. bottom: 42/1979
  40679. }
  40680. },
  40681. boot: {
  40682. height: math.unit(3.45, "feet"),
  40683. name: "Boot",
  40684. image: {
  40685. source: "./media/characters/rex/boot.svg"
  40686. }
  40687. },
  40688. paw: {
  40689. height: math.unit(4.17, "feet"),
  40690. name: "Paw",
  40691. image: {
  40692. source: "./media/characters/rex/paw.svg"
  40693. }
  40694. },
  40695. head: {
  40696. height: math.unit(6.728, "feet"),
  40697. name: "Head",
  40698. image: {
  40699. source: "./media/characters/rex/head.svg"
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Nano",
  40706. height: math.unit(18 + 7/12, "feet")
  40707. },
  40708. {
  40709. name: "Micro",
  40710. height: math.unit(1.5, "megameters")
  40711. },
  40712. {
  40713. name: "Normal",
  40714. height: math.unit(440, "megameters"),
  40715. default: true
  40716. },
  40717. {
  40718. name: "Macro",
  40719. height: math.unit(2.5, "gigameters")
  40720. },
  40721. {
  40722. name: "Gigamacro",
  40723. height: math.unit(2, "galaxies")
  40724. },
  40725. ]
  40726. ))
  40727. characterMakers.push(() => makeCharacter(
  40728. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40729. {
  40730. side: {
  40731. height: math.unit(32, "feet"),
  40732. weight: math.unit(250000, "lb"),
  40733. name: "Side",
  40734. image: {
  40735. source: "./media/characters/silverwing/side.svg",
  40736. extra: 1100/1019,
  40737. bottom: 204/1304
  40738. }
  40739. },
  40740. },
  40741. [
  40742. {
  40743. name: "Normal",
  40744. height: math.unit(32, "feet"),
  40745. default: true
  40746. },
  40747. ]
  40748. ))
  40749. characterMakers.push(() => makeCharacter(
  40750. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40751. {
  40752. front: {
  40753. height: math.unit(6 + 6/12, "feet"),
  40754. weight: math.unit(350, "lb"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/tristan-hawthorne/front.svg",
  40758. extra: 1159/1124,
  40759. bottom: 37/1196
  40760. }
  40761. },
  40762. },
  40763. [
  40764. {
  40765. name: "Normal",
  40766. height: math.unit(6 + 6/12, "feet"),
  40767. default: true
  40768. },
  40769. ]
  40770. ))
  40771. characterMakers.push(() => makeCharacter(
  40772. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40773. {
  40774. front: {
  40775. height: math.unit(5 + 11/12, "feet"),
  40776. weight: math.unit(190, "lb"),
  40777. name: "Front",
  40778. image: {
  40779. source: "./media/characters/mizu/front.svg",
  40780. extra: 1988/1788,
  40781. bottom: 14/2002
  40782. }
  40783. },
  40784. },
  40785. [
  40786. {
  40787. name: "Normal",
  40788. height: math.unit(5 + 11/12, "feet"),
  40789. default: true
  40790. },
  40791. ]
  40792. ))
  40793. characterMakers.push(() => makeCharacter(
  40794. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40795. {
  40796. front: {
  40797. height: math.unit(6, "feet"),
  40798. name: "Front",
  40799. image: {
  40800. source: "./media/characters/moonlight-rose-terra/front.svg",
  40801. extra: 1434/1252,
  40802. bottom: 48/1482
  40803. }
  40804. },
  40805. },
  40806. [
  40807. {
  40808. name: "TRAPPIST-1D",
  40809. height: math.unit(4992*2, "km")
  40810. },
  40811. {
  40812. name: "Earth",
  40813. height: math.unit(6367*2, "km"),
  40814. default: true
  40815. },
  40816. {
  40817. name: "Kepler-22b",
  40818. height: math.unit(15282*2, "km")
  40819. },
  40820. ]
  40821. ))
  40822. characterMakers.push(() => makeCharacter(
  40823. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40824. {
  40825. front: {
  40826. height: math.unit(6, "feet"),
  40827. name: "Front",
  40828. image: {
  40829. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40830. extra: 1851/1712,
  40831. bottom: 0/1851
  40832. }
  40833. },
  40834. },
  40835. [
  40836. {
  40837. name: "Enceladus",
  40838. height: math.unit(513*2, "km")
  40839. },
  40840. {
  40841. name: "Europe",
  40842. height: math.unit(1560*2, "km")
  40843. },
  40844. {
  40845. name: "Neptune",
  40846. height: math.unit(24622*2, "km"),
  40847. default: true
  40848. },
  40849. {
  40850. name: "CoRoT-9b",
  40851. height: math.unit(75067*2, "km")
  40852. },
  40853. ]
  40854. ))
  40855. characterMakers.push(() => makeCharacter(
  40856. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40857. {
  40858. front: {
  40859. height: math.unit(6, "feet"),
  40860. name: "Front",
  40861. image: {
  40862. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40863. extra: 1367/1286,
  40864. bottom: 55/1422
  40865. }
  40866. },
  40867. },
  40868. [
  40869. {
  40870. name: "Saturn",
  40871. height: math.unit(58232*2, "km")
  40872. },
  40873. {
  40874. name: "Jupiter",
  40875. height: math.unit(69911*2, "km"),
  40876. default: true
  40877. },
  40878. {
  40879. name: "HD 100546 b",
  40880. height: math.unit(482938, "km")
  40881. },
  40882. ]
  40883. ))
  40884. characterMakers.push(() => makeCharacter(
  40885. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40886. {
  40887. front: {
  40888. height: math.unit(1.7, "feet"),
  40889. weight: math.unit(50, "lb"),
  40890. name: "Front",
  40891. image: {
  40892. source: "./media/characters/dechroma/front.svg",
  40893. extra: 1095/859,
  40894. bottom: 64/1159
  40895. }
  40896. },
  40897. },
  40898. [
  40899. {
  40900. name: "Normal",
  40901. height: math.unit(1.7, "feet"),
  40902. default: true
  40903. },
  40904. ]
  40905. ))
  40906. characterMakers.push(() => makeCharacter(
  40907. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40908. {
  40909. side: {
  40910. height: math.unit(30, "feet"),
  40911. name: "Side",
  40912. image: {
  40913. source: "./media/characters/veluren-thanazel/side.svg",
  40914. extra: 1611/633,
  40915. bottom: 118/1729
  40916. }
  40917. },
  40918. front: {
  40919. height: math.unit(30, "feet"),
  40920. name: "Front",
  40921. image: {
  40922. source: "./media/characters/veluren-thanazel/front.svg",
  40923. extra: 1486/636,
  40924. bottom: 238/1724
  40925. }
  40926. },
  40927. head: {
  40928. height: math.unit(21.4, "feet"),
  40929. name: "Head",
  40930. image: {
  40931. source: "./media/characters/veluren-thanazel/head.svg"
  40932. }
  40933. },
  40934. genitals: {
  40935. height: math.unit(19.4, "feet"),
  40936. name: "Genitals",
  40937. image: {
  40938. source: "./media/characters/veluren-thanazel/genitals.svg"
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Social",
  40945. height: math.unit(6, "feet")
  40946. },
  40947. {
  40948. name: "Play",
  40949. height: math.unit(12, "feet")
  40950. },
  40951. {
  40952. name: "True",
  40953. height: math.unit(30, "feet"),
  40954. default: true
  40955. },
  40956. ]
  40957. ))
  40958. characterMakers.push(() => makeCharacter(
  40959. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40960. {
  40961. front: {
  40962. height: math.unit(7 + 6/12, "feet"),
  40963. weight: math.unit(500, "kg"),
  40964. name: "Front",
  40965. image: {
  40966. source: "./media/characters/arcturas/front.svg",
  40967. extra: 1700/1500,
  40968. bottom: 145/1845
  40969. }
  40970. },
  40971. },
  40972. [
  40973. {
  40974. name: "Normal",
  40975. height: math.unit(7 + 6/12, "feet"),
  40976. default: true
  40977. },
  40978. ]
  40979. ))
  40980. characterMakers.push(() => makeCharacter(
  40981. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40982. {
  40983. side: {
  40984. height: math.unit(6, "feet"),
  40985. weight: math.unit(2, "tons"),
  40986. name: "Side",
  40987. image: {
  40988. source: "./media/characters/vitaen/side.svg",
  40989. extra: 1157/617,
  40990. bottom: 122/1279
  40991. }
  40992. },
  40993. },
  40994. [
  40995. {
  40996. name: "Normal",
  40997. height: math.unit(6, "feet"),
  40998. default: true
  40999. },
  41000. ]
  41001. ))
  41002. characterMakers.push(() => makeCharacter(
  41003. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41004. {
  41005. front: {
  41006. height: math.unit(19, "feet"),
  41007. name: "Front",
  41008. image: {
  41009. source: "./media/characters/fia-dreamweaver/front.svg",
  41010. extra: 1630/1504,
  41011. bottom: 25/1655
  41012. }
  41013. },
  41014. },
  41015. [
  41016. {
  41017. name: "Normal",
  41018. height: math.unit(19, "feet"),
  41019. default: true
  41020. },
  41021. ]
  41022. ))
  41023. characterMakers.push(() => makeCharacter(
  41024. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41025. {
  41026. front: {
  41027. height: math.unit(5 + 4/12, "feet"),
  41028. name: "Front",
  41029. image: {
  41030. source: "./media/characters/artan/front.svg",
  41031. extra: 1618/1535,
  41032. bottom: 46/1664
  41033. }
  41034. },
  41035. back: {
  41036. height: math.unit(5 + 4/12, "feet"),
  41037. name: "Back",
  41038. image: {
  41039. source: "./media/characters/artan/back.svg",
  41040. extra: 1618/1543,
  41041. bottom: 31/1649
  41042. }
  41043. },
  41044. },
  41045. [
  41046. {
  41047. name: "Normal",
  41048. height: math.unit(5 + 4/12, "feet"),
  41049. default: true
  41050. },
  41051. ]
  41052. ))
  41053. characterMakers.push(() => makeCharacter(
  41054. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41055. {
  41056. side: {
  41057. height: math.unit(182, "cm"),
  41058. weight: math.unit(1000, "lb"),
  41059. name: "Side",
  41060. image: {
  41061. source: "./media/characters/silver-dragon/side.svg",
  41062. extra: 710/287,
  41063. bottom: 88/798
  41064. }
  41065. },
  41066. },
  41067. [
  41068. {
  41069. name: "Normal",
  41070. height: math.unit(182, "cm"),
  41071. default: true
  41072. },
  41073. ]
  41074. ))
  41075. characterMakers.push(() => makeCharacter(
  41076. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41077. {
  41078. side: {
  41079. height: math.unit(6 + 6/12, "feet"),
  41080. weight: math.unit(1.5, "tons"),
  41081. name: "Side",
  41082. image: {
  41083. source: "./media/characters/zephyr/side.svg",
  41084. extra: 1433/586,
  41085. bottom: 109/1542
  41086. }
  41087. },
  41088. },
  41089. [
  41090. {
  41091. name: "Normal",
  41092. height: math.unit(6 + 6/12, "feet"),
  41093. default: true
  41094. },
  41095. ]
  41096. ))
  41097. characterMakers.push(() => makeCharacter(
  41098. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41099. {
  41100. side: {
  41101. height: math.unit(1, "feet"),
  41102. name: "Side",
  41103. image: {
  41104. source: "./media/characters/vixye/side.svg",
  41105. extra: 632/541,
  41106. bottom: 0/632
  41107. }
  41108. },
  41109. },
  41110. [
  41111. {
  41112. name: "Normal",
  41113. height: math.unit(1, "feet"),
  41114. default: true
  41115. },
  41116. {
  41117. name: "True",
  41118. height: math.unit(1e15, "multiverses")
  41119. },
  41120. ]
  41121. ))
  41122. characterMakers.push(() => makeCharacter(
  41123. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41124. {
  41125. front: {
  41126. height: math.unit(8 + 2/12, "feet"),
  41127. weight: math.unit(650, "lb"),
  41128. name: "Front",
  41129. image: {
  41130. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41131. extra: 1174/1137,
  41132. bottom: 82/1256
  41133. }
  41134. },
  41135. back: {
  41136. height: math.unit(8 + 2/12, "feet"),
  41137. weight: math.unit(650, "lb"),
  41138. name: "Back",
  41139. image: {
  41140. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41141. extra: 1204/1157,
  41142. bottom: 46/1250
  41143. }
  41144. },
  41145. },
  41146. [
  41147. {
  41148. name: "Wildform",
  41149. height: math.unit(8 + 2/12, "feet"),
  41150. default: true
  41151. },
  41152. ]
  41153. ))
  41154. characterMakers.push(() => makeCharacter(
  41155. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41156. {
  41157. front: {
  41158. height: math.unit(18, "feet"),
  41159. name: "Front",
  41160. image: {
  41161. source: "./media/characters/cyphin/front.svg",
  41162. extra: 970/886,
  41163. bottom: 42/1012
  41164. }
  41165. },
  41166. back: {
  41167. height: math.unit(18, "feet"),
  41168. name: "Back",
  41169. image: {
  41170. source: "./media/characters/cyphin/back.svg",
  41171. extra: 1009/894,
  41172. bottom: 24/1033
  41173. }
  41174. },
  41175. head: {
  41176. height: math.unit(5.05, "feet"),
  41177. name: "Head",
  41178. image: {
  41179. source: "./media/characters/cyphin/head.svg"
  41180. }
  41181. },
  41182. tailbud: {
  41183. height: math.unit(5, "feet"),
  41184. name: "Tailbud",
  41185. image: {
  41186. source: "./media/characters/cyphin/tailbud.svg"
  41187. }
  41188. },
  41189. },
  41190. [
  41191. ]
  41192. ))
  41193. characterMakers.push(() => makeCharacter(
  41194. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41195. {
  41196. side: {
  41197. height: math.unit(10, "feet"),
  41198. weight: math.unit(6, "tons"),
  41199. name: "Side",
  41200. image: {
  41201. source: "./media/characters/raijin/side.svg",
  41202. extra: 1529/613,
  41203. bottom: 337/1866
  41204. }
  41205. },
  41206. },
  41207. [
  41208. {
  41209. name: "Normal",
  41210. height: math.unit(10, "feet"),
  41211. default: true
  41212. },
  41213. ]
  41214. ))
  41215. characterMakers.push(() => makeCharacter(
  41216. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41217. {
  41218. side: {
  41219. height: math.unit(9, "feet"),
  41220. name: "Side",
  41221. image: {
  41222. source: "./media/characters/nilghais/side.svg",
  41223. extra: 1047/744,
  41224. bottom: 91/1138
  41225. }
  41226. },
  41227. head: {
  41228. height: math.unit(3.14, "feet"),
  41229. name: "Head",
  41230. image: {
  41231. source: "./media/characters/nilghais/head.svg"
  41232. }
  41233. },
  41234. mouth: {
  41235. height: math.unit(4.6, "feet"),
  41236. name: "Mouth",
  41237. image: {
  41238. source: "./media/characters/nilghais/mouth.svg"
  41239. }
  41240. },
  41241. wings: {
  41242. height: math.unit(24, "feet"),
  41243. name: "Wings",
  41244. image: {
  41245. source: "./media/characters/nilghais/wings.svg"
  41246. }
  41247. },
  41248. ass: {
  41249. height: math.unit(6.12, "feet"),
  41250. name: "Ass",
  41251. image: {
  41252. source: "./media/characters/nilghais/ass.svg"
  41253. }
  41254. },
  41255. },
  41256. [
  41257. {
  41258. name: "Normal",
  41259. height: math.unit(9, "feet"),
  41260. default: true
  41261. },
  41262. ]
  41263. ))
  41264. characterMakers.push(() => makeCharacter(
  41265. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41266. {
  41267. regular: {
  41268. height: math.unit(16 + 2/12, "feet"),
  41269. weight: math.unit(2300, "lb"),
  41270. name: "Regular",
  41271. image: {
  41272. source: "./media/characters/zolgar/regular.svg",
  41273. extra: 1246/1004,
  41274. bottom: 124/1370
  41275. }
  41276. },
  41277. boxers: {
  41278. height: math.unit(16 + 2/12, "feet"),
  41279. weight: math.unit(2300, "lb"),
  41280. name: "Boxers",
  41281. image: {
  41282. source: "./media/characters/zolgar/boxers.svg",
  41283. extra: 1246/1004,
  41284. bottom: 124/1370
  41285. }
  41286. },
  41287. armored: {
  41288. height: math.unit(16 + 2/12, "feet"),
  41289. weight: math.unit(2300, "lb"),
  41290. name: "Armored",
  41291. image: {
  41292. source: "./media/characters/zolgar/armored.svg",
  41293. extra: 1246/1004,
  41294. bottom: 124/1370
  41295. }
  41296. },
  41297. goth: {
  41298. height: math.unit(16 + 2/12, "feet"),
  41299. weight: math.unit(2300, "lb"),
  41300. name: "Goth",
  41301. image: {
  41302. source: "./media/characters/zolgar/goth.svg",
  41303. extra: 1246/1004,
  41304. bottom: 124/1370
  41305. }
  41306. },
  41307. },
  41308. [
  41309. {
  41310. name: "Shrunken Down",
  41311. height: math.unit(9 + 2/12, "feet")
  41312. },
  41313. {
  41314. name: "Normal",
  41315. height: math.unit(16 + 2/12, "feet"),
  41316. default: true
  41317. },
  41318. ]
  41319. ))
  41320. characterMakers.push(() => makeCharacter(
  41321. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41322. {
  41323. front: {
  41324. height: math.unit(6, "feet"),
  41325. weight: math.unit(168, "lb"),
  41326. name: "Front",
  41327. image: {
  41328. source: "./media/characters/luca/front.svg",
  41329. extra: 841/667,
  41330. bottom: 102/943
  41331. }
  41332. },
  41333. },
  41334. [
  41335. {
  41336. name: "Normal",
  41337. height: math.unit(6, "feet"),
  41338. default: true
  41339. },
  41340. ]
  41341. ))
  41342. characterMakers.push(() => makeCharacter(
  41343. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41344. {
  41345. side: {
  41346. height: math.unit(7 + 3/12, "feet"),
  41347. weight: math.unit(312, "lb"),
  41348. name: "Side",
  41349. image: {
  41350. source: "./media/characters/zezo/side.svg",
  41351. extra: 1192/1067,
  41352. bottom: 63/1255
  41353. }
  41354. },
  41355. },
  41356. [
  41357. {
  41358. name: "Normal",
  41359. height: math.unit(7 + 3/12, "feet"),
  41360. default: true
  41361. },
  41362. ]
  41363. ))
  41364. characterMakers.push(() => makeCharacter(
  41365. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41366. {
  41367. front: {
  41368. height: math.unit(5 + 5/12, "feet"),
  41369. weight: math.unit(170, "lb"),
  41370. name: "Front",
  41371. image: {
  41372. source: "./media/characters/mayso/front.svg",
  41373. extra: 1215/1108,
  41374. bottom: 16/1231
  41375. }
  41376. },
  41377. },
  41378. [
  41379. {
  41380. name: "Normal",
  41381. height: math.unit(5 + 5/12, "feet"),
  41382. default: true
  41383. },
  41384. ]
  41385. ))
  41386. characterMakers.push(() => makeCharacter(
  41387. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41388. {
  41389. front: {
  41390. height: math.unit(4 + 3/12, "feet"),
  41391. weight: math.unit(80, "lb"),
  41392. name: "Front",
  41393. image: {
  41394. source: "./media/characters/hess/front.svg",
  41395. extra: 1200/1123,
  41396. bottom: 16/1216
  41397. }
  41398. },
  41399. },
  41400. [
  41401. {
  41402. name: "Normal",
  41403. height: math.unit(4 + 3/12, "feet"),
  41404. default: true
  41405. },
  41406. ]
  41407. ))
  41408. characterMakers.push(() => makeCharacter(
  41409. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41410. {
  41411. front: {
  41412. height: math.unit(1.9, "meters"),
  41413. name: "Front",
  41414. image: {
  41415. source: "./media/characters/ashgar/front.svg",
  41416. extra: 1177/1146,
  41417. bottom: 99/1276
  41418. }
  41419. },
  41420. back: {
  41421. height: math.unit(1.9, "meters"),
  41422. name: "Back",
  41423. image: {
  41424. source: "./media/characters/ashgar/back.svg",
  41425. extra: 1201/1183,
  41426. bottom: 53/1254
  41427. }
  41428. },
  41429. feral: {
  41430. height: math.unit(1.4, "meters"),
  41431. name: "Feral",
  41432. image: {
  41433. source: "./media/characters/ashgar/feral.svg",
  41434. extra: 370/345,
  41435. bottom: 45/415
  41436. }
  41437. },
  41438. },
  41439. [
  41440. {
  41441. name: "Normal",
  41442. height: math.unit(1.9, "meters"),
  41443. default: true
  41444. },
  41445. ]
  41446. ))
  41447. characterMakers.push(() => makeCharacter(
  41448. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41449. {
  41450. regular: {
  41451. height: math.unit(6, "feet"),
  41452. weight: math.unit(220, "lb"),
  41453. name: "Regular",
  41454. image: {
  41455. source: "./media/characters/phillip/regular.svg",
  41456. extra: 1373/1277,
  41457. bottom: 75/1448
  41458. }
  41459. },
  41460. dressed: {
  41461. height: math.unit(6, "feet"),
  41462. weight: math.unit(220, "lb"),
  41463. name: "Dressed",
  41464. image: {
  41465. source: "./media/characters/phillip/dressed.svg",
  41466. extra: 1373/1277,
  41467. bottom: 75/1448
  41468. }
  41469. },
  41470. paw: {
  41471. height: math.unit(1.44, "feet"),
  41472. name: "Paw",
  41473. image: {
  41474. source: "./media/characters/phillip/paw.svg"
  41475. }
  41476. },
  41477. },
  41478. [
  41479. {
  41480. name: "Normal",
  41481. height: math.unit(6, "feet"),
  41482. default: true
  41483. },
  41484. ]
  41485. ))
  41486. characterMakers.push(() => makeCharacter(
  41487. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41488. {
  41489. side: {
  41490. height: math.unit(42, "feet"),
  41491. name: "Side",
  41492. image: {
  41493. source: "./media/characters/uvula/side.svg",
  41494. extra: 683/586,
  41495. bottom: 60/743
  41496. }
  41497. },
  41498. front: {
  41499. height: math.unit(42, "feet"),
  41500. name: "Front",
  41501. image: {
  41502. source: "./media/characters/uvula/front.svg",
  41503. extra: 705/613,
  41504. bottom: 54/759
  41505. }
  41506. },
  41507. maw: {
  41508. height: math.unit(23.5, "feet"),
  41509. name: "Maw",
  41510. image: {
  41511. source: "./media/characters/uvula/maw.svg"
  41512. }
  41513. },
  41514. },
  41515. [
  41516. {
  41517. name: "Original Size",
  41518. height: math.unit(14, "inches")
  41519. },
  41520. {
  41521. name: "Human Size",
  41522. height: math.unit(6, "feet")
  41523. },
  41524. {
  41525. name: "Big",
  41526. height: math.unit(42, "feet"),
  41527. default: true
  41528. },
  41529. {
  41530. name: "Bigger",
  41531. height: math.unit(100, "feet")
  41532. },
  41533. ]
  41534. ))
  41535. characterMakers.push(() => makeCharacter(
  41536. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41537. {
  41538. front: {
  41539. height: math.unit(5 + 11/12, "feet"),
  41540. name: "Front",
  41541. image: {
  41542. source: "./media/characters/lannah/front.svg",
  41543. extra: 1208/1113,
  41544. bottom: 97/1305
  41545. }
  41546. },
  41547. },
  41548. [
  41549. {
  41550. name: "Normal",
  41551. height: math.unit(5 + 11/12, "feet"),
  41552. default: true
  41553. },
  41554. ]
  41555. ))
  41556. characterMakers.push(() => makeCharacter(
  41557. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41558. {
  41559. front: {
  41560. height: math.unit(6 + 3/12, "feet"),
  41561. weight: math.unit(3.5, "tons"),
  41562. name: "Front",
  41563. image: {
  41564. source: "./media/characters/emberflame/front.svg",
  41565. extra: 1198/672,
  41566. bottom: 82/1280
  41567. }
  41568. },
  41569. side: {
  41570. height: math.unit(6 + 3/12, "feet"),
  41571. weight: math.unit(3.5, "tons"),
  41572. name: "Side",
  41573. image: {
  41574. source: "./media/characters/emberflame/side.svg",
  41575. extra: 938/527,
  41576. bottom: 56/994
  41577. }
  41578. },
  41579. },
  41580. [
  41581. {
  41582. name: "Normal",
  41583. height: math.unit(6 + 3/12, "feet"),
  41584. default: true
  41585. },
  41586. ]
  41587. ))
  41588. characterMakers.push(() => makeCharacter(
  41589. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41590. {
  41591. side: {
  41592. height: math.unit(17.5, "feet"),
  41593. weight: math.unit(35, "tons"),
  41594. name: "Side",
  41595. image: {
  41596. source: "./media/characters/sophie-ambrose/side.svg",
  41597. extra: 1573/1242,
  41598. bottom: 71/1644
  41599. }
  41600. },
  41601. maw: {
  41602. height: math.unit(7.4, "feet"),
  41603. name: "Maw",
  41604. image: {
  41605. source: "./media/characters/sophie-ambrose/maw.svg"
  41606. }
  41607. },
  41608. },
  41609. [
  41610. {
  41611. name: "Normal",
  41612. height: math.unit(17.5, "feet"),
  41613. default: true
  41614. },
  41615. ]
  41616. ))
  41617. characterMakers.push(() => makeCharacter(
  41618. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41619. {
  41620. front: {
  41621. height: math.unit(280, "feet"),
  41622. weight: math.unit(550, "tons"),
  41623. name: "Front",
  41624. image: {
  41625. source: "./media/characters/king-mugi/front.svg",
  41626. extra: 1102/947,
  41627. bottom: 104/1206
  41628. }
  41629. },
  41630. },
  41631. [
  41632. {
  41633. name: "King Mugi",
  41634. height: math.unit(280, "feet"),
  41635. default: true
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(64, "meters"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/nova-fox/front.svg",
  41647. extra: 1310/1246,
  41648. bottom: 65/1375
  41649. }
  41650. },
  41651. },
  41652. [
  41653. {
  41654. name: "Macro",
  41655. height: math.unit(64, "meters"),
  41656. default: true
  41657. },
  41658. ]
  41659. ))
  41660. characterMakers.push(() => makeCharacter(
  41661. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41662. {
  41663. front: {
  41664. height: math.unit(6 + 3/12, "feet"),
  41665. weight: math.unit(170, "lb"),
  41666. name: "Front",
  41667. image: {
  41668. source: "./media/characters/sam-bat/front.svg",
  41669. extra: 1601/1411,
  41670. bottom: 125/1726
  41671. }
  41672. },
  41673. back: {
  41674. height: math.unit(6 + 3/12, "feet"),
  41675. weight: math.unit(170, "lb"),
  41676. name: "Back",
  41677. image: {
  41678. source: "./media/characters/sam-bat/back.svg",
  41679. extra: 1577/1405,
  41680. bottom: 58/1635
  41681. }
  41682. },
  41683. },
  41684. [
  41685. {
  41686. name: "Normal",
  41687. height: math.unit(6 + 3/12, "feet"),
  41688. default: true
  41689. },
  41690. ]
  41691. ))
  41692. characterMakers.push(() => makeCharacter(
  41693. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41694. {
  41695. front: {
  41696. height: math.unit(59, "feet"),
  41697. weight: math.unit(40000, "lb"),
  41698. name: "Front",
  41699. image: {
  41700. source: "./media/characters/inari/front.svg",
  41701. extra: 1884/1350,
  41702. bottom: 95/1979
  41703. }
  41704. },
  41705. },
  41706. [
  41707. {
  41708. name: "Gigantamax",
  41709. height: math.unit(59, "feet"),
  41710. default: true
  41711. },
  41712. ]
  41713. ))
  41714. characterMakers.push(() => makeCharacter(
  41715. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41716. {
  41717. front: {
  41718. height: math.unit(5 + 8/12, "feet"),
  41719. name: "Front",
  41720. image: {
  41721. source: "./media/characters/elizabeth/front.svg",
  41722. extra: 1395/1298,
  41723. bottom: 54/1449
  41724. }
  41725. },
  41726. mouth: {
  41727. height: math.unit(1.97, "feet"),
  41728. name: "Mouth",
  41729. image: {
  41730. source: "./media/characters/elizabeth/mouth.svg"
  41731. }
  41732. },
  41733. foot: {
  41734. height: math.unit(1.17, "feet"),
  41735. name: "Foot",
  41736. image: {
  41737. source: "./media/characters/elizabeth/foot.svg"
  41738. }
  41739. },
  41740. },
  41741. [
  41742. {
  41743. name: "Normal",
  41744. height: math.unit(5 + 8/12, "feet"),
  41745. default: true
  41746. },
  41747. {
  41748. name: "Minimacro",
  41749. height: math.unit(18, "feet")
  41750. },
  41751. {
  41752. name: "Macro",
  41753. height: math.unit(180, "feet")
  41754. },
  41755. ]
  41756. ))
  41757. characterMakers.push(() => makeCharacter(
  41758. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41759. {
  41760. front: {
  41761. height: math.unit(5 + 2/12, "feet"),
  41762. name: "Front",
  41763. image: {
  41764. source: "./media/characters/october-gossamer/front.svg",
  41765. extra: 505/454,
  41766. bottom: 7/512
  41767. }
  41768. },
  41769. back: {
  41770. height: math.unit(5 + 2/12, "feet"),
  41771. name: "Back",
  41772. image: {
  41773. source: "./media/characters/october-gossamer/back.svg",
  41774. extra: 501/454,
  41775. bottom: 11/512
  41776. }
  41777. },
  41778. },
  41779. [
  41780. {
  41781. name: "Normal",
  41782. height: math.unit(5 + 2/12, "feet"),
  41783. default: true
  41784. },
  41785. ]
  41786. ))
  41787. characterMakers.push(() => makeCharacter(
  41788. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41789. {
  41790. front: {
  41791. height: math.unit(5, "feet"),
  41792. name: "Front",
  41793. image: {
  41794. source: "./media/characters/epiglottis/front.svg",
  41795. extra: 923/849,
  41796. bottom: 17/940
  41797. }
  41798. },
  41799. },
  41800. [
  41801. {
  41802. name: "Original Size",
  41803. height: math.unit(10, "inches")
  41804. },
  41805. {
  41806. name: "Human Size",
  41807. height: math.unit(5, "feet"),
  41808. default: true
  41809. },
  41810. {
  41811. name: "Big",
  41812. height: math.unit(25, "feet")
  41813. },
  41814. {
  41815. name: "Bigger",
  41816. height: math.unit(50, "feet")
  41817. },
  41818. {
  41819. name: "oh lawd",
  41820. height: math.unit(75, "feet")
  41821. },
  41822. ]
  41823. ))
  41824. characterMakers.push(() => makeCharacter(
  41825. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41826. {
  41827. front: {
  41828. height: math.unit(2 + 4/12, "feet"),
  41829. weight: math.unit(60, "lb"),
  41830. name: "Front",
  41831. image: {
  41832. source: "./media/characters/lerm/front.svg",
  41833. extra: 796/790,
  41834. bottom: 79/875
  41835. }
  41836. },
  41837. },
  41838. [
  41839. {
  41840. name: "Normal",
  41841. height: math.unit(2 + 4/12, "feet"),
  41842. default: true
  41843. },
  41844. ]
  41845. ))
  41846. characterMakers.push(() => makeCharacter(
  41847. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41848. {
  41849. front: {
  41850. height: math.unit(5.5, "feet"),
  41851. weight: math.unit(130, "lb"),
  41852. name: "Front",
  41853. image: {
  41854. source: "./media/characters/xena-nebadon/front.svg",
  41855. extra: 1828/1730,
  41856. bottom: 79/1907
  41857. }
  41858. },
  41859. },
  41860. [
  41861. {
  41862. name: "Tiny Puppy",
  41863. height: math.unit(3, "inches")
  41864. },
  41865. {
  41866. name: "Normal",
  41867. height: math.unit(5.5, "feet"),
  41868. default: true
  41869. },
  41870. {
  41871. name: "Lotta Lady",
  41872. height: math.unit(12, "feet")
  41873. },
  41874. {
  41875. name: "Pretty Big",
  41876. height: math.unit(100, "feet")
  41877. },
  41878. {
  41879. name: "Big",
  41880. height: math.unit(500, "feet")
  41881. },
  41882. {
  41883. name: "Skyscraper Toys",
  41884. height: math.unit(2500, "feet")
  41885. },
  41886. {
  41887. name: "Plane Catcher",
  41888. height: math.unit(8, "miles")
  41889. },
  41890. {
  41891. name: "Planet Toys",
  41892. height: math.unit(15, "earths")
  41893. },
  41894. {
  41895. name: "Stardust",
  41896. height: math.unit(0.25, "galaxies")
  41897. },
  41898. {
  41899. name: "Snacks",
  41900. height: math.unit(70, "universes")
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41906. {
  41907. front: {
  41908. height: math.unit(1.6, "meters"),
  41909. weight: math.unit(60, "kg"),
  41910. name: "Front",
  41911. image: {
  41912. source: "./media/characters/bounty/front.svg",
  41913. extra: 1426/1308,
  41914. bottom: 15/1441
  41915. }
  41916. },
  41917. },
  41918. [
  41919. {
  41920. name: "Normal",
  41921. height: math.unit(1.6, "meters"),
  41922. default: true
  41923. },
  41924. {
  41925. name: "Macro",
  41926. height: math.unit(300, "meters")
  41927. },
  41928. ]
  41929. ))
  41930. characterMakers.push(() => makeCharacter(
  41931. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  41932. {
  41933. front: {
  41934. height: math.unit(2 + 8/12, "feet"),
  41935. weight: math.unit(15, "lb"),
  41936. name: "Front",
  41937. image: {
  41938. source: "./media/characters/mochi/front.svg",
  41939. extra: 1022/852,
  41940. bottom: 435/1457
  41941. }
  41942. },
  41943. back: {
  41944. height: math.unit(2 + 8/12, "feet"),
  41945. weight: math.unit(15, "lb"),
  41946. name: "Back",
  41947. image: {
  41948. source: "./media/characters/mochi/back.svg",
  41949. extra: 1335/1119,
  41950. bottom: 39/1374
  41951. }
  41952. },
  41953. bird: {
  41954. height: math.unit(2 + 8/12, "feet"),
  41955. weight: math.unit(15, "lb"),
  41956. name: "Bird",
  41957. image: {
  41958. source: "./media/characters/mochi/bird.svg",
  41959. extra: 1251/1113,
  41960. bottom: 178/1429
  41961. }
  41962. },
  41963. kaiju: {
  41964. height: math.unit(154, "feet"),
  41965. weight: math.unit(1e7, "lb"),
  41966. name: "Kaiju",
  41967. image: {
  41968. source: "./media/characters/mochi/kaiju.svg",
  41969. extra: 460/324,
  41970. bottom: 40/500
  41971. }
  41972. },
  41973. head: {
  41974. height: math.unit(1.21, "feet"),
  41975. name: "Head",
  41976. image: {
  41977. source: "./media/characters/mochi/head.svg"
  41978. }
  41979. },
  41980. alternateTail: {
  41981. height: math.unit(2 + 8/12, "feet"),
  41982. weight: math.unit(45, "lb"),
  41983. name: "Alternate Tail",
  41984. image: {
  41985. source: "./media/characters/mochi/alternate-tail.svg",
  41986. extra: 139/76,
  41987. bottom: 45/184
  41988. }
  41989. },
  41990. },
  41991. [
  41992. {
  41993. name: "Micro",
  41994. height: math.unit(2, "inches")
  41995. },
  41996. {
  41997. name: "Normal",
  41998. height: math.unit(2 + 8/12, "feet"),
  41999. default: true
  42000. },
  42001. {
  42002. name: "Macro",
  42003. height: math.unit(106, "feet")
  42004. },
  42005. ]
  42006. ))
  42007. characterMakers.push(() => makeCharacter(
  42008. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42009. {
  42010. front: {
  42011. height: math.unit(5.67, "feet"),
  42012. weight: math.unit(135, "lb"),
  42013. name: "Front",
  42014. image: {
  42015. source: "./media/characters/sarel/front.svg",
  42016. extra: 865/788,
  42017. bottom: 97/962
  42018. }
  42019. },
  42020. back: {
  42021. height: math.unit(5.67, "feet"),
  42022. weight: math.unit(135, "lb"),
  42023. name: "Back",
  42024. image: {
  42025. source: "./media/characters/sarel/back.svg",
  42026. extra: 857/777,
  42027. bottom: 32/889
  42028. }
  42029. },
  42030. chozoan: {
  42031. height: math.unit(5.67, "feet"),
  42032. weight: math.unit(135, "lb"),
  42033. name: "Chozoan",
  42034. image: {
  42035. source: "./media/characters/sarel/chozoan.svg",
  42036. extra: 865/788,
  42037. bottom: 97/962
  42038. }
  42039. },
  42040. current: {
  42041. height: math.unit(5.67, "feet"),
  42042. weight: math.unit(135, "lb"),
  42043. name: "Current",
  42044. image: {
  42045. source: "./media/characters/sarel/current.svg",
  42046. extra: 865/788,
  42047. bottom: 97/962
  42048. }
  42049. },
  42050. head: {
  42051. height: math.unit(1.77, "feet"),
  42052. name: "Head",
  42053. image: {
  42054. source: "./media/characters/sarel/head.svg"
  42055. }
  42056. },
  42057. claws: {
  42058. height: math.unit(1.8, "feet"),
  42059. name: "Claws",
  42060. image: {
  42061. source: "./media/characters/sarel/claws.svg"
  42062. }
  42063. },
  42064. clawsAlt: {
  42065. height: math.unit(1.8, "feet"),
  42066. name: "Claws-alt",
  42067. image: {
  42068. source: "./media/characters/sarel/claws-alt.svg"
  42069. }
  42070. },
  42071. },
  42072. [
  42073. {
  42074. name: "Normal",
  42075. height: math.unit(5.67, "feet"),
  42076. default: true
  42077. },
  42078. ]
  42079. ))
  42080. characterMakers.push(() => makeCharacter(
  42081. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42082. {
  42083. front: {
  42084. height: math.unit(5500, "feet"),
  42085. name: "Front",
  42086. image: {
  42087. source: "./media/characters/alyonia/front.svg",
  42088. extra: 1200/1135,
  42089. bottom: 29/1229
  42090. }
  42091. },
  42092. back: {
  42093. height: math.unit(5500, "feet"),
  42094. name: "Back",
  42095. image: {
  42096. source: "./media/characters/alyonia/back.svg",
  42097. extra: 1205/1138,
  42098. bottom: 10/1215
  42099. }
  42100. },
  42101. },
  42102. [
  42103. {
  42104. name: "Small",
  42105. height: math.unit(10, "feet")
  42106. },
  42107. {
  42108. name: "Macro",
  42109. height: math.unit(500, "feet")
  42110. },
  42111. {
  42112. name: "Mega Macro",
  42113. height: math.unit(5500, "feet"),
  42114. default: true
  42115. },
  42116. {
  42117. name: "Mega Macro+",
  42118. height: math.unit(500000, "feet")
  42119. },
  42120. {
  42121. name: "Giga Macro",
  42122. height: math.unit(3000, "miles")
  42123. },
  42124. {
  42125. name: "Tera Macro",
  42126. height: math.unit(2.8e6, "miles")
  42127. },
  42128. {
  42129. name: "Galactic",
  42130. height: math.unit(120000, "lightyears")
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42136. {
  42137. werewolf: {
  42138. height: math.unit(8, "feet"),
  42139. weight: math.unit(425, "lb"),
  42140. name: "Werewolf",
  42141. image: {
  42142. source: "./media/characters/autumn/werewolf.svg",
  42143. extra: 2154/2031,
  42144. bottom: 160/2314
  42145. }
  42146. },
  42147. human: {
  42148. height: math.unit(5 + 8/12, "feet"),
  42149. weight: math.unit(150, "lb"),
  42150. name: "Human",
  42151. image: {
  42152. source: "./media/characters/autumn/human.svg",
  42153. extra: 1200/1149,
  42154. bottom: 30/1230
  42155. }
  42156. },
  42157. },
  42158. [
  42159. {
  42160. name: "Normal",
  42161. height: math.unit(8, "feet"),
  42162. default: true
  42163. },
  42164. ]
  42165. ))
  42166. characterMakers.push(() => makeCharacter(
  42167. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42168. {
  42169. front: {
  42170. height: math.unit(8 + 5/12, "feet"),
  42171. weight: math.unit(825, "lb"),
  42172. name: "Front",
  42173. image: {
  42174. source: "./media/characters/cobalt-charizard/front.svg",
  42175. extra: 1268/1155,
  42176. bottom: 122/1390
  42177. }
  42178. },
  42179. side: {
  42180. height: math.unit(8 + 5/12, "feet"),
  42181. weight: math.unit(825, "lb"),
  42182. name: "Side",
  42183. image: {
  42184. source: "./media/characters/cobalt-charizard/side.svg",
  42185. extra: 1348/1257,
  42186. bottom: 58/1406
  42187. }
  42188. },
  42189. gMax: {
  42190. height: math.unit(134 + 11/12, "feet"),
  42191. name: "G-Max",
  42192. image: {
  42193. source: "./media/characters/cobalt-charizard/g-max.svg",
  42194. extra: 1835/1541,
  42195. bottom: 151/1986
  42196. }
  42197. },
  42198. },
  42199. [
  42200. {
  42201. name: "Normal",
  42202. height: math.unit(8 + 5/12, "feet"),
  42203. default: true
  42204. },
  42205. ]
  42206. ))
  42207. characterMakers.push(() => makeCharacter(
  42208. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42209. {
  42210. front: {
  42211. height: math.unit(6 + 3/12, "feet"),
  42212. weight: math.unit(210, "lb"),
  42213. name: "Front",
  42214. image: {
  42215. source: "./media/characters/stella/front.svg",
  42216. extra: 3549/3335,
  42217. bottom: 51/3600
  42218. }
  42219. },
  42220. },
  42221. [
  42222. {
  42223. name: "Normal",
  42224. height: math.unit(6 + 3/12, "feet"),
  42225. default: true
  42226. },
  42227. ]
  42228. ))
  42229. characterMakers.push(() => makeCharacter(
  42230. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42231. {
  42232. front: {
  42233. height: math.unit(5, "feet"),
  42234. weight: math.unit(90, "lb"),
  42235. name: "Front",
  42236. image: {
  42237. source: "./media/characters/riley-bishop/front.svg",
  42238. extra: 1450/1428,
  42239. bottom: 152/1602
  42240. }
  42241. },
  42242. },
  42243. [
  42244. {
  42245. name: "Normal",
  42246. height: math.unit(5, "feet"),
  42247. default: true
  42248. },
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42253. {
  42254. side: {
  42255. height: math.unit(8 + 2/12, "feet"),
  42256. weight: math.unit(500, "kg"),
  42257. name: "Side",
  42258. image: {
  42259. source: "./media/characters/theo-arcanine/side.svg",
  42260. extra: 1342/1074,
  42261. bottom: 111/1453
  42262. }
  42263. },
  42264. },
  42265. [
  42266. {
  42267. name: "Normal",
  42268. height: math.unit(8 + 2/12, "feet"),
  42269. default: true
  42270. },
  42271. ]
  42272. ))
  42273. characterMakers.push(() => makeCharacter(
  42274. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42275. {
  42276. front: {
  42277. height: math.unit(4, "feet"),
  42278. name: "Front",
  42279. image: {
  42280. source: "./media/characters/kali/front.svg",
  42281. extra: 1921/1357,
  42282. bottom: 70/1991
  42283. }
  42284. },
  42285. },
  42286. [
  42287. {
  42288. name: "Normal",
  42289. height: math.unit(4, "feet"),
  42290. default: true
  42291. },
  42292. {
  42293. name: "Macro",
  42294. height: math.unit(32, "meters")
  42295. },
  42296. {
  42297. name: "Macro+",
  42298. height: math.unit(150, "meters")
  42299. },
  42300. {
  42301. name: "Megamacro",
  42302. height: math.unit(7500, "meters")
  42303. },
  42304. {
  42305. name: "Megamacro+",
  42306. height: math.unit(80, "kilometers")
  42307. },
  42308. ]
  42309. ))
  42310. characterMakers.push(() => makeCharacter(
  42311. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42312. {
  42313. side: {
  42314. height: math.unit(5 + 11/12, "feet"),
  42315. weight: math.unit(236, "lb"),
  42316. name: "Side",
  42317. image: {
  42318. source: "./media/characters/gapp/side.svg",
  42319. extra: 775/340,
  42320. bottom: 58/833
  42321. }
  42322. },
  42323. mouth: {
  42324. height: math.unit(2.98, "feet"),
  42325. name: "Mouth",
  42326. image: {
  42327. source: "./media/characters/gapp/mouth.svg"
  42328. }
  42329. },
  42330. },
  42331. [
  42332. {
  42333. name: "Normal",
  42334. height: math.unit(5 + 1/12, "feet"),
  42335. default: true
  42336. },
  42337. ]
  42338. ))
  42339. characterMakers.push(() => makeCharacter(
  42340. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42341. {
  42342. front: {
  42343. height: math.unit(6, "feet"),
  42344. name: "Front",
  42345. image: {
  42346. source: "./media/characters/persephone/front.svg",
  42347. extra: 1895/1717,
  42348. bottom: 96/1991
  42349. }
  42350. },
  42351. back: {
  42352. height: math.unit(6, "feet"),
  42353. name: "Back",
  42354. image: {
  42355. source: "./media/characters/persephone/back.svg",
  42356. extra: 1868/1679,
  42357. bottom: 26/1894
  42358. }
  42359. },
  42360. casual: {
  42361. height: math.unit(6, "feet"),
  42362. name: "Casual",
  42363. image: {
  42364. source: "./media/characters/persephone/casual.svg",
  42365. extra: 1713/1541,
  42366. bottom: 76/1789
  42367. }
  42368. },
  42369. },
  42370. [
  42371. {
  42372. name: "Human Size",
  42373. height: math.unit(6, "feet"),
  42374. default: true
  42375. },
  42376. {
  42377. name: "Galaxy Brain",
  42378. height: math.unit(1, "zettameter")
  42379. },
  42380. ]
  42381. ))
  42382. characterMakers.push(() => makeCharacter(
  42383. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42384. {
  42385. front: {
  42386. height: math.unit(1.85, "meters"),
  42387. name: "Front",
  42388. image: {
  42389. source: "./media/characters/riley-foxthing/front.svg",
  42390. extra: 1495/1354,
  42391. bottom: 122/1617
  42392. }
  42393. },
  42394. frontAlt: {
  42395. height: math.unit(1.85, "meters"),
  42396. name: "Front (Alt)",
  42397. image: {
  42398. source: "./media/characters/riley-foxthing/front-alt.svg",
  42399. extra: 1572/1389,
  42400. bottom: 116/1688
  42401. }
  42402. },
  42403. },
  42404. [
  42405. {
  42406. name: "Normal Sized",
  42407. height: math.unit(1.85, "meters"),
  42408. default: true
  42409. },
  42410. {
  42411. name: "Quite Sizable",
  42412. height: math.unit(5, "meters")
  42413. },
  42414. {
  42415. name: "Rather Large",
  42416. height: math.unit(20, "meters")
  42417. },
  42418. {
  42419. name: "Macro",
  42420. height: math.unit(450, "meters")
  42421. },
  42422. {
  42423. name: "Giga",
  42424. height: math.unit(5, "km")
  42425. },
  42426. ]
  42427. ))
  42428. //characters
  42429. function makeCharacters() {
  42430. const results = [];
  42431. characterMakers.forEach(character => {
  42432. results.push(character());
  42433. });
  42434. return results;
  42435. }